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
T670C 065:612 SEGGER J-Link V6.46 Log File (0000ms, 3997ms total)
T670C 065:612 DLL Compiled: May 23 2019 17:49:56 (0000ms, 3997ms total)
T670C 065:612 Logging started @ 2023-05-12 11:01 (0000ms, 3997ms total)
T670C 065:612 JLINK_SetWarnOutHandler(...) (0000ms, 3997ms total)
T670C 065:612 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 (0022ms, 4019ms total)
T670C 065:612 WEBSRV Webserver running on local port 19080 (0022ms, 4019ms total)
T670C 065:612   returns O.K. (0022ms, 4019ms total)
T670C 065:634 JLINK_GetEmuCaps()  returns 0x88EA5833 (0000ms, 4019ms total)
T670C 065:634 JLINK_TIF_GetAvailable(...) (0001ms, 4020ms total)
T670C 065:635 JLINK_SetErrorOutHandler(...) (0000ms, 4020ms total)
T670C 065:635 JLINK_ExecCommand("ProjectFile = "E:\GIT\XRange_Tag - ¸±±¾\MDK-ARM\JLinkSettings.ini"", ...).   returns 0x00 (0002ms, 4022ms total)
T670C 065:637 JLINK_ExecCommand("Device = STM32L051C8Tx", ...). Device "STM32L051C8" selected.  returns 0x00 (0001ms, 4023ms total)
T670C 065:638 JLINK_ExecCommand("DisableConnectionTimeout", ...).   returns 0x01 (0000ms, 4023ms total)
T670C 065:638 JLINK_GetHardwareVersion()  returns 0x11170 (0000ms, 4023ms total)
T670C 065:638 JLINK_GetDLLVersion()  returns 64600 (0000ms, 4023ms total)
T670C 065:638 JLINK_GetFirmwareString(...) (0000ms, 4023ms total)
T670C 065:638 JLINK_GetDLLVersion()  returns 64600 (0000ms, 4023ms total)
T670C 065:638 JLINK_GetCompileDateTime() (0000ms, 4023ms total)
T670C 065:638 JLINK_GetFirmwareString(...) (0000ms, 4023ms total)
T670C 065:638 JLINK_GetHardwareVersion()  returns 0x11170 (0000ms, 4023ms total)
T670C 065:638 JLINK_TIF_Select(JLINKARM_TIF_SWD)  returns 0x00 (0002ms, 4025ms total)
T670C 065:640 JLINK_SetSpeed(5000) (0000ms, 4025ms total)
T670C 065:640 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.
 -- Max. mem block: 0x00002C18 -- 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 >0x0D TIF> >0x21 TIF>  returns 0x0BC11477 (0169ms, 4194ms total)
T670C 065:809 JLINK_GetDLLVersion()  returns 64600 (0000ms, 4194ms total)
T670C 065:809 JLINK_CORE_GetFound()  returns 0x60000FF (0000ms, 4194ms total)
T670C 065:809 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xF0000000  returns 0x00 (0000ms, 4194ms total)
T670C 065:809 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xF0000000  returns 0x00 (0000ms, 4194ms total)
T670C 065:809 JLINK_GetDebugInfo(0x101 = JLINKARM_DEBUG_INFO_ETM_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 4194ms total)
T670C 065:809 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, 4195ms total)
T670C 065:810 JLINK_GetDebugInfo(0x102 = JLINKARM_DEBUG_INFO_MTB_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 4195ms total)
T670C 065:810 JLINK_GetDebugInfo(0x103 = JLINKARM_DEBUG_INFO_TPIU_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 4195ms total)
T670C 065:810 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, 4196ms total)
T670C 065:811 JLINK_GetDebugInfo(0x104 = JLINKARM_DEBUG_INFO_ITM_ADDR_INDEX) -- Value=0xE0000000  returns 0x00 (0000ms, 4196ms total)
T670C 065:811 JLINK_GetDebugInfo(0x105 = JLINKARM_DEBUG_INFO_DWT_ADDR_INDEX) -- Value=0xE0001000  returns 0x00 (0000ms, 4196ms total)
T670C 065:811 JLINK_GetDebugInfo(0x106 = JLINKARM_DEBUG_INFO_FPB_ADDR_INDEX) -- Value=0xE0002000  returns 0x00 (0000ms, 4196ms total)
T670C 065:811 JLINK_GetDebugInfo(0x107 = JLINKARM_DEBUG_INFO_NVIC_ADDR_INDEX) -- Value=0xE000E000  returns 0x00 (0000ms, 4196ms total)
T670C 065:811 JLINK_GetDebugInfo(0x10C = JLINKARM_DEBUG_INFO_DBG_ADDR_INDEX) -- Value=0xE000EDF0  returns 0x00 (0000ms, 4196ms total)
T670C 065:811 JLINK_GetDebugInfo(0x01 = Unknown) -- Value=0x00000000  returns 0x00 (0000ms, 4196ms total)
T670C 065:811 JLINK_ReadMemU32(0xE000ED00, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED00) - Data: 01 C6 0C 41  returns 1 (0001ms, 4197ms total)
T670C 065:812 JLINK_GetDebugInfo(0x10F = JLINKARM_DEBUG_INFO_HAS_CORTEX_M_SECURITY_EXT_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 4197ms total)
T670C 065:812 JLINK_Halt()  returns 0x00 (0003ms, 4200ms total)
T670C 065:815 JLINK_ReadMemU32(0xE000EDF0, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) - Data: 03 00 03 01  returns 1 (0001ms, 4201ms total)
T670C 065:816 JLINK_WriteU32(0xE000EDF0, 0xA05F0003) -- CPU_WriteMem(4 bytes @ 0xE000EDF0)  returns 0 (0000ms, 4201ms total)
T670C 065:816 JLINK_WriteU32(0xE000EDFC, 0x01000000) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)  returns 0 (0001ms, 4202ms total)
T670C 065:817 JLINK_GetHWStatus(...)  returns 0x00 (0000ms, 4202ms total)
T670C 065:817 JLINK_GetNumBPUnits(Type = 0xFFFFFF00)  returns 0x04 (0000ms, 4202ms total)
T670C 065:817 JLINK_GetNumBPUnits(Type = 0xF0)  returns 0x2000 (0000ms, 4202ms total)
T670C 065:817 JLINK_GetNumWPUnits()  returns 0x02 (0000ms, 4202ms total)
T670C 065:817 JLINK_GetSpeed()  returns 0xFA0 (0000ms, 4202ms total)
T670C 065:817 JLINK_ReadMemU32(0xE000E004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000E004) - Data: 00 00 00 00  returns 1 (0001ms, 4203ms total)
T670C 065:818 JLINK_ReadReg(R15 (PC))  returns 0x0800231C (0001ms, 4204ms total)
T670C 065:819 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 4204ms total)
T670C 065:898 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 4204ms total)
T670C 065:898 JLINK_Reset() -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)Reset: Halt core after reset via DEMCR.VC_CORERESET. >0x35 TIF>Reset: Reset device via AIRCR.SYSRESETREQ. -- CPU_WriteMem(4 bytes @ 0xE000ED0C) >0x0D TIF> >0x28 TIF> -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE0002000)
 -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0070ms, 4274ms total)
