zhangbo
18 小时以前 01b6f2525f47ee781d86a2495dfcd17f68ccbafd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
 
T4070 000:042 SEGGER J-Link V6.20g Log File (0000ms, 0019ms total)
T4070 000:042 DLL Compiled: Oct 20 2017 17:09:27 (0000ms, 0019ms total)
T4070 000:042 Logging started @ 2025-06-17 11:47 (0001ms, 0020ms total)
T4070 000:043 JLINK_SetWarnOutHandler(...) (0000ms, 0020ms total)
T4070 000:043 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 (0016ms, 0036ms total)
T4070 000:043 WEBSRV Webserver running on local port 19080 (0016ms, 0036ms total)
T4070 000:043   returns O.K. (0016ms, 0036ms total)
T4070 000:059 JLINK_GetEmuCaps()  returns 0x88EA5833 (0000ms, 0036ms total)
T4070 000:059 JLINK_TIF_GetAvailable(...) (0000ms, 0036ms total)
T4070 000:059 JLINK_SetErrorOutHandler(...) (0000ms, 0036ms total)
T4070 000:059 JLINK_ExecCommand("ProjectFile = "D:\zhangbo\2024\Code\ChinaUWB\¹ã¹þÒÆÖ²\ChinaUWBProject\keil\JLinkSettings.ini"", ...). D:\keil\ARM\Segger\JLinkDevices.xml evaluated successfully.  returns 0x00 (0080ms, 0116ms total)
T4070 000:139 JLINK_ExecCommand("Device = MK8000", ...). 
  ***** Error: Error while loading flash algo ELF file. No file specified  returns 0xFFFFFFFF (0000ms, 0116ms total)
T4070 000:139 JLINK_ExecCommand("DisableConnectionTimeout", ...).   returns 0x01 (0000ms, 0116ms total)
T4070 000:139 JLINK_GetHardwareVersion()  returns 0x11170 (0000ms, 0116ms total)
T4070 000:139 JLINK_GetDLLVersion()  returns 62007 (0000ms, 0116ms total)
T4070 000:139 JLINK_GetFirmwareString(...) (0000ms, 0116ms total)
T4070 000:139 JLINK_GetDLLVersion()  returns 62007 (0000ms, 0116ms total)
T4070 000:139 JLINK_GetCompileDateTime() (0000ms, 0116ms total)
T4070 000:139 JLINK_GetFirmwareString(...) (0000ms, 0116ms total)
T4070 000:139 JLINK_GetHardwareVersion()  returns 0x11170 (0000ms, 0116ms total)
T4070 000:139 JLINK_TIF_Select(JLINKARM_TIF_SWD)  returns 0x00 (0001ms, 0117ms total)
T4070 000:140 JLINK_SetSpeed(10000) (0001ms, 0118ms total)
T4070 000:141 JLINK_GetId() >0x10B TIF>Found SW-DP with ID 0x0BB11477 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF>Scanning AP map to find all available APs >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>AP[1]: Stopped AP scan as end of AP map has been reachedAP[0]: AHB-AP (IDR: 0x04770021)Iterating through AP map to find AHB-AP to use
 >0x42 TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x42 TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>AP[0]: Core foundAP[0]: AHB-AP ROM base: 0xE00FF000 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>CPUID register: 0x410CC200. Implementer code: 0x41 (ARM)Found Cortex-M0 r0p0, Little endian. -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDF0)
 -- CPU_ReadMem(4 bytes @ 0xE0002000)FPUnit: 4 code (BP) slots and 0 literal slots -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_WriteMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000)CoreSight components:ROMTbl[0] @ E00FF000 -- CPU_ReadMem(16 bytes @ 0xE00FF000) -- CPU_ReadMem(16 bytes @ 0xE000EFF0) -- CPU_ReadMem(16 bytes @ 0xE000EFE0)ROMTbl[0][0]: E000E000, CID: B105E00D, PID: 000BB008 SCS -- CPU_ReadMem(16 bytes @ 0xE0001FF0)
 -- CPU_ReadMem(16 bytes @ 0xE0001FE0)ROMTbl[0][1]: E0001000, CID: B105E00D, PID: 000BB00A DWT -- CPU_ReadMem(16 bytes @ 0xE0002FF0) -- CPU_ReadMem(16 bytes @ 0xE0002FE0)ROMTbl[0][2]: E0002000, CID: B105E00D, PID: 000BB00B FPB >0x0D TIF> >0x21 TIF>  returns 0x0BB11477 (0135ms, 0253ms total)
T4070 000:276 JLINK_GetDLLVersion()  returns 62007 (0000ms, 0253ms total)
T4070 000:276 JLINK_CORE_GetFound()  returns 0x60000FF (0000ms, 0253ms total)
T4070 000:276 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xE00FF000  returns 0x00 (0000ms, 0253ms total)
T4070 000:276 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xE00FF000  returns 0x00 (0001ms, 0254ms total)
T4070 000:277 JLINK_GetDebugInfo(0x101 = JLINKARM_DEBUG_INFO_ETM_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0254ms total)
T4070 000:277 JLINK_ReadMemEx(0xE0041FF0, 0x0010 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(16 bytes @ 0xE0041FF0) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x10 (0000ms, 0254ms total)
T4070 000:277 JLINK_GetDebugInfo(0x102 = JLINKARM_DEBUG_INFO_MTB_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0254ms total)
T4070 000:277 JLINK_GetDebugInfo(0x103 = JLINKARM_DEBUG_INFO_TPIU_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0254ms total)
T4070 000:278 JLINK_ReadMemEx(0xE0040FF0, 0x0010 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(16 bytes @ 0xE0040FF0) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x10 (0000ms, 0255ms total)
T4070 000:278 JLINK_GetDebugInfo(0x104 = JLINKARM_DEBUG_INFO_ITM_ADDR_INDEX) -- Value=0xE0000000  returns 0x00 (0000ms, 0255ms total)
T4070 000:278 JLINK_GetDebugInfo(0x105 = JLINKARM_DEBUG_INFO_DWT_ADDR_INDEX) -- Value=0xE0001000  returns 0x00 (0000ms, 0255ms total)
T4070 000:278 JLINK_GetDebugInfo(0x106 = JLINKARM_DEBUG_INFO_FPB_ADDR_INDEX) -- Value=0xE0002000  returns 0x00 (0000ms, 0255ms total)
T4070 000:278 JLINK_GetDebugInfo(0x107 = JLINKARM_DEBUG_INFO_NVIC_ADDR_INDEX) -- Value=0xE000E000  returns 0x00 (0000ms, 0255ms total)
T4070 000:278 JLINK_GetDebugInfo(0x10C = JLINKARM_DEBUG_INFO_DBG_ADDR_INDEX) -- Value=0xE000EDF0  returns 0x00 (0001ms, 0256ms total)
T4070 000:279 JLINK_GetDebugInfo(0x01 = Unknown)  returns 0xFFFFFFFF (0000ms, 0256ms total)
T4070 000:279 JLINK_GetDeviceFamily()  returns 6 (0000ms, 0256ms total)
T4070 000:279 JLINK_ReadMemU32(0xE000ED00, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED00) - Data: 00 C2 0C 41  returns 0x01 (0000ms, 0256ms total)
T4070 000:279 JLINK_GetDebugInfo(0x10F = JLINKARM_DEBUG_INFO_HAS_CORTEX_M_SECURITY_EXT_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0256ms total)
T4070 000:279 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 0256ms total)
T4070 000:279 JLINK_Reset() -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDFC)Reset: Halt core after reset via DEMCR.VC_CORERESET. >0x35 TIF>Reset: Reset device via AIRCR.SYSRESETREQ. -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000ED0C) >0x0D TIF> >0x28 TIF> -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDFC)
 -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0071ms, 0327ms total)
T4070 000:351 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0327ms total)
T4070 000:351 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0327ms total)
T4070 000:351 JLINK_Halt()  returns 0x00 (0000ms, 0327ms total)
T4070 000:351 JLINK_ReadMemU32(0xE000EDF0, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) - Data: 03 00 03 00  returns 0x01 (0000ms, 0327ms total)
T4070 000:351 JLINK_WriteU32(0xE000EDF0, 0xA05F0003) -- CPU_WriteMem(4 bytes @ 0xE000EDF0)  returns 0x00 (0001ms, 0328ms total)
T4070 000:352 JLINK_WriteU32(0xE000EDFC, 0x01000000) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)  returns 0x00 (0001ms, 0329ms total)
T4070 000:353 JLINK_GetHWStatus(...)  returns 0x00 (0000ms, 0329ms total)
T4070 000:353 JLINK_GetNumBPUnits(Type = 0xFFFFFF00)  returns 0x04 (0000ms, 0329ms total)
T4070 000:353 JLINK_GetNumBPUnits(Type = 0xF0)  returns 0x2000 (0000ms, 0329ms total)
T4070 000:353 JLINK_GetNumWPUnits()  returns 0x02 (0000ms, 0329ms total)
T4070 000:353 JLINK_GetSpeed()  returns 0xFA0 (0000ms, 0329ms total)
T4070 000:353 JLINK_ReadMemU32(0xE000E004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000E004) - Data: 00 00 00 00  returns 0x01 (0001ms, 0330ms total)
T4070 000:354 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0330ms total)
T4070 000:354 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0330ms total)
T4070 000:454 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 0330ms total)
T4070 000:454 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) (0071ms, 0401ms total)
T4070 000:525 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0401ms total)
T4070 000:525 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0401ms total)
T4070 000:525 JLINK_ReadMemEx(0x03003738, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003738) - Data: 00 F0 4E F8 FC F7 C0 FC 80 B5 0D 49 08 68 00 28 ...  returns 0x3C (0001ms, 0402ms total)
T4070 000:526 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0001ms, 0403ms total)
T4070 000:527 JLINK_ReadMemEx(0x0300373A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373A) - Data: 4E F8  returns 0x02 (0001ms, 0404ms total)
T4070 002:213 JLINK_ReadReg(R0)  returns 0x00052798 (0000ms, 0404ms total)
T4070 002:213 JLINK_ReadReg(R1)  returns 0x000003E8 (0000ms, 0404ms total)
T4070 002:213 JLINK_ReadReg(R2)  returns 0x000007FF (0000ms, 0404ms total)
T4070 002:213 JLINK_ReadReg(R3)  returns 0x00000000 (0000ms, 0404ms total)
T4070 002:213 JLINK_ReadReg(R4)  returns 0x0000044E (0001ms, 0405ms total)
T4070 002:214 JLINK_ReadReg(R5)  returns 0x02029FD8 (0000ms, 0405ms total)
T4070 002:214 JLINK_ReadReg(R6)  returns 0x00000003 (0000ms, 0405ms total)
T4070 002:214 JLINK_ReadReg(R7)  returns 0x0201C30A (0000ms, 0405ms total)
T4070 002:214 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 0405ms total)
T4070 002:214 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 0405ms total)
T4070 002:214 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 0405ms total)
T4070 002:214 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 0405ms total)
T4070 002:214 JLINK_ReadReg(R12)  returns 0x00000003 (0000ms, 0405ms total)
T4070 002:214 JLINK_ReadReg(R13 (SP))  returns 0x0202F800 (0000ms, 0405ms total)
T4070 002:214 JLINK_ReadReg(R14)  returns 0x0000CBDF (0000ms, 0405ms total)
T4070 002:214 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0405ms total)
T4070 002:214 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0405ms total)
T4070 002:214 JLINK_ReadReg(MSP)  returns 0x0202F800 (0000ms, 0405ms total)
T4070 002:214 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 0405ms total)
T4070 002:214 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0405ms total)
T4070 002:214 JLINK_ReadMemEx(0x0201AAEA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201AAEA) - Data: 00  returns 0x01 (0001ms, 0406ms total)
T4070 002:215 JLINK_ReadMemEx(0x0201AAEA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201AAEA) - Data: 00  returns 0x01 (0000ms, 0406ms total)
T4070 002:215 JLINK_ReadMemEx(0x0201AAEA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201AAEA) - Data: 00  returns 0x01 (0001ms, 0407ms total)
T4070 002:218 JLINK_ReadMemEx(0x0201AB78, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201AB78) - Data: 34 12  returns 0x02 (0001ms, 0408ms total)
T4070 002:219 JLINK_ReadMemEx(0x0201AB78, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201AB78) - Data: 34 12  returns 0x02 (0000ms, 0408ms total)
T4070 002:219 JLINK_ReadMemEx(0x0201AB78, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201AB78) - Data: 34 12  returns 0x02 (0001ms, 0409ms total)
T4070 002:221 JLINK_ReadMemEx(0x0201AB72, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201AB72) - Data: 00  returns 0x01 (0000ms, 0409ms total)
T4070 002:221 JLINK_ReadMemEx(0x0201AB72, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201AB72) - Data: 00  returns 0x01 (0001ms, 0410ms total)
T4070 002:222 JLINK_ReadMemEx(0x0201AB72, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201AB72) - Data: 00  returns 0x01 (0001ms, 0411ms total)
T4070 002:225 JLINK_ReadMemEx(0x0201AA84, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201AA84) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0412ms total)
T4070 002:226 JLINK_ReadMemEx(0x0201AB88, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB88) - Data: 00 00 00 00  returns 0x04 (0001ms, 0413ms total)
T4070 002:227 JLINK_ReadMemEx(0x0201AB88, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB88) - Data: 00 00 00 00  returns 0x04 (0001ms, 0414ms total)
T4070 002:228 JLINK_ReadMemEx(0x0201AB88, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB88) - Data: 00 00 00 00  returns 0x04 (0000ms, 0414ms total)
T4070 002:233 JLINK_ReadMemEx(0x0201AB90, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB90) - Data: 00 00 00 00  returns 0x04 (0001ms, 0415ms total)
T4070 002:234 JLINK_ReadMemEx(0x0201AB90, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB90) - Data: 00 00 00 00  returns 0x04 (0001ms, 0416ms total)
T4070 002:235 JLINK_ReadMemEx(0x0201AB90, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB90) - Data: 00 00 00 00  returns 0x04 (0001ms, 0417ms total)
T4070 002:236 JLINK_ReadMemEx(0x0201AB61, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201AB61) - Data: 00  returns 0x01 (0001ms, 0418ms total)
T4070 002:237 JLINK_ReadMemEx(0x0201AB61, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201AB61) - Data: 00  returns 0x01 (0001ms, 0419ms total)
T4070 002:238 JLINK_ReadMemEx(0x0201AB61, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201AB61) - Data: 00  returns 0x01 (0000ms, 0419ms total)
T4070 002:239 JLINK_ReadMemEx(0x0201ABC8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201ABC8) - Data: 00 00 00 00  returns 0x04 (0001ms, 0420ms total)
T4070 002:240 JLINK_ReadMemEx(0x0201ABC8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201ABC8) - Data: 00 00 00 00  returns 0x04 (0001ms, 0421ms total)
T4070 002:241 JLINK_ReadMemEx(0x0201ABC8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201ABC8) - Data: 00 00 00 00  returns 0x04 (0001ms, 0422ms total)
T4070 002:242 JLINK_ReadMemEx(0x0201AB8C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB8C) - Data: 00 00 00 00  returns 0x04 (0001ms, 0423ms total)
T4070 002:243 JLINK_ReadMemEx(0x0201AB8C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB8C) - Data: 00 00 00 00  returns 0x04 (0001ms, 0424ms total)
T4070 002:244 JLINK_ReadMemEx(0x0201AB8C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB8C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0424ms total)
T4070 002:245 JLINK_ReadMemEx(0x0201AB94, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB94) - Data: 00 00 00 00  returns 0x04 (0000ms, 0424ms total)
T4070 002:245 JLINK_ReadMemEx(0x0201AB94, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB94) - Data: 00 00 00 00  returns 0x04 (0001ms, 0425ms total)
T4070 002:246 JLINK_ReadMemEx(0x0201AB94, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB94) - Data: 00 00 00 00  returns 0x04 (0001ms, 0426ms total)
T4070 002:247 JLINK_ReadMemEx(0x0201AB90, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB90) - Data: 00 00 00 00  returns 0x04 (0001ms, 0427ms total)
T4070 002:248 JLINK_ReadMemEx(0x0201AB90, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB90) - Data: 00 00 00 00  returns 0x04 (0001ms, 0428ms total)
T4070 002:249 JLINK_ReadMemEx(0x0201AB90, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB90) - Data: 00 00 00 00  returns 0x04 (0001ms, 0429ms total)
T4070 002:250 JLINK_ReadMemEx(0x0201AB6F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201AB6F) - Data: 00  returns 0x01 (0001ms, 0430ms total)
T4070 002:251 JLINK_ReadMemEx(0x0201AB6F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201AB6F) - Data: 00  returns 0x01 (0001ms, 0431ms total)
T4070 002:252 JLINK_ReadMemEx(0x0201AB6F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201AB6F) - Data: 00  returns 0x01 (0000ms, 0431ms total)
T4070 002:254 JLINK_ReadMemEx(0x0201A938, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A938) - Data: 00 76 27 43  returns 0x04 (0000ms, 0431ms total)
T4070 002:255 JLINK_ReadMemEx(0x0201A938, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A938) - Data: 00 76 27 43  returns 0x04 (0000ms, 0432ms total)
T4070 002:255 JLINK_ReadMemEx(0x0201A938, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A938) - Data: 00 76 27 43  returns 0x04 (0001ms, 0433ms total)
T4070 002:257 JLINK_ReadMemEx(0x0201AB76, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201AB76) - Data: 00 00  returns 0x02 (0000ms, 0433ms total)
T4070 002:257 JLINK_ReadMemEx(0x0201AB76, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201AB76) - Data: 00 00  returns 0x02 (0001ms, 0434ms total)
T4070 002:258 JLINK_ReadMemEx(0x0201AB76, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201AB76) - Data: 00 00  returns 0x02 (0001ms, 0435ms total)
T4070 002:259 JLINK_ReadMemEx(0x0201A940, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x0201A940) - Data: 39 EB 25 9C 5F 0A 8F 40  returns 0x08 (0001ms, 0436ms total)
T4070 002:260 JLINK_ReadMemEx(0x0201A940, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x0201A940) - Data: 39 EB 25 9C 5F 0A 8F 40  returns 0x08 (0001ms, 0437ms total)
T4070 002:261 JLINK_ReadMemEx(0x0201A940, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x0201A940) - Data: 39 EB 25 9C 5F 0A 8F 40  returns 0x08 (0001ms, 0438ms total)
T4070 002:262 JLINK_ReadMemEx(0x0201A948, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x0201A948) - Data: 00 00 00 00 AD 21 41 40  returns 0x08 (0001ms, 0439ms total)
T4070 002:263 JLINK_ReadMemEx(0x0201A948, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x0201A948) - Data: 00 00 00 00 AD 21 41 40  returns 0x08 (0001ms, 0440ms total)
T4070 002:264 JLINK_ReadMemEx(0x0201A948, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x0201A948) - Data: 00 00 00 00 AD 21 41 40  returns 0x08 (0000ms, 0440ms total)
T4070 002:280 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0441ms total)
T4070 002:281 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0442ms total)
T4070 002:282 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 0442ms total)
T4070 002:286 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 0442ms total)
T4070 002:287 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 0443ms total)
T4070 002:287 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0444ms total)
T4070 002:295 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0445ms total)
T4070 002:296 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 0445ms total)
T4070 002:296 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0446ms total)
T4070 002:301 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0447ms total)
T4070 002:302 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 0447ms total)
T4070 002:302 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0448ms total)
T2890 002:367 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0001ms, 0449ms total)
T2890 002:368 JLINK_SetBPEx(Addr = 0x0001001C, Type = 0xFFFFFFF2)  returns 0x00000001 (0000ms, 0449ms total)
T2890 002:368 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, 0454ms total)
T2890 002:474 JLINK_IsHalted()  returns TRUE (0003ms, 0457ms total)
T2890 002:477 JLINK_Halt()  returns 0x00 (0000ms, 0454ms total)
T2890 002:477 JLINK_IsHalted()  returns TRUE (0000ms, 0454ms total)
T2890 002:477 JLINK_IsHalted()  returns TRUE (0000ms, 0454ms total)
T2890 002:477 JLINK_IsHalted()  returns TRUE (0000ms, 0454ms total)
T2890 002:477 JLINK_ReadReg(R15 (PC))  returns 0x0001001C (0000ms, 0454ms total)
T2890 002:477 JLINK_ReadReg(XPSR)  returns 0x61000000 (0001ms, 0455ms total)
T2890 002:478 JLINK_ClrBPEx(BPHandle = 0x00000001)  returns 0x00 (0000ms, 0455ms total)
T2890 002:478 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0000ms, 0455ms total)
T2890 002:478 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 0456ms total)
T2890 002:479 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0001ms, 0457ms total)
T2890 002:480 JLINK_ReadReg(R0)  returns 0x0001001D (0000ms, 0457ms total)
T2890 002:480 JLINK_ReadReg(R1)  returns 0x02025C04 (0000ms, 0457ms total)
T2890 002:480 JLINK_ReadReg(R2)  returns 0x00000000 (0000ms, 0457ms total)
T2890 002:480 JLINK_ReadReg(R3)  returns 0x00015475 (0000ms, 0457ms total)
T2890 002:480 JLINK_ReadReg(R4)  returns 0x00019694 (0000ms, 0457ms total)
T2890 002:480 JLINK_ReadReg(R5)  returns 0x00000001 (0000ms, 0457ms total)
T2890 002:480 JLINK_ReadReg(R6)  returns 0x00019694 (0000ms, 0457ms total)
T2890 002:480 JLINK_ReadReg(R7)  returns 0x02000000 (0000ms, 0457ms total)
T2890 002:480 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 0457ms total)
T2890 002:480 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 0457ms total)
T2890 002:480 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 0457ms total)
T2890 002:480 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 0457ms total)
T2890 002:480 JLINK_ReadReg(R12)  returns 0x00000003 (0000ms, 0457ms total)
T2890 002:480 JLINK_ReadReg(R13 (SP))  returns 0x0202A000 (0000ms, 0457ms total)
T2890 002:480 JLINK_ReadReg(R14)  returns 0x00000CFD (0000ms, 0457ms total)
T2890 002:480 JLINK_ReadReg(R15 (PC))  returns 0x0001001C (0000ms, 0457ms total)
T2890 002:480 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 0457ms total)
T2890 002:480 JLINK_ReadReg(MSP)  returns 0x0202A000 (0000ms, 0457ms total)
T2890 002:480 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 0457ms total)
T2890 002:480 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0457ms total)
T4070 002:483 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 0457ms total)
T4070 002:483 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0458ms total)
T4070 002:484 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0459ms total)
T4070 002:485 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0460ms total)
T2890 022:978 JLINK_ReadMemEx(0x0001001C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00010000) -- Updating DA cache (64 bytes @ 0x00010000) -- Read from DA cache (2 bytes @ 0x0001001C) - Data: 82 B0  returns 0x02 (0001ms, 0461ms total)
T2890 022:979 JLINK_Go() -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) (0004ms, 0465ms total)
T2890 023:084 JLINK_IsHalted()  returns FALSE (0000ms, 0465ms total)
T2890 023:185 JLINK_IsHalted()  returns FALSE (0000ms, 0465ms total)
T2890 023:286 JLINK_IsHalted()  returns FALSE (0000ms, 0465ms total)
T2890 023:387 JLINK_IsHalted()  returns FALSE (0000ms, 0465ms total)
T2890 023:489 JLINK_IsHalted()  returns FALSE (0000ms, 0465ms total)
T4070 023:592 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0466ms total)
T4070 023:593 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0467ms total)
T4070 023:594 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0468ms total)
T4070 023:595 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 0468ms total)
T2890 023:595 JLINK_IsHalted()  returns FALSE (0001ms, 0469ms total)
T2890 023:697 JLINK_IsHalted()  returns FALSE (0000ms, 0468ms total)
T2890 023:798 JLINK_IsHalted()  returns FALSE (0000ms, 0468ms total)
T2890 023:900 JLINK_IsHalted()  returns FALSE (0000ms, 0468ms total)
T2890 024:001 JLINK_IsHalted()  returns FALSE (0000ms, 0468ms total)
T2890 024:102 JLINK_IsHalted()  returns FALSE (0001ms, 0469ms total)
T4070 024:205 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0469ms total)
T4070 024:206 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 0469ms total)
T4070 024:207 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 0469ms total)
T4070 024:207 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0470ms total)
T2890 024:208 JLINK_IsHalted()  returns FALSE (0001ms, 0471ms total)
T2890 024:311 JLINK_IsHalted()  returns FALSE (0000ms, 0470ms total)
T2890 024:412 JLINK_IsHalted()  returns FALSE (0000ms, 0470ms total)
T2890 024:513 JLINK_IsHalted()  returns FALSE (0000ms, 0470ms total)
T2890 024:615 JLINK_IsHalted()  returns FALSE (0000ms, 0470ms total)
T4070 024:718 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0471ms total)
T4070 024:719 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 0471ms total)
T4070 024:720 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0472ms total)
T4070 024:721 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0473ms total)
T2890 024:722 JLINK_IsHalted()  returns FALSE (0000ms, 0473ms total)
T2890 024:823 JLINK_IsHalted()  returns FALSE (0000ms, 0473ms total)
T2890 024:924 JLINK_IsHalted()  returns FALSE (0000ms, 0473ms total)
T2890 025:026 JLINK_IsHalted()  returns FALSE (0000ms, 0473ms total)
T2890 025:127 JLINK_IsHalted()  returns FALSE (0000ms, 0473ms total)
T2890 025:228 JLINK_IsHalted()  returns FALSE (0000ms, 0473ms total)
T4070 025:330 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0474ms total)
T4070 025:331 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0475ms total)
T4070 025:332 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0476ms total)
T4070 025:333 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 0476ms total)
T2890 025:333 JLINK_IsHalted()  returns FALSE (0001ms, 0477ms total)
T2890 025:436 JLINK_IsHalted()  returns FALSE (0000ms, 0476ms total)
T2890 025:537 JLINK_IsHalted()  returns FALSE (0000ms, 0476ms total)
T2890 025:638 JLINK_IsHalted()  returns FALSE (0000ms, 0476ms total)
T2890 025:740 JLINK_IsHalted()  returns FALSE (0000ms, 0476ms total)
T4070 025:843 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0477ms total)
T4070 025:844 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 0477ms total)
T4070 025:845 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 0477ms total)
T4070 025:845 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0478ms total)
T2890 025:846 JLINK_IsHalted()  returns FALSE (0001ms, 0479ms total)
T2890 025:947 JLINK_IsHalted()  returns FALSE (0000ms, 0478ms total)
T2890 026:049 JLINK_IsHalted()  returns FALSE (0000ms, 0478ms total)
T2890 026:150 JLINK_IsHalted()  returns FALSE (0000ms, 0478ms total)
T2890 026:251 JLINK_IsHalted()  returns FALSE (0000ms, 0478ms total)
T2890 026:353 JLINK_IsHalted()  returns FALSE (0000ms, 0478ms total)
T4070 026:456 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0479ms total)
T4070 026:457 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 0479ms total)
T4070 026:458 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 0479ms total)
T4070 026:458 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0480ms total)
T2890 026:459 JLINK_IsHalted()  returns FALSE (0001ms, 0481ms total)
T2890 026:561 JLINK_IsHalted()  returns FALSE (0000ms, 0480ms total)
T2890 026:662 JLINK_IsHalted()  returns FALSE (0000ms, 0480ms total)
T2890 026:764 JLINK_IsHalted()  returns FALSE (0000ms, 0480ms total)
T2890 026:865 JLINK_IsHalted()  returns FALSE (0000ms, 0480ms total)
T4070 026:968 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0481ms total)
T4070 026:969 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 0481ms total)
T4070 026:970 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 0481ms total)
T4070 026:970 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0482ms total)
T2890 026:971 JLINK_IsHalted()  returns FALSE (0001ms, 0483ms total)
T2890 027:073 JLINK_IsHalted()  returns FALSE (0000ms, 0482ms total)
T2890 027:175 JLINK_IsHalted()  returns FALSE (0000ms, 0482ms total)
T2890 027:276 JLINK_IsHalted()  returns FALSE (0000ms, 0482ms total)
T2890 027:377 JLINK_IsHalted()  returns FALSE (0000ms, 0482ms total)
T2890 027:478 JLINK_IsHalted()  returns FALSE (0000ms, 0482ms total)
T4070 027:581 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0483ms total)
T4070 027:582 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0484ms total)
T4070 027:583 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0485ms total)
T4070 027:584 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 0485ms total)
T2890 027:584 JLINK_IsHalted()  returns FALSE (0001ms, 0486ms total)
T2890 027:686 JLINK_IsHalted()  returns FALSE (0000ms, 0485ms total)
T2890 027:787 JLINK_IsHalted()  returns FALSE (0001ms, 0486ms total)
T2890 027:889 JLINK_IsHalted()  returns FALSE (0000ms, 0485ms total)
T2890 027:990 JLINK_IsHalted()  returns FALSE (0000ms, 0485ms total)
T4070 028:095 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0486ms total)
T4070 028:096 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0487ms total)
T4070 028:097 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0488ms total)
T4070 028:098 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 0488ms total)
T2890 028:098 JLINK_IsHalted()  returns FALSE (0001ms, 0489ms total)
T2890 028:200 JLINK_IsHalted()  returns FALSE (0000ms, 0488ms total)
T2890 028:301 JLINK_IsHalted()  returns FALSE (0000ms, 0488ms total)
T2890 028:402 JLINK_IsHalted()  returns FALSE (0000ms, 0488ms total)
T2890 028:504 JLINK_IsHalted()  returns FALSE (0000ms, 0488ms total)
T4070 028:607 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 0488ms total)
T4070 028:607 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0489ms total)
T4070 028:608 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0490ms total)
T4070 028:609 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0491ms total)
T2890 028:610 JLINK_IsHalted()  returns FALSE (0000ms, 0491ms total)
T2890 028:712 JLINK_IsHalted()  returns FALSE (0000ms, 0491ms total)
T2890 028:813 JLINK_IsHalted()  returns FALSE (0000ms, 0491ms total)
T2890 028:914 JLINK_IsHalted()  returns FALSE (0000ms, 0491ms total)
T2890 029:016 JLINK_IsHalted()  returns FALSE (0000ms, 0491ms total)
T2890 029:117 JLINK_IsHalted()  returns FALSE (0000ms, 0491ms total)
T4070 029:220 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0492ms total)
T4070 029:221 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 0492ms total)
T4070 029:222 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 0492ms total)
T4070 029:222 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0493ms total)
T2890 029:223 JLINK_IsHalted()  returns FALSE (0001ms, 0494ms total)
T2890 029:324 JLINK_IsHalted()  returns FALSE (0000ms, 0493ms total)
T2890 029:426 JLINK_IsHalted()  returns FALSE (0000ms, 0493ms total)
T2890 029:527 JLINK_IsHalted()  returns FALSE (0000ms, 0493ms total)
T2890 029:628 JLINK_IsHalted()  returns FALSE (0000ms, 0493ms total)
T2890 029:729 JLINK_IsHalted()  returns FALSE (0000ms, 0493ms total)
T4070 029:833 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0494ms total)
T4070 029:834 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0495ms total)
T4070 029:835 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0496ms total)
T4070 029:836 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 0496ms total)
T2890 029:836 JLINK_IsHalted()  returns FALSE (0001ms, 0497ms total)
T2890 029:938 JLINK_IsHalted()  returns FALSE (0000ms, 0496ms total)
T2890 030:039 JLINK_IsHalted()  returns FALSE (0000ms, 0496ms total)
T2890 030:141 JLINK_IsHalted()  returns FALSE (0000ms, 0496ms total)
T2890 030:242 JLINK_IsHalted()  returns FALSE (0000ms, 0496ms total)
T4070 030:345 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 0496ms total)
T4070 030:346 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 0496ms total)
T4070 030:346 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0497ms total)
T4070 030:347 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0498ms total)
T2890 030:348 JLINK_IsHalted()  returns FALSE (0001ms, 0499ms total)
T2890 030:449 JLINK_IsHalted()  returns FALSE (0000ms, 0498ms total)
T2890 030:551 JLINK_IsHalted()  returns FALSE (0000ms, 0498ms total)
T2890 030:652 JLINK_IsHalted()  returns FALSE (0000ms, 0498ms total)
T2890 030:753 JLINK_IsHalted()  returns FALSE (0000ms, 0498ms total)
T2890 030:854 JLINK_IsHalted()  returns FALSE (0000ms, 0498ms total)
T4070 030:957 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0499ms total)
T4070 030:958 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0500ms total)
T4070 030:959 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0501ms total)
T4070 030:960 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 0501ms total)
T2890 030:961 JLINK_IsHalted()  returns FALSE (0000ms, 0501ms total)
T2890 031:061 JLINK_IsHalted()  returns FALSE (0000ms, 0501ms total)
T2890 031:163 JLINK_IsHalted()  returns FALSE (0000ms, 0501ms total)
T2890 031:264 JLINK_IsHalted()  returns FALSE (0000ms, 0501ms total)
T2890 031:365 JLINK_IsHalted()  returns FALSE (0000ms, 0501ms total)
T4070 031:468 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0502ms total)
T4070 031:469 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0503ms total)
T4070 031:470 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0504ms total)
T4070 031:471 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 0504ms total)
T2890 031:472 JLINK_IsHalted()  returns FALSE (0000ms, 0504ms total)
T2890 031:573 JLINK_IsHalted()  returns FALSE (0000ms, 0504ms total)
T2890 031:674 JLINK_IsHalted()  returns FALSE (0000ms, 0504ms total)
T2890 031:775 JLINK_IsHalted()  returns FALSE (0000ms, 0504ms total)
T2890 031:876 JLINK_IsHalted()  returns FALSE (0000ms, 0504ms total)
T2890 031:977 JLINK_IsHalted()  returns FALSE (0000ms, 0504ms total)
T4070 032:081 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 0504ms total)
T4070 032:081 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0505ms total)
T4070 032:082 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0506ms total)
T4070 032:083 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0507ms total)
T2890 032:084 JLINK_IsHalted()  returns FALSE (0000ms, 0507ms total)
T2890 032:185 JLINK_IsHalted()  returns FALSE (0000ms, 0507ms total)
T2890 032:286 JLINK_IsHalted()  returns FALSE (0000ms, 0507ms total)
T2890 032:387 JLINK_IsHalted()  returns FALSE (0000ms, 0507ms total)
T2890 032:489 JLINK_IsHalted()  returns FALSE (0000ms, 0507ms total)
T4070 032:592 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0508ms total)
T4070 032:593 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 0508ms total)
T4070 032:594 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 0508ms total)
T4070 032:594 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0509ms total)
T2890 032:595 JLINK_IsHalted()  returns FALSE (0001ms, 0510ms total)
T2890 032:697 JLINK_IsHalted()  returns FALSE (0000ms, 0509ms total)
T2890 032:798 JLINK_IsHalted()  returns FALSE (0000ms, 0509ms total)
T2890 032:900 JLINK_IsHalted()  returns FALSE (0000ms, 0509ms total)
T2890 033:001 JLINK_IsHalted()  returns FALSE (0000ms, 0509ms total)
T2890 033:102 JLINK_IsHalted()  returns FALSE (0000ms, 0509ms total)
T4070 033:206 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 0509ms total)
T4070 033:206 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0510ms total)
T4070 033:208 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 0510ms total)
T4070 033:208 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0511ms total)
T2890 033:209 JLINK_IsHalted()  returns FALSE (0001ms, 0512ms total)
T2890 033:311 JLINK_IsHalted()  returns FALSE (0000ms, 0511ms total)
T2890 033:412 JLINK_IsHalted()  returns FALSE (0000ms, 0511ms total)
T2890 033:513 JLINK_IsHalted()  returns FALSE (0000ms, 0511ms total)
T2890 033:615 JLINK_IsHalted()  returns FALSE (0000ms, 0511ms total)
T4070 033:717 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0512ms total)
T4070 033:718 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0513ms total)
T4070 033:719 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0514ms total)
T4070 033:720 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0515ms total)
T2890 033:721 JLINK_IsHalted()  returns FALSE (0000ms, 0515ms total)
T2890 033:823 JLINK_IsHalted()  returns FALSE (0001ms, 0516ms total)
T2890 033:924 JLINK_IsHalted()  returns FALSE (0000ms, 0515ms total)
T2890 034:026 JLINK_IsHalted()  returns FALSE (0000ms, 0515ms total)
T2890 034:127 JLINK_IsHalted()  returns FALSE (0000ms, 0515ms total)
T2890 034:229 JLINK_IsHalted()  returns FALSE (0000ms, 0515ms total)
T4070 034:331 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0516ms total)
T4070 034:332 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0517ms total)
T4070 034:333 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0518ms total)
T4070 034:334 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 0518ms total)
T2890 034:335 JLINK_IsHalted()  returns FALSE (0000ms, 0519ms total)
T2890 034:436 JLINK_IsHalted()  returns FALSE (0000ms, 0519ms total)
T2890 034:538 JLINK_IsHalted()  returns FALSE (0000ms, 0519ms total)
T2890 034:639 JLINK_IsHalted()  returns FALSE (0000ms, 0519ms total)
T2890 034:740 JLINK_IsHalted()  returns FALSE (0000ms, 0519ms total)
T4070 034:843 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 0519ms total)
T4070 034:843 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0520ms total)
T4070 034:844 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0521ms total)
T4070 034:845 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0522ms total)
T2890 034:846 JLINK_IsHalted()  returns FALSE (0001ms, 0523ms total)
T2890 034:947 JLINK_IsHalted()  returns FALSE (0000ms, 0522ms total)
T2890 035:048 JLINK_IsHalted()  returns FALSE (0000ms, 0522ms total)
T2890 035:150 JLINK_IsHalted()  returns FALSE (0000ms, 0522ms total)
T2890 035:251 JLINK_IsHalted()  returns FALSE (0000ms, 0522ms total)
T2890 035:353 JLINK_IsHalted()  returns FALSE (0000ms, 0522ms total)
T4070 035:455 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0523ms total)
T4070 035:456 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0524ms total)
T4070 035:457 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0525ms total)
T4070 035:458 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0526ms total)
T2890 035:459 JLINK_IsHalted()  returns FALSE (0000ms, 0526ms total)
T2890 035:560 JLINK_IsHalted()  returns FALSE (0000ms, 0526ms total)
T2890 035:662 JLINK_IsHalted()  returns FALSE (0000ms, 0526ms total)
T2890 035:763 JLINK_IsHalted()  returns FALSE (0000ms, 0526ms total)
T2890 035:864 JLINK_IsHalted()  returns FALSE (0000ms, 0526ms total)
T4070 035:966 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0527ms total)
T4070 035:967 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0528ms total)
T4070 035:968 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0529ms total)
T4070 035:969 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 0529ms total)
T2890 035:969 JLINK_IsHalted()  returns FALSE (0001ms, 0530ms total)
T2890 036:072 JLINK_IsHalted()  returns FALSE (0000ms, 0529ms total)
T2890 036:173 JLINK_IsHalted()  returns FALSE (0000ms, 0529ms total)
T2890 036:274 JLINK_IsHalted()  returns FALSE (0000ms, 0529ms total)
T2890 036:375 JLINK_IsHalted()  returns FALSE (0000ms, 0529ms total)
T2890 036:477 JLINK_IsHalted()  returns FALSE (0000ms, 0529ms total)
T4070 036:579 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0530ms total)
T4070 036:580 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0531ms total)
T4070 036:581 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0532ms total)
T4070 036:582 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0533ms total)
T2890 036:583 JLINK_IsHalted()  returns FALSE (0000ms, 0533ms total)
T2890 036:684 JLINK_IsHalted()  returns FALSE (0000ms, 0533ms total)
T2890 036:785 JLINK_IsHalted()  returns FALSE (0000ms, 0533ms total)
T2890 036:887 JLINK_IsHalted()  returns FALSE (0000ms, 0533ms total)
T2890 036:988 JLINK_IsHalted()  returns FALSE (0000ms, 0533ms total)
T4070 037:090 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0534ms total)
T4070 037:091 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0535ms total)
T4070 037:092 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0536ms total)
T4070 037:093 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0537ms total)
T2890 037:094 JLINK_IsHalted()  returns FALSE (0001ms, 0538ms total)
T2890 037:196 JLINK_IsHalted()  returns FALSE (0000ms, 0537ms total)
T2890 037:297 JLINK_IsHalted()  returns FALSE (0000ms, 0537ms total)
T2890 037:398 JLINK_IsHalted()  returns FALSE (0000ms, 0537ms total)
T2890 037:499 JLINK_IsHalted()  returns FALSE (0000ms, 0537ms total)
T2890 037:601 JLINK_IsHalted()  returns FALSE (0000ms, 0537ms total)
T4070 037:703 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0538ms total)
T4070 037:704 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0539ms total)
T4070 037:705 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0540ms total)
T4070 037:706 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 0540ms total)
T2890 037:706 JLINK_IsHalted()  returns FALSE (0001ms, 0541ms total)
T2890 037:808 JLINK_IsHalted()  returns FALSE (0000ms, 0540ms total)
T2890 037:910 JLINK_IsHalted()  returns FALSE (0000ms, 0540ms total)
T2890 038:011 JLINK_IsHalted()  returns FALSE (0000ms, 0540ms total)
T2890 038:112 JLINK_IsHalted()  returns FALSE (0000ms, 0540ms total)
T2890 038:213 JLINK_IsHalted()  returns FALSE (0000ms, 0540ms total)
T4070 038:317 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0541ms total)
T4070 038:318 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 0541ms total)
T4070 038:319 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 0541ms total)
T4070 038:319 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0542ms total)
T2890 038:320 JLINK_IsHalted()  returns FALSE (0001ms, 0543ms total)
T2890 038:422 JLINK_IsHalted()  returns FALSE (0000ms, 0542ms total)
T2890 038:523 JLINK_IsHalted()  returns FALSE (0000ms, 0542ms total)
T2890 038:624 JLINK_IsHalted()  returns FALSE (0000ms, 0542ms total)
T2890 038:726 JLINK_IsHalted()  returns FALSE (0000ms, 0542ms total)
T4070 038:828 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0543ms total)
T4070 038:829 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0544ms total)
T4070 038:831 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 0544ms total)
T4070 038:831 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0545ms total)
T2890 038:832 JLINK_IsHalted()  returns FALSE (0001ms, 0546ms total)
T2890 038:934 JLINK_IsHalted()  returns FALSE (0000ms, 0545ms total)
T2890 039:035 JLINK_IsHalted()  returns FALSE (0000ms, 0545ms total)
T4070 039:060 JLINK_ReadMemEx(0x0201A01C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A01C) - Data: 00  returns 0x01 (0001ms, 0546ms total)
T2890 039:136 JLINK_IsHalted()  returns FALSE (0000ms, 0546ms total)
T2890 039:237 JLINK_IsHalted()  returns FALSE (0000ms, 0546ms total)
T2890 039:339 JLINK_IsHalted()  returns FALSE (0000ms, 0546ms total)
T4070 039:442 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 0546ms total)
T4070 039:442 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0547ms total)
T4070 039:443 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0548ms total)
T4070 039:444 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0549ms total)
T2890 039:445 JLINK_IsHalted()  returns FALSE (0001ms, 0550ms total)
T2890 039:546 JLINK_IsHalted()  returns FALSE (0000ms, 0549ms total)
T2890 039:648 JLINK_IsHalted()  returns FALSE (0000ms, 0549ms total)
T2890 039:749 JLINK_IsHalted()  returns FALSE (0000ms, 0549ms total)
T2890 039:850 JLINK_IsHalted()  returns FALSE (0000ms, 0549ms total)
T4070 039:952 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0550ms total)
T4070 039:953 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0551ms total)
T4070 039:954 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0552ms total)
T4070 039:955 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0553ms total)
T2890 039:956 JLINK_IsHalted()  returns FALSE (0000ms, 0553ms total)
T2890 040:058 JLINK_IsHalted()  returns FALSE (0000ms, 0553ms total)
T2890 040:159 JLINK_IsHalted()  returns FALSE (0000ms, 0553ms total)
T2890 040:260 JLINK_IsHalted()  returns FALSE (0000ms, 0553ms total)
T2890 040:361 JLINK_IsHalted()  returns FALSE (0000ms, 0553ms total)
T2890 040:463 JLINK_IsHalted()  returns FALSE (0000ms, 0553ms total)
T4070 040:566 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0554ms total)
T4070 040:567 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0555ms total)
T4070 040:568 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0556ms total)
T4070 040:569 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 0556ms total)
T2890 040:569 JLINK_IsHalted()  returns FALSE (0001ms, 0557ms total)
T2890 040:671 JLINK_IsHalted()  returns FALSE (0000ms, 0556ms total)
T2890 040:772 JLINK_IsHalted()  returns FALSE (0000ms, 0556ms total)
T2890 040:873 JLINK_IsHalted()  returns FALSE (0000ms, 0556ms total)
T2890 040:975 JLINK_IsHalted()  returns FALSE (0000ms, 0556ms total)
T4070 041:077 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0557ms total)
T4070 041:078 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0558ms total)
T4070 041:079 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0559ms total)
T4070 041:080 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0560ms total)
T2890 041:081 JLINK_IsHalted()  returns FALSE (0000ms, 0560ms total)
T2890 041:182 JLINK_IsHalted()  returns FALSE (0000ms, 0560ms total)
T2890 041:283 JLINK_IsHalted()  returns FALSE (0000ms, 0560ms total)
T2890 041:385 JLINK_IsHalted()  returns FALSE (0000ms, 0560ms total)
T2890 041:486 JLINK_IsHalted()  returns FALSE (0000ms, 0560ms total)
T2890 041:587 JLINK_IsHalted()  returns FALSE (0000ms, 0560ms total)
T4070 041:690 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0561ms total)
T4070 041:691 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0562ms total)
T4070 041:692 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0563ms total)
T4070 041:693 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 0563ms total)
T2890 041:694 JLINK_IsHalted()  returns FALSE (0000ms, 0563ms total)
T2890 041:795 JLINK_IsHalted()  returns FALSE (0000ms, 0563ms total)
T2890 041:896 JLINK_IsHalted()  returns FALSE (0000ms, 0563ms total)
T2890 041:997 JLINK_IsHalted()  returns FALSE (0000ms, 0563ms total)
T2890 042:099 JLINK_IsHalted()  returns FALSE (0000ms, 0563ms total)
T4070 042:202 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0564ms total)
T4070 042:203 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0565ms total)
T4070 042:204 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0566ms total)
T4070 042:205 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0567ms total)
T2890 042:206 JLINK_IsHalted()  returns FALSE (0000ms, 0567ms total)
T2890 042:307 JLINK_IsHalted()  returns FALSE (0000ms, 0567ms total)
T2890 042:408 JLINK_IsHalted()  returns FALSE (0000ms, 0567ms total)
T2890 042:510 JLINK_IsHalted()  returns FALSE (0000ms, 0567ms total)
T2890 042:611 JLINK_IsHalted()  returns FALSE (0000ms, 0567ms total)
T2890 042:712 JLINK_IsHalted()  returns FALSE (0001ms, 0568ms total)
T4070 042:814 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0568ms total)
T4070 042:815 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0569ms total)
T4070 042:816 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0570ms total)
T4070 042:817 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0571ms total)
T2890 042:818 JLINK_IsHalted()  returns FALSE (0000ms, 0571ms total)
T2890 042:920 JLINK_IsHalted()  returns FALSE (0000ms, 0571ms total)
T2890 043:021 JLINK_IsHalted()  returns FALSE (0000ms, 0571ms total)
T2890 043:122 JLINK_IsHalted()  returns FALSE (0000ms, 0571ms total)
T2890 043:224 JLINK_IsHalted()  returns FALSE (0000ms, 0571ms total)
T4070 043:327 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0572ms total)
T4070 043:328 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 0572ms total)
T4070 043:329 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 0572ms total)
T4070 043:329 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0573ms total)
T2890 043:330 JLINK_IsHalted()  returns FALSE (0001ms, 0574ms total)
T2890 043:432 JLINK_IsHalted()  returns FALSE (0000ms, 0573ms total)
T2890 043:534 JLINK_IsHalted()  returns FALSE (0000ms, 0573ms total)
T2890 043:635 JLINK_IsHalted()  returns FALSE (0000ms, 0573ms total)
T2890 043:736 JLINK_IsHalted()  returns FALSE (0000ms, 0573ms total)
T2890 043:837 JLINK_IsHalted()  returns FALSE (0000ms, 0573ms total)
T4070 043:940 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0574ms total)
T4070 043:941 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0575ms total)
T4070 043:942 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 0575ms total)
T4070 043:942 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0576ms total)
T2890 043:943 JLINK_IsHalted()  returns FALSE (0001ms, 0577ms total)
T2890 044:045 JLINK_IsHalted()  returns FALSE (0000ms, 0576ms total)
T2890 044:147 JLINK_IsHalted()  returns FALSE (0000ms, 0576ms total)
T2890 044:248 JLINK_IsHalted()  returns FALSE (0000ms, 0576ms total)
T2890 044:350 JLINK_IsHalted()  returns FALSE (0000ms, 0576ms total)
T4070 044:452 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0577ms total)
T4070 044:453 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0578ms total)
T4070 044:454 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0579ms total)
T4070 044:455 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0580ms total)
T2890 044:456 JLINK_IsHalted()  returns FALSE (0000ms, 0580ms total)
T2890 044:557 JLINK_IsHalted()  returns FALSE (0000ms, 0580ms total)
T2890 044:658 JLINK_IsHalted()  returns FALSE (0000ms, 0580ms total)
T2890 044:760 JLINK_IsHalted()  returns FALSE (0000ms, 0580ms total)
T2890 044:861 JLINK_IsHalted()  returns FALSE (0000ms, 0580ms total)
T2890 044:962 JLINK_IsHalted()  returns FALSE (0000ms, 0580ms total)
T4070 045:064 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0581ms total)
T4070 045:065 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0582ms total)
T4070 045:066 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0002ms, 0584ms total)
T4070 045:068 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0585ms total)
T2890 045:069 JLINK_IsHalted()  returns FALSE (0000ms, 0585ms total)
T2890 045:170 JLINK_IsHalted()  returns FALSE (0000ms, 0585ms total)
T2890 045:271 JLINK_IsHalted()  returns FALSE (0000ms, 0585ms total)
T2890 045:372 JLINK_IsHalted()  returns FALSE (0000ms, 0585ms total)
T2890 045:474 JLINK_IsHalted()  returns FALSE (0000ms, 0585ms total)
T4070 045:576 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0586ms total)
T4070 045:577 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0587ms total)
T4070 045:578 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0588ms total)
T4070 045:579 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0589ms total)
T2890 045:580 JLINK_IsHalted()  returns FALSE (0000ms, 0589ms total)
T2890 045:681 JLINK_IsHalted()  returns FALSE (0000ms, 0589ms total)
T2890 045:782 JLINK_IsHalted()  returns FALSE (0000ms, 0589ms total)
T2890 045:884 JLINK_IsHalted()  returns FALSE (0000ms, 0589ms total)
T2890 045:985 JLINK_IsHalted()  returns FALSE (0009ms, 0598ms total)
T4070 046:096 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0590ms total)
T4070 046:097 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0591ms total)
T4070 046:098 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0592ms total)
T4070 046:099 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0593ms total)
T2890 046:100 JLINK_IsHalted()  returns FALSE (0000ms, 0593ms total)
T2890 046:201 JLINK_IsHalted()  returns FALSE (0000ms, 0593ms total)
T2890 046:303 JLINK_IsHalted()  returns FALSE (0000ms, 0593ms total)
T2890 046:404 JLINK_IsHalted()  returns FALSE (0000ms, 0593ms total)
T2890 046:505 JLINK_IsHalted()  returns FALSE (0000ms, 0593ms total)
T4070 046:608 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0594ms total)
T4070 046:609 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0595ms total)
T4070 046:610 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0596ms total)
T4070 046:611 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0597ms total)
T2890 046:612 JLINK_IsHalted()  returns FALSE (0000ms, 0597ms total)
T2890 046:713 JLINK_IsHalted()  returns FALSE (0000ms, 0597ms total)
T2890 046:815 JLINK_IsHalted()  returns FALSE (0000ms, 0597ms total)
T2890 046:916 JLINK_IsHalted()  returns FALSE (0000ms, 0597ms total)
T2890 047:017 JLINK_IsHalted()  returns FALSE (0000ms, 0597ms total)
T2890 047:119 JLINK_IsHalted()  returns FALSE (0000ms, 0597ms total)
T4070 047:222 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 0597ms total)
T4070 047:222 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0598ms total)
T4070 047:223 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0599ms total)
T4070 047:224 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0600ms total)
T2890 047:225 JLINK_IsHalted()  returns FALSE (0001ms, 0601ms total)
T2890 047:326 JLINK_IsHalted()  returns FALSE (0000ms, 0600ms total)
T2890 047:427 JLINK_IsHalted()  returns FALSE (0000ms, 0600ms total)
T2890 047:528 JLINK_IsHalted()  returns FALSE (0000ms, 0600ms total)
T2890 047:630 JLINK_IsHalted()  returns FALSE (0000ms, 0600ms total)
T4070 047:732 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0601ms total)
T4070 047:733 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0602ms total)
T4070 047:734 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0603ms total)
T4070 047:735 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 0603ms total)
T2890 047:736 JLINK_IsHalted()  returns FALSE (0000ms, 0604ms total)
T2890 047:837 JLINK_IsHalted()  returns FALSE (0000ms, 0604ms total)
T2890 047:938 JLINK_IsHalted()  returns FALSE (0000ms, 0604ms total)
T2890 048:039 JLINK_IsHalted()  returns FALSE (0000ms, 0604ms total)
T2890 048:141 JLINK_IsHalted()  returns FALSE (0000ms, 0604ms total)
T2890 048:242 JLINK_IsHalted()  returns FALSE (0000ms, 0604ms total)
T4070 048:345 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0605ms total)
T4070 048:346 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0606ms total)
T4070 048:347 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0607ms total)
T4070 048:348 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 0607ms total)
T2890 048:348 JLINK_IsHalted()  returns FALSE (0001ms, 0608ms total)
T2890 048:450 JLINK_IsHalted()  returns FALSE (0000ms, 0607ms total)
T2890 048:552 JLINK_IsHalted()  returns FALSE (0000ms, 0607ms total)
T2890 048:653 JLINK_IsHalted()  returns FALSE (0000ms, 0607ms total)
T2890 048:755 JLINK_IsHalted()  returns FALSE (0000ms, 0607ms total)
T4070 048:858 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0608ms total)
T4070 048:859 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0609ms total)
T4070 048:860 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 0609ms total)
T4070 048:860 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0610ms total)
T2890 048:861 JLINK_IsHalted()  returns FALSE (0001ms, 0611ms total)
T2890 048:963 JLINK_IsHalted()  returns FALSE (0000ms, 0610ms total)
T2890 049:064 JLINK_IsHalted()  returns FALSE (0000ms, 0610ms total)
T2890 049:166 JLINK_IsHalted()  returns FALSE (0000ms, 0610ms total)
T2890 049:267 JLINK_IsHalted()  returns FALSE (0000ms, 0610ms total)
T2890 049:368 JLINK_IsHalted()  returns FALSE (0000ms, 0610ms total)
T4070 049:471 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0611ms total)
T4070 049:472 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 0611ms total)
T4070 049:473 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 0611ms total)
T4070 049:474 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 0611ms total)
T2890 049:474 JLINK_IsHalted()  returns FALSE (0001ms, 0612ms total)
T2890 049:576 JLINK_IsHalted()  returns FALSE (0000ms, 0611ms total)
T2890 049:677 JLINK_IsHalted()  returns FALSE (0000ms, 0611ms total)
T2890 049:778 JLINK_IsHalted()  returns FALSE (0000ms, 0611ms total)
T2890 049:879 JLINK_IsHalted()  returns FALSE (0000ms, 0611ms total)
T4070 049:982 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0612ms total)
T4070 049:983 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0613ms total)
T4070 049:984 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0614ms total)
T4070 049:985 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 0614ms total)
T2890 049:986 JLINK_IsHalted()  returns FALSE (0000ms, 0614ms total)
T2890 050:087 JLINK_IsHalted()  returns FALSE (0000ms, 0614ms total)
T2890 050:188 JLINK_IsHalted()  returns FALSE (0000ms, 0614ms total)
T2890 050:289 JLINK_IsHalted()  returns FALSE (0000ms, 0614ms total)
T2890 050:390 JLINK_IsHalted()  returns FALSE (0000ms, 0614ms total)
T2890 050:491 JLINK_IsHalted()  returns FALSE (0000ms, 0614ms total)
T4070 050:594 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0615ms total)
T4070 050:595 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0616ms total)
T4070 050:596 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0617ms total)
T4070 050:597 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 0617ms total)
T2890 050:597 JLINK_IsHalted()  returns FALSE (0001ms, 0618ms total)
T2890 050:699 JLINK_IsHalted()  returns FALSE (0000ms, 0617ms total)
T2890 050:800 JLINK_IsHalted()  returns FALSE (0000ms, 0617ms total)
T2890 050:902 JLINK_IsHalted()  returns FALSE (0000ms, 0617ms total)
T2890 051:003 JLINK_IsHalted()  returns FALSE (0000ms, 0617ms total)
T2890 051:104 JLINK_IsHalted()  returns FALSE (0001ms, 0618ms total)
T4070 051:208 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0618ms total)
T4070 051:209 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0619ms total)
T4070 051:210 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0620ms total)
T4070 051:211 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0621ms total)
T2890 051:212 JLINK_IsHalted()  returns FALSE (0001ms, 0622ms total)
T2890 051:314 JLINK_IsHalted()  returns FALSE (0000ms, 0621ms total)
T2890 051:415 JLINK_IsHalted()  returns FALSE (0001ms, 0622ms total)
T2890 051:516 JLINK_IsHalted()  returns FALSE (0000ms, 0621ms total)
T2890 051:618 JLINK_IsHalted()  returns FALSE (0000ms, 0621ms total)
T4070 051:721 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 0621ms total)
T4070 051:721 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0622ms total)
T4070 051:722 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0623ms total)
T4070 051:723 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0624ms total)
T2890 051:724 JLINK_IsHalted()  returns FALSE (0001ms, 0625ms total)
T2890 051:825 JLINK_IsHalted()  returns FALSE (0000ms, 0624ms total)
T2890 051:926 JLINK_IsHalted()  returns FALSE (0000ms, 0624ms total)
T2890 052:028 JLINK_IsHalted()  returns FALSE (0000ms, 0624ms total)
T2890 052:129 JLINK_IsHalted()  returns FALSE (0000ms, 0624ms total)
T4070 052:233 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 0624ms total)
T4070 052:233 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0625ms total)
T4070 052:234 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0626ms total)
T4070 052:235 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0627ms total)
T2890 052:236 JLINK_IsHalted()  returns FALSE (0001ms, 0628ms total)
T2890 052:337 JLINK_IsHalted()  returns FALSE (0000ms, 0627ms total)
T2890 052:438 JLINK_IsHalted()  returns FALSE (0000ms, 0627ms total)
T2890 052:539 JLINK_IsHalted()  returns FALSE (0000ms, 0627ms total)
T2890 052:641 JLINK_IsHalted()  returns FALSE (0000ms, 0627ms total)
T2890 052:743 JLINK_IsHalted()  returns FALSE (0000ms, 0627ms total)
T4070 052:846 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 0627ms total)
T4070 052:846 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0628ms total)
T4070 052:847 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0629ms total)
T4070 052:848 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0630ms total)
T2890 052:849 JLINK_IsHalted()  returns FALSE (0001ms, 0631ms total)
T2890 052:951 JLINK_IsHalted()  returns FALSE (0000ms, 0630ms total)
T2890 053:052 JLINK_IsHalted()  returns FALSE (0000ms, 0630ms total)
T2890 053:154 JLINK_IsHalted()  returns FALSE (0000ms, 0630ms total)
T2890 053:255 JLINK_IsHalted()  returns FALSE (0000ms, 0630ms total)
T4070 053:358 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0631ms total)
T4070 053:359 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0632ms total)
T4070 053:360 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0633ms total)
T4070 053:361 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 0633ms total)
T2890 053:361 JLINK_IsHalted()  returns FALSE (0001ms, 0634ms total)
T2890 053:463 JLINK_IsHalted()  returns FALSE (0000ms, 0633ms total)
T2890 053:565 JLINK_IsHalted()  returns FALSE (0000ms, 0633ms total)
T2890 053:666 JLINK_IsHalted()  returns FALSE (0000ms, 0633ms total)
T2890 053:768 JLINK_IsHalted()  returns FALSE (0000ms, 0633ms total)
T2890 053:869 JLINK_IsHalted()  returns FALSE (0000ms, 0633ms total)
T4070 053:971 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0634ms total)
T4070 053:972 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0635ms total)
T4070 053:973 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0636ms total)
T4070 053:974 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 0636ms total)
T2890 053:974 JLINK_IsHalted()  returns FALSE (0001ms, 0637ms total)
T2890 054:076 JLINK_IsHalted()  returns FALSE (0000ms, 0636ms total)
T2890 054:177 JLINK_IsHalted()  returns FALSE (0000ms, 0636ms total)
T2890 054:279 JLINK_IsHalted()  returns FALSE (0000ms, 0636ms total)
T2890 054:380 JLINK_IsHalted()  returns FALSE (0000ms, 0636ms total)
T4070 054:482 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0637ms total)
T4070 054:483 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0638ms total)
T4070 054:484 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0639ms total)
T4070 054:485 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0640ms total)
T2890 054:486 JLINK_IsHalted()  returns FALSE (0000ms, 0640ms total)
T2890 054:587 JLINK_IsHalted()  returns FALSE (0000ms, 0640ms total)
T2890 054:689 JLINK_IsHalted()  returns FALSE (0000ms, 0640ms total)
T2890 054:790 JLINK_IsHalted()  returns FALSE (0000ms, 0640ms total)
T2890 054:891 JLINK_IsHalted()  returns FALSE (0000ms, 0640ms total)
T2890 054:992 JLINK_IsHalted()  returns FALSE (0000ms, 0640ms total)
T4070 055:096 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 0640ms total)
T4070 055:096 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0641ms total)
T4070 055:097 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0642ms total)
T4070 055:098 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0643ms total)
T2890 055:099 JLINK_IsHalted()  returns FALSE (0000ms, 0643ms total)
T2890 055:200 JLINK_IsHalted()  returns FALSE (0000ms, 0643ms total)
T2890 055:301 JLINK_IsHalted()  returns FALSE (0000ms, 0643ms total)
T2890 055:402 JLINK_IsHalted()  returns FALSE (0000ms, 0643ms total)
T2890 055:504 JLINK_IsHalted()  returns FALSE (0000ms, 0643ms total)
T4070 055:606 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0644ms total)
T4070 055:607 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0645ms total)
T4070 055:608 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0646ms total)
T4070 055:609 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0647ms total)
T2890 055:610 JLINK_IsHalted()  returns FALSE (0000ms, 0647ms total)
T2890 055:712 JLINK_IsHalted()  returns FALSE (0000ms, 0647ms total)
T2890 055:813 JLINK_IsHalted()  returns FALSE (0000ms, 0647ms total)
T2890 055:914 JLINK_IsHalted()  returns FALSE (0000ms, 0647ms total)
T2890 056:016 JLINK_IsHalted()  returns FALSE (0000ms, 0647ms total)
T2890 056:117 JLINK_IsHalted()  returns FALSE (0000ms, 0647ms total)
T4070 056:220 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0648ms total)
T4070 056:221 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 0648ms total)
T4070 056:222 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 0648ms total)
T4070 056:222 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0649ms total)
T2890 056:223 JLINK_IsHalted()  returns FALSE (0001ms, 0650ms total)
T2890 056:325 JLINK_IsHalted()  returns FALSE (0000ms, 0649ms total)
T2890 056:427 JLINK_IsHalted()  returns FALSE (0000ms, 0649ms total)
T2890 056:528 JLINK_IsHalted()  returns FALSE (0000ms, 0649ms total)
T2890 056:629 JLINK_IsHalted()  returns FALSE (0000ms, 0649ms total)
T4070 056:731 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0650ms total)
T4070 056:732 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0651ms total)
T4070 056:733 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0652ms total)
T4070 056:734 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 0652ms total)
T2890 056:734 JLINK_IsHalted()  returns FALSE (0001ms, 0653ms total)
T2890 056:837 JLINK_IsHalted()  returns FALSE (0000ms, 0652ms total)
T2890 056:938 JLINK_IsHalted()  returns FALSE (0000ms, 0652ms total)
T2890 057:039 JLINK_IsHalted()  returns FALSE (0000ms, 0652ms total)
T2890 057:140 JLINK_IsHalted()  returns FALSE (0000ms, 0652ms total)
T2890 057:242 JLINK_IsHalted()  returns FALSE (0000ms, 0652ms total)
T4070 057:344 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0653ms total)
T4070 057:345 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0654ms total)
T4070 057:346 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0655ms total)
T4070 057:347 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0656ms total)
T2890 057:348 JLINK_IsHalted()  returns FALSE (0000ms, 0656ms total)
T2890 057:449 JLINK_IsHalted()  returns FALSE (0000ms, 0656ms total)
T2890 057:551 JLINK_IsHalted()  returns FALSE (0000ms, 0656ms total)
T2890 057:652 JLINK_IsHalted()  returns FALSE (0000ms, 0656ms total)
T2890 057:753 JLINK_IsHalted()  returns FALSE (0000ms, 0656ms total)
T2890 057:854 JLINK_IsHalted()  returns FALSE (0000ms, 0656ms total)
T4070 057:958 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0657ms total)
T4070 057:959 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 0657ms total)
T4070 057:959 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0658ms total)
T4070 057:960 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0659ms total)
T2890 057:961 JLINK_IsHalted()  returns FALSE (0001ms, 0660ms total)
T2890 058:062 JLINK_IsHalted()  returns FALSE (0000ms, 0659ms total)
T2890 058:163 JLINK_IsHalted()  returns FALSE (0000ms, 0659ms total)
T2890 058:265 JLINK_IsHalted()  returns FALSE (0000ms, 0659ms total)
T2890 058:366 JLINK_IsHalted()  returns FALSE (0000ms, 0659ms total)
T4070 058:469 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 0659ms total)
T4070 058:470 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 0660ms total)
T4070 058:471 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 0660ms total)
T4070 058:471 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0661ms total)
T2890 058:472 JLINK_IsHalted()  returns FALSE (0001ms, 0662ms total)
T2890 058:574 JLINK_IsHalted()  returns FALSE (0000ms, 0661ms total)
T2890 058:675 JLINK_IsHalted()  returns FALSE (0000ms, 0661ms total)
T2890 058:776 JLINK_IsHalted()  returns FALSE (0000ms, 0661ms total)
T2890 058:877 JLINK_IsHalted()  returns FALSE (0000ms, 0661ms total)
T2890 058:978 JLINK_IsHalted()  returns FALSE (0000ms, 0661ms total)
T4070 059:081 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0662ms total)
T4070 059:082 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0663ms total)
T4070 059:083 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0664ms total)
T4070 059:084 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0665ms total)
T2890 059:085 JLINK_IsHalted()  returns FALSE (0001ms, 0666ms total)
T2890 059:186 JLINK_IsHalted()  returns FALSE (0000ms, 0665ms total)
T2890 059:287 JLINK_IsHalted()  returns FALSE (0000ms, 0665ms total)
T2890 059:388 JLINK_IsHalted()  returns FALSE (0000ms, 0665ms total)
T2890 059:490 JLINK_IsHalted()  returns FALSE (0000ms, 0665ms total)
T4070 059:593 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0666ms total)
T4070 059:594 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0667ms total)
T4070 059:595 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0668ms total)
T4070 059:596 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0669ms total)
T2890 059:597 JLINK_IsHalted()  returns FALSE (0000ms, 0669ms total)
T2890 059:698 JLINK_IsHalted()  returns FALSE (0000ms, 0669ms total)
T2890 059:799 JLINK_IsHalted()  returns FALSE (0000ms, 0669ms total)
T2890 059:901 JLINK_IsHalted()  returns FALSE (0000ms, 0669ms total)
T2890 060:002 JLINK_IsHalted()  returns FALSE (0000ms, 0669ms total)
T2890 060:104 JLINK_IsHalted()  returns FALSE (0000ms, 0669ms total)
T4070 060:207 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 0669ms total)
T4070 060:207 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0670ms total)
T4070 060:208 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0671ms total)
T4070 060:209 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0672ms total)
T2890 060:210 JLINK_IsHalted()  returns FALSE (0000ms, 0672ms total)
T2890 060:311 JLINK_IsHalted()  returns FALSE (0000ms, 0672ms total)
T2890 060:412 JLINK_IsHalted()  returns FALSE (0000ms, 0672ms total)
T2890 060:514 JLINK_IsHalted()  returns FALSE (0000ms, 0672ms total)
T2890 060:615 JLINK_IsHalted()  returns FALSE (0000ms, 0672ms total)
T4070 060:717 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0673ms total)
T4070 060:718 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0674ms total)
T4070 060:720 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 0674ms total)
T4070 060:720 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0675ms total)
T2890 060:721 JLINK_IsHalted()  returns FALSE (0001ms, 0676ms total)
T2890 060:823 JLINK_IsHalted()  returns FALSE (0000ms, 0675ms total)
T2890 060:924 JLINK_IsHalted()  returns FALSE (0000ms, 0675ms total)
T2890 061:025 JLINK_IsHalted()  returns FALSE (0000ms, 0675ms total)
T2890 061:126 JLINK_IsHalted()  returns FALSE (0000ms, 0675ms total)
T2890 061:228 JLINK_IsHalted()  returns FALSE (0000ms, 0675ms total)
T4070 061:330 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0676ms total)
T4070 061:331 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0677ms total)
T4070 061:332 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0678ms total)
T4070 061:333 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0679ms total)
T2890 061:334 JLINK_IsHalted()  returns FALSE (0000ms, 0679ms total)
T2890 061:435 JLINK_IsHalted()  returns FALSE (0000ms, 0679ms total)
T2890 061:536 JLINK_IsHalted()  returns FALSE (0000ms, 0679ms total)
T2890 061:638 JLINK_IsHalted()  returns FALSE (0000ms, 0679ms total)
T2890 061:739 JLINK_IsHalted()  returns FALSE (0000ms, 0679ms total)
T4070 061:842 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0680ms total)
T4070 061:843 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0681ms total)
T4070 061:844 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0682ms total)
T4070 061:845 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0683ms total)
T2890 061:846 JLINK_IsHalted()  returns FALSE (0001ms, 0684ms total)
T2890 061:947 JLINK_IsHalted()  returns FALSE (0000ms, 0683ms total)
T2890 062:048 JLINK_IsHalted()  returns FALSE (0000ms, 0683ms total)
T2890 062:150 JLINK_IsHalted()  returns FALSE (0000ms, 0683ms total)
T2890 062:251 JLINK_IsHalted()  returns FALSE (0000ms, 0683ms total)
T2890 062:352 JLINK_IsHalted()  returns FALSE (0000ms, 0683ms total)
T4070 062:454 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0684ms total)
T4070 062:455 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0685ms total)
T4070 062:456 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0686ms total)
T4070 062:457 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 0686ms total)
T2890 062:458 JLINK_IsHalted()  returns FALSE (0000ms, 0686ms total)
T2890 062:560 JLINK_IsHalted()  returns FALSE (0000ms, 0686ms total)
T2890 062:661 JLINK_IsHalted()  returns FALSE (0000ms, 0686ms total)
T2890 062:762 JLINK_IsHalted()  returns FALSE (0000ms, 0686ms total)
T2890 062:863 JLINK_IsHalted()  returns FALSE (0000ms, 0686ms total)
T4070 062:967 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 0686ms total)
T4070 062:967 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0687ms total)
T4070 062:968 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0688ms total)
T4070 062:969 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0689ms total)
T2890 062:970 JLINK_IsHalted()  returns FALSE (0001ms, 0690ms total)
T2890 063:071 JLINK_IsHalted()  returns FALSE (0000ms, 0689ms total)
T2890 063:172 JLINK_IsHalted()  returns FALSE (0000ms, 0689ms total)
T2890 063:274 JLINK_IsHalted()  returns FALSE (0000ms, 0689ms total)
T2890 063:375 JLINK_IsHalted()  returns FALSE (0000ms, 0689ms total)
T2890 063:476 JLINK_IsHalted()  returns FALSE (0000ms, 0689ms total)
T4070 063:579 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0690ms total)
T4070 063:580 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 0690ms total)
T4070 063:581 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 0690ms total)
T4070 063:581 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0691ms total)
T2890 063:582 JLINK_IsHalted()  returns FALSE (0001ms, 0692ms total)
T2890 063:685 JLINK_IsHalted()  returns FALSE (0000ms, 0691ms total)
T2890 063:786 JLINK_IsHalted()  returns FALSE (0000ms, 0691ms total)
T2890 063:887 JLINK_IsHalted()  returns FALSE (0000ms, 0691ms total)
T2890 063:988 JLINK_IsHalted()  returns FALSE (0000ms, 0691ms total)
T4070 064:091 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0692ms total)
T4070 064:092 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 0692ms total)
T4070 064:093 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0693ms total)
T4070 064:094 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 0693ms total)
T2890 064:094 JLINK_IsHalted()  returns FALSE (0001ms, 0694ms total)
T2890 064:196 JLINK_IsHalted()  returns FALSE (0000ms, 0693ms total)
T2890 064:298 JLINK_IsHalted()  returns FALSE (0000ms, 0693ms total)
T2890 064:399 JLINK_IsHalted()  returns FALSE (0000ms, 0693ms total)
T2890 064:500 JLINK_IsHalted()  returns FALSE (0000ms, 0693ms total)
T2890 064:602 JLINK_IsHalted()  returns FALSE (0000ms, 0693ms total)
T4070 064:704 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 0693ms total)
T4070 064:705 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 0693ms total)
T4070 064:705 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0694ms total)
T4070 064:706 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0695ms total)
T2890 064:707 JLINK_IsHalted()  returns FALSE (0001ms, 0696ms total)
T2890 064:809 JLINK_IsHalted()  returns FALSE (0000ms, 0695ms total)
T2890 064:910 JLINK_IsHalted()  returns FALSE (0000ms, 0695ms total)
T2890 065:011 JLINK_IsHalted()  returns FALSE (0000ms, 0695ms total)
T2890 065:112 JLINK_IsHalted()  returns FALSE (0000ms, 0695ms total)
T2890 065:214 JLINK_IsHalted()  returns FALSE (0000ms, 0695ms total)
T4070 065:317 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 0695ms total)
T4070 065:318 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 0695ms total)
T4070 065:318 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0696ms total)
T4070 065:319 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0697ms total)
T2890 065:320 JLINK_IsHalted()  returns FALSE (0001ms, 0698ms total)
T2890 065:421 JLINK_IsHalted()  returns FALSE (0000ms, 0697ms total)
T2890 065:522 JLINK_IsHalted()  returns FALSE (0000ms, 0697ms total)
T2890 065:624 JLINK_IsHalted()  returns FALSE (0000ms, 0697ms total)
T2890 065:725 JLINK_IsHalted()  returns FALSE (0000ms, 0697ms total)
T4070 065:828 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0698ms total)
T4070 065:829 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0699ms total)
T4070 065:830 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0700ms total)
T4070 065:831 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 0700ms total)
T2890 065:831 JLINK_IsHalted()  returns FALSE (0001ms, 0701ms total)
T2890 065:934 JLINK_IsHalted()  returns FALSE (0000ms, 0700ms total)
T2890 066:035 JLINK_IsHalted()  returns FALSE (0000ms, 0700ms total)
T2890 066:136 JLINK_IsHalted()  returns FALSE (0000ms, 0700ms total)
T2890 066:237 JLINK_IsHalted()  returns FALSE (0000ms, 0700ms total)
T2890 066:339 JLINK_IsHalted()  returns FALSE (0000ms, 0700ms total)
T4070 066:442 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 0700ms total)
T4070 066:442 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0701ms total)
T4070 066:443 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0702ms total)
T4070 066:444 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0703ms total)
T2890 066:445 JLINK_IsHalted()  returns FALSE (0000ms, 0703ms total)
T2890 066:547 JLINK_IsHalted()  returns FALSE (0000ms, 0703ms total)
T2890 066:648 JLINK_IsHalted()  returns FALSE (0000ms, 0703ms total)
T2890 066:749 JLINK_IsHalted()  returns FALSE (0000ms, 0703ms total)
T2890 066:850 JLINK_IsHalted()  returns FALSE (0000ms, 0703ms total)
T4070 066:954 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0704ms total)
T4070 066:955 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 0704ms total)
T4070 066:956 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 0704ms total)
T4070 066:956 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0705ms total)
T2890 066:957 JLINK_IsHalted()  returns FALSE (0001ms, 0706ms total)
T2890 067:059 JLINK_IsHalted()  returns FALSE (0000ms, 0705ms total)
T2890 067:160 JLINK_IsHalted()  returns FALSE (0000ms, 0705ms total)
T2890 067:262 JLINK_IsHalted()  returns FALSE (0001ms, 0706ms total)
T2890 067:363 JLINK_IsHalted()  returns FALSE (0000ms, 0705ms total)
T4070 067:466 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0706ms total)
T4070 067:467 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0707ms total)
T4070 067:468 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0708ms total)
T4070 067:469 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 0708ms total)
T2890 067:469 JLINK_IsHalted()  returns FALSE (0001ms, 0709ms total)
T2890 067:571 JLINK_IsHalted()  returns FALSE (0000ms, 0708ms total)
T2890 067:673 JLINK_IsHalted()  returns FALSE (0000ms, 0708ms total)
T2890 067:774 JLINK_IsHalted()  returns FALSE (0000ms, 0708ms total)
T2890 067:876 JLINK_IsHalted()  returns FALSE (0000ms, 0708ms total)
T2890 067:978 JLINK_IsHalted()  returns FALSE (0000ms, 0708ms total)
T4070 068:080 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0709ms total)
T4070 068:081 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0710ms total)
T4070 068:082 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0711ms total)
T4070 068:083 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0712ms total)
T2890 068:084 JLINK_IsHalted()  returns FALSE (0000ms, 0712ms total)
T2890 068:185 JLINK_IsHalted()  returns FALSE (0000ms, 0712ms total)
T2890 068:286 JLINK_IsHalted()  returns FALSE (0000ms, 0712ms total)
T2890 068:388 JLINK_IsHalted()  returns FALSE (0000ms, 0712ms total)
T2890 068:489 JLINK_IsHalted()  returns FALSE (0000ms, 0712ms total)
T4070 068:592 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 0712ms total)
T4070 068:592 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0713ms total)
T4070 068:593 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0714ms total)
T4070 068:594 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0715ms total)
T2890 068:595 JLINK_IsHalted()  returns FALSE (0001ms, 0716ms total)
T2890 068:696 JLINK_IsHalted()  returns FALSE (0000ms, 0715ms total)
T2890 068:798 JLINK_IsHalted()  returns FALSE (0000ms, 0715ms total)
T2890 068:899 JLINK_IsHalted()  returns FALSE (0000ms, 0715ms total)
T2890 069:000 JLINK_IsHalted()  returns FALSE (0000ms, 0715ms total)
T2890 069:101 JLINK_IsHalted()  returns FALSE (0000ms, 0715ms total)
T4070 069:205 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 0715ms total)
T4070 069:205 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0716ms total)
T4070 069:207 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 0716ms total)
T4070 069:207 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0717ms total)
T2890 069:208 JLINK_IsHalted()  returns FALSE (0001ms, 0718ms total)
T2890 069:309 JLINK_IsHalted()  returns FALSE (0000ms, 0717ms total)
T2890 069:410 JLINK_IsHalted()  returns FALSE (0000ms, 0717ms total)
T2890 069:512 JLINK_IsHalted()  returns FALSE (0000ms, 0717ms total)
T2890 069:613 JLINK_IsHalted()  returns FALSE (0000ms, 0717ms total)
T4070 069:716 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0718ms total)
T4070 069:717 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0719ms total)
T4070 069:718 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0720ms total)
T4070 069:719 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0721ms total)
T2890 069:720 JLINK_IsHalted()  returns FALSE (0000ms, 0721ms total)
T2890 069:821 JLINK_IsHalted()  returns FALSE (0000ms, 0721ms total)
T2890 069:923 JLINK_IsHalted()  returns FALSE (0000ms, 0721ms total)
T2890 070:024 JLINK_IsHalted()  returns FALSE (0000ms, 0721ms total)
T2890 070:126 JLINK_IsHalted()  returns FALSE (0000ms, 0721ms total)
T2890 070:227 JLINK_IsHalted()  returns FALSE (0000ms, 0721ms total)
T4070 070:329 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0722ms total)
T4070 070:330 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0723ms total)
T4070 070:331 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0724ms total)
T4070 070:332 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0725ms total)
T2890 070:333 JLINK_IsHalted()  returns FALSE (0000ms, 0725ms total)
T2890 070:434 JLINK_IsHalted()  returns FALSE (0000ms, 0725ms total)
T2890 070:535 JLINK_IsHalted()  returns FALSE (0000ms, 0725ms total)
T2890 070:636 JLINK_IsHalted()  returns FALSE (0000ms, 0725ms total)
T2890 070:738 JLINK_IsHalted()  returns FALSE (0000ms, 0725ms total)
T2890 070:839 JLINK_IsHalted()  returns FALSE (0000ms, 0725ms total)
T4070 070:941 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0726ms total)
T4070 070:942 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0727ms total)
T4070 070:943 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0728ms total)
T4070 070:944 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0729ms total)
T2890 070:945 JLINK_IsHalted()  returns FALSE (0000ms, 0729ms total)
T2890 071:046 JLINK_IsHalted()  returns FALSE (0000ms, 0729ms total)
T2890 071:148 JLINK_IsHalted()  returns FALSE (0000ms, 0729ms total)
T2890 071:249 JLINK_IsHalted()  returns FALSE (0000ms, 0729ms total)
T2890 071:350 JLINK_IsHalted()  returns FALSE (0000ms, 0729ms total)
T4070 071:453 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0730ms total)
T4070 071:454 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 0730ms total)
T4070 071:455 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 0730ms total)
T4070 071:455 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0731ms total)
T2890 071:456 JLINK_IsHalted()  returns FALSE (0001ms, 0732ms total)
T2890 071:559 JLINK_IsHalted()  returns FALSE (0000ms, 0731ms total)
T2890 071:660 JLINK_IsHalted()  returns FALSE (0000ms, 0731ms total)
T2890 071:761 JLINK_IsHalted()  returns FALSE (0000ms, 0731ms total)
T2890 071:862 JLINK_IsHalted()  returns FALSE (0000ms, 0731ms total)
T2890 071:963 JLINK_IsHalted()  returns FALSE (0000ms, 0731ms total)
T4070 072:067 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 0731ms total)
T4070 072:067 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0732ms total)
T4070 072:068 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0733ms total)
T4070 072:069 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0734ms total)
T2890 072:070 JLINK_IsHalted()  returns FALSE (0001ms, 0735ms total)
T2890 072:171 JLINK_IsHalted()  returns FALSE (0000ms, 0734ms total)
T2890 072:272 JLINK_IsHalted()  returns FALSE (0000ms, 0734ms total)
T2890 072:373 JLINK_IsHalted()  returns FALSE (0000ms, 0734ms total)
T2890 072:475 JLINK_IsHalted()  returns FALSE (0000ms, 0734ms total)
T4070 072:578 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 0734ms total)
T4070 072:578 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0735ms total)
T4070 072:579 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0736ms total)
T4070 072:580 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0737ms total)
T2890 072:581 JLINK_IsHalted()  returns FALSE (0000ms, 0737ms total)
T2890 072:682 JLINK_IsHalted()  returns FALSE (0000ms, 0737ms total)
T2890 072:783 JLINK_IsHalted()  returns FALSE (0000ms, 0737ms total)
T2890 072:885 JLINK_IsHalted()  returns FALSE (0000ms, 0737ms total)
T2890 072:986 JLINK_IsHalted()  returns FALSE (0000ms, 0737ms total)
T2890 073:087 JLINK_IsHalted()  returns FALSE (0000ms, 0737ms total)
T4070 073:190 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 0737ms total)
T4070 073:190 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0738ms total)
T4070 073:191 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0739ms total)
T4070 073:192 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0740ms total)
T2890 073:193 JLINK_IsHalted()  returns FALSE (0002ms, 0742ms total)
T2890 073:295 JLINK_IsHalted()  returns FALSE (0000ms, 0740ms total)
T2890 073:396 JLINK_IsHalted()  returns FALSE (0000ms, 0740ms total)
T2890 073:497 JLINK_IsHalted()  returns FALSE (0000ms, 0740ms total)
T2890 073:599 JLINK_IsHalted()  returns FALSE (0000ms, 0740ms total)
T4070 073:701 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0741ms total)
T4070 073:702 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0742ms total)
T4070 073:703 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0743ms total)
T4070 073:704 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 0743ms total)
T2890 073:704 JLINK_IsHalted()  returns FALSE (0001ms, 0744ms total)
T2890 073:807 JLINK_IsHalted()  returns FALSE (0000ms, 0743ms total)
T2890 073:908 JLINK_IsHalted()  returns FALSE (0000ms, 0743ms total)
T2890 074:009 JLINK_IsHalted()  returns FALSE (0000ms, 0743ms total)
T2890 074:110 JLINK_IsHalted()  returns FALSE (0000ms, 0743ms total)
T2890 074:211 JLINK_IsHalted()  returns FALSE (0000ms, 0743ms total)
T4070 074:315 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 0743ms total)
T4070 074:315 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0744ms total)
T4070 074:316 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0745ms total)
T4070 074:317 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0746ms total)
T2890 074:318 JLINK_IsHalted()  returns FALSE (0001ms, 0747ms total)
T2890 074:419 JLINK_IsHalted()  returns FALSE (0000ms, 0746ms total)
T2890 074:520 JLINK_IsHalted()  returns FALSE (0000ms, 0746ms total)
T2890 074:621 JLINK_IsHalted()  returns FALSE (0000ms, 0746ms total)
T2890 074:723 JLINK_IsHalted()  returns FALSE (0000ms, 0746ms total)
T4070 074:826 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 0746ms total)
T4070 074:826 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0747ms total)
T4070 074:828 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 0747ms total)
T4070 074:828 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0748ms total)
T2890 074:829 JLINK_IsHalted()  returns FALSE (0001ms, 0749ms total)
T2890 074:930 JLINK_IsHalted()  returns FALSE (0000ms, 0748ms total)
T2890 075:031 JLINK_IsHalted()  returns FALSE (0000ms, 0748ms total)
T2890 075:133 JLINK_IsHalted()  returns FALSE (0000ms, 0748ms total)
T4070 075:136 JLINK_SetBPEx(Addr = 0x00005DEA, Type = 0xFFFFFFF2) -- CPU is running -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002008)  returns 0x00000002 (0001ms, 0749ms total)
T2890 075:234 JLINK_IsHalted()  returns TRUE (0003ms, 0752ms total)
T2890 075:237 JLINK_Halt()  returns 0x00 (0000ms, 0749ms total)
T2890 075:237 JLINK_IsHalted()  returns TRUE (0000ms, 0749ms total)
T2890 075:237 JLINK_IsHalted()  returns TRUE (0000ms, 0749ms total)
T2890 075:237 JLINK_IsHalted()  returns TRUE (0000ms, 0749ms total)
T2890 075:237 JLINK_ReadReg(R15 (PC))  returns 0x00005DEA (0000ms, 0749ms total)
T2890 075:237 JLINK_ReadReg(XPSR)  returns 0x81000000 (0000ms, 0749ms total)
T2890 075:237 JLINK_ClrBPEx(BPHandle = 0x00000002)  returns 0x00 (0000ms, 0749ms total)
T2890 075:237 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0001ms, 0750ms total)
T2890 075:238 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 0751ms total)
T2890 075:239 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0001ms, 0752ms total)
T2890 075:240 JLINK_ReadReg(R0)  returns 0x0201A01C (0000ms, 0752ms total)
T2890 075:240 JLINK_ReadReg(R1)  returns 0x00000000 (0000ms, 0752ms total)
T2890 075:240 JLINK_ReadReg(R2)  returns 0x80000000 (0000ms, 0752ms total)
T2890 075:240 JLINK_ReadReg(R3)  returns 0x42000000 (0000ms, 0752ms total)
T2890 075:240 JLINK_ReadReg(R4)  returns 0x0201AB60 (0000ms, 0752ms total)
T2890 075:240 JLINK_ReadReg(R5)  returns 0x00000000 (0000ms, 0752ms total)
T2890 075:240 JLINK_ReadReg(R6)  returns 0x0201C30A (0000ms, 0752ms total)
T2890 075:240 JLINK_ReadReg(R7)  returns 0x00000001 (0000ms, 0752ms total)
T2890 075:240 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 0752ms total)
T2890 075:240 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 0752ms total)
T2890 075:240 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 0752ms total)
T2890 075:240 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 0752ms total)
T2890 075:240 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 0752ms total)
T2890 075:240 JLINK_ReadReg(R13 (SP))  returns 0x02029FE0 (0000ms, 0752ms total)
T2890 075:240 JLINK_ReadReg(R14)  returns 0x00005BFD (0000ms, 0752ms total)
T2890 075:240 JLINK_ReadReg(R15 (PC))  returns 0x00005DEA (0000ms, 0752ms total)
T2890 075:240 JLINK_ReadReg(XPSR)  returns 0x81000000 (0000ms, 0752ms total)
T2890 075:240 JLINK_ReadReg(MSP)  returns 0x02029FE0 (0000ms, 0752ms total)
T2890 075:240 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 0752ms total)
T2890 075:240 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0752ms total)
T4070 075:242 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0753ms total)
T4070 075:243 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0754ms total)
T4070 075:244 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 0754ms total)
T4070 075:245 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 0755ms total)
T2890 078:184 JLINK_ReadMemEx(0x00005DEA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00005DC0) -- Updating DA cache (64 bytes @ 0x00005DC0) -- Read from DA cache (2 bytes @ 0x00005DEA) - Data: 05 F0  returns 0x02 (0001ms, 0756ms total)
T2890 078:185 JLINK_Go() -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) (0003ms, 0759ms total)
T2890 078:290 JLINK_IsHalted()  returns FALSE (0000ms, 0759ms total)
T2890 078:391 JLINK_IsHalted()  returns FALSE (0000ms, 0759ms total)
T2890 078:492 JLINK_IsHalted()  returns FALSE (0000ms, 0759ms total)
T2890 078:594 JLINK_IsHalted()  returns FALSE (0000ms, 0759ms total)
T2890 078:695 JLINK_IsHalted()  returns FALSE (0000ms, 0759ms total)
T4070 078:797 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0760ms total)
T4070 078:798 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0761ms total)
T4070 078:799 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0762ms total)
T4070 078:800 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 0762ms total)
T2890 078:800 JLINK_IsHalted()  returns FALSE (0001ms, 0763ms total)
T2890 078:903 JLINK_IsHalted()  returns FALSE (0000ms, 0762ms total)
T2890 079:004 JLINK_IsHalted()  returns FALSE (0000ms, 0762ms total)
T2890 079:105 JLINK_IsHalted()  returns FALSE (0000ms, 0762ms total)
T2890 079:206 JLINK_IsHalted()  returns FALSE (0000ms, 0762ms total)
T2890 079:307 JLINK_IsHalted()  returns FALSE (0000ms, 0762ms total)
T4070 079:411 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 0762ms total)
T4070 079:411 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0763ms total)
T4070 079:412 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0764ms total)
T4070 079:413 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0765ms total)
T2890 079:414 JLINK_IsHalted()  returns FALSE (0001ms, 0766ms total)
T2890 079:515 JLINK_IsHalted()  returns FALSE (0000ms, 0765ms total)
T2890 079:616 JLINK_IsHalted()  returns FALSE (0000ms, 0765ms total)
T2890 079:717 JLINK_IsHalted()  returns FALSE (0000ms, 0765ms total)
T2890 079:818 JLINK_IsHalted()  returns FALSE (0000ms, 0765ms total)
T4070 079:922 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 0765ms total)
T4070 079:922 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0766ms total)
T4070 079:924 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 0766ms total)
T4070 079:924 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0767ms total)
T2890 079:925 JLINK_IsHalted()  returns FALSE (0001ms, 0768ms total)
T2890 080:026 JLINK_IsHalted()  returns FALSE (0000ms, 0767ms total)
T2890 080:127 JLINK_IsHalted()  returns FALSE (0000ms, 0767ms total)
T2890 080:228 JLINK_IsHalted()  returns FALSE (0000ms, 0767ms total)
T2890 080:330 JLINK_IsHalted()  returns FALSE (0000ms, 0767ms total)
T2890 080:431 JLINK_IsHalted()  returns FALSE (0000ms, 0767ms total)
T4070 080:535 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0768ms total)
T4070 080:536 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0769ms total)
T4070 080:537 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0770ms total)
T4070 080:538 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 0770ms total)
T2890 080:539 JLINK_IsHalted()  returns FALSE (0000ms, 0770ms total)
T2890 080:640 JLINK_IsHalted()  returns FALSE (0000ms, 0770ms total)
T2890 080:742 JLINK_IsHalted()  returns FALSE (0000ms, 0770ms total)
T2890 080:843 JLINK_IsHalted()  returns FALSE (0000ms, 0770ms total)
T2890 080:944 JLINK_IsHalted()  returns FALSE (0000ms, 0770ms total)
T4070 081:047 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 0770ms total)
T4070 081:047 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0771ms total)
T4070 081:048 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0772ms total)
T4070 081:049 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0773ms total)
T2890 081:050 JLINK_IsHalted()  returns FALSE (0001ms, 0774ms total)
T2890 081:152 JLINK_IsHalted()  returns FALSE (0000ms, 0773ms total)
T2890 081:253 JLINK_IsHalted()  returns FALSE (0000ms, 0773ms total)
T2890 081:354 JLINK_IsHalted()  returns FALSE (0000ms, 0773ms total)
T2890 081:455 JLINK_IsHalted()  returns FALSE (0000ms, 0773ms total)
T2890 081:556 JLINK_IsHalted()  returns FALSE (0000ms, 0773ms total)
T4070 081:660 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 0773ms total)
T4070 081:660 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0774ms total)
T4070 081:661 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0775ms total)
T4070 081:662 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0776ms total)
T2890 081:663 JLINK_IsHalted()  returns FALSE (0001ms, 0777ms total)
T2890 081:764 JLINK_IsHalted()  returns FALSE (0000ms, 0776ms total)
T2890 081:865 JLINK_IsHalted()  returns FALSE (0000ms, 0776ms total)
T2890 081:966 JLINK_IsHalted()  returns FALSE (0000ms, 0776ms total)
T2890 082:068 JLINK_IsHalted()  returns FALSE (0000ms, 0776ms total)
T4070 082:170 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0777ms total)
T4070 082:171 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0778ms total)
T4070 082:172 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0779ms total)
T4070 082:173 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0780ms total)
T2890 082:174 JLINK_IsHalted()  returns FALSE (0000ms, 0780ms total)
T2890 082:275 JLINK_IsHalted()  returns FALSE (0000ms, 0780ms total)
T2890 082:376 JLINK_IsHalted()  returns FALSE (0000ms, 0780ms total)
T2890 082:478 JLINK_IsHalted()  returns FALSE (0000ms, 0780ms total)
T2890 082:579 JLINK_IsHalted()  returns FALSE (0000ms, 0780ms total)
T2890 082:680 JLINK_IsHalted()  returns FALSE (0000ms, 0780ms total)
T4070 082:784 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 0780ms total)
T4070 082:784 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0781ms total)
T4070 082:785 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0782ms total)
T4070 082:786 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0783ms total)
T2890 082:787 JLINK_IsHalted()  returns FALSE (0001ms, 0784ms total)
T2890 082:888 JLINK_IsHalted()  returns FALSE (0000ms, 0783ms total)
T2890 082:990 JLINK_IsHalted()  returns FALSE (0000ms, 0783ms total)
T2890 083:091 JLINK_IsHalted()  returns FALSE (0000ms, 0783ms total)
T2890 083:192 JLINK_IsHalted()  returns FALSE (0000ms, 0783ms total)
T4070 083:295 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0784ms total)
T4070 083:296 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 0784ms total)
T4070 083:297 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 0784ms total)
T4070 083:297 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0785ms total)
T2890 083:298 JLINK_IsHalted()  returns FALSE (0001ms, 0786ms total)
T2890 083:401 JLINK_IsHalted()  returns FALSE (0000ms, 0785ms total)
T2890 083:502 JLINK_IsHalted()  returns FALSE (0000ms, 0785ms total)
T2890 083:603 JLINK_IsHalted()  returns FALSE (0000ms, 0785ms total)
T2890 083:704 JLINK_IsHalted()  returns FALSE (0000ms, 0785ms total)
T2890 083:806 JLINK_IsHalted()  returns FALSE (0001ms, 0786ms total)
T4070 083:909 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0786ms total)
T4070 083:910 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0787ms total)
T4070 083:911 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0788ms total)
T4070 083:912 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0789ms total)
T2890 083:913 JLINK_IsHalted()  returns FALSE (0000ms, 0789ms total)
T2890 084:014 JLINK_IsHalted()  returns FALSE (0000ms, 0789ms total)
T2890 084:116 JLINK_IsHalted()  returns FALSE (0000ms, 0789ms total)
T2890 084:217 JLINK_IsHalted()  returns FALSE (0000ms, 0789ms total)
T2890 084:319 JLINK_IsHalted()  returns FALSE (0000ms, 0789ms total)
T4070 084:421 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0790ms total)
T4070 084:422 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0791ms total)
T4070 084:423 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0792ms total)
T4070 084:424 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 0792ms total)
T2890 084:424 JLINK_IsHalted()  returns FALSE (0001ms, 0793ms total)
T2890 084:527 JLINK_IsHalted()  returns FALSE (0000ms, 0792ms total)
T2890 084:628 JLINK_IsHalted()  returns FALSE (0000ms, 0792ms total)
T2890 084:729 JLINK_IsHalted()  returns FALSE (0000ms, 0792ms total)
T2890 084:830 JLINK_IsHalted()  returns FALSE (0000ms, 0792ms total)
T2890 084:932 JLINK_IsHalted()  returns FALSE (0000ms, 0792ms total)
T4070 085:034 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0793ms total)
T4070 085:035 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0794ms total)
T4070 085:036 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0795ms total)
T4070 085:037 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 0795ms total)
T2890 085:038 JLINK_IsHalted()  returns FALSE (0000ms, 0796ms total)
T2890 085:139 JLINK_IsHalted()  returns FALSE (0000ms, 0796ms total)
T2890 085:240 JLINK_IsHalted()  returns FALSE (0000ms, 0796ms total)
T2890 085:342 JLINK_IsHalted()  returns FALSE (0000ms, 0796ms total)
T2890 085:443 JLINK_IsHalted()  returns FALSE (0000ms, 0796ms total)
T4070 085:546 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 0796ms total)
T4070 085:546 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0797ms total)
T4070 085:547 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0798ms total)
T4070 085:548 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0799ms total)
T2890 085:549 JLINK_IsHalted()  returns FALSE (0001ms, 0800ms total)
T2890 085:651 JLINK_IsHalted()  returns FALSE (0000ms, 0799ms total)
T2890 085:751 JLINK_IsHalted()  returns FALSE (0000ms, 0799ms total)
T2890 085:853 JLINK_IsHalted()  returns FALSE (0000ms, 0799ms total)
T2890 085:954 JLINK_IsHalted()  returns FALSE (0000ms, 0799ms total)
T2890 086:055 JLINK_IsHalted()  returns FALSE (0000ms, 0799ms total)
T4070 086:157 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0800ms total)
T4070 086:158 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0801ms total)
T4070 086:159 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0802ms total)
T4070 086:160 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0803ms total)
T2890 086:161 JLINK_IsHalted()  returns FALSE (0001ms, 0804ms total)
T2890 086:264 JLINK_IsHalted()  returns FALSE (0000ms, 0803ms total)
T2890 086:365 JLINK_IsHalted()  returns FALSE (0000ms, 0803ms total)
T2890 086:466 JLINK_IsHalted()  returns FALSE (0000ms, 0803ms total)
T2890 086:567 JLINK_IsHalted()  returns FALSE (0000ms, 0803ms total)
T4070 086:670 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0804ms total)
T4070 086:671 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0805ms total)
T4070 086:672 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0806ms total)
T4070 086:673 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0807ms total)
T2890 086:674 JLINK_IsHalted()  returns FALSE (0000ms, 0807ms total)
T2890 086:775 JLINK_IsHalted()  returns FALSE (0000ms, 0807ms total)
T2890 086:876 JLINK_IsHalted()  returns FALSE (0000ms, 0807ms total)
T2890 086:978 JLINK_IsHalted()  returns FALSE (0000ms, 0807ms total)
T2890 087:079 JLINK_IsHalted()  returns FALSE (0000ms, 0807ms total)
T2890 087:180 JLINK_IsHalted()  returns FALSE (0000ms, 0807ms total)
T4070 087:282 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0808ms total)
T4070 087:283 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0809ms total)
T4070 087:285 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 0809ms total)
T4070 087:285 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0810ms total)
T2890 087:286 JLINK_IsHalted()  returns FALSE (0001ms, 0811ms total)
T2890 087:388 JLINK_IsHalted()  returns FALSE (0000ms, 0810ms total)
T2890 087:489 JLINK_IsHalted()  returns FALSE (0000ms, 0810ms total)
T2890 087:591 JLINK_IsHalted()  returns FALSE (0000ms, 0810ms total)
T2890 087:692 JLINK_IsHalted()  returns FALSE (0000ms, 0810ms total)
T4070 087:794 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0811ms total)
T4070 087:795 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0812ms total)
T4070 087:796 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0813ms total)
T4070 087:797 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 0813ms total)
T2890 087:797 JLINK_IsHalted()  returns FALSE (0001ms, 0814ms total)
T2890 087:899 JLINK_IsHalted()  returns FALSE (0000ms, 0813ms total)
T2890 088:000 JLINK_IsHalted()  returns FALSE (0000ms, 0813ms total)
T2890 088:102 JLINK_IsHalted()  returns FALSE (0000ms, 0813ms total)
T2890 088:203 JLINK_IsHalted()  returns FALSE (0000ms, 0813ms total)
T2890 088:305 JLINK_IsHalted()  returns FALSE (0000ms, 0813ms total)
T4070 088:407 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0814ms total)
T4070 088:408 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0815ms total)
T4070 088:409 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0816ms total)
T4070 088:410 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0817ms total)
T2890 088:411 JLINK_IsHalted()  returns FALSE (0000ms, 0817ms total)
T2890 088:512 JLINK_IsHalted()  returns FALSE (0000ms, 0817ms total)
T2890 088:613 JLINK_IsHalted()  returns FALSE (0000ms, 0817ms total)
T2890 088:715 JLINK_IsHalted()  returns FALSE (0000ms, 0817ms total)
T2890 088:816 JLINK_IsHalted()  returns FALSE (0000ms, 0817ms total)
T4070 088:919 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0818ms total)
T4070 088:920 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0819ms total)
T4070 088:921 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0820ms total)
T4070 088:922 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0821ms total)
T2890 088:923 JLINK_IsHalted()  returns FALSE (0000ms, 0821ms total)
T2890 089:024 JLINK_IsHalted()  returns FALSE (0000ms, 0821ms total)
T2890 089:125 JLINK_IsHalted()  returns FALSE (0000ms, 0821ms total)
T2890 089:227 JLINK_IsHalted()  returns FALSE (0000ms, 0821ms total)
T2890 089:328 JLINK_IsHalted()  returns FALSE (0000ms, 0821ms total)
T2890 089:429 JLINK_IsHalted()  returns FALSE (0000ms, 0821ms total)
T4070 089:532 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 0821ms total)
T4070 089:532 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0822ms total)
T4070 089:533 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0823ms total)
T4070 089:534 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0824ms total)
T2890 089:535 JLINK_IsHalted()  returns FALSE (0000ms, 0824ms total)
T2890 089:637 JLINK_IsHalted()  returns FALSE (0000ms, 0824ms total)
T2890 089:738 JLINK_IsHalted()  returns FALSE (0000ms, 0824ms total)
T2890 089:839 JLINK_IsHalted()  returns FALSE (0000ms, 0824ms total)
T2890 089:940 JLINK_IsHalted()  returns FALSE (0000ms, 0824ms total)
T2890 090:042 JLINK_IsHalted()  returns FALSE (0000ms, 0824ms total)
T4070 090:144 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0825ms total)
T4070 090:145 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0826ms total)
T4070 090:146 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0827ms total)
T4070 090:147 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0828ms total)
T2890 090:148 JLINK_IsHalted()  returns FALSE (0000ms, 0828ms total)
T2890 090:249 JLINK_IsHalted()  returns FALSE (0000ms, 0828ms total)
T2890 090:351 JLINK_IsHalted()  returns FALSE (0000ms, 0828ms total)
T2890 090:452 JLINK_IsHalted()  returns FALSE (0000ms, 0828ms total)
T2890 090:553 JLINK_IsHalted()  returns FALSE (0000ms, 0828ms total)
T4070 090:656 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 0828ms total)
T4070 090:656 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0829ms total)
T4070 090:658 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 0829ms total)
T4070 090:658 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0830ms total)
T2890 090:659 JLINK_IsHalted()  returns FALSE (0001ms, 0831ms total)
T2890 090:761 JLINK_IsHalted()  returns FALSE (0000ms, 0830ms total)
T2890 090:862 JLINK_IsHalted()  returns FALSE (0000ms, 0830ms total)
T2890 090:963 JLINK_IsHalted()  returns FALSE (0000ms, 0830ms total)
T2890 091:065 JLINK_IsHalted()  returns FALSE (0000ms, 0830ms total)
T2890 091:166 JLINK_IsHalted()  returns FALSE (0000ms, 0830ms total)
T4070 091:269 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 0830ms total)
T4070 091:269 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0831ms total)
T4070 091:270 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0832ms total)
T4070 091:271 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0833ms total)
T2890 091:272 JLINK_IsHalted()  returns FALSE (0001ms, 0834ms total)
T2890 091:373 JLINK_IsHalted()  returns FALSE (0000ms, 0833ms total)
T2890 091:475 JLINK_Halt()  returns 0x00 (0003ms, 0836ms total)
T2890 091:478 JLINK_IsHalted()  returns TRUE (0000ms, 0836ms total)
T2890 091:478 JLINK_IsHalted()  returns TRUE (0000ms, 0836ms total)
T2890 091:478 JLINK_IsHalted()  returns TRUE (0000ms, 0836ms total)
T2890 091:478 JLINK_ReadReg(R15 (PC))  returns 0x0000CBF4 (0000ms, 0836ms total)
T2890 091:478 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 0836ms total)
T2890 091:478 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 01 00 00 00  returns 0x01 (0001ms, 0837ms total)
T2890 091:479 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 0838ms total)
T2890 091:480 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0000ms, 0838ms total)
T2890 091:481 JLINK_ReadReg(R0)  returns 0x00000022 (0000ms, 0838ms total)
T2890 091:481 JLINK_ReadReg(R1)  returns 0x00000008 (0000ms, 0838ms total)
T2890 091:481 JLINK_ReadReg(R2)  returns 0x00002800 (0000ms, 0838ms total)
T2890 091:481 JLINK_ReadReg(R3)  returns 0x00002810 (0000ms, 0838ms total)
T2890 091:481 JLINK_ReadReg(R4)  returns 0x000007CD (0000ms, 0838ms total)
T2890 091:481 JLINK_ReadReg(R5)  returns 0x000000CD (0000ms, 0838ms total)
T2890 091:481 JLINK_ReadReg(R6)  returns 0x00000004 (0000ms, 0838ms total)
T2890 091:481 JLINK_ReadReg(R7)  returns 0x0201A884 (0000ms, 0838ms total)
T2890 091:481 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 0838ms total)
T2890 091:481 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 0838ms total)
T2890 091:481 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 0838ms total)
T2890 091:481 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 0838ms total)
T2890 091:481 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 0838ms total)
T2890 091:481 JLINK_ReadReg(R13 (SP))  returns 0x02029F90 (0000ms, 0838ms total)
T2890 091:481 JLINK_ReadReg(R14)  returns 0x000056C5 (0000ms, 0838ms total)
T2890 091:481 JLINK_ReadReg(R15 (PC))  returns 0x0000CBF4 (0000ms, 0838ms total)
T2890 091:481 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 0838ms total)
T2890 091:481 JLINK_ReadReg(MSP)  returns 0x02029F90 (0000ms, 0838ms total)
T2890 091:481 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 0838ms total)
T2890 091:481 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0838ms total)
T4070 091:483 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0839ms total)
T4070 091:484 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 0839ms total)
T4070 091:485 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 0839ms total)
T4070 091:485 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0840ms total)
T4070 091:491 JLINK_ReadMemEx(0x0000CBF4, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x0000CBC0) -- Updating DA cache (128 bytes @ 0x0000CBC0) -- Read from DA cache (60 bytes @ 0x0000CBF4) - Data: 00 1F FD D8 30 BC 70 47 00 28 3E D0 00 BF 00 BF ...  returns 0x3C (0002ms, 0842ms total)
T4070 091:493 JLINK_ReadMemEx(0x0000CBF4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from DA cache (2 bytes @ 0x0000CBF4) - Data: 00 1F  returns 0x02 (0000ms, 0842ms total)
T4070 091:493 JLINK_ReadMemEx(0x0000CBF6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from DA cache (2 bytes @ 0x0000CBF6) - Data: FD D8  returns 0x02 (0000ms, 0842ms total)
T4070 091:884 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 0842ms total)
T4070 091:884 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, 0912ms total)
T4070 091:954 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0912ms total)
T4070 091:954 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0912ms total)
T4070 091:957 JLINK_ReadMemEx(0x03003738, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003738) - Data: 00 F0 4E F8 FC F7 C0 FC 80 B5 0D 49 08 68 00 28 ...  returns 0x3C (0001ms, 0913ms total)
T4070 091:958 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0001ms, 0914ms total)
T4070 091:959 JLINK_ReadMemEx(0x0300373A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373A) - Data: 4E F8  returns 0x02 (0001ms, 0915ms total)
T4070 091:992 JLINK_ReadReg(R0)  returns 0x00000022 (0000ms, 0915ms total)
T4070 091:992 JLINK_ReadReg(R1)  returns 0x00000008 (0000ms, 0915ms total)
T4070 091:992 JLINK_ReadReg(R2)  returns 0x00002800 (0000ms, 0915ms total)
T4070 091:992 JLINK_ReadReg(R3)  returns 0x00002810 (0000ms, 0915ms total)
T4070 091:992 JLINK_ReadReg(R4)  returns 0x000007CD (0000ms, 0915ms total)
T4070 091:992 JLINK_ReadReg(R5)  returns 0x000000CD (0000ms, 0915ms total)
T4070 091:992 JLINK_ReadReg(R6)  returns 0x00000004 (0000ms, 0915ms total)
T4070 091:992 JLINK_ReadReg(R7)  returns 0x0201A884 (0000ms, 0915ms total)
T4070 091:992 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 0915ms total)
T4070 091:992 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 0915ms total)
T4070 091:994 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 0917ms total)
T4070 091:994 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 0917ms total)
T4070 091:994 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 0917ms total)
T4070 091:994 JLINK_ReadReg(R13 (SP))  returns 0x0202F800 (0000ms, 0917ms total)
T4070 091:994 JLINK_ReadReg(R14)  returns 0x000056C5 (0000ms, 0917ms total)
T4070 091:994 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0917ms total)
T4070 091:994 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0917ms total)
T4070 091:994 JLINK_ReadReg(MSP)  returns 0x0202F800 (0000ms, 0917ms total)
T4070 091:994 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 0917ms total)
T4070 091:994 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0917ms total)
T4070 091:994 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0918ms total)
T4070 091:995 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 0918ms total)
T4070 091:996 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 0918ms total)
T4070 091:996 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0919ms total)
T4070 092:130 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 0919ms total)
T4070 092:130 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, 0989ms total)
T4070 092:201 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0989ms total)
T4070 092:201 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0989ms total)
T4070 092:234 JLINK_ReadReg(R0)  returns 0x00000022 (0000ms, 0989ms total)
T4070 092:234 JLINK_ReadReg(R1)  returns 0x00000008 (0000ms, 0989ms total)
T4070 092:234 JLINK_ReadReg(R2)  returns 0x00002800 (0000ms, 0989ms total)
T4070 092:234 JLINK_ReadReg(R3)  returns 0x00002810 (0000ms, 0989ms total)
T4070 092:234 JLINK_ReadReg(R4)  returns 0x000007CD (0000ms, 0989ms total)
T4070 092:234 JLINK_ReadReg(R5)  returns 0x000000CD (0000ms, 0989ms total)
T4070 092:234 JLINK_ReadReg(R6)  returns 0x00000004 (0000ms, 0989ms total)
T4070 092:234 JLINK_ReadReg(R7)  returns 0x0201A884 (0000ms, 0989ms total)
T4070 092:234 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 0989ms total)
T4070 092:234 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 0989ms total)
T4070 092:234 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 0989ms total)
T4070 092:234 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 0989ms total)
T4070 092:234 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 0989ms total)
T4070 092:234 JLINK_ReadReg(R13 (SP))  returns 0x0202F800 (0001ms, 0990ms total)
T4070 092:235 JLINK_ReadReg(R14)  returns 0x000056C5 (0000ms, 0990ms total)
T4070 092:235 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0990ms total)
T4070 092:235 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0990ms total)
T4070 092:235 JLINK_ReadReg(MSP)  returns 0x0202F800 (0000ms, 0990ms total)
T4070 092:235 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 0990ms total)
T4070 092:235 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0990ms total)
T4070 092:235 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 0990ms total)
T4070 092:235 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 0991ms total)
T4070 092:236 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 0992ms total)
T4070 092:237 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 0993ms total)
T2890 092:799 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0000ms, 0993ms total)
T2890 092:799 JLINK_Go() -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU_WriteMem(4 bytes @ 0xE0002014) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0005ms, 0998ms total)
T2890 092:905 JLINK_IsHalted()  returns FALSE (0000ms, 0998ms total)
T2890 093:007 JLINK_IsHalted()  returns FALSE (0000ms, 0998ms total)
T2890 093:108 JLINK_IsHalted()  returns FALSE (0000ms, 0998ms total)
T2890 093:209 JLINK_IsHalted()  returns FALSE (0000ms, 0998ms total)
T4070 093:313 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 0999ms total)
T4070 093:314 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 0999ms total)
T4070 093:315 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 0999ms total)
T4070 093:315 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1000ms total)
T2890 093:316 JLINK_IsHalted()  returns FALSE (0001ms, 1001ms total)
T2890 093:418 JLINK_IsHalted()  returns FALSE (0000ms, 1000ms total)
T2890 093:519 JLINK_IsHalted()  returns FALSE (0000ms, 1000ms total)
T2890 093:620 JLINK_IsHalted()  returns FALSE (0000ms, 1000ms total)
T2890 093:722 JLINK_IsHalted()  returns FALSE (0000ms, 1000ms total)
T2890 093:823 JLINK_IsHalted()  returns FALSE (0000ms, 1000ms total)
T4070 093:925 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1001ms total)
T4070 093:926 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1002ms total)
T4070 093:927 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1003ms total)
T4070 093:928 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1003ms total)
T2890 093:929 JLINK_IsHalted()  returns FALSE (0000ms, 1003ms total)
T2890 094:030 JLINK_IsHalted()  returns FALSE (0000ms, 1003ms total)
T2890 094:132 JLINK_IsHalted()  returns FALSE (0000ms, 1003ms total)
T2890 094:233 JLINK_IsHalted()  returns FALSE (0000ms, 1003ms total)
T2890 094:335 JLINK_IsHalted()  returns FALSE (0000ms, 1003ms total)
T4070 094:437 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1004ms total)
T4070 094:438 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1005ms total)
T4070 094:439 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1006ms total)
T4070 094:440 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1007ms total)
T2890 094:441 JLINK_IsHalted()  returns FALSE (0000ms, 1007ms total)
T2890 094:542 JLINK_IsHalted()  returns FALSE (0000ms, 1007ms total)
T2890 094:643 JLINK_IsHalted()  returns FALSE (0000ms, 1007ms total)
T2890 094:745 JLINK_IsHalted()  returns FALSE (0000ms, 1007ms total)
T2890 094:847 JLINK_IsHalted()  returns FALSE (0000ms, 1007ms total)
T2890 094:948 JLINK_IsHalted()  returns FALSE (0000ms, 1007ms total)
T4070 095:050 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1008ms total)
T4070 095:051 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1009ms total)
T4070 095:052 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1010ms total)
T4070 095:053 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1011ms total)
T2890 095:054 JLINK_IsHalted()  returns FALSE (0000ms, 1011ms total)
T2890 095:155 JLINK_IsHalted()  returns FALSE (0000ms, 1011ms total)
T2890 095:257 JLINK_IsHalted()  returns FALSE (0000ms, 1011ms total)
T2890 095:358 JLINK_IsHalted()  returns FALSE (0000ms, 1011ms total)
T2890 095:459 JLINK_IsHalted()  returns FALSE (0000ms, 1011ms total)
T4070 095:561 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1012ms total)
T4070 095:562 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1013ms total)
T4070 095:564 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1013ms total)
T4070 095:564 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1014ms total)
T2890 095:565 JLINK_IsHalted()  returns FALSE (0001ms, 1015ms total)
T2890 095:667 JLINK_IsHalted()  returns FALSE (0000ms, 1014ms total)
T2890 095:768 JLINK_IsHalted()  returns FALSE (0000ms, 1014ms total)
T2890 095:869 JLINK_IsHalted()  returns FALSE (0000ms, 1014ms total)
T2890 095:970 JLINK_IsHalted()  returns FALSE (0000ms, 1014ms total)
T2890 096:072 JLINK_IsHalted()  returns FALSE (0000ms, 1014ms total)
T4070 096:174 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1015ms total)
T4070 096:175 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1016ms total)
T4070 096:176 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1017ms total)
T4070 096:177 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1018ms total)
T2890 096:178 JLINK_IsHalted()  returns FALSE (0001ms, 1019ms total)
T2890 096:279 JLINK_IsHalted()  returns FALSE (0000ms, 1018ms total)
T2890 096:381 JLINK_IsHalted()  returns FALSE (0000ms, 1018ms total)
T2890 096:482 JLINK_IsHalted()  returns FALSE (0000ms, 1018ms total)
T2890 096:584 JLINK_IsHalted()  returns FALSE (0000ms, 1018ms total)
T4070 096:686 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1019ms total)
T4070 096:687 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1019ms total)
T4070 096:688 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1020ms total)
T4070 096:688 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1021ms total)
T2890 096:689 JLINK_IsHalted()  returns FALSE (0001ms, 1022ms total)
T2890 096:791 JLINK_IsHalted()  returns FALSE (0000ms, 1021ms total)
T2890 096:892 JLINK_IsHalted()  returns FALSE (0000ms, 1021ms total)
T2890 096:994 JLINK_IsHalted()  returns FALSE (0000ms, 1021ms total)
T2890 097:095 JLINK_IsHalted()  returns FALSE (0000ms, 1021ms total)
T2890 097:196 JLINK_IsHalted()  returns FALSE (0000ms, 1021ms total)
T4070 097:299 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1022ms total)
T4070 097:300 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1023ms total)
T4070 097:301 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1024ms total)
T4070 097:302 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1024ms total)
T2890 097:302 JLINK_IsHalted()  returns FALSE (0001ms, 1025ms total)
T2890 097:405 JLINK_IsHalted()  returns FALSE (0000ms, 1024ms total)
T2890 097:506 JLINK_IsHalted()  returns FALSE (0000ms, 1024ms total)
T2890 097:607 JLINK_IsHalted()  returns FALSE (0000ms, 1024ms total)
T2890 097:709 JLINK_IsHalted()  returns FALSE (0000ms, 1024ms total)
T4070 097:811 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1025ms total)
T4070 097:812 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1026ms total)
T4070 097:813 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1027ms total)
T4070 097:814 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1027ms total)
T2890 097:814 JLINK_IsHalted()  returns FALSE (0001ms, 1028ms total)
T2890 097:917 JLINK_IsHalted()  returns FALSE (0000ms, 1027ms total)
T2890 098:018 JLINK_IsHalted()  returns FALSE (0000ms, 1027ms total)
T2890 098:119 JLINK_IsHalted()  returns FALSE (0000ms, 1027ms total)
T2890 098:220 JLINK_IsHalted()  returns FALSE (0000ms, 1027ms total)
T2890 098:322 JLINK_IsHalted()  returns FALSE (0000ms, 1027ms total)
T4070 098:424 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1028ms total)
T4070 098:425 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1029ms total)
T4070 098:426 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1030ms total)
T4070 098:427 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1030ms total)
T2890 098:427 JLINK_IsHalted()  returns FALSE (0001ms, 1031ms total)
T2890 098:529 JLINK_IsHalted()  returns FALSE (0000ms, 1030ms total)
T2890 098:630 JLINK_IsHalted()  returns FALSE (0000ms, 1030ms total)
T2890 098:732 JLINK_IsHalted()  returns FALSE (0000ms, 1030ms total)
T2890 098:833 JLINK_IsHalted()  returns FALSE (0000ms, 1030ms total)
T4070 098:935 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1031ms total)
T4070 098:936 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1032ms total)
T4070 098:937 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1033ms total)
T4070 098:938 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1034ms total)
T2890 098:939 JLINK_IsHalted()  returns FALSE (0000ms, 1034ms total)
T2890 099:041 JLINK_IsHalted()  returns FALSE (0000ms, 1034ms total)
T2890 099:141 JLINK_IsHalted()  returns FALSE (0010ms, 1044ms total)
T2890 099:252 JLINK_IsHalted()  returns FALSE (0000ms, 1034ms total)
T2890 099:353 JLINK_IsHalted()  returns FALSE (0000ms, 1034ms total)
T4070 099:456 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1034ms total)
T4070 099:456 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1035ms total)
T4070 099:457 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1036ms total)
T4070 099:458 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1037ms total)
T2890 099:459 JLINK_IsHalted()  returns FALSE (0001ms, 1038ms total)
T2890 099:560 JLINK_IsHalted()  returns FALSE (0000ms, 1037ms total)
T2890 099:662 JLINK_IsHalted()  returns FALSE (0000ms, 1037ms total)
T2890 099:762 JLINK_IsHalted()  returns FALSE (0000ms, 1037ms total)
T2890 099:864 JLINK_IsHalted()  returns FALSE (0000ms, 1037ms total)
T4070 099:966 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1038ms total)
T4070 099:967 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1039ms total)
T4070 099:968 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1040ms total)
T4070 099:969 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1041ms total)
T2890 099:970 JLINK_IsHalted()  returns FALSE (0000ms, 1041ms total)
T2890 100:071 JLINK_IsHalted()  returns FALSE (0000ms, 1041ms total)
T2890 100:173 JLINK_IsHalted()  returns FALSE (0000ms, 1041ms total)
T2890 100:274 JLINK_IsHalted()  returns FALSE (0000ms, 1041ms total)
T2890 100:375 JLINK_IsHalted()  returns FALSE (0000ms, 1041ms total)
T2890 100:476 JLINK_IsHalted()  returns FALSE (0000ms, 1041ms total)
T4070 100:580 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1042ms total)
T4070 100:581 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1043ms total)
T4070 100:582 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1043ms total)
T4070 100:582 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1044ms total)
T2890 100:583 JLINK_IsHalted()  returns FALSE (0001ms, 1045ms total)
T2890 100:684 JLINK_IsHalted()  returns FALSE (0000ms, 1044ms total)
T2890 100:785 JLINK_IsHalted()  returns FALSE (0000ms, 1044ms total)
T2890 100:886 JLINK_IsHalted()  returns FALSE (0000ms, 1044ms total)
T2890 100:987 JLINK_IsHalted()  returns FALSE (0000ms, 1044ms total)
T2890 101:088 JLINK_IsHalted()  returns FALSE (0000ms, 1044ms total)
T4070 101:192 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1044ms total)
T4070 101:192 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1045ms total)
T4070 101:193 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1046ms total)
T4070 101:194 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1047ms total)
T2890 101:195 JLINK_IsHalted()  returns FALSE (0001ms, 1048ms total)
T2890 101:297 JLINK_IsHalted()  returns FALSE (0000ms, 1047ms total)
T2890 101:398 JLINK_IsHalted()  returns FALSE (0000ms, 1047ms total)
T2890 101:500 JLINK_IsHalted()  returns FALSE (0000ms, 1047ms total)
T2890 101:601 JLINK_IsHalted()  returns FALSE (0000ms, 1047ms total)
T4070 101:703 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1048ms total)
T4070 101:704 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1049ms total)
T4070 101:705 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1050ms total)
T4070 101:706 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1051ms total)
T2890 101:707 JLINK_IsHalted()  returns FALSE (0000ms, 1051ms total)
T2890 101:808 JLINK_IsHalted()  returns FALSE (0000ms, 1051ms total)
T2890 101:910 JLINK_IsHalted()  returns FALSE (0000ms, 1051ms total)
T2890 102:011 JLINK_IsHalted()  returns FALSE (0000ms, 1051ms total)
T2890 102:112 JLINK_IsHalted()  returns FALSE (0000ms, 1051ms total)
T2890 102:213 JLINK_IsHalted()  returns FALSE (0000ms, 1051ms total)
T4070 102:316 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1052ms total)
T4070 102:317 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1053ms total)
T4070 102:318 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1054ms total)
T4070 102:319 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1055ms total)
T2890 102:320 JLINK_IsHalted()  returns FALSE (0001ms, 1056ms total)
T2890 102:421 JLINK_IsHalted()  returns FALSE (0000ms, 1055ms total)
T2890 102:523 JLINK_IsHalted()  returns FALSE (0000ms, 1055ms total)
T2890 102:624 JLINK_IsHalted()  returns FALSE (0000ms, 1055ms total)
T2890 102:725 JLINK_IsHalted()  returns FALSE (0000ms, 1055ms total)
T4070 102:827 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1056ms total)
T4070 102:828 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1057ms total)
T4070 102:829 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1058ms total)
T4070 102:830 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1058ms total)
T2890 102:830 JLINK_IsHalted()  returns FALSE (0001ms, 1059ms total)
T2890 102:933 JLINK_IsHalted()  returns FALSE (0000ms, 1058ms total)
T2890 103:034 JLINK_IsHalted()  returns FALSE (0000ms, 1058ms total)
T2890 103:135 JLINK_IsHalted()  returns FALSE (0000ms, 1058ms total)
T2890 103:236 JLINK_IsHalted()  returns FALSE (0007ms, 1065ms total)
T4070 103:345 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1059ms total)
T4070 103:346 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1060ms total)
T4070 103:347 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1061ms total)
T4070 103:348 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1062ms total)
T2890 103:349 JLINK_IsHalted()  returns FALSE (0001ms, 1063ms total)
T2890 103:451 JLINK_IsHalted()  returns FALSE (0000ms, 1062ms total)
T2890 103:552 JLINK_IsHalted()  returns FALSE (0000ms, 1062ms total)
T2890 103:653 JLINK_IsHalted()  returns FALSE (0000ms, 1062ms total)
T2890 103:755 JLINK_IsHalted()  returns FALSE (0000ms, 1062ms total)
T4070 103:857 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1063ms total)
T4070 103:858 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1064ms total)
T4070 103:859 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1065ms total)
T4070 103:860 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0002ms, 1067ms total)
T2890 103:862 JLINK_IsHalted()  returns FALSE (0000ms, 1067ms total)
T2890 103:963 JLINK_IsHalted()  returns FALSE (0000ms, 1067ms total)
T2890 104:064 JLINK_IsHalted()  returns FALSE (0000ms, 1067ms total)
T2890 104:165 JLINK_IsHalted()  returns FALSE (0000ms, 1067ms total)
T2890 104:266 JLINK_IsHalted()  returns FALSE (0000ms, 1067ms total)
T2890 104:367 JLINK_IsHalted()  returns FALSE (0000ms, 1067ms total)
T4070 104:471 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1068ms total)
T4070 104:472 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1068ms total)
T4070 104:473 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1068ms total)
T4070 104:473 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1069ms total)
T2890 104:474 JLINK_IsHalted()  returns FALSE (0001ms, 1070ms total)
T2890 104:575 JLINK_IsHalted()  returns FALSE (0000ms, 1069ms total)
T2890 104:676 JLINK_IsHalted()  returns FALSE (0000ms, 1069ms total)
T2890 104:777 JLINK_IsHalted()  returns FALSE (0000ms, 1069ms total)
T2890 104:879 JLINK_IsHalted()  returns FALSE (0000ms, 1069ms total)
T4070 104:981 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1070ms total)
T4070 104:982 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1071ms total)
T4070 104:983 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1072ms total)
T4070 104:984 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1073ms total)
T2890 104:985 JLINK_IsHalted()  returns FALSE (0000ms, 1073ms total)
T2890 105:086 JLINK_IsHalted()  returns FALSE (0000ms, 1073ms total)
T2890 105:188 JLINK_IsHalted()  returns FALSE (0000ms, 1073ms total)
T2890 105:289 JLINK_IsHalted()  returns FALSE (0000ms, 1073ms total)
T2890 105:390 JLINK_IsHalted()  returns FALSE (0000ms, 1073ms total)
T2890 105:491 JLINK_IsHalted()  returns FALSE (0000ms, 1073ms total)
T4070 105:594 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1074ms total)
T4070 105:595 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1075ms total)
T4070 105:596 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1076ms total)
T4070 105:597 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1076ms total)
T2890 105:597 JLINK_IsHalted()  returns FALSE (0001ms, 1077ms total)
T2890 105:699 JLINK_IsHalted()  returns FALSE (0000ms, 1076ms total)
T2890 105:800 JLINK_IsHalted()  returns FALSE (0000ms, 1076ms total)
T2890 105:902 JLINK_IsHalted()  returns FALSE (0000ms, 1076ms total)
T2890 106:003 JLINK_IsHalted()  returns FALSE (0000ms, 1076ms total)
T2890 106:104 JLINK_IsHalted()  returns FALSE (0000ms, 1076ms total)
T4070 106:207 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1076ms total)
T4070 106:207 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1077ms total)
T4070 106:208 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1078ms total)
T4070 106:209 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1079ms total)
T2890 106:210 JLINK_IsHalted()  returns FALSE (0001ms, 1080ms total)
T2890 106:312 JLINK_IsHalted()  returns FALSE (0000ms, 1079ms total)
T2890 106:413 JLINK_IsHalted()  returns FALSE (0000ms, 1079ms total)
T2890 106:514 JLINK_IsHalted()  returns FALSE (0000ms, 1079ms total)
T2890 106:616 JLINK_IsHalted()  returns FALSE (0000ms, 1079ms total)
T4070 106:719 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1080ms total)
T4070 106:720 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1081ms total)
T4070 106:721 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1082ms total)
T4070 106:722 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1083ms total)
T2890 106:723 JLINK_IsHalted()  returns FALSE (0000ms, 1083ms total)
T2890 106:825 JLINK_IsHalted()  returns FALSE (0000ms, 1083ms total)
T2890 106:926 JLINK_IsHalted()  returns FALSE (0000ms, 1083ms total)
T2890 107:027 JLINK_IsHalted()  returns FALSE (0000ms, 1083ms total)
T2890 107:128 JLINK_IsHalted()  returns FALSE (0000ms, 1083ms total)
T4070 107:231 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1084ms total)
T4070 107:232 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1085ms total)
T4070 107:233 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1086ms total)
T4070 107:234 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1087ms total)
T2890 107:235 JLINK_IsHalted()  returns FALSE (0001ms, 1088ms total)
T2890 107:336 JLINK_IsHalted()  returns FALSE (0000ms, 1087ms total)
T2890 107:437 JLINK_IsHalted()  returns FALSE (0000ms, 1087ms total)
T2890 107:539 JLINK_IsHalted()  returns FALSE (0000ms, 1087ms total)
T2890 107:640 JLINK_IsHalted()  returns FALSE (0000ms, 1087ms total)
T2890 107:741 JLINK_IsHalted()  returns FALSE (0000ms, 1087ms total)
T4070 107:844 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1087ms total)
T4070 107:844 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1088ms total)
T4070 107:845 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1089ms total)
T4070 107:846 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1090ms total)
T2890 107:847 JLINK_IsHalted()  returns FALSE (0001ms, 1091ms total)
T2890 107:949 JLINK_IsHalted()  returns FALSE (0000ms, 1090ms total)
T2890 108:050 JLINK_IsHalted()  returns FALSE (0000ms, 1090ms total)
T2890 108:152 JLINK_IsHalted()  returns FALSE (0000ms, 1090ms total)
T2890 108:253 JLINK_IsHalted()  returns FALSE (0000ms, 1090ms total)
T2890 108:354 JLINK_IsHalted()  returns FALSE (0000ms, 1090ms total)
T4070 108:457 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1090ms total)
T4070 108:457 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1091ms total)
T4070 108:458 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1092ms total)
T4070 108:459 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1093ms total)
T2890 108:460 JLINK_IsHalted()  returns FALSE (0000ms, 1093ms total)
T2890 108:562 JLINK_IsHalted()  returns FALSE (0000ms, 1093ms total)
T2890 108:663 JLINK_IsHalted()  returns FALSE (0000ms, 1093ms total)
T2890 108:764 JLINK_IsHalted()  returns FALSE (0000ms, 1093ms total)
T2890 108:865 JLINK_IsHalted()  returns FALSE (0000ms, 1093ms total)
T4070 108:969 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1094ms total)
T4070 108:970 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1095ms total)
T4070 108:971 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1096ms total)
T4070 108:972 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1096ms total)
T2890 108:972 JLINK_IsHalted()  returns FALSE (0001ms, 1097ms total)
T2890 109:074 JLINK_IsHalted()  returns FALSE (0000ms, 1096ms total)
T2890 109:175 JLINK_IsHalted()  returns FALSE (0000ms, 1096ms total)
T2890 109:277 JLINK_IsHalted()  returns FALSE (0000ms, 1096ms total)
T2890 109:378 JLINK_IsHalted()  returns FALSE (0000ms, 1096ms total)
T2890 109:479 JLINK_IsHalted()  returns FALSE (0000ms, 1096ms total)
T4070 109:581 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1097ms total)
T4070 109:582 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1098ms total)
T4070 109:583 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1099ms total)
T4070 109:584 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1099ms total)
T2890 109:584 JLINK_IsHalted()  returns FALSE (0001ms, 1100ms total)
T2890 109:687 JLINK_IsHalted()  returns FALSE (0000ms, 1099ms total)
T2890 109:788 JLINK_IsHalted()  returns FALSE (0000ms, 1099ms total)
T2890 109:889 JLINK_IsHalted()  returns FALSE (0000ms, 1099ms total)
T2890 109:990 JLINK_IsHalted()  returns FALSE (0000ms, 1099ms total)
T4070 110:094 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1100ms total)
T4070 110:095 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1101ms total)
T4070 110:096 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1102ms total)
T4070 110:097 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1102ms total)
T2890 110:097 JLINK_IsHalted()  returns FALSE (0001ms, 1103ms total)
T2890 110:200 JLINK_IsHalted()  returns FALSE (0000ms, 1102ms total)
T2890 110:301 JLINK_IsHalted()  returns FALSE (0000ms, 1102ms total)
T2890 110:402 JLINK_IsHalted()  returns FALSE (0000ms, 1102ms total)
T2890 110:503 JLINK_IsHalted()  returns FALSE (0000ms, 1102ms total)
T4070 110:607 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1103ms total)
T4070 110:608 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1103ms total)
T4070 110:609 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1103ms total)
T4070 110:609 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1104ms total)
T2890 110:610 JLINK_IsHalted()  returns FALSE (0001ms, 1105ms total)
T2890 110:711 JLINK_IsHalted()  returns FALSE (0000ms, 1104ms total)
T2890 110:812 JLINK_IsHalted()  returns FALSE (0000ms, 1104ms total)
T2890 110:913 JLINK_IsHalted()  returns FALSE (0000ms, 1104ms total)
T2890 111:015 JLINK_IsHalted()  returns FALSE (0000ms, 1104ms total)
T2890 111:116 JLINK_IsHalted()  returns FALSE (0000ms, 1104ms total)
T4070 111:218 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1105ms total)
T4070 111:219 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1106ms total)
T4070 111:220 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1107ms total)
T4070 111:221 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1108ms total)
T2890 111:222 JLINK_IsHalted()  returns FALSE (0000ms, 1108ms total)
T2890 111:324 JLINK_IsHalted()  returns FALSE (0000ms, 1108ms total)
T2890 111:425 JLINK_IsHalted()  returns FALSE (0000ms, 1108ms total)
T2890 111:526 JLINK_IsHalted()  returns FALSE (0000ms, 1108ms total)
T2890 111:627 JLINK_IsHalted()  returns FALSE (0000ms, 1108ms total)
T4070 111:666 JLINK_SetBPEx(Addr = 0x00005DEA, Type = 0xFFFFFFF2) -- CPU is running -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002008)  returns 0x00000003 (0001ms, 1109ms total)
T2890 111:729 JLINK_IsHalted()  returns FALSE (0000ms, 1109ms total)
T4070 111:831 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1110ms total)
T4070 111:832 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1111ms total)
T4070 111:833 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1112ms total)
T4070 111:834 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1113ms total)
T2890 111:835 JLINK_IsHalted()  returns FALSE (0000ms, 1113ms total)
T2890 111:936 JLINK_IsHalted()  returns FALSE (0000ms, 1113ms total)
T2890 112:038 JLINK_IsHalted()  returns FALSE (0000ms, 1113ms total)
T2890 112:139 JLINK_IsHalted()  returns FALSE (0000ms, 1113ms total)
T2890 112:240 JLINK_IsHalted()  returns FALSE (0000ms, 1113ms total)
T4070 112:344 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1114ms total)
T4070 112:345 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1115ms total)
T4070 112:346 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1116ms total)
T4070 112:347 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1116ms total)
T2890 112:347 JLINK_IsHalted()  returns FALSE (0001ms, 1117ms total)
T2890 112:449 JLINK_IsHalted()  returns FALSE (0000ms, 1116ms total)
T2890 112:550 JLINK_IsHalted()  returns FALSE (0000ms, 1116ms total)
T2890 112:651 JLINK_IsHalted()  returns FALSE (0000ms, 1116ms total)
T2890 112:752 JLINK_IsHalted()  returns FALSE (0000ms, 1116ms total)
T2890 112:853 JLINK_IsHalted()  returns FALSE (0000ms, 1116ms total)
T4070 112:956 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1117ms total)
T4070 112:957 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1118ms total)
T4070 112:958 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1119ms total)
T4070 112:959 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1120ms total)
T2890 112:960 JLINK_IsHalted()  returns FALSE (0000ms, 1120ms total)
T2890 113:061 JLINK_IsHalted()  returns FALSE (0000ms, 1120ms total)
T2890 113:162 JLINK_IsHalted()  returns FALSE (0000ms, 1120ms total)
T2890 113:264 JLINK_IsHalted()  returns FALSE (0000ms, 1120ms total)
T2890 113:365 JLINK_IsHalted()  returns FALSE (0000ms, 1120ms total)
T4070 113:468 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1121ms total)
T4070 113:469 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1122ms total)
T4070 113:470 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1123ms total)
T4070 113:471 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1123ms total)
T2890 113:472 JLINK_IsHalted()  returns FALSE (0000ms, 1123ms total)
T2890 113:573 JLINK_IsHalted()  returns FALSE (0000ms, 1123ms total)
T2890 113:675 JLINK_IsHalted()  returns FALSE (0000ms, 1123ms total)
T2890 113:776 JLINK_IsHalted()  returns FALSE (0000ms, 1123ms total)
T2890 113:877 JLINK_IsHalted()  returns FALSE (0000ms, 1123ms total)
T2890 113:978 JLINK_IsHalted()  returns FALSE (0000ms, 1123ms total)
T4070 114:080 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1124ms total)
T4070 114:081 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1125ms total)
T4070 114:082 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1126ms total)
T4070 114:083 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1127ms total)
T2890 114:084 JLINK_IsHalted()  returns FALSE (0000ms, 1127ms total)
T2890 114:186 JLINK_IsHalted()  returns FALSE (0000ms, 1127ms total)
T2890 114:287 JLINK_IsHalted()  returns FALSE (0000ms, 1127ms total)
T2890 114:388 JLINK_IsHalted()  returns FALSE (0000ms, 1127ms total)
T2890 114:489 JLINK_IsHalted()  returns FALSE (0000ms, 1127ms total)
T4070 114:593 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1128ms total)
T4070 114:594 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1128ms total)
T4070 114:595 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1128ms total)
T4070 114:595 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1129ms total)
T2890 114:596 JLINK_IsHalted()  returns FALSE (0001ms, 1130ms total)
T2890 114:697 JLINK_IsHalted()  returns FALSE (0000ms, 1129ms total)
T2890 114:798 JLINK_IsHalted()  returns FALSE (0000ms, 1129ms total)
T2890 114:899 JLINK_IsHalted()  returns FALSE (0000ms, 1129ms total)
T2890 115:001 JLINK_IsHalted()  returns FALSE (0000ms, 1129ms total)
T2890 115:102 JLINK_IsHalted()  returns FALSE (0000ms, 1129ms total)
T4070 115:205 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1130ms total)
T4070 115:206 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1130ms total)
T4070 115:206 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1131ms total)
T4070 115:207 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1132ms total)
T2890 115:208 JLINK_IsHalted()  returns FALSE (0001ms, 1133ms total)
T2890 115:309 JLINK_IsHalted()  returns FALSE (0000ms, 1132ms total)
T2890 115:411 JLINK_IsHalted()  returns FALSE (0000ms, 1132ms total)
T2890 115:512 JLINK_IsHalted()  returns FALSE (0000ms, 1132ms total)
T2890 115:614 JLINK_IsHalted()  returns FALSE (0000ms, 1132ms total)
T4070 115:717 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1133ms total)
T4070 115:718 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1134ms total)
T4070 115:719 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1135ms total)
T4070 115:720 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1136ms total)
T2890 115:721 JLINK_IsHalted()  returns FALSE (0000ms, 1136ms total)
T2890 115:823 JLINK_IsHalted()  returns FALSE (0000ms, 1136ms total)
T2890 115:924 JLINK_IsHalted()  returns FALSE (0000ms, 1136ms total)
T2890 116:025 JLINK_IsHalted()  returns FALSE (0000ms, 1136ms total)
T2890 116:126 JLINK_IsHalted()  returns FALSE (0000ms, 1136ms total)
T2890 116:228 JLINK_IsHalted()  returns FALSE (0000ms, 1136ms total)
T4070 116:330 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1137ms total)
T4070 116:331 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1138ms total)
T4070 116:332 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1139ms total)
T4070 116:333 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1139ms total)
T2890 116:333 JLINK_IsHalted()  returns FALSE (0001ms, 1140ms total)
T2890 116:435 JLINK_IsHalted()  returns FALSE (0000ms, 1139ms total)
T2890 116:537 JLINK_IsHalted()  returns FALSE (0000ms, 1139ms total)
T2890 116:638 JLINK_IsHalted()  returns FALSE (0000ms, 1139ms total)
T2890 116:739 JLINK_IsHalted()  returns FALSE (0000ms, 1139ms total)
T4070 116:841 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1140ms total)
T4070 116:842 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1141ms total)
T4070 116:843 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1142ms total)
T4070 116:844 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1142ms total)
T2890 116:844 JLINK_IsHalted()  returns FALSE (0001ms, 1143ms total)
T2890 116:947 JLINK_IsHalted()  returns FALSE (0000ms, 1142ms total)
T2890 117:048 JLINK_IsHalted()  returns FALSE (0000ms, 1142ms total)
T2890 117:149 JLINK_IsHalted()  returns FALSE (0000ms, 1142ms total)
T2890 117:250 JLINK_IsHalted()  returns FALSE (0000ms, 1142ms total)
T2890 117:352 JLINK_IsHalted()  returns FALSE (0000ms, 1142ms total)
T4070 117:455 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1142ms total)
T4070 117:455 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1143ms total)
T4070 117:456 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1144ms total)
T4070 117:457 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1145ms total)
T2890 117:458 JLINK_IsHalted()  returns FALSE (0001ms, 1146ms total)
T2890 117:560 JLINK_IsHalted()  returns FALSE (0000ms, 1145ms total)
T2890 117:661 JLINK_IsHalted()  returns FALSE (0000ms, 1145ms total)
T2890 117:763 JLINK_IsHalted()  returns FALSE (0000ms, 1145ms total)
T2890 117:864 JLINK_IsHalted()  returns FALSE (0000ms, 1145ms total)
T4070 117:968 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1145ms total)
T4070 117:968 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0002ms, 1147ms total)
T4070 117:971 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1148ms total)
T4070 117:972 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1149ms total)
T2890 117:973 JLINK_IsHalted()  returns FALSE (0001ms, 1150ms total)
T2890 118:075 JLINK_IsHalted()  returns FALSE (0000ms, 1149ms total)
T2890 118:176 JLINK_IsHalted()  returns FALSE (0000ms, 1149ms total)
T2890 118:277 JLINK_IsHalted()  returns FALSE (0000ms, 1149ms total)
T2890 118:379 JLINK_IsHalted()  returns FALSE (0000ms, 1149ms total)
T4070 118:481 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1150ms total)
T4070 118:482 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1151ms total)
T4070 118:483 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1152ms total)
T4070 118:484 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1153ms total)
T2890 118:485 JLINK_IsHalted()  returns FALSE (0000ms, 1153ms total)
T2890 118:586 JLINK_IsHalted()  returns FALSE (0000ms, 1153ms total)
T2890 118:687 JLINK_IsHalted()  returns FALSE (0000ms, 1153ms total)
T2890 118:789 JLINK_IsHalted()  returns FALSE (0000ms, 1153ms total)
T2890 118:890 JLINK_IsHalted()  returns FALSE (0000ms, 1153ms total)
T2890 118:992 JLINK_IsHalted()  returns FALSE (0000ms, 1153ms total)
T4070 119:094 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1154ms total)
T4070 119:095 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1155ms total)
T4070 119:096 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1156ms total)
T4070 119:097 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1156ms total)
T2890 119:097 JLINK_IsHalted()  returns FALSE (0001ms, 1157ms total)
T2890 119:199 JLINK_IsHalted()  returns FALSE (0000ms, 1156ms total)
T2890 119:301 JLINK_IsHalted()  returns FALSE (0000ms, 1156ms total)
T2890 119:402 JLINK_IsHalted()  returns FALSE (0000ms, 1156ms total)
T2890 119:503 JLINK_IsHalted()  returns FALSE (0000ms, 1156ms total)
T2890 119:604 JLINK_IsHalted()  returns FALSE (0000ms, 1156ms total)
T4070 119:707 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1157ms total)
T4070 119:708 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1157ms total)
T4070 119:709 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1157ms total)
T4070 119:709 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1158ms total)
T2890 119:710 JLINK_IsHalted()  returns FALSE (0001ms, 1159ms total)
T2890 119:812 JLINK_IsHalted()  returns FALSE (0000ms, 1158ms total)
T2890 119:913 JLINK_IsHalted()  returns FALSE (0000ms, 1158ms total)
T2890 120:014 JLINK_IsHalted()  returns FALSE (0000ms, 1158ms total)
T2890 120:115 JLINK_IsHalted()  returns FALSE (0000ms, 1158ms total)
T4070 120:219 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1159ms total)
T4070 120:220 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1159ms total)
T4070 120:221 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1159ms total)
T4070 120:221 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1160ms total)
T2890 120:222 JLINK_IsHalted()  returns FALSE (0001ms, 1161ms total)
T2890 120:324 JLINK_IsHalted()  returns FALSE (0000ms, 1160ms total)
T2890 120:425 JLINK_IsHalted()  returns FALSE (0000ms, 1160ms total)
T2890 120:527 JLINK_IsHalted()  returns FALSE (0000ms, 1160ms total)
T2890 120:628 JLINK_IsHalted()  returns FALSE (0000ms, 1160ms total)
T2890 120:729 JLINK_IsHalted()  returns FALSE (0000ms, 1160ms total)
T4070 120:832 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1160ms total)
T4070 120:832 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1161ms total)
T4070 120:833 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1162ms total)
T4070 120:834 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1163ms total)
T2890 120:835 JLINK_IsHalted()  returns FALSE (0001ms, 1164ms total)
T2890 120:937 JLINK_IsHalted()  returns FALSE (0000ms, 1163ms total)
T2890 121:038 JLINK_IsHalted()  returns FALSE (0000ms, 1163ms total)
T2890 121:139 JLINK_IsHalted()  returns FALSE (0000ms, 1163ms total)
T2890 121:241 JLINK_IsHalted()  returns FALSE (0000ms, 1163ms total)
T4070 121:344 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1164ms total)
T4070 121:345 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1164ms total)
T4070 121:346 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1164ms total)
T4070 121:346 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1165ms total)
T2890 121:347 JLINK_IsHalted()  returns FALSE (0001ms, 1166ms total)
T2890 121:449 JLINK_IsHalted()  returns FALSE (0000ms, 1165ms total)
T2890 121:550 JLINK_IsHalted()  returns FALSE (0000ms, 1165ms total)
T2890 121:652 JLINK_IsHalted()  returns FALSE (0000ms, 1165ms total)
T2890 121:753 JLINK_IsHalted()  returns FALSE (0000ms, 1165ms total)
T2890 121:854 JLINK_IsHalted()  returns FALSE (0000ms, 1165ms total)
T4070 121:956 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1166ms total)
T4070 121:957 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1167ms total)
T4070 121:958 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1168ms total)
T4070 121:959 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1168ms total)
T2890 121:960 JLINK_IsHalted()  returns FALSE (0000ms, 1168ms total)
T2890 122:061 JLINK_IsHalted()  returns FALSE (0000ms, 1168ms total)
T2890 122:163 JLINK_IsHalted()  returns FALSE (0000ms, 1168ms total)
T2890 122:264 JLINK_IsHalted()  returns FALSE (0000ms, 1168ms total)
T2890 122:365 JLINK_IsHalted()  returns FALSE (0000ms, 1168ms total)
T4070 122:468 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1168ms total)
T4070 122:468 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1169ms total)
T4070 122:469 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1170ms total)
T4070 122:470 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1171ms total)
T2890 122:471 JLINK_IsHalted()  returns FALSE (0001ms, 1172ms total)
T2890 122:572 JLINK_IsHalted()  returns FALSE (0000ms, 1171ms total)
T2890 122:673 JLINK_IsHalted()  returns FALSE (0000ms, 1171ms total)
T2890 122:775 JLINK_IsHalted()  returns FALSE (0000ms, 1171ms total)
T2890 122:876 JLINK_IsHalted()  returns FALSE (0000ms, 1171ms total)
T2890 122:977 JLINK_IsHalted()  returns FALSE (0000ms, 1171ms total)
T4070 123:081 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1171ms total)
T4070 123:081 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1172ms total)
T4070 123:082 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1173ms total)
T4070 123:083 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1174ms total)
T2890 123:084 JLINK_IsHalted()  returns FALSE (0001ms, 1175ms total)
T2890 123:186 JLINK_IsHalted()  returns FALSE (0000ms, 1174ms total)
T2890 123:287 JLINK_IsHalted()  returns FALSE (0000ms, 1174ms total)
T2890 123:388 JLINK_IsHalted()  returns FALSE (0000ms, 1174ms total)
T2890 123:490 JLINK_IsHalted()  returns FALSE (0000ms, 1174ms total)
T4070 123:592 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1175ms total)
T4070 123:593 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1176ms total)
T4070 123:594 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1177ms total)
T4070 123:595 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1178ms total)
T2890 123:596 JLINK_IsHalted()  returns FALSE (0000ms, 1178ms total)
T2890 123:697 JLINK_IsHalted()  returns FALSE (0000ms, 1178ms total)
T2890 123:798 JLINK_IsHalted()  returns FALSE (0000ms, 1178ms total)
T2890 123:900 JLINK_IsHalted()  returns FALSE (0000ms, 1178ms total)
T2890 124:001 JLINK_IsHalted()  returns FALSE (0000ms, 1178ms total)
T2890 124:102 JLINK_IsHalted()  returns FALSE (0000ms, 1178ms total)
T4070 124:204 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1179ms total)
T4070 124:205 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1180ms total)
T4070 124:206 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1181ms total)
T4070 124:207 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1181ms total)
T2890 124:207 JLINK_IsHalted()  returns FALSE (0001ms, 1182ms total)
T2890 124:309 JLINK_IsHalted()  returns FALSE (0000ms, 1181ms total)
T2890 124:411 JLINK_IsHalted()  returns FALSE (0000ms, 1181ms total)
T2890 124:512 JLINK_IsHalted()  returns FALSE (0000ms, 1181ms total)
T2890 124:613 JLINK_IsHalted()  returns FALSE (0000ms, 1181ms total)
T2890 124:714 JLINK_IsHalted()  returns FALSE (0000ms, 1181ms total)
T4070 124:816 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1182ms total)
T4070 124:817 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1183ms total)
T4070 124:818 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1184ms total)
T4070 124:819 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1185ms total)
T2890 124:820 JLINK_IsHalted()  returns FALSE (0000ms, 1185ms total)
T2890 124:921 JLINK_IsHalted()  returns FALSE (0000ms, 1185ms total)
T2890 125:023 JLINK_IsHalted()  returns FALSE (0000ms, 1185ms total)
T2890 125:124 JLINK_IsHalted()  returns FALSE (0000ms, 1185ms total)
T2890 125:225 JLINK_IsHalted()  returns FALSE (0000ms, 1185ms total)
T4070 125:328 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1185ms total)
T4070 125:328 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1186ms total)
T4070 125:329 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1187ms total)
T4070 125:330 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1188ms total)
T2890 125:331 JLINK_IsHalted()  returns FALSE (0001ms, 1189ms total)
T2890 125:433 JLINK_IsHalted()  returns FALSE (0000ms, 1188ms total)
T2890 125:534 JLINK_IsHalted()  returns FALSE (0000ms, 1188ms total)
T2890 125:635 JLINK_IsHalted()  returns FALSE (0000ms, 1188ms total)
T2890 125:736 JLINK_IsHalted()  returns FALSE (0000ms, 1188ms total)
T2890 125:838 JLINK_IsHalted()  returns FALSE (0000ms, 1188ms total)
T4070 125:941 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1188ms total)
T4070 125:941 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1189ms total)
T4070 125:942 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1190ms total)
T4070 125:943 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1191ms total)
T2890 125:944 JLINK_IsHalted()  returns FALSE (0000ms, 1191ms total)
T2890 126:045 JLINK_IsHalted()  returns FALSE (0000ms, 1191ms total)
T2890 126:147 JLINK_IsHalted()  returns FALSE (0000ms, 1191ms total)
T2890 126:248 JLINK_IsHalted()  returns FALSE (0000ms, 1191ms total)
T2890 126:349 JLINK_IsHalted()  returns FALSE (0000ms, 1191ms total)
T4070 126:452 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1191ms total)
T4070 126:452 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1192ms total)
T4070 126:453 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1193ms total)
T4070 126:454 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1194ms total)
T2890 126:455 JLINK_IsHalted()  returns FALSE (0000ms, 1194ms total)
T2890 126:557 JLINK_IsHalted()  returns FALSE (0000ms, 1194ms total)
T2890 126:658 JLINK_IsHalted()  returns FALSE (0000ms, 1194ms total)
T2890 126:759 JLINK_IsHalted()  returns FALSE (0000ms, 1194ms total)
T2890 126:860 JLINK_IsHalted()  returns FALSE (0000ms, 1194ms total)
T2890 126:962 JLINK_IsHalted()  returns FALSE (0000ms, 1194ms total)
T4070 127:065 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1195ms total)
T4070 127:066 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1195ms total)
T4070 127:067 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1195ms total)
T4070 127:067 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1196ms total)
T2890 127:068 JLINK_IsHalted()  returns FALSE (0001ms, 1197ms total)
T2890 127:169 JLINK_IsHalted()  returns FALSE (0000ms, 1196ms total)
T2890 127:271 JLINK_IsHalted()  returns FALSE (0000ms, 1196ms total)
T2890 127:372 JLINK_IsHalted()  returns FALSE (0000ms, 1196ms total)
T2890 127:473 JLINK_IsHalted()  returns FALSE (0000ms, 1196ms total)
T4070 127:576 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1197ms total)
T4070 127:577 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1197ms total)
T4070 127:577 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1198ms total)
T4070 127:578 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1199ms total)
T2890 127:579 JLINK_IsHalted()  returns FALSE (0001ms, 1200ms total)
T2890 127:681 JLINK_IsHalted()  returns FALSE (0000ms, 1199ms total)
T2890 127:782 JLINK_IsHalted()  returns FALSE (0000ms, 1199ms total)
T2890 127:883 JLINK_IsHalted()  returns FALSE (0000ms, 1199ms total)
T2890 127:984 JLINK_IsHalted()  returns FALSE (0000ms, 1199ms total)
T2890 128:085 JLINK_IsHalted()  returns FALSE (0000ms, 1199ms total)
T4070 128:187 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1200ms total)
T4070 128:188 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1201ms total)
T4070 128:189 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1202ms total)
T4070 128:190 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1202ms total)
T2890 128:190 JLINK_IsHalted()  returns FALSE (0001ms, 1203ms total)
T2890 128:293 JLINK_IsHalted()  returns FALSE (0000ms, 1202ms total)
T2890 128:394 JLINK_IsHalted()  returns FALSE (0000ms, 1202ms total)
T2890 128:495 JLINK_IsHalted()  returns FALSE (0000ms, 1202ms total)
T2890 128:596 JLINK_IsHalted()  returns FALSE (0000ms, 1202ms total)
T2890 128:698 JLINK_IsHalted()  returns FALSE (0000ms, 1202ms total)
T4070 128:800 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1203ms total)
T4070 128:801 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1204ms total)
T4070 128:802 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1205ms total)
T4070 128:803 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1206ms total)
T2890 128:804 JLINK_IsHalted()  returns FALSE (0000ms, 1206ms total)
T2890 128:905 JLINK_IsHalted()  returns FALSE (0000ms, 1206ms total)
T2890 129:007 JLINK_IsHalted()  returns FALSE (0000ms, 1206ms total)
T2890 129:108 JLINK_IsHalted()  returns FALSE (0000ms, 1206ms total)
T2890 129:209 JLINK_IsHalted()  returns FALSE (0000ms, 1206ms total)
T4070 129:312 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1207ms total)
T4070 129:313 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1207ms total)
T4070 129:314 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1207ms total)
T4070 129:314 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1208ms total)
T2890 129:315 JLINK_IsHalted()  returns FALSE (0001ms, 1209ms total)
T2890 129:418 JLINK_IsHalted()  returns FALSE (0000ms, 1208ms total)
T2890 129:519 JLINK_IsHalted()  returns FALSE (0000ms, 1208ms total)
T2890 129:620 JLINK_IsHalted()  returns FALSE (0000ms, 1208ms total)
T2890 129:722 JLINK_IsHalted()  returns FALSE (0000ms, 1208ms total)
T4070 129:825 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1209ms total)
T4070 129:826 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1209ms total)
T4070 129:827 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1209ms total)
T4070 129:827 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1210ms total)
T2890 129:828 JLINK_IsHalted()  returns FALSE (0001ms, 1211ms total)
T2890 129:931 JLINK_IsHalted()  returns FALSE (0000ms, 1210ms total)
T2890 130:032 JLINK_IsHalted()  returns FALSE (0000ms, 1210ms total)
T2890 130:133 JLINK_IsHalted()  returns FALSE (0000ms, 1210ms total)
T2890 130:235 JLINK_IsHalted()  returns FALSE (0000ms, 1210ms total)
T2890 130:336 JLINK_IsHalted()  returns FALSE (0000ms, 1210ms total)
T4070 130:439 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1211ms total)
T4070 130:440 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1211ms total)
T4070 130:441 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1211ms total)
T4070 130:441 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1212ms total)
T2890 130:442 JLINK_IsHalted()  returns FALSE (0001ms, 1213ms total)
T2890 130:544 JLINK_IsHalted()  returns FALSE (0000ms, 1212ms total)
T2890 130:646 JLINK_IsHalted()  returns FALSE (0000ms, 1212ms total)
T2890 130:747 JLINK_IsHalted()  returns FALSE (0000ms, 1212ms total)
T2890 130:849 JLINK_IsHalted()  returns FALSE (0000ms, 1212ms total)
T4070 130:951 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1213ms total)
T4070 130:952 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1214ms total)
T4070 130:953 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1215ms total)
T4070 130:954 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1215ms total)
T2890 130:955 JLINK_IsHalted()  returns FALSE (0000ms, 1215ms total)
T2890 131:056 JLINK_IsHalted()  returns FALSE (0000ms, 1215ms total)
T2890 131:157 JLINK_IsHalted()  returns FALSE (0000ms, 1215ms total)
T2890 131:259 JLINK_IsHalted()  returns FALSE (0000ms, 1215ms total)
T2890 131:360 JLINK_IsHalted()  returns FALSE (0000ms, 1215ms total)
T2890 131:461 JLINK_IsHalted()  returns FALSE (0000ms, 1215ms total)
T4070 131:564 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1216ms total)
T4070 131:565 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1217ms total)
T4070 131:566 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1217ms total)
T4070 131:566 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1218ms total)
T2890 131:567 JLINK_IsHalted()  returns FALSE (0001ms, 1219ms total)
T2890 131:669 JLINK_IsHalted()  returns FALSE (0000ms, 1218ms total)
T2890 131:770 JLINK_IsHalted()  returns FALSE (0000ms, 1218ms total)
T2890 131:871 JLINK_IsHalted()  returns FALSE (0000ms, 1218ms total)
T2890 131:973 JLINK_IsHalted()  returns FALSE (0000ms, 1218ms total)
T4070 132:075 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1219ms total)
T4070 132:076 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1220ms total)
T4070 132:077 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1221ms total)
T4070 132:078 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1222ms total)
T2890 132:079 JLINK_IsHalted()  returns FALSE (0000ms, 1222ms total)
T4070 132:170 JLINK_SetBPEx(Addr = 0x00005D00, Type = 0xFFFFFFF2) -- CPU is running -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000200C)  returns 0x00000004 (0001ms, 1223ms total)
T4070 132:173 JLINK_SetBPEx(Addr = 0x00005D1C, Type = 0xFFFFFFF2) -- CPU is running -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002010)  returns 0x00000005 (0001ms, 1224ms total)
T2890 132:180 JLINK_IsHalted()  returns TRUE (0003ms, 1227ms total)
T2890 132:183 JLINK_Halt()  returns 0x00 (0000ms, 1224ms total)
T2890 132:183 JLINK_IsHalted()  returns TRUE (0000ms, 1224ms total)
T2890 132:183 JLINK_IsHalted()  returns TRUE (0000ms, 1224ms total)
T2890 132:183 JLINK_IsHalted()  returns TRUE (0000ms, 1224ms total)
T2890 132:183 JLINK_ReadReg(R15 (PC))  returns 0x00005D1C (0000ms, 1224ms total)
T2890 132:183 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 1224ms total)
T2890 132:183 JLINK_ClrBPEx(BPHandle = 0x00000003)  returns 0x00 (0000ms, 1224ms total)
T2890 132:183 JLINK_ClrBPEx(BPHandle = 0x00000004)  returns 0x00 (0001ms, 1225ms total)
T2890 132:184 JLINK_ClrBPEx(BPHandle = 0x00000005)  returns 0x00 (0000ms, 1225ms total)
T2890 132:184 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0000ms, 1225ms total)
T2890 132:184 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 1226ms total)
T2890 132:185 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0001ms, 1227ms total)
T2890 132:186 JLINK_ReadReg(R0)  returns 0x00000003 (0000ms, 1227ms total)
T2890 132:186 JLINK_ReadReg(R1)  returns 0x0000FF00 (0000ms, 1227ms total)
T2890 132:186 JLINK_ReadReg(R2)  returns 0x0000FF00 (0000ms, 1227ms total)
T2890 132:186 JLINK_ReadReg(R3)  returns 0x000000FF (0000ms, 1227ms total)
T2890 132:186 JLINK_ReadReg(R4)  returns 0x00000000 (0000ms, 1227ms total)
T2890 132:186 JLINK_ReadReg(R5)  returns 0x02025C00 (0000ms, 1227ms total)
T2890 132:186 JLINK_ReadReg(R6)  returns 0x0201AB60 (0000ms, 1227ms total)
T2890 132:186 JLINK_ReadReg(R7)  returns 0x02023D7C (0000ms, 1227ms total)
T2890 132:186 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 1227ms total)
T2890 132:186 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 1227ms total)
T2890 132:186 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 1227ms total)
T2890 132:186 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 1227ms total)
T2890 132:186 JLINK_ReadReg(R12)  returns 0x00000003 (0000ms, 1227ms total)
T2890 132:186 JLINK_ReadReg(R13 (SP))  returns 0x02029FE0 (0000ms, 1227ms total)
T2890 132:186 JLINK_ReadReg(R14)  returns 0x00002CD3 (0000ms, 1227ms total)
T2890 132:186 JLINK_ReadReg(R15 (PC))  returns 0x00005D1C (0000ms, 1227ms total)
T2890 132:186 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 1227ms total)
T2890 132:186 JLINK_ReadReg(MSP)  returns 0x02029FE0 (0000ms, 1227ms total)
T2890 132:186 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 1227ms total)
T2890 132:186 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 1227ms total)
T4070 132:188 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1228ms total)
T4070 132:189 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1229ms total)
T4070 132:190 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1230ms total)
T4070 132:191 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1230ms total)
T4070 148:078 JLINK_ReadMemEx(0x0201A8EC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8EC) - Data: 00  returns 0x01 (0001ms, 1231ms total)
T2890 174:116 JLINK_ReadMemEx(0x00005D1C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00005D00) -- Updating DA cache (64 bytes @ 0x00005D00) -- Read from DA cache (2 bytes @ 0x00005D1C) - Data: 05 F0  returns 0x02 (0001ms, 1232ms total)
T2890 174:117 JLINK_SetBPEx(Addr = 0x000147C2, Type = 0xFFFFFFF2)  returns 0x00000006 (0001ms, 1233ms total)
T2890 174:118 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) (0004ms, 1237ms total)
T2890 174:223 JLINK_IsHalted()  returns FALSE (0000ms, 1237ms total)
T2890 174:324 JLINK_IsHalted()  returns FALSE (0000ms, 1237ms total)
T2890 174:426 JLINK_IsHalted()  returns FALSE (0000ms, 1237ms total)
T2890 174:527 JLINK_IsHalted()  returns FALSE (0000ms, 1237ms total)
T2890 174:628 JLINK_IsHalted()  returns FALSE (0000ms, 1237ms total)
T4070 174:730 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1238ms total)
T4070 174:731 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1239ms total)
T4070 174:732 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1240ms total)
T4070 174:733 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1240ms total)
T2890 174:734 JLINK_IsHalted()  returns FALSE (0000ms, 1241ms total)
T2890 174:836 JLINK_IsHalted()  returns FALSE (0000ms, 1241ms total)
T2890 174:937 JLINK_IsHalted()  returns FALSE (0000ms, 1241ms total)
T2890 175:038 JLINK_IsHalted()  returns FALSE (0000ms, 1241ms total)
T2890 175:140 JLINK_IsHalted()  returns FALSE (0000ms, 1241ms total)
T4070 175:243 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1241ms total)
T4070 175:243 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1242ms total)
T4070 175:244 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1243ms total)
T4070 175:245 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1244ms total)
T2890 175:246 JLINK_IsHalted()  returns FALSE (0001ms, 1245ms total)
T2890 175:347 JLINK_IsHalted()  returns FALSE (0000ms, 1244ms total)
T2890 175:448 JLINK_IsHalted()  returns FALSE (0000ms, 1244ms total)
T2890 175:550 JLINK_IsHalted()  returns FALSE (0000ms, 1244ms total)
T2890 175:651 JLINK_IsHalted()  returns FALSE (0000ms, 1244ms total)
T4070 175:754 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1245ms total)
T4070 175:755 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1245ms total)
T4070 175:756 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1245ms total)
T4070 175:756 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1246ms total)
T2890 175:757 JLINK_IsHalted()  returns FALSE (0001ms, 1247ms total)
T2890 175:858 JLINK_IsHalted()  returns FALSE (0000ms, 1246ms total)
T2890 175:959 JLINK_IsHalted()  returns FALSE (0000ms, 1246ms total)
T2890 176:061 JLINK_IsHalted()  returns FALSE (0000ms, 1246ms total)
T2890 176:162 JLINK_IsHalted()  returns FALSE (0000ms, 1246ms total)
T4070 176:265 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1246ms total)
T4070 176:265 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1247ms total)
T4070 176:266 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1248ms total)
T4070 176:267 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1249ms total)
T2890 176:268 JLINK_IsHalted()  returns FALSE (0001ms, 1250ms total)
T2890 176:369 JLINK_IsHalted()  returns FALSE (0001ms, 1250ms total)
T2890 176:471 JLINK_IsHalted()  returns FALSE (0000ms, 1249ms total)
T2890 176:572 JLINK_IsHalted()  returns FALSE (0000ms, 1249ms total)
T2890 176:673 JLINK_IsHalted()  returns FALSE (0000ms, 1249ms total)
T2890 176:775 JLINK_IsHalted()  returns FALSE (0000ms, 1249ms total)
T4070 176:878 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1250ms total)
T4070 176:879 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1250ms total)
T4070 176:880 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1250ms total)
T4070 176:880 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1251ms total)
T2890 176:881 JLINK_IsHalted()  returns FALSE (0001ms, 1252ms total)
T2890 176:983 JLINK_IsHalted()  returns FALSE (0000ms, 1251ms total)
T2890 177:084 JLINK_IsHalted()  returns FALSE (0000ms, 1251ms total)
T2890 177:186 JLINK_IsHalted()  returns FALSE (0000ms, 1251ms total)
T2890 177:287 JLINK_IsHalted()  returns FALSE (0000ms, 1251ms total)
T4070 177:390 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1252ms total)
T4070 177:391 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1252ms total)
T4070 177:392 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1252ms total)
T4070 177:392 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1253ms total)
T2890 177:393 JLINK_IsHalted()  returns FALSE (0001ms, 1254ms total)
T2890 177:495 JLINK_IsHalted()  returns FALSE (0000ms, 1253ms total)
T2890 177:597 JLINK_IsHalted()  returns FALSE (0000ms, 1253ms total)
T2890 177:698 JLINK_IsHalted()  returns FALSE (0000ms, 1253ms total)
T2890 177:799 JLINK_IsHalted()  returns FALSE (0000ms, 1253ms total)
T2890 177:901 JLINK_IsHalted()  returns FALSE (0000ms, 1253ms total)
T4070 178:003 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1254ms total)
T4070 178:004 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1255ms total)
T4070 178:005 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1256ms total)
T4070 178:006 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1257ms total)
T2890 178:007 JLINK_IsHalted()  returns FALSE (0000ms, 1257ms total)
T2890 178:108 JLINK_IsHalted()  returns FALSE (0000ms, 1257ms total)
T2890 178:209 JLINK_IsHalted()  returns FALSE (0000ms, 1257ms total)
T2890 178:311 JLINK_IsHalted()  returns FALSE (0000ms, 1257ms total)
T2890 178:412 JLINK_IsHalted()  returns FALSE (0000ms, 1257ms total)
T4070 178:514 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1258ms total)
T4070 178:515 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1259ms total)
T4070 178:516 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1260ms total)
T4070 178:517 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1260ms total)
T2890 178:517 JLINK_IsHalted()  returns FALSE (0001ms, 1261ms total)
T2890 178:619 JLINK_IsHalted()  returns FALSE (0000ms, 1260ms total)
T2890 178:720 JLINK_IsHalted()  returns FALSE (0000ms, 1260ms total)
T2890 178:821 JLINK_IsHalted()  returns FALSE (0000ms, 1260ms total)
T2890 178:923 JLINK_IsHalted()  returns FALSE (0000ms, 1260ms total)
T2890 179:024 JLINK_IsHalted()  returns FALSE (0000ms, 1260ms total)
T4070 179:127 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1260ms total)
T4070 179:127 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1261ms total)
T4070 179:128 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1262ms total)
T4070 179:129 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1263ms total)
T2890 179:130 JLINK_IsHalted()  returns FALSE (0001ms, 1264ms total)
T2890 179:232 JLINK_IsHalted()  returns FALSE (0000ms, 1263ms total)
T2890 179:333 JLINK_IsHalted()  returns FALSE (0000ms, 1263ms total)
T2890 179:434 JLINK_IsHalted()  returns FALSE (0000ms, 1263ms total)
T2890 179:535 JLINK_IsHalted()  returns FALSE (0000ms, 1263ms total)
T4070 179:639 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1264ms total)
T4070 179:640 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1265ms total)
T4070 179:641 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1266ms total)
T4070 179:642 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1267ms total)
T2890 179:643 JLINK_IsHalted()  returns FALSE (0000ms, 1267ms total)
T2890 179:744 JLINK_IsHalted()  returns FALSE (0000ms, 1267ms total)
T2890 179:845 JLINK_IsHalted()  returns FALSE (0000ms, 1267ms total)
T2890 179:947 JLINK_IsHalted()  returns FALSE (0001ms, 1268ms total)
T2890 180:048 JLINK_IsHalted()  returns FALSE (0000ms, 1267ms total)
T2890 180:149 JLINK_IsHalted()  returns FALSE (0000ms, 1267ms total)
T4070 180:252 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1268ms total)
T4070 180:253 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1269ms total)
T4070 180:254 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1270ms total)
T4070 180:255 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1271ms total)
T2890 180:256 JLINK_IsHalted()  returns FALSE (0000ms, 1271ms total)
T2890 180:357 JLINK_IsHalted()  returns FALSE (0000ms, 1271ms total)
T2890 180:458 JLINK_IsHalted()  returns FALSE (0000ms, 1271ms total)
T2890 180:559 JLINK_IsHalted()  returns FALSE (0000ms, 1271ms total)
T2890 180:661 JLINK_IsHalted()  returns FALSE (0000ms, 1271ms total)
T4070 180:763 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1272ms total)
T4070 180:764 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1273ms total)
T4070 180:765 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1274ms total)
T4070 180:766 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1275ms total)
T2890 180:767 JLINK_IsHalted()  returns FALSE (0001ms, 1276ms total)
T2890 180:869 JLINK_IsHalted()  returns FALSE (0000ms, 1275ms total)
T2890 180:970 JLINK_IsHalted()  returns FALSE (0000ms, 1275ms total)
T2890 181:072 JLINK_IsHalted()  returns FALSE (0000ms, 1275ms total)
T2890 181:173 JLINK_IsHalted()  returns FALSE (0000ms, 1275ms total)
T2890 181:274 JLINK_IsHalted()  returns FALSE (0000ms, 1275ms total)
T4070 181:377 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1276ms total)
T4070 181:378 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1276ms total)
T4070 181:378 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0002ms, 1278ms total)
T4070 181:380 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1279ms total)
T2890 181:381 JLINK_IsHalted()  returns FALSE (0000ms, 1279ms total)
T2890 181:482 JLINK_IsHalted()  returns FALSE (0000ms, 1279ms total)
T2890 181:583 JLINK_IsHalted()  returns FALSE (0000ms, 1279ms total)
T2890 181:685 JLINK_IsHalted()  returns FALSE (0000ms, 1279ms total)
T2890 181:786 JLINK_IsHalted()  returns FALSE (0000ms, 1279ms total)
T4070 181:889 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1280ms total)
T4070 181:890 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1281ms total)
T4070 181:891 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1281ms total)
T4070 181:891 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1282ms total)
T2890 181:892 JLINK_IsHalted()  returns FALSE (0001ms, 1283ms total)
T2890 181:994 JLINK_IsHalted()  returns FALSE (0000ms, 1282ms total)
T2890 182:095 JLINK_IsHalted()  returns FALSE (0000ms, 1282ms total)
T2890 182:197 JLINK_IsHalted()  returns FALSE (0000ms, 1282ms total)
T2890 182:298 JLINK_IsHalted()  returns FALSE (0000ms, 1282ms total)
T2890 182:400 JLINK_IsHalted()  returns FALSE (0000ms, 1282ms total)
T4070 182:503 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1283ms total)
T4070 182:504 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1283ms total)
T4070 182:505 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1283ms total)
T4070 182:505 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1284ms total)
T2890 182:506 JLINK_IsHalted()  returns FALSE (0001ms, 1285ms total)
T2890 182:608 JLINK_IsHalted()  returns FALSE (0000ms, 1284ms total)
T2890 182:709 JLINK_IsHalted()  returns FALSE (0000ms, 1284ms total)
T2890 182:811 JLINK_IsHalted()  returns FALSE (0000ms, 1284ms total)
T2890 182:912 JLINK_IsHalted()  returns FALSE (0000ms, 1284ms total)
T4070 183:014 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1285ms total)
T4070 183:015 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1286ms total)
T4070 183:016 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1287ms total)
T4070 183:017 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1287ms total)
T2890 183:017 JLINK_IsHalted()  returns FALSE (0001ms, 1288ms total)
T2890 183:119 JLINK_IsHalted()  returns FALSE (0000ms, 1287ms total)
T2890 183:221 JLINK_IsHalted()  returns FALSE (0000ms, 1287ms total)
T2890 183:322 JLINK_IsHalted()  returns FALSE (0000ms, 1287ms total)
T2890 183:423 JLINK_IsHalted()  returns FALSE (0000ms, 1287ms total)
T2890 183:525 JLINK_IsHalted()  returns FALSE (0000ms, 1287ms total)
T4070 183:627 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1288ms total)
T4070 183:628 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1289ms total)
T4070 183:629 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1290ms total)
T4070 183:630 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1290ms total)
T2890 183:631 JLINK_IsHalted()  returns FALSE (0000ms, 1290ms total)
T2890 183:732 JLINK_IsHalted()  returns FALSE (0000ms, 1290ms total)
T2890 183:833 JLINK_IsHalted()  returns FALSE (0000ms, 1290ms total)
T2890 183:934 JLINK_IsHalted()  returns FALSE (0000ms, 1290ms total)
T2890 184:035 JLINK_IsHalted()  returns FALSE (0000ms, 1290ms total)
T4070 184:138 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1290ms total)
T4070 184:138 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1291ms total)
T4070 184:140 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1291ms total)
T4070 184:140 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1292ms total)
T2890 184:141 JLINK_IsHalted()  returns FALSE (0001ms, 1293ms total)
T2890 184:243 JLINK_IsHalted()  returns FALSE (0000ms, 1292ms total)
T2890 184:345 JLINK_IsHalted()  returns FALSE (0000ms, 1292ms total)
T2890 184:446 JLINK_IsHalted()  returns FALSE (0000ms, 1292ms total)
T2890 184:547 JLINK_IsHalted()  returns FALSE (0000ms, 1292ms total)
T2890 184:649 JLINK_IsHalted()  returns FALSE (0000ms, 1292ms total)
T4070 184:750 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1293ms total)
T4070 184:751 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1294ms total)
T4070 184:752 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1295ms total)
T4070 184:753 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1296ms total)
T2890 184:754 JLINK_IsHalted()  returns FALSE (0000ms, 1296ms total)
T2890 184:856 JLINK_IsHalted()  returns FALSE (0000ms, 1296ms total)
T2890 184:956 JLINK_IsHalted()  returns FALSE (0000ms, 1296ms total)
T2890 185:058 JLINK_IsHalted()  returns FALSE (0000ms, 1296ms total)
T2890 185:159 JLINK_IsHalted()  returns FALSE (0000ms, 1296ms total)
T2890 185:260 JLINK_IsHalted()  returns FALSE (0000ms, 1296ms total)
T4070 185:363 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1297ms total)
T4070 185:364 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1297ms total)
T4070 185:365 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1297ms total)
T4070 185:365 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1298ms total)
T2890 185:366 JLINK_IsHalted()  returns FALSE (0001ms, 1299ms total)
T2890 185:469 JLINK_IsHalted()  returns FALSE (0000ms, 1298ms total)
T2890 185:570 JLINK_IsHalted()  returns FALSE (0000ms, 1298ms total)
T2890 185:671 JLINK_IsHalted()  returns FALSE (0000ms, 1298ms total)
T2890 185:773 JLINK_IsHalted()  returns FALSE (0000ms, 1298ms total)
T4070 185:876 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1299ms total)
T4070 185:877 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1300ms total)
T4070 185:878 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1301ms total)
T4070 185:879 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1301ms total)
T2890 185:879 JLINK_IsHalted()  returns FALSE (0001ms, 1302ms total)
T2890 185:981 JLINK_IsHalted()  returns FALSE (0000ms, 1301ms total)
T2890 186:082 JLINK_IsHalted()  returns FALSE (0000ms, 1301ms total)
T2890 186:184 JLINK_IsHalted()  returns FALSE (0000ms, 1301ms total)
T2890 186:285 JLINK_IsHalted()  returns FALSE (0000ms, 1301ms total)
T4070 186:387 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1302ms total)
T4070 186:388 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1303ms total)
T4070 186:389 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1304ms total)
T4070 186:390 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1305ms total)
T2890 186:391 JLINK_IsHalted()  returns FALSE (0000ms, 1305ms total)
T2890 186:492 JLINK_IsHalted()  returns FALSE (0000ms, 1305ms total)
T2890 186:594 JLINK_IsHalted()  returns FALSE (0000ms, 1305ms total)
T4070 186:659 JLINK_ClrBPEx(BPHandle = 0x00000006) -- CPU is running -- 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)  returns 0x00 (0004ms, 1309ms total)
T2890 186:695 JLINK_IsHalted()  returns FALSE (0000ms, 1309ms total)
T2890 186:796 JLINK_IsHalted()  returns FALSE (0000ms, 1309ms total)
T2890 186:897 JLINK_IsHalted()  returns FALSE (0000ms, 1309ms total)
T4070 187:000 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1310ms total)
T4070 187:001 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1311ms total)
T4070 187:002 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1311ms total)
T4070 187:002 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1312ms total)
T2890 187:003 JLINK_IsHalted()  returns FALSE (0001ms, 1313ms total)
T2890 187:105 JLINK_IsHalted()  returns FALSE (0000ms, 1312ms total)
T2890 187:206 JLINK_IsHalted()  returns FALSE (0000ms, 1312ms total)
T2890 187:308 JLINK_IsHalted()  returns FALSE (0000ms, 1312ms total)
T2890 187:409 JLINK_IsHalted()  returns FALSE (0000ms, 1312ms total)
T2890 187:510 JLINK_IsHalted()  returns FALSE (0000ms, 1312ms total)
T4070 187:613 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1312ms total)
T4070 187:613 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1313ms total)
T4070 187:615 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1313ms total)
T4070 187:615 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1314ms total)
T2890 187:616 JLINK_IsHalted()  returns FALSE (0001ms, 1315ms total)
T2890 187:718 JLINK_IsHalted()  returns FALSE (0000ms, 1314ms total)
T2890 187:819 JLINK_IsHalted()  returns FALSE (0000ms, 1314ms total)
T2890 187:920 JLINK_IsHalted()  returns FALSE (0000ms, 1314ms total)
T2890 188:022 JLINK_IsHalted()  returns FALSE (0001ms, 1315ms total)
T4070 188:125 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1314ms total)
T4070 188:125 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1315ms total)
T4070 188:127 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1316ms total)
T4070 188:128 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1316ms total)
T2890 188:128 JLINK_IsHalted()  returns FALSE (0001ms, 1317ms total)
T2890 188:230 JLINK_IsHalted()  returns FALSE (0000ms, 1316ms total)
T2890 188:332 JLINK_IsHalted()  returns FALSE (0000ms, 1316ms total)
T2890 188:433 JLINK_IsHalted()  returns FALSE (0000ms, 1316ms total)
T2890 188:534 JLINK_IsHalted()  returns FALSE (0000ms, 1316ms total)
T2890 188:635 JLINK_IsHalted()  returns FALSE (0000ms, 1316ms total)
T4070 188:739 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1317ms total)
T4070 188:740 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1317ms total)
T4070 188:741 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1317ms total)
T4070 188:741 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1318ms total)
T2890 188:742 JLINK_IsHalted()  returns FALSE (0001ms, 1319ms total)
T2890 188:844 JLINK_IsHalted()  returns FALSE (0000ms, 1318ms total)
T2890 188:945 JLINK_IsHalted()  returns FALSE (0000ms, 1318ms total)
T2890 189:046 JLINK_IsHalted()  returns FALSE (0000ms, 1318ms total)
T2890 189:148 JLINK_IsHalted()  returns FALSE (0000ms, 1318ms total)
T4070 189:251 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1319ms total)
T4070 189:252 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1320ms total)
T4070 189:253 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1321ms total)
T4070 189:254 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1322ms total)
T2890 189:255 JLINK_IsHalted()  returns FALSE (0001ms, 1323ms total)
T2890 189:357 JLINK_IsHalted()  returns FALSE (0000ms, 1322ms total)
T2890 189:458 JLINK_IsHalted()  returns FALSE (0000ms, 1322ms total)
T2890 189:559 JLINK_IsHalted()  returns FALSE (0000ms, 1322ms total)
T2890 189:660 JLINK_IsHalted()  returns FALSE (0000ms, 1322ms total)
T4070 189:764 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1323ms total)
T4070 189:765 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1324ms total)
T4070 189:766 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1325ms total)
T4070 189:767 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1326ms total)
T2890 189:768 JLINK_IsHalted()  returns FALSE (0001ms, 1327ms total)
T2890 189:869 JLINK_IsHalted()  returns FALSE (0000ms, 1326ms total)
T2890 189:970 JLINK_IsHalted()  returns FALSE (0000ms, 1326ms total)
T2890 190:072 JLINK_IsHalted()  returns FALSE (0000ms, 1326ms total)
T2890 190:173 JLINK_IsHalted()  returns FALSE (0000ms, 1326ms total)
T2890 190:274 JLINK_IsHalted()  returns FALSE (0000ms, 1326ms total)
T4070 190:377 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1326ms total)
T4070 190:377 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1327ms total)
T4070 190:378 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1328ms total)
T4070 190:379 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1329ms total)
T2890 190:380 JLINK_IsHalted()  returns FALSE (0001ms, 1330ms total)
T2890 190:482 JLINK_IsHalted()  returns FALSE (0000ms, 1329ms total)
T2890 190:583 JLINK_IsHalted()  returns FALSE (0000ms, 1329ms total)
T2890 190:684 JLINK_IsHalted()  returns FALSE (0000ms, 1329ms total)
T2890 190:785 JLINK_IsHalted()  returns FALSE (0000ms, 1329ms total)
T4070 190:889 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1330ms total)
T4070 190:890 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1331ms total)
T4070 190:891 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1332ms total)
T4070 190:892 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1333ms total)
T2890 190:893 JLINK_IsHalted()  returns FALSE (0000ms, 1333ms total)
T2890 190:995 JLINK_IsHalted()  returns FALSE (0000ms, 1333ms total)
T2890 191:096 JLINK_IsHalted()  returns FALSE (0000ms, 1333ms total)
T2890 191:197 JLINK_IsHalted()  returns FALSE (0000ms, 1333ms total)
T2890 191:298 JLINK_IsHalted()  returns FALSE (0000ms, 1333ms total)
T2890 191:400 JLINK_IsHalted()  returns FALSE (0000ms, 1333ms total)
T4070 191:502 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1334ms total)
T4070 191:503 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1335ms total)
T4070 191:504 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1336ms total)
T4070 191:505 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1337ms total)
T2890 191:506 JLINK_IsHalted()  returns FALSE (0000ms, 1337ms total)
T2890 191:607 JLINK_IsHalted()  returns FALSE (0000ms, 1337ms total)
T2890 191:708 JLINK_IsHalted()  returns FALSE (0000ms, 1337ms total)
T2890 191:810 JLINK_IsHalted()  returns FALSE (0000ms, 1337ms total)
T2890 191:911 JLINK_IsHalted()  returns FALSE (0000ms, 1337ms total)
T4070 192:014 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1338ms total)
T4070 192:015 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1339ms total)
T4070 192:016 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1340ms total)
T4070 192:017 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1341ms total)
T2890 192:018 JLINK_IsHalted()  returns FALSE (0000ms, 1341ms total)
T2890 192:119 JLINK_IsHalted()  returns FALSE (0000ms, 1341ms total)
T2890 192:221 JLINK_IsHalted()  returns FALSE (0000ms, 1341ms total)
T2890 192:322 JLINK_IsHalted()  returns FALSE (0000ms, 1341ms total)
T2890 192:423 JLINK_IsHalted()  returns FALSE (0000ms, 1341ms total)
T2890 192:525 JLINK_IsHalted()  returns FALSE (0000ms, 1341ms total)
T4070 192:628 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1342ms total)
T4070 192:629 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1343ms total)
T4070 192:630 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1344ms total)
T4070 192:631 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1345ms total)
T2890 192:632 JLINK_IsHalted()  returns FALSE (0000ms, 1345ms total)
T2890 192:733 JLINK_IsHalted()  returns FALSE (0000ms, 1345ms total)
T2890 192:835 JLINK_IsHalted()  returns FALSE (0000ms, 1345ms total)
T2890 192:936 JLINK_IsHalted()  returns FALSE (0000ms, 1345ms total)
T2890 193:037 JLINK_IsHalted()  returns FALSE (0000ms, 1345ms total)
T4070 193:141 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1345ms total)
T4070 193:142 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1346ms total)
T4070 193:143 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1346ms total)
T4070 193:143 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1347ms total)
T2890 193:144 JLINK_IsHalted()  returns FALSE (0001ms, 1348ms total)
T2890 193:247 JLINK_IsHalted()  returns FALSE (0000ms, 1347ms total)
T2890 193:348 JLINK_IsHalted()  returns FALSE (0000ms, 1347ms total)
T2890 193:449 JLINK_IsHalted()  returns FALSE (0000ms, 1347ms total)
T2890 193:551 JLINK_IsHalted()  returns FALSE (0000ms, 1347ms total)
T4070 193:654 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1348ms total)
T4070 193:655 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1349ms total)
T4070 193:656 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1350ms total)
T4070 193:657 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1350ms total)
T2890 193:657 JLINK_IsHalted()  returns FALSE (0001ms, 1351ms total)
T2890 193:759 JLINK_IsHalted()  returns FALSE (0000ms, 1350ms total)
T2890 193:860 JLINK_IsHalted()  returns FALSE (0000ms, 1350ms total)
T2890 193:961 JLINK_IsHalted()  returns FALSE (0000ms, 1350ms total)
T2890 194:063 JLINK_IsHalted()  returns FALSE (0000ms, 1350ms total)
T2890 194:164 JLINK_IsHalted()  returns FALSE (0000ms, 1350ms total)
T4070 194:268 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1351ms total)
T4070 194:269 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1352ms total)
T4070 194:270 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1353ms total)
T4070 194:271 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1354ms total)
T2890 194:272 JLINK_IsHalted()  returns FALSE (0000ms, 1354ms total)
T2890 194:373 JLINK_IsHalted()  returns FALSE (0000ms, 1354ms total)
T2890 194:474 JLINK_IsHalted()  returns FALSE (0000ms, 1354ms total)
T2890 194:575 JLINK_IsHalted()  returns FALSE (0001ms, 1355ms total)
T2890 194:676 JLINK_IsHalted()  returns FALSE (0000ms, 1354ms total)
T4070 194:780 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1355ms total)
T4070 194:781 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1356ms total)
T4070 194:782 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1357ms total)
T4070 194:783 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1358ms total)
T2890 194:784 JLINK_IsHalted()  returns FALSE (0000ms, 1358ms total)
T2890 194:885 JLINK_IsHalted()  returns FALSE (0000ms, 1358ms total)
T2890 194:986 JLINK_IsHalted()  returns FALSE (0000ms, 1358ms total)
T2890 195:088 JLINK_IsHalted()  returns FALSE (0000ms, 1358ms total)
T2890 195:189 JLINK_IsHalted()  returns FALSE (0000ms, 1358ms total)
T2890 195:290 JLINK_IsHalted()  returns FALSE (0000ms, 1358ms total)
T4070 195:393 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1359ms total)
T4070 195:394 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1360ms total)
T4070 195:395 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1361ms total)
T4070 195:396 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1361ms total)
T2890 195:396 JLINK_IsHalted()  returns FALSE (0001ms, 1362ms total)
T2890 195:498 JLINK_IsHalted()  returns FALSE (0000ms, 1361ms total)
T2890 195:599 JLINK_IsHalted()  returns FALSE (0001ms, 1362ms total)
T2890 195:700 JLINK_IsHalted()  returns FALSE (0000ms, 1361ms total)
T2890 195:802 JLINK_IsHalted()  returns FALSE (0000ms, 1361ms total)
T4070 195:905 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1362ms total)
T4070 195:906 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1363ms total)
T4070 195:907 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1364ms total)
T4070 195:908 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1365ms total)
T2890 195:909 JLINK_IsHalted()  returns FALSE (0000ms, 1365ms total)
T2890 196:010 JLINK_IsHalted()  returns FALSE (0000ms, 1365ms total)
T2890 196:111 JLINK_IsHalted()  returns FALSE (0000ms, 1365ms total)
T2890 196:213 JLINK_IsHalted()  returns FALSE (0000ms, 1365ms total)
T2890 196:314 JLINK_IsHalted()  returns FALSE (0000ms, 1365ms total)
T2890 196:415 JLINK_IsHalted()  returns FALSE (0000ms, 1365ms total)
T4070 196:518 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1366ms total)
T4070 196:519 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1367ms total)
T4070 196:520 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1368ms total)
T4070 196:521 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1368ms total)
T2890 196:521 JLINK_IsHalted()  returns FALSE (0001ms, 1369ms total)
T2890 196:624 JLINK_IsHalted()  returns FALSE (0000ms, 1368ms total)
T2890 196:725 JLINK_IsHalted()  returns FALSE (0000ms, 1368ms total)
T2890 196:826 JLINK_IsHalted()  returns FALSE (0000ms, 1368ms total)
T2890 196:927 JLINK_IsHalted()  returns FALSE (0000ms, 1368ms total)
T4070 197:031 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1368ms total)
T4070 197:031 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1369ms total)
T4070 197:032 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1370ms total)
T4070 197:033 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1371ms total)
T2890 197:034 JLINK_IsHalted()  returns FALSE (0001ms, 1372ms total)
T2890 197:136 JLINK_IsHalted()  returns FALSE (0000ms, 1371ms total)
T2890 197:237 JLINK_IsHalted()  returns FALSE (0000ms, 1371ms total)
T2890 197:339 JLINK_IsHalted()  returns FALSE (0000ms, 1371ms total)
T2890 197:440 JLINK_IsHalted()  returns FALSE (0000ms, 1371ms total)
T2890 197:541 JLINK_IsHalted()  returns FALSE (0000ms, 1371ms total)
T4070 197:643 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1372ms total)
T4070 197:644 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1372ms total)
T4070 197:645 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1372ms total)
T4070 197:645 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1373ms total)
T2890 197:646 JLINK_IsHalted()  returns FALSE (0001ms, 1374ms total)
T2890 197:749 JLINK_IsHalted()  returns FALSE (0000ms, 1373ms total)
T2890 197:850 JLINK_IsHalted()  returns FALSE (0000ms, 1373ms total)
T2890 197:951 JLINK_IsHalted()  returns FALSE (0000ms, 1373ms total)
T2890 198:052 JLINK_IsHalted()  returns FALSE (0000ms, 1373ms total)
T4070 198:156 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1374ms total)
T4070 198:157 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1374ms total)
T4070 198:158 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1375ms total)
T4070 198:159 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1375ms total)
T2890 198:159 JLINK_IsHalted()  returns FALSE (0001ms, 1376ms total)
T2890 198:261 JLINK_IsHalted()  returns FALSE (0000ms, 1375ms total)
T2890 198:362 JLINK_IsHalted()  returns FALSE (0000ms, 1375ms total)
T2890 198:463 JLINK_IsHalted()  returns FALSE (0000ms, 1375ms total)
T2890 198:565 JLINK_IsHalted()  returns FALSE (0000ms, 1375ms total)
T2890 198:666 JLINK_IsHalted()  returns FALSE (0000ms, 1375ms total)
T4070 198:770 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1376ms total)
T4070 198:771 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1377ms total)
T4070 198:772 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1378ms total)
T4070 198:773 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1379ms total)
T2890 198:774 JLINK_IsHalted()  returns FALSE (0000ms, 1379ms total)
T2890 198:875 JLINK_IsHalted()  returns FALSE (0000ms, 1379ms total)
T2890 198:976 JLINK_IsHalted()  returns FALSE (0000ms, 1379ms total)
T2890 199:077 JLINK_IsHalted()  returns FALSE (0000ms, 1379ms total)
T2890 199:179 JLINK_IsHalted()  returns FALSE (0000ms, 1379ms total)
T4070 199:284 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1379ms total)
T4070 199:285 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1379ms total)
T4070 199:286 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1379ms total)
T4070 199:286 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1380ms total)
T2890 199:287 JLINK_IsHalted()  returns FALSE (0001ms, 1381ms total)
T2890 199:390 JLINK_IsHalted()  returns FALSE (0000ms, 1380ms total)
T2890 199:491 JLINK_IsHalted()  returns FALSE (0000ms, 1380ms total)
T2890 199:592 JLINK_IsHalted()  returns FALSE (0000ms, 1380ms total)
T2890 199:693 JLINK_IsHalted()  returns FALSE (0000ms, 1380ms total)
T4070 199:797 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1381ms total)
T4070 199:798 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1382ms total)
T4070 199:799 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1383ms total)
T4070 199:800 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1384ms total)
T2890 199:801 JLINK_IsHalted()  returns FALSE (0001ms, 1385ms total)
T2890 199:902 JLINK_IsHalted()  returns FALSE (0000ms, 1384ms total)
T2890 200:003 JLINK_IsHalted()  returns FALSE (0000ms, 1384ms total)
T2890 200:105 JLINK_IsHalted()  returns FALSE (0000ms, 1384ms total)
T2890 200:206 JLINK_IsHalted()  returns FALSE (0000ms, 1384ms total)
T2890 200:307 JLINK_IsHalted()  returns FALSE (0000ms, 1384ms total)
T4070 200:413 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1385ms total)
T4070 200:414 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1385ms total)
T4070 200:415 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1385ms total)
T4070 200:415 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1386ms total)
T2890 200:416 JLINK_IsHalted()  returns FALSE (0001ms, 1387ms total)
T2890 200:519 JLINK_IsHalted()  returns FALSE (0000ms, 1386ms total)
T2890 200:620 JLINK_IsHalted()  returns FALSE (0000ms, 1386ms total)
T2890 200:721 JLINK_IsHalted()  returns FALSE (0000ms, 1386ms total)
T2890 200:822 JLINK_IsHalted()  returns FALSE (0000ms, 1386ms total)
T4070 200:926 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1387ms total)
T4070 200:927 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1388ms total)
T4070 200:928 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1389ms total)
T4070 200:929 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1390ms total)
T2890 200:930 JLINK_IsHalted()  returns FALSE (0001ms, 1391ms total)
T2890 201:031 JLINK_IsHalted()  returns FALSE (0000ms, 1390ms total)
T2890 201:132 JLINK_IsHalted()  returns FALSE (0000ms, 1390ms total)
T2890 201:234 JLINK_IsHalted()  returns FALSE (0000ms, 1390ms total)
T2890 201:335 JLINK_IsHalted()  returns FALSE (0000ms, 1390ms total)
T4070 201:438 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1390ms total)
T4070 201:438 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1391ms total)
T4070 201:440 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1391ms total)
T4070 201:440 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1392ms total)
T2890 201:441 JLINK_IsHalted()  returns FALSE (0001ms, 1393ms total)
T2890 201:543 JLINK_IsHalted()  returns FALSE (0000ms, 1392ms total)
T2890 201:645 JLINK_IsHalted()  returns FALSE (0000ms, 1392ms total)
T2890 201:746 JLINK_IsHalted()  returns FALSE (0000ms, 1392ms total)
T2890 201:847 JLINK_IsHalted()  returns FALSE (0000ms, 1392ms total)
T4070 201:950 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1393ms total)
T4070 201:951 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1394ms total)
T4070 201:952 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1395ms total)
T4070 201:953 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1396ms total)
T2890 201:954 JLINK_IsHalted()  returns FALSE (0000ms, 1396ms total)
T2890 202:055 JLINK_IsHalted()  returns FALSE (0000ms, 1396ms total)
T2890 202:156 JLINK_IsHalted()  returns FALSE (0000ms, 1396ms total)
T2890 202:258 JLINK_IsHalted()  returns FALSE (0000ms, 1396ms total)
T2890 202:359 JLINK_IsHalted()  returns FALSE (0000ms, 1396ms total)
T2890 202:460 JLINK_IsHalted()  returns FALSE (0000ms, 1396ms total)
T4070 202:564 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1396ms total)
T4070 202:564 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1397ms total)
T4070 202:565 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1398ms total)
T4070 202:566 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1399ms total)
T2890 202:567 JLINK_IsHalted()  returns FALSE (0001ms, 1400ms total)
T2890 202:668 JLINK_IsHalted()  returns FALSE (0000ms, 1400ms total)
T2890 202:769 JLINK_IsHalted()  returns FALSE (0000ms, 1400ms total)
T2890 202:870 JLINK_IsHalted()  returns FALSE (0000ms, 1400ms total)
T2890 202:972 JLINK_IsHalted()  returns FALSE (0000ms, 1400ms total)
T2890 203:073 JLINK_IsHalted()  returns FALSE (0000ms, 1400ms total)
T4070 203:176 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1400ms total)
T4070 203:177 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1400ms total)
T4070 203:177 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1401ms total)
T4070 203:178 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1402ms total)
T2890 203:179 JLINK_IsHalted()  returns FALSE (0001ms, 1403ms total)
T2890 203:280 JLINK_IsHalted()  returns FALSE (0000ms, 1402ms total)
T2890 203:382 JLINK_IsHalted()  returns FALSE (0000ms, 1402ms total)
T2890 203:483 JLINK_IsHalted()  returns FALSE (0000ms, 1402ms total)
T2890 203:584 JLINK_IsHalted()  returns FALSE (0000ms, 1402ms total)
T4070 203:686 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1403ms total)
T4070 203:687 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1404ms total)
T4070 203:689 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1404ms total)
T4070 203:689 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1405ms total)
T2890 203:690 JLINK_IsHalted()  returns FALSE (0001ms, 1406ms total)
T2890 203:792 JLINK_IsHalted()  returns FALSE (0000ms, 1405ms total)
T2890 203:893 JLINK_IsHalted()  returns FALSE (0000ms, 1405ms total)
T2890 203:994 JLINK_IsHalted()  returns FALSE (0000ms, 1405ms total)
T2890 204:096 JLINK_IsHalted()  returns FALSE (0000ms, 1405ms total)
T2890 204:196 JLINK_IsHalted()  returns FALSE (0000ms, 1405ms total)
T4070 204:300 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1406ms total)
T4070 204:301 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1406ms total)
T4070 204:302 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1406ms total)
T4070 204:302 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1407ms total)
T2890 204:303 JLINK_IsHalted()  returns FALSE (0001ms, 1408ms total)
T2890 204:405 JLINK_IsHalted()  returns FALSE (0000ms, 1407ms total)
T2890 204:506 JLINK_IsHalted()  returns FALSE (0000ms, 1407ms total)
T2890 204:607 JLINK_IsHalted()  returns FALSE (0000ms, 1407ms total)
T2890 204:709 JLINK_IsHalted()  returns FALSE (0000ms, 1407ms total)
T4070 204:812 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1407ms total)
T4070 204:812 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1408ms total)
T4070 204:813 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1409ms total)
T4070 204:814 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1410ms total)
T2890 204:815 JLINK_IsHalted()  returns FALSE (0001ms, 1411ms total)
T2890 204:916 JLINK_IsHalted()  returns FALSE (0000ms, 1410ms total)
T2890 205:018 JLINK_IsHalted()  returns FALSE (0000ms, 1410ms total)
T2890 205:119 JLINK_IsHalted()  returns FALSE (0000ms, 1410ms total)
T2890 205:220 JLINK_IsHalted()  returns FALSE (0000ms, 1410ms total)
T2890 205:321 JLINK_IsHalted()  returns FALSE (0001ms, 1411ms total)
T4070 205:425 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1411ms total)
T4070 205:426 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1411ms total)
T4070 205:427 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1411ms total)
T4070 205:427 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1412ms total)
T2890 205:428 JLINK_IsHalted()  returns FALSE (0001ms, 1413ms total)
T2890 205:530 JLINK_IsHalted()  returns FALSE (0000ms, 1412ms total)
T2890 205:631 JLINK_IsHalted()  returns FALSE (0000ms, 1412ms total)
T2890 205:733 JLINK_IsHalted()  returns FALSE (0000ms, 1412ms total)
T2890 205:834 JLINK_IsHalted()  returns FALSE (0000ms, 1412ms total)
T4070 205:936 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1413ms total)
T4070 205:937 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1414ms total)
T4070 205:938 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1415ms total)
T4070 205:939 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1415ms total)
T2890 205:940 JLINK_IsHalted()  returns FALSE (0000ms, 1415ms total)
T2890 206:042 JLINK_IsHalted()  returns FALSE (0000ms, 1415ms total)
T2890 206:143 JLINK_IsHalted()  returns FALSE (0000ms, 1415ms total)
T2890 206:244 JLINK_IsHalted()  returns FALSE (0000ms, 1415ms total)
T2890 206:346 JLINK_IsHalted()  returns FALSE (0000ms, 1415ms total)
T2890 206:447 JLINK_IsHalted()  returns FALSE (0000ms, 1415ms total)
T4070 206:549 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1416ms total)
T4070 206:550 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1417ms total)
T4070 206:551 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1418ms total)
T4070 206:552 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1419ms total)
T2890 206:553 JLINK_IsHalted()  returns FALSE (0000ms, 1419ms total)
T2890 206:654 JLINK_IsHalted()  returns FALSE (0000ms, 1419ms total)
T2890 206:756 JLINK_IsHalted()  returns FALSE (0000ms, 1419ms total)
T2890 206:857 JLINK_IsHalted()  returns FALSE (0000ms, 1419ms total)
T2890 206:958 JLINK_IsHalted()  returns FALSE (0000ms, 1419ms total)
T4070 207:061 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1420ms total)
T4070 207:062 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1420ms total)
T4070 207:063 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1420ms total)
T4070 207:063 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1421ms total)
T2890 207:064 JLINK_IsHalted()  returns FALSE (0001ms, 1422ms total)
T2890 207:167 JLINK_IsHalted()  returns FALSE (0000ms, 1421ms total)
T2890 207:268 JLINK_IsHalted()  returns FALSE (0000ms, 1421ms total)
T4070 207:313 JLINK_SetBPEx(Addr = 0x000147C2, Type = 0xFFFFFFF2) -- CPU is running -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002008)  returns 0x00000007 (0001ms, 1422ms total)
T2890 207:370 JLINK_IsHalted()  returns FALSE (0000ms, 1422ms total)
T2890 207:471 JLINK_IsHalted()  returns FALSE (0000ms, 1422ms total)
T2890 207:572 JLINK_IsHalted()  returns FALSE (0000ms, 1422ms total)
T4070 207:676 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1423ms total)
T4070 207:677 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1424ms total)
T4070 207:678 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1425ms total)
T4070 207:679 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1425ms total)
T2890 207:679 JLINK_IsHalted()  returns FALSE (0001ms, 1426ms total)
T2890 207:781 JLINK_IsHalted()  returns FALSE (0000ms, 1425ms total)
T2890 207:882 JLINK_IsHalted()  returns FALSE (0000ms, 1425ms total)
T2890 207:984 JLINK_IsHalted()  returns FALSE (0000ms, 1425ms total)
T2890 208:085 JLINK_IsHalted()  returns FALSE (0000ms, 1425ms total)
T4070 208:187 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0008ms, 1433ms total)
T4070 208:195 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1434ms total)
T4070 208:197 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1435ms total)
T4070 208:198 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1435ms total)
T2890 208:198 JLINK_IsHalted()  returns FALSE (0001ms, 1436ms total)
T2890 208:300 JLINK_IsHalted()  returns FALSE (0000ms, 1435ms total)
T2890 208:402 JLINK_IsHalted()  returns FALSE (0000ms, 1435ms total)
T2890 208:503 JLINK_IsHalted()  returns FALSE (0000ms, 1435ms total)
T2890 208:604 JLINK_IsHalted()  returns FALSE (0000ms, 1435ms total)
T4070 208:707 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1436ms total)
T4070 208:708 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1437ms total)
T4070 208:709 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1438ms total)
T4070 208:710 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1439ms total)
T2890 208:711 JLINK_IsHalted()  returns FALSE (0000ms, 1439ms total)
T2890 208:812 JLINK_IsHalted()  returns FALSE (0000ms, 1439ms total)
T2890 208:913 JLINK_IsHalted()  returns FALSE (0000ms, 1439ms total)
T2890 209:015 JLINK_IsHalted()  returns FALSE (0000ms, 1439ms total)
T2890 209:116 JLINK_IsHalted()  returns FALSE (0000ms, 1439ms total)
T4070 209:218 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1440ms total)
T4070 209:219 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1441ms total)
T4070 209:220 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1442ms total)
T4070 209:221 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1442ms total)
T2890 209:222 JLINK_IsHalted()  returns FALSE (0000ms, 1442ms total)
T2890 209:324 JLINK_IsHalted()  returns FALSE (0000ms, 1442ms total)
T2890 209:425 JLINK_IsHalted()  returns FALSE (0000ms, 1442ms total)
T2890 209:526 JLINK_IsHalted()  returns FALSE (0000ms, 1442ms total)
T2890 209:627 JLINK_IsHalted()  returns FALSE (0000ms, 1442ms total)
T2890 209:729 JLINK_IsHalted()  returns FALSE (0000ms, 1442ms total)
T4070 209:831 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1443ms total)
T4070 209:832 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1444ms total)
T4070 209:833 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1445ms total)
T4070 209:834 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1445ms total)
T2890 209:835 JLINK_IsHalted()  returns FALSE (0000ms, 1445ms total)
T2890 209:936 JLINK_IsHalted()  returns FALSE (0000ms, 1445ms total)
T2890 210:037 JLINK_IsHalted()  returns FALSE (0000ms, 1445ms total)
T2890 210:139 JLINK_IsHalted()  returns FALSE (0000ms, 1445ms total)
T2890 210:240 JLINK_IsHalted()  returns FALSE (0000ms, 1445ms total)
T4070 210:342 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1446ms total)
T4070 210:343 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1447ms total)
T4070 210:344 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1448ms total)
T4070 210:345 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1448ms total)
T2890 210:345 JLINK_IsHalted()  returns FALSE (0001ms, 1449ms total)
T2890 210:448 JLINK_IsHalted()  returns FALSE (0000ms, 1448ms total)
T2890 210:549 JLINK_IsHalted()  returns FALSE (0000ms, 1448ms total)
T2890 210:650 JLINK_IsHalted()  returns FALSE (0000ms, 1448ms total)
T2890 210:751 JLINK_IsHalted()  returns FALSE (0000ms, 1448ms total)
T2890 210:853 JLINK_IsHalted()  returns FALSE (0000ms, 1448ms total)
T4070 210:955 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1449ms total)
T4070 210:956 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1450ms total)
T4070 210:957 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1451ms total)
T4070 210:958 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1452ms total)
T2890 210:959 JLINK_IsHalted()  returns FALSE (0000ms, 1452ms total)
T2890 211:060 JLINK_IsHalted()  returns FALSE (0000ms, 1452ms total)
T2890 211:162 JLINK_IsHalted()  returns FALSE (0000ms, 1452ms total)
T2890 211:263 JLINK_IsHalted()  returns FALSE (0000ms, 1452ms total)
T2890 211:364 JLINK_IsHalted()  returns FALSE (0000ms, 1452ms total)
T4070 211:467 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1452ms total)
T4070 211:468 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1453ms total)
T4070 211:469 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1453ms total)
T4070 211:469 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1454ms total)
T2890 211:470 JLINK_IsHalted()  returns FALSE (0001ms, 1455ms total)
T2890 211:573 JLINK_IsHalted()  returns FALSE (0000ms, 1454ms total)
T2890 211:674 JLINK_IsHalted()  returns FALSE (0000ms, 1454ms total)
T2890 211:775 JLINK_IsHalted()  returns FALSE (0000ms, 1454ms total)
T2890 211:876 JLINK_IsHalted()  returns FALSE (0000ms, 1454ms total)
T2890 211:977 JLINK_IsHalted()  returns FALSE (0000ms, 1454ms total)
T4070 212:080 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1455ms total)
T4070 212:081 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1456ms total)
T4070 212:082 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1457ms total)
T4070 212:083 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1457ms total)
T2890 212:083 JLINK_IsHalted()  returns FALSE (0001ms, 1458ms total)
T2890 212:186 JLINK_IsHalted()  returns FALSE (0000ms, 1457ms total)
T2890 212:287 JLINK_IsHalted()  returns FALSE (0008ms, 1465ms total)
T2890 212:396 JLINK_IsHalted()  returns FALSE (0000ms, 1457ms total)
T2890 212:498 JLINK_IsHalted()  returns FALSE (0000ms, 1457ms total)
T4070 212:600 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1458ms total)
T4070 212:601 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1459ms total)
T4070 212:602 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1460ms total)
T4070 212:603 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1460ms total)
T2890 212:604 JLINK_IsHalted()  returns FALSE (0000ms, 1460ms total)
T2890 212:705 JLINK_IsHalted()  returns FALSE (0000ms, 1460ms total)
T2890 212:806 JLINK_IsHalted()  returns FALSE (0000ms, 1460ms total)
T2890 212:908 JLINK_IsHalted()  returns FALSE (0000ms, 1460ms total)
T2890 213:009 JLINK_IsHalted()  returns FALSE (0000ms, 1460ms total)
T4070 213:112 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1460ms total)
T4070 213:112 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1461ms total)
T4070 213:113 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1462ms total)
T4070 213:114 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1463ms total)
T2890 213:115 JLINK_IsHalted()  returns FALSE (0001ms, 1464ms total)
T2890 213:216 JLINK_IsHalted()  returns FALSE (0000ms, 1463ms total)
T2890 213:318 JLINK_IsHalted()  returns FALSE (0000ms, 1463ms total)
T2890 213:419 JLINK_IsHalted()  returns FALSE (0000ms, 1463ms total)
T2890 213:520 JLINK_IsHalted()  returns FALSE (0000ms, 1463ms total)
T4070 213:623 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1464ms total)
T4070 213:624 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1465ms total)
T4070 213:625 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1466ms total)
T4070 213:626 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1467ms total)
T2890 213:627 JLINK_IsHalted()  returns FALSE (0000ms, 1467ms total)
T2890 213:728 JLINK_IsHalted()  returns FALSE (0000ms, 1467ms total)
T2890 213:829 JLINK_IsHalted()  returns FALSE (0000ms, 1467ms total)
T2890 213:930 JLINK_IsHalted()  returns FALSE (0000ms, 1467ms total)
T2890 214:032 JLINK_IsHalted()  returns FALSE (0000ms, 1467ms total)
T2890 214:133 JLINK_IsHalted()  returns FALSE (0000ms, 1467ms total)
T4070 214:237 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1468ms total)
T4070 214:238 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1468ms total)
T4070 214:239 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1468ms total)
T4070 214:239 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1469ms total)
T2890 214:240 JLINK_IsHalted()  returns FALSE (0001ms, 1470ms total)
T2890 214:342 JLINK_IsHalted()  returns FALSE (0000ms, 1469ms total)
T2890 214:443 JLINK_IsHalted()  returns FALSE (0000ms, 1469ms total)
T2890 214:544 JLINK_IsHalted()  returns FALSE (0000ms, 1469ms total)
T2890 214:646 JLINK_IsHalted()  returns FALSE (0000ms, 1469ms total)
T4070 214:748 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1470ms total)
T4070 214:749 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1471ms total)
T4070 214:750 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1472ms total)
T4070 214:751 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1473ms total)
T2890 214:752 JLINK_IsHalted()  returns FALSE (0001ms, 1474ms total)
T2890 214:853 JLINK_IsHalted()  returns FALSE (0000ms, 1473ms total)
T2890 214:954 JLINK_IsHalted()  returns FALSE (0000ms, 1473ms total)
T2890 215:055 JLINK_IsHalted()  returns FALSE (0000ms, 1473ms total)
T2890 215:156 JLINK_IsHalted()  returns FALSE (0000ms, 1473ms total)
T2890 215:258 JLINK_IsHalted()  returns FALSE (0000ms, 1473ms total)
T4070 215:361 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1474ms total)
T4070 215:362 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1474ms total)
T4070 215:362 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1475ms total)
T4070 215:363 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1476ms total)
T2890 215:364 JLINK_IsHalted()  returns FALSE (0001ms, 1477ms total)
T2890 215:465 JLINK_IsHalted()  returns FALSE (0000ms, 1476ms total)
T2890 215:566 JLINK_IsHalted()  returns FALSE (0000ms, 1476ms total)
T2890 215:668 JLINK_IsHalted()  returns FALSE (0000ms, 1476ms total)
T2890 215:769 JLINK_IsHalted()  returns FALSE (0000ms, 1476ms total)
T2890 215:870 JLINK_IsHalted()  returns FALSE (0000ms, 1476ms total)
T4070 215:973 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1477ms total)
T4070 215:974 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1477ms total)
T4070 215:975 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1477ms total)
T4070 215:975 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1478ms total)
T2890 215:976 JLINK_IsHalted()  returns FALSE (0001ms, 1479ms total)
T2890 216:079 JLINK_IsHalted()  returns FALSE (0000ms, 1478ms total)
T2890 216:180 JLINK_IsHalted()  returns FALSE (0000ms, 1478ms total)
T2890 216:281 JLINK_IsHalted()  returns FALSE (0000ms, 1478ms total)
T2890 216:383 JLINK_IsHalted()  returns FALSE (0004ms, 1482ms total)
T4070 216:488 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1479ms total)
T4070 216:489 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1480ms total)
T4070 216:490 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1481ms total)
T4070 216:491 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1481ms total)
T2890 216:492 JLINK_IsHalted()  returns FALSE (0000ms, 1481ms total)
T2890 216:594 JLINK_IsHalted()  returns FALSE (0000ms, 1481ms total)
T2890 216:695 JLINK_IsHalted()  returns FALSE (0000ms, 1481ms total)
T2890 216:796 JLINK_IsHalted()  returns FALSE (0000ms, 1481ms total)
T2890 216:897 JLINK_IsHalted()  returns FALSE (0000ms, 1481ms total)
T4070 217:001 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1481ms total)
T4070 217:001 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1482ms total)
T4070 217:002 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1483ms total)
T4070 217:003 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1484ms total)
T2890 217:004 JLINK_IsHalted()  returns FALSE (0000ms, 1484ms total)
T2890 217:105 JLINK_IsHalted()  returns FALSE (0000ms, 1484ms total)
T2890 217:206 JLINK_IsHalted()  returns FALSE (0000ms, 1484ms total)
T2890 217:308 JLINK_IsHalted()  returns FALSE (0000ms, 1484ms total)
T2890 217:409 JLINK_IsHalted()  returns FALSE (0000ms, 1484ms total)
T2890 217:510 JLINK_IsHalted()  returns FALSE (0000ms, 1484ms total)
T4070 217:613 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1484ms total)
T4070 217:613 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1485ms total)
T4070 217:615 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1485ms total)
T4070 217:615 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1486ms total)
T2890 217:616 JLINK_IsHalted()  returns FALSE (0001ms, 1487ms total)
T2890 217:718 JLINK_IsHalted()  returns FALSE (0000ms, 1486ms total)
T2890 217:819 JLINK_IsHalted()  returns FALSE (0000ms, 1486ms total)
T2890 217:921 JLINK_IsHalted()  returns FALSE (0000ms, 1486ms total)
T2890 218:022 JLINK_IsHalted()  returns FALSE (0000ms, 1486ms total)
T4070 218:124 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1487ms total)
T4070 218:125 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1488ms total)
T4070 218:126 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1489ms total)
T4070 218:127 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1490ms total)
T2890 218:128 JLINK_IsHalted()  returns FALSE (0000ms, 1490ms total)
T2890 218:229 JLINK_IsHalted()  returns FALSE (0000ms, 1490ms total)
T2890 218:331 JLINK_IsHalted()  returns FALSE (0000ms, 1490ms total)
T2890 218:432 JLINK_IsHalted()  returns FALSE (0000ms, 1490ms total)
T2890 218:533 JLINK_IsHalted()  returns FALSE (0000ms, 1490ms total)
T2890 218:634 JLINK_IsHalted()  returns FALSE (0000ms, 1490ms total)
T4070 218:737 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1491ms total)
T4070 218:738 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1492ms total)
T4070 218:739 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1493ms total)
T4070 218:740 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1493ms total)
T2890 218:740 JLINK_IsHalted()  returns FALSE (0001ms, 1494ms total)
T2890 218:842 JLINK_IsHalted()  returns FALSE (0000ms, 1493ms total)
T2890 218:943 JLINK_IsHalted()  returns FALSE (0000ms, 1493ms total)
T2890 219:044 JLINK_IsHalted()  returns FALSE (0000ms, 1493ms total)
T2890 219:145 JLINK_IsHalted()  returns FALSE (0000ms, 1493ms total)
T4070 219:248 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1494ms total)
T4070 219:249 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1495ms total)
T4070 219:250 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1496ms total)
T4070 219:251 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1497ms total)
T2890 219:252 JLINK_IsHalted()  returns FALSE (0000ms, 1497ms total)
T2890 219:353 JLINK_IsHalted()  returns FALSE (0000ms, 1497ms total)
T2890 219:454 JLINK_IsHalted()  returns FALSE (0000ms, 1497ms total)
T2890 219:555 JLINK_IsHalted()  returns FALSE (0000ms, 1497ms total)
T2890 219:657 JLINK_IsHalted()  returns FALSE (0000ms, 1497ms total)
T2890 219:758 JLINK_IsHalted()  returns FALSE (0000ms, 1497ms total)
T4070 219:861 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1497ms total)
T4070 219:861 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1498ms total)
T4070 219:862 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1499ms total)
T4070 219:863 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1500ms total)
T2890 219:864 JLINK_IsHalted()  returns FALSE (0001ms, 1501ms total)
T2890 219:965 JLINK_IsHalted()  returns FALSE (0000ms, 1500ms total)
T2890 220:067 JLINK_IsHalted()  returns FALSE (0000ms, 1500ms total)
T2890 220:168 JLINK_IsHalted()  returns FALSE (0000ms, 1500ms total)
T2890 220:269 JLINK_IsHalted()  returns FALSE (0000ms, 1500ms total)
T4070 220:372 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1500ms total)
T4070 220:372 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1501ms total)
T4070 220:373 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1502ms total)
T4070 220:374 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1503ms total)
T2890 220:375 JLINK_IsHalted()  returns FALSE (0001ms, 1504ms total)
T2890 220:477 JLINK_IsHalted()  returns FALSE (0000ms, 1503ms total)
T2890 220:578 JLINK_IsHalted()  returns FALSE (0000ms, 1503ms total)
T2890 220:679 JLINK_IsHalted()  returns FALSE (0000ms, 1503ms total)
T2890 220:781 JLINK_IsHalted()  returns FALSE (0000ms, 1503ms total)
T2890 220:882 JLINK_IsHalted()  returns FALSE (0000ms, 1503ms total)
T4070 220:985 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1504ms total)
T4070 220:986 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1505ms total)
T4070 220:987 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1506ms total)
T4070 220:988 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1507ms total)
T2890 220:989 JLINK_IsHalted()  returns FALSE (0000ms, 1507ms total)
T2890 221:090 JLINK_IsHalted()  returns FALSE (0000ms, 1507ms total)
T2890 221:191 JLINK_IsHalted()  returns FALSE (0000ms, 1507ms total)
T2890 221:292 JLINK_IsHalted()  returns FALSE (0000ms, 1507ms total)
T2890 221:394 JLINK_IsHalted()  returns FALSE (0000ms, 1507ms total)
T2890 221:495 JLINK_IsHalted()  returns FALSE (0000ms, 1507ms total)
T4070 221:598 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1507ms total)
T4070 221:598 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1508ms total)
T4070 221:599 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1509ms total)
T4070 221:600 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1510ms total)
T2890 221:601 JLINK_IsHalted()  returns FALSE (0001ms, 1511ms total)
T2890 221:702 JLINK_IsHalted()  returns FALSE (0000ms, 1510ms total)
T2890 221:804 JLINK_IsHalted()  returns FALSE (0000ms, 1510ms total)
T2890 221:905 JLINK_IsHalted()  returns FALSE (0000ms, 1510ms total)
T2890 222:006 JLINK_IsHalted()  returns FALSE (0000ms, 1510ms total)
T4070 222:109 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1511ms total)
T4070 222:110 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1511ms total)
T4070 222:111 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1511ms total)
T4070 222:112 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1511ms total)
T2890 222:112 JLINK_IsHalted()  returns FALSE (0001ms, 1512ms total)
T2890 222:214 JLINK_IsHalted()  returns FALSE (0000ms, 1511ms total)
T2890 222:316 JLINK_IsHalted()  returns FALSE (0000ms, 1511ms total)
T2890 222:417 JLINK_IsHalted()  returns FALSE (0000ms, 1511ms total)
T2890 222:518 JLINK_IsHalted()  returns FALSE (0000ms, 1511ms total)
T2890 222:620 JLINK_IsHalted()  returns FALSE (0000ms, 1511ms total)
T4070 222:722 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1512ms total)
T4070 222:723 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1513ms total)
T4070 222:724 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1514ms total)
T4070 222:725 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1515ms total)
T2890 222:726 JLINK_IsHalted()  returns FALSE (0000ms, 1515ms total)
T2890 222:827 JLINK_IsHalted()  returns FALSE (0000ms, 1515ms total)
T2890 222:928 JLINK_IsHalted()  returns FALSE (0000ms, 1515ms total)
T2890 223:030 JLINK_IsHalted()  returns FALSE (0000ms, 1515ms total)
T2890 223:131 JLINK_IsHalted()  returns FALSE (0000ms, 1515ms total)
T4070 223:233 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1516ms total)
T4070 223:234 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1517ms total)
T4070 223:235 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1518ms total)
T4070 223:236 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1518ms total)
T2890 223:237 JLINK_IsHalted()  returns FALSE (0000ms, 1518ms total)
T2890 223:338 JLINK_IsHalted()  returns FALSE (0000ms, 1518ms total)
T2890 223:440 JLINK_IsHalted()  returns FALSE (0000ms, 1518ms total)
T2890 223:541 JLINK_IsHalted()  returns FALSE (0000ms, 1518ms total)
T2890 223:642 JLINK_IsHalted()  returns FALSE (0000ms, 1518ms total)
T2890 223:744 JLINK_IsHalted()  returns FALSE (0000ms, 1518ms total)
T4070 223:846 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1519ms total)
T4070 223:847 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1520ms total)
T4070 223:848 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1521ms total)
T4070 223:849 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1522ms total)
T2890 223:850 JLINK_IsHalted()  returns FALSE (0000ms, 1522ms total)
T2890 223:952 JLINK_IsHalted()  returns FALSE (0000ms, 1522ms total)
T2890 224:053 JLINK_IsHalted()  returns FALSE (0000ms, 1522ms total)
T2890 224:155 JLINK_IsHalted()  returns FALSE (0000ms, 1522ms total)
T2890 224:256 JLINK_IsHalted()  returns FALSE (0000ms, 1522ms total)
T4070 224:358 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1523ms total)
T4070 224:359 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1524ms total)
T4070 224:360 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1525ms total)
T4070 224:361 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1526ms total)
T2890 224:362 JLINK_IsHalted()  returns FALSE (0001ms, 1527ms total)
T2890 224:463 JLINK_IsHalted()  returns FALSE (0000ms, 1526ms total)
T2890 224:564 JLINK_IsHalted()  returns FALSE (0000ms, 1526ms total)
T2890 224:666 JLINK_IsHalted()  returns FALSE (0000ms, 1526ms total)
T2890 224:767 JLINK_IsHalted()  returns FALSE (0000ms, 1526ms total)
T2890 224:868 JLINK_IsHalted()  returns FALSE (0000ms, 1526ms total)
T4070 224:970 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1527ms total)
T4070 224:971 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1528ms total)
T4070 224:972 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1529ms total)
T4070 224:973 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1530ms total)
T2890 224:974 JLINK_IsHalted()  returns FALSE (0000ms, 1530ms total)
T2890 225:076 JLINK_IsHalted()  returns FALSE (0000ms, 1530ms total)
T2890 225:177 JLINK_IsHalted()  returns FALSE (0000ms, 1530ms total)
T2890 225:278 JLINK_IsHalted()  returns FALSE (0000ms, 1530ms total)
T2890 225:379 JLINK_IsHalted()  returns FALSE (0000ms, 1530ms total)
T4070 225:483 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1531ms total)
T4070 225:484 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1531ms total)
T4070 225:485 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1531ms total)
T4070 225:485 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1532ms total)
T2890 225:486 JLINK_IsHalted()  returns FALSE (0001ms, 1533ms total)
T2890 225:588 JLINK_IsHalted()  returns FALSE (0000ms, 1532ms total)
T2890 225:689 JLINK_IsHalted()  returns FALSE (0000ms, 1532ms total)
T2890 225:790 JLINK_IsHalted()  returns FALSE (0000ms, 1532ms total)
T2890 225:892 JLINK_IsHalted()  returns FALSE (0000ms, 1532ms total)
T2890 225:993 JLINK_IsHalted()  returns FALSE (0000ms, 1532ms total)
T4070 226:099 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1533ms total)
T4070 226:100 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1533ms total)
T4070 226:101 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1533ms total)
T4070 226:101 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1534ms total)
T2890 226:102 JLINK_IsHalted()  returns FALSE (0001ms, 1535ms total)
T2890 226:204 JLINK_IsHalted()  returns FALSE (0000ms, 1534ms total)
T2890 226:305 JLINK_IsHalted()  returns FALSE (0000ms, 1534ms total)
T2890 226:406 JLINK_IsHalted()  returns FALSE (0000ms, 1534ms total)
T2890 226:508 JLINK_IsHalted()  returns FALSE (0000ms, 1534ms total)
T4070 226:679 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1535ms total)
T4070 226:680 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1535ms total)
T4070 226:680 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1536ms total)
T4070 226:681 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1537ms total)
T2890 226:682 JLINK_IsHalted()  returns FALSE (0001ms, 1538ms total)
T2890 226:784 JLINK_IsHalted()  returns FALSE (0000ms, 1537ms total)
T2890 226:885 JLINK_IsHalted()  returns FALSE (0000ms, 1537ms total)
T2890 226:987 JLINK_IsHalted()  returns FALSE (0000ms, 1537ms total)
T2890 227:088 JLINK_IsHalted()  returns FALSE (0000ms, 1537ms total)
T4070 227:190 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1538ms total)
T4070 227:191 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1539ms total)
T4070 227:192 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1540ms total)
T4070 227:193 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1541ms total)
T2890 227:194 JLINK_IsHalted()  returns FALSE (0000ms, 1541ms total)
T2890 227:296 JLINK_IsHalted()  returns FALSE (0000ms, 1541ms total)
T2890 227:397 JLINK_IsHalted()  returns FALSE (0000ms, 1541ms total)
T2890 227:498 JLINK_IsHalted()  returns FALSE (0000ms, 1541ms total)
T2890 227:600 JLINK_IsHalted()  returns FALSE (0000ms, 1541ms total)
T4070 227:702 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1542ms total)
T4070 227:703 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1543ms total)
T4070 227:704 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1544ms total)
T4070 227:705 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1545ms total)
T2890 227:706 JLINK_IsHalted()  returns FALSE (0000ms, 1545ms total)
T2890 227:807 JLINK_IsHalted()  returns FALSE (0000ms, 1545ms total)
T2890 227:908 JLINK_IsHalted()  returns FALSE (0000ms, 1545ms total)
T2890 228:009 JLINK_IsHalted()  returns FALSE (0000ms, 1545ms total)
T2890 228:110 JLINK_IsHalted()  returns FALSE (0000ms, 1545ms total)
T2890 228:212 JLINK_IsHalted()  returns FALSE (0000ms, 1545ms total)
T4070 228:315 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1545ms total)
T4070 228:315 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1546ms total)
T4070 228:316 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1547ms total)
T4070 228:317 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1548ms total)
T2890 228:318 JLINK_IsHalted()  returns FALSE (0001ms, 1549ms total)
T2890 228:419 JLINK_IsHalted()  returns FALSE (0000ms, 1548ms total)
T2890 228:520 JLINK_IsHalted()  returns FALSE (0000ms, 1548ms total)
T2890 228:622 JLINK_IsHalted()  returns FALSE (0000ms, 1548ms total)
T2890 228:723 JLINK_IsHalted()  returns FALSE (0000ms, 1548ms total)
T4070 228:826 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1549ms total)
T4070 228:827 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1550ms total)
T4070 228:829 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1550ms total)
T4070 228:829 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1551ms total)
T2890 228:830 JLINK_IsHalted()  returns FALSE (0001ms, 1552ms total)
T2890 228:931 JLINK_IsHalted()  returns FALSE (0000ms, 1551ms total)
T2890 229:032 JLINK_IsHalted()  returns FALSE (0000ms, 1551ms total)
T2890 229:134 JLINK_IsHalted()  returns FALSE (0000ms, 1551ms total)
T2890 229:235 JLINK_IsHalted()  returns FALSE (0000ms, 1551ms total)
T2890 229:336 JLINK_IsHalted()  returns FALSE (0000ms, 1551ms total)
T4070 229:438 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1552ms total)
T4070 229:439 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1553ms total)
T4070 229:440 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1554ms total)
T4070 229:441 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1554ms total)
T2890 229:441 JLINK_IsHalted()  returns FALSE (0001ms, 1555ms total)
T2890 229:544 JLINK_IsHalted()  returns FALSE (0000ms, 1554ms total)
T2890 229:645 JLINK_IsHalted()  returns FALSE (0000ms, 1554ms total)
T2890 229:746 JLINK_IsHalted()  returns FALSE (0000ms, 1554ms total)
T2890 229:847 JLINK_IsHalted()  returns FALSE (0001ms, 1555ms total)
T4070 229:951 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1554ms total)
T4070 229:951 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1555ms total)
T4070 229:952 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1556ms total)
T4070 229:953 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1557ms total)
T2890 229:954 JLINK_IsHalted()  returns FALSE (0001ms, 1558ms total)
T2890 230:056 JLINK_IsHalted()  returns FALSE (0000ms, 1557ms total)
T2890 230:157 JLINK_IsHalted()  returns FALSE (0000ms, 1557ms total)
T2890 230:258 JLINK_IsHalted()  returns FALSE (0000ms, 1557ms total)
T2890 230:359 JLINK_IsHalted()  returns FALSE (0000ms, 1557ms total)
T2890 230:461 JLINK_IsHalted()  returns FALSE (0000ms, 1557ms total)
T4070 230:564 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1558ms total)
T4070 230:565 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1559ms total)
T4070 230:566 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1559ms total)
T4070 230:566 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1560ms total)
T2890 230:567 JLINK_IsHalted()  returns FALSE (0001ms, 1561ms total)
T2890 230:669 JLINK_IsHalted()  returns FALSE (0000ms, 1560ms total)
T2890 230:770 JLINK_IsHalted()  returns FALSE (0000ms, 1560ms total)
T2890 230:872 JLINK_IsHalted()  returns FALSE (0000ms, 1560ms total)
T2890 230:973 JLINK_IsHalted()  returns FALSE (0000ms, 1560ms total)
T4070 231:075 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1561ms total)
T4070 231:076 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1562ms total)
T4070 231:077 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1563ms total)
T4070 231:078 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1564ms total)
T2890 231:079 JLINK_IsHalted()  returns FALSE (0000ms, 1564ms total)
T2890 231:180 JLINK_IsHalted()  returns FALSE (0000ms, 1564ms total)
T2890 231:282 JLINK_IsHalted()  returns FALSE (0000ms, 1564ms total)
T2890 231:383 JLINK_IsHalted()  returns FALSE (0000ms, 1564ms total)
T2890 231:485 JLINK_IsHalted()  returns FALSE (0000ms, 1564ms total)
T2890 231:586 JLINK_IsHalted()  returns FALSE (0000ms, 1564ms total)
T4070 231:688 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1565ms total)
T4070 231:689 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1566ms total)
T4070 231:690 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1567ms total)
T4070 231:691 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1568ms total)
T2890 231:692 JLINK_IsHalted()  returns FALSE (0000ms, 1568ms total)
T2890 231:794 JLINK_IsHalted()  returns FALSE (0000ms, 1568ms total)
T2890 231:895 JLINK_IsHalted()  returns FALSE (0000ms, 1568ms total)
T2890 231:996 JLINK_IsHalted()  returns FALSE (0000ms, 1568ms total)
T2890 232:097 JLINK_IsHalted()  returns FALSE (0000ms, 1568ms total)
T4070 232:201 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1569ms total)
T4070 232:202 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1569ms total)
T4070 232:203 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1569ms total)
T4070 232:203 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1570ms total)
T2890 232:204 JLINK_IsHalted()  returns FALSE (0001ms, 1571ms total)
T2890 232:306 JLINK_IsHalted()  returns FALSE (0000ms, 1570ms total)
T2890 232:407 JLINK_IsHalted()  returns FALSE (0000ms, 1570ms total)
T2890 232:508 JLINK_IsHalted()  returns FALSE (0000ms, 1570ms total)
T2890 232:610 JLINK_IsHalted()  returns FALSE (0000ms, 1570ms total)
T2890 232:712 JLINK_IsHalted()  returns FALSE (0000ms, 1570ms total)
T4070 232:814 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1571ms total)
T4070 232:815 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1572ms total)
T4070 232:816 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1573ms total)
T4070 232:817 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1574ms total)
T2890 232:818 JLINK_IsHalted()  returns FALSE (0001ms, 1575ms total)
T2890 232:919 JLINK_IsHalted()  returns FALSE (0000ms, 1574ms total)
T2890 233:020 JLINK_IsHalted()  returns FALSE (0000ms, 1574ms total)
T2890 233:122 JLINK_IsHalted()  returns FALSE (0000ms, 1574ms total)
T2890 233:223 JLINK_IsHalted()  returns FALSE (0000ms, 1574ms total)
T4070 233:326 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1574ms total)
T4070 233:326 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1575ms total)
T4070 233:327 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1576ms total)
T4070 233:328 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1577ms total)
T2890 233:329 JLINK_IsHalted()  returns FALSE (0001ms, 1578ms total)
T2890 233:430 JLINK_IsHalted()  returns FALSE (0000ms, 1577ms total)
T2890 233:532 JLINK_IsHalted()  returns FALSE (0000ms, 1577ms total)
T2890 233:633 JLINK_IsHalted()  returns FALSE (0000ms, 1577ms total)
T2890 233:734 JLINK_IsHalted()  returns FALSE (0000ms, 1577ms total)
T2890 233:836 JLINK_IsHalted()  returns FALSE (0000ms, 1577ms total)
T4070 233:938 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1578ms total)
T4070 233:939 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1579ms total)
T4070 233:940 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1579ms total)
T4070 233:940 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1580ms total)
T2890 233:941 JLINK_IsHalted()  returns FALSE (0001ms, 1581ms total)
T2890 234:043 JLINK_IsHalted()  returns FALSE (0000ms, 1580ms total)
T2890 234:145 JLINK_IsHalted()  returns FALSE (0000ms, 1580ms total)
T2890 234:247 JLINK_IsHalted()  returns FALSE (0000ms, 1580ms total)
T2890 234:348 JLINK_IsHalted()  returns FALSE (0000ms, 1580ms total)
T4070 234:450 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1581ms total)
T4070 234:451 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1582ms total)
T4070 234:452 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1583ms total)
T4070 234:453 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1584ms total)
T2890 234:454 JLINK_IsHalted()  returns FALSE (0000ms, 1584ms total)
T2890 234:555 JLINK_IsHalted()  returns FALSE (0000ms, 1584ms total)
T2890 234:657 JLINK_IsHalted()  returns FALSE (0000ms, 1584ms total)
T2890 234:758 JLINK_IsHalted()  returns FALSE (0000ms, 1584ms total)
T2890 234:859 JLINK_IsHalted()  returns FALSE (0000ms, 1584ms total)
T2890 234:960 JLINK_IsHalted()  returns FALSE (0000ms, 1584ms total)
T4070 235:067 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1585ms total)
T4070 235:068 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1585ms total)
T4070 235:069 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1586ms total)
T4070 235:070 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1586ms total)
T2890 235:070 JLINK_IsHalted()  returns FALSE (0001ms, 1587ms total)
T2890 235:171 JLINK_IsHalted()  returns FALSE (0000ms, 1586ms total)
T2890 235:273 JLINK_IsHalted()  returns FALSE (0000ms, 1586ms total)
T2890 235:374 JLINK_IsHalted()  returns FALSE (0000ms, 1586ms total)
T2890 235:475 JLINK_IsHalted()  returns FALSE (0000ms, 1586ms total)
T4070 235:578 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1587ms total)
T4070 235:579 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1588ms total)
T4070 235:580 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1589ms total)
T4070 235:581 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1590ms total)
T2890 235:582 JLINK_IsHalted()  returns FALSE (0000ms, 1590ms total)
T2890 235:683 JLINK_IsHalted()  returns FALSE (0000ms, 1590ms total)
T2890 235:785 JLINK_IsHalted()  returns FALSE (0000ms, 1590ms total)
T2890 235:886 JLINK_IsHalted()  returns FALSE (0000ms, 1590ms total)
T2890 235:987 JLINK_IsHalted()  returns FALSE (0000ms, 1590ms total)
T2890 236:088 JLINK_IsHalted()  returns FALSE (0000ms, 1590ms total)
T4070 236:191 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1591ms total)
T4070 236:192 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1592ms total)
T4070 236:193 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1593ms total)
T4070 236:194 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1593ms total)
T2890 236:194 JLINK_IsHalted()  returns FALSE (0001ms, 1594ms total)
T2890 236:296 JLINK_IsHalted()  returns FALSE (0000ms, 1593ms total)
T2890 236:398 JLINK_IsHalted()  returns FALSE (0000ms, 1593ms total)
T2890 236:499 JLINK_IsHalted()  returns FALSE (0000ms, 1593ms total)
T2890 236:600 JLINK_IsHalted()  returns FALSE (0000ms, 1593ms total)
T4070 236:702 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1594ms total)
T4070 236:703 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1595ms total)
T4070 236:704 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1596ms total)
T4070 236:705 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1597ms total)
T2890 236:706 JLINK_IsHalted()  returns FALSE (0001ms, 1598ms total)
T2890 236:808 JLINK_IsHalted()  returns FALSE (0000ms, 1597ms total)
T2890 236:910 JLINK_IsHalted()  returns FALSE (0000ms, 1597ms total)
T2890 237:011 JLINK_IsHalted()  returns FALSE (0001ms, 1598ms total)
T2890 237:112 JLINK_IsHalted()  returns FALSE (0000ms, 1597ms total)
T2890 237:213 JLINK_IsHalted()  returns FALSE (0000ms, 1597ms total)
T4070 237:316 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1598ms total)
T4070 237:317 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1599ms total)
T4070 237:318 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1600ms total)
T4070 237:319 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1601ms total)
T2890 237:320 JLINK_IsHalted()  returns FALSE (0000ms, 1601ms total)
T2890 237:421 JLINK_IsHalted()  returns FALSE (0000ms, 1601ms total)
T2890 237:523 JLINK_IsHalted()  returns FALSE (0000ms, 1601ms total)
T2890 237:624 JLINK_IsHalted()  returns FALSE (0000ms, 1601ms total)
T2890 237:725 JLINK_IsHalted()  returns FALSE (0000ms, 1601ms total)
T4070 237:827 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1602ms total)
T4070 237:828 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1603ms total)
T4070 237:829 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1604ms total)
T4070 237:830 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1605ms total)
T2890 237:831 JLINK_IsHalted()  returns FALSE (0000ms, 1605ms total)
T2890 237:933 JLINK_IsHalted()  returns FALSE (0000ms, 1605ms total)
T2890 238:034 JLINK_IsHalted()  returns FALSE (0000ms, 1605ms total)
T2890 238:135 JLINK_IsHalted()  returns FALSE (0000ms, 1605ms total)
T2890 238:237 JLINK_IsHalted()  returns FALSE (0000ms, 1605ms total)
T2890 238:338 JLINK_IsHalted()  returns FALSE (0000ms, 1605ms total)
T4070 238:441 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1605ms total)
T4070 238:441 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1606ms total)
T4070 238:442 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1607ms total)
T4070 238:443 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1608ms total)
T2890 238:444 JLINK_IsHalted()  returns FALSE (0001ms, 1609ms total)
T2890 238:545 JLINK_IsHalted()  returns FALSE (0000ms, 1608ms total)
T2890 238:647 JLINK_IsHalted()  returns FALSE (0001ms, 1609ms total)
T2890 238:748 JLINK_IsHalted()  returns FALSE (0000ms, 1608ms total)
T2890 238:850 JLINK_IsHalted()  returns FALSE (0000ms, 1608ms total)
T4070 238:952 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1609ms total)
T4070 238:953 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1610ms total)
T4070 238:954 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1611ms total)
T4070 238:955 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1611ms total)
T2890 238:956 JLINK_IsHalted()  returns FALSE (0000ms, 1611ms total)
T2890 239:057 JLINK_IsHalted()  returns FALSE (0000ms, 1611ms total)
T2890 239:158 JLINK_IsHalted()  returns FALSE (0000ms, 1611ms total)
T2890 239:260 JLINK_IsHalted()  returns FALSE (0000ms, 1611ms total)
T2890 239:361 JLINK_IsHalted()  returns FALSE (0000ms, 1611ms total)
T2890 239:462 JLINK_IsHalted()  returns FALSE (0000ms, 1611ms total)
T4070 239:566 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1611ms total)
T4070 239:566 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1612ms total)
T4070 239:567 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1613ms total)
T4070 239:568 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1614ms total)
T2890 239:569 JLINK_IsHalted()  returns FALSE (0001ms, 1615ms total)
T2890 239:670 JLINK_IsHalted()  returns FALSE (0000ms, 1614ms total)
T2890 239:772 JLINK_IsHalted()  returns FALSE (0000ms, 1614ms total)
T2890 239:873 JLINK_IsHalted()  returns FALSE (0000ms, 1614ms total)
T2890 239:974 JLINK_IsHalted()  returns FALSE (0000ms, 1614ms total)
T4070 240:076 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1615ms total)
T4070 240:077 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1616ms total)
T4070 240:078 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1617ms total)
T4070 240:079 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1617ms total)
T2890 240:079 JLINK_IsHalted()  returns FALSE (0001ms, 1618ms total)
T2890 240:182 JLINK_IsHalted()  returns FALSE (0000ms, 1617ms total)
T2890 240:283 JLINK_IsHalted()  returns FALSE (0000ms, 1617ms total)
T2890 240:384 JLINK_IsHalted()  returns FALSE (0000ms, 1617ms total)
T2890 240:485 JLINK_IsHalted()  returns FALSE (0000ms, 1617ms total)
T2890 240:587 JLINK_IsHalted()  returns FALSE (0000ms, 1617ms total)
T4070 240:690 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1617ms total)
T4070 240:690 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1618ms total)
T4070 240:691 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1619ms total)
T4070 240:692 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1620ms total)
T2890 240:693 JLINK_IsHalted()  returns FALSE (0001ms, 1621ms total)
T2890 240:794 JLINK_IsHalted()  returns FALSE (0001ms, 1622ms total)
T2890 240:897 JLINK_IsHalted()  returns FALSE (0000ms, 1621ms total)
T2890 240:998 JLINK_IsHalted()  returns FALSE (0000ms, 1621ms total)
T2890 241:100 JLINK_IsHalted()  returns FALSE (0000ms, 1621ms total)
T4070 241:203 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1621ms total)
T4070 241:203 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1622ms total)
T4070 241:205 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1622ms total)
T4070 241:205 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1623ms total)
T2890 241:206 JLINK_IsHalted()  returns FALSE (0001ms, 1624ms total)
T2890 241:307 JLINK_IsHalted()  returns FALSE (0000ms, 1623ms total)
T2890 241:408 JLINK_IsHalted()  returns FALSE (0000ms, 1623ms total)
T2890 241:510 JLINK_IsHalted()  returns FALSE (0000ms, 1623ms total)
T2890 241:611 JLINK_IsHalted()  returns FALSE (0000ms, 1623ms total)
T2890 241:712 JLINK_IsHalted()  returns FALSE (0000ms, 1623ms total)
T4070 241:814 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1624ms total)
T4070 241:815 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1625ms total)
T4070 241:816 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1626ms total)
T4070 241:817 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1627ms total)
T2890 241:818 JLINK_IsHalted()  returns FALSE (0000ms, 1627ms total)
T2890 241:919 JLINK_IsHalted()  returns FALSE (0000ms, 1627ms total)
T2890 242:021 JLINK_IsHalted()  returns FALSE (0000ms, 1627ms total)
T2890 242:122 JLINK_IsHalted()  returns FALSE (0000ms, 1627ms total)
T2890 242:223 JLINK_IsHalted()  returns FALSE (0000ms, 1627ms total)
T4070 242:325 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1628ms total)
T4070 242:326 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1629ms total)
T4070 242:327 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1630ms total)
T4070 242:328 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1631ms total)
T2890 242:329 JLINK_IsHalted()  returns FALSE (0000ms, 1631ms total)
T2890 242:430 JLINK_IsHalted()  returns FALSE (0000ms, 1631ms total)
T2890 242:532 JLINK_IsHalted()  returns FALSE (0000ms, 1631ms total)
T2890 242:633 JLINK_IsHalted()  returns FALSE (0000ms, 1631ms total)
T2890 242:734 JLINK_IsHalted()  returns FALSE (0000ms, 1631ms total)
T2890 242:835 JLINK_IsHalted()  returns FALSE (0000ms, 1631ms total)
T4070 242:938 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1632ms total)
T4070 242:939 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1633ms total)
T4070 242:940 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1634ms total)
T4070 242:941 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1635ms total)
T2890 242:942 JLINK_IsHalted()  returns FALSE (0000ms, 1635ms total)
T2890 243:043 JLINK_IsHalted()  returns FALSE (0000ms, 1635ms total)
T2890 243:144 JLINK_IsHalted()  returns FALSE (0000ms, 1635ms total)
T2890 243:246 JLINK_IsHalted()  returns FALSE (0000ms, 1635ms total)
T2890 243:347 JLINK_IsHalted()  returns FALSE (0000ms, 1635ms total)
T2890 243:448 JLINK_IsHalted()  returns FALSE (0000ms, 1635ms total)
T4070 243:552 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1636ms total)
T4070 243:553 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1636ms total)
T4070 243:554 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1636ms total)
T4070 243:554 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1637ms total)
T2890 243:555 JLINK_IsHalted()  returns FALSE (0001ms, 1638ms total)
T2890 243:657 JLINK_IsHalted()  returns FALSE (0000ms, 1637ms total)
T2890 243:758 JLINK_IsHalted()  returns FALSE (0000ms, 1637ms total)
T2890 243:860 JLINK_IsHalted()  returns FALSE (0000ms, 1637ms total)
T2890 243:961 JLINK_IsHalted()  returns FALSE (0000ms, 1637ms total)
T4070 244:064 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1637ms total)
T4070 244:064 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1638ms total)
T4070 244:065 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1639ms total)
T4070 244:066 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1640ms total)
T2890 244:067 JLINK_IsHalted()  returns FALSE (0001ms, 1641ms total)
T2890 244:168 JLINK_IsHalted()  returns FALSE (0000ms, 1640ms total)
T2890 244:269 JLINK_IsHalted()  returns FALSE (0000ms, 1640ms total)
T2890 244:371 JLINK_IsHalted()  returns FALSE (0000ms, 1640ms total)
T2890 244:472 JLINK_IsHalted()  returns FALSE (0000ms, 1640ms total)
T2890 244:573 JLINK_IsHalted()  returns FALSE (0000ms, 1640ms total)
T4070 244:675 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1641ms total)
T4070 244:676 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1642ms total)
T4070 244:677 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1643ms total)
T4070 244:678 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1644ms total)
T2890 244:679 JLINK_IsHalted()  returns FALSE (0000ms, 1644ms total)
T2890 244:780 JLINK_IsHalted()  returns FALSE (0000ms, 1644ms total)
T2890 244:881 JLINK_IsHalted()  returns FALSE (0000ms, 1644ms total)
T2890 244:983 JLINK_IsHalted()  returns FALSE (0000ms, 1644ms total)
T2890 245:083 JLINK_IsHalted()  returns FALSE (0000ms, 1644ms total)
T4070 245:187 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1645ms total)
T4070 245:188 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1645ms total)
T4070 245:189 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1645ms total)
T4070 245:189 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0002ms, 1647ms total)
T2890 245:191 JLINK_IsHalted()  returns FALSE (0000ms, 1647ms total)
T2890 245:292 JLINK_IsHalted()  returns FALSE (0000ms, 1647ms total)
T2890 245:393 JLINK_IsHalted()  returns FALSE (0000ms, 1647ms total)
T2890 245:495 JLINK_IsHalted()  returns FALSE (0000ms, 1647ms total)
T2890 245:596 JLINK_IsHalted()  returns FALSE (0000ms, 1647ms total)
T2890 245:697 JLINK_IsHalted()  returns FALSE (0000ms, 1647ms total)
T4070 245:799 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1648ms total)
T4070 245:800 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1649ms total)
T4070 245:801 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1650ms total)
T4070 245:802 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1651ms total)
T2890 245:803 JLINK_IsHalted()  returns FALSE (0001ms, 1652ms total)
T2890 245:905 JLINK_IsHalted()  returns FALSE (0000ms, 1651ms total)
T2890 246:006 JLINK_IsHalted()  returns FALSE (0000ms, 1651ms total)
T2890 246:107 JLINK_IsHalted()  returns FALSE (0000ms, 1651ms total)
T2890 246:208 JLINK_IsHalted()  returns FALSE (0000ms, 1651ms total)
T4070 246:312 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1652ms total)
T4070 246:313 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1652ms total)
T4070 246:314 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1652ms total)
T4070 246:314 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1653ms total)
T2890 246:315 JLINK_IsHalted()  returns FALSE (0001ms, 1654ms total)
T2890 246:416 JLINK_IsHalted()  returns FALSE (0000ms, 1653ms total)
T2890 246:517 JLINK_IsHalted()  returns FALSE (0000ms, 1653ms total)
T2890 246:619 JLINK_IsHalted()  returns FALSE (0000ms, 1653ms total)
T2890 246:720 JLINK_IsHalted()  returns FALSE (0000ms, 1653ms total)
T2890 246:821 JLINK_IsHalted()  returns FALSE (0000ms, 1653ms total)
T4070 246:924 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1654ms total)
T4070 246:925 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1655ms total)
T4070 246:926 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1656ms total)
T4070 246:927 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1657ms total)
T2890 246:928 JLINK_IsHalted()  returns FALSE (0000ms, 1657ms total)
T2890 247:029 JLINK_IsHalted()  returns FALSE (0000ms, 1657ms total)
T2890 247:130 JLINK_IsHalted()  returns FALSE (0000ms, 1657ms total)
T2890 247:231 JLINK_IsHalted()  returns FALSE (0000ms, 1657ms total)
T2890 247:333 JLINK_IsHalted()  returns FALSE (0000ms, 1657ms total)
T4070 247:435 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1658ms total)
T4070 247:436 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1659ms total)
T4070 247:437 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1660ms total)
T4070 247:438 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1661ms total)
T2890 247:439 JLINK_IsHalted()  returns FALSE (0001ms, 1662ms total)
T2890 247:540 JLINK_IsHalted()  returns FALSE (0000ms, 1661ms total)
T2890 247:641 JLINK_IsHalted()  returns FALSE (0000ms, 1661ms total)
T2890 247:743 JLINK_IsHalted()  returns FALSE (0000ms, 1661ms total)
T2890 247:845 JLINK_IsHalted()  returns FALSE (0000ms, 1661ms total)
T2890 247:945 JLINK_IsHalted()  returns FALSE (0000ms, 1661ms total)
T4070 248:048 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1662ms total)
T4070 248:049 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1663ms total)
T4070 248:050 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1664ms total)
T4070 248:051 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1665ms total)
T2890 248:052 JLINK_IsHalted()  returns FALSE (0000ms, 1665ms total)
T2890 248:153 JLINK_IsHalted()  returns FALSE (0000ms, 1665ms total)
T2890 248:254 JLINK_IsHalted()  returns FALSE (0000ms, 1665ms total)
T2890 248:356 JLINK_IsHalted()  returns FALSE (0000ms, 1665ms total)
T2890 248:457 JLINK_IsHalted()  returns FALSE (0000ms, 1665ms total)
T4070 248:559 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1666ms total)
T4070 248:560 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1667ms total)
T4070 248:561 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1668ms total)
T4070 248:562 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1669ms total)
T2890 248:563 JLINK_IsHalted()  returns FALSE (0001ms, 1670ms total)
T2890 248:664 JLINK_IsHalted()  returns FALSE (0000ms, 1669ms total)
T2890 248:766 JLINK_IsHalted()  returns FALSE (0000ms, 1669ms total)
T2890 248:867 JLINK_IsHalted()  returns FALSE (0000ms, 1669ms total)
T2890 248:968 JLINK_IsHalted()  returns FALSE (0000ms, 1669ms total)
T2890 249:069 JLINK_IsHalted()  returns FALSE (0000ms, 1669ms total)
T4070 249:173 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1670ms total)
T4070 249:174 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1670ms total)
T4070 249:175 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1670ms total)
T4070 249:175 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1671ms total)
T2890 249:176 JLINK_IsHalted()  returns FALSE (0001ms, 1672ms total)
T2890 249:278 JLINK_IsHalted()  returns FALSE (0000ms, 1671ms total)
T2890 249:379 JLINK_IsHalted()  returns FALSE (0000ms, 1671ms total)
T2890 249:480 JLINK_IsHalted()  returns FALSE (0000ms, 1671ms total)
T2890 249:582 JLINK_IsHalted()  returns FALSE (0000ms, 1671ms total)
T4070 249:685 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1671ms total)
T4070 249:685 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1672ms total)
T4070 249:686 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1673ms total)
T4070 249:687 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1674ms total)
T2890 249:688 JLINK_IsHalted()  returns FALSE (0001ms, 1675ms total)
T2890 249:789 JLINK_IsHalted()  returns FALSE (0000ms, 1674ms total)
T2890 249:891 JLINK_IsHalted()  returns FALSE (0000ms, 1674ms total)
T2890 249:992 JLINK_IsHalted()  returns FALSE (0000ms, 1674ms total)
T2890 250:093 JLINK_IsHalted()  returns FALSE (0000ms, 1674ms total)
T2890 250:194 JLINK_IsHalted()  returns FALSE (0000ms, 1674ms total)
T4070 250:297 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1675ms total)
T4070 250:298 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1676ms total)
T4070 250:299 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1677ms total)
T4070 250:300 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1678ms total)
T2890 250:301 JLINK_IsHalted()  returns FALSE (0000ms, 1678ms total)
T2890 250:402 JLINK_IsHalted()  returns FALSE (0000ms, 1678ms total)
T2890 250:503 JLINK_IsHalted()  returns FALSE (0000ms, 1678ms total)
T2890 250:604 JLINK_IsHalted()  returns FALSE (0000ms, 1678ms total)
T2890 250:705 JLINK_IsHalted()  returns FALSE (0000ms, 1678ms total)
T2890 250:806 JLINK_IsHalted()  returns FALSE (0000ms, 1678ms total)
T4070 250:908 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1679ms total)
T4070 250:909 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1680ms total)
T4070 250:910 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1681ms total)
T4070 250:911 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1682ms total)
T2890 250:912 JLINK_IsHalted()  returns FALSE (0000ms, 1682ms total)
T2890 251:014 JLINK_IsHalted()  returns FALSE (0000ms, 1682ms total)
T2890 251:115 JLINK_IsHalted()  returns FALSE (0000ms, 1682ms total)
T2890 251:216 JLINK_IsHalted()  returns FALSE (0000ms, 1682ms total)
T2890 251:317 JLINK_IsHalted()  returns FALSE (0000ms, 1682ms total)
T4070 251:421 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1683ms total)
T4070 251:422 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1683ms total)
T4070 251:423 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1683ms total)
T4070 251:423 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1684ms total)
T2890 251:424 JLINK_IsHalted()  returns FALSE (0001ms, 1685ms total)
T2890 251:526 JLINK_IsHalted()  returns FALSE (0000ms, 1684ms total)
T2890 251:627 JLINK_IsHalted()  returns FALSE (0000ms, 1684ms total)
T2890 251:728 JLINK_IsHalted()  returns FALSE (0000ms, 1684ms total)
T2890 251:830 JLINK_IsHalted()  returns FALSE (0000ms, 1684ms total)
T2890 251:931 JLINK_IsHalted()  returns FALSE (0000ms, 1684ms total)
T4070 252:034 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1684ms total)
T4070 252:034 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1685ms total)
T4070 252:035 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1686ms total)
T4070 252:036 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1687ms total)
T2890 252:037 JLINK_IsHalted()  returns FALSE (0000ms, 1687ms total)
T2890 252:139 JLINK_IsHalted()  returns FALSE (0001ms, 1688ms total)
T2890 252:240 JLINK_IsHalted()  returns FALSE (0000ms, 1687ms total)
T2890 252:341 JLINK_IsHalted()  returns FALSE (0000ms, 1687ms total)
T2890 252:442 JLINK_IsHalted()  returns FALSE (0000ms, 1687ms total)
T4070 252:546 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1688ms total)
T4070 252:547 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1689ms total)
T4070 252:548 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1690ms total)
T4070 252:549 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1690ms total)
T2890 252:549 JLINK_IsHalted()  returns FALSE (0001ms, 1691ms total)
T2890 252:651 JLINK_IsHalted()  returns FALSE (0000ms, 1690ms total)
T2890 252:752 JLINK_IsHalted()  returns FALSE (0000ms, 1690ms total)
T2890 252:853 JLINK_IsHalted()  returns FALSE (0000ms, 1690ms total)
T2890 252:955 JLINK_IsHalted()  returns FALSE (0000ms, 1690ms total)
T2890 253:056 JLINK_IsHalted()  returns FALSE (0000ms, 1690ms total)
T4070 253:158 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1691ms total)
T4070 253:159 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1692ms total)
T4070 253:160 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1693ms total)
T4070 253:161 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1694ms total)
T2890 253:162 JLINK_IsHalted()  returns FALSE (0000ms, 1694ms total)
T2890 253:263 JLINK_IsHalted()  returns FALSE (0000ms, 1694ms total)
T2890 253:365 JLINK_IsHalted()  returns FALSE (0001ms, 1695ms total)
T2890 253:466 JLINK_IsHalted()  returns FALSE (0000ms, 1694ms total)
T2890 253:567 JLINK_IsHalted()  returns FALSE (0000ms, 1694ms total)
T4070 253:671 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1695ms total)
T4070 253:672 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1695ms total)
T4070 253:673 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1695ms total)
T4070 253:673 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1696ms total)
T2890 253:674 JLINK_IsHalted()  returns FALSE (0001ms, 1697ms total)
T2890 253:775 JLINK_IsHalted()  returns FALSE (0000ms, 1696ms total)
T2890 253:877 JLINK_IsHalted()  returns FALSE (0000ms, 1696ms total)
T2890 253:978 JLINK_IsHalted()  returns FALSE (0000ms, 1696ms total)
T2890 254:079 JLINK_IsHalted()  returns FALSE (0000ms, 1696ms total)
T2890 254:181 JLINK_IsHalted()  returns FALSE (0000ms, 1696ms total)
T4070 254:283 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1697ms total)
T4070 254:284 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1698ms total)
T4070 254:285 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1699ms total)
T4070 254:286 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1700ms total)
T2890 254:287 JLINK_IsHalted()  returns FALSE (0000ms, 1700ms total)
T2890 254:388 JLINK_IsHalted()  returns FALSE (0000ms, 1700ms total)
T2890 254:490 JLINK_IsHalted()  returns FALSE (0000ms, 1700ms total)
T2890 254:591 JLINK_IsHalted()  returns FALSE (0000ms, 1700ms total)
T2890 254:692 JLINK_IsHalted()  returns FALSE (0000ms, 1700ms total)
T4070 254:794 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1701ms total)
T4070 254:795 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1702ms total)
T4070 254:796 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1703ms total)
T4070 254:797 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1704ms total)
T2890 254:798 JLINK_IsHalted()  returns FALSE (0000ms, 1704ms total)
T2890 254:900 JLINK_IsHalted()  returns FALSE (0000ms, 1704ms total)
T2890 255:001 JLINK_IsHalted()  returns FALSE (0000ms, 1704ms total)
T2890 255:102 JLINK_IsHalted()  returns FALSE (0000ms, 1704ms total)
T2890 255:203 JLINK_IsHalted()  returns FALSE (0000ms, 1704ms total)
T2890 255:305 JLINK_IsHalted()  returns FALSE (0000ms, 1704ms total)
T4070 255:406 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1705ms total)
T4070 255:407 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1706ms total)
T4070 255:408 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1707ms total)
T4070 255:409 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1708ms total)
T2890 255:410 JLINK_IsHalted()  returns FALSE (0000ms, 1708ms total)
T2890 255:512 JLINK_IsHalted()  returns FALSE (0000ms, 1708ms total)
T2890 255:613 JLINK_IsHalted()  returns FALSE (0000ms, 1708ms total)
T2890 255:714 JLINK_IsHalted()  returns FALSE (0000ms, 1708ms total)
T2890 255:815 JLINK_IsHalted()  returns FALSE (0000ms, 1708ms total)
T2890 255:916 JLINK_IsHalted()  returns FALSE (0000ms, 1708ms total)
T4070 256:020 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1708ms total)
T4070 256:020 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1709ms total)
T4070 256:021 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1710ms total)
T4070 256:022 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1711ms total)
T2890 256:023 JLINK_IsHalted()  returns FALSE (0001ms, 1712ms total)
T2890 256:124 JLINK_IsHalted()  returns FALSE (0000ms, 1711ms total)
T2890 256:225 JLINK_IsHalted()  returns FALSE (0000ms, 1711ms total)
T2890 256:326 JLINK_IsHalted()  returns FALSE (0000ms, 1711ms total)
T2890 256:428 JLINK_IsHalted()  returns FALSE (0000ms, 1711ms total)
T4070 256:530 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1712ms total)
T4070 256:531 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1713ms total)
T4070 256:532 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1714ms total)
T4070 256:533 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1715ms total)
T2890 256:534 JLINK_IsHalted()  returns FALSE (0000ms, 1715ms total)
T2890 256:635 JLINK_IsHalted()  returns FALSE (0000ms, 1715ms total)
T2890 256:736 JLINK_IsHalted()  returns FALSE (0000ms, 1715ms total)
T2890 256:838 JLINK_IsHalted()  returns FALSE (0000ms, 1715ms total)
T2890 256:939 JLINK_IsHalted()  returns FALSE (0000ms, 1715ms total)
T2890 257:040 JLINK_IsHalted()  returns FALSE (0000ms, 1715ms total)
T4070 257:144 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1715ms total)
T4070 257:144 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1716ms total)
T4070 257:145 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1717ms total)
T4070 257:146 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1718ms total)
T2890 257:147 JLINK_IsHalted()  returns FALSE (0001ms, 1719ms total)
T2890 257:248 JLINK_IsHalted()  returns FALSE (0000ms, 1718ms total)
T2890 257:350 JLINK_IsHalted()  returns FALSE (0000ms, 1718ms total)
T2890 257:451 JLINK_IsHalted()  returns FALSE (0000ms, 1718ms total)
T2890 257:552 JLINK_IsHalted()  returns FALSE (0001ms, 1719ms total)
T4070 257:654 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1719ms total)
T4070 257:655 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1720ms total)
T4070 257:656 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1721ms total)
T4070 257:657 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1722ms total)
T2890 257:658 JLINK_IsHalted()  returns FALSE (0000ms, 1722ms total)
T2890 257:759 JLINK_IsHalted()  returns FALSE (0000ms, 1722ms total)
T2890 257:861 JLINK_IsHalted()  returns FALSE (0000ms, 1722ms total)
T2890 257:962 JLINK_IsHalted()  returns FALSE (0000ms, 1722ms total)
T2890 258:063 JLINK_IsHalted()  returns FALSE (0000ms, 1722ms total)
T2890 258:164 JLINK_IsHalted()  returns FALSE (0000ms, 1722ms total)
T4070 258:268 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1723ms total)
T4070 258:269 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1723ms total)
T4070 258:270 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1724ms total)
T4070 258:271 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1724ms total)
T2890 258:271 JLINK_IsHalted()  returns FALSE (0001ms, 1725ms total)
T2890 258:373 JLINK_IsHalted()  returns FALSE (0000ms, 1724ms total)
T2890 258:474 JLINK_IsHalted()  returns FALSE (0000ms, 1724ms total)
T2890 258:575 JLINK_IsHalted()  returns FALSE (0000ms, 1724ms total)
T2890 258:676 JLINK_IsHalted()  returns FALSE (0000ms, 1724ms total)
T4070 258:778 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1725ms total)
T4070 258:779 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1726ms total)
T4070 258:780 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1727ms total)
T4070 258:781 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1728ms total)
T2890 258:782 JLINK_IsHalted()  returns FALSE (0000ms, 1728ms total)
T2890 258:884 JLINK_IsHalted()  returns FALSE (0000ms, 1728ms total)
T2890 258:985 JLINK_IsHalted()  returns FALSE (0000ms, 1728ms total)
T2890 259:086 JLINK_IsHalted()  returns FALSE (0000ms, 1728ms total)
T2890 259:187 JLINK_IsHalted()  returns FALSE (0000ms, 1728ms total)
T2890 259:289 JLINK_IsHalted()  returns FALSE (0000ms, 1728ms total)
T4070 259:392 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1729ms total)
T4070 259:393 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1729ms total)
T4070 259:394 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1729ms total)
T4070 259:394 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1730ms total)
T2890 259:395 JLINK_IsHalted()  returns FALSE (0001ms, 1731ms total)
T2890 259:497 JLINK_IsHalted()  returns FALSE (0000ms, 1730ms total)
T2890 259:599 JLINK_IsHalted()  returns FALSE (0000ms, 1730ms total)
T2890 259:700 JLINK_IsHalted()  returns FALSE (0000ms, 1730ms total)
T2890 259:802 JLINK_IsHalted()  returns FALSE (0000ms, 1730ms total)
T4070 259:904 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1731ms total)
T4070 259:905 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1732ms total)
T4070 259:906 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1733ms total)
T4070 259:907 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1734ms total)
T2890 259:908 JLINK_IsHalted()  returns FALSE (0001ms, 1735ms total)
T2890 260:009 JLINK_IsHalted()  returns FALSE (0000ms, 1734ms total)
T2890 260:110 JLINK_IsHalted()  returns FALSE (0000ms, 1734ms total)
T2890 260:212 JLINK_IsHalted()  returns FALSE (0000ms, 1734ms total)
T2890 260:313 JLINK_IsHalted()  returns FALSE (0000ms, 1734ms total)
T2890 260:414 JLINK_IsHalted()  returns FALSE (0000ms, 1734ms total)
T4070 260:517 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1735ms total)
T4070 260:518 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1735ms total)
T4070 260:519 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1735ms total)
T4070 260:519 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1736ms total)
T2890 260:520 JLINK_IsHalted()  returns FALSE (0001ms, 1737ms total)
T2890 260:623 JLINK_IsHalted()  returns FALSE (0000ms, 1736ms total)
T2890 260:724 JLINK_IsHalted()  returns FALSE (0000ms, 1736ms total)
T2890 260:825 JLINK_IsHalted()  returns FALSE (0000ms, 1736ms total)
T2890 260:927 JLINK_IsHalted()  returns FALSE (0000ms, 1736ms total)
T4070 261:029 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1737ms total)
T4070 261:030 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1738ms total)
T4070 261:031 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1739ms total)
T4070 261:032 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1740ms total)
T2890 261:033 JLINK_IsHalted()  returns FALSE (0000ms, 1740ms total)
T2890 261:134 JLINK_IsHalted()  returns FALSE (0000ms, 1740ms total)
T2890 261:235 JLINK_IsHalted()  returns FALSE (0000ms, 1740ms total)
T2890 261:337 JLINK_IsHalted()  returns FALSE (0000ms, 1740ms total)
T2890 261:438 JLINK_IsHalted()  returns FALSE (0000ms, 1740ms total)
T2890 261:539 JLINK_IsHalted()  returns FALSE (0000ms, 1740ms total)
T4070 261:642 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1740ms total)
T4070 261:642 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1741ms total)
T4070 261:644 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1741ms total)
T4070 261:645 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1741ms total)
T2890 261:645 JLINK_IsHalted()  returns FALSE (0001ms, 1742ms total)
T2890 261:748 JLINK_IsHalted()  returns FALSE (0000ms, 1741ms total)
T2890 261:849 JLINK_IsHalted()  returns FALSE (0000ms, 1741ms total)
T2890 261:950 JLINK_IsHalted()  returns FALSE (0000ms, 1741ms total)
T2890 262:052 JLINK_IsHalted()  returns FALSE (0000ms, 1741ms total)
T4070 262:155 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1742ms total)
T4070 262:156 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1742ms total)
T4070 262:157 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1742ms total)
T4070 262:157 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1743ms total)
T2890 262:158 JLINK_IsHalted()  returns FALSE (0001ms, 1744ms total)
T2890 262:260 JLINK_IsHalted()  returns FALSE (0000ms, 1743ms total)
T2890 262:361 JLINK_IsHalted()  returns FALSE (0000ms, 1743ms total)
T2890 262:463 JLINK_IsHalted()  returns FALSE (0000ms, 1743ms total)
T2890 262:564 JLINK_IsHalted()  returns FALSE (0000ms, 1743ms total)
T2890 262:665 JLINK_IsHalted()  returns FALSE (0000ms, 1743ms total)
T4070 262:768 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1743ms total)
T4070 262:768 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1744ms total)
T4070 262:769 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1745ms total)
T4070 262:770 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1746ms total)
T2890 262:771 JLINK_IsHalted()  returns FALSE (0000ms, 1746ms total)
T2890 262:873 JLINK_IsHalted()  returns FALSE (0000ms, 1746ms total)
T2890 262:974 JLINK_IsHalted()  returns FALSE (0000ms, 1746ms total)
T2890 263:076 JLINK_IsHalted()  returns FALSE (0000ms, 1746ms total)
T2890 263:177 JLINK_IsHalted()  returns FALSE (0000ms, 1746ms total)
T4070 263:279 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1747ms total)
T4070 263:280 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1748ms total)
T4070 263:281 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1749ms total)
T4070 263:282 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1749ms total)
T2890 263:283 JLINK_IsHalted()  returns FALSE (0000ms, 1749ms total)
T2890 263:385 JLINK_IsHalted()  returns FALSE (0000ms, 1749ms total)
T2890 263:486 JLINK_IsHalted()  returns FALSE (0000ms, 1749ms total)
T2890 263:587 JLINK_IsHalted()  returns FALSE (0000ms, 1749ms total)
T2890 263:688 JLINK_IsHalted()  returns FALSE (0000ms, 1749ms total)
T2890 263:790 JLINK_IsHalted()  returns FALSE (0000ms, 1749ms total)
T4070 263:892 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1750ms total)
T4070 263:893 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1751ms total)
T4070 263:894 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1752ms total)
T4070 263:895 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1753ms total)
T2890 263:896 JLINK_IsHalted()  returns FALSE (0000ms, 1753ms total)
T2890 263:997 JLINK_IsHalted()  returns FALSE (0000ms, 1753ms total)
T2890 264:099 JLINK_IsHalted()  returns FALSE (0000ms, 1753ms total)
T2890 264:200 JLINK_IsHalted()  returns FALSE (0000ms, 1753ms total)
T2890 264:301 JLINK_IsHalted()  returns FALSE (0000ms, 1753ms total)
T4070 264:404 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1754ms total)
T4070 264:405 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1754ms total)
T4070 264:406 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1754ms total)
T4070 264:406 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1755ms total)
T2890 264:407 JLINK_IsHalted()  returns FALSE (0001ms, 1756ms total)
T2890 264:510 JLINK_IsHalted()  returns FALSE (0000ms, 1755ms total)
T2890 264:611 JLINK_IsHalted()  returns FALSE (0000ms, 1755ms total)
T2890 264:712 JLINK_IsHalted()  returns FALSE (0000ms, 1755ms total)
T2890 264:813 JLINK_IsHalted()  returns FALSE (0000ms, 1755ms total)
T2890 264:915 JLINK_IsHalted()  returns FALSE (0000ms, 1755ms total)
T4070 265:018 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1756ms total)
T4070 265:019 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1756ms total)
T4070 265:020 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1756ms total)
T4070 265:020 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1757ms total)
T2890 265:021 JLINK_IsHalted()  returns FALSE (0001ms, 1758ms total)
T2890 265:123 JLINK_IsHalted()  returns FALSE (0000ms, 1757ms total)
T2890 265:225 JLINK_IsHalted()  returns FALSE (0000ms, 1757ms total)
T2890 265:326 JLINK_IsHalted()  returns FALSE (0000ms, 1757ms total)
T2890 265:427 JLINK_IsHalted()  returns FALSE (0000ms, 1757ms total)
T4070 265:530 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1758ms total)
T4070 265:531 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1758ms total)
T4070 265:532 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1758ms total)
T4070 265:532 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1759ms total)
T2890 265:533 JLINK_IsHalted()  returns FALSE (0001ms, 1760ms total)
T2890 265:636 JLINK_IsHalted()  returns FALSE (0000ms, 1759ms total)
T2890 265:736 JLINK_IsHalted()  returns FALSE (0000ms, 1759ms total)
T2890 265:837 JLINK_IsHalted()  returns FALSE (0000ms, 1759ms total)
T2890 265:938 JLINK_IsHalted()  returns FALSE (0000ms, 1759ms total)
T2890 266:040 JLINK_IsHalted()  returns FALSE (0000ms, 1759ms total)
T4070 266:143 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1760ms total)
T4070 266:144 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1760ms total)
T4070 266:145 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1760ms total)
T4070 266:145 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1761ms total)
T2890 266:146 JLINK_IsHalted()  returns FALSE (0001ms, 1762ms total)
T2890 266:248 JLINK_IsHalted()  returns FALSE (0000ms, 1761ms total)
T2890 266:350 JLINK_IsHalted()  returns FALSE (0000ms, 1761ms total)
T2890 266:451 JLINK_IsHalted()  returns FALSE (0000ms, 1761ms total)
T2890 266:552 JLINK_IsHalted()  returns FALSE (0000ms, 1761ms total)
T4070 266:654 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1762ms total)
T4070 266:655 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1763ms total)
T4070 266:656 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1764ms total)
T4070 266:657 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1765ms total)
T2890 266:658 JLINK_IsHalted()  returns FALSE (0000ms, 1765ms total)
T2890 266:760 JLINK_IsHalted()  returns FALSE (0000ms, 1765ms total)
T2890 266:861 JLINK_IsHalted()  returns FALSE (0000ms, 1765ms total)
T2890 266:963 JLINK_IsHalted()  returns FALSE (0000ms, 1765ms total)
T2890 267:064 JLINK_IsHalted()  returns FALSE (0000ms, 1765ms total)
T2890 267:165 JLINK_IsHalted()  returns FALSE (0000ms, 1765ms total)
T4070 267:267 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1766ms total)
T4070 267:268 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1767ms total)
T4070 267:269 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1768ms total)
T4070 267:270 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1769ms total)
T2890 267:271 JLINK_IsHalted()  returns FALSE (0000ms, 1769ms total)
T2890 267:373 JLINK_IsHalted()  returns FALSE (0000ms, 1769ms total)
T2890 267:474 JLINK_IsHalted()  returns FALSE (0000ms, 1769ms total)
T2890 267:575 JLINK_IsHalted()  returns FALSE (0000ms, 1769ms total)
T2890 267:676 JLINK_IsHalted()  returns FALSE (0000ms, 1769ms total)
T4070 267:779 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1770ms total)
T4070 267:780 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1771ms total)
T4070 267:781 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1772ms total)
T4070 267:782 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1772ms total)
T2890 267:783 JLINK_IsHalted()  returns FALSE (0000ms, 1772ms total)
T2890 267:884 JLINK_IsHalted()  returns FALSE (0000ms, 1772ms total)
T2890 267:986 JLINK_IsHalted()  returns FALSE (0000ms, 1772ms total)
T2890 268:087 JLINK_IsHalted()  returns FALSE (0000ms, 1772ms total)
T2890 268:188 JLINK_IsHalted()  returns FALSE (0002ms, 1774ms total)
T2890 268:291 JLINK_IsHalted()  returns FALSE (0000ms, 1772ms total)
T4070 268:393 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1773ms total)
T4070 268:394 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1774ms total)
T4070 268:395 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1775ms total)
T4070 268:396 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1775ms total)
T2890 268:397 JLINK_IsHalted()  returns FALSE (0000ms, 1775ms total)
T2890 268:498 JLINK_IsHalted()  returns FALSE (0000ms, 1775ms total)
T2890 268:599 JLINK_IsHalted()  returns FALSE (0000ms, 1775ms total)
T2890 268:700 JLINK_IsHalted()  returns FALSE (0000ms, 1775ms total)
T2890 268:801 JLINK_IsHalted()  returns FALSE (0000ms, 1775ms total)
T4070 268:905 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1775ms total)
T4070 268:905 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1776ms total)
T4070 268:906 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1777ms total)
T4070 268:907 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1778ms total)
T2890 268:908 JLINK_IsHalted()  returns FALSE (0001ms, 1779ms total)
T2890 269:009 JLINK_IsHalted()  returns FALSE (0000ms, 1778ms total)
T2890 269:110 JLINK_IsHalted()  returns FALSE (0000ms, 1778ms total)
T2890 269:212 JLINK_IsHalted()  returns FALSE (0000ms, 1778ms total)
T2890 269:313 JLINK_IsHalted()  returns FALSE (0000ms, 1778ms total)
T2890 269:414 JLINK_IsHalted()  returns FALSE (0000ms, 1778ms total)
T4070 269:518 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1778ms total)
T4070 269:519 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1778ms total)
T4070 269:520 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1779ms total)
T4070 269:521 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1779ms total)
T2890 269:521 JLINK_IsHalted()  returns FALSE (0001ms, 1780ms total)
T2890 269:622 JLINK_IsHalted()  returns FALSE (0000ms, 1779ms total)
T2890 269:724 JLINK_IsHalted()  returns FALSE (0000ms, 1779ms total)
T2890 269:825 JLINK_IsHalted()  returns FALSE (0000ms, 1779ms total)
T2890 269:926 JLINK_IsHalted()  returns FALSE (0000ms, 1779ms total)
T4070 270:028 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1780ms total)
T4070 270:029 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1781ms total)
T4070 270:030 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1782ms total)
T4070 270:031 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1783ms total)
T2890 270:032 JLINK_IsHalted()  returns FALSE (0001ms, 1784ms total)
T2890 270:134 JLINK_IsHalted()  returns FALSE (0000ms, 1783ms total)
T2890 270:235 JLINK_IsHalted()  returns FALSE (0000ms, 1783ms total)
T2890 270:336 JLINK_IsHalted()  returns FALSE (0000ms, 1783ms total)
T2890 270:437 JLINK_IsHalted()  returns FALSE (0000ms, 1783ms total)
T2890 270:539 JLINK_IsHalted()  returns FALSE (0000ms, 1783ms total)
T4070 270:641 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1784ms total)
T4070 270:642 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1785ms total)
T4070 270:643 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1786ms total)
T4070 270:644 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1787ms total)
T2890 270:645 JLINK_IsHalted()  returns FALSE (0000ms, 1787ms total)
T2890 270:746 JLINK_IsHalted()  returns FALSE (0000ms, 1787ms total)
T2890 270:848 JLINK_IsHalted()  returns FALSE (0000ms, 1787ms total)
T2890 270:949 JLINK_IsHalted()  returns FALSE (0000ms, 1787ms total)
T2890 271:050 JLINK_IsHalted()  returns FALSE (0000ms, 1787ms total)
T2890 271:151 JLINK_IsHalted()  returns FALSE (0000ms, 1787ms total)
T4070 271:254 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1788ms total)
T4070 271:255 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1789ms total)
T4070 271:256 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1790ms total)
T4070 271:257 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1790ms total)
T2890 271:257 JLINK_IsHalted()  returns FALSE (0001ms, 1791ms total)
T2890 271:359 JLINK_IsHalted()  returns FALSE (0000ms, 1790ms total)
T2890 271:460 JLINK_IsHalted()  returns FALSE (0000ms, 1790ms total)
T2890 271:561 JLINK_IsHalted()  returns FALSE (0000ms, 1790ms total)
T2890 271:663 JLINK_IsHalted()  returns FALSE (0000ms, 1790ms total)
T4070 271:765 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1790ms total)
T4070 271:765 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1791ms total)
T4070 271:766 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1792ms total)
T4070 271:767 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1793ms total)
T2890 271:768 JLINK_IsHalted()  returns FALSE (0001ms, 1794ms total)
T2890 271:870 JLINK_IsHalted()  returns FALSE (0000ms, 1793ms total)
T2890 271:971 JLINK_IsHalted()  returns FALSE (0000ms, 1793ms total)
T2890 272:072 JLINK_IsHalted()  returns FALSE (0000ms, 1793ms total)
T2890 272:174 JLINK_IsHalted()  returns FALSE (0000ms, 1793ms total)
T2890 272:275 JLINK_IsHalted()  returns FALSE (0000ms, 1793ms total)
T4070 272:377 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1794ms total)
T4070 272:378 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1795ms total)
T4070 272:379 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1796ms total)
T4070 272:380 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1797ms total)
T2890 272:381 JLINK_IsHalted()  returns FALSE (0001ms, 1798ms total)
T2890 272:483 JLINK_IsHalted()  returns FALSE (0000ms, 1797ms total)
T2890 272:584 JLINK_IsHalted()  returns FALSE (0000ms, 1797ms total)
T2890 272:685 JLINK_IsHalted()  returns FALSE (0000ms, 1797ms total)
T2890 272:786 JLINK_IsHalted()  returns FALSE (0000ms, 1797ms total)
T4070 272:889 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1798ms total)
T4070 272:890 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1799ms total)
T4070 272:892 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1799ms total)
T4070 272:892 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1800ms total)
T2890 272:893 JLINK_IsHalted()  returns FALSE (0001ms, 1801ms total)
T2890 272:995 JLINK_IsHalted()  returns FALSE (0000ms, 1800ms total)
T2890 273:096 JLINK_IsHalted()  returns FALSE (0000ms, 1800ms total)
T2890 273:198 JLINK_IsHalted()  returns FALSE (0000ms, 1800ms total)
T2890 273:299 JLINK_IsHalted()  returns FALSE (0000ms, 1800ms total)
T2890 273:400 JLINK_IsHalted()  returns FALSE (0000ms, 1800ms total)
T4070 273:503 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1801ms total)
T4070 273:504 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1802ms total)
T4070 273:505 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1803ms total)
T4070 273:506 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1803ms total)
T2890 273:506 JLINK_IsHalted()  returns FALSE (0001ms, 1804ms total)
T2890 273:609 JLINK_IsHalted()  returns FALSE (0000ms, 1803ms total)
T2890 273:710 JLINK_IsHalted()  returns FALSE (0000ms, 1803ms total)
T2890 273:811 JLINK_IsHalted()  returns FALSE (0000ms, 1803ms total)
T2890 273:912 JLINK_IsHalted()  returns FALSE (0000ms, 1803ms total)
T4070 274:014 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1804ms total)
T4070 274:015 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0002ms, 1806ms total)
T4070 274:017 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1807ms total)
T4070 274:018 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1808ms total)
T2890 274:019 JLINK_IsHalted()  returns FALSE (0001ms, 1809ms total)
T2890 274:120 JLINK_IsHalted()  returns FALSE (0000ms, 1808ms total)
T2890 274:222 JLINK_IsHalted()  returns FALSE (0000ms, 1808ms total)
T2890 274:323 JLINK_IsHalted()  returns FALSE (0000ms, 1808ms total)
T2890 274:424 JLINK_IsHalted()  returns FALSE (0000ms, 1808ms total)
T2890 274:525 JLINK_IsHalted()  returns FALSE (0000ms, 1808ms total)
T4070 274:628 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1809ms total)
T4070 274:629 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1810ms total)
T4070 274:630 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1811ms total)
T4070 274:631 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1812ms total)
T2890 274:632 JLINK_IsHalted()  returns FALSE (0000ms, 1812ms total)
T2890 274:733 JLINK_IsHalted()  returns FALSE (0000ms, 1812ms total)
T2890 274:835 JLINK_IsHalted()  returns FALSE (0000ms, 1812ms total)
T2890 274:936 JLINK_IsHalted()  returns FALSE (0000ms, 1812ms total)
T2890 275:037 JLINK_IsHalted()  returns FALSE (0000ms, 1812ms total)
T4070 275:141 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1813ms total)
T4070 275:142 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1814ms total)
T4070 275:143 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1815ms total)
T4070 275:144 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1816ms total)
T2890 275:145 JLINK_IsHalted()  returns FALSE (0000ms, 1816ms total)
T2890 275:246 JLINK_IsHalted()  returns FALSE (0000ms, 1816ms total)
T2890 275:347 JLINK_IsHalted()  returns FALSE (0000ms, 1816ms total)
T2890 275:448 JLINK_IsHalted()  returns FALSE (0000ms, 1816ms total)
T2890 275:550 JLINK_IsHalted()  returns FALSE (0000ms, 1816ms total)
T2890 275:651 JLINK_IsHalted()  returns FALSE (0000ms, 1816ms total)
T4070 275:753 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1817ms total)
T4070 275:754 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1818ms total)
T4070 275:755 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1819ms total)
T4070 275:756 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1820ms total)
T2890 275:757 JLINK_IsHalted()  returns FALSE (0001ms, 1821ms total)
T2890 275:858 JLINK_IsHalted()  returns FALSE (0000ms, 1820ms total)
T2890 275:960 JLINK_IsHalted()  returns FALSE (0000ms, 1820ms total)
T2890 276:061 JLINK_IsHalted()  returns FALSE (0000ms, 1820ms total)
T2890 276:162 JLINK_IsHalted()  returns FALSE (0000ms, 1820ms total)
T4070 276:264 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1821ms total)
T4070 276:265 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1822ms total)
T4070 276:266 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1823ms total)
T4070 276:267 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1824ms total)
T2890 276:268 JLINK_IsHalted()  returns FALSE (0000ms, 1824ms total)
T2890 276:370 JLINK_IsHalted()  returns FALSE (0000ms, 1824ms total)
T2890 276:471 JLINK_IsHalted()  returns FALSE (0000ms, 1824ms total)
T2890 276:572 JLINK_IsHalted()  returns FALSE (0000ms, 1824ms total)
T2890 276:673 JLINK_IsHalted()  returns FALSE (0000ms, 1824ms total)
T2890 276:775 JLINK_IsHalted()  returns FALSE (0000ms, 1824ms total)
T4070 276:878 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1824ms total)
T4070 276:878 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1825ms total)
T4070 276:879 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1826ms total)
T4070 276:880 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1827ms total)
T2890 276:881 JLINK_IsHalted()  returns FALSE (0001ms, 1828ms total)
T2890 276:982 JLINK_IsHalted()  returns FALSE (0000ms, 1827ms total)
T2890 277:083 JLINK_IsHalted()  returns FALSE (0000ms, 1827ms total)
T2890 277:185 JLINK_IsHalted()  returns FALSE (0000ms, 1827ms total)
T2890 277:286 JLINK_IsHalted()  returns FALSE (0000ms, 1827ms total)
T4070 277:389 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1827ms total)
T4070 277:389 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1828ms total)
T4070 277:390 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1829ms total)
T4070 277:391 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1830ms total)
T2890 277:392 JLINK_IsHalted()  returns FALSE (0000ms, 1830ms total)
T2890 277:494 JLINK_IsHalted()  returns FALSE (0000ms, 1830ms total)
T2890 277:595 JLINK_IsHalted()  returns FALSE (0000ms, 1830ms total)
T2890 277:696 JLINK_IsHalted()  returns FALSE (0000ms, 1830ms total)
T2890 277:797 JLINK_IsHalted()  returns FALSE (0000ms, 1830ms total)
T2890 277:898 JLINK_IsHalted()  returns FALSE (0000ms, 1830ms total)
T4070 278:000 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1831ms total)
T4070 278:001 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1832ms total)
T4070 278:002 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1833ms total)
T4070 278:003 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1834ms total)
T2890 278:004 JLINK_IsHalted()  returns FALSE (0000ms, 1834ms total)
T2890 278:105 JLINK_IsHalted()  returns FALSE (0000ms, 1834ms total)
T2890 278:207 JLINK_IsHalted()  returns FALSE (0000ms, 1834ms total)
T2890 278:308 JLINK_IsHalted()  returns FALSE (0000ms, 1834ms total)
T2890 278:409 JLINK_IsHalted()  returns FALSE (0000ms, 1834ms total)
T2890 278:510 JLINK_IsHalted()  returns FALSE (0000ms, 1834ms total)
T4070 278:613 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1835ms total)
T4070 278:614 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1836ms total)
T4070 278:615 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1837ms total)
T4070 278:616 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1838ms total)
T2890 278:617 JLINK_IsHalted()  returns FALSE (0001ms, 1839ms total)
T2890 278:718 JLINK_IsHalted()  returns FALSE (0000ms, 1838ms total)
T2890 278:819 JLINK_IsHalted()  returns FALSE (0000ms, 1838ms total)
T2890 278:921 JLINK_IsHalted()  returns FALSE (0000ms, 1838ms total)
T2890 279:022 JLINK_IsHalted()  returns FALSE (0000ms, 1838ms total)
T4070 279:124 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1839ms total)
T4070 279:125 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1840ms total)
T4070 279:126 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1841ms total)
T4070 279:127 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1842ms total)
T2890 279:128 JLINK_IsHalted()  returns FALSE (0000ms, 1842ms total)
T2890 279:229 JLINK_IsHalted()  returns FALSE (0000ms, 1842ms total)
T2890 279:331 JLINK_IsHalted()  returns FALSE (0000ms, 1842ms total)
T2890 279:432 JLINK_IsHalted()  returns FALSE (0000ms, 1842ms total)
T2890 279:534 JLINK_IsHalted()  returns FALSE (0000ms, 1842ms total)
T2890 279:635 JLINK_IsHalted()  returns FALSE (0000ms, 1842ms total)
T4070 279:737 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1843ms total)
T4070 279:738 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1844ms total)
T4070 279:739 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1845ms total)
T4070 279:740 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1846ms total)
T2890 279:741 JLINK_IsHalted()  returns FALSE (0001ms, 1847ms total)
T2890 279:842 JLINK_IsHalted()  returns FALSE (0000ms, 1846ms total)
T2890 279:944 JLINK_IsHalted()  returns FALSE (0000ms, 1846ms total)
T2890 280:045 JLINK_IsHalted()  returns FALSE (0000ms, 1846ms total)
T2890 280:146 JLINK_IsHalted()  returns FALSE (0000ms, 1846ms total)
T4070 280:249 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1847ms total)
T4070 280:250 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1847ms total)
T4070 280:251 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1847ms total)
T4070 280:251 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1848ms total)
T2890 280:252 JLINK_IsHalted()  returns FALSE (0001ms, 1849ms total)
T2890 280:355 JLINK_IsHalted()  returns FALSE (0000ms, 1848ms total)
T2890 280:456 JLINK_IsHalted()  returns FALSE (0000ms, 1848ms total)
T2890 280:558 JLINK_IsHalted()  returns FALSE (0000ms, 1848ms total)
T2890 280:659 JLINK_IsHalted()  returns FALSE (0000ms, 1848ms total)
T2890 280:760 JLINK_IsHalted()  returns FALSE (0000ms, 1848ms total)
T4070 280:863 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1848ms total)
T4070 280:863 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1849ms total)
T4070 280:864 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1850ms total)
T4070 280:865 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1851ms total)
T2890 280:866 JLINK_IsHalted()  returns FALSE (0001ms, 1852ms total)
T2890 280:967 JLINK_IsHalted()  returns FALSE (0000ms, 1851ms total)
T2890 281:069 JLINK_IsHalted()  returns FALSE (0000ms, 1851ms total)
T2890 281:170 JLINK_IsHalted()  returns FALSE (0000ms, 1851ms total)
T2890 281:271 JLINK_IsHalted()  returns FALSE (0000ms, 1851ms total)
T4070 281:373 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1852ms total)
T4070 281:374 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1853ms total)
T4070 281:375 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1854ms total)
T4070 281:376 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1854ms total)
T2890 281:376 JLINK_IsHalted()  returns FALSE (0001ms, 1855ms total)
T2890 281:479 JLINK_IsHalted()  returns FALSE (0000ms, 1854ms total)
T2890 281:580 JLINK_IsHalted()  returns FALSE (0000ms, 1854ms total)
T2890 281:681 JLINK_IsHalted()  returns FALSE (0000ms, 1854ms total)
T2890 281:782 JLINK_IsHalted()  returns FALSE (0000ms, 1854ms total)
T2890 281:884 JLINK_IsHalted()  returns FALSE (0000ms, 1854ms total)
T4070 281:987 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1854ms total)
T4070 281:987 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1855ms total)
T4070 281:988 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1856ms total)
T4070 281:989 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1857ms total)
T2890 281:990 JLINK_IsHalted()  returns FALSE (0001ms, 1858ms total)
T2890 282:091 JLINK_IsHalted()  returns FALSE (0000ms, 1857ms total)
T2890 282:193 JLINK_IsHalted()  returns FALSE (0000ms, 1857ms total)
T2890 282:294 JLINK_IsHalted()  returns FALSE (0000ms, 1857ms total)
T2890 282:395 JLINK_IsHalted()  returns FALSE (0000ms, 1857ms total)
T4070 282:497 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1858ms total)
T4070 282:498 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1859ms total)
T4070 282:499 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1860ms total)
T4070 282:500 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1860ms total)
T2890 282:500 JLINK_IsHalted()  returns FALSE (0001ms, 1861ms total)
T2890 282:603 JLINK_IsHalted()  returns FALSE (0000ms, 1860ms total)
T2890 282:704 JLINK_IsHalted()  returns FALSE (0000ms, 1860ms total)
T2890 282:805 JLINK_IsHalted()  returns FALSE (0000ms, 1860ms total)
T2890 282:906 JLINK_IsHalted()  returns FALSE (0000ms, 1860ms total)
T2890 283:008 JLINK_IsHalted()  returns FALSE (0000ms, 1860ms total)
T4070 283:110 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1861ms total)
T4070 283:111 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1862ms total)
T4070 283:112 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1863ms total)
T4070 283:113 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1864ms total)
T2890 283:114 JLINK_IsHalted()  returns FALSE (0001ms, 1865ms total)
T2890 283:216 JLINK_IsHalted()  returns FALSE (0000ms, 1864ms total)
T2890 283:317 JLINK_IsHalted()  returns FALSE (0000ms, 1864ms total)
T2890 283:418 JLINK_IsHalted()  returns FALSE (0000ms, 1864ms total)
T2890 283:519 JLINK_IsHalted()  returns FALSE (0000ms, 1864ms total)
T4070 283:622 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1865ms total)
T4070 283:623 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1866ms total)
T4070 283:624 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1867ms total)
T4070 283:625 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1868ms total)
T2890 283:626 JLINK_IsHalted()  returns FALSE (0000ms, 1868ms total)
T2890 283:728 JLINK_IsHalted()  returns FALSE (0000ms, 1868ms total)
T2890 283:829 JLINK_IsHalted()  returns FALSE (0000ms, 1868ms total)
T2890 283:930 JLINK_IsHalted()  returns FALSE (0000ms, 1868ms total)
T2890 284:031 JLINK_IsHalted()  returns FALSE (0000ms, 1868ms total)
T2890 284:133 JLINK_IsHalted()  returns FALSE (0000ms, 1868ms total)
T4070 284:235 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1869ms total)
T4070 284:236 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1869ms total)
T4070 284:237 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1869ms total)
T4070 284:237 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1870ms total)
T2890 284:238 JLINK_IsHalted()  returns FALSE (0001ms, 1871ms total)
T2890 284:341 JLINK_IsHalted()  returns FALSE (0000ms, 1870ms total)
T2890 284:442 JLINK_IsHalted()  returns FALSE (0000ms, 1870ms total)
T2890 284:543 JLINK_IsHalted()  returns FALSE (0000ms, 1870ms total)
T2890 284:645 JLINK_IsHalted()  returns FALSE (0000ms, 1870ms total)
T4070 284:747 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1871ms total)
T4070 284:748 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1872ms total)
T4070 284:749 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1873ms total)
T4070 284:750 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1874ms total)
T2890 284:751 JLINK_IsHalted()  returns FALSE (0001ms, 1875ms total)
T2890 284:852 JLINK_IsHalted()  returns FALSE (0000ms, 1874ms total)
T2890 284:953 JLINK_IsHalted()  returns FALSE (0000ms, 1874ms total)
T2890 285:055 JLINK_IsHalted()  returns FALSE (0000ms, 1874ms total)
T2890 285:156 JLINK_IsHalted()  returns FALSE (0000ms, 1874ms total)
T2890 285:257 JLINK_IsHalted()  returns FALSE (0000ms, 1874ms total)
T4070 285:360 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1875ms total)
T4070 285:361 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1875ms total)
T4070 285:362 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1875ms total)
T4070 285:362 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1876ms total)
T2890 285:363 JLINK_IsHalted()  returns FALSE (0001ms, 1877ms total)
T2890 285:466 JLINK_IsHalted()  returns FALSE (0000ms, 1876ms total)
T2890 285:567 JLINK_IsHalted()  returns FALSE (0000ms, 1876ms total)
T2890 285:668 JLINK_IsHalted()  returns FALSE (0000ms, 1876ms total)
T2890 285:769 JLINK_IsHalted()  returns FALSE (0000ms, 1876ms total)
T4070 285:873 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1877ms total)
T4070 285:874 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1877ms total)
T4070 285:875 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1877ms total)
T4070 285:875 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1878ms total)
T2890 285:876 JLINK_IsHalted()  returns FALSE (0001ms, 1879ms total)
T2890 285:978 JLINK_IsHalted()  returns FALSE (0000ms, 1878ms total)
T2890 286:079 JLINK_IsHalted()  returns FALSE (0000ms, 1878ms total)
T2890 286:181 JLINK_IsHalted()  returns FALSE (0000ms, 1878ms total)
T2890 286:282 JLINK_IsHalted()  returns FALSE (0000ms, 1878ms total)
T2890 286:383 JLINK_IsHalted()  returns FALSE (0000ms, 1878ms total)
T4070 286:485 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1879ms total)
T4070 286:486 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1880ms total)
T4070 286:487 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1881ms total)
T4070 286:488 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1882ms total)
T2890 286:489 JLINK_IsHalted()  returns FALSE (0001ms, 1883ms total)
T2890 286:591 JLINK_IsHalted()  returns FALSE (0000ms, 1882ms total)
T2890 286:692 JLINK_IsHalted()  returns FALSE (0000ms, 1882ms total)
T2890 286:793 JLINK_IsHalted()  returns FALSE (0000ms, 1882ms total)
T2890 286:894 JLINK_IsHalted()  returns FALSE (0000ms, 1882ms total)
T4070 286:997 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1883ms total)
T4070 286:998 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1884ms total)
T4070 286:999 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1885ms total)
T4070 287:000 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1886ms total)
T2890 287:001 JLINK_IsHalted()  returns FALSE (0000ms, 1886ms total)
T2890 287:102 JLINK_IsHalted()  returns FALSE (0000ms, 1886ms total)
T2890 287:203 JLINK_IsHalted()  returns FALSE (0000ms, 1886ms total)
T2890 287:305 JLINK_IsHalted()  returns FALSE (0000ms, 1886ms total)
T2890 287:406 JLINK_IsHalted()  returns FALSE (0000ms, 1886ms total)
T2890 287:507 JLINK_IsHalted()  returns FALSE (0000ms, 1886ms total)
T4070 287:610 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1886ms total)
T4070 287:610 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1887ms total)
T4070 287:611 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1888ms total)
T4070 287:612 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1889ms total)
T2890 287:613 JLINK_IsHalted()  returns FALSE (0001ms, 1890ms total)
T2890 287:715 JLINK_IsHalted()  returns FALSE (0000ms, 1889ms total)
T2890 287:816 JLINK_IsHalted()  returns FALSE (0000ms, 1889ms total)
T2890 287:917 JLINK_IsHalted()  returns FALSE (0000ms, 1889ms total)
T2890 288:018 JLINK_IsHalted()  returns FALSE (0000ms, 1889ms total)
T2890 288:119 JLINK_IsHalted()  returns FALSE (0000ms, 1889ms total)
T4070 288:223 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1890ms total)
T4070 288:224 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1890ms total)
T4070 288:225 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1890ms total)
T4070 288:225 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1891ms total)
T2890 288:226 JLINK_IsHalted()  returns FALSE (0001ms, 1892ms total)
T2890 288:328 JLINK_IsHalted()  returns FALSE (0000ms, 1891ms total)
T2890 288:429 JLINK_IsHalted()  returns FALSE (0000ms, 1891ms total)
T2890 288:530 JLINK_IsHalted()  returns FALSE (0000ms, 1891ms total)
T2890 288:632 JLINK_IsHalted()  returns FALSE (0000ms, 1891ms total)
T4070 288:735 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1891ms total)
T4070 288:735 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1892ms total)
T4070 288:736 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1893ms total)
T4070 288:737 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1894ms total)
T2890 288:738 JLINK_IsHalted()  returns FALSE (0001ms, 1895ms total)
T2890 288:839 JLINK_IsHalted()  returns FALSE (0000ms, 1894ms total)
T2890 288:941 JLINK_IsHalted()  returns FALSE (0000ms, 1894ms total)
T2890 289:042 JLINK_IsHalted()  returns FALSE (0000ms, 1894ms total)
T2890 289:143 JLINK_IsHalted()  returns FALSE (0000ms, 1894ms total)
T2890 289:244 JLINK_IsHalted()  returns FALSE (0000ms, 1894ms total)
T4070 289:349 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1895ms total)
T4070 289:350 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1896ms total)
T4070 289:351 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1896ms total)
T4070 289:351 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1897ms total)
T2890 289:352 JLINK_IsHalted()  returns FALSE (0001ms, 1898ms total)
T2890 289:454 JLINK_IsHalted()  returns FALSE (0000ms, 1897ms total)
T2890 289:555 JLINK_IsHalted()  returns FALSE (0000ms, 1897ms total)
T2890 289:656 JLINK_IsHalted()  returns FALSE (0000ms, 1897ms total)
T2890 289:757 JLINK_IsHalted()  returns FALSE (0000ms, 1897ms total)
T4070 289:860 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1897ms total)
T4070 289:860 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1898ms total)
T4070 289:861 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1899ms total)
T4070 289:862 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1900ms total)
T2890 289:863 JLINK_IsHalted()  returns FALSE (0001ms, 1901ms total)
T2890 289:965 JLINK_IsHalted()  returns FALSE (0000ms, 1900ms total)
T2890 290:066 JLINK_IsHalted()  returns FALSE (0000ms, 1900ms total)
T2890 290:167 JLINK_IsHalted()  returns FALSE (0000ms, 1900ms total)
T2890 290:269 JLINK_IsHalted()  returns FALSE (0000ms, 1900ms total)
T2890 290:370 JLINK_IsHalted()  returns FALSE (0000ms, 1900ms total)
T4070 290:472 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1901ms total)
T4070 290:473 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1902ms total)
T4070 290:474 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1903ms total)
T4070 290:475 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1904ms total)
T2890 290:476 JLINK_IsHalted()  returns FALSE (0000ms, 1904ms total)
T2890 290:577 JLINK_IsHalted()  returns FALSE (0000ms, 1904ms total)
T2890 290:679 JLINK_IsHalted()  returns FALSE (0000ms, 1904ms total)
T2890 290:780 JLINK_IsHalted()  returns FALSE (0000ms, 1904ms total)
T2890 290:881 JLINK_IsHalted()  returns FALSE (0000ms, 1904ms total)
T4070 290:984 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1905ms total)
T4070 290:985 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1905ms total)
T4070 290:985 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1906ms total)
T4070 290:986 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1907ms total)
T2890 290:987 JLINK_IsHalted()  returns FALSE (0001ms, 1908ms total)
T2890 291:089 JLINK_IsHalted()  returns FALSE (0000ms, 1907ms total)
T2890 291:190 JLINK_IsHalted()  returns FALSE (0000ms, 1907ms total)
T2890 291:291 JLINK_IsHalted()  returns FALSE (0000ms, 1907ms total)
T2890 291:392 JLINK_IsHalted()  returns FALSE (0000ms, 1907ms total)
T2890 291:493 JLINK_IsHalted()  returns FALSE (0000ms, 1907ms total)
T4070 291:596 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1908ms total)
T4070 291:597 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1909ms total)
T4070 291:598 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1910ms total)
T4070 291:599 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1911ms total)
T2890 291:600 JLINK_IsHalted()  returns FALSE (0001ms, 1912ms total)
T2890 291:701 JLINK_IsHalted()  returns FALSE (0000ms, 1911ms total)
T2890 291:802 JLINK_IsHalted()  returns FALSE (0000ms, 1911ms total)
T2890 291:904 JLINK_IsHalted()  returns FALSE (0000ms, 1911ms total)
T2890 292:005 JLINK_IsHalted()  returns FALSE (0000ms, 1911ms total)
T4070 292:108 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1911ms total)
T4070 292:108 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1912ms total)
T4070 292:109 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1913ms total)
T4070 292:110 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1914ms total)
T2890 292:111 JLINK_IsHalted()  returns FALSE (0000ms, 1914ms total)
T2890 292:212 JLINK_IsHalted()  returns FALSE (0000ms, 1914ms total)
T2890 292:314 JLINK_IsHalted()  returns FALSE (0000ms, 1914ms total)
T2890 292:415 JLINK_IsHalted()  returns FALSE (0000ms, 1914ms total)
T2890 292:516 JLINK_IsHalted()  returns FALSE (0000ms, 1914ms total)
T2890 292:617 JLINK_IsHalted()  returns FALSE (0000ms, 1914ms total)
T4070 292:720 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1915ms total)
T4070 292:721 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1916ms total)
T4070 292:722 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1917ms total)
T4070 292:723 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1917ms total)
T2890 292:723 JLINK_IsHalted()  returns FALSE (0001ms, 1918ms total)
T2890 292:826 JLINK_IsHalted()  returns FALSE (0000ms, 1917ms total)
T2890 292:927 JLINK_IsHalted()  returns FALSE (0000ms, 1917ms total)
T2890 293:028 JLINK_IsHalted()  returns FALSE (0000ms, 1917ms total)
T2890 293:129 JLINK_IsHalted()  returns FALSE (0000ms, 1917ms total)
T4070 293:233 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1917ms total)
T4070 293:234 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1917ms total)
T4070 293:234 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1918ms total)
T4070 293:235 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1919ms total)
T2890 293:236 JLINK_IsHalted()  returns FALSE (0001ms, 1920ms total)
T2890 293:337 JLINK_IsHalted()  returns FALSE (0000ms, 1919ms total)
T2890 293:438 JLINK_IsHalted()  returns FALSE (0000ms, 1919ms total)
T2890 293:539 JLINK_IsHalted()  returns FALSE (0000ms, 1919ms total)
T2890 293:641 JLINK_IsHalted()  returns FALSE (0000ms, 1919ms total)
T2890 293:742 JLINK_IsHalted()  returns FALSE (0000ms, 1919ms total)
T4070 293:844 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1920ms total)
T4070 293:845 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1921ms total)
T4070 293:846 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1922ms total)
T4070 293:847 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1923ms total)
T2890 293:848 JLINK_IsHalted()  returns FALSE (0000ms, 1923ms total)
T2890 293:950 JLINK_IsHalted()  returns FALSE (0000ms, 1923ms total)
T2890 294:051 JLINK_IsHalted()  returns FALSE (0000ms, 1923ms total)
T2890 294:152 JLINK_IsHalted()  returns FALSE (0000ms, 1923ms total)
T2890 294:253 JLINK_IsHalted()  returns FALSE (0000ms, 1923ms total)
T2890 294:354 JLINK_IsHalted()  returns FALSE (0000ms, 1923ms total)
T4070 294:456 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1924ms total)
T4070 294:457 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1924ms total)
T4070 294:458 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1924ms total)
T4070 294:458 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1925ms total)
T2890 294:459 JLINK_IsHalted()  returns FALSE (0001ms, 1926ms total)
T2890 294:562 JLINK_IsHalted()  returns FALSE (0000ms, 1925ms total)
T2890 294:663 JLINK_IsHalted()  returns FALSE (0000ms, 1925ms total)
T2890 294:764 JLINK_IsHalted()  returns FALSE (0000ms, 1925ms total)
T2890 294:865 JLINK_IsHalted()  returns FALSE (0000ms, 1925ms total)
T4070 294:969 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1926ms total)
T4070 294:970 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1926ms total)
T4070 294:971 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1926ms total)
T4070 294:971 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1927ms total)
T2890 294:972 JLINK_IsHalted()  returns FALSE (0001ms, 1928ms total)
T2890 295:074 JLINK_IsHalted()  returns FALSE (0000ms, 1927ms total)
T2890 295:175 JLINK_IsHalted()  returns FALSE (0000ms, 1927ms total)
T2890 295:277 JLINK_IsHalted()  returns FALSE (0000ms, 1927ms total)
T2890 295:378 JLINK_IsHalted()  returns FALSE (0000ms, 1927ms total)
T2890 295:479 JLINK_IsHalted()  returns FALSE (0000ms, 1927ms total)
T4070 295:582 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1927ms total)
T4070 295:583 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1928ms total)
T4070 295:584 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1928ms total)
T4070 295:584 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1929ms total)
T2890 295:585 JLINK_IsHalted()  returns FALSE (0001ms, 1930ms total)
T2890 295:688 JLINK_IsHalted()  returns FALSE (0000ms, 1929ms total)
T2890 295:789 JLINK_IsHalted()  returns FALSE (0000ms, 1929ms total)
T2890 295:891 JLINK_IsHalted()  returns FALSE (0000ms, 1929ms total)
T2890 295:992 JLINK_IsHalted()  returns FALSE (0000ms, 1929ms total)
T4070 296:096 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1930ms total)
T4070 296:097 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1931ms total)
T4070 296:098 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1932ms total)
T4070 296:099 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1932ms total)
T2890 296:099 JLINK_IsHalted()  returns FALSE (0001ms, 1933ms total)
T2890 296:201 JLINK_IsHalted()  returns FALSE (0000ms, 1932ms total)
T2890 296:302 JLINK_IsHalted()  returns FALSE (0000ms, 1932ms total)
T2890 296:404 JLINK_IsHalted()  returns FALSE (0000ms, 1932ms total)
T2890 296:505 JLINK_IsHalted()  returns FALSE (0000ms, 1932ms total)
T4070 296:607 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1933ms total)
T4070 296:608 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1934ms total)
T4070 296:609 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1935ms total)
T4070 296:610 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1935ms total)
T2890 296:611 JLINK_IsHalted()  returns FALSE (0000ms, 1936ms total)
T2890 296:712 JLINK_IsHalted()  returns FALSE (0000ms, 1936ms total)
T2890 296:814 JLINK_IsHalted()  returns FALSE (0000ms, 1936ms total)
T2890 296:915 JLINK_IsHalted()  returns FALSE (0000ms, 1936ms total)
T2890 297:016 JLINK_IsHalted()  returns FALSE (0000ms, 1936ms total)
T2890 297:117 JLINK_IsHalted()  returns FALSE (0000ms, 1936ms total)
T4070 297:220 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1937ms total)
T4070 297:221 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1938ms total)
T4070 297:222 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1939ms total)
T4070 297:223 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1940ms total)
T2890 297:224 JLINK_IsHalted()  returns FALSE (0000ms, 1940ms total)
T2890 297:325 JLINK_IsHalted()  returns FALSE (0000ms, 1940ms total)
T2890 297:426 JLINK_IsHalted()  returns FALSE (0000ms, 1940ms total)
T2890 297:528 JLINK_IsHalted()  returns FALSE (0000ms, 1940ms total)
T2890 297:629 JLINK_IsHalted()  returns FALSE (0000ms, 1940ms total)
T4070 297:731 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1941ms total)
T4070 297:732 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1942ms total)
T4070 297:733 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1943ms total)
T4070 297:734 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1944ms total)
T2890 297:735 JLINK_IsHalted()  returns FALSE (0001ms, 1945ms total)
T2890 297:836 JLINK_IsHalted()  returns FALSE (0000ms, 1944ms total)
T2890 297:938 JLINK_IsHalted()  returns FALSE (0000ms, 1944ms total)
T2890 298:039 JLINK_IsHalted()  returns FALSE (0000ms, 1944ms total)
T2890 298:140 JLINK_IsHalted()  returns FALSE (0000ms, 1944ms total)
T2890 298:241 JLINK_IsHalted()  returns FALSE (0000ms, 1944ms total)
T4070 298:344 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1945ms total)
T4070 298:345 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1946ms total)
T4070 298:346 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1947ms total)
T4070 298:347 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1948ms total)
T2890 298:348 JLINK_IsHalted()  returns FALSE (0000ms, 1948ms total)
T2890 298:449 JLINK_IsHalted()  returns FALSE (0000ms, 1948ms total)
T2890 298:550 JLINK_IsHalted()  returns FALSE (0000ms, 1948ms total)
T2890 298:651 JLINK_IsHalted()  returns FALSE (0000ms, 1948ms total)
T2890 298:752 JLINK_IsHalted()  returns FALSE (0000ms, 1948ms total)
T2890 298:854 JLINK_IsHalted()  returns FALSE (0000ms, 1948ms total)
T4070 298:957 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1949ms total)
T4070 298:958 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1949ms total)
T4070 298:959 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1949ms total)
T4070 298:959 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1950ms total)
T2890 298:960 JLINK_IsHalted()  returns FALSE (0001ms, 1951ms total)
T2890 299:061 JLINK_IsHalted()  returns FALSE (0000ms, 1950ms total)
T2890 299:162 JLINK_IsHalted()  returns FALSE (0000ms, 1950ms total)
T2890 299:263 JLINK_IsHalted()  returns FALSE (0000ms, 1950ms total)
T2890 299:365 JLINK_IsHalted()  returns FALSE (0000ms, 1950ms total)
T4070 299:469 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1950ms total)
T4070 299:470 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1950ms total)
T4070 299:470 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1951ms total)
T4070 299:471 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1952ms total)
T2890 299:472 JLINK_IsHalted()  returns FALSE (0001ms, 1953ms total)
T2890 299:574 JLINK_IsHalted()  returns FALSE (0000ms, 1952ms total)
T2890 299:675 JLINK_IsHalted()  returns FALSE (0000ms, 1952ms total)
T2890 299:777 JLINK_IsHalted()  returns FALSE (0000ms, 1952ms total)
T2890 299:878 JLINK_IsHalted()  returns FALSE (0000ms, 1952ms total)
T2890 299:979 JLINK_IsHalted()  returns FALSE (0000ms, 1952ms total)
T4070 300:082 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1953ms total)
T4070 300:083 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1953ms total)
T4070 300:085 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1953ms total)
T4070 300:085 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1954ms total)
T2890 300:086 JLINK_IsHalted()  returns FALSE (0001ms, 1955ms total)
T2890 300:187 JLINK_IsHalted()  returns FALSE (0000ms, 1954ms total)
T2890 300:288 JLINK_IsHalted()  returns FALSE (0000ms, 1954ms total)
T2890 300:389 JLINK_IsHalted()  returns FALSE (0000ms, 1954ms total)
T2890 300:491 JLINK_IsHalted()  returns FALSE (0000ms, 1954ms total)
T4070 300:594 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1954ms total)
T4070 300:594 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1955ms total)
T4070 300:595 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1956ms total)
T4070 300:596 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1957ms total)
T2890 300:597 JLINK_IsHalted()  returns FALSE (0000ms, 1957ms total)
T2890 300:698 JLINK_IsHalted()  returns FALSE (0000ms, 1957ms total)
T2890 300:799 JLINK_IsHalted()  returns FALSE (0000ms, 1957ms total)
T2890 300:901 JLINK_IsHalted()  returns FALSE (0000ms, 1957ms total)
T2890 301:002 JLINK_IsHalted()  returns FALSE (0000ms, 1957ms total)
T2890 301:104 JLINK_IsHalted()  returns FALSE (0000ms, 1957ms total)
T4070 301:207 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1957ms total)
T4070 301:207 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1958ms total)
T4070 301:208 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1959ms total)
T4070 301:209 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1960ms total)
T2890 301:210 JLINK_IsHalted()  returns FALSE (0001ms, 1961ms total)
T2890 301:311 JLINK_IsHalted()  returns FALSE (0000ms, 1960ms total)
T2890 301:412 JLINK_IsHalted()  returns FALSE (0000ms, 1960ms total)
T2890 301:514 JLINK_IsHalted()  returns FALSE (0000ms, 1960ms total)
T2890 301:615 JLINK_IsHalted()  returns FALSE (0000ms, 1960ms total)
T4070 301:718 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1960ms total)
T4070 301:718 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1961ms total)
T4070 301:719 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1962ms total)
T4070 301:720 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1963ms total)
T2890 301:721 JLINK_IsHalted()  returns FALSE (0000ms, 1963ms total)
T2890 301:822 JLINK_IsHalted()  returns FALSE (0000ms, 1963ms total)
T2890 301:923 JLINK_IsHalted()  returns FALSE (0000ms, 1963ms total)
T2890 302:025 JLINK_IsHalted()  returns FALSE (0000ms, 1963ms total)
T2890 302:126 JLINK_IsHalted()  returns FALSE (0000ms, 1963ms total)
T2890 302:227 JLINK_IsHalted()  returns FALSE (0000ms, 1963ms total)
T4070 302:330 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1964ms total)
T4070 302:331 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1965ms total)
T4070 302:332 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1966ms total)
T4070 302:333 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1967ms total)
T2890 302:334 JLINK_IsHalted()  returns FALSE (0000ms, 1967ms total)
T2890 302:435 JLINK_IsHalted()  returns FALSE (0000ms, 1967ms total)
T2890 302:536 JLINK_IsHalted()  returns FALSE (0000ms, 1967ms total)
T2890 302:638 JLINK_IsHalted()  returns FALSE (0000ms, 1967ms total)
T2890 302:739 JLINK_IsHalted()  returns FALSE (0000ms, 1967ms total)
T4070 302:842 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1967ms total)
T4070 302:842 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1968ms total)
T4070 302:843 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1969ms total)
T4070 302:844 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1970ms total)
T2890 302:845 JLINK_IsHalted()  returns FALSE (0000ms, 1970ms total)
T2890 302:946 JLINK_IsHalted()  returns FALSE (0000ms, 1970ms total)
T2890 303:048 JLINK_IsHalted()  returns FALSE (0000ms, 1970ms total)
T2890 303:149 JLINK_IsHalted()  returns FALSE (0000ms, 1970ms total)
T2890 303:250 JLINK_IsHalted()  returns FALSE (0001ms, 1971ms total)
T2890 303:351 JLINK_IsHalted()  returns FALSE (0000ms, 1970ms total)
T4070 303:454 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1971ms total)
T4070 303:455 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1972ms total)
T4070 303:456 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1973ms total)
T4070 303:457 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1974ms total)
T2890 303:458 JLINK_IsHalted()  returns FALSE (0000ms, 1974ms total)
T2890 303:559 JLINK_IsHalted()  returns FALSE (0001ms, 1975ms total)
T2890 303:660 JLINK_IsHalted()  returns FALSE (0000ms, 1974ms total)
T2890 303:762 JLINK_IsHalted()  returns FALSE (0000ms, 1974ms total)
T2890 303:863 JLINK_IsHalted()  returns FALSE (0000ms, 1974ms total)
T4070 303:966 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1975ms total)
T4070 303:967 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1976ms total)
T4070 303:968 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1976ms total)
T4070 303:968 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1977ms total)
T2890 303:969 JLINK_IsHalted()  returns FALSE (0001ms, 1978ms total)
T2890 304:071 JLINK_IsHalted()  returns FALSE (0000ms, 1977ms total)
T2890 304:173 JLINK_IsHalted()  returns FALSE (0000ms, 1977ms total)
T2890 304:273 JLINK_IsHalted()  returns FALSE (0000ms, 1977ms total)
T2890 304:375 JLINK_IsHalted()  returns FALSE (0000ms, 1977ms total)
T2890 304:476 JLINK_IsHalted()  returns FALSE (0000ms, 1977ms total)
T4070 304:579 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 1977ms total)
T4070 304:579 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1978ms total)
T4070 304:580 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1979ms total)
T4070 304:581 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1980ms total)
T2890 304:582 JLINK_IsHalted()  returns FALSE (0001ms, 1981ms total)
T2890 304:684 JLINK_IsHalted()  returns FALSE (0000ms, 1980ms total)
T2890 304:786 JLINK_IsHalted()  returns FALSE (0000ms, 1980ms total)
T2890 304:888 JLINK_IsHalted()  returns FALSE (0000ms, 1980ms total)
T2890 304:989 JLINK_IsHalted()  returns FALSE (0000ms, 1980ms total)
T4070 305:091 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1981ms total)
T4070 305:092 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1982ms total)
T4070 305:093 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1983ms total)
T4070 305:094 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1983ms total)
T2890 305:094 JLINK_IsHalted()  returns FALSE (0001ms, 1984ms total)
T2890 305:196 JLINK_IsHalted()  returns FALSE (0000ms, 1983ms total)
T2890 305:298 JLINK_IsHalted()  returns FALSE (0000ms, 1983ms total)
T2890 305:399 JLINK_IsHalted()  returns FALSE (0000ms, 1983ms total)
T2890 305:500 JLINK_IsHalted()  returns FALSE (0000ms, 1983ms total)
T2890 305:601 JLINK_IsHalted()  returns FALSE (0000ms, 1983ms total)
T4070 305:707 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1984ms total)
T4070 305:708 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1984ms total)
T4070 305:709 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1984ms total)
T4070 305:709 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1985ms total)
T2890 305:710 JLINK_IsHalted()  returns FALSE (0001ms, 1986ms total)
T2890 305:812 JLINK_IsHalted()  returns FALSE (0000ms, 1985ms total)
T2890 305:913 JLINK_IsHalted()  returns FALSE (0000ms, 1985ms total)
T2890 306:014 JLINK_IsHalted()  returns FALSE (0000ms, 1985ms total)
T2890 306:116 JLINK_IsHalted()  returns FALSE (0000ms, 1985ms total)
T4070 306:218 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1986ms total)
T4070 306:219 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1987ms total)
T4070 306:220 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1988ms total)
T4070 306:221 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1989ms total)
T2890 306:222 JLINK_IsHalted()  returns FALSE (0001ms, 1990ms total)
T2890 306:323 JLINK_IsHalted()  returns FALSE (0000ms, 1989ms total)
T2890 306:425 JLINK_IsHalted()  returns FALSE (0000ms, 1989ms total)
T2890 306:526 JLINK_IsHalted()  returns FALSE (0000ms, 1989ms total)
T2890 306:627 JLINK_IsHalted()  returns FALSE (0000ms, 1989ms total)
T2890 306:728 JLINK_IsHalted()  returns FALSE (0000ms, 1989ms total)
T4070 306:831 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1990ms total)
T4070 306:832 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 1990ms total)
T4070 306:833 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 1990ms total)
T4070 306:833 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1991ms total)
T2890 306:834 JLINK_IsHalted()  returns FALSE (0001ms, 1992ms total)
T2890 306:936 JLINK_IsHalted()  returns FALSE (0000ms, 1991ms total)
T2890 307:037 JLINK_IsHalted()  returns FALSE (0000ms, 1991ms total)
T2890 307:138 JLINK_IsHalted()  returns FALSE (0000ms, 1991ms total)
T2890 307:240 JLINK_IsHalted()  returns FALSE (0000ms, 1991ms total)
T4070 307:342 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1992ms total)
T4070 307:343 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1993ms total)
T4070 307:344 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1994ms total)
T4070 307:345 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0000ms, 1994ms total)
T2890 307:345 JLINK_IsHalted()  returns FALSE (0001ms, 1995ms total)
T2890 307:447 JLINK_IsHalted()  returns FALSE (0000ms, 1994ms total)
T2890 307:549 JLINK_IsHalted()  returns FALSE (0000ms, 1994ms total)
T2890 307:650 JLINK_IsHalted()  returns FALSE (0000ms, 1994ms total)
T2890 307:751 JLINK_IsHalted()  returns FALSE (0000ms, 1994ms total)
T2890 307:852 JLINK_IsHalted()  returns FALSE (0000ms, 1994ms total)
T4070 307:954 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1995ms total)
T4070 307:955 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 1996ms total)
T4070 307:956 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 1997ms total)
T4070 307:957 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 1998ms total)
T2890 307:958 JLINK_IsHalted()  returns FALSE (0001ms, 1999ms total)
T2890 308:060 JLINK_IsHalted()  returns FALSE (0000ms, 1998ms total)
T2890 308:161 JLINK_IsHalted()  returns FALSE (0000ms, 1998ms total)
T2890 308:262 JLINK_IsHalted()  returns FALSE (0000ms, 1998ms total)
T2890 308:363 JLINK_IsHalted()  returns FALSE (0000ms, 1998ms total)
T4070 308:466 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 1999ms total)
T4070 308:467 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 2000ms total)
T4070 308:468 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 2001ms total)
T4070 308:469 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 2002ms total)
T2890 308:470 JLINK_IsHalted()  returns FALSE (0001ms, 2003ms total)
T2890 308:571 JLINK_IsHalted()  returns FALSE (0000ms, 2002ms total)
T2890 308:672 JLINK_IsHalted()  returns FALSE (0000ms, 2002ms total)
T2890 308:773 JLINK_IsHalted()  returns FALSE (0000ms, 2002ms total)
T2890 308:875 JLINK_IsHalted()  returns FALSE (0000ms, 2002ms total)
T2890 308:976 JLINK_IsHalted()  returns FALSE (0000ms, 2002ms total)
T4070 309:079 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 2003ms total)
T4070 309:080 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 2004ms total)
T4070 309:081 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 2005ms total)
T4070 309:082 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 2006ms total)
T2890 309:083 JLINK_IsHalted()  returns FALSE (0000ms, 2006ms total)
T2890 309:184 JLINK_IsHalted()  returns FALSE (0000ms, 2006ms total)
T2890 309:285 JLINK_IsHalted()  returns FALSE (0000ms, 2006ms total)
T2890 309:387 JLINK_IsHalted()  returns FALSE (0000ms, 2006ms total)
T2890 309:488 JLINK_IsHalted()  returns FALSE (0000ms, 2006ms total)
T4070 309:591 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 2006ms total)
T4070 309:591 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 2007ms total)
T4070 309:592 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 2008ms total)
T4070 309:593 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 2009ms total)
T2890 309:594 JLINK_IsHalted()  returns FALSE (0001ms, 2010ms total)
T2890 309:696 JLINK_IsHalted()  returns FALSE (0000ms, 2010ms total)
T2890 309:797 JLINK_IsHalted()  returns FALSE (0000ms, 2010ms total)
T2890 309:898 JLINK_IsHalted()  returns FALSE (0000ms, 2010ms total)
T2890 310:000 JLINK_IsHalted()  returns FALSE (0000ms, 2010ms total)
T2890 310:101 JLINK_IsHalted()  returns FALSE (0000ms, 2010ms total)
T4070 310:205 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 2011ms total)
T4070 310:206 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 2011ms total)
T4070 310:207 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 2011ms total)
T4070 310:207 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 2012ms total)
T2890 310:208 JLINK_IsHalted()  returns FALSE (0001ms, 2013ms total)
T2890 310:311 JLINK_IsHalted()  returns FALSE (0000ms, 2012ms total)
T2890 310:412 JLINK_IsHalted()  returns FALSE (0000ms, 2012ms total)
T2890 310:513 JLINK_IsHalted()  returns FALSE (0000ms, 2012ms total)
T2890 310:614 JLINK_IsHalted()  returns FALSE (0000ms, 2012ms total)
T4070 310:716 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 2013ms total)
T4070 310:717 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 2014ms total)
T4070 310:718 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 2015ms total)
T4070 310:719 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 2016ms total)
T2890 310:720 JLINK_IsHalted()  returns FALSE (0000ms, 2016ms total)
T2890 310:821 JLINK_IsHalted()  returns FALSE (0000ms, 2016ms total)
T2890 310:922 JLINK_IsHalted()  returns FALSE (0000ms, 2016ms total)
T2890 311:023 JLINK_IsHalted()  returns FALSE (0000ms, 2016ms total)
T2890 311:125 JLINK_IsHalted()  returns FALSE (0000ms, 2016ms total)
T2890 311:226 JLINK_IsHalted()  returns FALSE (0000ms, 2016ms total)
T4070 311:328 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 2017ms total)
T4070 311:329 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 2018ms total)
T4070 311:330 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 2019ms total)
T4070 311:331 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 2020ms total)
T2890 311:332 JLINK_IsHalted()  returns FALSE (0000ms, 2020ms total)
T2890 311:433 JLINK_IsHalted()  returns FALSE (0000ms, 2020ms total)
T2890 311:535 JLINK_IsHalted()  returns FALSE (0000ms, 2020ms total)
T2890 311:636 JLINK_IsHalted()  returns FALSE (0000ms, 2020ms total)
T2890 311:737 JLINK_IsHalted()  returns FALSE (0000ms, 2020ms total)
T2890 311:839 JLINK_IsHalted()  returns FALSE (0000ms, 2020ms total)
T4070 311:941 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 2021ms total)
T4070 311:942 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 2022ms total)
T4070 311:943 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 2023ms total)
T4070 311:944 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 2024ms total)
T2890 311:945 JLINK_IsHalted()  returns FALSE (0000ms, 2024ms total)
T2890 312:046 JLINK_IsHalted()  returns FALSE (0000ms, 2024ms total)
T2890 312:147 JLINK_IsHalted()  returns FALSE (0000ms, 2024ms total)
T2890 312:249 JLINK_IsHalted()  returns FALSE (0000ms, 2024ms total)
T2890 312:350 JLINK_IsHalted()  returns FALSE (0000ms, 2024ms total)
T4070 312:452 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 2025ms total)
T4070 312:453 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 2026ms total)
T4070 312:454 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 2027ms total)
T4070 312:455 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 2028ms total)
T2890 312:456 JLINK_IsHalted()  returns FALSE (0001ms, 2029ms total)
T2890 312:557 JLINK_IsHalted()  returns FALSE (0000ms, 2028ms total)
T2890 312:659 JLINK_IsHalted()  returns FALSE (0000ms, 2028ms total)
T2890 312:760 JLINK_IsHalted()  returns FALSE (0000ms, 2028ms total)
T2890 312:861 JLINK_IsHalted()  returns FALSE (0000ms, 2028ms total)
T2890 312:962 JLINK_IsHalted()  returns FALSE (0000ms, 2028ms total)
T4070 313:065 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 2029ms total)
T4070 313:066 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 2030ms total)
T4070 313:067 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 2031ms total)
T4070 313:068 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 2032ms total)
T2890 313:069 JLINK_IsHalted()  returns FALSE (0000ms, 2032ms total)
T2890 313:170 JLINK_IsHalted()  returns FALSE (0000ms, 2032ms total)
T2890 313:271 JLINK_IsHalted()  returns FALSE (0000ms, 2032ms total)
T2890 313:372 JLINK_IsHalted()  returns FALSE (0000ms, 2032ms total)
T2890 313:474 JLINK_IsHalted()  returns FALSE (0000ms, 2032ms total)
T4070 313:581 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 2032ms total)
T4070 313:581 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 2033ms total)
T4070 313:582 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 2034ms total)
T4070 313:583 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 2035ms total)
T2890 313:584 JLINK_IsHalted()  returns FALSE (0001ms, 2036ms total)
T2890 313:685 JLINK_IsHalted()  returns FALSE (0000ms, 2035ms total)
T2890 313:786 JLINK_IsHalted()  returns FALSE (0000ms, 2035ms total)
T2890 313:888 JLINK_IsHalted()  returns FALSE (0000ms, 2035ms total)
T2890 313:989 JLINK_IsHalted()  returns FALSE (0000ms, 2035ms total)
T4070 314:092 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0001ms, 2036ms total)
T4070 314:093 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 2037ms total)
T4070 314:094 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 2038ms total)
T4070 314:095 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 2039ms total)
T2890 314:096 JLINK_IsHalted()  returns FALSE (0000ms, 2039ms total)
T2890 314:198 JLINK_IsHalted()  returns FALSE (0000ms, 2039ms total)
T2890 314:299 JLINK_IsHalted()  returns FALSE (0000ms, 2039ms total)
T2890 314:401 JLINK_IsHalted()  returns FALSE (0000ms, 2039ms total)
T2890 314:502 JLINK_IsHalted()  returns FALSE (0000ms, 2039ms total)
T2890 314:603 JLINK_IsHalted()  returns FALSE (0000ms, 2039ms total)
T4070 314:706 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 2039ms total)
T4070 314:706 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0001ms, 2040ms total)
T4070 314:707 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0001ms, 2041ms total)
T4070 314:708 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 2042ms total)
T2890 314:709 JLINK_IsHalted()  returns FALSE (0001ms, 2043ms total)
T2890 314:811 JLINK_IsHalted()  returns FALSE (0000ms, 2042ms total)
T2890 314:912 JLINK_IsHalted()  returns FALSE (0000ms, 2042ms total)
T2890 315:013 JLINK_IsHalted()  returns FALSE (0000ms, 2042ms total)
T2890 315:114 JLINK_IsHalted()  returns FALSE (0000ms, 2042ms total)
T4070 315:218 JLINK_ReadMemEx(0x0201A8E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E2) - Data: 00  returns 0x01 (0000ms, 2042ms total)
T4070 315:219 JLINK_ReadMemEx(0x0201A885, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A885) - Data: 00  returns 0x01 (0000ms, 2043ms total)
T4070 315:220 JLINK_ReadMemEx(0x0201A8E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E4) - Data: 00  returns 0x01 (0000ms, 2043ms total)
T4070 315:220 JLINK_ReadMemEx(0x0201A8E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A8E3) - Data: 00  returns 0x01 (0001ms, 2044ms total)
T2890 315:221 JLINK_IsHalted()  returns FALSE (0001ms, 2045ms total)
T2890 315:323 JLINK_IsHalted()  returns FALSE (0000ms, 2044ms total)
T2890 315:424 JLINK_IsHalted()  returns FALSE (0000ms, 2044ms total)
T2890 315:526 JLINK_IsHalted()  returns FALSE (0000ms, 2044ms total)
T2890 315:626 JLINK_IsHalted()  returns FALSE (0000ms, 2044ms total)
T2890 315:728 JLINK_Halt()  returns 0x00 (0003ms, 2047ms total)
T2890 315:731 JLINK_IsHalted()  returns TRUE (0000ms, 2047ms total)
T2890 315:731 JLINK_IsHalted()  returns TRUE (0001ms, 2048ms total)
T2890 315:732 JLINK_IsHalted()  returns TRUE (0000ms, 2047ms total)
T2890 315:732 JLINK_ReadReg(R15 (PC))  returns 0x000090CE (0000ms, 2047ms total)
T2890 315:732 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 2047ms total)
T2890 315:732 JLINK_ClrBPEx(BPHandle = 0x00000007)  returns 0x00 (0000ms, 2047ms total)
T2890 315:732 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 01 00 00 00  returns 0x01 (0000ms, 2047ms total)
T2890 315:732 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 2048ms total)
T2890 315:733 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0001ms, 2049ms total)
T4070 316:348 JLINK_Close() -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> (0019ms, 2068ms total)
T4070 316:348  (0019ms, 2068ms total)
T4070 316:348 Closed (0019ms, 2068ms total)