T670C 065:968 JLINK_ReadReg(R15 (PC))  returns 0x080000D4 (0000ms, 4274ms total)
T670C 065:968 JLINK_ReadReg(XPSR)  returns 0xF1000000 (0000ms, 4274ms total)
T670C 065:968 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, 4276ms total)
T670C 065:970 JLINK_ReadMemEx(0x080000D4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D4) - Data: 04 48  returns 0x02 (0000ms, 4276ms total)
T670C 065:970 JLINK_ReadMemEx(0x080000D6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D6) - Data: 80 47  returns 0x02 (0000ms, 4276ms total)
T670C 065:970 JLINK_ReadMemEx(0x080000D6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D6) - Data: 80 47  returns 0x02 (0000ms, 4276ms total)
T670C 065:970 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, 4276ms total)
T670C 065:970 JLINK_ReadMemEx(0x080000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D8) - Data: 04 48  returns 0x02 (0000ms, 4276ms total)
T670C 065:970 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, 4276ms total)
T670C 065:970 JLINK_ReadMemEx(0x080000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D8) - Data: 04 48  returns 0x02 (0000ms, 4276ms total)
T670C 065:970 JLINK_ReadMemEx(0x080000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DA) - Data: 00 47  returns 0x02 (0000ms, 4276ms total)
T670C 067:214 JLINK_ReadMemEx(0x080000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DA) - Data: 00 47  returns 0x02 (0000ms, 4276ms total)
T670C 067:214 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 A9 25 00 08 ...  returns 0x3C (0000ms, 4276ms total)
T670C 067:214 JLINK_ReadMemEx(0x080000DC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DC) - Data: FE E7  returns 0x02 (0000ms, 4276ms total)
T670C 067:214 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 A9 25 00 08 ...  returns 0x3C (0000ms, 4276ms total)
T670C 067:214 JLINK_ReadMemEx(0x080000DC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DC) - Data: FE E7  returns 0x02 (0000ms, 4276ms total)
T670C 067:214 JLINK_ReadMemEx(0x080000DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DE) - Data: FE E7  returns 0x02 (0000ms, 4276ms total)
T670C 067:541 JLINK_ReadReg(R0)  returns 0xFFFFFFFF (0001ms, 4277ms total)
T670C 067:542 JLINK_ReadReg(R1)  returns 0xFFFFFFFF (0000ms, 4277ms total)
T670C 067:542 JLINK_ReadReg(R2)  returns 0xFFFFFFFF (0000ms, 4277ms total)
T670C 067:542 JLINK_ReadReg(R3)  returns 0xFFFFFFFF (0000ms, 4277ms total)
T670C 067:542 JLINK_ReadReg(R4)  returns 0xFFFFFFFF (0000ms, 4277ms total)
T670C 067:542 JLINK_ReadReg(R5)  returns 0xFFFFFFFF (0000ms, 4277ms total)
T670C 067:542 JLINK_ReadReg(R6)  returns 0xFFFFFFFF (0000ms, 4277ms total)
T670C 067:542 JLINK_ReadReg(R7)  returns 0xFFFFFFFF (0000ms, 4277ms total)
T670C 067:542 JLINK_ReadReg(R8)  returns 0xFFFFFFFF (0000ms, 4277ms total)
T670C 067:542 JLINK_ReadReg(R9)  returns 0xFFFFFFFF (0000ms, 4277ms total)
T670C 067:542 JLINK_ReadReg(R10)  returns 0xFFFFFFFF (0000ms, 4277ms total)
T670C 067:542 JLINK_ReadReg(R11)  returns 0xFFFFFFFF (0000ms, 4277ms total)
T670C 067:542 JLINK_ReadReg(R12)  returns 0xFFFFFFFF (0000ms, 4277ms total)
T670C 067:542 JLINK_ReadReg(R13 (SP))  returns 0x20001140 (0000ms, 4277ms total)
T670C 067:542 JLINK_ReadReg(R14)  returns 0xFFFFFFFF (0000ms, 4277ms total)
T670C 067:542 JLINK_ReadReg(R15 (PC))  returns 0x080000D4 (0000ms, 4277ms total)
T670C 067:542 JLINK_ReadReg(XPSR)  returns 0xF1000000 (0000ms, 4277ms total)
T670C 067:542 JLINK_ReadReg(MSP)  returns 0x20001140 (0000ms, 4277ms total)
T670C 067:542 JLINK_ReadReg(PSP)  returns 0xFFFFFFFC (0000ms, 4277ms total)
T670C 067:542 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 4277ms total)
T670C 067:542 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000080) -- Updating C cache (64 bytes @ 0x20000080) -- Read from C cache (1 bytes @ 0x20000088) - Data: 00  returns 0x01 (0001ms, 4278ms total)
T670C 067:543 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000088) - Data: 00  returns 0x01 (0001ms, 4279ms total)
T670C 067:544 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000088) - Data: 00  returns 0x01 (0000ms, 4279ms total)
T670C 067:547 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000180) -- Updating C cache (64 bytes @ 0x20000180) -- Read from C cache (2 bytes @ 0x2000018E) - Data: 00 00  returns 0x02 (0001ms, 4280ms total)
T670C 067:548 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000018E) - Data: 00 00  returns 0x02 (0000ms, 4280ms total)
T670C 067:548 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000018E) - Data: 00 00  returns 0x02 (0000ms, 4280ms total)
T670C 067:552 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0000ms, 4280ms total)
T670C 067:552 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0000ms, 4280ms total)
T670C 067:552 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0000ms, 4280ms total)
T670C 067:555 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 4280ms total)
T670C 067:555 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 4280ms total)
T670C 067:555 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 4281ms total)
T670C 067:559 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000B2) - Data: 00 00  returns 0x02 (0000ms, 4281ms total)
T670C 067:559 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000B2) - Data: 00 00  returns 0x02 (0000ms, 4281ms total)
T670C 067:559 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000B2) - Data: 00 00  returns 0x02 (0000ms, 4281ms total)
T670C 067:562 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 4282ms total)
T670C 067:563 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 4282ms total)
T670C 067:563 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 4282ms total)
T670C 067:567 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 4282ms total)
T670C 067:567 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 4282ms total)
T670C 067:567 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 4282ms total)
T670C 067:571 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200001B8) - Data: 00 00  returns 0x02 (0000ms, 4282ms total)
T670C 067:571 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200001B8) - Data: 00 00  returns 0x02 (0000ms, 4282ms total)
T670C 067:571 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200001B8) - Data: 00 00  returns 0x02 (0000ms, 4282ms total)
T670C 067:575 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000B6) - Data: 00 00  returns 0x02 (0000ms, 4282ms total)
T670C 067:575 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000B6) - Data: 00 00  returns 0x02 (0000ms, 4282ms total)
T670C 067:575 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000B6) - Data: 00 00  returns 0x02 (0000ms, 4282ms total)
T670C 067:580 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000088) - Data: 00  returns 0x01 (0000ms, 4282ms total)
T670C 067:580 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000088) - Data: 00  returns 0x01 (0000ms, 4282ms total)
T670C 067:580 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000088) - Data: 00  returns 0x01 (0000ms, 4282ms total)
T670C 067:589 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200000C0) -- Updating C cache (64 bytes @ 0x200000C0) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 4283ms total)
T670C 067:590 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 4283ms total)
T670C 067:590 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 4283ms total)
T670C 067:596 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x40023844) -- CPU_ReadMem(64 bytes @ 0x08000000) -- Updating C cache (64 bytes @ 0x08000000) -- Read from C cache (1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0001ms, 4284ms total)
T670C 067:598 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0000ms, 4284ms total)
T670C 067:598 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0000ms, 4284ms total)
T670C 067:603 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0000ms, 4284ms total)
T670C 067:603 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0000ms, 4284ms total)
T670C 067:603 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0000ms, 4284ms total)
T670C 067:608 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000192) - Data: 00 00  returns 0x02 (0001ms, 4285ms total)
T670C 067:609 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000192) - Data: 00 00  returns 0x02 (0000ms, 4285ms total)
T670C 067:609 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000192) - Data: 00 00  returns 0x02 (0000ms, 4285ms total)
T670C 067:615 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000140) -- Updating C cache (64 bytes @ 0x20000140) -- Read from C cache (1 bytes @ 0x20000147) - Data: 00  returns 0x01 (0001ms, 4286ms total)
T670C 067:616 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000147) - Data: 00  returns 0x01 (0000ms, 4286ms total)
T670C 067:616 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000147) - Data: 00  returns 0x01 (0000ms, 4286ms total)
T670C 067:622 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200001A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 4286ms total)
T670C 067:622 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200001A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 4286ms total)
T670C 067:622 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200001A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 4286ms total)
T670C 067:628 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000188) - Data: 00  returns 0x01 (0000ms, 4286ms total)
T670C 067:628 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000188) - Data: 00  returns 0x01 (0000ms, 4286ms total)
T670C 067:628 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000188) - Data: 00  returns 0x01 (0000ms, 4286ms total)
T670C 067:634 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000C4) - Data: 00 00  returns 0x02 (0000ms, 4286ms total)
T670C 067:634 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000C4) - Data: 00 00  returns 0x02 (0000ms, 4286ms total)
T670C 067:634 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000C4) - Data: 00 00  returns 0x02 (0000ms, 4286ms total)
T670C 067:641 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000AE) - Data: 00 00  returns 0x02 (0000ms, 4286ms total)
T670C 067:641 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000AE) - Data: 00 00  returns 0x02 (0000ms, 4286ms total)
T670C 067:641 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000AE) - Data: 00 00  returns 0x02 (0000ms, 4286ms total)
T670C 067:648 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E8) - Data: 00 00 00 00  returns 0x04 (0000ms, 4286ms total)
T670C 067:648 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E8) - Data: 00 00 00 00  returns 0x04 (0000ms, 4286ms total)
T670C 067:648 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E8) - Data: 00 00 00 00  returns 0x04 (0000ms, 4286ms total)
T670C 067:655 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000192) - Data: 00 00  returns 0x02 (0000ms, 4286ms total)
T670C 067:655 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000192) - Data: 00 00  returns 0x02 (0000ms, 4286ms total)
T670C 067:655 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000192) - Data: 00 00  returns 0x02 (0000ms, 4286ms total)
T670C 067:662 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200001A0) - Data: 00 00  returns 0x02 (0000ms, 4286ms total)
T670C 067:662 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200001A0) - Data: 00 00  returns 0x02 (0000ms, 4286ms total)
T670C 067:662 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200001A0) - Data: 00 00  returns 0x02 (0000ms, 4286ms total)
T670C 067:670 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200001BA) - Data: 00 00  returns 0x02 (0000ms, 4286ms total)
T670C 067:670 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200001BA) - Data: 00 00  returns 0x02 (0000ms, 4286ms total)
T670C 067:670 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200001BA) - Data: 00 00  returns 0x02 (0000ms, 4286ms total)
T670C 067:678 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200001BA) - Data: 00 00  returns 0x02 (0000ms, 4286ms total)
T670C 067:678 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200001BA) - Data: 00 00  returns 0x02 (0000ms, 4286ms total)
T670C 067:678 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200001BA) - Data: 00 00  returns 0x02 (0000ms, 4286ms total)
T670C 067:686 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000F8) - Data: 00 00 00 00  returns 0x04 (0000ms, 4286ms total)
T670C 067:686 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000F8) - Data: 00 00 00 00  returns 0x04 (0000ms, 4286ms total)
T670C 067:686 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000F8) - Data: 00 00 00 00  returns 0x04 (0000ms, 4286ms total)
T670C 067:694 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 4286ms total)
T670C 067:694 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 4286ms total)
T670C 067:694 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 4286ms total)
T670C 067:702 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200001A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 4286ms total)
T670C 067:702 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200001A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 4286ms total)
T670C 067:702 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200001A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 4286ms total)
T6ACC 067:756 JLINK_ReadMemEx(0x080000D4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D4) - Data: 04 48  returns 0x02 (0000ms, 4286ms total)
T6ACC 067:756 JLINK_SetBPEx(Addr = 0x0800BA48, Type = 0xFFFFFFF2)  returns 0x00000001 (0000ms, 4286ms total)
T6ACC 067:756 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, 4291ms total)
T6ACC 067:862 JLINK_IsHalted()  returns FALSE (0000ms, 4291ms total)
T6ACC 067:963 JLINK_IsHalted()  returns FALSE (0000ms, 4291ms total)
T6ACC 068:064 JLINK_IsHalted()  returns FALSE (0000ms, 4291ms total)
T6ACC 068:165 JLINK_IsHalted()  returns FALSE (0000ms, 4291ms total)
T670C 068:275 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 00  returns 0x01 (0000ms, 4291ms total)
T670C 068:275 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 00 00  returns 0x02 (0001ms, 4292ms total)
T670C 068:284 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0000ms, 4292ms total)
T670C 068:291 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 4292ms total)
T670C 068:291 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 00 00  returns 0x02 (0001ms, 4293ms total)
T670C 068:299 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 4293ms total)
T670C 068:299 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 4294ms total)
T670C 068:300 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 00 00  returns 0x02 (0001ms, 4295ms total)
T670C 068:307 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 00 00  returns 0x02 (0001ms, 4296ms total)
T670C 068:308 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 00  returns 0x01 (0000ms, 4296ms total)
T670C 068:308 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 4297ms total)
T670C 068:316 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x40023844) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0001ms, 4298ms total)
T670C 068:317 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0001ms, 4299ms total)
T670C 068:318 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 00 00  returns 0x02 (0001ms, 4300ms total)
T670C 068:319 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 00  returns 0x01 (0000ms, 4300ms total)
T670C 068:319 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 4301ms total)
T670C 068:320 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 00  returns 0x01 (0001ms, 4302ms total)
T670C 068:321 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: 00 00  returns 0x02 (0000ms, 4302ms total)
T670C 068:328 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 00 00  returns 0x02 (0000ms, 4302ms total)
T670C 068:335 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: 00 00 00 00  returns 0x04 (0001ms, 4303ms total)
T670C 068:342 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 00 00  returns 0x02 (0001ms, 4304ms total)
T670C 068:349 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 00 00  returns 0x02 (0001ms, 4305ms total)
T670C 068:357 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 00 00  returns 0x02 (0001ms, 4306ms total)
T670C 068:364 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 00 00  returns 0x02 (0001ms, 4307ms total)
T670C 068:372 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 00 00 00 00  returns 0x04 (0000ms, 4307ms total)
T670C 068:379 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 4307ms total)
T670C 068:379 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 4308ms total)
T6ACC 068:380 JLINK_IsHalted()  returns FALSE (0001ms, 4309ms total)
T6ACC 068:482 JLINK_IsHalted()  returns FALSE (0000ms, 4308ms total)
T6ACC 068:583 JLINK_IsHalted()  returns FALSE (0000ms, 4308ms total)
T6ACC 068:684 JLINK_IsHalted()  returns FALSE (0000ms, 4308ms total)
T670C 068:793 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 00  returns 0x01 (0001ms, 4309ms total)
T670C 068:794 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 00 00  returns 0x02 (0001ms, 4310ms total)
T670C 068:795 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0000ms, 4310ms total)
T670C 068:795 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 4311ms total)
T670C 068:796 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 00 00  returns 0x02 (0001ms, 4312ms total)
T670C 068:797 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 4312ms total)
T670C 068:797 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 4313ms total)
T670C 068:798 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 00 00  returns 0x02 (0001ms, 4314ms total)
T670C 068:799 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 00 00  returns 0x02 (0000ms, 4314ms total)
T670C 068:799 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 00  returns 0x01 (0001ms, 4315ms total)
T670C 068:800 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 4316ms total)
T670C 068:801 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0000ms, 4316ms total)
T670C 068:801 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0001ms, 4317ms total)
T670C 068:802 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 00 00  returns 0x02 (0000ms, 4317ms total)
T670C 068:802 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 00  returns 0x01 (0001ms, 4318ms total)
T670C 068:803 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 4319ms total)
T670C 068:804 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 00  returns 0x01 (0000ms, 4319ms total)
T670C 068:804 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: 00 00  returns 0x02 (0001ms, 4320ms total)
T670C 068:805 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 00 00  returns 0x02 (0000ms, 4320ms total)
T670C 068:805 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: 00 00 00 00  returns 0x04 (0001ms, 4321ms total)
T670C 068:806 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 00 00  returns 0x02 (0001ms, 4322ms total)
T670C 068:807 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 00 00  returns 0x02 (0000ms, 4322ms total)
T670C 068:807 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 00 00  returns 0x02 (0001ms, 4323ms total)
T670C 068:808 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 00 00  returns 0x02 (0001ms, 4324ms total)
T670C 068:809 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 00 00 00 00  returns 0x04 (0000ms, 4324ms total)
T670C 068:809 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 4325ms total)
T670C 068:810 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 4325ms total)
T6ACC 068:810 JLINK_IsHalted()  returns FALSE (0001ms, 4326ms total)
T6ACC 068:912 JLINK_IsHalted()  returns FALSE (0000ms, 4325ms total)
T6ACC 069:013 JLINK_IsHalted()  returns FALSE (0000ms, 4325ms total)
T6ACC 069:114 JLINK_IsHalted()  returns FALSE (0000ms, 4325ms total)
T6ACC 069:215 JLINK_IsHalted()  returns TRUE (0003ms, 4328ms total)
T6ACC 069:218 JLINK_Halt()  returns 0x00 (0000ms, 4325ms total)
T6ACC 069:218 JLINK_IsHalted()  returns TRUE (0000ms, 4325ms total)
T6ACC 069:218 JLINK_IsHalted()  returns TRUE (0000ms, 4325ms total)
T6ACC 069:218 JLINK_IsHalted()  returns TRUE (0000ms, 4325ms total)
T6ACC 069:218 JLINK_ReadReg(R15 (PC))  returns 0x0800BA48 (0000ms, 4325ms total)
T6ACC 069:218 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 4325ms total)
T6ACC 069:218 JLINK_ClrBPEx(BPHandle = 0x00000001)  returns 0x00 (0000ms, 4325ms total)
T6ACC 069:218 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 1 (0001ms, 4326ms total)
T6ACC 069:219 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 1 (0001ms, 4327ms total)
T6ACC 069:220 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 1 (0000ms, 4327ms total)
T6ACC 069:220 JLINK_ReadReg(R0)  returns 0x0800BA49 (0000ms, 4327ms total)
T6ACC 069:220 JLINK_ReadReg(R1)  returns 0x20001E68 (0000ms, 4327ms total)
T6ACC 069:220 JLINK_ReadReg(R2)  returns 0x00000000 (0000ms, 4327ms total)
T6ACC 069:220 JLINK_ReadReg(R3)  returns 0x0800A901 (0000ms, 4327ms total)
T6ACC 069:220 JLINK_ReadReg(R4)  returns 0x0800CC40 (0000ms, 4327ms total)
T6ACC 069:220 JLINK_ReadReg(R5)  returns 0x00000001 (0000ms, 4327ms total)
T6ACC 069:220 JLINK_ReadReg(R6)  returns 0x0800CC40 (0001ms, 4328ms total)
T6ACC 069:221 JLINK_ReadReg(R7)  returns 0xFFFFFFFF (0000ms, 4328ms total)
T6ACC 069:221 JLINK_ReadReg(R8)  returns 0xFFFFFFFF (0000ms, 4328ms total)
T6ACC 069:221 JLINK_ReadReg(R9)  returns 0xFFFFFFFF (0000ms, 4328ms total)
T6ACC 069:221 JLINK_ReadReg(R10)  returns 0xFFFFFFFF (0000ms, 4328ms total)
T6ACC 069:221 JLINK_ReadReg(R11)  returns 0xFFFFFFFF (0000ms, 4328ms total)
T6ACC 069:221 JLINK_ReadReg(R12)  returns 0xFFFFFFFF (0000ms, 4328ms total)
T6ACC 069:221 JLINK_ReadReg(R13 (SP))  returns 0x20001E68 (0000ms, 4328ms total)
T6ACC 069:221 JLINK_ReadReg(R14)  returns 0x08005AB5 (0000ms, 4328ms total)
T6ACC 069:221 JLINK_ReadReg(R15 (PC))  returns 0x0800BA48 (0000ms, 4328ms total)
T6ACC 069:221 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 4328ms total)
T6ACC 069:221 JLINK_ReadReg(MSP)  returns 0x20001E68 (0000ms, 4328ms total)
T6ACC 069:221 JLINK_ReadReg(PSP)  returns 0xFFFFFFFC (0000ms, 4328ms total)
T6ACC 069:221 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 4328ms total)
T670C 069:232 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000080) -- Updating C cache (64 bytes @ 0x20000080) -- Read from C cache (1 bytes @ 0x20000088) - Data: 01  returns 0x01 (0001ms, 4329ms total)
T670C 069:241 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000180) -- Updating C cache (64 bytes @ 0x20000180) -- Read from C cache (2 bytes @ 0x2000018E) - Data: 00 00  returns 0x02 (0001ms, 4330ms total)
T670C 069:242 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0000ms, 4330ms total)
T670C 069:242 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 4330ms total)
T670C 069:242 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000B2) - Data: 00 00  returns 0x02 (0000ms, 4330ms total)
T670C 069:242 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 4330ms total)
T670C 069:242 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 4330ms total)
T670C 069:242 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200001B8) - Data: 00 00  returns 0x02 (0000ms, 4330ms total)
T670C 069:242 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000B6) - Data: 00 00  returns 0x02 (0000ms, 4330ms total)
T670C 069:242 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000088) - Data: 01  returns 0x01 (0000ms, 4330ms total)
T670C 069:249 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200000C0) -- Updating C cache (64 bytes @ 0x200000C0) -- Read from C cache (4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 4331ms total)
T670C 069:250 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x40023844) -- CPU_ReadMem(64 bytes @ 0x08000000) -- Updating C cache (64 bytes @ 0x08000000) -- Read from C cache (1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0002ms, 4333ms total)
T670C 069:252 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0000ms, 4333ms total)
T670C 069:252 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000192) - Data: 00 00  returns 0x02 (0000ms, 4333ms total)
T670C 069:252 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000140) -- Updating C cache (64 bytes @ 0x20000140) -- Read from C cache (1 bytes @ 0x20000147) - Data: 00  returns 0x01 (0001ms, 4334ms total)
T670C 069:253 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200001A4) - Data: 00 00 7A 44  returns 0x04 (0000ms, 4334ms total)
T670C 069:260 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000188) - Data: 00  returns 0x01 (0000ms, 4334ms total)
T670C 069:260 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000C4) - Data: 00 00  returns 0x02 (0000ms, 4334ms total)
T670C 069:260 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0000ms, 4334ms total)
T670C 069:266 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000E8) - Data: 00 00 00 00  returns 0x04 (0000ms, 4334ms total)
T670C 069:266 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000192) - Data: 00 00  returns 0x02 (0000ms, 4334ms total)
T670C 069:266 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200001A0) - Data: 00 00  returns 0x02 (0000ms, 4334ms total)
T670C 069:266 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200001BA) - Data: 00 00  returns 0x02 (0000ms, 4334ms total)
T670C 069:266 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200001BA) - Data: 00 00  returns 0x02 (0000ms, 4334ms total)
T670C 069:266 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200000F8) - Data: 00 00 00 00  returns 0x04 (0000ms, 4334ms total)
T670C 069:266 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 4334ms total)
T670C 069:266 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200001A4) - Data: 00 00 7A 44  returns 0x04 (0000ms, 4334ms total)
T6ACC 070:956 JLINK_ReadMemEx(0x0800BA48, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0800BA40) -- Updating C cache (64 bytes @ 0x0800BA40) -- Read from C cache (2 bytes @ 0x0800BA48) - Data: FB F7  returns 0x02 (0001ms, 4335ms total)
T6ACC 070:957 JLINK_Go() -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) (0003ms, 4338ms total)
T6ACC 071:061 JLINK_IsHalted()  returns FALSE (0000ms, 4338ms total)
T6ACC 071:162 JLINK_IsHalted()  returns FALSE (0000ms, 4338ms total)
T6ACC 071:263 JLINK_IsHalted()  returns FALSE (0000ms, 4338ms total)
T6ACC 071:365 JLINK_IsHalted()  returns FALSE (0000ms, 4338ms total)
T670C 071:475 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 01  returns 0x01 (0000ms, 4338ms total)
T670C 071:483 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: C8 00  returns 0x02 (0000ms, 4338ms total)
T670C 071:490 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0000ms, 4338ms total)
T670C 071:490 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 4339ms total)
T670C 071:491 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 00 00  returns 0x02 (0001ms, 4340ms total)
T670C 071:492 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 4340ms total)
T670C 071:492 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 4341ms total)
T670C 071:493 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 00 00  returns 0x02 (0001ms, 4342ms total)
T670C 071:494 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 00 00  returns 0x02 (0000ms, 4342ms total)
T670C 071:494 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 01  returns 0x01 (0001ms, 4343ms total)
T670C 071:501 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 4344ms total)
T670C 071:502 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x40023844) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0001ms, 4345ms total)
T670C 071:503 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0001ms, 4346ms total)
T670C 071:504 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 01 00  returns 0x02 (0000ms, 4346ms total)
T670C 071:511 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0000ms, 4346ms total)
T670C 071:517 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 4347ms total)
T670C 071:531 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 00  returns 0x01 (0001ms, 4348ms total)
T670C 071:532 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: 00 00  returns 0x02 (0000ms, 4348ms total)
T670C 071:532 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0001ms, 4349ms total)
T670C 071:539 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: 00 00 00 00  returns 0x04 (0001ms, 4350ms total)
T670C 071:540 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 01 00  returns 0x02 (0001ms, 4351ms total)
T670C 071:547 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: C8 00  returns 0x02 (0001ms, 4352ms total)
T670C 071:554 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 00 00  returns 0x02 (0001ms, 4353ms total)
T670C 071:555 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 00 00  returns 0x02 (0000ms, 4353ms total)
T670C 071:555 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 00 00 00 00  returns 0x04 (0001ms, 4354ms total)
T670C 071:556 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 4355ms total)
T670C 071:557 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 4355ms total)
T6ACC 071:570 JLINK_IsHalted()  returns FALSE (0001ms, 4356ms total)
T6ACC 071:672 JLINK_IsHalted()  returns FALSE (0000ms, 4355ms total)
T6ACC 071:773 JLINK_IsHalted()  returns FALSE (0000ms, 4355ms total)
T6ACC 071:874 JLINK_IsHalted()  returns FALSE (0000ms, 4355ms total)
T6ACC 071:975 JLINK_IsHalted()  returns FALSE (0000ms, 4355ms total)
T670C 072:083 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 4356ms total)
T670C 072:091 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0000ms, 4356ms total)
T670C 072:104 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 0C 00  returns 0x02 (0001ms, 4357ms total)
T670C 072:111 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 01  returns 0x01 (0001ms, 4358ms total)
T670C 072:119 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: A1 02  returns 0x02 (0000ms, 4358ms total)
T670C 072:126 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 4358ms total)
T670C 072:126 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 4359ms total)
T670C 072:127 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 3E 00  returns 0x02 (0001ms, 4360ms total)
T670C 072:134 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0001ms, 4361ms total)
T670C 072:141 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 4362ms total)
T670C 072:149 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: A0 86 01 00  returns 0x04 (0000ms, 4362ms total)
T670C 072:156 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0001ms, 4363ms total)
T670C 072:157 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 0C 00  returns 0x02 (0001ms, 4364ms total)
T670C 072:164 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 4365ms total)
T670C 072:178 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 00  returns 0x01 (0001ms, 4366ms total)
T670C 072:192 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 34 33 B3 3F  returns 0x04 (0001ms, 4367ms total)
T670C 072:206 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 00  returns 0x01 (0001ms, 4368ms total)
T670C 072:207 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: 07 28  returns 0x02 (0001ms, 4369ms total)
T670C 072:215 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0000ms, 4369ms total)
T670C 072:215 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: 00 08 01 00  returns 0x04 (0001ms, 4370ms total)
T670C 072:222 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 4371ms total)
T670C 072:236 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0001ms, 4372ms total)
T670C 072:250 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 20 00  returns 0x02 (0001ms, 4373ms total)
T670C 072:257 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 20 00  returns 0x02 (0001ms, 4374ms total)
T670C 072:265 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 1C 5C 01 00  returns 0x04 (0000ms, 4374ms total)
T670C 072:272 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 4375ms total)
T670C 072:273 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 34 33 B3 3F  returns 0x04 (0000ms, 4375ms total)
T6ACC 072:287 JLINK_IsHalted()  returns FALSE (0000ms, 4375ms total)
T6ACC 072:389 JLINK_IsHalted()  returns FALSE (0000ms, 4375ms total)
T6ACC 072:490 JLINK_IsHalted()  returns FALSE (0000ms, 4375ms total)
T6ACC 072:591 JLINK_IsHalted()  returns FALSE (0000ms, 4375ms total)
T670C 072:701 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 4376ms total)
T670C 072:709 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0001ms, 4377ms total)
T670C 072:716 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 0B 00  returns 0x02 (0001ms, 4378ms total)
T670C 072:730 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 4378ms total)
T670C 072:743 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: AE 02  returns 0x02 (0001ms, 4379ms total)
T670C 072:757 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 4380ms total)
T670C 072:758 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 4380ms total)
T670C 072:758 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 3A 00  returns 0x02 (0001ms, 4381ms total)
T670C 072:773 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0000ms, 4381ms total)
T670C 072:780 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 4381ms total)
T670C 072:787 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 22 00 00 00  returns 0x04 (0000ms, 4381ms total)
T670C 072:801 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0000ms, 4381ms total)
T670C 072:801 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 0B 00  returns 0x02 (0001ms, 4382ms total)
T670C 072:815 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 4383ms total)
T670C 072:822 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0001ms, 4384ms total)
T670C 072:837 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 01 00 00 40  returns 0x04 (0000ms, 4384ms total)
T670C 072:850 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 00  returns 0x01 (0001ms, 4385ms total)
T670C 072:851 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: 4A 74  returns 0x02 (0001ms, 4386ms total)
T670C 072:865 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0001ms, 4387ms total)
T670C 072:866 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: 0A E5 00 00  returns 0x04 (0001ms, 4388ms total)
T670C 072:880 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 4389ms total)
T670C 072:887 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0001ms, 4390ms total)
T670C 072:894 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 1F 00  returns 0x02 (0001ms, 4391ms total)
T670C 072:908 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 1F 00  returns 0x02 (0001ms, 4392ms total)
T670C 072:922 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 32 6C 01 00  returns 0x04 (0000ms, 4392ms total)
T670C 072:936 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 4392ms total)
T670C 072:936 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 67 66 06 40  returns 0x04 (0001ms, 4393ms total)
T6ACC 072:951 JLINK_IsHalted()  returns FALSE (0001ms, 4394ms total)
T6ACC 073:053 JLINK_IsHalted()  returns FALSE (0000ms, 4393ms total)
T6ACC 073:155 JLINK_IsHalted()  returns FALSE (0000ms, 4393ms total)
T670C 073:265 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 4393ms total)
T670C 073:265 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0001ms, 4394ms total)
T670C 073:266 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 07 00  returns 0x02 (0000ms, 4394ms total)
T670C 073:281 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 4396ms total)
T670C 073:288 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: F2 01  returns 0x02 (0001ms, 4397ms total)
T670C 073:302 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 4398ms total)
T670C 073:303 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 4399ms total)
T670C 073:304 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 27 00  returns 0x02 (0000ms, 4399ms total)
T670C 073:317 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0000ms, 4399ms total)
T670C 073:318 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 4399ms total)
T670C 073:318 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 22 00 00 00  returns 0x04 (0001ms, 4400ms total)
T670C 073:325 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0001ms, 4401ms total)
T670C 073:326 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 07 00  returns 0x02 (0001ms, 4402ms total)
T670C 073:340 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0000ms, 4402ms total)
T670C 073:340 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0001ms, 4403ms total)
T670C 073:348 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: FF FF 1F 40  returns 0x04 (0000ms, 4403ms total)
T670C 073:361 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 00  returns 0x01 (0001ms, 4404ms total)
T670C 073:362 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: B6 3E  returns 0x02 (0001ms, 4405ms total)
T670C 073:376 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0001ms, 4406ms total)
T670C 073:377 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: 44 9A 00 00  returns 0x04 (0000ms, 4406ms total)
T670C 073:391 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0000ms, 4406ms total)
T670C 073:391 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0001ms, 4407ms total)
T670C 073:392 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 1B 00  returns 0x02 (0000ms, 4407ms total)
T670C 073:406 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 1B 00  returns 0x02 (0000ms, 4408ms total)
T670C 073:419 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 18 6C 01 00  returns 0x04 (0001ms, 4409ms total)
T670C 073:433 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 4410ms total)
T670C 073:434 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 65 66 26 40  returns 0x04 (0000ms, 4410ms total)
T6ACC 073:448 JLINK_IsHalted()  returns FALSE (0000ms, 4410ms total)
T6ACC 073:549 JLINK_IsHalted()  returns FALSE (0000ms, 4410ms total)
T6ACC 073:650 JLINK_IsHalted()  returns FALSE (0000ms, 4410ms total)
T6ACC 073:752 JLINK_IsHalted()  returns FALSE (0000ms, 4410ms total)
T670C 073:862 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 4410ms total)
T670C 073:862 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0001ms, 4411ms total)
T670C 073:863 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 05 00  returns 0x02 (0001ms, 4412ms total)
T670C 073:879 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 4412ms total)
T670C 073:879 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 6C 01  returns 0x02 (0001ms, 4413ms total)
T670C 073:893 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 4414ms total)
T670C 073:894 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 4414ms total)
T670C 073:894 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 60 00  returns 0x02 (0001ms, 4415ms total)
T670C 073:908 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0001ms, 4416ms total)
T670C 073:909 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 4416ms total)
T670C 073:909 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: A0 86 01 00  returns 0x04 (0001ms, 4417ms total)
T670C 073:916 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0001ms, 4418ms total)
T670C 073:917 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 05 00  returns 0x02 (0001ms, 4419ms total)
T670C 073:931 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 4420ms total)
T670C 073:932 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0000ms, 4420ms total)
T670C 073:932 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 2F 33 53 40  returns 0x04 (0001ms, 4421ms total)
T670C 073:947 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 00  returns 0x01 (0000ms, 4421ms total)
T670C 073:947 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: 04 05  returns 0x02 (0001ms, 4422ms total)
T670C 073:961 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0001ms, 4423ms total)
T670C 073:962 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: 6C 78 01 00  returns 0x04 (0001ms, 4424ms total)
T670C 073:976 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0000ms, 4424ms total)
T670C 073:977 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0000ms, 4424ms total)
T670C 073:977 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 26 00  returns 0x02 (0001ms, 4425ms total)
T670C 073:991 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 26 00  returns 0x02 (0001ms, 4426ms total)
T670C 074:005 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 30 5C 01 00  returns 0x04 (0000ms, 4426ms total)
T670C 074:019 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 4426ms total)
T670C 074:019 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 95 99 59 40  returns 0x04 (0001ms, 4427ms total)
T6ACC 074:033 JLINK_IsHalted()  returns FALSE (0001ms, 4428ms total)
T6ACC 074:135 JLINK_IsHalted()  returns FALSE (0000ms, 4427ms total)
T6ACC 074:236 JLINK_IsHalted()  returns FALSE (0000ms, 4427ms total)
T6ACC 074:337 JLINK_IsHalted()  returns FALSE (0000ms, 4427ms total)
T670C 074:447 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 4428ms total)
T670C 074:448 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0000ms, 4428ms total)
T670C 074:448 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 11 00  returns 0x02 (0001ms, 4429ms total)
T670C 074:463 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 01  returns 0x01 (0001ms, 4430ms total)
T670C 074:470 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 62 03  returns 0x02 (0001ms, 4431ms total)
T670C 074:484 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 4432ms total)
T670C 074:485 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 4433ms total)
T670C 074:486 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 1D 00  returns 0x02 (0000ms, 4433ms total)
T670C 074:500 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0000ms, 4433ms total)
T670C 074:500 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 4434ms total)
T670C 074:501 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: A0 86 01 00  returns 0x04 (0000ms, 4434ms total)
T670C 074:508 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0001ms, 4435ms total)
T670C 074:509 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 11 00  returns 0x02 (0000ms, 4435ms total)
T670C 074:522 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 4436ms total)
T670C 074:523 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0001ms, 4437ms total)
T670C 074:524 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: F9 FF 7F 40  returns 0x04 (0000ms, 4437ms total)
T670C 074:537 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 00  returns 0x01 (0001ms, 4438ms total)
T670C 074:538 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: CF 51  returns 0x02 (0001ms, 4439ms total)
T670C 074:552 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0001ms, 4440ms total)
T670C 074:553 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: 54 55 01 00  returns 0x04 (0001ms, 4441ms total)
T670C 074:567 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0000ms, 4441ms total)
T670C 074:567 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0001ms, 4442ms total)
T670C 074:568 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 25 00  returns 0x02 (0001ms, 4443ms total)
T670C 074:582 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 25 00  returns 0x02 (0001ms, 4444ms total)
T670C 074:596 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 88 6C 01 00  returns 0x04 (0001ms, 4445ms total)
T670C 074:610 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 4445ms total)
T670C 074:610 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 4446ms total)
T6ACC 074:624 JLINK_IsHalted()  returns FALSE (0001ms, 4447ms total)
T6ACC 074:726 JLINK_IsHalted()  returns FALSE (0000ms, 4446ms total)
T6ACC 074:827 JLINK_IsHalted()  returns FALSE (0000ms, 4446ms total)
T6ACC 074:928 JLINK_IsHalted()  returns FALSE (0000ms, 4446ms total)
T670C 075:038 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 4447ms total)
T670C 075:039 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0000ms, 4447ms total)
T670C 075:039 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 11 00  returns 0x02 (0001ms, 4448ms total)
T670C 075:048 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 4449ms total)
T670C 075:062 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: D9 01  returns 0x02 (0001ms, 4450ms total)
T670C 075:076 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 4451ms total)
T670C 075:077 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 4451ms total)
T670C 075:077 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 57 00  returns 0x02 (0001ms, 4452ms total)
T670C 075:091 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0001ms, 4453ms total)
T670C 075:092 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 4453ms total)
T670C 075:092 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 23 00 00 00  returns 0x04 (0001ms, 4454ms total)
T670C 075:099 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0001ms, 4455ms total)
T670C 075:100 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 11 00  returns 0x02 (0001ms, 4456ms total)
T670C 075:108 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0000ms, 4456ms total)
T670C 075:108 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0001ms, 4457ms total)
T670C 075:109 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: CD CC CC 3D  returns 0x04 (0000ms, 4457ms total)
T670C 075:123 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 00  returns 0x01 (0000ms, 4457ms total)
T670C 075:123 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: 9F 5E  returns 0x02 (0001ms, 4458ms total)
T670C 075:137 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0001ms, 4459ms total)
T670C 075:138 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: B1 55 01 00  returns 0x04 (0000ms, 4459ms total)
T670C 075:152 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0000ms, 4459ms total)
T670C 075:152 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0001ms, 4460ms total)
T670C 075:153 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 25 00  returns 0x02 (0000ms, 4460ms total)
T670C 075:160 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 25 00  returns 0x02 (0001ms, 4461ms total)
T670C 075:168 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 2B 6C 01 00  returns 0x04 (0000ms, 4461ms total)
T670C 075:181 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 4462ms total)
T670C 075:182 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: CD CC CC 3D  returns 0x04 (0001ms, 4463ms total)
T6ACC 075:196 JLINK_IsHalted()  returns FALSE (0001ms, 4464ms total)
T6ACC 075:298 JLINK_IsHalted()  returns FALSE (0000ms, 4463ms total)
T6ACC 075:399 JLINK_IsHalted()  returns FALSE (0000ms, 4463ms total)
T6ACC 075:500 JLINK_IsHalted()  returns FALSE (0000ms, 4463ms total)
T670C 075:609 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 4464ms total)
T670C 075:610 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0001ms, 4465ms total)
T670C 075:611 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 06 00  returns 0x02 (0000ms, 4465ms total)
T670C 075:619 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 4466ms total)
T670C 075:626 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: AB 02  returns 0x02 (0001ms, 4467ms total)
T670C 075:640 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 4467ms total)
T670C 075:640 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 4468ms total)
T670C 075:641 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 22 00  returns 0x02 (0001ms, 4469ms total)
T670C 075:655 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0000ms, 4469ms total)
T670C 075:655 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 4470ms total)
T670C 075:656 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 25 00 00 00  returns 0x04 (0001ms, 4471ms total)
T670C 075:670 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0001ms, 4472ms total)
T670C 075:671 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 06 00  returns 0x02 (0000ms, 4472ms total)
T670C 075:678 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0000ms, 4472ms total)
T670C 075:679 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0000ms, 4473ms total)
T670C 075:679 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 00 00 00 3F  returns 0x04 (0001ms, 4474ms total)
T670C 075:694 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 00  returns 0x01 (0000ms, 4474ms total)
T670C 075:694 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: CD 64  returns 0x02 (0001ms, 4475ms total)
T670C 075:708 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0001ms, 4476ms total)
T670C 075:709 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: 56 87 00 00  returns 0x04 (0000ms, 4476ms total)
T670C 075:723 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0000ms, 4476ms total)
T670C 075:723 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0001ms, 4477ms total)
T670C 075:724 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 1A 00  returns 0x02 (0000ms, 4477ms total)
T670C 075:731 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 1A 00  returns 0x02 (0001ms, 4478ms total)
T670C 075:738 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 46 6C 01 00  returns 0x04 (0001ms, 4479ms total)
T670C 075:752 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 4480ms total)
T670C 075:753 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 9A 99 19 3F  returns 0x04 (0000ms, 4480ms total)
T6ACC 075:766 JLINK_IsHalted()  returns FALSE (0001ms, 4481ms total)
T6ACC 075:868 JLINK_IsHalted()  returns FALSE (0000ms, 4480ms total)
T6ACC 075:970 JLINK_IsHalted()  returns FALSE (0000ms, 4480ms total)
T6ACC 076:071 JLINK_IsHalted()  returns FALSE (0000ms, 4480ms total)
T670C 076:181 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0003ms, 4483ms total)
T670C 076:184 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0000ms, 4483ms total)
T670C 076:184 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 10 00  returns 0x02 (0001ms, 4484ms total)
T670C 076:199 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 4485ms total)
T670C 076:200 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 54 00  returns 0x02 (0001ms, 4486ms total)
T670C 076:214 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 4486ms total)
T670C 076:214 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 4487ms total)
T670C 076:215 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 31 00  returns 0x02 (0001ms, 4488ms total)
T670C 076:229 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0000ms, 4488ms total)
T670C 076:229 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 4489ms total)
T670C 076:230 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 25 00 00 00  returns 0x04 (0001ms, 4490ms total)
T670C 076:237 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0001ms, 4491ms total)
T670C 076:238 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 10 00  returns 0x02 (0000ms, 4491ms total)
T670C 076:252 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0000ms, 4491ms total)
T670C 076:252 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0001ms, 4492ms total)
T670C 076:253 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: CE CC 8C 3F  returns 0x04 (0000ms, 4492ms total)
T670C 076:266 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 00  returns 0x01 (0001ms, 4493ms total)
T670C 076:267 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: B7 26  returns 0x02 (0001ms, 4494ms total)
T670C 076:281 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0000ms, 4494ms total)
T670C 076:281 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: 9E BF 00 00  returns 0x04 (0001ms, 4495ms total)
T670C 076:295 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 4496ms total)
T670C 076:296 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0000ms, 4496ms total)
T670C 076:296 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 13 00  returns 0x02 (0001ms, 4497ms total)
T670C 076:311 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 13 00  returns 0x02 (0000ms, 4497ms total)
T670C 076:325 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: BE B0 00 00  returns 0x04 (0001ms, 4498ms total)
T670C 076:339 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 01  returns 0x01 (0001ms, 4499ms total)
T670C 076:346 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 68 66 A6 3F  returns 0x04 (0001ms, 4500ms total)
T6ACC 076:360 JLINK_IsHalted()  returns FALSE (0001ms, 4501ms total)
T6ACC 076:462 JLINK_IsHalted()  returns FALSE (0000ms, 4500ms total)
T6ACC 076:563 JLINK_IsHalted()  returns FALSE (0000ms, 4500ms total)
T6ACC 076:664 JLINK_IsHalted()  returns FALSE (0000ms, 4500ms total)
T670C 076:774 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 4501ms total)
T670C 076:775 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0000ms, 4501ms total)
T670C 076:775 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 0B 00  returns 0x02 (0001ms, 4502ms total)
T670C 076:790 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 4503ms total)
T670C 076:791 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: E1 02  returns 0x02 (0000ms, 4503ms total)
T670C 076:805 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 4504ms total)
T670C 076:806 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 4504ms total)
T670C 076:806 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 3A 00  returns 0x02 (0001ms, 4505ms total)
T670C 076:820 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0001ms, 4506ms total)
T670C 076:821 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 4507ms total)
T670C 076:822 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 22 00 00 00  returns 0x04 (0000ms, 4507ms total)
T670C 076:829 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0001ms, 4508ms total)
T670C 076:830 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 0B 00  returns 0x02 (0000ms, 4508ms total)
T670C 076:844 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0000ms, 4508ms total)
T670C 076:844 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0001ms, 4509ms total)
T670C 076:845 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 69 66 E6 3F  returns 0x04 (0000ms, 4509ms total)
T670C 076:859 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 00  returns 0x01 (0000ms, 4510ms total)
T670C 076:859 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: D3 74  returns 0x02 (0001ms, 4511ms total)
T670C 076:873 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0001ms, 4512ms total)
T670C 076:874 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: 71 E5 00 00  returns 0x04 (0000ms, 4512ms total)
T670C 076:887 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 4513ms total)
T670C 076:888 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0001ms, 4514ms total)
T670C 076:889 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 1F 00  returns 0x02 (0000ms, 4514ms total)
T670C 076:903 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 1F 00  returns 0x02 (0000ms, 4514ms total)
T670C 076:917 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 5B 6C 01 00  returns 0x04 (0000ms, 4514ms total)
T670C 076:931 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 4514ms total)
T670C 076:945 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 36 33 F3 3F  returns 0x04 (0001ms, 4515ms total)
T6ACC 076:960 JLINK_IsHalted()  returns FALSE (0000ms, 4515ms total)
T6ACC 077:061 JLINK_IsHalted()  returns FALSE (0000ms, 4515ms total)
T6ACC 077:163 JLINK_IsHalted()  returns FALSE (0000ms, 4515ms total)
T6ACC 077:264 JLINK_IsHalted()  returns FALSE (0000ms, 4515ms total)
T670C 077:375 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 4515ms total)
T670C 077:376 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0000ms, 4515ms total)
T670C 077:376 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 05 00  returns 0x02 (0001ms, 4516ms total)
T670C 077:390 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 4517ms total)
T670C 077:391 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 6B 03  returns 0x02 (0000ms, 4517ms total)
T670C 077:404 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 4518ms total)
T670C 077:405 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 4519ms total)
T670C 077:406 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 1D 00  returns 0x02 (0000ms, 4519ms total)
T670C 077:420 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0000ms, 4519ms total)
T670C 077:420 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 4520ms total)
T670C 077:421 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 22 00 00 00  returns 0x04 (0000ms, 4520ms total)
T670C 077:428 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0001ms, 4521ms total)
T670C 077:429 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 05 00  returns 0x02 (0000ms, 4521ms total)
T670C 077:443 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0000ms, 4521ms total)
T670C 077:443 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0001ms, 4522ms total)
T670C 077:444 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 99 99 19 40  returns 0x04 (0001ms, 4523ms total)
T670C 077:458 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 00  returns 0x01 (0001ms, 4524ms total)
T670C 077:459 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: D6 4A  returns 0x02 (0000ms, 4524ms total)
T670C 077:473 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0000ms, 4524ms total)
T670C 077:473 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: 89 74 00 00  returns 0x04 (0001ms, 4525ms total)
T670C 077:487 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 4526ms total)
T670C 077:488 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0000ms, 4526ms total)
T670C 077:488 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 19 00  returns 0x02 (0001ms, 4527ms total)
T670C 077:502 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 19 00  returns 0x02 (0001ms, 4528ms total)
T670C 077:516 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 53 6C 01 00  returns 0x04 (0001ms, 4529ms total)
T670C 077:530 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 4530ms total)
T670C 077:537 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: FF FF 1F 40  returns 0x04 (0001ms, 4531ms total)
T6ACC 077:551 JLINK_IsHalted()  returns FALSE (0001ms, 4532ms total)
T6ACC 077:653 JLINK_IsHalted()  returns FALSE (0000ms, 4531ms total)
T6ACC 077:754 JLINK_IsHalted()  returns FALSE (0000ms, 4531ms total)
T6ACC 077:856 JLINK_IsHalted()  returns FALSE (0000ms, 4531ms total)
T670C 077:966 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 4531ms total)
T670C 077:966 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0001ms, 4532ms total)
T670C 077:967 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 02 00  returns 0x02 (0001ms, 4533ms total)
T670C 077:981 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 4533ms total)
T670C 077:981 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: BF 01  returns 0x02 (0001ms, 4534ms total)
T670C 077:995 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 4535ms total)
T670C 077:996 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 4535ms total)
T670C 077:996 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 0F 00  returns 0x02 (0001ms, 4536ms total)
T670C 078:010 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0001ms, 4537ms total)
T670C 078:011 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 4538ms total)
T670C 078:012 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 24 00 00 00  returns 0x04 (0000ms, 4538ms total)
T670C 078:019 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0001ms, 4539ms total)
T670C 078:020 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 02 00  returns 0x02 (0000ms, 4539ms total)
T670C 078:033 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 4540ms total)
T670C 078:034 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0001ms, 4541ms total)
T670C 078:035 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 63 66 46 40  returns 0x04 (0000ms, 4541ms total)
T670C 078:048 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 00  returns 0x01 (0001ms, 4542ms total)
T670C 078:049 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: DF 15  returns 0x02 (0001ms, 4543ms total)
T670C 078:063 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0001ms, 4544ms total)
T670C 078:064 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: 66 3C 00 00  returns 0x04 (0000ms, 4544ms total)
T670C 078:077 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 4545ms total)
T670C 078:078 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0001ms, 4546ms total)
T670C 078:079 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 16 00  returns 0x02 (0000ms, 4546ms total)
T670C 078:093 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 16 00  returns 0x02 (0000ms, 4546ms total)
T670C 078:106 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 36 6C 01 00  returns 0x04 (0001ms, 4547ms total)
T670C 078:120 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 4548ms total)
T670C 078:121 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 63 66 46 40  returns 0x04 (0001ms, 4549ms total)
T6ACC 078:135 JLINK_IsHalted()  returns FALSE (0000ms, 4549ms total)
T6ACC 078:236 JLINK_IsHalted()  returns FALSE (0000ms, 4549ms total)
T6ACC 078:338 JLINK_IsHalted()  returns FALSE (0000ms, 4549ms total)
T6ACC 078:439 JLINK_IsHalted()  returns FALSE (0000ms, 4549ms total)
T670C 078:549 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 4550ms total)
T670C 078:550 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0000ms, 4550ms total)
T670C 078:550 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 03 00  returns 0x02 (0001ms, 4551ms total)
T670C 078:565 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 4552ms total)
T670C 078:566 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: C9 01  returns 0x02 (0000ms, 4552ms total)
T670C 078:580 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 4552ms total)
T670C 078:580 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 4553ms total)
T670C 078:581 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 0F 00  returns 0x02 (0000ms, 4553ms total)
T670C 078:588 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0001ms, 4554ms total)
T670C 078:589 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 4554ms total)
T670C 078:589 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 27 00 00 00  returns 0x04 (0001ms, 4555ms total)
T670C 078:603 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0001ms, 4556ms total)
T670C 078:604 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 03 00  returns 0x02 (0001ms, 4557ms total)
T670C 078:618 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 4558ms total)
T670C 078:619 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0000ms, 4558ms total)
T670C 078:619 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 61 66 66 40  returns 0x04 (0001ms, 4559ms total)
T670C 078:634 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 00  returns 0x01 (0000ms, 4559ms total)
T670C 078:634 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: 13 57  returns 0x02 (0001ms, 4560ms total)
T670C 078:648 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0001ms, 4561ms total)
T670C 078:649 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: 17 5F 00 00  returns 0x04 (0000ms, 4561ms total)
T670C 078:663 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0000ms, 4561ms total)
T670C 078:663 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0001ms, 4562ms total)
T670C 078:664 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 17 00  returns 0x02 (0000ms, 4562ms total)
T670C 078:678 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 17 00  returns 0x02 (0000ms, 4562ms total)
T670C 078:691 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 45 5C 01 00  returns 0x04 (0001ms, 4563ms total)
T670C 078:705 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 4564ms total)
T670C 078:706 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 2D 33 73 40  returns 0x04 (0000ms, 4564ms total)
T6ACC 078:720 JLINK_IsHalted()  returns FALSE (0000ms, 4564ms total)
T6ACC 078:821 JLINK_IsHalted()  returns FALSE (0000ms, 4564ms total)
T6ACC 078:922 JLINK_IsHalted()  returns FALSE (0000ms, 4564ms total)
T6ACC 079:023 JLINK_IsHalted()  returns FALSE (0000ms, 4564ms total)
T670C 079:133 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 4564ms total)
T670C 079:133 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0001ms, 4565ms total)
T670C 079:134 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 0A 00  returns 0x02 (0001ms, 4566ms total)
T670C 079:149 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 4566ms total)
T670C 079:149 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 7B 03  returns 0x02 (0001ms, 4567ms total)
T670C 079:163 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 4567ms total)
T670C 079:163 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 4568ms total)
T670C 079:164 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 35 00  returns 0x02 (0001ms, 4569ms total)
T670C 079:171 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0001ms, 4570ms total)
T670C 079:172 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 4570ms total)
T670C 079:172 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 22 00 00 00  returns 0x04 (0001ms, 4571ms total)
T670C 079:186 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0001ms, 4572ms total)
T670C 079:187 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 0A 00  returns 0x02 (0001ms, 4573ms total)
T670C 079:201 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0000ms, 4573ms total)
T670C 079:201 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0001ms, 4574ms total)
T670C 079:202 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: FC FF 8F 40  returns 0x04 (0001ms, 4575ms total)
T670C 079:216 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 00  returns 0x01 (0000ms, 4575ms total)
T670C 079:216 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: BD 27  returns 0x02 (0001ms, 4576ms total)
T670C 079:230 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0001ms, 4577ms total)
T670C 079:231 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: 75 D2 00 00  returns 0x04 (0001ms, 4578ms total)
T670C 079:245 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 4579ms total)
T670C 079:246 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0001ms, 4580ms total)
T670C 079:247 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 1E 00  returns 0x02 (0000ms, 4580ms total)
T670C 079:261 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 1E 00  returns 0x02 (0000ms, 4580ms total)
T670C 079:274 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 27 6C 01 00  returns 0x04 (0001ms, 4581ms total)
T670C 079:288 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 4582ms total)
T670C 079:289 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 2F 33 93 40  returns 0x04 (0000ms, 4582ms total)
T6ACC 079:302 JLINK_IsHalted()  returns FALSE (0001ms, 4583ms total)
T6ACC 079:405 JLINK_IsHalted()  returns FALSE (0000ms, 4582ms total)
T6ACC 079:506 JLINK_IsHalted()  returns FALSE (0000ms, 4582ms total)
T6ACC 079:607 JLINK_IsHalted()  returns FALSE (0000ms, 4582ms total)
T670C 079:717 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 4582ms total)
T670C 079:717 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0001ms, 4583ms total)
T670C 079:718 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0001ms, 4584ms total)
T670C 079:734 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 4584ms total)
T670C 079:734 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: D2 01  returns 0x02 (0001ms, 4585ms total)
T670C 079:748 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 4586ms total)
T670C 079:749 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 4586ms total)
T670C 079:749 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 57 00  returns 0x02 (0001ms, 4587ms total)
T670C 079:763 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0001ms, 4588ms total)
T670C 079:764 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 4588ms total)
T670C 079:764 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 27 00 00 00  returns 0x04 (0001ms, 4589ms total)
T670C 079:778 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0001ms, 4590ms total)
T670C 079:779 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0000ms, 4590ms total)
T670C 079:792 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 4591ms total)
T670C 079:793 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0001ms, 4592ms total)
T670C 079:794 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 2E 33 A3 40  returns 0x04 (0000ms, 4592ms total)
T670C 079:808 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 00  returns 0x01 (0001ms, 4593ms total)
T670C 079:809 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: 1C 6C  returns 0x02 (0000ms, 4593ms total)
T670C 079:822 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0001ms, 4594ms total)
T670C 079:823 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: A4 55 01 00  returns 0x04 (0001ms, 4595ms total)
T670C 079:838 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0000ms, 4595ms total)
T670C 079:838 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0001ms, 4596ms total)
T670C 079:839 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 1B 00  returns 0x02 (0000ms, 4596ms total)
T670C 079:853 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 1B 00  returns 0x02 (0000ms, 4596ms total)
T670C 079:867 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 10 6C 01 00  returns 0x04 (0000ms, 4596ms total)
T670C 079:880 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 4597ms total)
T670C 079:881 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 94 99 A9 40  returns 0x04 (0001ms, 4598ms total)
T6ACC 079:895 JLINK_IsHalted()  returns FALSE (0000ms, 4598ms total)
T6ACC 079:996 JLINK_IsHalted()  returns FALSE (0000ms, 4598ms total)
T6ACC 080:097 JLINK_IsHalted()  returns FALSE (0000ms, 4598ms total)
T6ACC 080:198 JLINK_IsHalted()  returns FALSE (0000ms, 4598ms total)
T670C 080:307 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 4599ms total)
T670C 080:308 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0001ms, 4600ms total)
T670C 080:309 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 13 00  returns 0x02 (0000ms, 4600ms total)
T670C 080:324 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 01  returns 0x01 (0001ms, 4601ms total)
T670C 080:331 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 53 00  returns 0x02 (0001ms, 4602ms total)
T670C 080:345 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 4603ms total)
T670C 080:346 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 4604ms total)
T670C 080:347 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 01 00  returns 0x02 (0000ms, 4604ms total)
T670C 080:360 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0001ms, 4605ms total)
T670C 080:361 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 4606ms total)
T670C 080:362 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 24 00 00 00  returns 0x04 (0000ms, 4606ms total)
T670C 080:375 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0001ms, 4607ms total)
T670C 080:376 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 13 00  returns 0x02 (0001ms, 4608ms total)
T670C 080:390 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0000ms, 4608ms total)
T670C 080:390 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0001ms, 4609ms total)
T670C 080:391 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 93 99 B9 40  returns 0x04 (0001ms, 4610ms total)
T670C 080:405 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 00  returns 0x01 (0000ms, 4610ms total)
T670C 080:405 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: BC 3A  returns 0x02 (0001ms, 4611ms total)
T670C 080:419 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0001ms, 4612ms total)
T670C 080:420 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: 3B 04 00 00  returns 0x04 (0000ms, 4612ms total)
T670C 080:434 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0000ms, 4612ms total)
T670C 080:434 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0001ms, 4613ms total)
T670C 080:435 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 13 00  returns 0x02 (0000ms, 4613ms total)
T670C 080:449 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 13 00  returns 0x02 (0001ms, 4614ms total)
T670C 080:463 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 31 6C 01 00  returns 0x04 (0001ms, 4615ms total)
T670C 080:476 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 4616ms total)
T670C 080:477 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: C6 CC BC 40  returns 0x04 (0001ms, 4617ms total)
T6ACC 080:491 JLINK_IsHalted()  returns FALSE (0000ms, 4617ms total)
T6ACC 080:593 JLINK_IsHalted()  returns FALSE (0000ms, 4617ms total)
T6ACC 080:694 JLINK_IsHalted()  returns FALSE (0000ms, 4617ms total)
T6ACC 080:795 JLINK_IsHalted()  returns FALSE (0000ms, 4617ms total)
T670C 080:905 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 4617ms total)
T670C 080:905 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0001ms, 4618ms total)
T670C 080:906 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 01 00  returns 0x02 (0001ms, 4619ms total)
T670C 080:921 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 4620ms total)
T670C 080:935 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 9C 02  returns 0x02 (0000ms, 4620ms total)
T670C 080:949 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 4621ms total)
T670C 080:950 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 4622ms total)
T670C 080:951 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 0A 00  returns 0x02 (0001ms, 4623ms total)
T670C 080:965 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0001ms, 4624ms total)
T670C 080:966 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 4625ms total)
T670C 080:967 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 25 00 00 00  returns 0x04 (0000ms, 4625ms total)
T670C 080:981 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0001ms, 4626ms total)
T670C 080:982 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 01 00  returns 0x02 (0000ms, 4626ms total)
T670C 080:995 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 4627ms total)
T670C 080:996 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0001ms, 4628ms total)
T670C 080:997 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: F8 FF CF 40  returns 0x04 (0000ms, 4628ms total)
T670C 081:010 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 00  returns 0x01 (0001ms, 4629ms total)
T670C 081:011 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: D7 08  returns 0x02 (0001ms, 4630ms total)
T670C 081:025 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0000ms, 4630ms total)
T670C 081:025 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: B0 29 00 00  returns 0x04 (0001ms, 4631ms total)
T670C 081:039 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 4632ms total)
T670C 081:040 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0000ms, 4632ms total)
T670C 081:040 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 15 00  returns 0x02 (0001ms, 4633ms total)
T670C 081:054 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 15 00  returns 0x02 (0001ms, 4634ms total)
T670C 081:068 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 55 6C 01 00  returns 0x04 (0001ms, 4635ms total)
T670C 081:082 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 4636ms total)
T670C 081:083 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 2B 33 D3 40  returns 0x04 (0000ms, 4636ms total)
T6ACC 081:096 JLINK_IsHalted()  returns FALSE (0001ms, 4637ms total)
T6ACC 081:198 JLINK_IsHalted()  returns FALSE (0000ms, 4636ms total)
T6ACC 081:299 JLINK_IsHalted()  returns FALSE (0000ms, 4636ms total)
T6ACC 081:400 JLINK_IsHalted()  returns FALSE (0000ms, 4636ms total)
T670C 081:509 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 4637ms total)
T670C 081:510 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0001ms, 4638ms total)
T670C 081:511 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 0E 00  returns 0x02 (0001ms, 4639ms total)
T670C 081:526 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 4639ms total)
T670C 081:533 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: D9 01  returns 0x02 (0001ms, 4640ms total)
T670C 081:547 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 4640ms total)
T670C 081:547 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 4641ms total)
T670C 081:548 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 27 00  returns 0x02 (0001ms, 4642ms total)
T670C 081:562 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0000ms, 4642ms total)
T670C 081:562 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 4643ms total)
T670C 081:563 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 26 00 00 00  returns 0x04 (0001ms, 4644ms total)
T670C 081:577 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0000ms, 4644ms total)
T670C 081:577 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 04 00  returns 0x02 (0001ms, 4645ms total)
T670C 081:591 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 4646ms total)
T670C 081:592 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0000ms, 4646ms total)
T670C 081:592 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 5D 66 E6 40  returns 0x04 (0001ms, 4647ms total)
T670C 081:606 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 00  returns 0x01 (0001ms, 4648ms total)
T670C 081:607 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: 93 57  returns 0x02 (0001ms, 4649ms total)
T670C 081:621 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0000ms, 4649ms total)
T670C 081:622 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: 02 9A 00 00  returns 0x04 (0000ms, 4649ms total)
T670C 081:636 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0000ms, 4649ms total)
T670C 081:636 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0001ms, 4650ms total)
T670C 081:637 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 18 00  returns 0x02 (0001ms, 4651ms total)
T670C 081:652 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 18 00  returns 0x02 (0000ms, 4651ms total)
T670C 081:666 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 15 6C 01 00  returns 0x04 (0000ms, 4651ms total)
T670C 081:679 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 4652ms total)
T670C 081:680 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 90 99 E9 40  returns 0x04 (0001ms, 4653ms total)
T6ACC 081:694 JLINK_IsHalted()  returns FALSE (0001ms, 4654ms total)
T6ACC 081:796 JLINK_IsHalted()  returns FALSE (0000ms, 4653ms total)
T6ACC 081:897 JLINK_IsHalted()  returns FALSE (0000ms, 4653ms total)
T6ACC 081:998 JLINK_IsHalted()  returns FALSE (0000ms, 4653ms total)
T670C 082:108 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 4653ms total)
T670C 082:108 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0001ms, 4654ms total)
T670C 082:109 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 03 00  returns 0x02 (0001ms, 4655ms total)
T670C 082:124 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 4655ms total)
T670C 082:124 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 1B 00  returns 0x02 (0001ms, 4656ms total)
T670C 082:138 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 4657ms total)
T670C 082:139 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 4657ms total)
T670C 082:139 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 19 00  returns 0x02 (0001ms, 4658ms total)
T670C 082:153 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0001ms, 4659ms total)
T670C 082:154 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 4659ms total)
T670C 082:154 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 2A 00 00 00  returns 0x04 (0001ms, 4660ms total)
T670C 082:168 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0001ms, 4661ms total)
T670C 082:169 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 03 00  returns 0x02 (0001ms, 4662ms total)
T670C 082:183 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0000ms, 4662ms total)
T670C 082:183 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0001ms, 4663ms total)
T670C 082:184 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 8F 99 F9 40  returns 0x04 (0001ms, 4664ms total)
T670C 082:198 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 00  returns 0x01 (0000ms, 4664ms total)
T670C 082:198 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: D7 23  returns 0x02 (0001ms, 4665ms total)
T670C 082:212 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0001ms, 4666ms total)
T670C 082:213 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: 47 4F 00 00  returns 0x04 (0001ms, 4667ms total)
T670C 082:227 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 4668ms total)
T670C 082:228 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0000ms, 4668ms total)
T670C 082:228 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 17 00  returns 0x02 (0001ms, 4669ms total)
T670C 082:242 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 17 00  returns 0x02 (0001ms, 4670ms total)
T670C 082:256 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 15 6C 01 00  returns 0x04 (0001ms, 4671ms total)
T670C 082:264 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 01  returns 0x01 (0001ms, 4672ms total)
T670C 082:271 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: C2 CC FC 40  returns 0x04 (0001ms, 4673ms total)
T6ACC 082:285 JLINK_IsHalted()  returns FALSE (0001ms, 4674ms total)
T6ACC 082:387 JLINK_IsHalted()  returns FALSE (0000ms, 4673ms total)
T6ACC 082:488 JLINK_IsHalted()  returns FALSE (0000ms, 4673ms total)
T6ACC 082:590 JLINK_IsHalted()  returns FALSE (0000ms, 4673ms total)
T670C 082:700 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 4673ms total)
T670C 082:700 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0001ms, 4674ms total)
T670C 082:701 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 09 00  returns 0x02 (0001ms, 4675ms total)
T670C 082:716 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 4676ms total)
T670C 082:717 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 4A 00  returns 0x02 (0000ms, 4676ms total)
T670C 082:730 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 4677ms total)
T670C 082:731 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 4678ms total)
T670C 082:732 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 31 00  returns 0x02 (0000ms, 4678ms total)
T670C 082:745 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0001ms, 4679ms total)
T670C 082:746 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 4680ms total)
T670C 082:747 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 2C 00 00 00  returns 0x04 (0000ms, 4680ms total)
T670C 082:761 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0001ms, 4681ms total)
T670C 082:762 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 09 00  returns 0x02 (0000ms, 4681ms total)
T670C 082:776 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0000ms, 4681ms total)
T670C 082:776 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 00  returns 0x01 (0001ms, 4682ms total)
T670C 082:784 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 96 99 09 41  returns 0x04 (0000ms, 4682ms total)
T670C 082:798 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 00  returns 0x01 (0000ms, 4682ms total)
T670C 082:798 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: 68 74  returns 0x02 (0001ms, 4683ms total)
T670C 082:812 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0001ms, 4684ms total)
T670C 082:813 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: B0 BF 00 00  returns 0x04 (0001ms, 4685ms total)
T670C 082:827 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 4686ms total)
T670C 082:828 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0000ms, 4686ms total)
T670C 082:828 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 1D 00  returns 0x02 (0001ms, 4687ms total)
T670C 082:842 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 1D 00  returns 0x02 (0001ms, 4688ms total)
T670C 082:856 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 2C 6C 01 00  returns 0x04 (0001ms, 4689ms total)
T670C 082:864 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 4689ms total)
T670C 082:878 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 30 33 0B 41  returns 0x04 (0000ms, 4689ms total)
T6ACC 082:892 JLINK_IsHalted()  returns FALSE (0000ms, 4689ms total)
T6ACC 082:993 JLINK_IsHalted()  returns FALSE (0000ms, 4689ms total)
T6ACC 083:095 JLINK_IsHalted()  returns FALSE (0000ms, 4689ms total)
T6ACC 083:196 JLINK_IsHalted()  returns FALSE (0000ms, 4689ms total)
T670C 083:305 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 4689ms total)
T670C 083:305 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0001ms, 4690ms total)
T670C 083:306 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 0B 00  returns 0x02 (0000ms, 4690ms total)
T670C 083:320 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 4691ms total)
T670C 083:321 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 66 00  returns 0x02 (0000ms, 4691ms total)
T670C 083:335 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 4692ms total)
T670C 083:336 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 4692ms total)
T670C 083:336 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 19 00  returns 0x02 (0001ms, 4693ms total)
T670C 083:351 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0001ms, 4694ms total)
T670C 083:352 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 4694ms total)
T670C 083:352 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 2A 00 00 00  returns 0x04 (0001ms, 4695ms total)
T670C 083:367 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0000ms, 4695ms total)
T670C 083:367 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 0B 00  returns 0x02 (0001ms, 4696ms total)
T670C 083:381 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 4697ms total)
T670C 083:382 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0001ms, 4698ms total)
T670C 083:396 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: CC CC 14 41  returns 0x04 (0001ms, 4699ms total)
T670C 083:410 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 00  returns 0x01 (0001ms, 4700ms total)
T670C 083:411 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: 85 42  returns 0x02 (0001ms, 4701ms total)
T670C 083:425 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0001ms, 4702ms total)
T670C 083:426 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: 0A F5 00 00  returns 0x04 (0000ms, 4702ms total)
T670C 083:440 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0000ms, 4702ms total)
T670C 083:440 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0001ms, 4703ms total)
T670C 083:441 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 1F 00  returns 0x02 (0001ms, 4704ms total)
T670C 083:455 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 1F 00  returns 0x02 (0001ms, 4705ms total)
T670C 083:470 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 52 5C 01 00  returns 0x04 (0000ms, 4705ms total)
T670C 083:484 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 4705ms total)
T670C 083:491 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 66 66 16 41  returns 0x04 (0001ms, 4706ms total)
T6ACC 083:505 JLINK_IsHalted()  returns FALSE (0001ms, 4707ms total)
T6ACC 083:607 JLINK_IsHalted()  returns FALSE (0000ms, 4706ms total)
T6ACC 083:708 JLINK_IsHalted()  returns FALSE (0000ms, 4706ms total)
T6ACC 083:809 JLINK_IsHalted()  returns FALSE (0000ms, 4706ms total)
T670C 083:918 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 4706ms total)
T670C 083:918 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0001ms, 4707ms total)
T670C 083:919 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 0E 00  returns 0x02 (0001ms, 4708ms total)
T670C 083:933 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 4709ms total)
T670C 083:934 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 93 00  returns 0x02 (0000ms, 4709ms total)
T670C 083:948 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 4710ms total)
T670C 083:949 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 4710ms total)
T670C 083:949 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 4D 00  returns 0x02 (0001ms, 4711ms total)
T670C 083:964 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0000ms, 4711ms total)
T670C 083:964 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 4712ms total)
T670C 083:965 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 2A 00 00 00  returns 0x04 (0001ms, 4713ms total)
T670C 083:972 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0001ms, 4714ms total)
T670C 083:973 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 0E 00  returns 0x02 (0001ms, 4715ms total)
T670C 083:987 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 4716ms total)
T670C 083:988 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0000ms, 4716ms total)
T670C 083:995 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 68 66 1E 41  returns 0x04 (0001ms, 4717ms total)
T670C 084:010 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 00  returns 0x01 (0000ms, 4717ms total)
T670C 084:010 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: 3F 11  returns 0x02 (0001ms, 4718ms total)
T670C 084:025 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0000ms, 4718ms total)
T670C 084:025 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: 7B 1D 01 00  returns 0x04 (0001ms, 4719ms total)
T670C 084:040 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0000ms, 4719ms total)
T670C 084:040 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0001ms, 4720ms total)
T670C 084:041 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 22 00  returns 0x02 (0000ms, 4720ms total)
T670C 084:055 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 22 00  returns 0x02 (0001ms, 4721ms total)
T670C 084:069 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 21 6C 01 00  returns 0x04 (0001ms, 4722ms total)
T670C 084:084 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 4722ms total)
T670C 084:084 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 02 00 20 41  returns 0x04 (0001ms, 4723ms total)
T6ACC 084:098 JLINK_IsHalted()  returns FALSE (0001ms, 4724ms total)
T6ACC 084:200 JLINK_IsHalted()  returns FALSE (0000ms, 4723ms total)
T6ACC 084:301 JLINK_IsHalted()  returns FALSE (0000ms, 4723ms total)
T6ACC 084:402 JLINK_IsHalted()  returns FALSE (0000ms, 4723ms total)
T670C 084:510 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 4724ms total)
T670C 084:511 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0001ms, 4725ms total)
T670C 084:512 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 0D 00  returns 0x02 (0000ms, 4725ms total)
T670C 084:526 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 4726ms total)
T670C 084:527 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 35 01  returns 0x02 (0000ms, 4726ms total)
T670C 084:542 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 4727ms total)
T670C 084:543 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 4728ms total)
T670C 084:544 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 48 00  returns 0x02 (0000ms, 4728ms total)
T670C 084:558 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0001ms, 4729ms total)
T670C 084:559 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 4730ms total)
T670C 084:560 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 29 00 00 00  returns 0x04 (0000ms, 4730ms total)
T670C 084:573 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0000ms, 4730ms total)
T670C 084:573 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 0D 00  returns 0x02 (0001ms, 4731ms total)
T670C 084:590 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 4732ms total)
T670C 084:591 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0000ms, 4732ms total)
T670C 084:592 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: D2 CC 2C 41  returns 0x04 (0000ms, 4732ms total)
T670C 084:606 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 00  returns 0x01 (0000ms, 4732ms total)
T670C 084:606 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: 83 5D  returns 0x02 (0001ms, 4733ms total)
T670C 084:621 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0001ms, 4734ms total)
T670C 084:622 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: B4 0A 01 00  returns 0x04 (0000ms, 4734ms total)
T670C 084:636 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 4735ms total)
T670C 084:637 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0000ms, 4735ms total)
T670C 084:637 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 21 00  returns 0x02 (0001ms, 4736ms total)
T670C 084:652 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 21 00  returns 0x02 (0000ms, 4736ms total)
T670C 084:666 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 28 6C 01 00  returns 0x04 (0001ms, 4737ms total)
T670C 084:682 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 4737ms total)
T670C 084:682 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 6C 66 2E 41  returns 0x04 (0001ms, 4738ms total)
T6ACC 084:697 JLINK_IsHalted()  returns FALSE (0001ms, 4739ms total)
T6ACC 084:799 JLINK_IsHalted()  returns FALSE (0000ms, 4738ms total)
T6ACC 084:900 JLINK_IsHalted()  returns FALSE (0000ms, 4738ms total)
T6ACC 085:001 JLINK_IsHalted()  returns FALSE (0000ms, 4738ms total)
T670C 085:109 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 4739ms total)
T670C 085:110 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0001ms, 4740ms total)
T670C 085:111 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 01 00  returns 0x02 (0000ms, 4740ms total)
T670C 085:124 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 4741ms total)
T670C 085:125 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: AF 02  returns 0x02 (0001ms, 4742ms total)
T670C 085:139 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 4742ms total)
T670C 085:139 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 4743ms total)
T670C 085:140 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 0A 00  returns 0x02 (0001ms, 4744ms total)
T670C 085:153 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0001ms, 4745ms total)
T670C 085:154 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 4746ms total)
T670C 085:155 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 32 00 00 00  returns 0x04 (0000ms, 4746ms total)
T670C 085:169 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0000ms, 4746ms total)
T670C 085:169 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 01 00  returns 0x02 (0001ms, 4747ms total)
T670C 085:184 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0000ms, 4747ms total)
T670C 085:184 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0001ms, 4748ms total)
T670C 085:185 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 08 00 38 41  returns 0x04 (0001ms, 4749ms total)
T670C 085:199 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 00  returns 0x01 (0001ms, 4750ms total)
T670C 085:200 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: 03 23  returns 0x02 (0000ms, 4750ms total)
T670C 085:214 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0000ms, 4750ms total)
T670C 085:214 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: B1 29 00 00  returns 0x04 (0001ms, 4751ms total)
T670C 085:228 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 4752ms total)
T670C 085:229 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0000ms, 4752ms total)
T670C 085:229 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 15 00  returns 0x02 (0001ms, 4753ms total)
T670C 085:243 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 15 00  returns 0x02 (0001ms, 4754ms total)
T670C 085:257 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 2B 6C 01 00  returns 0x04 (0001ms, 4755ms total)
T670C 085:271 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 01  returns 0x01 (0001ms, 4756ms total)
T670C 085:278 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: A2 99 39 41  returns 0x04 (0001ms, 4757ms total)
T6ACC 085:292 JLINK_IsHalted()  returns FALSE (0001ms, 4758ms total)
T6ACC 085:394 JLINK_IsHalted()  returns FALSE (0000ms, 4757ms total)
T6ACC 085:495 JLINK_IsHalted()  returns FALSE (0000ms, 4757ms total)
T6ACC 085:596 JLINK_IsHalted()  returns FALSE (0000ms, 4757ms total)
T670C 085:706 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 4758ms total)
T670C 085:707 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0000ms, 4758ms total)
T670C 085:707 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 0D 00  returns 0x02 (0001ms, 4759ms total)
T670C 085:722 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 4760ms total)
T670C 085:723 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: DE 01  returns 0x02 (0004ms, 4764ms total)
T670C 085:740 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 4765ms total)
T670C 085:741 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 4765ms total)
T670C 085:741 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 27 00  returns 0x02 (0001ms, 4766ms total)
T670C 085:755 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0001ms, 4767ms total)
T670C 085:756 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 4767ms total)
T670C 085:756 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 2C 00 00 00  returns 0x04 (0001ms, 4768ms total)
T670C 085:770 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0001ms, 4769ms total)
T670C 085:771 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 0D 00  returns 0x02 (0001ms, 4770ms total)
T670C 085:785 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0000ms, 4770ms total)
T670C 085:785 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0001ms, 4771ms total)
T670C 085:786 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 3E 33 43 41  returns 0x04 (0000ms, 4771ms total)
T670C 085:800 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 00  returns 0x01 (0000ms, 4771ms total)
T670C 085:800 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: FB 6A  returns 0x02 (0001ms, 4772ms total)
T670C 085:814 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0001ms, 4773ms total)
T670C 085:815 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: 8E 1A 01 00  returns 0x04 (0001ms, 4774ms total)
T670C 085:829 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0000ms, 4774ms total)
T670C 085:829 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0001ms, 4775ms total)
T670C 085:830 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 21 00  returns 0x02 (0001ms, 4776ms total)
T670C 085:844 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 21 00  returns 0x02 (0000ms, 4776ms total)
T670C 085:858 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 4E 5C 01 00  returns 0x04 (0000ms, 4776ms total)
T670C 085:872 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 4776ms total)
T670C 085:886 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: D8 CC 44 41  returns 0x04 (0000ms, 4776ms total)
T6ACC 085:899 JLINK_IsHalted()  returns FALSE (0001ms, 4777ms total)
T6ACC 086:002 JLINK_IsHalted()  returns FALSE (0000ms, 4776ms total)
T6ACC 086:103 JLINK_IsHalted()  returns FALSE (0000ms, 4776ms total)
T670C 086:212 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 4777ms total)
T670C 086:213 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0001ms, 4778ms total)
T670C 086:214 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 04 00  returns 0x02 (0000ms, 4778ms total)
T670C 086:227 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 4779ms total)
T670C 086:228 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 22 01  returns 0x02 (0001ms, 4780ms total)
T670C 086:242 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 4780ms total)
T670C 086:242 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 4781ms total)
T670C 086:243 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 44 00  returns 0x02 (0001ms, 4782ms total)
T670C 086:257 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0000ms, 4782ms total)
T670C 086:257 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 4783ms total)
T670C 086:258 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: A0 86 01 00  returns 0x04 (0001ms, 4784ms total)
T670C 086:272 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0001ms, 4785ms total)
T670C 086:273 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 04 00  returns 0x02 (0000ms, 4785ms total)
T670C 086:287 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0000ms, 4785ms total)
T670C 086:287 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0001ms, 4786ms total)
T670C 086:288 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: DA CC 4C 41  returns 0x04 (0001ms, 4787ms total)
T670C 086:302 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 00  returns 0x01 (0001ms, 4788ms total)
T670C 086:303 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: 48 31  returns 0x02 (0000ms, 4788ms total)
T670C 086:316 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0001ms, 4789ms total)
T670C 086:317 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: C2 0A 01 00  returns 0x04 (0000ms, 4789ms total)
T670C 086:330 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 4790ms total)
T670C 086:331 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0001ms, 4791ms total)
T670C 086:332 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 18 00  returns 0x02 (0000ms, 4791ms total)
T670C 086:346 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 18 00  returns 0x02 (0001ms, 4792ms total)
T670C 086:360 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 51 5C 01 00  returns 0x04 (0000ms, 4792ms total)
T670C 086:374 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 4792ms total)
T670C 086:381 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 0E 00 50 41  returns 0x04 (0001ms, 4793ms total)
T6ACC 086:395 JLINK_IsHalted()  returns FALSE (0001ms, 4794ms total)
T6ACC 086:497 JLINK_IsHalted()  returns FALSE (0000ms, 4793ms total)
T6ACC 086:598 JLINK_IsHalted()  returns FALSE (0000ms, 4793ms total)
T6ACC 086:699 JLINK_IsHalted()  returns FALSE (0000ms, 4793ms total)
T670C 086:807 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 4794ms total)
T670C 086:808 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0000ms, 4794ms total)
T670C 086:808 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 01 00  returns 0x02 (0001ms, 4795ms total)
T670C 086:822 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 4796ms total)
T670C 086:823 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: E8 02  returns 0x02 (0000ms, 4796ms total)
T670C 086:836 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 4797ms total)
T670C 086:837 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 4798ms total)
T670C 086:838 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 0A 00  returns 0x02 (0000ms, 4798ms total)
T670C 086:852 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0000ms, 4798ms total)
T670C 086:852 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 4799ms total)
T670C 086:853 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 5D 00 00 00  returns 0x04 (0001ms, 4800ms total)
T670C 086:867 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0000ms, 4800ms total)
T670C 086:867 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 01 00  returns 0x02 (0001ms, 4801ms total)
T670C 086:882 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0000ms, 4801ms total)
T670C 086:882 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0001ms, 4802ms total)
T670C 086:883 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 10 00 58 41  returns 0x04 (0000ms, 4802ms total)
T670C 086:897 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 01  returns 0x01 (0000ms, 4802ms total)
T670C 086:904 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: DA 7C  returns 0x02 (0001ms, 4803ms total)
T670C 086:918 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0001ms, 4804ms total)
T670C 086:919 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: 11 2A 00 00  returns 0x04 (0000ms, 4804ms total)
T670C 086:932 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 4805ms total)
T670C 086:933 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0001ms, 4806ms total)
T670C 086:934 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 15 00  returns 0x02 (0000ms, 4806ms total)
T670C 086:948 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 15 00  returns 0x02 (0001ms, 4807ms total)
T670C 086:962 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 2D 6C 01 00  returns 0x04 (0001ms, 4808ms total)
T670C 086:976 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 4809ms total)
T670C 086:977 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: AA 99 59 41  returns 0x04 (0001ms, 4810ms total)
T6ACC 086:991 JLINK_IsHalted()  returns FALSE (0001ms, 4811ms total)
T6ACC 087:093 JLINK_IsHalted()  returns FALSE (0000ms, 4810ms total)
T6ACC 087:194 JLINK_IsHalted()  returns FALSE (0000ms, 4810ms total)
T6ACC 087:295 JLINK_IsHalted()  returns FALSE (0000ms, 4810ms total)
T670C 087:405 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 4811ms total)
T670C 087:406 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0000ms, 4811ms total)
T670C 087:406 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 09 00  returns 0x02 (0001ms, 4812ms total)
T670C 087:420 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 4813ms total)
T670C 087:421 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 46 03  returns 0x02 (0000ms, 4813ms total)
T670C 087:434 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 4814ms total)
T670C 087:435 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 4815ms total)
T670C 087:436 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 22 00  returns 0x02 (0000ms, 4815ms total)
T670C 087:449 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0001ms, 4816ms total)
T670C 087:450 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 4817ms total)
T670C 087:451 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 24 00 00 00  returns 0x04 (0000ms, 4817ms total)
T670C 087:465 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0000ms, 4817ms total)
T670C 087:465 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 09 00  returns 0x02 (0001ms, 4818ms total)
T670C 087:479 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 4819ms total)
T670C 087:480 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0000ms, 4819ms total)
T670C 087:480 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 46 33 63 41  returns 0x04 (0001ms, 4820ms total)
T670C 087:494 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 01  returns 0x01 (0001ms, 4821ms total)
T670C 087:502 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: 4A 4C  returns 0x02 (0000ms, 4821ms total)
T670C 087:515 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0001ms, 4822ms total)
T670C 087:516 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: 16 88 00 00  returns 0x04 (0001ms, 4823ms total)
T670C 087:530 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 4824ms total)
T670C 087:531 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0000ms, 4824ms total)
T670C 087:531 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 1A 00  returns 0x02 (0001ms, 4825ms total)
T670C 087:545 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 1A 00  returns 0x02 (0001ms, 4826ms total)
T670C 087:559 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 2B 6C 01 00  returns 0x04 (0001ms, 4827ms total)
T670C 087:573 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 02  returns 0x01 (0000ms, 4827ms total)
T670C 087:580 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: E0 CC 64 41  returns 0x04 (0001ms, 4828ms total)
T6ACC 087:594 JLINK_IsHalted()  returns FALSE (0001ms, 4829ms total)
T6ACC 087:696 JLINK_IsHalted()  returns FALSE (0000ms, 4828ms total)
T6ACC 087:797 JLINK_IsHalted()  returns FALSE (0000ms, 4828ms total)
T6ACC 087:898 JLINK_IsHalted()  returns FALSE (0000ms, 4828ms total)
T670C 088:008 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 01  returns 0x01 (0001ms, 4829ms total)
T670C 088:016 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0001ms, 4830ms total)
T670C 088:017 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 0E 00  returns 0x02 (0000ms, 4830ms total)
T670C 088:030 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 06  returns 0x01 (0001ms, 4831ms total)
T670C 088:038 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 46 03  returns 0x02 (0000ms, 4831ms total)
T670C 088:045 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 4831ms total)
T670C 088:045 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 4832ms total)
T670C 088:046 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 22 00  returns 0x02 (0001ms, 4833ms total)
T670C 088:053 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: FF FF  returns 0x02 (0001ms, 4834ms total)
T670C 088:061 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 01  returns 0x01 (0000ms, 4834ms total)
T670C 088:068 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: A0 86 01 00  returns 0x04 (0000ms, 4834ms total)
T670C 088:082 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0000ms, 4834ms total)
T670C 088:082 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 0E 00  returns 0x02 (0001ms, 4835ms total)
T670C 088:096 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 4836ms total)
T670C 088:097 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0000ms, 4836ms total)
T670C 088:097 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: E2 CC 6C 41  returns 0x04 (0001ms, 4837ms total)
T670C 088:111 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 01  returns 0x01 (0001ms, 4838ms total)
T670C 088:112 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: 0D 33  returns 0x02 (0000ms, 4838ms total)
T670C 088:126 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0000ms, 4838ms total)
T670C 088:126 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: 16 88 00 00  returns 0x04 (0001ms, 4839ms total)
T670C 088:133 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 4840ms total)
T670C 088:134 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0001ms, 4841ms total)
T670C 088:135 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 1A 00  returns 0x02 (0000ms, 4841ms total)
T670C 088:142 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 1A 00  returns 0x02 (0001ms, 4842ms total)
T670C 088:149 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 2B 6C 01 00  returns 0x04 (0001ms, 4843ms total)
T670C 088:157 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 4844ms total)
T670C 088:171 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: E2 CC 6C 41  returns 0x04 (0001ms, 4845ms total)
T6ACC 088:186 JLINK_IsHalted()  returns FALSE (0000ms, 4845ms total)
T6ACC 088:287 JLINK_IsHalted()  returns FALSE (0000ms, 4845ms total)
T6ACC 088:388 JLINK_IsHalted()  returns FALSE (0000ms, 4845ms total)
T6ACC 088:490 JLINK_IsHalted()  returns FALSE (0000ms, 4845ms total)
T670C 088:600 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 4845ms total)
T670C 088:615 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0001ms, 4846ms total)
T670C 088:616 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 0E 00  returns 0x02 (0000ms, 4846ms total)
T670C 088:623 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 4847ms total)
T670C 088:637 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 46 03  returns 0x02 (0000ms, 4847ms total)
T670C 088:637 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 4848ms total)
T670C 088:638 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 4849ms total)
T670C 088:639 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 22 00  returns 0x02 (0000ms, 4849ms total)
T670C 088:639 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0001ms, 4850ms total)
T670C 088:653 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 4851ms total)
T670C 088:667 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: A0 86 01 00  returns 0x04 (0001ms, 4852ms total)
T670C 088:674 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0001ms, 4853ms total)
T670C 088:675 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 0E 00  returns 0x02 (0000ms, 4853ms total)
T670C 088:682 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 4854ms total)
T670C 088:683 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0000ms, 4854ms total)
T670C 088:683 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 16 00 70 41  returns 0x04 (0001ms, 4855ms total)
T670C 088:697 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 01  returns 0x01 (0001ms, 4856ms total)
T670C 088:698 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: 8D 63  returns 0x02 (0001ms, 4857ms total)
T670C 088:712 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0000ms, 4857ms total)
T670C 088:712 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: 16 88 00 00  returns 0x04 (0001ms, 4858ms total)
T670C 088:713 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 4859ms total)
T670C 088:714 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0000ms, 4859ms total)
T670C 088:714 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 1A 00  returns 0x02 (0001ms, 4860ms total)
T670C 088:715 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 1A 00  returns 0x02 (0001ms, 4861ms total)
T670C 088:716 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 2B 6C 01 00  returns 0x04 (0000ms, 4861ms total)
T670C 088:716 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 01  returns 0x01 (0001ms, 4862ms total)
T670C 088:730 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 16 00 70 41  returns 0x04 (0001ms, 4863ms total)
T6ACC 088:744 JLINK_IsHalted()  returns FALSE (0001ms, 4864ms total)
T6ACC 088:846 JLINK_IsHalted()  returns FALSE (0000ms, 4863ms total)
T6ACC 088:947 JLINK_IsHalted()  returns FALSE (0000ms, 4863ms total)
T6ACC 089:048 JLINK_IsHalted()  returns FALSE (0000ms, 4863ms total)
T670C 089:158 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 01  returns 0x01 (0000ms, 4863ms total)
T670C 089:172 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0001ms, 4864ms total)
T670C 089:173 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 01 00  returns 0x02 (0000ms, 4864ms total)
T670C 089:180 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 06  returns 0x01 (0001ms, 4865ms total)
T670C 089:194 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 46 03  returns 0x02 (0001ms, 4866ms total)
T670C 089:195 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 4866ms total)
T670C 089:195 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 4867ms total)
T670C 089:196 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 22 00  returns 0x02 (0001ms, 4868ms total)
T670C 089:197 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0000ms, 4868ms total)
T670C 089:204 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 01  returns 0x01 (0001ms, 4869ms total)
T670C 089:218 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: A0 86 01 00  returns 0x04 (0000ms, 4869ms total)
T670C 089:218 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0001ms, 4870ms total)
T670C 089:219 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 01 00  returns 0x02 (0001ms, 4871ms total)
T670C 089:226 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 4872ms total)
T670C 089:227 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0001ms, 4873ms total)
T670C 089:228 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 01  returns 0x01 (0000ms, 4873ms total)
T670C 089:228 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: 50 4A  returns 0x02 (0001ms, 4874ms total)
T670C 089:242 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0001ms, 4875ms total)
T670C 089:243 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: 16 88 00 00  returns 0x04 (0000ms, 4875ms total)
T670C 089:243 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 4876ms total)
T670C 089:244 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0001ms, 4877ms total)
T670C 089:245 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 1A 00  returns 0x02 (0000ms, 4877ms total)
T670C 089:246 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 1A 00  returns 0x02 (0001ms, 4878ms total)
T670C 089:247 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 2B 6C 01 00  returns 0x04 (0000ms, 4878ms total)
T670C 089:247 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 4879ms total)
T670C 089:261 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: B2 99 79 41  returns 0x04 (0001ms, 4880ms total)
T6ACC 089:275 JLINK_IsHalted()  returns FALSE (0001ms, 4881ms total)
T6ACC 089:377 JLINK_IsHalted()  returns FALSE (0000ms, 4880ms total)
T6ACC 089:478 JLINK_IsHalted()  returns FALSE (0000ms, 4880ms total)
T6ACC 089:579 JLINK_IsHalted()  returns FALSE (0000ms, 4880ms total)
T670C 089:688 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 4881ms total)
T670C 089:702 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0001ms, 4882ms total)
T670C 089:703 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 01 00  returns 0x02 (0000ms, 4882ms total)
T670C 089:710 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 4883ms total)
T670C 089:724 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 46 03  returns 0x02 (0000ms, 4883ms total)
T670C 089:724 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 4884ms total)
T670C 089:725 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 4885ms total)
T670C 089:726 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 22 00  returns 0x02 (0000ms, 4885ms total)
T670C 089:726 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0001ms, 4886ms total)
T670C 089:727 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 4887ms total)
T670C 089:741 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: A0 86 01 00  returns 0x04 (0000ms, 4887ms total)
T670C 089:741 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0001ms, 4888ms total)
T670C 089:742 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 01 00  returns 0x02 (0000ms, 4888ms total)
T670C 089:749 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 4889ms total)
T670C 089:750 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0000ms, 4889ms total)
T670C 089:750 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 01  returns 0x01 (0001ms, 4890ms total)
T670C 089:751 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: 87 6E  returns 0x02 (0001ms, 4891ms total)
T670C 089:765 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0000ms, 4891ms total)
T670C 089:765 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: 16 88 00 00  returns 0x04 (0001ms, 4892ms total)
T670C 089:766 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0000ms, 4892ms total)
T670C 089:767 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0000ms, 4892ms total)
T670C 089:767 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 1A 00  returns 0x02 (0001ms, 4893ms total)
T670C 089:768 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 1A 00  returns 0x02 (0000ms, 4893ms total)
T670C 089:768 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 2B 6C 01 00  returns 0x04 (0001ms, 4894ms total)
T670C 089:769 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 4895ms total)
T670C 089:777 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 4C 33 7B 41  returns 0x04 (0000ms, 4895ms total)
T6ACC 089:790 JLINK_IsHalted()  returns FALSE (0001ms, 4896ms total)
T6ACC 089:892 JLINK_IsHalted()  returns FALSE (0000ms, 4895ms total)
T6ACC 089:993 JLINK_IsHalted()  returns FALSE (0000ms, 4895ms total)
T6ACC 090:095 JLINK_IsHalted()  returns FALSE (0000ms, 4895ms total)
T670C 090:205 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 4896ms total)
T670C 090:212 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0001ms, 4897ms total)
T670C 090:213 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 01 00  returns 0x02 (0001ms, 4898ms total)
T670C 090:214 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 4898ms total)
T670C 090:221 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 4C 03  returns 0x02 (0001ms, 4899ms total)
T670C 090:228 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 4900ms total)
T670C 090:229 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 4900ms total)
T670C 090:229 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 0A 00  returns 0x02 (0001ms, 4901ms total)
T670C 090:237 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0000ms, 4901ms total)
T670C 090:237 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 4902ms total)
T670C 090:244 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: A0 86 01 00  returns 0x04 (0001ms, 4903ms total)
T670C 090:245 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0001ms, 4904ms total)
T670C 090:246 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 01 00  returns 0x02 (0000ms, 4904ms total)
T670C 090:246 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 4905ms total)
T670C 090:247 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 00  returns 0x01 (0000ms, 4905ms total)
T670C 090:254 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 01  returns 0x01 (0001ms, 4906ms total)
T670C 090:255 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: FE 2F  returns 0x02 (0000ms, 4906ms total)
T670C 090:269 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0000ms, 4906ms total)
T670C 090:269 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: 5C 2A 00 00  returns 0x04 (0001ms, 4907ms total)
T670C 090:276 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 4908ms total)
T670C 090:277 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0001ms, 4909ms total)
T670C 090:278 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 15 00  returns 0x02 (0000ms, 4909ms total)
T670C 090:285 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 15 00  returns 0x02 (0001ms, 4910ms total)
T670C 090:292 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 25 6C 01 00  returns 0x04 (0001ms, 4911ms total)
T670C 090:300 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 01  returns 0x01 (0000ms, 4911ms total)
T670C 090:307 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 74 66 82 41  returns 0x04 (0001ms, 4912ms total)
T6ACC 090:320 JLINK_IsHalted()  returns FALSE (0001ms, 4913ms total)
T6ACC 090:422 JLINK_IsHalted()  returns FALSE (0000ms, 4912ms total)
T6ACC 090:523 JLINK_IsHalted()  returns FALSE (0000ms, 4912ms total)
T6ACC 090:624 JLINK_IsHalted()  returns FALSE (0000ms, 4912ms total)
T670C 090:661 JLINK_WriteMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) - Data: 00 58 D4 45 -- CPU is running -- CPU_WriteMem(4 bytes @ 0x200001A4)  returns 0x04 (0001ms, 4913ms total)
T670C 090:671 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 4913ms total)
T670C 090:671 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0001ms, 4914ms total)
T670C 090:672 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 0A 00  returns 0x02 (0001ms, 4915ms total)
T670C 090:680 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 03  returns 0x01 (0001ms, 4916ms total)
T670C 090:688 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: D2 00  returns 0x02 (0000ms, 4916ms total)
T670C 090:701 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 4917ms total)
T670C 090:702 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 4918ms total)
T670C 090:703 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 3A 00  returns 0x02 (0000ms, 4918ms total)
T670C 090:717 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0000ms, 4918ms total)
T670C 090:717 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 4919ms total)
T670C 090:718 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: A0 86 01 00  returns 0x04 (0000ms, 4919ms total)
T670C 090:718 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x40023844) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0002ms, 4921ms total)
T670C 090:720 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 12 00  returns 0x02 (0000ms, 4921ms total)
T670C 090:727 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 4922ms total)
T670C 090:728 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0000ms, 4922ms total)
T670C 090:742 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: CD 58 D4 45  returns 0x04 (0000ms, 4922ms total)
T670C 090:773 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 01  returns 0x01 (0001ms, 4923ms total)
T670C 090:774 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: BF 67  returns 0x02 (0001ms, 4924ms total)
T670C 090:788 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0001ms, 4925ms total)
T670C 090:789 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: 62 E3 00 00  returns 0x04 (0000ms, 4925ms total)
T670C 090:803 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0000ms, 4925ms total)
T670C 090:803 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0001ms, 4926ms total)
T670C 090:804 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 1E 00  returns 0x02 (0001ms, 4927ms total)
T670C 090:818 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 1E 00  returns 0x02 (0001ms, 4928ms total)
T670C 090:832 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 62 5C 01 00  returns 0x04 (0000ms, 4928ms total)
T670C 090:846 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 04  returns 0x01 (0000ms, 4928ms total)
T670C 090:859 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 9A 59 D4 45  returns 0x04 (0001ms, 4929ms total)
T670C 090:895 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 4930ms total)
T670C 090:896 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0001ms, 4931ms total)
T670C 090:897 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 12 00  returns 0x02 (0000ms, 4931ms total)
T670C 090:911 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 05  returns 0x01 (0000ms, 4931ms total)
T670C 090:925 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: D2 00  returns 0x02 (0000ms, 4931ms total)
T670C 090:932 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 4931ms total)
T670C 090:932 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 4932ms total)
T670C 090:933 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 3A 00  returns 0x02 (0001ms, 4933ms total)
T670C 090:941 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0001ms, 4934ms total)
T670C 090:942 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 4934ms total)
T670C 090:942 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: A0 86 01 00  returns 0x04 (0001ms, 4935ms total)
T670C 090:943 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0000ms, 4935ms total)
T670C 090:943 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 12 00  returns 0x02 (0001ms, 4936ms total)
T670C 090:951 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 4937ms total)
T670C 090:952 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0000ms, 4937ms total)
T670C 090:959 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 67 5A D4 45  returns 0x04 (0001ms, 4938ms total)
T670C 090:973 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 01  returns 0x01 (0001ms, 4939ms total)
T670C 090:974 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: 9A 0C  returns 0x02 (0000ms, 4939ms total)
T670C 090:988 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0000ms, 4939ms total)
T670C 090:988 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: 62 E3 00 00  returns 0x04 (0001ms, 4940ms total)
T670C 090:996 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0000ms, 4940ms total)
T670C 090:996 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0001ms, 4941ms total)
T670C 090:997 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 1E 00  returns 0x02 (0001ms, 4942ms total)
T670C 091:005 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 1E 00  returns 0x02 (0001ms, 4943ms total)
T670C 091:013 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 62 5C 01 00  returns 0x04 (0000ms, 4943ms total)
T670C 091:020 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 06  returns 0x01 (0001ms, 4944ms total)
T670C 091:035 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 34 5B D4 45  returns 0x04 (0001ms, 4945ms total)
T6ACC 091:049 JLINK_IsHalted()  returns FALSE (0001ms, 4946ms total)
T6ACC 091:150 JLINK_IsHalted()  returns FALSE (0000ms, 4945ms total)
T670C 091:260 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 4946ms total)
T670C 091:261 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0000ms, 4946ms total)
T670C 091:261 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 05 00  returns 0x02 (0001ms, 4947ms total)
T670C 091:276 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 4948ms total)
T670C 091:290 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: D2 00  returns 0x02 (0001ms, 4949ms total)
T670C 091:291 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 4949ms total)
T670C 091:291 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 4950ms total)
T670C 091:292 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 3A 00  returns 0x02 (0000ms, 4950ms total)
T670C 091:293 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0000ms, 4951ms total)
T670C 091:293 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 4952ms total)
T670C 091:294 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: A0 86 01 00  returns 0x04 (0000ms, 4952ms total)
T670C 091:294 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0001ms, 4953ms total)
T670C 091:295 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 05 00  returns 0x02 (0001ms, 4954ms total)
T670C 091:303 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0000ms, 4954ms total)
T670C 091:303 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0001ms, 4955ms total)
T670C 091:304 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 01 5C D4 45  returns 0x04 (0001ms, 4956ms total)
T670C 091:318 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 01  returns 0x01 (0001ms, 4957ms total)
T670C 091:319 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: F0 35  returns 0x02 (0001ms, 4958ms total)
T670C 091:333 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0001ms, 4959ms total)
T670C 091:334 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: 62 E3 00 00  returns 0x04 (0000ms, 4959ms total)
T670C 091:334 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 4960ms total)
T670C 091:335 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0000ms, 4960ms total)
T670C 091:336 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 1E 00  returns 0x02 (0000ms, 4960ms total)
T670C 091:336 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 1E 00  returns 0x02 (0001ms, 4961ms total)
T670C 091:337 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 62 5C 01 00  returns 0x04 (0000ms, 4961ms total)
T670C 091:337 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 4962ms total)
T670C 091:351 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 01 5C D4 45  returns 0x04 (0001ms, 4963ms total)
T6ACC 091:365 JLINK_IsHalted()  returns FALSE (0001ms, 4964ms total)
T6ACC 091:467 JLINK_IsHalted()  returns FALSE (0000ms, 4963ms total)
T6ACC 091:568 JLINK_IsHalted()  returns FALSE (0000ms, 4963ms total)
T6ACC 091:669 JLINK_IsHalted()  returns FALSE (0000ms, 4963ms total)
T670C 091:778 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 4964ms total)
T670C 091:779 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0001ms, 4965ms total)
T670C 091:780 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 05 00  returns 0x02 (0000ms, 4965ms total)
T670C 091:788 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 4966ms total)
T670C 091:795 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: AB 00  returns 0x02 (0001ms, 4967ms total)
T670C 091:803 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 4967ms total)
T670C 091:803 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 4968ms total)
T670C 091:804 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 1E 00  returns 0x02 (0001ms, 4969ms total)
T670C 091:811 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0001ms, 4970ms total)
T670C 091:812 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 4971ms total)
T670C 091:813 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 21 00 00 00  returns 0x04 (0000ms, 4971ms total)
T670C 091:820 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0001ms, 4972ms total)
T670C 091:821 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 05 00  returns 0x02 (0000ms, 4972ms total)
T670C 091:828 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0000ms, 4972ms total)
T670C 091:829 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0000ms, 4972ms total)
T670C 091:829 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 02 60 D4 45  returns 0x04 (0001ms, 4973ms total)
T670C 091:844 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 01  returns 0x01 (0001ms, 4974ms total)
T670C 091:845 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: 33 73  returns 0x02 (0000ms, 4974ms total)
T670C 091:858 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0001ms, 4975ms total)
T670C 091:859 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: DB 75 00 00  returns 0x04 (0001ms, 4976ms total)
T670C 091:866 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 4977ms total)
T670C 091:867 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0000ms, 4977ms total)
T670C 091:867 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 19 00  returns 0x02 (0001ms, 4978ms total)
T670C 091:875 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 19 00  returns 0x02 (0001ms, 4979ms total)
T670C 091:882 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 34 6C 01 00  returns 0x04 (0001ms, 4980ms total)
T670C 091:890 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 4980ms total)
T670C 091:897 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: CF 60 D4 45  returns 0x04 (0001ms, 4981ms total)
T6ACC 091:911 JLINK_IsHalted()  returns FALSE (0001ms, 4982ms total)
T6ACC 092:013 JLINK_IsHalted()  returns FALSE (0000ms, 4981ms total)
T6ACC 092:114 JLINK_IsHalted()  returns FALSE (0000ms, 4981ms total)
T6ACC 092:215 JLINK_IsHalted()  returns FALSE (0000ms, 4981ms total)
T670C 092:324 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 4982ms total)
T670C 092:325 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0001ms, 4983ms total)
T670C 092:326 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 08 00  returns 0x02 (0000ms, 4983ms total)
T670C 092:333 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 4984ms total)
T670C 092:334 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 66 02  returns 0x02 (0001ms, 4985ms total)
T670C 092:348 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 4985ms total)
T670C 092:349 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 4986ms total)
T670C 092:349 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 2C 00  returns 0x02 (0001ms, 4987ms total)
T670C 092:363 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0000ms, 4987ms total)
T670C 092:363 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 4988ms total)
T670C 092:364 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 1E 00 00 00  returns 0x04 (0001ms, 4989ms total)
T670C 092:378 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0000ms, 4989ms total)
T670C 092:378 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 08 00  returns 0x02 (0001ms, 4990ms total)
T670C 092:386 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 4991ms total)
T670C 092:387 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0000ms, 4991ms total)
T670C 092:387 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 9D 65 D4 45  returns 0x04 (0001ms, 4992ms total)
T670C 092:401 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 01  returns 0x01 (0001ms, 4993ms total)
T670C 092:402 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: EF 41  returns 0x02 (0000ms, 4993ms total)
T670C 092:416 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0001ms, 4994ms total)
T670C 092:417 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: 57 AE 00 00  returns 0x04 (0000ms, 4994ms total)
T670C 092:431 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0000ms, 4994ms total)
T670C 092:431 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0001ms, 4995ms total)
T670C 092:432 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 1C 00  returns 0x02 (0001ms, 4996ms total)
T670C 092:446 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 1C 00  returns 0x02 (0000ms, 4996ms total)
T670C 092:460 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 28 6C 01 00  returns 0x04 (0000ms, 4996ms total)
T670C 092:473 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 4997ms total)
T670C 092:474 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 9D 65 D4 45  returns 0x04 (0001ms, 4998ms total)
T6ACC 092:488 JLINK_IsHalted()  returns FALSE (0000ms, 4998ms total)
T6ACC 092:589 JLINK_IsHalted()  returns FALSE (0000ms, 4998ms total)
T6ACC 092:690 JLINK_IsHalted()  returns FALSE (0000ms, 4998ms total)
T6ACC 092:791 JLINK_IsHalted()  returns FALSE (0000ms, 4998ms total)
T670C 092:901 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 4998ms total)
T670C 092:901 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0001ms, 4999ms total)
T670C 092:902 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 11 00  returns 0x02 (0001ms, 5000ms total)
T670C 092:917 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 5001ms total)
T670C 092:918 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 83 02  returns 0x02 (0000ms, 5001ms total)
T670C 092:931 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 5002ms total)
T670C 092:932 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 5003ms total)
T670C 092:933 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 14 00  returns 0x02 (0000ms, 5003ms total)
T670C 092:947 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0001ms, 5004ms total)
T670C 092:948 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 5004ms total)
T670C 092:948 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 22 00 00 00  returns 0x04 (0001ms, 5005ms total)
T670C 092:962 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0001ms, 5006ms total)
T670C 092:963 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 11 00  returns 0x02 (0000ms, 5006ms total)
T670C 092:977 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0000ms, 5006ms total)
T670C 092:977 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0001ms, 5007ms total)
T670C 092:978 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 01  returns 0x01 (0000ms, 5007ms total)
T670C 092:978 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: 36 0B  returns 0x02 (0001ms, 5008ms total)
T670C 092:992 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0001ms, 5009ms total)
T670C 092:993 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: A3 50 00 00  returns 0x04 (0000ms, 5009ms total)
T670C 093:007 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0000ms, 5009ms total)
T670C 093:007 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0001ms, 5010ms total)
T670C 093:008 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 17 00  returns 0x02 (0000ms, 5010ms total)
T670C 093:022 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 17 00  returns 0x02 (0001ms, 5011ms total)
T670C 093:036 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 1C 6C 01 00  returns 0x04 (0000ms, 5011ms total)
T670C 093:049 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 01  returns 0x01 (0001ms, 5012ms total)
T670C 093:057 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 38 6B D4 45  returns 0x04 (0000ms, 5012ms total)
T6ACC 093:070 JLINK_IsHalted()  returns FALSE (0001ms, 5013ms total)
T6ACC 093:172 JLINK_IsHalted()  returns FALSE (0000ms, 5012ms total)
T6ACC 093:273 JLINK_IsHalted()  returns FALSE (0000ms, 5012ms total)
T6ACC 093:375 JLINK_IsHalted()  returns FALSE (0000ms, 5012ms total)
T670C 093:485 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 5012ms total)
T670C 093:486 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0000ms, 5012ms total)
T670C 093:486 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 02 00  returns 0x02 (0001ms, 5013ms total)
T670C 093:500 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 03  returns 0x01 (0000ms, 5013ms total)
T670C 093:507 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 5B 03  returns 0x02 (0001ms, 5014ms total)
T670C 093:521 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 5015ms total)
T670C 093:522 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 5015ms total)
T670C 093:522 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 4B 00  returns 0x02 (0001ms, 5016ms total)
T670C 093:536 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0001ms, 5017ms total)
T670C 093:537 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 5017ms total)
T670C 093:537 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 24 00 00 00  returns 0x04 (0001ms, 5018ms total)
T670C 093:551 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0001ms, 5019ms total)
T670C 093:552 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 01 00  returns 0x02 (0000ms, 5019ms total)
T670C 093:565 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 5020ms total)
T670C 093:566 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0001ms, 5021ms total)
T670C 093:567 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 01  returns 0x01 (0000ms, 5021ms total)
T670C 093:567 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: 66 57  returns 0x02 (0001ms, 5022ms total)
T670C 093:581 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0001ms, 5023ms total)
T670C 093:582 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: 9C 2B 00 00  returns 0x04 (0000ms, 5023ms total)
T670C 093:596 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0000ms, 5023ms total)
T670C 093:596 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0001ms, 5024ms total)
T670C 093:597 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 15 00  returns 0x02 (0000ms, 5024ms total)
T670C 093:611 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 15 00  returns 0x02 (0000ms, 5024ms total)
T670C 093:625 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: DE 6B 01 00  returns 0x04 (0000ms, 5024ms total)
T670C 093:639 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 5024ms total)
T670C 093:653 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: D3 70 D4 45  returns 0x04 (0000ms, 5024ms total)
T6ACC 093:666 JLINK_IsHalted()  returns FALSE (0001ms, 5025ms total)
T6ACC 093:767 JLINK_IsHalted()  returns FALSE (0000ms, 5024ms total)
T6ACC 093:868 JLINK_IsHalted()  returns FALSE (0000ms, 5024ms total)
T6ACC 093:969 JLINK_IsHalted()  returns FALSE (0000ms, 5024ms total)
T670C 094:078 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 5025ms total)
T670C 094:079 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0001ms, 5026ms total)
T670C 094:080 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 01 00  returns 0x02 (0000ms, 5026ms total)
T670C 094:095 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 5027ms total)
T670C 094:109 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: B8 00  returns 0x02 (0001ms, 5028ms total)
T670C 094:123 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 5029ms total)
T670C 094:124 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 5029ms total)
T670C 094:124 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 23 00  returns 0x02 (0001ms, 5030ms total)
T670C 094:138 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0001ms, 5031ms total)
T670C 094:139 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 5031ms total)
T670C 094:139 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 27 00 00 00  returns 0x04 (0001ms, 5032ms total)
T670C 094:154 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0001ms, 5033ms total)
T670C 094:155 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 01 00  returns 0x02 (0001ms, 5034ms total)
T670C 094:163 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 5035ms total)
T670C 094:164 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0000ms, 5035ms total)
T670C 094:164 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 01  returns 0x01 (0001ms, 5036ms total)
T670C 094:165 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: 8D 1A  returns 0x02 (0000ms, 5036ms total)
T670C 094:179 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0000ms, 5036ms total)
T670C 094:179 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: 63 89 00 00  returns 0x04 (0001ms, 5037ms total)
T670C 094:193 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 5038ms total)
T670C 094:194 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0001ms, 5039ms total)
T670C 094:195 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 1D 00  returns 0x02 (0000ms, 5039ms total)
T670C 094:208 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 1D 00  returns 0x02 (0001ms, 5040ms total)
T670C 094:222 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 53 5C 01 00  returns 0x04 (0001ms, 5041ms total)
T670C 094:236 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 5042ms total)
T670C 094:244 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 3B 77 D4 45  returns 0x04 (0000ms, 5042ms total)
T6ACC 094:257 JLINK_IsHalted()  returns FALSE (0001ms, 5043ms total)
T670C 094:259 JLINK_WriteMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) - Data: 00 D8 E0 45 -- CPU is running -- CPU_WriteMem(4 bytes @ 0x200001A4)  returns 0x04 (0000ms, 5042ms total)
T670C 094:267 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 5042ms total)
T670C 094:267 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0001ms, 5043ms total)
T670C 094:268 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 09 00  returns 0x02 (0001ms, 5044ms total)
T670C 094:282 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 5045ms total)
T670C 094:289 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 84 02  returns 0x02 (0001ms, 5046ms total)
T670C 094:303 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 5047ms total)
T670C 094:304 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 5047ms total)
T670C 094:304 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 31 00  returns 0x02 (0001ms, 5048ms total)
T670C 094:318 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0000ms, 5048ms total)
T670C 094:318 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 5049ms total)
T670C 094:319 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 21 00 00 00  returns 0x04 (0001ms, 5050ms total)
T670C 094:333 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x40023844) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0001ms, 5051ms total)
T670C 094:335 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 09 00  returns 0x02 (0000ms, 5051ms total)
T670C 094:342 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 5052ms total)
T670C 094:343 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0000ms, 5052ms total)
T670C 094:343 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: CD D8 E0 45  returns 0x04 (0001ms, 5053ms total)
T6ACC 094:358 JLINK_IsHalted()  returns FALSE (0000ms, 5053ms total)
T670C 094:375 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 01  returns 0x01 (0001ms, 5054ms total)
T670C 094:376 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: 07 36  returns 0x02 (0000ms, 5054ms total)
T670C 094:390 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0000ms, 5054ms total)
T670C 094:390 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: C7 C1 00 00  returns 0x04 (0001ms, 5055ms total)
T670C 094:404 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 5056ms total)
T670C 094:405 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0000ms, 5056ms total)
T670C 094:405 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 1D 00  returns 0x02 (0001ms, 5057ms total)
T670C 094:412 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 1D 00  returns 0x02 (0001ms, 5058ms total)
T670C 094:420 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 34 6C 01 00  returns 0x04 (0000ms, 5058ms total)
T670C 094:434 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 5058ms total)
T670C 094:434 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 9A D9 E0 45  returns 0x04 (0001ms, 5059ms total)
T6ACC 094:459 JLINK_IsHalted()  returns FALSE (0000ms, 5059ms total)
T6ACC 094:560 JLINK_IsHalted()  returns FALSE (0000ms, 5059ms total)
T670C 094:670 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 5059ms total)
T670C 094:670 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0001ms, 5060ms total)
T670C 094:671 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 10 00  returns 0x02 (0001ms, 5061ms total)
T670C 094:686 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 5062ms total)
T670C 094:687 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 35 01  returns 0x02 (0000ms, 5062ms total)
T670C 094:701 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 5063ms total)
T670C 094:702 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 5064ms total)
T670C 094:703 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 57 00  returns 0x02 (0000ms, 5064ms total)
T670C 094:717 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0000ms, 5064ms total)
T670C 094:717 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 5065ms total)
T670C 094:718 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 2E 00 00 00  returns 0x04 (0001ms, 5066ms total)
T670C 094:732 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0001ms, 5067ms total)
T670C 094:733 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 10 00  returns 0x02 (0001ms, 5068ms total)
T670C 094:747 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0000ms, 5068ms total)
T670C 094:747 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0001ms, 5069ms total)
T670C 094:748 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: CE DC E0 45  returns 0x04 (0001ms, 5070ms total)
T670C 094:762 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 01  returns 0x01 (0001ms, 5071ms total)
T670C 094:763 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: 98 6D  returns 0x02 (0000ms, 5071ms total)
T670C 094:776 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0001ms, 5072ms total)
T670C 094:777 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: 46 45 01 00  returns 0x04 (0001ms, 5073ms total)
T670C 094:791 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0000ms, 5073ms total)
T670C 094:791 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0001ms, 5074ms total)
T670C 094:792 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 24 00  returns 0x02 (0001ms, 5075ms total)
T670C 094:800 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 24 00  returns 0x02 (0000ms, 5075ms total)
T670C 094:807 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 17 6C 01 00  returns 0x04 (0001ms, 5076ms total)
T670C 094:821 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 5077ms total)
T670C 094:822 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 9B DD E0 45  returns 0x04 (0000ms, 5077ms total)
T6ACC 094:836 JLINK_IsHalted()  returns FALSE (0001ms, 5078ms total)
T6ACC 094:938 JLINK_IsHalted()  returns FALSE (0000ms, 5077ms total)
T6ACC 095:039 JLINK_IsHalted()  returns FALSE (0000ms, 5077ms total)
T6ACC 095:140 JLINK_IsHalted()  returns FALSE (0000ms, 5077ms total)
T670C 095:250 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 5077ms total)
T670C 095:250 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0001ms, 5078ms total)
T670C 095:251 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 05 00  returns 0x02 (0000ms, 5078ms total)
T670C 095:266 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 5079ms total)
T670C 095:267 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: AB 01  returns 0x02 (0001ms, 5080ms total)
T670C 095:281 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 5081ms total)
T670C 095:282 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 5081ms total)
T670C 095:282 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 1E 00  returns 0x02 (0001ms, 5082ms total)
T670C 095:296 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0001ms, 5083ms total)
T670C 095:297 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 5083ms total)
T670C 095:297 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 19 00 00 00  returns 0x04 (0001ms, 5084ms total)
T670C 095:311 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0001ms, 5085ms total)
T670C 095:312 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 05 00  returns 0x02 (0000ms, 5085ms total)
T670C 095:326 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 5086ms total)
T670C 095:327 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0000ms, 5086ms total)
T670C 095:327 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 9C E1 E0 45  returns 0x04 (0001ms, 5087ms total)
T670C 095:342 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 01  returns 0x01 (0000ms, 5087ms total)
T670C 095:342 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: B5 33  returns 0x02 (0001ms, 5088ms total)
T670C 095:356 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0001ms, 5089ms total)
T670C 095:357 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: 01 77 00 00  returns 0x04 (0000ms, 5089ms total)
T670C 095:370 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 5090ms total)
T670C 095:371 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0001ms, 5091ms total)
T670C 095:372 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 19 00  returns 0x02 (0000ms, 5091ms total)
T670C 095:386 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 19 00  returns 0x02 (0000ms, 5091ms total)
T670C 095:400 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 26 6C 01 00  returns 0x04 (0000ms, 5091ms total)
T670C 095:413 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 5092ms total)
T670C 095:414 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 69 E2 E0 45  returns 0x04 (0001ms, 5093ms total)
T6ACC 095:428 JLINK_IsHalted()  returns FALSE (0001ms, 5094ms total)
T6ACC 095:530 JLINK_IsHalted()  returns FALSE (0000ms, 5093ms total)
T6ACC 095:631 JLINK_IsHalted()  returns FALSE (0000ms, 5093ms total)
T6ACC 095:732 JLINK_IsHalted()  returns FALSE (0000ms, 5093ms total)
T670C 095:842 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 5093ms total)
T670C 095:842 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0001ms, 5094ms total)
T670C 095:843 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 01 00  returns 0x02 (0001ms, 5095ms total)
T670C 095:857 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 5096ms total)
T670C 095:858 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 05 01  returns 0x02 (0000ms, 5096ms total)
T670C 095:871 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 5097ms total)
T670C 095:872 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 5098ms total)
T670C 095:873 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 0B 00  returns 0x02 (0000ms, 5098ms total)
T670C 095:886 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0001ms, 5099ms total)
T670C 095:887 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 5100ms total)
T670C 095:888 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 32 00 00 00  returns 0x04 (0000ms, 5100ms total)
T670C 095:902 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0000ms, 5100ms total)
T670C 095:902 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 0D 00  returns 0x02 (0001ms, 5101ms total)
T670C 095:916 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 5102ms total)
T670C 095:917 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0001ms, 5103ms total)
T670C 095:918 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 6A E6 E0 45  returns 0x04 (0000ms, 5103ms total)
T670C 095:932 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 01  returns 0x01 (0001ms, 5104ms total)
T670C 095:933 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: 21 7E  returns 0x02 (0000ms, 5104ms total)
T670C 095:947 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0001ms, 5105ms total)
T670C 095:948 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: FD 2B 00 00  returns 0x04 (0000ms, 5105ms total)
T670C 095:962 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0000ms, 5105ms total)
T670C 095:962 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0001ms, 5106ms total)
T670C 095:963 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 0D 00  returns 0x02 (0001ms, 5107ms total)
T670C 095:977 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 0D 00  returns 0x02 (0001ms, 5108ms total)
T670C 095:991 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 1E D6 00 00  returns 0x04 (0000ms, 5108ms total)
T670C 096:005 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 5108ms total)
T670C 096:005 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 37 E7 E0 45  returns 0x04 (0001ms, 5109ms total)
T6ACC 096:019 JLINK_IsHalted()  returns FALSE (0000ms, 5109ms total)
T6ACC 096:120 JLINK_IsHalted()  returns FALSE (0000ms, 5109ms total)
T6ACC 096:222 JLINK_IsHalted()  returns FALSE (0000ms, 5109ms total)
T6ACC 096:323 JLINK_IsHalted()  returns FALSE (0000ms, 5109ms total)
T670C 096:433 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 5109ms total)
T670C 096:433 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0001ms, 5110ms total)
T670C 096:434 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 10 00  returns 0x02 (0000ms, 5110ms total)
T670C 096:449 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 5112ms total)
T670C 096:450 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 7C 01  returns 0x02 (0001ms, 5113ms total)
T670C 096:464 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 5113ms total)
T670C 096:464 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 5114ms total)
T670C 096:465 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 57 00  returns 0x02 (0001ms, 5115ms total)
T670C 096:479 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0000ms, 5115ms total)
T670C 096:479 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 5116ms total)
T670C 096:480 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 26 00 00 00  returns 0x04 (0001ms, 5117ms total)
T670C 096:494 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0001ms, 5118ms total)
T670C 096:495 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 10 00  returns 0x02 (0000ms, 5118ms total)
T670C 096:508 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 5119ms total)
T670C 096:509 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0001ms, 5120ms total)
T670C 096:510 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 05 EC E0 45  returns 0x04 (0000ms, 5120ms total)
T670C 096:524 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 01  returns 0x01 (0000ms, 5120ms total)
T670C 096:524 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: 3D 54  returns 0x02 (0001ms, 5121ms total)
T670C 096:538 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0001ms, 5122ms total)
T670C 096:539 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: 94 45 01 00  returns 0x04 (0000ms, 5122ms total)
T670C 096:552 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 5123ms total)
T670C 096:553 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0001ms, 5124ms total)
T670C 096:554 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 24 00  returns 0x02 (0000ms, 5124ms total)
T670C 096:567 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 24 00  returns 0x02 (0001ms, 5125ms total)
T670C 096:581 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 08 6C 01 00  returns 0x04 (0001ms, 5126ms total)
T670C 096:595 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 5127ms total)
T670C 096:596 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: D2 EC E0 45  returns 0x04 (0000ms, 5127ms total)
T6ACC 096:610 JLINK_IsHalted()  returns FALSE (0000ms, 5127ms total)
T6ACC 096:711 JLINK_IsHalted()  returns FALSE (0000ms, 5127ms total)
T6ACC 096:812 JLINK_IsHalted()  returns FALSE (0000ms, 5127ms total)
T6ACC 096:913 JLINK_IsHalted()  returns FALSE (0000ms, 5127ms total)
T670C 097:024 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 5127ms total)
T670C 097:025 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0000ms, 5128ms total)
T670C 097:025 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 0B 00  returns 0x02 (0001ms, 5129ms total)
T670C 097:040 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 5130ms total)
T670C 097:041 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 3F 01  returns 0x02 (0000ms, 5130ms total)
T670C 097:055 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 5130ms total)
T670C 097:055 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 5131ms total)
T670C 097:056 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 3B 00  returns 0x02 (0000ms, 5131ms total)
T670C 097:069 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0001ms, 5132ms total)
T670C 097:070 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 5133ms total)
T670C 097:071 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 2A 00 00 00  returns 0x04 (0000ms, 5133ms total)
T670C 097:084 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0001ms, 5134ms total)
T670C 097:085 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 0B 00  returns 0x02 (0001ms, 5135ms total)
T670C 097:099 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 5136ms total)
T670C 097:100 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0000ms, 5136ms total)
T670C 097:100 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: A0 F1 E0 45  returns 0x04 (0001ms, 5137ms total)
T670C 097:114 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 01  returns 0x01 (0001ms, 5138ms total)
T670C 097:115 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: 0B 1E  returns 0x02 (0000ms, 5138ms total)
T670C 097:129 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0001ms, 5139ms total)
T670C 097:130 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: AF E7 00 00  returns 0x04 (0000ms, 5139ms total)
T670C 097:144 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 5140ms total)
T670C 097:145 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0000ms, 5140ms total)
T670C 097:145 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 1F 00  returns 0x02 (0001ms, 5141ms total)
T670C 097:159 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 1F 00  returns 0x02 (0001ms, 5142ms total)
T670C 097:173 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 2D 6C 01 00  returns 0x04 (0000ms, 5142ms total)
T670C 097:187 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 5142ms total)
T670C 097:187 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: A0 F1 E0 45  returns 0x04 (0001ms, 5143ms total)
T6ACC 097:201 JLINK_IsHalted()  returns FALSE (0001ms, 5144ms total)
T6ACC 097:303 JLINK_IsHalted()  returns FALSE (0000ms, 5143ms total)
T6ACC 097:404 JLINK_IsHalted()  returns FALSE (0000ms, 5143ms total)
T6ACC 097:505 JLINK_IsHalted()  returns FALSE (0000ms, 5143ms total)
T670C 097:615 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 5143ms total)
T670C 097:615 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0001ms, 5144ms total)
T670C 097:616 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 0F 00  returns 0x02 (0001ms, 5145ms total)
T670C 097:631 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 5146ms total)
T670C 097:632 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 16 02  returns 0x02 (0000ms, 5146ms total)
T670C 097:645 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 5147ms total)
T670C 097:646 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 5148ms total)
T670C 097:647 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 4E 00  returns 0x02 (0000ms, 5148ms total)
T670C 097:660 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0001ms, 5149ms total)
T670C 097:661 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 5150ms total)
T670C 097:662 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 31 00 00 00  returns 0x04 (0000ms, 5150ms total)
T670C 097:676 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0000ms, 5150ms total)
T670C 097:676 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 08 00  returns 0x02 (0001ms, 5151ms total)
T670C 097:690 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 5152ms total)
T670C 097:691 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0001ms, 5153ms total)
T670C 097:692 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 6E F6 E0 45  returns 0x04 (0000ms, 5153ms total)
T670C 097:705 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 01  returns 0x01 (0001ms, 5154ms total)
T670C 097:706 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: 94 60  returns 0x02 (0001ms, 5155ms total)
T670C 097:720 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0000ms, 5155ms total)
T670C 097:720 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: CA 32 01 00  returns 0x04 (0001ms, 5156ms total)
T670C 097:734 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 5157ms total)
T670C 097:735 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0001ms, 5158ms total)
T670C 097:736 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 17 00  returns 0x02 (0000ms, 5158ms total)
T670C 097:750 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 17 00  returns 0x02 (0000ms, 5158ms total)
T670C 097:763 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: ED 6B 01 00  returns 0x04 (0001ms, 5159ms total)
T670C 097:777 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 5160ms total)
T670C 097:778 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 08 F8 E0 45  returns 0x04 (0000ms, 5160ms total)
T6ACC 097:792 JLINK_IsHalted()  returns FALSE (0000ms, 5160ms total)
T6ACC 097:893 JLINK_IsHalted()  returns FALSE (0000ms, 5160ms total)
T6ACC 097:995 JLINK_IsHalted()  returns FALSE (0000ms, 5160ms total)
T6ACC 098:096 JLINK_IsHalted()  returns FALSE (0000ms, 5160ms total)
T670C 098:206 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 5160ms total)
T670C 098:206 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0001ms, 5161ms total)
T670C 098:207 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 0C 00  returns 0x02 (0001ms, 5162ms total)
T670C 098:222 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 5163ms total)
T670C 098:223 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: BA 00  returns 0x02 (0000ms, 5163ms total)
T670C 098:237 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 5163ms total)
T670C 098:237 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 5164ms total)
T670C 098:238 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 44 00  returns 0x02 (0000ms, 5164ms total)
T670C 098:252 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0000ms, 5164ms total)
T670C 098:253 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 5164ms total)
T670C 098:253 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 28 00 00 00  returns 0x04 (0001ms, 5165ms total)
T670C 098:267 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0001ms, 5166ms total)
T670C 098:268 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 0C 00  returns 0x02 (0000ms, 5166ms total)
T670C 098:282 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0000ms, 5166ms total)
T670C 098:282 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0001ms, 5167ms total)
T670C 098:283 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 09 FC E0 45  returns 0x04 (0001ms, 5168ms total)
T670C 098:297 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 01  returns 0x01 (0000ms, 5168ms total)
T670C 098:297 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: A0 2B  returns 0x02 (0001ms, 5169ms total)
T670C 098:311 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0001ms, 5170ms total)
T670C 098:312 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: CF FA 00 00  returns 0x04 (0000ms, 5170ms total)
T670C 098:326 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 5171ms total)
T670C 098:327 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0001ms, 5172ms total)
T670C 098:328 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 20 00  returns 0x02 (0000ms, 5172ms total)
T670C 098:342 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 20 00  returns 0x02 (0001ms, 5173ms total)
T670C 098:356 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 01 6C 01 00  returns 0x04 (0001ms, 5174ms total)
T670C 098:370 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 5175ms total)
T670C 098:371 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: D6 FC E0 45  returns 0x04 (0000ms, 5175ms total)
T6ACC 098:385 JLINK_IsHalted()  returns FALSE (0000ms, 5175ms total)
T6ACC 098:486 JLINK_IsHalted()  returns FALSE (0000ms, 5175ms total)
T6ACC 098:587 JLINK_IsHalted()  returns FALSE (0000ms, 5175ms total)
T6ACC 098:688 JLINK_IsHalted()  returns FALSE (0000ms, 5175ms total)
T670C 098:798 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 5175ms total)
T670C 098:798 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0001ms, 5176ms total)
T670C 098:799 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 0B 00  returns 0x02 (0001ms, 5177ms total)
T670C 098:814 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 5178ms total)
T670C 098:815 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: A8 00  returns 0x02 (0000ms, 5178ms total)
T670C 098:828 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 5179ms total)
T670C 098:829 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 5180ms total)
T670C 098:830 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 40 00  returns 0x02 (0000ms, 5180ms total)
T670C 098:843 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0001ms, 5181ms total)
T670C 098:844 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 5181ms total)
T670C 098:844 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 29 00 00 00  returns 0x04 (0001ms, 5182ms total)
T670C 098:858 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0001ms, 5183ms total)
T670C 098:859 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 0B 00  returns 0x02 (0001ms, 5184ms total)
T670C 098:873 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 5185ms total)
T670C 098:874 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0001ms, 5186ms total)
T670C 098:875 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 00 00 7A 44  returns 0x04 (0000ms, 5186ms total)
T670C 098:889 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 00  returns 0x01 (0001ms, 5187ms total)
T670C 098:897 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: 41 5E  returns 0x02 (0000ms, 5187ms total)
T670C 098:911 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0000ms, 5187ms total)
T670C 098:911 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: A8 FA 00 00  returns 0x04 (0001ms, 5188ms total)
T670C 098:925 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 5189ms total)
T670C 098:926 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0000ms, 5189ms total)
T670C 098:926 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 1F 00  returns 0x02 (0001ms, 5190ms total)
T670C 098:941 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 1F 00  returns 0x02 (0000ms, 5190ms total)
T670C 098:955 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 68 59 01 00  returns 0x04 (0000ms, 5190ms total)
T670C 098:968 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 5191ms total)
T670C 098:969 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 00 00 7A 44  returns 0x04 (0001ms, 5192ms total)
T6ACC 098:983 JLINK_IsHalted()  returns FALSE (0000ms, 5192ms total)
T6ACC 099:084 JLINK_IsHalted()  returns FALSE (0000ms, 5192ms total)
T6ACC 099:185 JLINK_IsHalted()  returns FALSE (0000ms, 5192ms total)
T6ACC 099:286 JLINK_IsHalted()  returns FALSE (0000ms, 5192ms total)
T670C 099:397 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 5192ms total)
T670C 099:397 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0001ms, 5193ms total)
T670C 099:398 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 0B 00  returns 0x02 (0001ms, 5194ms total)
T670C 099:406 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 5194ms total)
T670C 099:406 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 2E 00  returns 0x02 (0001ms, 5195ms total)
T670C 099:420 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 5196ms total)
T670C 099:421 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 5196ms total)
T670C 099:421 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 40 00  returns 0x02 (0001ms, 5197ms total)
T670C 099:429 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0000ms, 5197ms total)
T670C 099:429 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 5198ms total)
T670C 099:430 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 29 00 00 00  returns 0x04 (0000ms, 5198ms total)
T670C 099:437 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0001ms, 5199ms total)
T670C 099:438 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 0B 00  returns 0x02 (0000ms, 5199ms total)
T670C 099:445 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 5200ms total)
T670C 099:446 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0000ms, 5200ms total)
T670C 099:446 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: CD CC CC 3D  returns 0x04 (0001ms, 5201ms total)
T670C 099:460 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 00  returns 0x01 (0001ms, 5202ms total)
T670C 099:468 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: F3 37  returns 0x02 (0000ms, 5202ms total)
T670C 099:482 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0000ms, 5202ms total)
T670C 099:482 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: 2E FA 00 00  returns 0x04 (0001ms, 5203ms total)
T670C 099:496 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 5204ms total)
T670C 099:497 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0000ms, 5204ms total)
T670C 099:497 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 1F 00  returns 0x02 (0001ms, 5205ms total)
T670C 099:504 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 1F 00  returns 0x02 (0001ms, 5206ms total)
T670C 099:512 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: E2 59 01 00  returns 0x04 (0000ms, 5206ms total)
T670C 099:525 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 5207ms total)
T670C 099:526 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: CD CC CC 3D  returns 0x04 (0001ms, 5208ms total)
T6ACC 099:540 JLINK_IsHalted()  returns FALSE (0001ms, 5209ms total)
T6ACC 099:642 JLINK_IsHalted()  returns FALSE (0000ms, 5208ms total)
T6ACC 099:743 JLINK_IsHalted()  returns FALSE (0000ms, 5208ms total)
T6ACC 099:844 JLINK_IsHalted()  returns FALSE (0000ms, 5208ms total)
T670C 099:954 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 5208ms total)
T670C 099:954 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0001ms, 5209ms total)
T670C 099:955 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 0B 00  returns 0x02 (0001ms, 5210ms total)
T670C 099:956 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 5210ms total)
T670C 099:956 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 2E 00  returns 0x02 (0001ms, 5211ms total)
T670C 099:964 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 5212ms total)
T670C 099:965 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 5212ms total)
T670C 099:965 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 14 00  returns 0x02 (0001ms, 5213ms total)
T670C 099:973 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0000ms, 5213ms total)
T670C 099:973 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 5214ms total)
T670C 099:974 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 2F 00 00 00  returns 0x04 (0001ms, 5215ms total)
T670C 099:982 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0001ms, 5216ms total)
T670C 099:983 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 0B 00  returns 0x02 (0000ms, 5216ms total)
T670C 099:983 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 5217ms total)
T670C 099:984 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0000ms, 5217ms total)
T670C 099:984 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: CD CC CC 3D  returns 0x04 (0001ms, 5218ms total)
T670C 099:992 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 00  returns 0x01 (0000ms, 5218ms total)
T670C 099:992 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: 5A 05  returns 0x02 (0001ms, 5219ms total)
T670C 100:006 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0001ms, 5220ms total)
T670C 100:007 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: B9 F7 00 00  returns 0x04 (0000ms, 5220ms total)
T670C 100:020 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 5221ms total)
T670C 100:021 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0001ms, 5222ms total)
T670C 100:022 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 1F 00  returns 0x02 (0000ms, 5222ms total)
T670C 100:022 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 1F 00  returns 0x02 (0001ms, 5223ms total)
T670C 100:023 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 6E 5C 01 00  returns 0x04 (0001ms, 5224ms total)
T670C 100:037 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 5224ms total)
T670C 100:037 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: CD CC 4C 3E  returns 0x04 (0001ms, 5225ms total)
T6ACC 100:051 JLINK_IsHalted()  returns FALSE (0001ms, 5226ms total)
T6ACC 100:154 JLINK_IsHalted()  returns FALSE (0000ms, 5225ms total)
T6ACC 100:255 JLINK_IsHalted()  returns FALSE (0000ms, 5225ms total)
T6ACC 100:356 JLINK_IsHalted()  returns FALSE (0000ms, 5225ms total)
T670C 100:466 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 5225ms total)
T670C 100:466 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0001ms, 5226ms total)
T670C 100:467 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 03 00  returns 0x02 (0001ms, 5227ms total)
T670C 100:475 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 5228ms total)
T670C 100:476 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 01 00  returns 0x02 (0001ms, 5229ms total)
T670C 100:483 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 5230ms total)
T670C 100:484 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 5231ms total)
T670C 100:485 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 15 00  returns 0x02 (0000ms, 5231ms total)
T670C 100:499 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0000ms, 5231ms total)
T670C 100:499 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 5232ms total)
T670C 100:500 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 2D 00 00 00  returns 0x04 (0000ms, 5232ms total)
T670C 100:514 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0001ms, 5233ms total)
T670C 100:515 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 03 00  returns 0x02 (0000ms, 5233ms total)
T670C 100:522 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 5234ms total)
T670C 100:523 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0000ms, 5234ms total)
T670C 100:523 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 34 33 33 3F  returns 0x04 (0001ms, 5235ms total)
T670C 100:531 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 00  returns 0x01 (0001ms, 5236ms total)
T670C 100:532 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: CB 4C  returns 0x02 (0000ms, 5236ms total)
T670C 100:546 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0001ms, 5237ms total)
T670C 100:547 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: 09 52 00 00  returns 0x04 (0001ms, 5238ms total)
T670C 100:561 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 5239ms total)
T670C 100:562 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0000ms, 5239ms total)
T670C 100:562 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 17 00  returns 0x02 (0001ms, 5240ms total)
T670C 100:572 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 17 00  returns 0x02 (0000ms, 5240ms total)
T670C 100:580 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 1E 6C 01 00  returns 0x04 (0001ms, 5241ms total)
T670C 100:595 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 01  returns 0x01 (0000ms, 5241ms total)
T670C 100:601 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: CE CC 4C 3F  returns 0x04 (0002ms, 5243ms total)
T6ACC 100:617 JLINK_IsHalted()  returns FALSE (0000ms, 5243ms total)
T6ACC 100:718 JLINK_IsHalted()  returns FALSE (0002ms, 5245ms total)
T6ACC 100:821 JLINK_IsHalted()  returns FALSE (0000ms, 5243ms total)
T6ACC 100:922 JLINK_IsHalted()  returns FALSE (0000ms, 5243ms total)
T670C 101:031 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 5244ms total)
T670C 101:032 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0001ms, 5245ms total)
T670C 101:033 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 0B 00  returns 0x02 (0000ms, 5245ms total)
T670C 101:048 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 5245ms total)
T670C 101:048 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 51 00  returns 0x02 (0001ms, 5246ms total)
T670C 101:062 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 5247ms total)
T670C 101:063 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 5248ms total)
T670C 101:064 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 19 00  returns 0x02 (0000ms, 5248ms total)
T670C 101:078 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0001ms, 5250ms total)
T670C 101:079 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 5250ms total)
T670C 101:079 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 28 00 00 00  returns 0x04 (0001ms, 5251ms total)
T670C 101:094 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0001ms, 5252ms total)
T670C 101:095 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 0B 00  returns 0x02 (0000ms, 5252ms total)
T670C 101:109 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 5253ms total)
T670C 101:110 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 00  returns 0x01 (0000ms, 5253ms total)
T670C 101:117 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 02 00 C0 3F  returns 0x04 (0001ms, 5254ms total)
T670C 101:132 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 00  returns 0x01 (0000ms, 5254ms total)
T670C 101:132 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: 98 1E  returns 0x02 (0001ms, 5255ms total)
T670C 101:147 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0000ms, 5255ms total)
T670C 101:147 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: 32 52 00 00  returns 0x04 (0001ms, 5256ms total)
T670C 101:161 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 5257ms total)
T670C 101:162 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0001ms, 5258ms total)
T670C 101:163 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 0B 00  returns 0x02 (0000ms, 5258ms total)
T670C 101:177 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 0B 00  returns 0x02 (0001ms, 5259ms total)
T670C 101:191 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 05 8B 00 00  returns 0x04 (0001ms, 5260ms total)
T670C 101:206 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 5261ms total)
T670C 101:220 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: CF CC CC 3F  returns 0x04 (0001ms, 5262ms total)
T6ACC 101:234 JLINK_IsHalted()  returns FALSE (0001ms, 5263ms total)
T6ACC 101:336 JLINK_IsHalted()  returns FALSE (0000ms, 5262ms total)
T6ACC 101:437 JLINK_IsHalted()  returns FALSE (0000ms, 5262ms total)
T670C 101:546 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 5263ms total)
T670C 101:547 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0001ms, 5264ms total)
T670C 101:548 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0000ms, 5264ms total)
T670C 101:562 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 5265ms total)
T670C 101:563 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: AD 02  returns 0x02 (0000ms, 5265ms total)
T670C 101:579 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 5266ms total)
T670C 101:580 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 5266ms total)
T670C 101:581 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 06 00  returns 0x02 (0000ms, 5267ms total)
T670C 101:597 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0001ms, 5268ms total)
T670C 101:598 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 5269ms total)
T670C 101:599 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 2F 00 00 00  returns 0x04 (0000ms, 5269ms total)
T670C 101:614 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0001ms, 5271ms total)
T670C 101:615 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0000ms, 5271ms total)
T670C 101:631 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0000ms, 5271ms total)
T670C 101:631 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0001ms, 5272ms total)
T670C 101:647 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 01 00 00 40  returns 0x04 (0000ms, 5272ms total)
T670C 101:661 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 00  returns 0x01 (0001ms, 5273ms total)
T670C 101:662 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: B7 64  returns 0x02 (0000ms, 5273ms total)
T670C 101:676 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0000ms, 5273ms total)
T670C 101:676 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: D0 19 00 00  returns 0x04 (0001ms, 5274ms total)
T670C 101:691 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 5275ms total)
T670C 101:692 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0001ms, 5276ms total)
T670C 101:693 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 14 00  returns 0x02 (0000ms, 5276ms total)
T670C 101:707 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 14 00  returns 0x02 (0000ms, 5276ms total)
T670C 101:721 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 27 6C 01 00  returns 0x04 (0000ms, 5276ms total)
T670C 101:735 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 5276ms total)
T670C 101:742 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 67 66 06 40  returns 0x04 (0000ms, 5276ms total)
T6ACC 101:756 JLINK_IsHalted()  returns FALSE (0001ms, 5277ms total)
T6ACC 101:858 JLINK_IsHalted()  returns FALSE (0000ms, 5276ms total)
T6ACC 101:959 JLINK_IsHalted()  returns FALSE (0000ms, 5276ms total)
T670C 102:068 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 5276ms total)
T670C 102:068 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0001ms, 5277ms total)
T670C 102:069 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 06 00  returns 0x02 (0000ms, 5277ms total)
T670C 102:083 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 5278ms total)
T670C 102:084 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: CD 01  returns 0x02 (0001ms, 5279ms total)
T670C 102:100 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 5280ms total)
T670C 102:101 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 5281ms total)
T670C 102:102 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 23 00  returns 0x02 (0000ms, 5281ms total)
T670C 102:118 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0000ms, 5281ms total)
T670C 102:118 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 5282ms total)
T670C 102:119 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 2D 00 00 00  returns 0x04 (0001ms, 5283ms total)
T670C 102:138 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0001ms, 5284ms total)
T670C 102:139 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 06 00  returns 0x02 (0001ms, 5285ms total)
T670C 102:158 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 5286ms total)
T670C 102:159 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0001ms, 5287ms total)
T670C 102:167 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 65 66 26 40  returns 0x04 (0001ms, 5288ms total)
T670C 102:184 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 00  returns 0x01 (0000ms, 5288ms total)
T670C 102:184 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: 7A 28  returns 0x02 (0001ms, 5289ms total)
T670C 102:200 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0001ms, 5290ms total)
T670C 102:201 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: 55 8A 00 00  returns 0x04 (0000ms, 5290ms total)
T670C 102:220 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 5291ms total)
T670C 102:221 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0000ms, 5291ms total)
T670C 102:221 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 1A 00  returns 0x02 (0001ms, 5292ms total)
T670C 102:237 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 1A 00  returns 0x02 (0001ms, 5293ms total)
T670C 102:252 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 35 6C 01 00  returns 0x04 (0001ms, 5294ms total)
T670C 102:266 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 5295ms total)
T670C 102:267 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: CB CC 2C 40  returns 0x04 (0000ms, 5295ms total)
T6ACC 102:282 JLINK_IsHalted()  returns FALSE (0000ms, 5295ms total)
T6ACC 102:384 JLINK_IsHalted()  returns FALSE (0000ms, 5295ms total)
T6ACC 102:486 JLINK_IsHalted()  returns FALSE (0000ms, 5295ms total)
T670C 102:595 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 5296ms total)
T670C 102:596 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0000ms, 5296ms total)
T670C 102:596 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 09 00  returns 0x02 (0001ms, 5297ms total)
T670C 102:611 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 5298ms total)
T670C 102:612 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 58 03  returns 0x02 (0000ms, 5298ms total)
T670C 102:626 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 5299ms total)
T670C 102:627 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 5300ms total)
T670C 102:628 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 31 00  returns 0x02 (0000ms, 5300ms total)
T670C 102:643 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0001ms, 5301ms total)
T670C 102:644 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 5301ms total)
T670C 102:644 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 25 00 00 00  returns 0x04 (0001ms, 5302ms total)
T670C 102:659 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0001ms, 5303ms total)
T670C 102:660 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0000ms, 5303ms total)
T670C 102:675 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 5304ms total)
T670C 102:676 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0001ms, 5305ms total)
T670C 102:677 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 2F 33 53 40  returns 0x04 (0000ms, 5305ms total)
T670C 102:691 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 00  returns 0x01 (0001ms, 5306ms total)
T670C 102:692 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: 94 5D  returns 0x02 (0000ms, 5306ms total)
T670C 102:707 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0001ms, 5307ms total)
T670C 102:708 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: BC C2 00 00  returns 0x04 (0000ms, 5307ms total)
T670C 102:722 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0000ms, 5307ms total)
T670C 102:722 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0001ms, 5308ms total)
T670C 102:723 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 16 00  returns 0x02 (0001ms, 5309ms total)
T670C 102:738 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 16 00  returns 0x02 (0000ms, 5309ms total)
T670C 102:752 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: E6 E8 00 00  returns 0x04 (0001ms, 5310ms total)
T670C 102:766 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 5311ms total)
T670C 102:767 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: FB FF 5F 40  returns 0x04 (0000ms, 5311ms total)
T6ACC 102:781 JLINK_IsHalted()  returns FALSE (0001ms, 5312ms total)
T6ACC 102:882 JLINK_IsHalted()  returns FALSE (0000ms, 5311ms total)
T6ACC 102:983 JLINK_IsHalted()  returns FALSE (0000ms, 5311ms total)
T6ACC 103:085 JLINK_IsHalted()  returns FALSE (0000ms, 5311ms total)
T670C 103:195 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 5312ms total)
T670C 103:196 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0001ms, 5313ms total)
T670C 103:197 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 0C 00  returns 0x02 (0001ms, 5314ms total)
T670C 103:212 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 5315ms total)
T670C 103:213 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 01 01  returns 0x02 (0001ms, 5316ms total)
T670C 103:227 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 5317ms total)
T670C 103:228 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 5317ms total)
T670C 103:228 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 44 00  returns 0x02 (0001ms, 5318ms total)
T670C 103:244 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0001ms, 5319ms total)
T670C 103:245 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 5320ms total)
T670C 103:246 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 2B 00 00 00  returns 0x04 (0000ms, 5320ms total)
T670C 103:260 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0000ms, 5320ms total)
T670C 103:260 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 0C 00  returns 0x02 (0001ms, 5321ms total)
T670C 103:276 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0000ms, 5321ms total)
T670C 103:276 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0001ms, 5322ms total)
T670C 103:277 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: F9 FF 7F 40  returns 0x04 (0001ms, 5323ms total)
T670C 103:291 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 00  returns 0x01 (0001ms, 5324ms total)
T670C 103:292 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: 4F 2C  returns 0x02 (0000ms, 5324ms total)
T670C 103:309 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0001ms, 5325ms total)
T670C 103:310 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: BE 0A 01 00  returns 0x04 (0000ms, 5325ms total)
T670C 103:324 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0000ms, 5325ms total)
T670C 103:324 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0001ms, 5326ms total)
T670C 103:325 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 20 00  returns 0x02 (0001ms, 5327ms total)
T670C 103:343 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 20 00  returns 0x02 (0001ms, 5328ms total)
T670C 103:357 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 08 6C 01 00  returns 0x04 (0001ms, 5329ms total)
T670C 103:373 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 5330ms total)
T670C 103:374 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 5331ms total)
T6ACC 103:388 JLINK_IsHalted()  returns FALSE (0001ms, 5332ms total)
T6ACC 103:490 JLINK_IsHalted()  returns FALSE (0000ms, 5331ms total)
T6ACC 103:591 JLINK_IsHalted()  returns FALSE (0000ms, 5331ms total)
T6ACC 103:692 JLINK_IsHalted()  returns FALSE (0000ms, 5331ms total)
T670C 103:803 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 5331ms total)
T670C 103:803 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0001ms, 5332ms total)
T670C 103:804 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 0C 00  returns 0x02 (0001ms, 5333ms total)
T670C 103:812 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 5334ms total)
T670C 103:813 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 2A 01  returns 0x02 (0001ms, 5335ms total)
T670C 103:827 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 5335ms total)
T670C 103:827 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 5336ms total)
T670C 103:828 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 40 00  returns 0x02 (0001ms, 5337ms total)
T670C 103:842 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0000ms, 5337ms total)
T670C 103:842 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 5338ms total)
T670C 103:843 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 2B 00 00 00  returns 0x04 (0001ms, 5339ms total)
T670C 103:850 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0001ms, 5340ms total)
T670C 103:851 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 0C 00  returns 0x02 (0000ms, 5340ms total)
T670C 103:858 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 5341ms total)
T670C 103:859 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0000ms, 5341ms total)
T670C 103:859 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: CD CC CC 3D  returns 0x04 (0001ms, 5342ms total)
T670C 103:873 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 00  returns 0x01 (0001ms, 5343ms total)
T670C 103:874 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: 1E 39  returns 0x02 (0001ms, 5344ms total)
T670C 103:888 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0001ms, 5345ms total)
T670C 103:889 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: 2A FB 00 00  returns 0x04 (0000ms, 5345ms total)
T670C 103:903 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0000ms, 5345ms total)
T670C 103:903 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0001ms, 5346ms total)
T670C 103:904 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 20 00  returns 0x02 (0001ms, 5347ms total)
T670C 103:911 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 20 00  returns 0x02 (0001ms, 5348ms total)
T670C 103:919 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 08 6C 01 00  returns 0x04 (0000ms, 5348ms total)
T670C 103:926 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 5349ms total)
T670C 103:927 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: CD CC CC 3D  returns 0x04 (0000ms, 5349ms total)
T6ACC 103:941 JLINK_IsHalted()  returns FALSE (0001ms, 5350ms total)
T6ACC 104:043 JLINK_IsHalted()  returns FALSE (0000ms, 5349ms total)
T6ACC 104:144 JLINK_IsHalted()  returns FALSE (0000ms, 5349ms total)
T6ACC 104:246 JLINK_IsHalted()  returns FALSE (0000ms, 5349ms total)
T670C 104:356 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 5350ms total)
T670C 104:357 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0000ms, 5350ms total)
T670C 104:357 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 0D 00  returns 0x02 (0001ms, 5351ms total)
T670C 104:365 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 5352ms total)
T670C 104:366 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 57 00  returns 0x02 (0001ms, 5353ms total)
T670C 104:380 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 5353ms total)
T670C 104:381 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 5354ms total)
T670C 104:381 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 45 00  returns 0x02 (0001ms, 5355ms total)
T670C 104:395 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0001ms, 5356ms total)
T670C 104:396 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 5356ms total)
T670C 104:396 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 28 00 00 00  returns 0x04 (0001ms, 5357ms total)
T670C 104:404 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0000ms, 5357ms total)
T670C 104:404 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 0D 00  returns 0x02 (0001ms, 5358ms total)
T670C 104:412 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 5359ms total)
T670C 104:413 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0000ms, 5359ms total)
T670C 104:413 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 34 33 33 3F  returns 0x04 (0001ms, 5360ms total)
T670C 104:428 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 00  returns 0x01 (0001ms, 5361ms total)
T670C 104:429 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: AF 46  returns 0x02 (0000ms, 5361ms total)
T670C 104:443 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0001ms, 5362ms total)
T670C 104:444 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: E2 0D 01 00  returns 0x04 (0000ms, 5362ms total)
T670C 104:458 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 5363ms total)
T670C 104:459 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0000ms, 5363ms total)
T670C 104:459 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 21 00  returns 0x02 (0001ms, 5364ms total)
T670C 104:467 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 21 00  returns 0x02 (0000ms, 5364ms total)
T670C 104:474 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 25 6C 01 00  returns 0x04 (0001ms, 5365ms total)
T670C 104:481 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 5366ms total)
T670C 104:482 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 34 33 33 3F  returns 0x04 (0000ms, 5366ms total)
T6ACC 104:496 JLINK_IsHalted()  returns FALSE (0000ms, 5367ms total)
T6ACC 104:597 JLINK_IsHalted()  returns FALSE (0000ms, 5367ms total)
T6ACC 104:698 JLINK_IsHalted()  returns FALSE (0000ms, 5367ms total)
T6ACC 104:800 JLINK_IsHalted()  returns FALSE (0000ms, 5367ms total)
T670C 104:910 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 5368ms total)
T670C 104:911 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0000ms, 5368ms total)
T670C 104:911 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 10 00  returns 0x02 (0001ms, 5369ms total)
T670C 104:925 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 5370ms total)
T670C 104:926 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 7A 03  returns 0x02 (0001ms, 5371ms total)
T670C 104:940 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 5372ms total)
T670C 104:941 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 5372ms total)
T670C 104:941 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 01 00  returns 0x02 (0001ms, 5373ms total)
T670C 104:955 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0001ms, 5374ms total)
T670C 104:956 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 5375ms total)
T670C 104:957 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 2C 00 00 00  returns 0x04 (0000ms, 5375ms total)
T670C 104:970 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0001ms, 5376ms total)
T670C 104:971 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 04 00  returns 0x02 (0001ms, 5377ms total)
T670C 104:985 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 5378ms total)
T670C 104:986 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0000ms, 5378ms total)
T670C 104:986 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 35 33 B3 3F  returns 0x04 (0001ms, 5379ms total)
T670C 105:000 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 00  returns 0x01 (0000ms, 5379ms total)
T670C 105:001 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: 09 0E  returns 0x02 (0000ms, 5380ms total)
T670C 105:015 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0000ms, 5380ms total)
T670C 105:015 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: 03 75 00 00  returns 0x04 (0001ms, 5381ms total)
T670C 105:029 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 5382ms total)
T670C 105:030 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0001ms, 5383ms total)
T670C 105:031 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 18 00  returns 0x02 (0000ms, 5383ms total)
T670C 105:044 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 18 00  returns 0x02 (0001ms, 5384ms total)
T670C 105:059 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 4D 5C 01 00  returns 0x04 (0000ms, 5384ms total)
T670C 105:073 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 01  returns 0x01 (0000ms, 5384ms total)
T670C 105:080 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 02 00 C0 3F  returns 0x04 (0001ms, 5385ms total)
T6ACC 105:094 JLINK_IsHalted()  returns FALSE (0000ms, 5385ms total)
T6ACC 105:195 JLINK_IsHalted()  returns FALSE (0000ms, 5385ms total)
T6ACC 105:297 JLINK_IsHalted()  returns FALSE (0000ms, 5385ms total)
T6ACC 105:398 JLINK_IsHalted()  returns FALSE (0000ms, 5385ms total)
T670C 105:509 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 5386ms total)
T670C 105:510 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0000ms, 5386ms total)
T670C 105:510 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 01 00  returns 0x02 (0001ms, 5387ms total)
T670C 105:526 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 5387ms total)
T670C 105:526 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 58 02  returns 0x02 (0001ms, 5388ms total)
T670C 105:540 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 5389ms total)
T670C 105:541 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 5389ms total)
T670C 105:541 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 0B 00  returns 0x02 (0001ms, 5390ms total)
T670C 105:556 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0000ms, 5390ms total)
T670C 105:556 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 5391ms total)
T670C 105:557 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 28 00 00 00  returns 0x04 (0000ms, 5391ms total)
T670C 105:571 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0000ms, 5391ms total)
T670C 105:571 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 01 00  returns 0x02 (0001ms, 5392ms total)
T670C 105:585 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 5393ms total)
T670C 105:586 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0000ms, 5393ms total)
T670C 105:586 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 67 66 06 40  returns 0x04 (0001ms, 5394ms total)
T670C 105:601 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 00  returns 0x01 (0000ms, 5394ms total)
T670C 105:601 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: 89 58  returns 0x02 (0001ms, 5395ms total)
T670C 105:615 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0001ms, 5396ms total)
T670C 105:616 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: 50 2D 00 00  returns 0x04 (0001ms, 5397ms total)
T670C 105:630 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 5398ms total)
T670C 105:631 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0001ms, 5399ms total)
T670C 105:632 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 15 00  returns 0x02 (0000ms, 5399ms total)
T670C 105:646 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 15 00  returns 0x02 (0001ms, 5400ms total)
T670C 105:660 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 67 05 00 00  returns 0x04 (0001ms, 5401ms total)
T670C 105:674 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 5402ms total)
T670C 105:689 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 33 33 13 40  returns 0x04 (0001ms, 5403ms total)
T6ACC 105:703 JLINK_IsHalted()  returns FALSE (0001ms, 5404ms total)
T6ACC 105:805 JLINK_IsHalted()  returns FALSE (0000ms, 5403ms total)
T6ACC 105:906 JLINK_IsHalted()  returns FALSE (0000ms, 5403ms total)
T6ACC 106:007 JLINK_IsHalted()  returns FALSE (0000ms, 5403ms total)
T670C 106:115 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 5404ms total)
T670C 106:116 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0001ms, 5405ms total)
T670C 106:117 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 12 00  returns 0x02 (0000ms, 5405ms total)
T670C 106:131 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 5405ms total)
T670C 106:131 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 7B 03  returns 0x02 (0001ms, 5406ms total)
T670C 106:146 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 5406ms total)
T670C 106:146 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 5407ms total)
T670C 106:147 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 61 00  returns 0x02 (0000ms, 5407ms total)
T670C 106:162 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0000ms, 5407ms total)
T670C 106:162 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 5408ms total)
T670C 106:163 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 2F 00 00 00  returns 0x04 (0001ms, 5409ms total)
T670C 106:177 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0049ms, 5458ms total)
T670C 106:226 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 12 00  returns 0x02 (0001ms, 5459ms total)
T670C 106:243 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0000ms, 5459ms total)
T670C 106:244 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 00  returns 0x01 (0000ms, 5460ms total)
T670C 106:251 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: FD FF 3F 40  returns 0x04 (0000ms, 5460ms total)
T670C 106:265 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 00  returns 0x01 (0000ms, 5460ms total)
T670C 106:265 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: E2 2F  returns 0x02 (0001ms, 5461ms total)
T670C 106:279 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0001ms, 5462ms total)
T670C 106:280 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: 7D 7B 01 00  returns 0x04 (0000ms, 5462ms total)
T670C 106:293 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 5463ms total)
T670C 106:294 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0001ms, 5464ms total)
T670C 106:295 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 26 00  returns 0x02 (0000ms, 5464ms total)
T670C 106:310 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 26 00  returns 0x02 (0001ms, 5465ms total)
T670C 106:326 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 6A 5C 01 00  returns 0x04 (0001ms, 5466ms total)
T670C 106:342 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 02  returns 0x01 (0001ms, 5467ms total)
T670C 106:358 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 63 66 46 40  returns 0x04 (0000ms, 5467ms total)
T6ACC 106:374 JLINK_IsHalted()  returns FALSE (0000ms, 5467ms total)
T6ACC 106:475 JLINK_IsHalted()  returns FALSE (0000ms, 5467ms total)
T6ACC 106:576 JLINK_IsHalted()  returns FALSE (0000ms, 5467ms total)
T670C 106:686 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 5468ms total)
T670C 106:687 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0000ms, 5468ms total)
T670C 106:687 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 07 00  returns 0x02 (0001ms, 5469ms total)
T670C 106:702 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 05  returns 0x01 (0001ms, 5470ms total)
T670C 106:710 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 95 00  returns 0x02 (0000ms, 5470ms total)
T670C 106:723 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 5471ms total)
T670C 106:724 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 5472ms total)
T670C 106:725 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 61 00  returns 0x02 (0000ms, 5472ms total)
T670C 106:732 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0001ms, 5473ms total)
T670C 106:733 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 01  returns 0x01 (0000ms, 5473ms total)
T670C 106:740 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: A0 86 01 00  returns 0x04 (0000ms, 5473ms total)
T670C 106:754 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0000ms, 5473ms total)
T670C 106:754 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 02 00  returns 0x02 (0001ms, 5474ms total)
T670C 106:768 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 5475ms total)
T670C 106:769 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0001ms, 5476ms total)
T670C 106:783 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: FB FF 5F 40  returns 0x04 (0000ms, 5476ms total)
T670C 106:797 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 00  returns 0x01 (0000ms, 5476ms total)
T670C 106:797 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: 4F 6D  returns 0x02 (0001ms, 5477ms total)
T670C 106:811 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0001ms, 5478ms total)
T670C 106:812 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: 7D 7B 01 00  returns 0x04 (0001ms, 5479ms total)
T670C 106:820 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0000ms, 5479ms total)
T670C 106:820 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0001ms, 5480ms total)
T670C 106:821 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 26 00  returns 0x02 (0000ms, 5480ms total)
T670C 106:828 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 26 00  returns 0x02 (0001ms, 5481ms total)
T670C 106:838 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 6A 5C 01 00  returns 0x04 (0000ms, 5481ms total)
T670C 106:845 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 5482ms total)
T670C 106:861 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: C7 CC 6C 40  returns 0x04 (0000ms, 5482ms total)
T6ACC 106:875 JLINK_IsHalted()  returns FALSE (0000ms, 5482ms total)
T6ACC 106:977 JLINK_IsHalted()  returns FALSE (0000ms, 5482ms total)
T6ACC 107:078 JLINK_IsHalted()  returns FALSE (0000ms, 5482ms total)
T6ACC 107:179 JLINK_IsHalted()  returns FALSE (0000ms, 5482ms total)
T670C 107:289 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 5482ms total)
T670C 107:289 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0001ms, 5483ms total)
T670C 107:290 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 02 00  returns 0x02 (0001ms, 5484ms total)
T670C 107:305 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 5485ms total)
T670C 107:319 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 2D 01  returns 0x02 (0000ms, 5485ms total)
T670C 107:333 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 5485ms total)
T670C 107:333 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 5486ms total)
T670C 107:334 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 10 00  returns 0x02 (0001ms, 5487ms total)
T670C 107:341 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0001ms, 5488ms total)
T670C 107:342 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 5489ms total)
T670C 107:356 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 28 00 00 00  returns 0x04 (0001ms, 5490ms total)
T670C 107:370 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0001ms, 5491ms total)
T670C 107:371 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 03 00  returns 0x02 (0001ms, 5492ms total)
T670C 107:385 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0000ms, 5492ms total)
T670C 107:385 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0001ms, 5493ms total)
T670C 107:393 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 96 99 89 40  returns 0x04 (0001ms, 5494ms total)
T670C 107:407 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 00  returns 0x01 (0001ms, 5495ms total)
T670C 107:408 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: F3 40  returns 0x02 (0000ms, 5495ms total)
T670C 107:421 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0001ms, 5496ms total)
T670C 107:422 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: 94 62 00 00  returns 0x04 (0001ms, 5497ms total)
T670C 107:429 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 5498ms total)
T670C 107:430 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0001ms, 5499ms total)
T670C 107:431 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 17 00  returns 0x02 (0000ms, 5499ms total)
T670C 107:438 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 17 00  returns 0x02 (0001ms, 5500ms total)
T670C 107:446 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 1A 5C 01 00  returns 0x04 (0001ms, 5501ms total)
T670C 107:453 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 5502ms total)
T670C 107:461 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 96 99 89 40  returns 0x04 (0001ms, 5503ms total)
T6ACC 107:475 JLINK_IsHalted()  returns FALSE (0000ms, 5503ms total)
T6ACC 107:576 JLINK_IsHalted()  returns FALSE (0000ms, 5503ms total)
T6ACC 107:677 JLINK_IsHalted()  returns FALSE (0000ms, 5503ms total)
T6ACC 107:778 JLINK_IsHalted()  returns FALSE (0000ms, 5503ms total)
T670C 107:886 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 5504ms total)
T670C 107:887 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0000ms, 5504ms total)
T670C 107:887 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 07 00  returns 0x02 (0001ms, 5505ms total)
T670C 107:901 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 5506ms total)
T670C 107:908 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 8B 01  returns 0x02 (0001ms, 5507ms total)
T670C 107:922 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 5508ms total)
T670C 107:923 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 5509ms total)
T670C 107:924 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 2C 00  returns 0x02 (0000ms, 5509ms total)
T670C 107:938 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0001ms, 5510ms total)
T670C 107:939 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 5510ms total)
T670C 107:946 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 2A 00 00 00  returns 0x04 (0001ms, 5511ms total)
T670C 107:961 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0001ms, 5512ms total)
T670C 107:962 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 07 00  returns 0x02 (0000ms, 5512ms total)
T670C 107:976 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0000ms, 5512ms total)
T670C 107:976 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0001ms, 5513ms total)
T670C 107:977 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: FB FF 9F 40  returns 0x04 (0000ms, 5513ms total)
T670C 107:991 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 00  returns 0x01 (0000ms, 5513ms total)
T670C 107:991 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: 49 10  returns 0x02 (0001ms, 5514ms total)
T670C 108:005 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0001ms, 5515ms total)
T670C 108:006 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: A6 9D 00 00  returns 0x04 (0000ms, 5515ms total)
T670C 108:020 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0000ms, 5515ms total)
T670C 108:020 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0001ms, 5516ms total)
T670C 108:021 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 1B 00  returns 0x02 (0001ms, 5517ms total)
T670C 108:035 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 1B 00  returns 0x02 (0000ms, 5517ms total)
T670C 108:049 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 0D 6C 01 00  returns 0x04 (0001ms, 5518ms total)
T670C 108:063 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 5519ms total)
T670C 108:064 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 2E 33 A3 40  returns 0x04 (0000ms, 5519ms total)
T6ACC 108:078 JLINK_IsHalted()  returns FALSE (0001ms, 5520ms total)
T6ACC 108:180 JLINK_IsHalted()  returns FALSE (0000ms, 5519ms total)
T6ACC 108:281 JLINK_IsHalted()  returns FALSE (0000ms, 5519ms total)
T6ACC 108:383 JLINK_IsHalted()  returns FALSE (0000ms, 5519ms total)
T670C 108:493 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 5519ms total)
T670C 108:493 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0001ms, 5520ms total)
T670C 108:494 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 0E 00  returns 0x02 (0001ms, 5521ms total)
T670C 108:509 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 04  returns 0x01 (0001ms, 5522ms total)
T670C 108:516 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 41 01  returns 0x02 (0001ms, 5523ms total)
T670C 108:530 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 5524ms total)
T670C 108:531 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 5525ms total)
T670C 108:532 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 28 00  returns 0x02 (0000ms, 5525ms total)
T670C 108:545 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0001ms, 5526ms total)
T670C 108:546 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 5527ms total)
T670C 108:547 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: A0 86 01 00  returns 0x04 (0000ms, 5527ms total)
T670C 108:561 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0000ms, 5527ms total)
T670C 108:561 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 0E 00  returns 0x02 (0001ms, 5528ms total)
T670C 108:575 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 5529ms total)
T670C 108:576 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0000ms, 5529ms total)
T670C 108:576 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 60 66 B6 40  returns 0x04 (0001ms, 5530ms total)
T670C 108:590 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 00  returns 0x01 (0001ms, 5531ms total)
T670C 108:591 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: 87 5A  returns 0x02 (0000ms, 5531ms total)
T670C 108:605 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0000ms, 5531ms total)
T670C 108:605 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: 81 9D 00 00  returns 0x04 (0001ms, 5532ms total)
T670C 108:619 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 5533ms total)
T670C 108:620 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0000ms, 5533ms total)
T670C 108:620 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 1B 00  returns 0x02 (0001ms, 5534ms total)
T670C 108:628 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 1B 00  returns 0x02 (0000ms, 5534ms total)
T670C 108:635 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 32 6C 01 00  returns 0x04 (0001ms, 5535ms total)
T670C 108:649 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 05  returns 0x01 (0000ms, 5535ms total)
T670C 108:656 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 60 66 B6 40  returns 0x04 (0001ms, 5536ms total)
T6ACC 108:670 JLINK_IsHalted()  returns FALSE (0001ms, 5537ms total)
T6ACC 108:772 JLINK_IsHalted()  returns FALSE (0000ms, 5536ms total)
T6ACC 108:873 JLINK_IsHalted()  returns FALSE (0000ms, 5536ms total)
T6ACC 108:974 JLINK_IsHalted()  returns FALSE (0000ms, 5536ms total)
T670C 109:084 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 5536ms total)
T670C 109:084 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0001ms, 5537ms total)
T670C 109:085 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 13 00  returns 0x02 (0001ms, 5538ms total)
T670C 109:101 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 5538ms total)
T670C 109:115 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 41 01  returns 0x02 (0000ms, 5538ms total)
T670C 109:122 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 5539ms total)
T670C 109:123 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 5539ms total)
T670C 109:123 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 28 00  returns 0x02 (0001ms, 5540ms total)
T670C 109:131 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0000ms, 5540ms total)
T670C 109:131 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 5541ms total)
T670C 109:132 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: A0 86 01 00  returns 0x04 (0001ms, 5542ms total)
T670C 109:139 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0001ms, 5543ms total)
T670C 109:140 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 13 00  returns 0x02 (0000ms, 5543ms total)
T670C 109:154 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0000ms, 5543ms total)
T670C 109:154 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0001ms, 5544ms total)
T670C 109:155 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: F9 FF BF 40  returns 0x04 (0001ms, 5545ms total)
T670C 109:170 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 00  returns 0x01 (0000ms, 5545ms total)
T670C 109:170 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: 5D 34  returns 0x02 (0001ms, 5546ms total)
T670C 109:184 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0001ms, 5547ms total)
T670C 109:185 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: 81 9D 00 00  returns 0x04 (0000ms, 5547ms total)
T670C 109:193 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0000ms, 5547ms total)
T670C 109:193 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0001ms, 5548ms total)
T670C 109:194 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 1B 00  returns 0x02 (0001ms, 5549ms total)
T670C 109:195 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 1B 00  returns 0x02 (0000ms, 5549ms total)
T670C 109:195 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 32 6C 01 00  returns 0x04 (0001ms, 5550ms total)
T670C 109:202 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 5551ms total)
T670C 109:216 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: F9 FF BF 40  returns 0x04 (0001ms, 5552ms total)
T6ACC 109:230 JLINK_IsHalted()  returns FALSE (0001ms, 5553ms total)
T6ACC 109:331 JLINK_IsHalted()  returns FALSE (0000ms, 5552ms total)
T6ACC 109:432 JLINK_IsHalted()  returns FALSE (0000ms, 5552ms total)
T6ACC 109:533 JLINK_IsHalted()  returns FALSE (0000ms, 5552ms total)
T670C 109:643 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 5552ms total)
T670C 109:643 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0001ms, 5553ms total)
T670C 109:644 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 13 00  returns 0x02 (0001ms, 5554ms total)
T670C 109:653 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 01  returns 0x01 (0000ms, 5554ms total)
T670C 109:666 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 8C 03  returns 0x02 (0001ms, 5555ms total)
T670C 109:674 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 5555ms total)
T670C 109:674 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 5556ms total)
T670C 109:675 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 01 00  returns 0x02 (0000ms, 5556ms total)
T670C 109:682 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0001ms, 5557ms total)
T670C 109:683 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 5557ms total)
T670C 109:683 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 2D 00 00 00  returns 0x04 (0001ms, 5558ms total)
T670C 109:691 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0000ms, 5558ms total)
T670C 109:691 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 13 00  returns 0x02 (0001ms, 5559ms total)
T670C 109:699 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0000ms, 5559ms total)
T670C 109:699 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0001ms, 5560ms total)
T670C 109:700 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: C5 CC CC 40  returns 0x04 (0001ms, 5561ms total)
T670C 109:714 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 00  returns 0x01 (0000ms, 5561ms total)
T670C 109:714 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: 32 65  returns 0x02 (0001ms, 5562ms total)
T670C 109:728 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0001ms, 5563ms total)
T670C 109:729 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: 74 07 00 00  returns 0x04 (0001ms, 5564ms total)
T670C 109:736 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 5565ms total)
T670C 109:737 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0001ms, 5566ms total)
T670C 109:738 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 13 00  returns 0x02 (0000ms, 5566ms total)
T670C 109:745 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 13 00  returns 0x02 (0000ms, 5566ms total)
T670C 109:752 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 3F 6C 01 00  returns 0x04 (0001ms, 5567ms total)
T670C 109:760 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 01  returns 0x01 (0000ms, 5567ms total)
T670C 109:774 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: F8 FF CF 40  returns 0x04 (0000ms, 5567ms total)
T6ACC 109:788 JLINK_IsHalted()  returns FALSE (0000ms, 5567ms total)
T6ACC 109:889 JLINK_IsHalted()  returns FALSE (0000ms, 5567ms total)
T6ACC 109:991 JLINK_IsHalted()  returns FALSE (0000ms, 5567ms total)
T6ACC 110:092 JLINK_IsHalted()  returns FALSE (0000ms, 5567ms total)
T670C 110:202 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 5567ms total)
T670C 110:202 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0001ms, 5568ms total)
T670C 110:203 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 13 00  returns 0x02 (0001ms, 5569ms total)
T670C 110:204 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 01  returns 0x01 (0000ms, 5569ms total)
T670C 110:212 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: B6 03  returns 0x02 (0001ms, 5570ms total)
T670C 110:226 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 5570ms total)
T670C 110:226 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 5571ms total)
T670C 110:227 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 61 00  returns 0x02 (0001ms, 5572ms total)
T670C 110:241 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0000ms, 5572ms total)
T670C 110:242 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 5573ms total)
T670C 110:242 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: A0 86 01 00  returns 0x04 (0001ms, 5574ms total)
T670C 110:257 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0000ms, 5574ms total)
T670C 110:257 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 13 00  returns 0x02 (0000ms, 5574ms total)
T670C 110:257 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 5575ms total)
T670C 110:258 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0005ms, 5580ms total)
T670C 110:263 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: F7 FF DF 40  returns 0x04 (0000ms, 5580ms total)
T670C 110:277 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 00  returns 0x01 (0000ms, 5580ms total)
T670C 110:277 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: 82 30  returns 0x02 (0001ms, 5581ms total)
T670C 110:291 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0001ms, 5582ms total)
T670C 110:292 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: 9E 7E 01 00  returns 0x04 (0001ms, 5583ms total)
T670C 110:306 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0000ms, 5583ms total)
T670C 110:306 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0001ms, 5584ms total)
T670C 110:307 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 27 00  returns 0x02 (0001ms, 5585ms total)
T670C 110:321 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 27 00  returns 0x02 (0001ms, 5586ms total)
T670C 110:335 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 15 6C 01 00  returns 0x04 (0001ms, 5587ms total)
T670C 110:349 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 03  returns 0x01 (0001ms, 5588ms total)
T670C 110:363 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 2A 33 E3 40  returns 0x04 (0001ms, 5589ms total)
T6ACC 110:377 JLINK_IsHalted()  returns FALSE (0000ms, 5589ms total)
T6ACC 110:478 JLINK_IsHalted()  returns FALSE (0000ms, 5589ms total)
T6ACC 110:579 JLINK_IsHalted()  returns FALSE (0000ms, 5589ms total)
T6ACC 110:680 JLINK_IsHalted()  returns FALSE (0000ms, 5589ms total)
T670C 110:790 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 01  returns 0x01 (0000ms, 5589ms total)
T670C 110:797 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0001ms, 5590ms total)
T670C 110:798 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 11 00  returns 0x02 (0000ms, 5590ms total)
T670C 110:805 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 5591ms total)
T670C 110:812 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: B6 03  returns 0x02 (0001ms, 5592ms total)
T670C 110:820 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 5592ms total)
T670C 110:820 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 5593ms total)
T670C 110:821 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 61 00  returns 0x02 (0001ms, 5594ms total)
T670C 110:828 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: FF FF  returns 0x02 (0001ms, 5595ms total)
T670C 110:835 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 01  returns 0x01 (0001ms, 5596ms total)
T670C 110:843 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: A0 86 01 00  returns 0x04 (0000ms, 5596ms total)
T670C 110:850 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0001ms, 5597ms total)
T670C 110:851 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 11 00  returns 0x02 (0000ms, 5597ms total)
T670C 110:858 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0000ms, 5597ms total)
T670C 110:858 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0001ms, 5598ms total)
T670C 110:859 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 29 33 F3 40  returns 0x04 (0001ms, 5599ms total)
T670C 110:873 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 00  returns 0x01 (0000ms, 5599ms total)
T670C 110:873 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: 45 17  returns 0x02 (0001ms, 5600ms total)
T670C 110:887 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0001ms, 5601ms total)
T670C 110:888 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: 9E 7E 01 00  returns 0x04 (0001ms, 5602ms total)
T670C 110:895 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 5603ms total)
T670C 110:896 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0000ms, 5603ms total)
T670C 110:896 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 27 00  returns 0x02 (0001ms, 5604ms total)
T670C 110:904 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 27 00  returns 0x02 (0000ms, 5604ms total)
T670C 110:911 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 15 6C 01 00  returns 0x04 (0001ms, 5605ms total)
T670C 110:918 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 5606ms total)
T670C 110:932 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 29 33 F3 40  returns 0x04 (0001ms, 5607ms total)
T6ACC 110:947 JLINK_IsHalted()  returns FALSE (0000ms, 5607ms total)
T6ACC 111:048 JLINK_IsHalted()  returns FALSE (0000ms, 5607ms total)
T6ACC 111:149 JLINK_IsHalted()  returns FALSE (0000ms, 5607ms total)
T6ACC 111:250 JLINK_IsHalted()  returns FALSE (0000ms, 5607ms total)
T670C 111:359 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 01  returns 0x01 (0001ms, 5608ms total)
T670C 111:368 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0001ms, 5609ms total)
T670C 111:369 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 11 00  returns 0x02 (0000ms, 5609ms total)
T670C 111:376 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 5609ms total)
T670C 111:383 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: B6 03  returns 0x02 (0001ms, 5610ms total)
T670C 111:384 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 5610ms total)
T670C 111:384 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 5611ms total)
T670C 111:385 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 61 00  returns 0x02 (0001ms, 5612ms total)
T670C 111:386 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: FF FF  returns 0x02 (0000ms, 5612ms total)
T670C 111:393 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 01  returns 0x01 (0001ms, 5613ms total)
T670C 111:400 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: A0 86 01 00  returns 0x04 (0001ms, 5614ms total)
T670C 111:401 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0000ms, 5614ms total)
T670C 111:401 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 11 00  returns 0x02 (0001ms, 5615ms total)
T670C 111:409 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0000ms, 5615ms total)
T670C 111:409 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0001ms, 5616ms total)
T670C 111:410 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 5C 66 F6 40  returns 0x04 (0000ms, 5616ms total)
T670C 111:424 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 00  returns 0x01 (0000ms, 5616ms total)
T670C 111:424 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: 6A 53  returns 0x02 (0001ms, 5617ms total)
T670C 111:439 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0000ms, 5617ms total)
T670C 111:439 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: 9E 7E 01 00  returns 0x04 (0001ms, 5618ms total)
T670C 111:440 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 5619ms total)
T670C 111:441 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0000ms, 5619ms total)
T670C 111:441 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 27 00  returns 0x02 (0001ms, 5620ms total)
T670C 111:442 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 27 00  returns 0x02 (0000ms, 5620ms total)
T670C 111:442 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 15 6C 01 00  returns 0x04 (0001ms, 5621ms total)
T670C 111:443 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 5622ms total)
T670C 111:450 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 5C 66 F6 40  returns 0x04 (0001ms, 5623ms total)
T6ACC 111:464 JLINK_IsHalted()  returns FALSE (0001ms, 5624ms total)
T6ACC 111:566 JLINK_IsHalted()  returns FALSE (0000ms, 5623ms total)
T6ACC 111:667 JLINK_IsHalted()  returns FALSE (0000ms, 5623ms total)
T6ACC 111:768 JLINK_IsHalted()  returns FALSE (0000ms, 5623ms total)
T670C 111:878 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 5623ms total)
T670C 111:886 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0001ms, 5624ms total)
T670C 111:887 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 11 00  returns 0x02 (0001ms, 5625ms total)
T670C 111:888 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 5625ms total)
T670C 111:888 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: B6 03  returns 0x02 (0001ms, 5626ms total)
T670C 111:889 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 5627ms total)
T670C 111:890 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 5627ms total)
T670C 111:890 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 61 00  returns 0x02 (0001ms, 5628ms total)
T670C 111:891 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0000ms, 5628ms total)
T670C 111:898 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 5629ms total)
T670C 111:906 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 2A 00 00 00  returns 0x04 (0000ms, 5629ms total)
T670C 111:913 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0000ms, 5629ms total)
T670C 111:913 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 11 00  returns 0x02 (0001ms, 5630ms total)
T670C 111:914 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 5631ms total)
T670C 111:915 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0000ms, 5631ms total)
T670C 111:915 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: C2 CC FC 40  returns 0x04 (0001ms, 5632ms total)
T670C 111:929 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 00  returns 0x01 (0001ms, 5633ms total)
T670C 111:930 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: DD 7D  returns 0x02 (0000ms, 5633ms total)
T670C 111:944 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0001ms, 5634ms total)
T670C 111:945 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: A5 AA 00 00  returns 0x04 (0001ms, 5635ms total)
T670C 111:953 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0000ms, 5635ms total)
T670C 111:953 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0001ms, 5636ms total)
T670C 111:954 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 25 00  returns 0x02 (0001ms, 5637ms total)
T670C 111:962 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 25 00  returns 0x02 (0000ms, 5637ms total)
T670C 111:969 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 84 5C 01 00  returns 0x04 (0001ms, 5638ms total)
T670C 111:977 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 5638ms total)
T670C 111:977 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: F5 FF FF 40  returns 0x04 (0001ms, 5639ms total)
T6ACC 111:991 JLINK_IsHalted()  returns FALSE (0001ms, 5640ms total)
T6ACC 112:093 JLINK_IsHalted()  returns FALSE (0000ms, 5639ms total)
T6ACC 112:195 JLINK_IsHalted()  returns FALSE (0000ms, 5639ms total)
T6ACC 112:296 JLINK_IsHalted()  returns FALSE (0000ms, 5639ms total)
T670C 112:406 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 5639ms total)
T670C 112:414 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0001ms, 5640ms total)
T670C 112:415 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 11 00  returns 0x02 (0000ms, 5640ms total)
T670C 112:415 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 5641ms total)
T670C 112:416 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 4C 01  returns 0x02 (0001ms, 5642ms total)
T670C 112:423 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 5643ms total)
T670C 112:424 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 5643ms total)
T670C 112:424 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 58 00  returns 0x02 (0001ms, 5644ms total)
T670C 112:431 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0001ms, 5645ms total)
T670C 112:439 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 5645ms total)
T670C 112:446 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 2F 00 00 00  returns 0x04 (0001ms, 5646ms total)
T670C 112:460 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0001ms, 5647ms total)
T670C 112:461 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 07 00  returns 0x02 (0000ms, 5647ms total)
T670C 112:468 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0000ms, 5647ms total)
T670C 112:468 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0001ms, 5648ms total)
T670C 112:469 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: FC FF 07 41  returns 0x04 (0001ms, 5649ms total)
T670C 112:483 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 00  returns 0x01 (0001ms, 5650ms total)
T670C 112:484 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: 3A 4A  returns 0x02 (0000ms, 5650ms total)
T670C 112:498 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0001ms, 5651ms total)
T670C 112:499 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: 1F 59 01 00  returns 0x04 (0001ms, 5652ms total)
T670C 112:513 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 5653ms total)
T670C 112:514 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0000ms, 5653ms total)
T670C 112:514 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 25 00  returns 0x02 (0001ms, 5654ms total)
T670C 112:521 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 25 00  returns 0x02 (0001ms, 5655ms total)
T670C 112:529 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 1E 6C 01 00  returns 0x04 (0000ms, 5655ms total)
T670C 112:542 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 01  returns 0x01 (0001ms, 5656ms total)
T670C 112:550 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 96 99 09 41  returns 0x04 (0000ms, 5656ms total)
T6ACC 112:564 JLINK_IsHalted()  returns FALSE (0000ms, 5656ms total)
T6ACC 112:665 JLINK_IsHalted()  returns FALSE (0000ms, 5656ms total)
T6ACC 112:766 JLINK_IsHalted()  returns FALSE (0000ms, 5656ms total)
T6ACC 112:867 JLINK_IsHalted()  returns FALSE (0000ms, 5656ms total)
T670C 112:977 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 5657ms total)
T670C 112:978 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0000ms, 5657ms total)
T670C 112:979 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 09 00  returns 0x02 (0000ms, 5658ms total)
T670C 112:987 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 05  returns 0x01 (0003ms, 5661ms total)
T670C 112:996 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 3A 01  returns 0x02 (0001ms, 5662ms total)
T670C 113:010 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 5663ms total)
T670C 113:011 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 5664ms total)
T670C 113:012 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 58 00  returns 0x02 (0000ms, 5664ms total)
T670C 113:019 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0000ms, 5664ms total)
T670C 113:020 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 5664ms total)
T670C 113:020 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: A0 86 01 00  returns 0x04 (0001ms, 5665ms total)
T670C 113:034 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0001ms, 5666ms total)
T670C 113:035 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 09 00  returns 0x02 (0000ms, 5666ms total)
T670C 113:049 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0000ms, 5666ms total)
T670C 113:049 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0001ms, 5667ms total)
T670C 113:050 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 98 99 11 41  returns 0x04 (0000ms, 5667ms total)
T670C 113:064 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 00  returns 0x01 (0000ms, 5667ms total)
T670C 113:064 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: 53 0E  returns 0x02 (0001ms, 5668ms total)
T670C 113:078 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0001ms, 5669ms total)
T670C 113:079 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: 2F 4D 00 00  returns 0x04 (0001ms, 5670ms total)
T670C 113:093 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 5671ms total)
T670C 113:094 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0000ms, 5671ms total)
T670C 113:094 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 09 00  returns 0x02 (0001ms, 5672ms total)
T670C 113:102 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 09 00  returns 0x02 (0000ms, 5672ms total)
T670C 113:109 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 0E 6B 00 00  returns 0x04 (0001ms, 5673ms total)
T670C 113:123 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 5673ms total)
T670C 113:137 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: CC CC 14 41  returns 0x04 (0000ms, 5673ms total)
T6ACC 113:150 JLINK_IsHalted()  returns FALSE (0001ms, 5674ms total)
T6ACC 113:253 JLINK_IsHalted()  returns FALSE (0000ms, 5673ms total)
T6ACC 113:354 JLINK_IsHalted()  returns FALSE (0000ms, 5673ms total)
T6ACC 113:455 JLINK_IsHalted()  returns FALSE (0000ms, 5673ms total)
T670C 113:565 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 5673ms total)
T670C 113:565 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0001ms, 5674ms total)
T670C 113:566 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 01 00  returns 0x02 (0001ms, 5675ms total)
T670C 113:581 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 5676ms total)
T670C 113:595 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 34 02  returns 0x02 (0001ms, 5677ms total)
T670C 113:609 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 5678ms total)
T670C 113:610 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 5679ms total)
T670C 113:611 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 0B 00  returns 0x02 (0000ms, 5679ms total)
T670C 113:618 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0001ms, 5680ms total)
T670C 113:619 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 5680ms total)
T670C 113:619 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 2C 00 00 00  returns 0x04 (0001ms, 5681ms total)
T670C 113:633 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0001ms, 5682ms total)
T670C 113:634 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 01 00  returns 0x02 (0000ms, 5682ms total)
T670C 113:648 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 5683ms total)
T670C 113:649 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0000ms, 5683ms total)
T670C 113:649 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: CE CC 1C 41  returns 0x04 (0001ms, 5684ms total)
T670C 113:663 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 00  returns 0x01 (0001ms, 5685ms total)
T670C 113:664 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: 27 5A  returns 0x02 (0001ms, 5686ms total)
T670C 113:678 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0001ms, 5687ms total)
T670C 113:679 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: 1C 2D 00 00  returns 0x04 (0000ms, 5687ms total)
T670C 113:693 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 5688ms total)
T670C 113:694 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0000ms, 5688ms total)
T670C 113:694 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 15 00  returns 0x02 (0001ms, 5689ms total)
T670C 113:708 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 15 00  returns 0x02 (0001ms, 5690ms total)
T670C 113:722 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 25 6C 01 00  returns 0x04 (0001ms, 5691ms total)
T670C 113:736 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 5692ms total)
T670C 113:743 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 68 66 1E 41  returns 0x04 (0001ms, 5693ms total)
T6ACC 113:757 JLINK_IsHalted()  returns FALSE (0001ms, 5694ms total)
T6ACC 113:859 JLINK_IsHalted()  returns FALSE (0000ms, 5693ms total)
T6ACC 113:960 JLINK_IsHalted()  returns FALSE (0000ms, 5693ms total)
T670C 114:070 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 5694ms total)
T670C 114:071 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: 14 00  returns 0x02 (0000ms, 5694ms total)
T670C 114:071 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 03 00  returns 0x02 (0001ms, 5695ms total)
T670C 114:086 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 5696ms total)
T670C 114:093 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 9D 00  returns 0x02 (0001ms, 5697ms total)
T670C 114:107 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 5698ms total)
T670C 114:108 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 5699ms total)
T670C 114:109 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: 15 00  returns 0x02 (0000ms, 5699ms total)
T670C 114:123 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 18 98  returns 0x02 (0000ms, 5699ms total)
T670C 114:123 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 5700ms total)
T670C 114:124 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: 28 00 00 00  returns 0x04 (0000ms, 5700ms total)
T670C 114:138 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 40  returns 0x01 (0001ms, 5701ms total)
T670C 114:139 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 03 00  returns 0x02 (0001ms, 5702ms total)
T670C 114:153 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 5703ms total)
T670C 114:154 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: 01  returns 0x01 (0001ms, 5704ms total)
T670C 114:155 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 6A 66 26 41  returns 0x04 (0000ms, 5704ms total)
T670C 114:169 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: 00  returns 0x01 (0000ms, 5704ms total)
T670C 114:169 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: 73 1B  returns 0x02 (0001ms, 5705ms total)
T670C 114:183 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: 80 0C  returns 0x02 (0001ms, 5706ms total)
T670C 114:184 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: 8F 52 00 00  returns 0x04 (0001ms, 5707ms total)
T670C 114:198 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: 0A 00  returns 0x02 (0001ms, 5708ms total)
T670C 114:199 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: 14 00  returns 0x02 (0000ms, 5708ms total)
T670C 114:199 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 17 00  returns 0x02 (0001ms, 5709ms total)
T670C 114:213 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: 17 00  returns 0x02 (0001ms, 5710ms total)
T670C 114:227 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: 35 6C 01 00  returns 0x04 (0001ms, 5711ms total)
T670C 114:241 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 5712ms total)
T670C 114:242 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: 04 00 28 41  returns 0x04 (0001ms, 5713ms total)
T6ACC 114:256 JLINK_IsHalted()  returns FALSE (0000ms, 5713ms total)
T6ACC 114:357 JLINK_IsHalted()  returns FALSE (0000ms, 5713ms total)
T6ACC 114:458 JLINK_IsHalted()  returns FALSE (0000ms, 5713ms total)
T6ACC 114:559 JLINK_IsHalted()  returns FALSE (0000ms, 5713ms total)
T670C 114:669 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: AA  returns 0xFFFFFFFF (0002ms, 5715ms total)
T670C 114:671 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: AA  returns 0xFFFFFFFF (0001ms, 5716ms total)
T670C 114:672 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: AA  returns 0xFFFFFFFF (0002ms, 5718ms total)
T670C 114:674 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: AA  returns 0xFFFFFFFF (0002ms, 5720ms total)
T670C 114:676 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: AA  returns 0xFFFFFFFF (0002ms, 5722ms total)
T670C 114:678 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: AA  returns 0xFFFFFFFF (0001ms, 5723ms total)
T670C 114:688 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5725ms total)
T670C 114:690 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: AA AA  returns 0xFFFFFFFF (0001ms, 5726ms total)
T670C 114:691 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5728ms total)
T670C 114:693 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5730ms total)
T670C 114:695 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5732ms total)
T670C 114:697 JLINK_ReadMemEx(0x2000018E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000018E) - Data: AA  returns 0xFFFFFFFF (0001ms, 5733ms total)
T670C 114:707 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5735ms total)
T670C 114:709 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: AA AA  returns 0xFFFFFFFF (0001ms, 5736ms total)
T670C 114:710 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5738ms total)
T670C 114:712 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5740ms total)
T670C 114:714 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5742ms total)
T670C 114:716 JLINK_ReadMemEx(0x200000A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000A8) - Data: AA  returns 0xFFFFFFFF (0002ms, 5744ms total)
T670C 114:733 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: AA  returns 0xFFFFFFFF (0002ms, 5746ms total)
T670C 114:735 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: AA  returns 0xFFFFFFFF (0001ms, 5747ms total)
T670C 114:736 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: AA  returns 0xFFFFFFFF (0002ms, 5749ms total)
T670C 114:738 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: AA  returns 0xFFFFFFFF (0002ms, 5751ms total)
T670C 114:740 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: AA  returns 0xFFFFFFFF (0002ms, 5753ms total)
T670C 114:742 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: AA  returns 0xFFFFFFFF (0002ms, 5755ms total)
T670C 114:751 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5757ms total)
T670C 114:753 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5759ms total)
T670C 114:755 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5761ms total)
T670C 114:757 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: AA AA  returns 0xFFFFFFFF (0001ms, 5762ms total)
T670C 114:758 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5764ms total)
T670C 114:760 JLINK_ReadMemEx(0x200000B2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B2) - Data: AA  returns 0xFFFFFFFF (0002ms, 5766ms total)
T670C 114:777 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: AA  returns 0xFFFFFFFF (0002ms, 5768ms total)
T670C 114:779 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: AA  returns 0xFFFFFFFF (0002ms, 5770ms total)
T670C 114:781 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: AA  returns 0xFFFFFFFF (0001ms, 5771ms total)
T670C 114:782 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: AA  returns 0xFFFFFFFF (0002ms, 5773ms total)
T670C 114:784 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: AA  returns 0xFFFFFFFF (0002ms, 5775ms total)
T670C 114:786 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: AA  returns 0xFFFFFFFF (0002ms, 5777ms total)
T670C 114:795 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: AA  returns 0xFFFFFFFF (0002ms, 5779ms total)
T670C 114:797 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: AA  returns 0xFFFFFFFF (0002ms, 5781ms total)
T670C 114:799 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: AA  returns 0xFFFFFFFF (0002ms, 5783ms total)
T670C 114:801 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: AA  returns 0xFFFFFFFF (0001ms, 5784ms total)
T670C 114:802 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: AA  returns 0xFFFFFFFF (0002ms, 5786ms total)
T670C 114:804 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: AA  returns 0xFFFFFFFF (0002ms, 5788ms total)
T670C 114:813 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5790ms total)
T670C 114:815 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5792ms total)
T670C 114:817 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5794ms total)
T670C 114:819 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: AA AA  returns 0xFFFFFFFF (0001ms, 5795ms total)
T670C 114:820 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5797ms total)
T670C 114:822 JLINK_ReadMemEx(0x200001B8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001B8) - Data: AA  returns 0xFFFFFFFF (0002ms, 5799ms total)
T670C 114:838 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5801ms total)
T670C 114:840 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5803ms total)
T670C 114:842 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5805ms total)
T670C 114:844 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5807ms total)
T670C 114:846 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: AA AA  returns 0xFFFFFFFF (0001ms, 5808ms total)
T670C 114:847 JLINK_ReadMemEx(0x200000B6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B6) - Data: AA  returns 0xFFFFFFFF (0002ms, 5810ms total)
T670C 114:856 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: AA  returns 0xFFFFFFFF (0002ms, 5812ms total)
T670C 114:858 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: AA  returns 0xFFFFFFFF (0002ms, 5814ms total)
T670C 114:860 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: AA  returns 0xFFFFFFFF (0001ms, 5815ms total)
T670C 114:861 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: AA  returns 0xFFFFFFFF (0002ms, 5817ms total)
T670C 114:863 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: AA  returns 0xFFFFFFFF (0002ms, 5819ms total)
T670C 114:865 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: AA  returns 0xFFFFFFFF (0002ms, 5821ms total)
T670C 114:875 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 5823ms total)
T670C 114:877 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: AA AA AA AA  returns 0xFFFFFFFF (0001ms, 5824ms total)
T670C 114:878 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 5826ms total)
T670C 114:880 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 5828ms total)
T670C 114:882 JLINK_ReadMemEx(0x200000E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E0) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5830ms total)
T670C 114:884 JLINK_ReadMemEx(0x200000E0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000E0) - Data: AA  returns 0xFFFFFFFF (0001ms, 5831ms total)
T670C 114:899 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: AA  returns 0xFFFFFFFF (0002ms, 5833ms total)
T670C 114:901 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: AA  returns 0xFFFFFFFF (0002ms, 5835ms total)
T670C 114:903 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: AA  returns 0xFFFFFFFF (0001ms, 5836ms total)
T670C 114:904 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: AA  returns 0xFFFFFFFF (0002ms, 5838ms total)
T670C 114:906 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: AA  returns 0xFFFFFFFF (0002ms, 5840ms total)
T670C 114:908 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: AA  returns 0xFFFFFFFF (0002ms, 5842ms total)
T670C 114:917 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: AA AA  returns 0xFFFFFFFF (0001ms, 5843ms total)
T670C 114:918 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5845ms total)
T670C 114:920 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5847ms total)
T670C 114:922 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5849ms total)
T670C 114:924 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5851ms total)
T670C 114:926 JLINK_ReadMemEx(0x200000A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000A8) - Data: AA  returns 0xFFFFFFFF (0001ms, 5852ms total)
T670C 114:942 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5854ms total)
T670C 114:944 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5856ms total)
T670C 114:946 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5858ms total)
T670C 114:948 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: AA AA  returns 0xFFFFFFFF (0001ms, 5859ms total)
T670C 114:949 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5861ms total)
T670C 114:952 JLINK_ReadMemEx(0x20000192, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000192) - Data: AA  returns 0xFFFFFFFF (0001ms, 5862ms total)
T670C 114:960 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: AA  returns 0xFFFFFFFF (0002ms, 5864ms total)
T670C 114:962 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: AA  returns 0xFFFFFFFF (0002ms, 5866ms total)
T670C 114:964 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: AA  returns 0xFFFFFFFF (0002ms, 5868ms total)
T670C 114:966 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: AA  returns 0xFFFFFFFF (0001ms, 5869ms total)
T670C 114:967 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: AA  returns 0xFFFFFFFF (0002ms, 5871ms total)
T670C 114:969 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: AA  returns 0xFFFFFFFF (0002ms, 5873ms total)
T670C 114:979 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 5875ms total)
T670C 114:981 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: AA AA AA AA  returns 0xFFFFFFFF (0001ms, 5876ms total)
T670C 114:982 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 5878ms total)
T670C 114:984 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 5880ms total)
T670C 114:986 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5882ms total)
T670C 114:988 JLINK_ReadMemEx(0x200001A4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001A4) - Data: AA  returns 0xFFFFFFFF (0002ms, 5884ms total)
T670C 115:005 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: AA  returns 0xFFFFFFFF (0002ms, 5886ms total)
T670C 115:007 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: AA  returns 0xFFFFFFFF (0001ms, 5887ms total)
T670C 115:008 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: AA  returns 0xFFFFFFFF (0002ms, 5889ms total)
T670C 115:010 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: AA  returns 0xFFFFFFFF (0002ms, 5891ms total)
T670C 115:012 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: AA  returns 0xFFFFFFFF (0002ms, 5893ms total)
T670C 115:014 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: AA  returns 0xFFFFFFFF (0002ms, 5895ms total)
T670C 115:023 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: AA AA  returns 0xFFFFFFFF (0001ms, 5896ms total)
T670C 115:024 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5898ms total)
T670C 115:026 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5900ms total)
T670C 115:028 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5902ms total)
T670C 115:030 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5904ms total)
T670C 115:032 JLINK_ReadMemEx(0x200000C4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000C4) - Data: AA  returns 0xFFFFFFFF (0001ms, 5905ms total)
T670C 115:047 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5907ms total)
T670C 115:049 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5909ms total)
T670C 115:051 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: AA AA  returns 0xFFFFFFFF (0001ms, 5910ms total)
T670C 115:052 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5912ms total)
T670C 115:054 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5914ms total)
T670C 115:056 JLINK_ReadMemEx(0x200000AE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000AE) - Data: AA  returns 0xFFFFFFFF (0002ms, 5916ms total)
T670C 115:065 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 5918ms total)
T670C 115:067 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 5920ms total)
T670C 115:069 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 5922ms total)
T670C 115:071 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: AA AA AA AA  returns 0xFFFFFFFF (0001ms, 5923ms total)
T670C 115:072 JLINK_ReadMemEx(0x200000E8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E8) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5925ms total)
T670C 115:074 JLINK_ReadMemEx(0x200000E8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000E8) - Data: AA  returns 0xFFFFFFFF (0002ms, 5927ms total)
T670C 115:091 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: AA AA  returns 0xFFFFFFFF (0001ms, 5928ms total)
T670C 115:092 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5930ms total)
T670C 115:094 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5932ms total)
T670C 115:096 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5934ms total)
T670C 115:098 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5936ms total)
T670C 115:100 JLINK_ReadMemEx(0x20000192, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000192) - Data: AA  returns 0xFFFFFFFF (0001ms, 5937ms total)
T670C 115:109 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5939ms total)
T670C 115:111 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5941ms total)
T670C 115:113 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: AA AA  returns 0xFFFFFFFF (0001ms, 5942ms total)
T670C 115:114 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5944ms total)
T670C 115:116 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5946ms total)
T670C 115:118 JLINK_ReadMemEx(0x200001A0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001A0) - Data: AA  returns 0xFFFFFFFF (0002ms, 5948ms total)
T670C 115:128 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: AA AA  returns 0xFFFFFFFF (0001ms, 5949ms total)
T670C 115:129 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5951ms total)
T670C 115:131 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5953ms total)
T670C 115:133 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5955ms total)
T670C 115:135 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5957ms total)
T670C 115:137 JLINK_ReadMemEx(0x200001BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001BA) - Data: AA  returns 0xFFFFFFFF (0001ms, 5958ms total)
T670C 115:153 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5960ms total)
T670C 115:155 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5962ms total)
T670C 115:157 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: AA AA  returns 0xFFFFFFFF (0001ms, 5963ms total)
T670C 115:158 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5965ms total)
T670C 115:160 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5967ms total)
T670C 115:162 JLINK_ReadMemEx(0x200001BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001BA) - Data: AA  returns 0xFFFFFFFF (0002ms, 5969ms total)
T670C 115:177 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 5971ms total)
T670C 115:179 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 5973ms total)
T670C 115:181 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 5975ms total)
T670C 115:183 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 5977ms total)
T670C 115:185 JLINK_ReadMemEx(0x200000F8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F8) - Data: AA AA  returns 0xFFFFFFFF (0001ms, 5978ms total)
T670C 115:186 JLINK_ReadMemEx(0x200000F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000F8) - Data: AA  returns 0xFFFFFFFF (0002ms, 5980ms total)
T670C 115:202 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: AA  returns 0xFFFFFFFF (0001ms, 5981ms total)
T670C 115:203 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: AA  returns 0xFFFFFFFF (0002ms, 5983ms total)
T670C 115:205 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: AA  returns 0xFFFFFFFF (0002ms, 5985ms total)
T670C 115:207 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: AA  returns 0xFFFFFFFF (0002ms, 5987ms total)
T670C 115:209 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: AA  returns 0xFFFFFFFF (0002ms, 5989ms total)
T670C 115:211 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: AA  returns 0xFFFFFFFF (0001ms, 5990ms total)
T670C 115:220 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: AA AA AA AA  returns 0xFFFFFFFF (0001ms, 5991ms total)
T670C 115:221 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 5993ms total)
T670C 115:223 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 5995ms total)
T670C 115:225 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 5997ms total)
T670C 115:227 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5999ms total)
T670C 115:229 JLINK_ReadMemEx(0x200001A4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001A4) - Data: AA  returns 0xFFFFFFFF (0001ms, 6000ms total)
T6ACC 115:245 JLINK_IsHalted()  returns ERROR (0002ms, 6002ms total)
T6ACC 115:247 JLINK_Halt()CPU could not be halted  returns 0x01 (0003ms, 6003ms total)
T6ACC 115:250 JLINK_IsHalted()  returns ERROR (0003ms, 6006ms total)
T6ACC 115:253 JLINK_IsHalted()  returns ERROR (0003ms, 6006ms total)
T6ACC 115:256 JLINK_IsHalted()  returns ERROR (0002ms, 6005ms total)
T6ACC 115:258 JLINK_ReadReg(R15 (PC)) -- CPU is running
  ***** Error: Can not read register 15 (R15) while CPU is running  returns 0x00000000 (0003ms, 6006ms total)
T6ACC 115:261 JLINK_ReadReg(XPSR) -- CPU is running
  ***** Error: Can not read register 16 (XPSR) while CPU is running  returns 0x00000000 (0003ms, 6009ms total)
T6ACC 115:264 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30)  returns -1 (0002ms, 6011ms total)
T6ACC 115:266 JLINK_ReadReg(R0) -- CPU is running
  ***** Error: Can not read register 0 (R0) while CPU is running  returns 0x00000000 (0002ms, 6013ms total)
T6ACC 115:268 JLINK_ReadReg(R1) -- CPU is running
  ***** Error: Can not read register 1 (R1) while CPU is running  returns 0x00000000 (0003ms, 6016ms total)
T6ACC 115:271 JLINK_ReadReg(R2) -- CPU is running
  ***** Error: Can not read register 2 (R2) while CPU is running  returns 0x00000000 (0003ms, 6019ms total)
T6ACC 115:274 JLINK_ReadReg(R3) -- CPU is running
  ***** Error: Can not read register 3 (R3) while CPU is running  returns 0x00000000 (0002ms, 6021ms total)
T6ACC 115:276 JLINK_ReadReg(R4) -- CPU is running
  ***** Error: Can not read register 4 (R4) while CPU is running  returns 0x00000000 (0003ms, 6024ms total)
T6ACC 115:279 JLINK_ReadReg(R5) -- CPU is running
  ***** Error: Can not read register 5 (R5) while CPU is running  returns 0x00000000 (0003ms, 6027ms total)
T6ACC 115:282 JLINK_ReadReg(R6) -- CPU is running
  ***** Error: Can not read register 6 (R6) while CPU is running  returns 0x00000000 (0002ms, 6029ms total)
T6ACC 115:284 JLINK_ReadReg(R7) -- CPU is running
  ***** Error: Can not read register 7 (R7) while CPU is running  returns 0x00000000 (0003ms, 6032ms total)
T6ACC 115:287 JLINK_ReadReg(R8) -- CPU is running
  ***** Error: Can not read register 8 (R8) while CPU is running  returns 0x00000000 (0002ms, 6034ms total)
T6ACC 115:290 JLINK_ReadReg(R9) -- CPU is running
  ***** Error: Can not read register 9 (R9) while CPU is running  returns 0x00000000 (0002ms, 6036ms total)
T6ACC 115:292 JLINK_ReadReg(R10) -- CPU is running
  ***** Error: Can not read register 10 (R10) while CPU is running  returns 0x00000000 (0003ms, 6039ms total)
T6ACC 115:295 JLINK_ReadReg(R11) -- CPU is running
  ***** Error: Can not read register 11 (R11) while CPU is running  returns 0x00000000 (0002ms, 6041ms total)
T6ACC 115:297 JLINK_ReadReg(R12) -- CPU is running
  ***** Error: Can not read register 12 (R12) while CPU is running  returns 0x00000000 (0003ms, 6044ms total)
T6ACC 115:300 JLINK_ReadReg(R13 (SP)) -- CPU is running
  ***** Error: Can not read register 13 (R13) while CPU is running  returns 0x00000000 (0003ms, 6047ms total)
T6ACC 115:303 JLINK_ReadReg(R14) -- CPU is running
  ***** Error: Can not read register 14 (R14) while CPU is running  returns 0x00000000 (0002ms, 6049ms total)
T6ACC 115:305 JLINK_ReadReg(R15 (PC)) -- CPU is running
  ***** Error: Can not read register 15 (R15) while CPU is running  returns 0x00000000 (0003ms, 6052ms total)
T6ACC 115:308 JLINK_ReadReg(XPSR) -- CPU is running
  ***** Error: Can not read register 16 (XPSR) while CPU is running  returns 0x00000000 (0003ms, 6055ms total)
T6ACC 115:311 JLINK_ReadReg(MSP) -- CPU is running
  ***** Error: Can not read register 17 (MSP) while CPU is running  returns 0x00000000 (0002ms, 6057ms total)
T6ACC 115:313 JLINK_ReadReg(PSP) -- CPU is running
  ***** Error: Can not read register 18 (PSP) while CPU is running  returns 0x00000000 (0004ms, 6061ms total)
T6ACC 115:317 JLINK_ReadReg(CFBP) -- CPU is running
  ***** Error: Can not read register 20 (CFBP) while CPU is running  returns 0x00000000 (0002ms, 6063ms total)
T670C 115:328 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: AA  returns 0xFFFFFFFF (0002ms, 6065ms total)
T670C 115:330 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: AA  returns 0xFFFFFFFF (0002ms, 6067ms total)
T670C 115:332 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: AA  returns 0xFFFFFFFF (0002ms, 6069ms total)
T670C 115:334 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: AA  returns 0xFFFFFFFF (0002ms, 6071ms total)
T670C 115:336 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: AA  returns 0xFFFFFFFF (0001ms, 6072ms total)
T670C 115:337 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: AA  returns 0xFFFFFFFF (0002ms, 6074ms total)
T670C 115:347 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6076ms total)
T670C 115:349 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6078ms total)
T670C 115:351 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6080ms total)
T670C 115:353 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6082ms total)
T670C 115:355 JLINK_ReadMemEx(0x2000018E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000018E) - Data: AA AA  returns 0xFFFFFFFF (0001ms, 6083ms total)
T670C 115:356 JLINK_ReadMemEx(0x2000018E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000018E) - Data: AA  returns 0xFFFFFFFF (0002ms, 6085ms total)
T670C 115:365 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6087ms total)
T670C 115:367 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6089ms total)
T670C 115:369 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6091ms total)
T670C 115:371 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6093ms total)
T670C 115:373 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: AA AA  returns 0xFFFFFFFF (0001ms, 6094ms total)
T670C 115:374 JLINK_ReadMemEx(0x200000A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000A8) - Data: AA  returns 0xFFFFFFFF (0002ms, 6096ms total)
T670C 115:384 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: AA  returns 0xFFFFFFFF (0001ms, 6097ms total)
T670C 115:385 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: AA  returns 0xFFFFFFFF (0002ms, 6099ms total)
T670C 115:387 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: AA  returns 0xFFFFFFFF (0002ms, 6101ms total)
T670C 115:389 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: AA  returns 0xFFFFFFFF (0002ms, 6103ms total)
T670C 115:391 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: AA  returns 0xFFFFFFFF (0001ms, 6104ms total)
T670C 115:392 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: AA  returns 0xFFFFFFFF (0002ms, 6106ms total)
T670C 115:401 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6108ms total)
T670C 115:403 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6110ms total)
T670C 115:405 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6112ms total)
T670C 115:407 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: AA AA  returns 0xFFFFFFFF (0001ms, 6113ms total)
T670C 115:408 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6115ms total)
T670C 115:410 JLINK_ReadMemEx(0x200000B2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B2) - Data: AA  returns 0xFFFFFFFF (0002ms, 6117ms total)
T670C 115:419 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: AA  returns 0xFFFFFFFF (0002ms, 6119ms total)
T670C 115:421 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: AA  returns 0xFFFFFFFF (0002ms, 6121ms total)
T670C 115:423 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: AA  returns 0xFFFFFFFF (0001ms, 6122ms total)
T670C 115:424 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: AA  returns 0xFFFFFFFF (0002ms, 6124ms total)
T670C 115:426 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: AA  returns 0xFFFFFFFF (0002ms, 6126ms total)
T670C 115:428 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: AA  returns 0xFFFFFFFF (0002ms, 6128ms total)
T670C 115:438 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: AA  returns 0xFFFFFFFF (0001ms, 6129ms total)
T670C 115:439 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: AA  returns 0xFFFFFFFF (0002ms, 6131ms total)
T670C 115:441 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: AA  returns 0xFFFFFFFF (0002ms, 6133ms total)
T670C 115:443 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: AA  returns 0xFFFFFFFF (0002ms, 6135ms total)
T670C 115:445 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: AA  returns 0xFFFFFFFF (0002ms, 6137ms total)
T670C 115:447 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: AA  returns 0xFFFFFFFF (0001ms, 6138ms total)
T670C 115:456 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6140ms total)
T670C 115:458 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: AA AA  returns 0xFFFFFFFF (0001ms, 6141ms total)
T670C 115:459 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6143ms total)
T670C 115:461 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6145ms total)
T670C 115:463 JLINK_ReadMemEx(0x200001B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001B8) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6147ms total)
T670C 115:465 JLINK_ReadMemEx(0x200001B8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001B8) - Data: AA  returns 0xFFFFFFFF (0002ms, 6149ms total)
T670C 115:475 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: AA AA  returns 0xFFFFFFFF (0001ms, 6150ms total)
T670C 115:476 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6152ms total)
T670C 115:478 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6154ms total)
T670C 115:480 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6156ms total)
T670C 115:482 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6158ms total)
T670C 115:484 JLINK_ReadMemEx(0x200000B6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000B6) - Data: AA  returns 0xFFFFFFFF (0001ms, 6159ms total)
T670C 115:493 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: AA  returns 0xFFFFFFFF (0002ms, 6161ms total)
T670C 115:495 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: AA  returns 0xFFFFFFFF (0002ms, 6163ms total)
T670C 115:497 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: AA  returns 0xFFFFFFFF (0001ms, 6164ms total)
T670C 115:498 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: AA  returns 0xFFFFFFFF (0002ms, 6166ms total)
T670C 115:500 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: AA  returns 0xFFFFFFFF (0002ms, 6168ms total)
T670C 115:502 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: AA  returns 0xFFFFFFFF (0002ms, 6170ms total)
T670C 115:512 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 6172ms total)
T670C 115:514 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: AA AA AA AA  returns 0xFFFFFFFF (0001ms, 6173ms total)
T670C 115:515 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 6175ms total)
T670C 115:517 JLINK_ReadMemEx(0x200000E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E0) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 6177ms total)
T670C 115:519 JLINK_ReadMemEx(0x200000E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E0) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6179ms total)
T670C 115:521 JLINK_ReadMemEx(0x200000E0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000E0) - Data: AA  returns 0xFFFFFFFF (0001ms, 6180ms total)
T670C 115:530 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: AA  returns 0xFFFFFFFF (0002ms, 6182ms total)
T670C 115:532 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: AA  returns 0xFFFFFFFF (0001ms, 6183ms total)
T670C 115:533 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: AA  returns 0xFFFFFFFF (0002ms, 6185ms total)
T670C 115:535 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: AA  returns 0xFFFFFFFF (0002ms, 6187ms total)
T670C 115:537 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: AA  returns 0xFFFFFFFF (0002ms, 6189ms total)
T670C 115:539 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: AA  returns 0xFFFFFFFF (0002ms, 6191ms total)
T670C 115:548 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6193ms total)
T670C 115:550 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6195ms total)
T670C 115:552 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6197ms total)
T670C 115:554 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6199ms total)
T670C 115:556 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: AA AA  returns 0xFFFFFFFF (0001ms, 6200ms total)
T670C 115:557 JLINK_ReadMemEx(0x200000A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000A8) - Data: AA  returns 0xFFFFFFFF (0002ms, 6202ms total)
T670C 115:567 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6204ms total)
T670C 115:569 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6206ms total)
T670C 115:571 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6208ms total)
T670C 115:573 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: AA AA  returns 0xFFFFFFFF (0001ms, 6209ms total)
T670C 115:574 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6211ms total)
T670C 115:576 JLINK_ReadMemEx(0x20000192, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000192) - Data: AA  returns 0xFFFFFFFF (0002ms, 6213ms total)
T670C 115:586 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: AA  returns 0xFFFFFFFF (0002ms, 6215ms total)
T670C 115:588 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: AA  returns 0xFFFFFFFF (0001ms, 6216ms total)
T670C 115:590 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: AA  returns 0xFFFFFFFF (0001ms, 6217ms total)
T670C 115:591 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: AA  returns 0xFFFFFFFF (0002ms, 6219ms total)
T670C 115:593 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: AA  returns 0xFFFFFFFF (0002ms, 6221ms total)
T670C 115:595 JLINK_ReadMemEx(0x20000147, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000147) - Data: AA  returns 0xFFFFFFFF (0002ms, 6223ms total)
T670C 115:605 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: AA AA AA AA  returns 0xFFFFFFFF (0001ms, 6224ms total)
T670C 115:606 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 6226ms total)
T670C 115:608 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 6228ms total)
T670C 115:610 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 6230ms total)
T670C 115:612 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6232ms total)
T670C 115:614 JLINK_ReadMemEx(0x200001A4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001A4) - Data: AA  returns 0xFFFFFFFF (0001ms, 6233ms total)
T670C 115:623 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: AA  returns 0xFFFFFFFF (0001ms, 6234ms total)
T670C 115:624 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: AA  returns 0xFFFFFFFF (0002ms, 6236ms total)
T670C 115:626 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: AA  returns 0xFFFFFFFF (0002ms, 6238ms total)
T670C 115:628 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: AA  returns 0xFFFFFFFF (0002ms, 6240ms total)
T670C 115:630 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: AA  returns 0xFFFFFFFF (0001ms, 6241ms total)
T670C 115:631 JLINK_ReadMemEx(0x20000188, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000188) - Data: AA  returns 0xFFFFFFFF (0002ms, 6243ms total)
T670C 115:640 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6245ms total)
T670C 115:642 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6247ms total)
T670C 115:644 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6249ms total)
T670C 115:646 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: AA AA  returns 0xFFFFFFFF (0001ms, 6250ms total)
T670C 115:648 JLINK_ReadMemEx(0x200000C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000C4) - Data: AA AA  returns 0xFFFFFFFF (0001ms, 6251ms total)
T670C 115:649 JLINK_ReadMemEx(0x200000C4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000C4) - Data: AA  returns 0xFFFFFFFF (0002ms, 6253ms total)
T670C 115:658 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6255ms total)
T670C 115:660 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6257ms total)
T670C 115:662 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6259ms total)
T670C 115:664 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6261ms total)
T670C 115:666 JLINK_ReadMemEx(0x200000AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000AE) - Data: AA AA  returns 0xFFFFFFFF (0001ms, 6262ms total)
T670C 115:667 JLINK_ReadMemEx(0x200000AE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000AE) - Data: AA  returns 0xFFFFFFFF (0002ms, 6264ms total)
T670C 115:677 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 6266ms total)
T670C 115:679 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 6268ms total)
T670C 115:681 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: AA AA AA AA  returns 0xFFFFFFFF (0001ms, 6269ms total)
T670C 115:682 JLINK_ReadMemEx(0x200000E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000E8) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 6271ms total)
T670C 115:684 JLINK_ReadMemEx(0x200000E8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000E8) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6273ms total)
T670C 115:686 JLINK_ReadMemEx(0x200000E8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000E8) - Data: AA  returns 0xFFFFFFFF (0002ms, 6275ms total)
T670C 115:695 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6277ms total)
T670C 115:697 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6279ms total)
T670C 115:699 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6281ms total)
T670C 115:701 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: AA AA  returns 0xFFFFFFFF (0001ms, 6282ms total)
T670C 115:702 JLINK_ReadMemEx(0x20000192, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000192) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6284ms total)
T670C 115:704 JLINK_ReadMemEx(0x20000192, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000192) - Data: AA  returns 0xFFFFFFFF (0002ms, 6286ms total)
T670C 115:714 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: AA AA  returns 0xFFFFFFFF (0003ms, 6289ms total)
T670C 115:717 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6291ms total)
T670C 115:719 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6293ms total)
T670C 115:721 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: AA AA  returns 0xFFFFFFFF (0001ms, 6294ms total)
T670C 115:722 JLINK_ReadMemEx(0x200001A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A0) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6296ms total)
T670C 115:724 JLINK_ReadMemEx(0x200001A0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001A0) - Data: AA  returns 0xFFFFFFFF (0002ms, 6298ms total)
T670C 115:733 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6300ms total)
T670C 115:735 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6302ms total)
T670C 115:737 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6304ms total)
T670C 115:739 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6306ms total)
T670C 115:741 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: AA AA  returns 0xFFFFFFFF (0001ms, 6307ms total)
T670C 115:742 JLINK_ReadMemEx(0x200001BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001BA) - Data: AA  returns 0xFFFFFFFF (0002ms, 6309ms total)
T670C 115:752 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6311ms total)
T670C 115:754 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: AA AA  returns 0xFFFFFFFF (0001ms, 6312ms total)
T670C 115:755 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6314ms total)
T670C 115:757 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6316ms total)
T670C 115:759 JLINK_ReadMemEx(0x200001BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001BA) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6318ms total)
T670C 115:761 JLINK_ReadMemEx(0x200001BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001BA) - Data: AA  returns 0xFFFFFFFF (0002ms, 6320ms total)
T670C 115:771 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 6322ms total)
T670C 115:773 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 6324ms total)
T670C 115:775 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: AA AA AA AA  returns 0xFFFFFFFF (0001ms, 6325ms total)
T670C 115:776 JLINK_ReadMemEx(0x200000F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200000F8) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 6327ms total)
T670C 115:778 JLINK_ReadMemEx(0x200000F8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F8) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6329ms total)
T670C 115:780 JLINK_ReadMemEx(0x200000F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200000F8) - Data: AA  returns 0xFFFFFFFF (0002ms, 6331ms total)
T670C 115:790 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: AA  returns 0xFFFFFFFF (0001ms, 6332ms total)
T670C 115:791 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: AA  returns 0xFFFFFFFF (0002ms, 6334ms total)
T670C 115:793 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: AA  returns 0xFFFFFFFF (0002ms, 6336ms total)
T670C 115:795 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: AA  returns 0xFFFFFFFF (0002ms, 6338ms total)
T670C 115:797 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: AA  returns 0xFFFFFFFF (0001ms, 6339ms total)
T670C 115:798 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: AA  returns 0xFFFFFFFF (0002ms, 6341ms total)
T670C 115:807 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 6343ms total)
T670C 115:809 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 6345ms total)
T670C 115:811 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 6347ms total)
T670C 115:813 JLINK_ReadMemEx(0x200001A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001A4) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 6349ms total)
T670C 115:815 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: AA AA  returns 0xFFFFFFFF (0001ms, 6350ms total)
T670C 115:816 JLINK_ReadMemEx(0x200001A4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001A4) - Data: AA  returns 0xFFFFFFFF (0002ms, 6352ms total)
T670C 115:838 JLINK_ReadMemEx(0x00000000, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x08000000) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ...  returns 0xFFFFFFFF (0002ms, 6354ms total)
T670C 115:840 JLINK_ReadMemEx(0x00000000, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x08000000) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ...  returns 0xFFFFFFFF (0001ms, 6355ms total)
T670C 115:841 JLINK_ReadMemEx(0x00000000, 0x0010 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(16 bytes @ 0x08000000) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA  returns 0xFFFFFFFF (0002ms, 6357ms total)
T670C 115:843 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x08000000) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 6359ms total)
T670C 115:845 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6361ms total)
T670C 115:847 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: AA  returns 0xFFFFFFFF (0002ms, 6363ms total)
T670C 115:849 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: AA AA  returns 0xFFFFFFFF (0001ms, 6364ms total)
T670C 115:850 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6366ms total)
T670C 115:852 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6368ms total)
T670C 115:854 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6370ms total)
T670C 115:856 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6372ms total)
T670C 115:858 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: AA  returns 0xFFFFFFFF (0001ms, 6373ms total)
T670C 115:859 JLINK_ReadMemEx(0x00000002, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000002) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6375ms total)
T670C 115:861 JLINK_ReadMemEx(0x00000002, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000002) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6377ms total)
T670C 115:863 JLINK_ReadMemEx(0x00000002, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000002) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6379ms total)
T670C 115:865 JLINK_ReadMemEx(0x00000002, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000002) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6381ms total)
T670C 115:867 JLINK_ReadMemEx(0x00000002, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000002) - Data: AA AA  returns 0xFFFFFFFF (0001ms, 6382ms total)
T670C 115:868 JLINK_ReadMemEx(0x00000002, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000002) - Data: AA  returns 0xFFFFFFFF (0002ms, 6384ms total)
T670C 115:870 JLINK_ReadMemEx(0x00000002, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000002) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6386ms total)
T670C 115:872 JLINK_ReadMemEx(0x00000002, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000002) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6388ms total)
T670C 115:874 JLINK_ReadMemEx(0x00000002, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000002) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6390ms total)
T670C 115:876 JLINK_ReadMemEx(0x00000002, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000002) - Data: AA AA  returns 0xFFFFFFFF (0001ms, 6391ms total)
T670C 115:877 JLINK_ReadMemEx(0x00000002, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000002) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6393ms total)
T670C 115:879 JLINK_ReadMemEx(0x00000002, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000002) - Data: AA  returns 0xFFFFFFFF (0002ms, 6395ms total)
T670C 115:881 JLINK_ReadMemEx(0x00000004, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x08000004) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ...  returns 0xFFFFFFFF (0002ms, 6397ms total)
T670C 115:883 JLINK_ReadMemEx(0x00000004, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x08000004) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ...  returns 0xFFFFFFFF (0002ms, 6399ms total)
T670C 115:885 JLINK_ReadMemEx(0x00000004, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x08000004) - Data: AA AA AA AA AA AA AA AA AA AA AA AA  returns 0xFFFFFFFF (0001ms, 6400ms total)
T670C 115:887 JLINK_ReadMemEx(0x00000004, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x08000004) - Data: AA AA AA AA  returns 0xFFFFFFFF (0001ms, 6402ms total)
T670C 115:888 JLINK_ReadMemEx(0x00000004, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000004) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6404ms total)
T670C 115:890 JLINK_ReadMemEx(0x00000004, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000004) - Data: AA  returns 0xFFFFFFFF (0002ms, 6406ms total)
T670C 115:892 JLINK_ReadMemEx(0x00000004, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000004) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6408ms total)
T670C 115:894 JLINK_ReadMemEx(0x00000004, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000004) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6410ms total)
T670C 115:896 JLINK_ReadMemEx(0x00000004, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000004) - Data: AA AA  returns 0xFFFFFFFF (0001ms, 6411ms total)
T670C 115:897 JLINK_ReadMemEx(0x00000004, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000004) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6413ms total)
T670C 115:899 JLINK_ReadMemEx(0x00000004, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000004) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6415ms total)
T670C 115:901 JLINK_ReadMemEx(0x00000004, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000004) - Data: AA  returns 0xFFFFFFFF (0002ms, 6417ms total)
T670C 115:903 JLINK_ReadMemEx(0x00000004, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x08000004) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ...  returns 0xFFFFFFFF (0002ms, 6419ms total)
T670C 115:905 JLINK_ReadMemEx(0x00000004, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x08000004) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ...  returns 0xFFFFFFFF (0002ms, 6421ms total)
T670C 115:907 JLINK_ReadMemEx(0x00000004, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x08000004) - Data: AA AA AA AA AA AA AA AA AA AA AA AA  returns 0xFFFFFFFF (0001ms, 6422ms total)
T670C 115:908 JLINK_ReadMemEx(0x00000004, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x08000004) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 6424ms total)
T670C 115:910 JLINK_ReadMemEx(0x00000004, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000004) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6426ms total)
T670C 115:912 JLINK_ReadMemEx(0x00000004, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000004) - Data: AA  returns 0xFFFFFFFF (0002ms, 6428ms total)
T670C 115:914 JLINK_ReadMemEx(0x00000004, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000004) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6430ms total)
T670C 115:916 JLINK_ReadMemEx(0x00000004, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000004) - Data: AA AA  returns 0xFFFFFFFF (0001ms, 6431ms total)
T670C 115:917 JLINK_ReadMemEx(0x00000004, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000004) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6433ms total)
T670C 115:919 JLINK_ReadMemEx(0x00000004, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000004) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6435ms total)
T670C 115:921 JLINK_ReadMemEx(0x00000004, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000004) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6437ms total)
T670C 115:923 JLINK_ReadMemEx(0x00000004, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000004) - Data: AA  returns 0xFFFFFFFF (0001ms, 6438ms total)
T670C 115:924 JLINK_ReadMemEx(0x00000006, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000006) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6440ms total)
T670C 115:926 JLINK_ReadMemEx(0x00000006, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000006) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6442ms total)
T670C 115:928 JLINK_ReadMemEx(0x00000006, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000006) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6444ms total)
T670C 115:930 JLINK_ReadMemEx(0x00000006, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000006) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6446ms total)
T670C 115:932 JLINK_ReadMemEx(0x00000006, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000006) - Data: AA AA  returns 0xFFFFFFFF (0001ms, 6447ms total)
T670C 115:933 JLINK_ReadMemEx(0x00000006, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000006) - Data: AA  returns 0xFFFFFFFF (0002ms, 6449ms total)
T670C 115:935 JLINK_ReadMemEx(0x00000006, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000006) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6451ms total)
T670C 115:937 JLINK_ReadMemEx(0x00000006, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000006) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6453ms total)
T670C 115:939 JLINK_ReadMemEx(0x00000006, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000006) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6455ms total)
T670C 115:941 JLINK_ReadMemEx(0x00000006, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000006) - Data: AA AA  returns 0xFFFFFFFF (0001ms, 6456ms total)
T670C 115:942 JLINK_ReadMemEx(0x00000006, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000006) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6458ms total)
T670C 115:944 JLINK_ReadMemEx(0x00000006, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000006) - Data: AA  returns 0xFFFFFFFF (0002ms, 6460ms total)
T670C 115:946 JLINK_ReadMemEx(0x00000008, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x08000008) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ...  returns 0xFFFFFFFF (0002ms, 6462ms total)
T670C 115:948 JLINK_ReadMemEx(0x00000008, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x08000008) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ...  returns 0xFFFFFFFF (0002ms, 6464ms total)
T670C 115:950 JLINK_ReadMemEx(0x00000008, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x08000008) - Data: AA AA AA AA AA AA AA AA  returns 0xFFFFFFFF (0001ms, 6465ms total)
T670C 115:951 JLINK_ReadMemEx(0x00000008, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x08000008) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 6467ms total)
T670C 115:953 JLINK_ReadMemEx(0x00000008, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000008) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6469ms total)
T670C 115:955 JLINK_ReadMemEx(0x00000008, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000008) - Data: AA  returns 0xFFFFFFFF (0002ms, 6471ms total)
T670C 115:957 JLINK_ReadMemEx(0x00000008, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000008) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6473ms total)
T670C 115:959 JLINK_ReadMemEx(0x00000008, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000008) - Data: AA AA  returns 0xFFFFFFFF (0001ms, 6474ms total)
T670C 115:960 JLINK_ReadMemEx(0x00000008, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000008) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6476ms total)
T670C 115:962 JLINK_ReadMemEx(0x00000008, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000008) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6478ms total)
T670C 115:964 JLINK_ReadMemEx(0x00000008, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000008) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6480ms total)
T670C 115:966 JLINK_ReadMemEx(0x00000008, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000008) - Data: AA  returns 0xFFFFFFFF (0002ms, 6482ms total)
T670C 115:968 JLINK_ReadMemEx(0x00000008, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x08000008) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ...  returns 0xFFFFFFFF (0002ms, 6484ms total)
T670C 115:970 JLINK_ReadMemEx(0x00000008, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x08000008) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ...  returns 0xFFFFFFFF (0002ms, 6486ms total)
T670C 115:972 JLINK_ReadMemEx(0x00000008, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x08000008) - Data: AA AA AA AA AA AA AA AA  returns 0xFFFFFFFF (0001ms, 6487ms total)
T670C 115:973 JLINK_ReadMemEx(0x00000008, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x08000008) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 6489ms total)
T670C 115:975 JLINK_ReadMemEx(0x00000008, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000008) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6491ms total)
T670C 115:977 JLINK_ReadMemEx(0x00000008, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000008) - Data: AA  returns 0xFFFFFFFF (0002ms, 6493ms total)
T670C 115:979 JLINK_ReadMemEx(0x00000008, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000008) - Data: AA AA  returns 0xFFFFFFFF (0001ms, 6494ms total)
T670C 115:980 JLINK_ReadMemEx(0x00000008, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000008) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6496ms total)
T670C 115:982 JLINK_ReadMemEx(0x00000008, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000008) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6498ms total)
T670C 115:984 JLINK_ReadMemEx(0x00000008, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000008) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6500ms total)
T670C 115:986 JLINK_ReadMemEx(0x00000008, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000008) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6502ms total)
T670C 115:988 JLINK_ReadMemEx(0x00000008, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000008) - Data: AA  returns 0xFFFFFFFF (0001ms, 6503ms total)
T670C 115:989 JLINK_ReadMemEx(0x0000000A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0800000A) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6505ms total)
T670C 115:991 JLINK_ReadMemEx(0x0000000A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0800000A) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6507ms total)
T670C 115:993 JLINK_ReadMemEx(0x0000000A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0800000A) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6509ms total)
T670C 115:995 JLINK_ReadMemEx(0x0000000A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0800000A) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6511ms total)
T670C 115:997 JLINK_ReadMemEx(0x0000000A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0800000A) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 6513ms total)
T670C 115:999 JLINK_ReadMemEx(0x0000000A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0800000A) - Data: AA  returns 0xFFFFFFFF (0002ms, 6515ms total)
T670C 189:793 JLINK_Close() -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002014) >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> (0017ms, 6532ms total)
T670C 189:793  (0017ms, 6532ms total)
T670C 189:793 Closed (0017ms, 6532ms total)