yincheng.zhong
2024-08-26 6a54fd6dd7b40c274b68b0f27bedb7b71b7a21c5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
6085
6086
6087
6088
6089
6090
6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
6107
6108
6109
6110
6111
6112
6113
6114
6115
6116
6117
6118
6119
6120
6121
6122
6123
6124
6125
6126
6127
6128
6129
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
6174
6175
6176
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
6197
6198
6199
6200
6201
6202
6203
6204
6205
6206
6207
6208
6209
6210
6211
6212
6213
6214
6215
6216
6217
6218
6219
6220
6221
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
6234
6235
6236
6237
6238
6239
6240
6241
6242
6243
6244
6245
6246
6247
6248
6249
6250
6251
6252
6253
6254
6255
6256
6257
6258
6259
6260
6261
6262
6263
6264
6265
6266
6267
6268
6269
6270
6271
6272
6273
6274
6275
6276
6277
6278
6279
6280
6281
6282
6283
6284
6285
6286
6287
6288
6289
6290
6291
6292
6293
6294
6295
6296
6297
6298
6299
6300
6301
6302
6303
6304
6305
6306
6307
6308
6309
6310
6311
6312
6313
6314
6315
6316
6317
6318
6319
6320
6321
6322
6323
6324
6325
6326
6327
6328
6329
6330
6331
6332
6333
6334
6335
6336
6337
6338
6339
6340
6341
6342
6343
6344
6345
6346
6347
6348
6349
6350
6351
6352
6353
6354
6355
6356
6357
6358
6359
6360
6361
6362
6363
6364
6365
6366
6367
6368
6369
6370
6371
6372
6373
6374
6375
6376
6377
6378
6379
6380
6381
6382
6383
6384
6385
6386
6387
6388
6389
6390
6391
6392
6393
6394
6395
6396
6397
6398
6399
6400
6401
6402
6403
6404
6405
6406
6407
6408
6409
6410
6411
6412
6413
6414
6415
6416
6417
6418
6419
6420
6421
6422
6423
6424
6425
6426
6427
6428
6429
6430
6431
6432
6433
6434
6435
6436
6437
6438
6439
6440
6441
6442
6443
6444
6445
6446
6447
6448
6449
6450
6451
6452
6453
6454
6455
6456
6457
6458
6459
6460
6461
6462
6463
6464
6465
6466
6467
6468
6469
6470
6471
6472
6473
6474
6475
6476
6477
6478
6479
6480
6481
6482
6483
6484
6485
6486
6487
6488
6489
6490
6491
6492
6493
6494
6495
6496
6497
6498
6499
6500
6501
6502
6503
6504
6505
6506
6507
6508
6509
6510
6511
6512
6513
6514
6515
6516
6517
6518
6519
6520
6521
6522
6523
6524
6525
6526
6527
6528
6529
6530
6531
6532
6533
6534
6535
6536
6537
6538
6539
6540
6541
6542
6543
6544
6545
6546
6547
6548
6549
6550
6551
6552
6553
6554
6555
6556
6557
6558
6559
6560
6561
6562
6563
6564
6565
6566
6567
6568
6569
6570
6571
6572
6573
6574
6575
6576
6577
6578
6579
6580
6581
6582
6583
6584
6585
6586
6587
6588
6589
6590
6591
6592
6593
6594
6595
6596
6597
6598
6599
6600
6601
6602
6603
6604
6605
6606
6607
6608
6609
6610
6611
6612
6613
6614
6615
6616
6617
6618
6619
6620
6621
6622
6623
6624
6625
6626
6627
6628
6629
6630
6631
6632
6633
6634
6635
6636
6637
6638
6639
6640
6641
6642
6643
6644
6645
6646
6647
6648
6649
6650
6651
6652
6653
6654
6655
6656
6657
6658
6659
6660
6661
6662
6663
6664
6665
6666
6667
6668
6669
6670
6671
6672
6673
6674
6675
6676
6677
6678
6679
6680
6681
6682
6683
6684
6685
6686
6687
6688
6689
6690
6691
6692
6693
6694
6695
6696
6697
6698
6699
6700
6701
6702
6703
6704
6705
6706
6707
6708
6709
6710
6711
6712
6713
6714
6715
6716
6717
6718
6719
6720
6721
6722
6723
6724
6725
6726
6727
6728
6729
6730
6731
6732
6733
6734
6735
6736
6737
6738
6739
6740
6741
6742
6743
6744
6745
6746
6747
6748
6749
6750
6751
6752
6753
6754
6755
6756
6757
6758
6759
6760
6761
6762
6763
6764
6765
6766
6767
6768
6769
6770
6771
6772
6773
6774
6775
6776
6777
6778
6779
6780
6781
6782
6783
6784
6785
6786
6787
6788
6789
6790
6791
6792
6793
6794
6795
6796
6797
6798
6799
6800
6801
6802
6803
6804
6805
6806
6807
6808
6809
6810
6811
6812
6813
6814
6815
6816
6817
6818
6819
6820
6821
6822
6823
6824
6825
6826
6827
6828
6829
6830
6831
6832
6833
6834
6835
6836
6837
6838
6839
6840
6841
6842
6843
6844
6845
6846
6847
6848
6849
6850
6851
6852
6853
6854
6855
6856
6857
6858
6859
6860
6861
6862
6863
6864
6865
6866
6867
6868
6869
6870
6871
6872
6873
6874
6875
6876
6877
6878
6879
6880
6881
6882
6883
6884
6885
6886
6887
6888
6889
6890
6891
6892
6893
6894
6895
6896
6897
6898
6899
6900
6901
6902
6903
6904
6905
6906
6907
6908
6909
6910
6911
6912
6913
6914
6915
6916
6917
6918
6919
6920
6921
6922
6923
6924
6925
6926
6927
6928
6929
6930
6931
6932
6933
6934
6935
6936
6937
6938
6939
6940
6941
6942
6943
6944
6945
6946
6947
6948
6949
6950
6951
6952
6953
6954
6955
6956
6957
6958
6959
6960
6961
6962
6963
6964
6965
6966
6967
6968
6969
6970
6971
6972
6973
6974
6975
6976
6977
6978
6979
6980
6981
6982
6983
6984
6985
6986
6987
6988
6989
6990
6991
6992
6993
6994
6995
6996
6997
6998
6999
7000
7001
7002
7003
7004
7005
7006
7007
7008
7009
7010
7011
7012
7013
7014
7015
7016
7017
7018
7019
7020
7021
7022
7023
7024
7025
7026
7027
7028
7029
7030
7031
7032
7033
7034
7035
7036
7037
7038
7039
7040
7041
7042
7043
7044
7045
7046
7047
7048
7049
7050
7051
7052
7053
7054
7055
7056
7057
7058
7059
7060
7061
7062
7063
7064
7065
7066
7067
7068
7069
7070
7071
7072
7073
7074
7075
7076
7077
7078
7079
7080
7081
7082
7083
7084
7085
7086
7087
7088
7089
7090
7091
7092
7093
7094
7095
7096
7097
7098
7099
7100
7101
7102
7103
7104
7105
7106
7107
7108
7109
7110
7111
7112
7113
7114
7115
7116
7117
7118
7119
7120
7121
7122
7123
7124
7125
7126
7127
7128
7129
7130
7131
7132
7133
7134
7135
7136
7137
7138
7139
7140
7141
7142
7143
7144
7145
7146
7147
7148
7149
7150
7151
7152
7153
7154
7155
7156
7157
7158
7159
7160
7161
7162
7163
7164
7165
7166
7167
7168
7169
7170
7171
7172
7173
7174
7175
7176
7177
7178
7179
7180
7181
7182
7183
7184
7185
7186
7187
7188
7189
7190
7191
7192
7193
7194
7195
7196
7197
7198
7199
7200
7201
7202
7203
7204
7205
7206
7207
7208
7209
7210
7211
7212
7213
7214
7215
7216
7217
7218
7219
7220
7221
7222
7223
7224
7225
7226
7227
7228
7229
7230
7231
7232
7233
7234
7235
7236
7237
7238
7239
7240
7241
7242
7243
7244
7245
7246
7247
7248
7249
7250
7251
7252
7253
7254
7255
7256
7257
7258
7259
7260
7261
7262
7263
7264
7265
7266
7267
7268
7269
7270
7271
7272
7273
7274
7275
7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
7671
7672
7673
7674
7675
7676
7677
7678
7679
7680
7681
7682
7683
7684
7685
7686
7687
7688
7689
7690
7691
7692
7693
7694
7695
7696
7697
7698
7699
7700
7701
7702
7703
7704
7705
7706
7707
7708
7709
7710
7711
7712
7713
7714
7715
7716
7717
7718
7719
7720
7721
7722
7723
7724
7725
7726
7727
7728
7729
7730
7731
7732
7733
7734
7735
7736
7737
7738
7739
7740
7741
7742
7743
7744
7745
7746
7747
7748
7749
7750
7751
7752
7753
7754
7755
7756
7757
7758
7759
7760
7761
7762
7763
7764
7765
7766
7767
7768
7769
7770
7771
7772
7773
7774
7775
7776
7777
7778
7779
7780
7781
7782
7783
7784
7785
7786
7787
7788
7789
7790
7791
7792
7793
7794
7795
7796
7797
7798
7799
7800
7801
7802
7803
7804
7805
7806
7807
7808
7809
7810
7811
7812
7813
7814
7815
7816
7817
7818
7819
7820
7821
7822
7823
7824
7825
7826
7827
7828
7829
7830
7831
7832
7833
7834
7835
7836
7837
7838
7839
7840
7841
7842
7843
7844
7845
7846
7847
7848
7849
7850
7851
7852
7853
7854
7855
7856
7857
7858
7859
7860
7861
7862
7863
7864
7865
7866
7867
7868
7869
7870
7871
7872
7873
7874
7875
7876
7877
7878
7879
7880
7881
7882
7883
7884
7885
7886
7887
7888
7889
7890
7891
7892
7893
7894
7895
7896
7897
7898
7899
7900
7901
7902
7903
7904
7905
7906
7907
7908
7909
7910
7911
7912
7913
7914
7915
7916
7917
7918
7919
7920
7921
7922
7923
7924
7925
7926
7927
7928
7929
7930
7931
7932
7933
7934
7935
7936
7937
7938
7939
7940
7941
7942
7943
7944
7945
7946
7947
7948
7949
7950
7951
7952
7953
7954
7955
7956
7957
7958
7959
7960
7961
7962
7963
7964
7965
7966
7967
7968
7969
7970
7971
7972
7973
7974
7975
7976
7977
7978
7979
7980
7981
7982
7983
7984
7985
7986
7987
7988
7989
7990
7991
7992
7993
7994
7995
7996
7997
7998
7999
8000
8001
8002
8003
8004
8005
8006
8007
8008
8009
8010
8011
8012
8013
8014
8015
8016
8017
8018
8019
8020
8021
8022
8023
8024
8025
8026
8027
8028
8029
8030
8031
8032
8033
8034
8035
8036
8037
8038
8039
8040
8041
8042
8043
8044
8045
8046
8047
8048
8049
8050
8051
8052
8053
8054
8055
8056
8057
8058
8059
8060
8061
8062
8063
8064
8065
8066
8067
8068
8069
8070
8071
8072
8073
8074
8075
8076
8077
8078
8079
8080
 
T514C 000:048 SEGGER J-Link V6.30d Log File (0000ms, 0029ms total)
T514C 000:048 DLL Compiled: Feb 16 2018 13:30:32 (0000ms, 0029ms total)
T514C 000:048 Logging started @ 2024-08-24 16:07 (0000ms, 0029ms total)
T514C 000:048 JLINK_SetWarnOutHandler(...) (0000ms, 0029ms total)
T514C 000:048 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 (0014ms, 0043ms total)
T514C 000:048 WEBSRV Webserver running on local port 19080 (0014ms, 0043ms total)
T514C 000:048   returns O.K. (0014ms, 0043ms total)
T514C 000:062 JLINK_GetEmuCaps()  returns 0x88EA5833 (0000ms, 0043ms total)
T514C 000:062 JLINK_TIF_GetAvailable(...) (0000ms, 0043ms total)
T514C 000:062 JLINK_SetErrorOutHandler(...) (0000ms, 0043ms total)
T514C 000:062 JLINK_ExecCommand("ProjectFile = "E:\GIT\ChinaUWBProject\keil\JLinkSettings.ini"", ...). D:\Keil_v5\ARM\Segger\JLinkDevices.xml evaluated successfully.  returns 0x00 (0090ms, 0133ms total)
T514C 000:152 JLINK_ExecCommand("Device = MK8000", ...). Device "MK8000" selected.  returns 0x00 (0004ms, 0137ms total)
T514C 000:156 JLINK_ExecCommand("DisableConnectionTimeout", ...).   returns 0x01 (0000ms, 0137ms total)
T514C 000:156 JLINK_GetHardwareVersion()  returns 0x11170 (0000ms, 0137ms total)
T514C 000:156 JLINK_GetDLLVersion()  returns 63004 (0000ms, 0137ms total)
T514C 000:156 JLINK_GetFirmwareString(...) (0000ms, 0137ms total)
T514C 000:156 JLINK_GetDLLVersion()  returns 63004 (0000ms, 0137ms total)
T514C 000:156 JLINK_GetCompileDateTime() (0000ms, 0137ms total)
T514C 000:156 JLINK_GetFirmwareString(...) (0000ms, 0137ms total)
T514C 000:156 JLINK_GetHardwareVersion()  returns 0x11170 (0000ms, 0137ms total)
T514C 000:156 JLINK_TIF_Select(JLINKARM_TIF_SWD)  returns 0x00 (0001ms, 0138ms total)
T514C 000:157 JLINK_SetSpeed(5000) (0001ms, 0139ms total)
T514C 000:158 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> >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 (0134ms, 0273ms total)
T514C 000:292 JLINK_GetDLLVersion()  returns 63004 (0000ms, 0273ms total)
T514C 000:292 JLINK_CORE_GetFound()  returns 0x60000FF (0000ms, 0273ms total)
T514C 000:292 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xE00FF000  returns 0x00 (0000ms, 0273ms total)
T514C 000:292 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xE00FF000  returns 0x00 (0000ms, 0273ms total)
T514C 000:292 JLINK_GetDebugInfo(0x101 = JLINKARM_DEBUG_INFO_ETM_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0273ms total)
T514C 000:292 JLINK_ReadMemEx(0xE0041FF0, 0x0010 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(16 bytes @ 0xE0041FF0) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x10 (0001ms, 0274ms total)
T514C 000:293 JLINK_GetDebugInfo(0x102 = JLINKARM_DEBUG_INFO_MTB_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0274ms total)
T514C 000:293 JLINK_GetDebugInfo(0x103 = JLINKARM_DEBUG_INFO_TPIU_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0274ms total)
T514C 000:293 JLINK_ReadMemEx(0xE0040FF0, 0x0010 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(16 bytes @ 0xE0040FF0) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x10 (0001ms, 0275ms total)
T514C 000:294 JLINK_GetDebugInfo(0x104 = JLINKARM_DEBUG_INFO_ITM_ADDR_INDEX) -- Value=0xE0000000  returns 0x00 (0000ms, 0275ms total)
T514C 000:294 JLINK_GetDebugInfo(0x105 = JLINKARM_DEBUG_INFO_DWT_ADDR_INDEX) -- Value=0xE0001000  returns 0x00 (0000ms, 0275ms total)
T514C 000:294 JLINK_GetDebugInfo(0x106 = JLINKARM_DEBUG_INFO_FPB_ADDR_INDEX) -- Value=0xE0002000  returns 0x00 (0000ms, 0275ms total)
T514C 000:294 JLINK_GetDebugInfo(0x107 = JLINKARM_DEBUG_INFO_NVIC_ADDR_INDEX) -- Value=0xE000E000  returns 0x00 (0000ms, 0275ms total)
T514C 000:294 JLINK_GetDebugInfo(0x10C = JLINKARM_DEBUG_INFO_DBG_ADDR_INDEX) -- Value=0xE000EDF0  returns 0x00 (0000ms, 0275ms total)
T514C 000:294 JLINK_GetDebugInfo(0x01 = Unknown) -- Value=0x00000000  returns 0x00 (0000ms, 0275ms total)
T514C 000:294 JLINK_ReadMemU32(0xE000ED00, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED00) - Data: 00 C2 0C 41  returns 0x01 (0001ms, 0276ms total)
T514C 000:295 JLINK_GetDebugInfo(0x10F = JLINKARM_DEBUG_INFO_HAS_CORTEX_M_SECURITY_EXT_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0276ms total)
T514C 000:295 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 0276ms total)
T514C 000:295 JLINK_Reset() -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDFC)Reset: Halt core after reset via DEMCR.VC_CORERESET. >0x35 TIF>Reset: Reset device via AIRCR.SYSRESETREQ. -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000ED0C) >0x0D TIF> >0x28 TIF> -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDFC)
 -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0069ms, 0345ms total)
T514C 000:364 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0345ms total)
T514C 000:364 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0345ms total)
T514C 000:364 JLINK_Halt()  returns 0x00 (0000ms, 0345ms total)
T514C 000:364 JLINK_ReadMemU32(0xE000EDF0, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) - Data: 03 00 03 00  returns 0x01 (0001ms, 0346ms total)
T514C 000:365 JLINK_WriteU32(0xE000EDF0, 0xA05F0003) -- CPU_WriteMem(4 bytes @ 0xE000EDF0)  returns 0x00 (0001ms, 0347ms total)
T514C 000:366 JLINK_WriteU32(0xE000EDFC, 0x01000000) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)  returns 0x00 (0000ms, 0347ms total)
T514C 000:366 JLINK_GetHWStatus(...)  returns 0x00 (0001ms, 0348ms total)
T514C 000:367 JLINK_GetNumBPUnits(Type = 0xFFFFFF00)  returns 0x04 (0000ms, 0348ms total)
T514C 000:367 JLINK_GetNumBPUnits(Type = 0xF0)  returns 0x2000 (0000ms, 0348ms total)
T514C 000:367 JLINK_GetNumWPUnits()  returns 0x02 (0000ms, 0348ms total)
T514C 000:367 JLINK_GetSpeed()  returns 0xFA0 (0000ms, 0348ms total)
T514C 000:367 JLINK_ReadMemU32(0xE000E004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000E004) - Data: 00 00 00 00  returns 0x01 (0001ms, 0349ms total)
T514C 000:368 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0349ms total)
T514C 000:368 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0349ms total)
T514C 000:451 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 0349ms total)
T514C 000:451 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, 0419ms total)
T514C 000:521 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0419ms total)
T514C 000:521 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0419ms total)
T514C 000:521 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, 0420ms total)
T514C 000:522 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0001ms, 0421ms total)
T514C 000:523 JLINK_ReadMemEx(0x0300373A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373A) - Data: 4E F8  returns 0x02 (0001ms, 0422ms total)
T514C 000:524 JLINK_ReadMemEx(0x0300373C, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x0300373C) - Data: FC F7 C0 FC 80 B5 0D 49 08 68 00 28 00 D4 80 BD ...  returns 0x3C (0001ms, 0423ms total)
T514C 000:525 JLINK_ReadMemEx(0x0300373C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373C) - Data: FC F7  returns 0x02 (0001ms, 0424ms total)
T514C 000:526 JLINK_ReadMemEx(0x0300373E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373E) - Data: C0 FC  returns 0x02 (0001ms, 0425ms total)
T514C 000:527 JLINK_ReadMemEx(0x03003740, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003740) - Data: 80 B5 0D 49 08 68 00 28 00 D4 80 BD 0B 48 02 68 ...  returns 0x3C (0001ms, 0426ms total)
T514C 000:528 JLINK_ReadMemEx(0x03003740, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003740) - Data: 80 B5  returns 0x02 (0000ms, 0426ms total)
T514C 000:528 JLINK_ReadMemEx(0x03003742, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003742) - Data: 0D 49  returns 0x02 (0001ms, 0427ms total)
T514C 000:529 JLINK_ReadMemEx(0x03003742, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003742) - Data: 0D 49  returns 0x02 (0001ms, 0428ms total)
T514C 000:530 JLINK_ReadMemEx(0x03003744, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003744) - Data: 08 68 00 28 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 ...  returns 0x3C (0001ms, 0429ms total)
T514C 000:531 JLINK_ReadMemEx(0x03003744, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003744) - Data: 08 68  returns 0x02 (0001ms, 0430ms total)
T514C 000:532 JLINK_ReadMemEx(0x03003744, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003744) - Data: 08 68 00 28 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 ...  returns 0x3C (0001ms, 0431ms total)
T514C 000:533 JLINK_ReadMemEx(0x03003744, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003744) - Data: 08 68  returns 0x02 (0001ms, 0432ms total)
T514C 000:534 JLINK_ReadMemEx(0x03003746, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003746) - Data: 00 28  returns 0x02 (0000ms, 0432ms total)
T514C 001:805 JLINK_ReadMemEx(0x03003746, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003746) - Data: 00 28  returns 0x02 (0001ms, 0433ms total)
T514C 001:806 JLINK_ReadMemEx(0x03003748, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003748) - Data: 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 04 22 0A 60 ...  returns 0x3C (0001ms, 0434ms total)
T514C 001:807 JLINK_ReadMemEx(0x03003748, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003748) - Data: 00 D4  returns 0x02 (0001ms, 0435ms total)
T514C 001:808 JLINK_ReadMemEx(0x03003748, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003748) - Data: 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 04 22 0A 60 ...  returns 0x3C (0001ms, 0436ms total)
T514C 001:809 JLINK_ReadMemEx(0x03003748, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003748) - Data: 00 D4  returns 0x02 (0000ms, 0436ms total)
T514C 001:809 JLINK_ReadMemEx(0x0300374A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300374A) - Data: 80 BD  returns 0x02 (0001ms, 0437ms total)
T514C 002:227 JLINK_ReadReg(R0)  returns 0x00000002 (0001ms, 0438ms total)
T514C 002:228 JLINK_ReadReg(R1)  returns 0x0000F47C (0000ms, 0438ms total)
T514C 002:228 JLINK_ReadReg(R2)  returns 0xFFFFFFFF (0000ms, 0438ms total)
T514C 002:228 JLINK_ReadReg(R3)  returns 0x00000400 (0000ms, 0438ms total)
T514C 002:228 JLINK_ReadReg(R4)  returns 0x00010B64 (0000ms, 0438ms total)
T514C 002:228 JLINK_ReadReg(R5)  returns 0x00000001 (0000ms, 0438ms total)
T514C 002:228 JLINK_ReadReg(R6)  returns 0x00010B64 (0000ms, 0438ms total)
T514C 002:228 JLINK_ReadReg(R7)  returns 0x02000000 (0000ms, 0438ms total)
T514C 002:228 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 0438ms total)
T514C 002:228 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 0438ms total)
T514C 002:228 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 0438ms total)
T514C 002:228 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 0438ms total)
T514C 002:228 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 0438ms total)
T514C 002:228 JLINK_ReadReg(R13 (SP))  returns 0x0202F800 (0000ms, 0438ms total)
T514C 002:228 JLINK_ReadReg(R14)  returns 0x00006D1B (0000ms, 0438ms total)
T514C 002:228 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0438ms total)
T514C 002:228 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0438ms total)
T514C 002:228 JLINK_ReadReg(MSP)  returns 0x0202F800 (0000ms, 0438ms total)
T514C 002:228 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 0438ms total)
T514C 002:228 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0438ms total)
T514C 002:335 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 40 41  returns 0x04 (0001ms, 0439ms total)
T514C 002:337 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 40 41  returns 0x04 (0001ms, 0440ms total)
T514C 002:338 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 40 41  returns 0x04 (0001ms, 0441ms total)
T514C 002:392 JLINK_ReadMemEx(0x00000000, 0x0654 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1664 bytes @ 0x00000000) -- Updating C cache (1664 bytes @ 0x00000000) -- Read from C cache (1620 bytes @ 0x00000000) - Data: 00 F8 02 02 39 37 00 03 E5 30 00 03 75 2B 00 03 ...  returns 0x654 (0017ms, 0458ms total)
T7764 002:433 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0001ms, 0459ms total)
T7764 002:434 JLINK_SetBPEx(Addr = 0x0000B654, Type = 0xFFFFFFF2)  returns 0x00000001 (0000ms, 0459ms total)
T7764 002:434 JLINK_SetBPEx(Addr = 0x00006C30, Type = 0xFFFFFFF2)  returns 0x00000002 (0000ms, 0459ms total)
T7764 002:434 JLINK_SetBPEx(Addr = 0x00006C60, Type = 0xFFFFFFF2)  returns 0x00000003 (0000ms, 0459ms total)
T7764 002:434 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU_WriteMem(4 bytes @ 0xE0002014) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0006ms, 0465ms total)
T7764 002:541 JLINK_IsHalted()  returns TRUE (0003ms, 0468ms total)
T7764 002:544 JLINK_Halt()  returns 0x00 (0000ms, 0465ms total)
T7764 002:544 JLINK_IsHalted()  returns TRUE (0000ms, 0465ms total)
T7764 002:544 JLINK_IsHalted()  returns TRUE (0000ms, 0465ms total)
T7764 002:544 JLINK_IsHalted()  returns TRUE (0000ms, 0465ms total)
T7764 002:544 JLINK_ReadReg(R15 (PC))  returns 0x0000B654 (0000ms, 0465ms total)
T7764 002:544 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 0465ms total)
T7764 002:544 JLINK_ClrBPEx(BPHandle = 0x00000001)  returns 0x00 (0000ms, 0465ms total)
T7764 002:544 JLINK_ClrBPEx(BPHandle = 0x00000002)  returns 0x00 (0000ms, 0465ms total)
T7764 002:544 JLINK_ClrBPEx(BPHandle = 0x00000003)  returns 0x00 (0000ms, 0465ms total)
T7764 002:544 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0001ms, 0466ms total)
T7764 002:545 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 0467ms total)
T7764 002:546 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0000ms, 0467ms total)
T7764 002:547 JLINK_ReadReg(R0)  returns 0x0000B655 (0000ms, 0468ms total)
T7764 002:547 JLINK_ReadReg(R1)  returns 0x0201C4CC (0000ms, 0468ms total)
T7764 002:547 JLINK_ReadReg(R2)  returns 0x00000000 (0000ms, 0468ms total)
T7764 002:547 JLINK_ReadReg(R3)  returns 0x0000E491 (0000ms, 0468ms total)
T7764 002:547 JLINK_ReadReg(R4)  returns 0x00010B64 (0000ms, 0468ms total)
T7764 002:547 JLINK_ReadReg(R5)  returns 0x00000001 (0000ms, 0468ms total)
T7764 002:547 JLINK_ReadReg(R6)  returns 0x00010B64 (0000ms, 0468ms total)
T7764 002:547 JLINK_ReadReg(R7)  returns 0x02000000 (0000ms, 0468ms total)
T7764 002:547 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 0468ms total)
T7764 002:547 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 0468ms total)
T7764 002:547 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 0468ms total)
T7764 002:547 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 0468ms total)
T7764 002:547 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 0468ms total)
T7764 002:547 JLINK_ReadReg(R13 (SP))  returns 0x0202F800 (0000ms, 0468ms total)
T7764 002:547 JLINK_ReadReg(R14)  returns 0x0000126D (0000ms, 0468ms total)
T7764 002:547 JLINK_ReadReg(R15 (PC))  returns 0x0000B654 (0000ms, 0468ms total)
T7764 002:547 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 0468ms total)
T7764 002:547 JLINK_ReadReg(MSP)  returns 0x0202F800 (0000ms, 0468ms total)
T7764 002:547 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 0468ms total)
T7764 002:547 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0468ms total)
T514C 002:548 JLINK_ReadMemEx(0x0202F830, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F830) - Data: 03 00 00 00  returns 0x04 (0000ms, 0468ms total)
T514C 002:549 JLINK_ReadMemEx(0x0202F82C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F82C) - Data: 02 00 00 00  returns 0x04 (0000ms, 0469ms total)
T514C 002:550 JLINK_ReadMemEx(0x0202F830, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F830) - Data: 03 00 00 00  returns 0x04 (0001ms, 0470ms total)
T514C 002:551 JLINK_ReadMemEx(0x0202F82C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F82C) - Data: 02 00 00 00  returns 0x04 (0000ms, 0470ms total)
T514C 002:551 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 00 00  returns 0x04 (0001ms, 0471ms total)
T514C 002:552 JLINK_ReadMemEx(0x0000B654, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x0000B640) -- Updating C cache (128 bytes @ 0x0000B640) -- Read from C cache (60 bytes @ 0x0000B654) - Data: 80 B5 8E B0 00 20 0D 90 FD F7 BA F9 FD F7 14 FA ...  returns 0x3C (0002ms, 0473ms total)
T514C 002:554 JLINK_ReadMemEx(0x0000B654, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000B654) - Data: 80 B5  returns 0x02 (0000ms, 0473ms total)
T514C 002:554 JLINK_ReadMemEx(0x0000B656, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000B656) - Data: 8E B0  returns 0x02 (0000ms, 0473ms total)
T514C 002:554 JLINK_ReadMemEx(0x0000B656, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000B656) - Data: 8E B0  returns 0x02 (0000ms, 0473ms total)
T514C 002:554 JLINK_ReadMemEx(0x0000B658, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000B658) - Data: 00 20 0D 90 FD F7 BA F9 FD F7 14 FA 01 20 FD F7 ...  returns 0x3C (0000ms, 0473ms total)
T514C 002:554 JLINK_ReadMemEx(0x0000B658, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000B658) - Data: 00 20  returns 0x02 (0000ms, 0473ms total)
T514C 002:554 JLINK_ReadMemEx(0x0000B658, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000B658) - Data: 00 20 0D 90 FD F7 BA F9 FD F7 14 FA 01 20 FD F7 ...  returns 0x3C (0000ms, 0473ms total)
T514C 002:554 JLINK_ReadMemEx(0x0000B658, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000B658) - Data: 00 20  returns 0x02 (0000ms, 0473ms total)
T514C 002:554 JLINK_ReadMemEx(0x0000B65A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000B65A) - Data: 0D 90  returns 0x02 (0000ms, 0473ms total)
T514C 002:554 JLINK_ReadMemEx(0x0000B65A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000B65A) - Data: 0D 90  returns 0x02 (0000ms, 0473ms total)
T514C 002:554 JLINK_ReadMemEx(0x0000B65C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000B65C) - Data: FD F7 BA F9 FD F7 14 FA 01 20 FD F7 EF F9 00 F0 ...  returns 0x3C (0000ms, 0473ms total)
T514C 002:554 JLINK_ReadMemEx(0x0000B65C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000B65C) - Data: FD F7  returns 0x02 (0000ms, 0473ms total)
T7764 011:030 JLINK_ReadMemEx(0x0000B654, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000B654) - Data: 80 B5  returns 0x02 (0000ms, 0473ms total)
T7764 011:030 JLINK_SetBPEx(Addr = 0x00006C30, Type = 0xFFFFFFF2)  returns 0x00000004 (0000ms, 0473ms total)
T7764 011:030 JLINK_SetBPEx(Addr = 0x00006C60, Type = 0xFFFFFFF2)  returns 0x00000005 (0000ms, 0473ms total)
T7764 011:030 JLINK_SetBPEx(Addr = 0x0000B6F2, Type = 0xFFFFFFF2)  returns 0x00000006 (0000ms, 0473ms total)
T7764 011:030 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- 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) (0005ms, 0478ms total)
T7764 011:136 JLINK_IsHalted()  returns TRUE (0003ms, 0481ms total)
T7764 011:139 JLINK_Halt()  returns 0x00 (0000ms, 0478ms total)
T7764 011:139 JLINK_IsHalted()  returns TRUE (0000ms, 0478ms total)
T7764 011:139 JLINK_IsHalted()  returns TRUE (0000ms, 0478ms total)
T7764 011:139 JLINK_IsHalted()  returns TRUE (0000ms, 0478ms total)
T7764 011:139 JLINK_ReadReg(R15 (PC))  returns 0x0000B6F2 (0000ms, 0478ms total)
T7764 011:139 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 0478ms total)
T7764 011:139 JLINK_ClrBPEx(BPHandle = 0x00000004)  returns 0x00 (0000ms, 0478ms total)
T7764 011:139 JLINK_ClrBPEx(BPHandle = 0x00000005)  returns 0x00 (0000ms, 0478ms total)
T7764 011:139 JLINK_ClrBPEx(BPHandle = 0x00000006)  returns 0x00 (0000ms, 0478ms total)
T7764 011:139 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0001ms, 0479ms total)
T7764 011:140 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 0480ms total)
T7764 011:141 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0000ms, 0480ms total)
T7764 011:141 JLINK_ReadReg(R0)  returns 0x00000001 (0000ms, 0480ms total)
T7764 011:141 JLINK_ReadReg(R1)  returns 0x00000001 (0000ms, 0480ms total)
T7764 011:141 JLINK_ReadReg(R2)  returns 0x0000856D (0000ms, 0480ms total)
T7764 011:141 JLINK_ReadReg(R3)  returns 0x00000001 (0001ms, 0481ms total)
T7764 011:142 JLINK_ReadReg(R4)  returns 0x00010B64 (0000ms, 0481ms total)
T7764 011:142 JLINK_ReadReg(R5)  returns 0x00000001 (0000ms, 0481ms total)
T7764 011:142 JLINK_ReadReg(R6)  returns 0x00010B64 (0000ms, 0481ms total)
T7764 011:142 JLINK_ReadReg(R7)  returns 0x02000000 (0000ms, 0481ms total)
T7764 011:142 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 0481ms total)
T7764 011:142 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 0481ms total)
T7764 011:142 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 0481ms total)
T7764 011:142 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 0481ms total)
T7764 011:142 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 0481ms total)
T7764 011:142 JLINK_ReadReg(R13 (SP))  returns 0x0202F7C0 (0000ms, 0481ms total)
T7764 011:142 JLINK_ReadReg(R14)  returns 0x0000876D (0000ms, 0481ms total)
T7764 011:142 JLINK_ReadReg(R15 (PC))  returns 0x0000B6F2 (0000ms, 0481ms total)
T7764 011:142 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 0481ms total)
T7764 011:142 JLINK_ReadReg(MSP)  returns 0x0202F7C0 (0000ms, 0481ms total)
T7764 011:142 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 0481ms total)
T7764 011:142 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0481ms total)
T514C 011:142 JLINK_ReadMemEx(0x0202F7FC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7FC) - Data: 6D 12 00 00  returns 0x04 (0001ms, 0482ms total)
T514C 011:143 JLINK_ReadMemEx(0x0202F7F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7F0) - Data: 01 00 00 00  returns 0x04 (0001ms, 0483ms total)
T514C 011:144 JLINK_ReadMemEx(0x0202F7EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7EC) - Data: 00 00 00 00  returns 0x04 (0000ms, 0483ms total)
T514C 011:144 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 00 00  returns 0x04 (0001ms, 0484ms total)
T514C 011:145 JLINK_ReadMemEx(0x0000B6F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0000B6C0) -- Updating C cache (64 bytes @ 0x0000B6C0) -- Read from C cache (2 bytes @ 0x0000B6F2) - Data: 02 90  returns 0x02 (0002ms, 0486ms total)
T514C 011:147 JLINK_ReadMemEx(0x0000B6F4, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0000B700) -- Updating C cache (64 bytes @ 0x0000B700) -- Read from C cache (60 bytes @ 0x0000B6F4) - Data: FA F7 6A FB 00 F0 E0 F8 2B 4A 03 98 03 99 00 F0 ...  returns 0x3C (0001ms, 0487ms total)
T514C 011:148 JLINK_ReadMemEx(0x0000B6F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000B6F4) - Data: FA F7  returns 0x02 (0000ms, 0487ms total)
T514C 011:148 JLINK_ReadMemEx(0x0000B6F4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000B6F4) - Data: FA F7 6A FB 00 F0 E0 F8 2B 4A 03 98 03 99 00 F0 ...  returns 0x3C (0000ms, 0487ms total)
T514C 011:148 JLINK_ReadMemEx(0x0000B6F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000B6F4) - Data: FA F7  returns 0x02 (0000ms, 0487ms total)
T514C 011:148 JLINK_ReadMemEx(0x0000B6F6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000B6F6) - Data: 6A FB  returns 0x02 (0000ms, 0487ms total)
T7764 014:221 JLINK_ReadMemEx(0x0000B6F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000B6F2) - Data: 02 90  returns 0x02 (0000ms, 0487ms total)
T7764 014:221 JLINK_Step() -- Read from C cache (2 bytes @ 0x0000B6F2) -- CPU_ReadMem(4 bytes @ 0xE000ED18) -- CPU_WriteMem(4 bytes @ 0xE000ED18) -- CPU_ReadMem(4 bytes @ 0xE000ED18) -- CPU_WriteMem(4 bytes @ 0xE000ED18) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Not simulated -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0002010)  returns 0x00 (0010ms, 0497ms total)
T7764 014:231 JLINK_ReadReg(R15 (PC))  returns 0x0000B6F4 (0001ms, 0498ms total)
T7764 014:232 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 0498ms total)
T7764 014:232 JLINK_Step() -- CPU_ReadMem(64 bytes @ 0x0000B6C0) -- Updating C cache (64 bytes @ 0x0000B6C0) -- Read from C cache (2 bytes @ 0x0000B6F4) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Read from C cache (2 bytes @ 0x0000B6F6) -- Simulated  returns 0x00 (0001ms, 0499ms total)
T7764 014:233 JLINK_ReadReg(R15 (PC))  returns 0x00005DCC (0001ms, 0500ms total)
T7764 014:234 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 0500ms total)
T7764 014:234 JLINK_ReadReg(R0)  returns 0x00000001 (0000ms, 0500ms total)
T7764 014:234 JLINK_ReadReg(R1)  returns 0x00000001 (0000ms, 0500ms total)
T7764 014:234 JLINK_ReadReg(R2)  returns 0x0000856D (0000ms, 0500ms total)
T7764 014:234 JLINK_ReadReg(R3)  returns 0x00000001 (0000ms, 0500ms total)
T7764 014:234 JLINK_ReadReg(R4)  returns 0x00010B64 (0000ms, 0500ms total)
T7764 014:234 JLINK_ReadReg(R5)  returns 0x00000001 (0000ms, 0500ms total)
T7764 014:234 JLINK_ReadReg(R6)  returns 0x00010B64 (0000ms, 0500ms total)
T7764 014:234 JLINK_ReadReg(R7)  returns 0x02000000 (0000ms, 0500ms total)
T7764 014:234 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 0500ms total)
T7764 014:234 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 0500ms total)
T7764 014:234 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 0500ms total)
T7764 014:234 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 0500ms total)
T7764 014:234 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 0500ms total)
T7764 014:234 JLINK_ReadReg(R13 (SP))  returns 0x0202F7C0 (0000ms, 0500ms total)
T7764 014:234 JLINK_ReadReg(R14)  returns 0x0000B6F9 (0000ms, 0500ms total)
T7764 014:234 JLINK_ReadReg(R15 (PC))  returns 0x00005DCC (0000ms, 0500ms total)
T7764 014:234 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 0500ms total)
T7764 014:234 JLINK_ReadReg(MSP)  returns 0x0202F7C0 (0000ms, 0500ms total)
T7764 014:234 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 0500ms total)
T7764 014:234 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0500ms total)
T514C 014:235 JLINK_ReadMemEx(0x0202F7FC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7FC) - Data: 6D 12 00 00  returns 0x04 (0000ms, 0500ms total)
T514C 014:238 JLINK_ReadMemEx(0x0202F7F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7F0) - Data: 01 00 00 00  returns 0x04 (0001ms, 0501ms total)
T514C 014:239 JLINK_ReadMemEx(0x0202F7EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7EC) - Data: 00 00 00 00  returns 0x04 (0000ms, 0501ms total)
T514C 014:239 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 00 00  returns 0x04 (0001ms, 0502ms total)
T514C 014:240 JLINK_ReadMemEx(0x00005DCC, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x00005DC0) -- Updating C cache (128 bytes @ 0x00005DC0) -- Read from C cache (60 bytes @ 0x00005DCC) - Data: 80 B5 82 B0 15 48 16 49 01 60 05 F0 1F FD 15 48 ...  returns 0x3C (0002ms, 0504ms total)
T514C 014:242 JLINK_ReadMemEx(0x00005DCC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00005DCC) - Data: 80 B5  returns 0x02 (0000ms, 0504ms total)
T514C 014:242 JLINK_ReadMemEx(0x00005DCE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00005DCE) - Data: 82 B0  returns 0x02 (0000ms, 0504ms total)
T514C 014:242 JLINK_ReadMemEx(0x00005DCE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00005DCE) - Data: 82 B0  returns 0x02 (0001ms, 0505ms total)
T514C 014:243 JLINK_ReadMemEx(0x00005DD0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00005DD0) - Data: 15 48 16 49 01 60 05 F0 1F FD 15 48 81 88 15 4A ...  returns 0x3C (0000ms, 0505ms total)
T514C 014:243 JLINK_ReadMemEx(0x00005DD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00005DD0) - Data: 15 48  returns 0x02 (0000ms, 0505ms total)
T514C 014:243 JLINK_ReadMemEx(0x00005DD0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00005DD0) - Data: 15 48 16 49 01 60 05 F0 1F FD 15 48 81 88 15 4A ...  returns 0x3C (0000ms, 0505ms total)
T514C 014:243 JLINK_ReadMemEx(0x00005DD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00005DD0) - Data: 15 48  returns 0x02 (0000ms, 0505ms total)
T514C 014:243 JLINK_ReadMemEx(0x00005DD2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00005DD2) - Data: 16 49  returns 0x02 (0000ms, 0505ms total)
T514C 017:130 JLINK_ReadMemEx(0x02019688, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019688) - Data: 00 00 00 00  returns 0x04 (0001ms, 0506ms total)
T7764 018:534 JLINK_ReadMemEx(0x00005DCC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00005DCC) - Data: 80 B5  returns 0x02 (0000ms, 0506ms total)
T7764 018:534 JLINK_SetBPEx(Addr = 0x00006C30, Type = 0xFFFFFFF2)  returns 0x00000007 (0000ms, 0506ms total)
T7764 018:534 JLINK_SetBPEx(Addr = 0x00006C60, Type = 0xFFFFFFF2)  returns 0x00000008 (0000ms, 0506ms total)
T7764 018:534 JLINK_SetBPEx(Addr = 0x00005DE8, Type = 0xFFFFFFF2)  returns 0x00000009 (0000ms, 0506ms total)
T7764 018:534 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- 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 @ 0xE0001004) (0007ms, 0513ms total)
T7764 018:642 JLINK_IsHalted()  returns TRUE (0003ms, 0516ms total)
T7764 018:645 JLINK_Halt()  returns 0x00 (0000ms, 0513ms total)
T7764 018:645 JLINK_IsHalted()  returns TRUE (0000ms, 0513ms total)
T7764 018:645 JLINK_IsHalted()  returns TRUE (0000ms, 0513ms total)
T7764 018:645 JLINK_IsHalted()  returns TRUE (0000ms, 0513ms total)
T7764 018:645 JLINK_ReadReg(R15 (PC))  returns 0x00005DE8 (0000ms, 0513ms total)
T7764 018:645 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 0513ms total)
T7764 018:645 JLINK_ClrBPEx(BPHandle = 0x00000007)  returns 0x00 (0000ms, 0513ms total)
T7764 018:645 JLINK_ClrBPEx(BPHandle = 0x00000008)  returns 0x00 (0000ms, 0513ms total)
T7764 018:645 JLINK_ClrBPEx(BPHandle = 0x00000009)  returns 0x00 (0000ms, 0513ms total)
T7764 018:645 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0001ms, 0514ms total)
T7764 018:646 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 0515ms total)
T7764 018:647 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0000ms, 0515ms total)
T7764 018:647 JLINK_ReadReg(R0)  returns 0x02019694 (0000ms, 0515ms total)
T7764 018:647 JLINK_ReadReg(R1)  returns 0x00000000 (0000ms, 0515ms total)
T7764 018:647 JLINK_ReadReg(R2)  returns 0x02019688 (0000ms, 0515ms total)
T7764 018:647 JLINK_ReadReg(R3)  returns 0x02019AE6 (0000ms, 0515ms total)
T7764 018:647 JLINK_ReadReg(R4)  returns 0x00010B64 (0000ms, 0515ms total)
T7764 018:647 JLINK_ReadReg(R5)  returns 0x00000001 (0000ms, 0515ms total)
T7764 018:647 JLINK_ReadReg(R6)  returns 0x00010B64 (0000ms, 0515ms total)
T7764 018:648 JLINK_ReadReg(R7)  returns 0x02000000 (0000ms, 0516ms total)
T7764 018:648 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 0516ms total)
T7764 018:648 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 0516ms total)
T7764 018:648 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 0516ms total)
T7764 018:648 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 0516ms total)
T7764 018:648 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 0516ms total)
T7764 018:648 JLINK_ReadReg(R13 (SP))  returns 0x0202F7B0 (0000ms, 0516ms total)
T7764 018:648 JLINK_ReadReg(R14)  returns 0x0000BF3D (0000ms, 0516ms total)
T7764 018:648 JLINK_ReadReg(R15 (PC))  returns 0x00005DE8 (0000ms, 0516ms total)
T7764 018:648 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 0516ms total)
T7764 018:648 JLINK_ReadReg(MSP)  returns 0x0202F7B0 (0000ms, 0516ms total)
T7764 018:648 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 0516ms total)
T7764 018:648 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0516ms total)
T514C 018:648 JLINK_ReadMemEx(0x0202F7BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7BC) - Data: F9 B6 00 00  returns 0x04 (0000ms, 0516ms total)
T514C 018:648 JLINK_ReadMemEx(0x0202F7B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7B8) - Data: 00 00 00 02  returns 0x04 (0001ms, 0517ms total)
T514C 018:649 JLINK_ReadMemEx(0x0202F7BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7BC) - Data: F9 B6 00 00  returns 0x04 (0001ms, 0518ms total)
T514C 018:650 JLINK_ReadMemEx(0x0202F7FC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7FC) - Data: 6D 12 00 00  returns 0x04 (0000ms, 0518ms total)
T514C 018:650 JLINK_ReadMemEx(0x0202F7F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7F0) - Data: 01 00 00 00  returns 0x04 (0001ms, 0519ms total)
T514C 018:651 JLINK_ReadMemEx(0x0202F7EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7EC) - Data: 00 00 00 00  returns 0x04 (0001ms, 0520ms total)
T514C 018:652 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 00 00  returns 0x04 (0000ms, 0520ms total)
T514C 018:653 JLINK_ReadMemEx(0x00005DE8, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x00005DC0) -- Updating C cache (128 bytes @ 0x00005DC0) -- Read from C cache (60 bytes @ 0x00005DE8) - Data: C1 88 7D 23 DB 00 01 90 18 46 00 92 FA F7 6E F9 ...  returns 0x3C (0001ms, 0521ms total)
T514C 018:654 JLINK_ReadMemEx(0x00005DE8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00005DE8) - Data: C1 88  returns 0x02 (0000ms, 0521ms total)
T514C 018:655 JLINK_ReadMemEx(0x00005DEA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00005DEA) - Data: 7D 23  returns 0x02 (0000ms, 0522ms total)
T514C 018:655 JLINK_ReadMemEx(0x00005DEA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00005DEA) - Data: 7D 23  returns 0x02 (0000ms, 0522ms total)
T514C 018:655 JLINK_ReadMemEx(0x00005DEC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00005DEC) - Data: DB 00 01 90 18 46 00 92 FA F7 6E F9 10 49 08 80 ...  returns 0x3C (0000ms, 0522ms total)
T514C 018:655 JLINK_ReadMemEx(0x00005DEC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00005DEC) - Data: DB 00  returns 0x02 (0000ms, 0522ms total)
T514C 018:655 JLINK_ReadMemEx(0x00005DEC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00005DEC) - Data: DB 00 01 90 18 46 00 92 FA F7 6E F9 10 49 08 80 ...  returns 0x3C (0000ms, 0522ms total)
T514C 018:655 JLINK_ReadMemEx(0x00005DEC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00005DEC) - Data: DB 00  returns 0x02 (0000ms, 0522ms total)
T514C 018:655 JLINK_ReadMemEx(0x00005DEE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00005DEE) - Data: 01 90  returns 0x02 (0000ms, 0522ms total)
T514C 018:655 JLINK_ReadMemEx(0x00005DEE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00005DEE) - Data: 01 90  returns 0x02 (0000ms, 0522ms total)
T514C 018:655 JLINK_ReadMemEx(0x00005DF0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00005DF0) - Data: 18 46 00 92 FA F7 6E F9 10 49 08 80 01 98 81 89 ...  returns 0x3C (0000ms, 0522ms total)
T514C 018:655 JLINK_ReadMemEx(0x00005DF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00005DF0) - Data: 18 46  returns 0x02 (0000ms, 0522ms total)
T514C 019:550 JLINK_ReadMemEx(0x02019688, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019688) - Data: 34 12 00 00  returns 0x04 (0001ms, 0523ms total)
T514C 024:661 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 0523ms total)
T514C 024:661 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, 0593ms total)
T514C 024:731 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0593ms total)
T514C 024:731 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0593ms total)
T514C 024:731 JLINK_ReadMemEx(0x03003738, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003738) - Data: 00 F0 4E F8 FC F7 C0 FC 80 B5 0D 49 08 68 00 28 ...  returns 0x3C (0002ms, 0595ms total)
T514C 024:733 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0000ms, 0595ms total)
T514C 024:733 JLINK_ReadMemEx(0x0300373A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373A) - Data: 4E F8  returns 0x02 (0001ms, 0596ms total)
T514C 024:734 JLINK_ReadMemEx(0x0300373C, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x0300373C) - Data: FC F7 C0 FC 80 B5 0D 49 08 68 00 28 00 D4 80 BD ...  returns 0x3C (0001ms, 0597ms total)
T514C 024:735 JLINK_ReadMemEx(0x0300373C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373C) - Data: FC F7  returns 0x02 (0001ms, 0598ms total)
T514C 024:736 JLINK_ReadMemEx(0x0300373E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373E) - Data: C0 FC  returns 0x02 (0001ms, 0599ms total)
T514C 024:737 JLINK_ReadMemEx(0x03003740, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003740) - Data: 80 B5 0D 49 08 68 00 28 00 D4 80 BD 0B 48 02 68 ...  returns 0x3C (0001ms, 0600ms total)
T514C 024:738 JLINK_ReadMemEx(0x03003740, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003740) - Data: 80 B5  returns 0x02 (0000ms, 0600ms total)
T514C 024:738 JLINK_ReadMemEx(0x03003742, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003742) - Data: 0D 49  returns 0x02 (0001ms, 0601ms total)
T514C 024:739 JLINK_ReadMemEx(0x03003742, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003742) - Data: 0D 49  returns 0x02 (0001ms, 0602ms total)
T514C 024:740 JLINK_ReadMemEx(0x03003744, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003744) - Data: 08 68 00 28 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 ...  returns 0x3C (0001ms, 0603ms total)
T514C 024:741 JLINK_ReadMemEx(0x03003744, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003744) - Data: 08 68  returns 0x02 (0001ms, 0604ms total)
T514C 024:742 JLINK_ReadMemEx(0x03003744, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003744) - Data: 08 68 00 28 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 ...  returns 0x3C (0001ms, 0605ms total)
T514C 024:743 JLINK_ReadMemEx(0x03003744, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003744) - Data: 08 68  returns 0x02 (0001ms, 0606ms total)
T514C 024:744 JLINK_ReadMemEx(0x03003746, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003746) - Data: 00 28  returns 0x02 (0000ms, 0606ms total)
T514C 024:796 JLINK_ReadReg(R0)  returns 0x02019694 (0000ms, 0606ms total)
T514C 024:796 JLINK_ReadReg(R1)  returns 0x00000000 (0000ms, 0606ms total)
T514C 024:796 JLINK_ReadReg(R2)  returns 0x02019688 (0000ms, 0606ms total)
T514C 024:796 JLINK_ReadReg(R3)  returns 0x02019AE6 (0000ms, 0606ms total)
T514C 024:796 JLINK_ReadReg(R4)  returns 0x00010B64 (0000ms, 0606ms total)
T514C 024:796 JLINK_ReadReg(R5)  returns 0x00000001 (0000ms, 0606ms total)
T514C 024:796 JLINK_ReadReg(R6)  returns 0x00010B64 (0000ms, 0606ms total)
T514C 024:796 JLINK_ReadReg(R7)  returns 0x02000000 (0000ms, 0606ms total)
T514C 024:796 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 0606ms total)
T514C 024:796 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 0606ms total)
T514C 024:796 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 0606ms total)
T514C 024:796 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 0606ms total)
T514C 024:796 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 0606ms total)
T514C 024:796 JLINK_ReadReg(R13 (SP))  returns 0x0202F800 (0000ms, 0606ms total)
T514C 024:796 JLINK_ReadReg(R14)  returns 0x0000BF3D (0000ms, 0606ms total)
T514C 024:796 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0606ms total)
T514C 024:796 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0606ms total)
T514C 024:796 JLINK_ReadReg(MSP)  returns 0x0202F800 (0001ms, 0607ms total)
T514C 024:797 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 0607ms total)
T514C 024:797 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0607ms total)
T514C 024:797 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 00 00  returns 0x04 (0000ms, 0607ms total)
T7764 025:070 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0000ms, 0607ms total)
T7764 025:070 JLINK_SetBPEx(Addr = 0x00006C30, Type = 0xFFFFFFF2)  returns 0x0000000A (0001ms, 0608ms total)
T7764 025:071 JLINK_SetBPEx(Addr = 0x00006C60, Type = 0xFFFFFFF2)  returns 0x0000000B (0000ms, 0608ms total)
T7764 025:071 JLINK_SetBPEx(Addr = 0x00005DD6, Type = 0xFFFFFFF2)  returns 0x0000000C (0000ms, 0608ms total)
T7764 025:071 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU_WriteMem(4 bytes @ 0xE0002014) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0006ms, 0614ms total)
T7764 025:177 JLINK_IsHalted()  returns TRUE (0003ms, 0617ms total)
T7764 025:180 JLINK_Halt()  returns 0x00 (0000ms, 0614ms total)
T7764 025:180 JLINK_IsHalted()  returns TRUE (0000ms, 0614ms total)
T7764 025:180 JLINK_IsHalted()  returns TRUE (0000ms, 0614ms total)
T7764 025:180 JLINK_IsHalted()  returns TRUE (0000ms, 0614ms total)
T7764 025:180 JLINK_ReadReg(R15 (PC))  returns 0x00005DD6 (0000ms, 0614ms total)
T7764 025:180 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 0614ms total)
T7764 025:180 JLINK_ClrBPEx(BPHandle = 0x0000000A)  returns 0x00 (0000ms, 0614ms total)
T7764 025:180 JLINK_ClrBPEx(BPHandle = 0x0000000B)  returns 0x00 (0000ms, 0614ms total)
T7764 025:180 JLINK_ClrBPEx(BPHandle = 0x0000000C)  returns 0x00 (0000ms, 0614ms total)
T7764 025:180 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0001ms, 0615ms total)
T7764 025:181 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 0616ms total)
T7764 025:182 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0000ms, 0616ms total)
T7764 025:182 JLINK_ReadReg(R0)  returns 0x02019604 (0000ms, 0616ms total)
T7764 025:182 JLINK_ReadReg(R1)  returns 0x000073F5 (0000ms, 0616ms total)
T7764 025:182 JLINK_ReadReg(R2)  returns 0x0000856D (0000ms, 0616ms total)
T7764 025:182 JLINK_ReadReg(R3)  returns 0x00000001 (0000ms, 0616ms total)
T7764 025:182 JLINK_ReadReg(R4)  returns 0x00010B64 (0001ms, 0617ms total)
T7764 025:183 JLINK_ReadReg(R5)  returns 0x00000001 (0000ms, 0617ms total)
T7764 025:183 JLINK_ReadReg(R6)  returns 0x00010B64 (0000ms, 0617ms total)
T7764 025:183 JLINK_ReadReg(R7)  returns 0x02000000 (0000ms, 0617ms total)
T7764 025:183 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 0617ms total)
T7764 025:183 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 0617ms total)
T7764 025:183 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 0617ms total)
T7764 025:183 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 0617ms total)
T7764 025:183 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 0617ms total)
T7764 025:183 JLINK_ReadReg(R13 (SP))  returns 0x0202F7B0 (0000ms, 0617ms total)
T7764 025:183 JLINK_ReadReg(R14)  returns 0x0000B6F9 (0000ms, 0617ms total)
T7764 025:183 JLINK_ReadReg(R15 (PC))  returns 0x00005DD6 (0000ms, 0617ms total)
T7764 025:183 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 0617ms total)
T7764 025:183 JLINK_ReadReg(MSP)  returns 0x0202F7B0 (0000ms, 0617ms total)
T7764 025:183 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 0617ms total)
T7764 025:183 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0617ms total)
T514C 025:183 JLINK_ReadMemEx(0x0202F7BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7BC) - Data: F9 B6 00 00  returns 0x04 (0001ms, 0618ms total)
T514C 025:184 JLINK_ReadMemEx(0x0202F7B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7B8) - Data: 00 00 00 02  returns 0x04 (0001ms, 0619ms total)
T514C 025:185 JLINK_ReadMemEx(0x0202F7BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7BC) - Data: F9 B6 00 00  returns 0x04 (0000ms, 0619ms total)
T514C 025:185 JLINK_ReadMemEx(0x0202F7FC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7FC) - Data: 6D 12 00 00  returns 0x04 (0001ms, 0620ms total)
T514C 025:187 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 00 00  returns 0x04 (0001ms, 0621ms total)
T514C 025:188 JLINK_ReadMemEx(0x00005DD6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00005DC0) -- Updating C cache (64 bytes @ 0x00005DC0) -- Read from C cache (2 bytes @ 0x00005DD6) - Data: 05 F0  returns 0x02 (0001ms, 0622ms total)
T514C 025:189 JLINK_ReadMemEx(0x00005DD8, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00005E00) -- Updating C cache (64 bytes @ 0x00005E00) -- Read from C cache (60 bytes @ 0x00005DD8) - Data: 1F FD 15 48 81 88 15 4A 11 60 81 7A 14 4B 19 70 ...  returns 0x3C (0001ms, 0623ms total)
T514C 025:190 JLINK_ReadMemEx(0x00005DD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00005DD8) - Data: 1F FD  returns 0x02 (0000ms, 0623ms total)
T514C 025:190 JLINK_ReadMemEx(0x00005DDA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00005DDA) - Data: 15 48  returns 0x02 (0000ms, 0623ms total)
T514C 025:190 JLINK_ReadMemEx(0x00005DDC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00005DDC) - Data: 81 88 15 4A 11 60 81 7A 14 4B 19 70 C1 88 7D 23 ...  returns 0x3C (0000ms, 0623ms total)
T514C 025:191 JLINK_ReadMemEx(0x00005DDC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00005DDC) - Data: 81 88  returns 0x02 (0000ms, 0624ms total)
T514C 025:191 JLINK_ReadMemEx(0x00005DDC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00005DDC) - Data: 81 88 15 4A 11 60 81 7A 14 4B 19 70 C1 88 7D 23 ...  returns 0x3C (0000ms, 0624ms total)
T514C 025:191 JLINK_ReadMemEx(0x00005DDC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00005DDC) - Data: 81 88  returns 0x02 (0000ms, 0624ms total)
T514C 025:191 JLINK_ReadMemEx(0x00005DDE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00005DDE) - Data: 15 4A  returns 0x02 (0000ms, 0624ms total)
T7764 026:910 JLINK_ReadMemEx(0x00005DD6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00005DD6) - Data: 05 F0  returns 0x02 (0000ms, 0624ms total)
T7764 026:910 JLINK_Step() -- Read from C cache (2 bytes @ 0x00005DD6) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Read from C cache (2 bytes @ 0x00005DD8) -- Simulated  returns 0x00 (0001ms, 0625ms total)
T7764 026:911 JLINK_ReadReg(R15 (PC))  returns 0x0000B818 (0000ms, 0625ms total)
T7764 026:911 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 0625ms total)
T7764 026:911 JLINK_ReadReg(R0)  returns 0x02019604 (0000ms, 0625ms total)
T7764 026:911 JLINK_ReadReg(R1)  returns 0x000073F5 (0000ms, 0625ms total)
T7764 026:911 JLINK_ReadReg(R2)  returns 0x0000856D (0000ms, 0625ms total)
T7764 026:911 JLINK_ReadReg(R3)  returns 0x00000001 (0000ms, 0625ms total)
T7764 026:911 JLINK_ReadReg(R4)  returns 0x00010B64 (0000ms, 0625ms total)
T7764 026:911 JLINK_ReadReg(R5)  returns 0x00000001 (0000ms, 0625ms total)
T7764 026:911 JLINK_ReadReg(R6)  returns 0x00010B64 (0000ms, 0625ms total)
T7764 026:912 JLINK_ReadReg(R7)  returns 0x02000000 (0000ms, 0626ms total)
T7764 026:912 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 0626ms total)
T7764 026:912 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 0626ms total)
T7764 026:912 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 0626ms total)
T7764 026:912 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 0626ms total)
T7764 026:912 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 0626ms total)
T7764 026:912 JLINK_ReadReg(R13 (SP))  returns 0x0202F7B0 (0000ms, 0626ms total)
T7764 026:912 JLINK_ReadReg(R14)  returns 0x00005DDB (0000ms, 0626ms total)
T7764 026:912 JLINK_ReadReg(R15 (PC))  returns 0x0000B818 (0000ms, 0626ms total)
T7764 026:912 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 0626ms total)
T7764 026:912 JLINK_ReadReg(MSP)  returns 0x0202F7B0 (0000ms, 0626ms total)
T7764 026:912 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 0626ms total)
T7764 026:912 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0626ms total)
T514C 026:912 JLINK_ReadMemEx(0x0202F7BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7BC) - Data: F9 B6 00 00  returns 0x04 (0001ms, 0627ms total)
T514C 026:913 JLINK_ReadMemEx(0x0202F7B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7B8) - Data: 00 00 00 02  returns 0x04 (0001ms, 0628ms total)
T514C 026:914 JLINK_ReadMemEx(0x0202F7BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7BC) - Data: F9 B6 00 00  returns 0x04 (0000ms, 0628ms total)
T514C 026:914 JLINK_ReadMemEx(0x0202F7FC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7FC) - Data: 6D 12 00 00  returns 0x04 (0001ms, 0629ms total)
T514C 026:916 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 00 00  returns 0x04 (0000ms, 0629ms total)
T514C 026:917 JLINK_ReadMemEx(0x0000B818, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x0000B800) -- Updating C cache (128 bytes @ 0x0000B800) -- Read from C cache (60 bytes @ 0x0000B818) - Data: 10 B5 84 B0 00 20 03 90 03 99 FE F7 2F FC 1D 49 ...  returns 0x3C (0002ms, 0631ms total)
T514C 026:919 JLINK_ReadMemEx(0x0000B818, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000B818) - Data: 10 B5  returns 0x02 (0000ms, 0631ms total)
T514C 026:919 JLINK_ReadMemEx(0x0000B81A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000B81A) - Data: 84 B0  returns 0x02 (0000ms, 0631ms total)
T514C 026:919 JLINK_ReadMemEx(0x0000B81A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000B81A) - Data: 84 B0  returns 0x02 (0000ms, 0631ms total)
T514C 026:919 JLINK_ReadMemEx(0x0000B81C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000B81C) - Data: 00 20 03 90 03 99 FE F7 2F FC 1D 49 01 22 93 02 ...  returns 0x3C (0000ms, 0631ms total)
T514C 026:919 JLINK_ReadMemEx(0x0000B81C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000B81C) - Data: 00 20  returns 0x02 (0000ms, 0631ms total)
T514C 026:919 JLINK_ReadMemEx(0x0000B81C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000B81C) - Data: 00 20 03 90 03 99 FE F7 2F FC 1D 49 01 22 93 02 ...  returns 0x3C (0000ms, 0631ms total)
T514C 026:919 JLINK_ReadMemEx(0x0000B81C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000B81C) - Data: 00 20  returns 0x02 (0000ms, 0631ms total)
T514C 026:919 JLINK_ReadMemEx(0x0000B81E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000B81E) - Data: 03 90  returns 0x02 (0000ms, 0631ms total)
T514C 029:065 JLINK_ReadMemEx(0x02019694, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019694) - Data: 00 00  returns 0x02 (0001ms, 0632ms total)
T514C 029:066 JLINK_ReadMemEx(0x02019696, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019696) - Data: 00 00  returns 0x02 (0000ms, 0632ms total)
T514C 029:066 JLINK_ReadMemEx(0x02019698, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019698) - Data: 00 00  returns 0x02 (0001ms, 0633ms total)
T514C 029:067 JLINK_ReadMemEx(0x0201969A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201969A) - Data: 00 00  returns 0x02 (0001ms, 0634ms total)
T514C 029:068 JLINK_ReadMemEx(0x0201969C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201969C) - Data: 00 00  returns 0x02 (0000ms, 0634ms total)
T514C 029:068 JLINK_ReadMemEx(0x0201969E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201969E) - Data: 00 00  returns 0x02 (0001ms, 0635ms total)
T514C 029:069 JLINK_ReadMemEx(0x020196A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196A0) - Data: 00 00  returns 0x02 (0001ms, 0636ms total)
T514C 029:070 JLINK_ReadMemEx(0x020196A2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196A2) - Data: 00 00  returns 0x02 (0000ms, 0636ms total)
T514C 029:070 JLINK_ReadMemEx(0x020196A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196A4) - Data: 00 00  returns 0x02 (0001ms, 0637ms total)
T514C 029:071 JLINK_ReadMemEx(0x020196A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196A6) - Data: 00 00  returns 0x02 (0001ms, 0638ms total)
T514C 029:072 JLINK_ReadMemEx(0x020196A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196A8) - Data: 00 00  returns 0x02 (0000ms, 0638ms total)
T514C 029:072 JLINK_ReadMemEx(0x020196AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196AA) - Data: 00 00  returns 0x02 (0001ms, 0639ms total)
T514C 029:073 JLINK_ReadMemEx(0x020196AC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196AC) - Data: 00 00  returns 0x02 (0001ms, 0640ms total)
T514C 029:074 JLINK_ReadMemEx(0x020196AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196AE) - Data: 00 00  returns 0x02 (0000ms, 0640ms total)
T514C 029:074 JLINK_ReadMemEx(0x020196B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196B0) - Data: 00 00  returns 0x02 (0001ms, 0641ms total)
T514C 029:075 JLINK_ReadMemEx(0x020196B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196B2) - Data: 00 00  returns 0x02 (0000ms, 0641ms total)
T514C 029:075 JLINK_ReadMemEx(0x020196B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196B4) - Data: 00 00  returns 0x02 (0001ms, 0642ms total)
T514C 029:076 JLINK_ReadMemEx(0x020196B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196B6) - Data: 00 00  returns 0x02 (0000ms, 0642ms total)
T514C 029:076 JLINK_ReadMemEx(0x020196B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196B8) - Data: 00 00  returns 0x02 (0001ms, 0643ms total)
T514C 029:077 JLINK_ReadMemEx(0x020196BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196BA) - Data: 00 00  returns 0x02 (0000ms, 0643ms total)
T514C 029:077 JLINK_ReadMemEx(0x020196BC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196BC) - Data: 00 00  returns 0x02 (0001ms, 0644ms total)
T514C 029:078 JLINK_ReadMemEx(0x020196BE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196BE) - Data: 00 00  returns 0x02 (0001ms, 0645ms total)
T514C 029:079 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: 00 00  returns 0x02 (0000ms, 0645ms total)
T514C 029:079 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: 00 00  returns 0x02 (0001ms, 0646ms total)
T514C 029:080 JLINK_ReadMemEx(0x020196C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C4) - Data: 00 00  returns 0x02 (0001ms, 0647ms total)
T514C 029:081 JLINK_ReadMemEx(0x020196C6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C6) - Data: 00 00  returns 0x02 (0001ms, 0648ms total)
T514C 029:082 JLINK_ReadMemEx(0x020196C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C8) - Data: 00 00  returns 0x02 (0000ms, 0648ms total)
T514C 029:082 JLINK_ReadMemEx(0x020196CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196CA) - Data: 00 00  returns 0x02 (0001ms, 0649ms total)
T514C 029:083 JLINK_ReadMemEx(0x020196CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196CC) - Data: 00 00  returns 0x02 (0000ms, 0649ms total)
T514C 029:083 JLINK_ReadMemEx(0x020196CE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196CE) - Data: 00 00  returns 0x02 (0001ms, 0650ms total)
T514C 029:084 JLINK_ReadMemEx(0x020196D0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196D0) - Data: 00 00  returns 0x02 (0001ms, 0651ms total)
T514C 029:085 JLINK_ReadMemEx(0x020196D2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196D2) - Data: 00 00  returns 0x02 (0000ms, 0651ms total)
T514C 029:085 JLINK_ReadMemEx(0x020196D4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196D4) - Data: 00 00  returns 0x02 (0001ms, 0652ms total)
T514C 029:086 JLINK_ReadMemEx(0x020196D6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196D6) - Data: 00 00  returns 0x02 (0001ms, 0653ms total)
T514C 029:087 JLINK_ReadMemEx(0x020196D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196D8) - Data: 00 00  returns 0x02 (0000ms, 0653ms total)
T514C 029:087 JLINK_ReadMemEx(0x020196DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196DA) - Data: 00 00  returns 0x02 (0001ms, 0654ms total)
T514C 029:088 JLINK_ReadMemEx(0x020196DC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196DC) - Data: 00 00  returns 0x02 (0001ms, 0655ms total)
T514C 029:089 JLINK_ReadMemEx(0x020196DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196DE) - Data: 00 00  returns 0x02 (0000ms, 0655ms total)
T514C 029:089 JLINK_ReadMemEx(0x020196E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196E0) - Data: 00 00  returns 0x02 (0001ms, 0656ms total)
T514C 029:090 JLINK_ReadMemEx(0x020196E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196E2) - Data: 00 00  returns 0x02 (0001ms, 0657ms total)
T514C 029:091 JLINK_ReadMemEx(0x020196E4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196E4) - Data: 00 00  returns 0x02 (0000ms, 0657ms total)
T514C 029:091 JLINK_ReadMemEx(0x020196E6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196E6) - Data: 00 00  returns 0x02 (0001ms, 0658ms total)
T7764 031:838 JLINK_ReadMemEx(0x0000B818, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000B818) - Data: 10 B5  returns 0x02 (0000ms, 0658ms total)
T7764 031:838 JLINK_SetBPEx(Addr = 0x00006C30, Type = 0xFFFFFFF2)  returns 0x0000000D (0000ms, 0658ms total)
T7764 031:838 JLINK_SetBPEx(Addr = 0x00006C60, Type = 0xFFFFFFF2)  returns 0x0000000E (0000ms, 0658ms total)
T7764 031:838 JLINK_SetBPEx(Addr = 0x0000B83E, Type = 0xFFFFFFF2)  returns 0x0000000F (0000ms, 0658ms total)
T7764 031:838 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0006ms, 0664ms total)
T7764 031:945 JLINK_IsHalted()  returns TRUE (0003ms, 0667ms total)
T7764 031:948 JLINK_Halt()  returns 0x00 (0000ms, 0664ms total)
T7764 031:948 JLINK_IsHalted()  returns TRUE (0000ms, 0664ms total)
T7764 031:948 JLINK_IsHalted()  returns TRUE (0000ms, 0664ms total)
T7764 031:948 JLINK_IsHalted()  returns TRUE (0000ms, 0664ms total)
T7764 031:948 JLINK_ReadReg(R15 (PC))  returns 0x0000B83E (0000ms, 0664ms total)
T7764 031:948 JLINK_ReadReg(XPSR)  returns 0x41000000 (0000ms, 0664ms total)
T7764 031:948 JLINK_ClrBPEx(BPHandle = 0x0000000D)  returns 0x00 (0000ms, 0664ms total)
T7764 031:948 JLINK_ClrBPEx(BPHandle = 0x0000000E)  returns 0x00 (0000ms, 0664ms total)
T7764 031:948 JLINK_ClrBPEx(BPHandle = 0x0000000F)  returns 0x00 (0000ms, 0664ms total)
T7764 031:948 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0001ms, 0665ms total)
T7764 031:949 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 0666ms total)
T7764 031:950 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0000ms, 0666ms total)
T7764 031:951 JLINK_ReadReg(R0)  returns 0x00000000 (0000ms, 0666ms total)
T7764 031:951 JLINK_ReadReg(R1)  returns 0x00000001 (0000ms, 0666ms total)
T7764 031:951 JLINK_ReadReg(R2)  returns 0x00000000 (0000ms, 0666ms total)
T7764 031:951 JLINK_ReadReg(R3)  returns 0x00800000 (0000ms, 0666ms total)
T7764 031:951 JLINK_ReadReg(R4)  returns 0x00000000 (0000ms, 0666ms total)
T7764 031:951 JLINK_ReadReg(R5)  returns 0x00000001 (0000ms, 0666ms total)
T7764 031:951 JLINK_ReadReg(R6)  returns 0x00010B64 (0000ms, 0666ms total)
T7764 031:951 JLINK_ReadReg(R7)  returns 0x02000000 (0000ms, 0666ms total)
T7764 031:951 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 0666ms total)
T7764 031:951 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 0666ms total)
T7764 031:951 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 0666ms total)
T7764 031:951 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 0666ms total)
T7764 031:951 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 0666ms total)
T7764 031:951 JLINK_ReadReg(R13 (SP))  returns 0x0202F798 (0000ms, 0666ms total)
T7764 031:951 JLINK_ReadReg(R14)  returns 0x0000BF3D (0000ms, 0666ms total)
T7764 031:951 JLINK_ReadReg(R15 (PC))  returns 0x0000B83E (0000ms, 0666ms total)
T7764 031:951 JLINK_ReadReg(XPSR)  returns 0x41000000 (0000ms, 0666ms total)
T7764 031:951 JLINK_ReadReg(MSP)  returns 0x0202F798 (0000ms, 0666ms total)
T7764 031:951 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 0666ms total)
T7764 031:951 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0666ms total)
T514C 031:951 JLINK_ReadMemEx(0x0202F7AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7AC) - Data: DB 5D 00 00  returns 0x04 (0001ms, 0667ms total)
T514C 031:952 JLINK_ReadMemEx(0x0202F7A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7A8) - Data: 64 0B 01 00  returns 0x04 (0001ms, 0668ms total)
T514C 031:953 JLINK_ReadMemEx(0x0202F7AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7AC) - Data: DB 5D 00 00  returns 0x04 (0001ms, 0669ms total)
T514C 031:954 JLINK_ReadMemEx(0x0202F7BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7BC) - Data: F9 B6 00 00  returns 0x04 (0000ms, 0669ms total)
T514C 031:954 JLINK_ReadMemEx(0x0202F7B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7B8) - Data: 00 00 00 02  returns 0x04 (0001ms, 0670ms total)
T514C 031:955 JLINK_ReadMemEx(0x0202F7BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7BC) - Data: F9 B6 00 00  returns 0x04 (0001ms, 0671ms total)
T514C 031:956 JLINK_ReadMemEx(0x0202F7FC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7FC) - Data: 6D 12 00 00  returns 0x04 (0000ms, 0671ms total)
T514C 031:957 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 00 00  returns 0x04 (0000ms, 0671ms total)
T514C 031:958 JLINK_ReadMemEx(0x0000B83E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0000B800) -- Updating C cache (64 bytes @ 0x0000B800) -- Read from C cache (2 bytes @ 0x0000B83E) - Data: 01 99  returns 0x02 (0001ms, 0672ms total)
T514C 031:959 JLINK_ReadMemEx(0x0000B840, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0000B840) -- Updating C cache (64 bytes @ 0x0000B840) -- Read from C cache (60 bytes @ 0x0000B840) - Data: 0A 88 18 4B 9A 42 27 D0 FF E7 14 48 15 49 01 80 ...  returns 0x3C (0001ms, 0673ms total)
T514C 031:960 JLINK_ReadMemEx(0x0000B840, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000B840) - Data: 0A 88  returns 0x02 (0000ms, 0673ms total)
T514C 031:960 JLINK_ReadMemEx(0x0000B840, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000B840) - Data: 0A 88 18 4B 9A 42 27 D0 FF E7 14 48 15 49 01 80 ...  returns 0x3C (0001ms, 0674ms total)
T514C 031:961 JLINK_ReadMemEx(0x0000B840, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000B840) - Data: 0A 88  returns 0x02 (0000ms, 0674ms total)
T514C 031:961 JLINK_ReadMemEx(0x0000B842, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000B842) - Data: 18 4B  returns 0x02 (0000ms, 0674ms total)
T514C 031:961 JLINK_ReadMemEx(0x0000B842, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000B842) - Data: 18 4B  returns 0x02 (0000ms, 0674ms total)
T514C 031:961 JLINK_ReadMemEx(0x0000B844, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000B844) - Data: 9A 42 27 D0 FF E7 14 48 15 49 01 80 15 49 81 80 ...  returns 0x3C (0000ms, 0674ms total)
T514C 031:961 JLINK_ReadMemEx(0x0000B844, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000B844) - Data: 9A 42  returns 0x02 (0000ms, 0674ms total)
T514C 032:878 JLINK_ReadMemEx(0x02019694, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019694) - Data: AA 55  returns 0x02 (0001ms, 0675ms total)
T514C 034:206 JLINK_ReadMemEx(0x02019694, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019694) - Data: AA 55  returns 0x02 (0001ms, 0676ms total)
T514C 034:207 JLINK_ReadMemEx(0x02019696, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019696) - Data: FF FF  returns 0x02 (0000ms, 0676ms total)
T514C 034:207 JLINK_ReadMemEx(0x02019698, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019698) - Data: 34 12  returns 0x02 (0001ms, 0677ms total)
T514C 034:208 JLINK_ReadMemEx(0x0201969A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201969A) - Data: F4 01  returns 0x02 (0001ms, 0678ms total)
T514C 034:209 JLINK_ReadMemEx(0x0201969C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201969C) - Data: 0A 00  returns 0x02 (0000ms, 0678ms total)
T514C 034:209 JLINK_ReadMemEx(0x0201969E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201969E) - Data: 00 00  returns 0x02 (0001ms, 0679ms total)
T514C 034:210 JLINK_ReadMemEx(0x020196A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196A0) - Data: E1 FF  returns 0x02 (0001ms, 0680ms total)
T514C 034:211 JLINK_ReadMemEx(0x020196A2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196A2) - Data: 00 00  returns 0x02 (0000ms, 0680ms total)
T514C 034:211 JLINK_ReadMemEx(0x020196A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196A4) - Data: FF FF  returns 0x02 (0001ms, 0681ms total)
T514C 034:212 JLINK_ReadMemEx(0x020196A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196A6) - Data: FF FF  returns 0x02 (0001ms, 0682ms total)
T514C 034:213 JLINK_ReadMemEx(0x020196A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196A8) - Data: 14 00  returns 0x02 (0000ms, 0682ms total)
T514C 034:213 JLINK_ReadMemEx(0x020196AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196AA) - Data: FF FF  returns 0x02 (0001ms, 0683ms total)
T514C 034:214 JLINK_ReadMemEx(0x020196AC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196AC) - Data: FF FF  returns 0x02 (0001ms, 0684ms total)
T514C 034:215 JLINK_ReadMemEx(0x020196AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196AE) - Data: FF FF  returns 0x02 (0000ms, 0684ms total)
T514C 034:215 JLINK_ReadMemEx(0x020196B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196B0) - Data: 00 00  returns 0x02 (0001ms, 0685ms total)
T514C 034:216 JLINK_ReadMemEx(0x020196B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196B2) - Data: 00 00  returns 0x02 (0001ms, 0686ms total)
T514C 034:217 JLINK_ReadMemEx(0x020196B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196B4) - Data: FF FF  returns 0x02 (0000ms, 0686ms total)
T514C 034:217 JLINK_ReadMemEx(0x020196B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196B6) - Data: FF FF  returns 0x02 (0001ms, 0687ms total)
T514C 034:218 JLINK_ReadMemEx(0x020196B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196B8) - Data: FF FF  returns 0x02 (0001ms, 0688ms total)
T514C 034:219 JLINK_ReadMemEx(0x020196BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196BA) - Data: FF FF  returns 0x02 (0000ms, 0688ms total)
T514C 034:219 JLINK_ReadMemEx(0x020196BC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196BC) - Data: FF FF  returns 0x02 (0001ms, 0689ms total)
T514C 034:220 JLINK_ReadMemEx(0x020196BE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196BE) - Data: FF FF  returns 0x02 (0001ms, 0690ms total)
T514C 034:221 JLINK_ReadMemEx(0x020196C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C0) - Data: FF FF  returns 0x02 (0000ms, 0690ms total)
T514C 034:221 JLINK_ReadMemEx(0x020196C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C2) - Data: FF FF  returns 0x02 (0001ms, 0691ms total)
T514C 034:222 JLINK_ReadMemEx(0x020196C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C4) - Data: FF FF  returns 0x02 (0000ms, 0691ms total)
T514C 034:222 JLINK_ReadMemEx(0x020196C6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C6) - Data: FF FF  returns 0x02 (0001ms, 0692ms total)
T514C 034:223 JLINK_ReadMemEx(0x020196C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196C8) - Data: FF FF  returns 0x02 (0001ms, 0693ms total)
T514C 034:224 JLINK_ReadMemEx(0x020196CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196CA) - Data: 43 00  returns 0x02 (0000ms, 0693ms total)
T514C 034:224 JLINK_ReadMemEx(0x020196CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196CC) - Data: 02 00  returns 0x02 (0001ms, 0694ms total)
T514C 034:225 JLINK_ReadMemEx(0x020196CE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196CE) - Data: 78 00  returns 0x02 (0001ms, 0695ms total)
T514C 034:226 JLINK_ReadMemEx(0x020196D0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196D0) - Data: 01 00  returns 0x02 (0000ms, 0695ms total)
T514C 034:226 JLINK_ReadMemEx(0x020196D2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196D2) - Data: 01 00  returns 0x02 (0001ms, 0696ms total)
T514C 034:227 JLINK_ReadMemEx(0x020196D4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196D4) - Data: FF FF  returns 0x02 (0000ms, 0696ms total)
T514C 034:227 JLINK_ReadMemEx(0x020196D6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196D6) - Data: FF FF  returns 0x02 (0001ms, 0697ms total)
T514C 034:228 JLINK_ReadMemEx(0x020196D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196D8) - Data: 00 00  returns 0x02 (0001ms, 0698ms total)
T514C 034:229 JLINK_ReadMemEx(0x020196DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196DA) - Data: FF FF  returns 0x02 (0000ms, 0698ms total)
T514C 034:229 JLINK_ReadMemEx(0x020196DC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196DC) - Data: FF FF  returns 0x02 (0001ms, 0699ms total)
T514C 034:230 JLINK_ReadMemEx(0x020196DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196DE) - Data: FF FF  returns 0x02 (0001ms, 0700ms total)
T514C 034:231 JLINK_ReadMemEx(0x020196E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196E0) - Data: FF FF  returns 0x02 (0000ms, 0700ms total)
T514C 034:231 JLINK_ReadMemEx(0x020196E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196E2) - Data: FF FF  returns 0x02 (0001ms, 0701ms total)
T514C 034:232 JLINK_ReadMemEx(0x020196E4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196E4) - Data: 00 00  returns 0x02 (0001ms, 0702ms total)
T514C 034:233 JLINK_ReadMemEx(0x020196E6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196E6) - Data: FF FF  returns 0x02 (0000ms, 0702ms total)
T7764 037:502 JLINK_ReadMemEx(0x0000B83E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000B83E) - Data: 01 99  returns 0x02 (0000ms, 0702ms total)
T7764 037:502 JLINK_SetBPEx(Addr = 0x00006C30, Type = 0xFFFFFFF2)  returns 0x00000010 (0000ms, 0702ms total)
T7764 037:502 JLINK_SetBPEx(Addr = 0x00006C60, Type = 0xFFFFFFF2)  returns 0x00000011 (0000ms, 0702ms total)
T7764 037:502 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002010) (0004ms, 0706ms total)
T7764 037:607 JLINK_IsHalted()  returns FALSE (0000ms, 0706ms total)
T7764 037:708 JLINK_IsHalted()  returns FALSE (0000ms, 0706ms total)
T7764 037:810 JLINK_IsHalted()  returns FALSE (0000ms, 0706ms total)
T7764 037:911 JLINK_IsHalted()  returns FALSE (0000ms, 0706ms total)
T7764 038:013 JLINK_IsHalted()  returns FALSE (0000ms, 0706ms total)
T514C 038:114 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 00 00  returns 0x04 (0000ms, 0706ms total)
T7764 038:115 JLINK_IsHalted()  returns FALSE (0000ms, 0706ms total)
T7764 038:216 JLINK_IsHalted()  returns FALSE (0000ms, 0706ms total)
T7764 038:317 JLINK_IsHalted()  returns FALSE (0000ms, 0706ms total)
T7764 038:418 JLINK_IsHalted()  returns FALSE (0000ms, 0706ms total)
T7764 038:519 JLINK_IsHalted()  returns FALSE (0000ms, 0706ms total)
T7764 038:621 JLINK_IsHalted()  returns FALSE (0000ms, 0706ms total)
T514C 038:722 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 80 3F  returns 0x04 (0001ms, 0707ms total)
T7764 038:723 JLINK_IsHalted()  returns FALSE (0000ms, 0707ms total)
T7764 038:825 JLINK_IsHalted()  returns FALSE (0000ms, 0707ms total)
T7764 038:926 JLINK_IsHalted()  returns FALSE (0000ms, 0707ms total)
T7764 039:027 JLINK_IsHalted()  returns FALSE (0000ms, 0707ms total)
T7764 039:129 JLINK_IsHalted()  returns FALSE (0000ms, 0707ms total)
T7764 039:230 JLINK_IsHalted()  returns FALSE (0000ms, 0707ms total)
T514C 039:331 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 80 3F  returns 0x04 (0000ms, 0707ms total)
T7764 039:332 JLINK_IsHalted()  returns FALSE (0000ms, 0708ms total)
T7764 039:433 JLINK_IsHalted()  returns FALSE (0000ms, 0708ms total)
T7764 039:534 JLINK_IsHalted()  returns FALSE (0000ms, 0708ms total)
T7764 039:635 JLINK_IsHalted()  returns FALSE (0000ms, 0708ms total)
T7764 039:737 JLINK_IsHalted()  returns FALSE (0000ms, 0708ms total)
T7764 039:838 JLINK_IsHalted()  returns FALSE (0000ms, 0708ms total)
T514C 039:939 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 00 40  returns 0x04 (0001ms, 0709ms total)
T7764 039:940 JLINK_IsHalted()  returns FALSE (0001ms, 0710ms total)
T7764 040:042 JLINK_IsHalted()  returns FALSE (0000ms, 0709ms total)
T7764 040:143 JLINK_IsHalted()  returns FALSE (0000ms, 0709ms total)
T7764 040:245 JLINK_IsHalted()  returns FALSE (0000ms, 0709ms total)
T7764 040:346 JLINK_IsHalted()  returns FALSE (0000ms, 0709ms total)
T7764 040:447 JLINK_IsHalted()  returns FALSE (0000ms, 0709ms total)
T514C 040:548 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 40 40  returns 0x04 (0001ms, 0710ms total)
T7764 040:549 JLINK_IsHalted()  returns FALSE (0001ms, 0711ms total)
T7764 040:652 JLINK_IsHalted()  returns FALSE (0000ms, 0710ms total)
T7764 040:753 JLINK_IsHalted()  returns FALSE (0000ms, 0710ms total)
T7764 040:854 JLINK_IsHalted()  returns FALSE (0000ms, 0710ms total)
T7764 040:956 JLINK_IsHalted()  returns FALSE (0000ms, 0710ms total)
T514C 041:057 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 40 40  returns 0x04 (0001ms, 0711ms total)
T7764 041:058 JLINK_IsHalted()  returns FALSE (0000ms, 0711ms total)
T7764 041:159 JLINK_IsHalted()  returns FALSE (0000ms, 0711ms total)
T7764 041:260 JLINK_IsHalted()  returns FALSE (0000ms, 0711ms total)
T7764 041:361 JLINK_IsHalted()  returns FALSE (0000ms, 0711ms total)
T7764 041:463 JLINK_IsHalted()  returns FALSE (0000ms, 0711ms total)
T514C 041:565 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 80 40  returns 0x04 (0000ms, 0711ms total)
T7764 041:565 JLINK_IsHalted()  returns FALSE (0001ms, 0712ms total)
T7764 041:667 JLINK_IsHalted()  returns FALSE (0000ms, 0711ms total)
T7764 041:768 JLINK_IsHalted()  returns FALSE (0000ms, 0711ms total)
T7764 041:870 JLINK_IsHalted()  returns FALSE (0000ms, 0711ms total)
T7764 041:971 JLINK_IsHalted()  returns FALSE (0000ms, 0711ms total)
T7764 042:072 JLINK_IsHalted()  returns FALSE (0000ms, 0711ms total)
T514C 042:173 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 80 40  returns 0x04 (0001ms, 0712ms total)
T7764 042:174 JLINK_IsHalted()  returns FALSE (0000ms, 0712ms total)
T7764 042:275 JLINK_IsHalted()  returns FALSE (0000ms, 0712ms total)
T7764 042:376 JLINK_IsHalted()  returns FALSE (0000ms, 0712ms total)
T7764 042:477 JLINK_IsHalted()  returns FALSE (0000ms, 0712ms total)
T7764 042:578 JLINK_IsHalted()  returns FALSE (0000ms, 0712ms total)
T514C 042:680 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 A0 40  returns 0x04 (0001ms, 0713ms total)
T7764 042:681 JLINK_IsHalted()  returns FALSE (0000ms, 0713ms total)
T7764 042:782 JLINK_IsHalted()  returns FALSE (0000ms, 0713ms total)
T7764 042:883 JLINK_IsHalted()  returns FALSE (0000ms, 0713ms total)
T7764 042:984 JLINK_IsHalted()  returns FALSE (0000ms, 0713ms total)
T7764 043:086 JLINK_IsHalted()  returns FALSE (0000ms, 0713ms total)
T7764 043:187 JLINK_IsHalted()  returns FALSE (0000ms, 0713ms total)
T514C 043:288 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 A0 40  returns 0x04 (0001ms, 0714ms total)
T7764 043:289 JLINK_IsHalted()  returns FALSE (0000ms, 0714ms total)
T7764 043:391 JLINK_IsHalted()  returns FALSE (0000ms, 0714ms total)
T7764 043:492 JLINK_IsHalted()  returns FALSE (0000ms, 0714ms total)
T7764 043:593 JLINK_IsHalted()  returns FALSE (0000ms, 0714ms total)
T7764 043:694 JLINK_IsHalted()  returns FALSE (0000ms, 0714ms total)
T7764 043:796 JLINK_IsHalted()  returns FALSE (0000ms, 0714ms total)
T514C 043:897 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 C0 40  returns 0x04 (0000ms, 0714ms total)
T7764 043:898 JLINK_IsHalted()  returns FALSE (0000ms, 0714ms total)
T7764 043:999 JLINK_IsHalted()  returns FALSE (0000ms, 0714ms total)
T7764 044:100 JLINK_IsHalted()  returns FALSE (0000ms, 0714ms total)
T7764 044:201 JLINK_IsHalted()  returns FALSE (0000ms, 0714ms total)
T7764 044:303 JLINK_IsHalted()  returns FALSE (0000ms, 0714ms total)
T7764 044:404 JLINK_IsHalted()  returns FALSE (0000ms, 0714ms total)
T514C 044:505 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 C0 40  returns 0x04 (0000ms, 0714ms total)
T7764 044:505 JLINK_IsHalted()  returns FALSE (0001ms, 0715ms total)
T7764 044:607 JLINK_IsHalted()  returns FALSE (0000ms, 0714ms total)
T7764 044:709 JLINK_IsHalted()  returns FALSE (0000ms, 0714ms total)
T7764 044:810 JLINK_IsHalted()  returns FALSE (0000ms, 0714ms total)
T7764 044:911 JLINK_IsHalted()  returns FALSE (0000ms, 0714ms total)
T7764 045:012 JLINK_IsHalted()  returns FALSE (0000ms, 0714ms total)
T514C 045:114 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 E0 40  returns 0x04 (0000ms, 0714ms total)
T7764 045:115 JLINK_IsHalted()  returns FALSE (0000ms, 0714ms total)
T7764 045:216 JLINK_IsHalted()  returns FALSE (0000ms, 0714ms total)
T7764 045:317 JLINK_IsHalted()  returns FALSE (0000ms, 0714ms total)
T7764 045:418 JLINK_IsHalted()  returns FALSE (0000ms, 0714ms total)
T7764 045:520 JLINK_IsHalted()  returns FALSE (0000ms, 0714ms total)
T7764 045:621 JLINK_IsHalted()  returns FALSE (0000ms, 0714ms total)
T514C 045:725 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 00 41  returns 0x04 (0001ms, 0715ms total)
T7764 045:726 JLINK_IsHalted()  returns FALSE (0000ms, 0715ms total)
T7764 045:827 JLINK_IsHalted()  returns FALSE (0000ms, 0715ms total)
T7764 045:928 JLINK_IsHalted()  returns FALSE (0000ms, 0715ms total)
T7764 046:030 JLINK_IsHalted()  returns FALSE (0000ms, 0715ms total)
T7764 046:131 JLINK_IsHalted()  returns FALSE (0000ms, 0715ms total)
T7764 046:233 JLINK_IsHalted()  returns FALSE (0000ms, 0715ms total)
T514C 046:334 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 00 41  returns 0x04 (0000ms, 0715ms total)
T7764 046:335 JLINK_IsHalted()  returns FALSE (0000ms, 0715ms total)
T7764 046:436 JLINK_IsHalted()  returns FALSE (0000ms, 0715ms total)
T7764 046:537 JLINK_IsHalted()  returns FALSE (0000ms, 0715ms total)
T7764 046:638 JLINK_IsHalted()  returns FALSE (0000ms, 0715ms total)
T7764 046:739 JLINK_IsHalted()  returns FALSE (0000ms, 0715ms total)
T7764 046:840 JLINK_IsHalted()  returns FALSE (0000ms, 0715ms total)
T514C 046:941 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 10 41  returns 0x04 (0001ms, 0716ms total)
T7764 046:942 JLINK_IsHalted()  returns FALSE (0000ms, 0716ms total)
T7764 047:043 JLINK_IsHalted()  returns FALSE (0000ms, 0716ms total)
T7764 047:145 JLINK_IsHalted()  returns FALSE (0000ms, 0716ms total)
T7764 047:246 JLINK_IsHalted()  returns FALSE (0000ms, 0716ms total)
T7764 047:347 JLINK_IsHalted()  returns FALSE (0000ms, 0716ms total)
T7764 047:449 JLINK_IsHalted()  returns FALSE (0000ms, 0716ms total)
T514C 047:550 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 20 41  returns 0x04 (0001ms, 0717ms total)
T7764 047:551 JLINK_IsHalted()  returns FALSE (0000ms, 0717ms total)
T7764 047:652 JLINK_IsHalted()  returns FALSE (0000ms, 0717ms total)
T7764 047:753 JLINK_IsHalted()  returns FALSE (0000ms, 0717ms total)
T7764 047:854 JLINK_IsHalted()  returns FALSE (0000ms, 0717ms total)
T7764 047:956 JLINK_IsHalted()  returns FALSE (0000ms, 0717ms total)
T7764 048:057 JLINK_IsHalted()  returns FALSE (0000ms, 0717ms total)
T514C 048:158 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 20 41  returns 0x04 (0001ms, 0718ms total)
T7764 048:159 JLINK_IsHalted()  returns FALSE (0001ms, 0719ms total)
T7764 048:261 JLINK_IsHalted()  returns FALSE (0000ms, 0718ms total)
T7764 048:362 JLINK_IsHalted()  returns FALSE (0000ms, 0718ms total)
T7764 048:464 JLINK_IsHalted()  returns FALSE (0000ms, 0718ms total)
T7764 048:566 JLINK_IsHalted()  returns FALSE (0000ms, 0718ms total)
T7764 048:667 JLINK_IsHalted()  returns FALSE (0000ms, 0718ms total)
T514C 048:768 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 30 41  returns 0x04 (0001ms, 0719ms total)
T7764 048:769 JLINK_IsHalted()  returns FALSE (0000ms, 0719ms total)
T7764 048:871 JLINK_IsHalted()  returns FALSE (0000ms, 0719ms total)
T7764 048:972 JLINK_IsHalted()  returns FALSE (0000ms, 0719ms total)
T7764 049:073 JLINK_IsHalted()  returns FALSE (0000ms, 0719ms total)
T7764 049:174 JLINK_IsHalted()  returns FALSE (0000ms, 0719ms total)
T7764 049:276 JLINK_IsHalted()  returns FALSE (0000ms, 0719ms total)
T514C 049:377 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 30 41  returns 0x04 (0001ms, 0720ms total)
T7764 049:378 JLINK_IsHalted()  returns FALSE (0000ms, 0720ms total)
T7764 049:479 JLINK_IsHalted()  returns FALSE (0000ms, 0720ms total)
T7764 049:580 JLINK_IsHalted()  returns FALSE (0000ms, 0720ms total)
T7764 049:681 JLINK_IsHalted()  returns FALSE (0000ms, 0720ms total)
T7764 049:782 JLINK_IsHalted()  returns FALSE (0000ms, 0720ms total)
T514C 049:883 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 40 41  returns 0x04 (0000ms, 0720ms total)
T7764 049:884 JLINK_IsHalted()  returns FALSE (0000ms, 0720ms total)
T7764 049:985 JLINK_IsHalted()  returns FALSE (0000ms, 0720ms total)
T7764 050:086 JLINK_IsHalted()  returns FALSE (0000ms, 0720ms total)
T7764 050:188 JLINK_IsHalted()  returns FALSE (0000ms, 0720ms total)
T7764 050:289 JLINK_IsHalted()  returns FALSE (0000ms, 0720ms total)
T7764 050:390 JLINK_IsHalted()  returns FALSE (0000ms, 0720ms total)
T514C 050:491 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 40 41  returns 0x04 (0001ms, 0721ms total)
T7764 050:492 JLINK_IsHalted()  returns FALSE (0000ms, 0721ms total)
T7764 050:594 JLINK_IsHalted()  returns FALSE (0000ms, 0721ms total)
T7764 050:695 JLINK_IsHalted()  returns FALSE (0000ms, 0721ms total)
T7764 050:796 JLINK_IsHalted()  returns FALSE (0000ms, 0721ms total)
T7764 050:898 JLINK_IsHalted()  returns FALSE (0000ms, 0721ms total)
T7764 050:999 JLINK_IsHalted()  returns FALSE (0000ms, 0721ms total)
T514C 051:100 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 50 41  returns 0x04 (0001ms, 0722ms total)
T7764 051:101 JLINK_IsHalted()  returns FALSE (0000ms, 0722ms total)
T7764 051:202 JLINK_IsHalted()  returns FALSE (0000ms, 0722ms total)
T7764 051:303 JLINK_IsHalted()  returns FALSE (0000ms, 0722ms total)
T7764 051:405 JLINK_IsHalted()  returns FALSE (0000ms, 0722ms total)
T7764 051:506 JLINK_IsHalted()  returns FALSE (0000ms, 0722ms total)
T7764 051:608 JLINK_IsHalted()  returns FALSE (0000ms, 0722ms total)
T514C 051:710 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 60 41  returns 0x04 (0001ms, 0723ms total)
T7764 051:711 JLINK_IsHalted()  returns FALSE (0000ms, 0723ms total)
T7764 051:812 JLINK_IsHalted()  returns FALSE (0000ms, 0723ms total)
T7764 051:914 JLINK_IsHalted()  returns FALSE (0000ms, 0723ms total)
T7764 052:015 JLINK_IsHalted()  returns FALSE (0000ms, 0723ms total)
T7764 052:116 JLINK_IsHalted()  returns FALSE (0000ms, 0723ms total)
T7764 052:217 JLINK_IsHalted()  returns FALSE (0000ms, 0723ms total)
T514C 052:319 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 60 41  returns 0x04 (0000ms, 0723ms total)
T7764 052:320 JLINK_IsHalted()  returns FALSE (0000ms, 0723ms total)
T7764 052:422 JLINK_IsHalted()  returns FALSE (0000ms, 0723ms total)
T7764 052:523 JLINK_IsHalted()  returns FALSE (0000ms, 0723ms total)
T7764 052:624 JLINK_IsHalted()  returns FALSE (0000ms, 0723ms total)
T7764 052:725 JLINK_IsHalted()  returns FALSE (0001ms, 0724ms total)
T7764 052:827 JLINK_IsHalted()  returns FALSE (0000ms, 0723ms total)
T514C 052:928 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 70 41  returns 0x04 (0000ms, 0723ms total)
T7764 052:929 JLINK_IsHalted()  returns FALSE (0000ms, 0723ms total)
T7764 053:030 JLINK_IsHalted()  returns FALSE (0000ms, 0723ms total)
T7764 053:131 JLINK_IsHalted()  returns FALSE (0000ms, 0723ms total)
T7764 053:232 JLINK_IsHalted()  returns FALSE (0000ms, 0723ms total)
T7764 053:334 JLINK_IsHalted()  returns FALSE (0000ms, 0723ms total)
T7764 053:435 JLINK_IsHalted()  returns FALSE (0000ms, 0723ms total)
T514C 053:536 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 80 41  returns 0x04 (0000ms, 0723ms total)
T7764 053:537 JLINK_IsHalted()  returns FALSE (0000ms, 0723ms total)
T7764 053:638 JLINK_IsHalted()  returns FALSE (0000ms, 0723ms total)
T7764 053:739 JLINK_IsHalted()  returns FALSE (0000ms, 0723ms total)
T7764 053:840 JLINK_IsHalted()  returns FALSE (0000ms, 0723ms total)
T7764 053:942 JLINK_IsHalted()  returns FALSE (0000ms, 0723ms total)
T7764 054:043 JLINK_IsHalted()  returns FALSE (0000ms, 0723ms total)
T514C 054:144 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 80 41  returns 0x04 (0001ms, 0724ms total)
T7764 054:145 JLINK_IsHalted()  returns FALSE (0000ms, 0724ms total)
T7764 054:246 JLINK_IsHalted()  returns FALSE (0000ms, 0724ms total)
T7764 054:347 JLINK_IsHalted()  returns FALSE (0000ms, 0724ms total)
T7764 054:448 JLINK_IsHalted()  returns FALSE (0000ms, 0724ms total)
T7764 054:549 JLINK_IsHalted()  returns FALSE (0000ms, 0724ms total)
T7764 054:650 JLINK_IsHalted()  returns FALSE (0000ms, 0724ms total)
T514C 054:751 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 88 41  returns 0x04 (0001ms, 0725ms total)
T7764 054:752 JLINK_IsHalted()  returns FALSE (0000ms, 0725ms total)
T7764 054:854 JLINK_IsHalted()  returns FALSE (0000ms, 0725ms total)
T7764 054:954 JLINK_IsHalted()  returns FALSE (0000ms, 0725ms total)
T7764 055:056 JLINK_IsHalted()  returns FALSE (0000ms, 0725ms total)
T7764 055:157 JLINK_IsHalted()  returns FALSE (0000ms, 0725ms total)
T514C 055:259 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 88 41  returns 0x04 (0001ms, 0726ms total)
T7764 055:260 JLINK_IsHalted()  returns FALSE (0000ms, 0726ms total)
T7764 055:361 JLINK_IsHalted()  returns FALSE (0000ms, 0726ms total)
T7764 055:463 JLINK_IsHalted()  returns FALSE (0000ms, 0726ms total)
T7764 055:564 JLINK_IsHalted()  returns FALSE (0000ms, 0726ms total)
T7764 055:665 JLINK_IsHalted()  returns FALSE (0000ms, 0726ms total)
T7764 055:767 JLINK_IsHalted()  returns FALSE (0000ms, 0726ms total)
T514C 055:868 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 90 41  returns 0x04 (0000ms, 0726ms total)
T7764 055:869 JLINK_IsHalted()  returns FALSE (0000ms, 0726ms total)
T7764 055:970 JLINK_IsHalted()  returns FALSE (0000ms, 0726ms total)
T7764 056:071 JLINK_IsHalted()  returns FALSE (0000ms, 0726ms total)
T7764 056:173 JLINK_IsHalted()  returns FALSE (0000ms, 0726ms total)
T7764 056:274 JLINK_IsHalted()  returns FALSE (0000ms, 0726ms total)
T7764 056:375 JLINK_IsHalted()  returns FALSE (0000ms, 0726ms total)
T514C 056:476 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 90 41  returns 0x04 (0000ms, 0726ms total)
T7764 056:477 JLINK_IsHalted()  returns FALSE (0000ms, 0727ms total)
T7764 056:578 JLINK_IsHalted()  returns FALSE (0000ms, 0727ms total)
T7764 056:680 JLINK_IsHalted()  returns FALSE (0000ms, 0727ms total)
T7764 056:781 JLINK_IsHalted()  returns FALSE (0000ms, 0727ms total)
T7764 056:883 JLINK_IsHalted()  returns FALSE (0000ms, 0727ms total)
T7764 056:984 JLINK_IsHalted()  returns FALSE (0000ms, 0727ms total)
T514C 057:085 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 98 41  returns 0x04 (0001ms, 0728ms total)
T7764 057:086 JLINK_IsHalted()  returns FALSE (0000ms, 0728ms total)
T7764 057:187 JLINK_IsHalted()  returns FALSE (0000ms, 0728ms total)
T7764 057:289 JLINK_IsHalted()  returns FALSE (0000ms, 0728ms total)
T7764 057:390 JLINK_IsHalted()  returns FALSE (0000ms, 0728ms total)
T7764 057:491 JLINK_IsHalted()  returns FALSE (0000ms, 0728ms total)
T7764 057:592 JLINK_IsHalted()  returns FALSE (0000ms, 0728ms total)
T514C 057:694 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 A0 41  returns 0x04 (0001ms, 0729ms total)
T7764 057:695 JLINK_IsHalted()  returns FALSE (0000ms, 0729ms total)
T7764 057:796 JLINK_IsHalted()  returns FALSE (0000ms, 0729ms total)
T7764 057:897 JLINK_IsHalted()  returns FALSE (0000ms, 0729ms total)
T7764 057:998 JLINK_IsHalted()  returns FALSE (0000ms, 0729ms total)
T7764 058:099 JLINK_IsHalted()  returns FALSE (0000ms, 0729ms total)
T7764 058:200 JLINK_IsHalted()  returns FALSE (0000ms, 0729ms total)
T514C 058:301 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 A0 41  returns 0x04 (0001ms, 0730ms total)
T7764 058:302 JLINK_IsHalted()  returns FALSE (0000ms, 0730ms total)
T7764 058:403 JLINK_IsHalted()  returns FALSE (0000ms, 0730ms total)
T7764 058:504 JLINK_IsHalted()  returns FALSE (0000ms, 0730ms total)
T7764 058:605 JLINK_IsHalted()  returns FALSE (0000ms, 0730ms total)
T7764 058:706 JLINK_IsHalted()  returns FALSE (0000ms, 0730ms total)
T7764 058:808 JLINK_IsHalted()  returns FALSE (0000ms, 0730ms total)
T514C 058:909 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 A8 41  returns 0x04 (0001ms, 0731ms total)
T7764 058:910 JLINK_IsHalted()  returns FALSE (0000ms, 0731ms total)
T7764 059:011 JLINK_IsHalted()  returns FALSE (0000ms, 0731ms total)
T7764 059:112 JLINK_IsHalted()  returns FALSE (0000ms, 0731ms total)
T7764 059:213 JLINK_IsHalted()  returns FALSE (0000ms, 0731ms total)
T7764 059:314 JLINK_IsHalted()  returns FALSE (0000ms, 0731ms total)
T7764 059:416 JLINK_IsHalted()  returns FALSE (0000ms, 0731ms total)
T514C 059:517 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 B0 41  returns 0x04 (0000ms, 0731ms total)
T7764 059:518 JLINK_IsHalted()  returns FALSE (0000ms, 0731ms total)
T7764 059:619 JLINK_IsHalted()  returns FALSE (0000ms, 0731ms total)
T7764 059:721 JLINK_IsHalted()  returns FALSE (0000ms, 0731ms total)
T7764 059:822 JLINK_IsHalted()  returns FALSE (0000ms, 0731ms total)
T7764 059:924 JLINK_IsHalted()  returns FALSE (0000ms, 0731ms total)
T514C 060:025 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 B0 41  returns 0x04 (0001ms, 0732ms total)
T7764 060:026 JLINK_IsHalted()  returns FALSE (0000ms, 0732ms total)
T7764 060:127 JLINK_IsHalted()  returns FALSE (0000ms, 0732ms total)
T7764 060:228 JLINK_IsHalted()  returns FALSE (0000ms, 0732ms total)
T7764 060:330 JLINK_IsHalted()  returns FALSE (0000ms, 0732ms total)
T7764 060:431 JLINK_IsHalted()  returns FALSE (0000ms, 0732ms total)
T7764 060:532 JLINK_IsHalted()  returns FALSE (0000ms, 0732ms total)
T514C 060:633 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 B8 41  returns 0x04 (0000ms, 0732ms total)
T7764 060:634 JLINK_IsHalted()  returns FALSE (0000ms, 0732ms total)
T7764 060:735 JLINK_IsHalted()  returns FALSE (0000ms, 0732ms total)
T7764 060:836 JLINK_IsHalted()  returns FALSE (0000ms, 0732ms total)
T7764 060:938 JLINK_IsHalted()  returns FALSE (0000ms, 0732ms total)
T7764 061:039 JLINK_IsHalted()  returns FALSE (0000ms, 0732ms total)
T7764 061:140 JLINK_IsHalted()  returns FALSE (0000ms, 0732ms total)
T514C 061:241 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 B8 41  returns 0x04 (0000ms, 0732ms total)
T7764 061:242 JLINK_IsHalted()  returns FALSE (0000ms, 0732ms total)
T7764 061:343 JLINK_IsHalted()  returns FALSE (0000ms, 0732ms total)
T7764 061:445 JLINK_IsHalted()  returns FALSE (0000ms, 0732ms total)
T7764 061:546 JLINK_IsHalted()  returns FALSE (0000ms, 0732ms total)
T7764 061:647 JLINK_IsHalted()  returns FALSE (0000ms, 0732ms total)
T7764 061:748 JLINK_IsHalted()  returns FALSE (0000ms, 0732ms total)
T514C 061:849 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 C0 41  returns 0x04 (0000ms, 0732ms total)
T7764 061:850 JLINK_IsHalted()  returns FALSE (0000ms, 0732ms total)
T7764 061:952 JLINK_IsHalted()  returns FALSE (0000ms, 0732ms total)
T7764 062:054 JLINK_IsHalted()  returns FALSE (0000ms, 0732ms total)
T7764 062:155 JLINK_IsHalted()  returns FALSE (0000ms, 0732ms total)
T7764 062:256 JLINK_IsHalted()  returns FALSE (0000ms, 0732ms total)
T7764 062:357 JLINK_IsHalted()  returns FALSE (0000ms, 0732ms total)
T514C 062:459 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 C0 41  returns 0x04 (0001ms, 0733ms total)
T7764 062:460 JLINK_IsHalted()  returns FALSE (0000ms, 0733ms total)
T7764 062:561 JLINK_IsHalted()  returns FALSE (0000ms, 0733ms total)
T7764 062:662 JLINK_IsHalted()  returns FALSE (0000ms, 0733ms total)
T7764 062:763 JLINK_IsHalted()  returns FALSE (0000ms, 0733ms total)
T7764 062:864 JLINK_IsHalted()  returns FALSE (0000ms, 0733ms total)
T7764 062:965 JLINK_IsHalted()  returns FALSE (0000ms, 0733ms total)
T514C 063:066 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 C8 41  returns 0x04 (0000ms, 0733ms total)
T7764 063:067 JLINK_IsHalted()  returns FALSE (0000ms, 0733ms total)
T7764 063:169 JLINK_IsHalted()  returns FALSE (0000ms, 0733ms total)
T7764 063:270 JLINK_IsHalted()  returns FALSE (0000ms, 0733ms total)
T7764 063:371 JLINK_IsHalted()  returns FALSE (0000ms, 0733ms total)
T7764 063:472 JLINK_IsHalted()  returns FALSE (0000ms, 0733ms total)
T7764 063:574 JLINK_IsHalted()  returns FALSE (0000ms, 0733ms total)
T514C 063:675 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 D0 41  returns 0x04 (0000ms, 0733ms total)
T7764 063:675 JLINK_IsHalted()  returns FALSE (0001ms, 0734ms total)
T7764 063:777 JLINK_IsHalted()  returns FALSE (0000ms, 0733ms total)
T7764 063:878 JLINK_IsHalted()  returns FALSE (0000ms, 0733ms total)
T7764 063:980 JLINK_IsHalted()  returns FALSE (0000ms, 0733ms total)
T7764 064:081 JLINK_IsHalted()  returns FALSE (0000ms, 0733ms total)
T7764 064:182 JLINK_IsHalted()  returns FALSE (0000ms, 0733ms total)
T514C 064:283 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 D0 41  returns 0x04 (0001ms, 0734ms total)
T7764 064:284 JLINK_IsHalted()  returns FALSE (0000ms, 0734ms total)
T7764 064:385 JLINK_IsHalted()  returns FALSE (0000ms, 0734ms total)
T7764 064:487 JLINK_IsHalted()  returns FALSE (0000ms, 0734ms total)
T7764 064:588 JLINK_IsHalted()  returns FALSE (0000ms, 0734ms total)
T7764 064:690 JLINK_IsHalted()  returns FALSE (0000ms, 0734ms total)
T7764 064:791 JLINK_IsHalted()  returns FALSE (0000ms, 0734ms total)
T514C 064:892 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 D8 41  returns 0x04 (0001ms, 0735ms total)
T7764 064:893 JLINK_IsHalted()  returns FALSE (0000ms, 0735ms total)
T7764 064:995 JLINK_IsHalted()  returns FALSE (0000ms, 0735ms total)
T7764 065:096 JLINK_IsHalted()  returns FALSE (0000ms, 0735ms total)
T7764 065:196 JLINK_IsHalted()  returns FALSE (0000ms, 0735ms total)
T7764 065:298 JLINK_IsHalted()  returns FALSE (0000ms, 0735ms total)
T514C 065:399 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 D8 41  returns 0x04 (0001ms, 0736ms total)
T7764 065:400 JLINK_IsHalted()  returns FALSE (0000ms, 0736ms total)
T7764 065:501 JLINK_IsHalted()  returns FALSE (0000ms, 0736ms total)
T7764 065:602 JLINK_IsHalted()  returns FALSE (0000ms, 0736ms total)
T7764 065:703 JLINK_IsHalted()  returns FALSE (0000ms, 0736ms total)
T7764 065:804 JLINK_IsHalted()  returns FALSE (0000ms, 0736ms total)
T7764 065:905 JLINK_IsHalted()  returns FALSE (0000ms, 0736ms total)
T514C 066:006 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 E0 41  returns 0x04 (0001ms, 0737ms total)
T7764 066:007 JLINK_IsHalted()  returns FALSE (0000ms, 0737ms total)
T7764 066:109 JLINK_IsHalted()  returns FALSE (0000ms, 0737ms total)
T7764 066:210 JLINK_IsHalted()  returns FALSE (0000ms, 0737ms total)
T7764 066:311 JLINK_IsHalted()  returns FALSE (0000ms, 0737ms total)
T7764 066:413 JLINK_IsHalted()  returns FALSE (0000ms, 0737ms total)
T7764 066:514 JLINK_IsHalted()  returns FALSE (0000ms, 0737ms total)
T514C 066:615 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 E8 41  returns 0x04 (0000ms, 0737ms total)
T7764 066:616 JLINK_IsHalted()  returns FALSE (0000ms, 0737ms total)
T7764 066:718 JLINK_IsHalted()  returns FALSE (0000ms, 0737ms total)
T7764 066:819 JLINK_IsHalted()  returns FALSE (0000ms, 0737ms total)
T7764 066:920 JLINK_IsHalted()  returns FALSE (0000ms, 0737ms total)
T7764 067:021 JLINK_IsHalted()  returns FALSE (0000ms, 0737ms total)
T7764 067:122 JLINK_IsHalted()  returns FALSE (0000ms, 0737ms total)
T514C 067:223 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 E8 41  returns 0x04 (0000ms, 0737ms total)
T7764 067:224 JLINK_IsHalted()  returns FALSE (0000ms, 0737ms total)
T7764 067:326 JLINK_IsHalted()  returns FALSE (0000ms, 0737ms total)
T7764 067:427 JLINK_IsHalted()  returns FALSE (0000ms, 0737ms total)
T7764 067:528 JLINK_IsHalted()  returns FALSE (0000ms, 0737ms total)
T7764 067:629 JLINK_IsHalted()  returns FALSE (0000ms, 0737ms total)
T7764 067:730 JLINK_IsHalted()  returns FALSE (0000ms, 0737ms total)
T514C 067:831 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 F0 41  returns 0x04 (0001ms, 0738ms total)
T7764 067:832 JLINK_IsHalted()  returns FALSE (0001ms, 0739ms total)
T7764 067:934 JLINK_IsHalted()  returns FALSE (0000ms, 0738ms total)
T7764 068:035 JLINK_IsHalted()  returns FALSE (0000ms, 0738ms total)
T7764 068:136 JLINK_IsHalted()  returns FALSE (0000ms, 0738ms total)
T7764 068:238 JLINK_IsHalted()  returns FALSE (0000ms, 0738ms total)
T7764 068:339 JLINK_IsHalted()  returns FALSE (0000ms, 0738ms total)
T514C 068:440 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 F0 41  returns 0x04 (0000ms, 0738ms total)
T7764 068:441 JLINK_IsHalted()  returns FALSE (0000ms, 0738ms total)
T7764 068:542 JLINK_IsHalted()  returns FALSE (0000ms, 0738ms total)
T7764 068:643 JLINK_IsHalted()  returns FALSE (0000ms, 0738ms total)
T7764 068:745 JLINK_IsHalted()  returns FALSE (0000ms, 0738ms total)
T7764 068:846 JLINK_IsHalted()  returns FALSE (0000ms, 0738ms total)
T7764 068:947 JLINK_IsHalted()  returns FALSE (0000ms, 0738ms total)
T514C 069:049 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 F8 41  returns 0x04 (0001ms, 0739ms total)
T7764 069:050 JLINK_IsHalted()  returns FALSE (0000ms, 0739ms total)
T7764 069:151 JLINK_IsHalted()  returns FALSE (0000ms, 0739ms total)
T7764 069:252 JLINK_IsHalted()  returns FALSE (0000ms, 0739ms total)
T7764 069:353 JLINK_IsHalted()  returns FALSE (0000ms, 0739ms total)
T7764 069:454 JLINK_IsHalted()  returns FALSE (0000ms, 0739ms total)
T514C 069:555 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 00 42  returns 0x04 (0001ms, 0740ms total)
T7764 069:556 JLINK_IsHalted()  returns FALSE (0000ms, 0740ms total)
T7764 069:657 JLINK_IsHalted()  returns FALSE (0000ms, 0740ms total)
T7764 069:759 JLINK_IsHalted()  returns FALSE (0000ms, 0740ms total)
T7764 069:860 JLINK_IsHalted()  returns FALSE (0000ms, 0740ms total)
T7764 069:961 JLINK_IsHalted()  returns FALSE (0000ms, 0740ms total)
T7764 070:062 JLINK_IsHalted()  returns FALSE (0000ms, 0740ms total)
T514C 070:163 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 00 42  returns 0x04 (0001ms, 0741ms total)
T7764 070:164 JLINK_IsHalted()  returns FALSE (0000ms, 0741ms total)
T7764 070:265 JLINK_IsHalted()  returns FALSE (0000ms, 0741ms total)
T7764 070:366 JLINK_IsHalted()  returns FALSE (0000ms, 0741ms total)
T7764 070:468 JLINK_IsHalted()  returns FALSE (0000ms, 0741ms total)
T7764 070:569 JLINK_IsHalted()  returns FALSE (0000ms, 0741ms total)
T7764 070:671 JLINK_IsHalted()  returns FALSE (0000ms, 0741ms total)
T514C 070:772 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 04 42  returns 0x04 (0001ms, 0742ms total)
T7764 070:773 JLINK_IsHalted()  returns FALSE (0000ms, 0742ms total)
T7764 070:874 JLINK_IsHalted()  returns FALSE (0000ms, 0742ms total)
T7764 070:975 JLINK_IsHalted()  returns FALSE (0000ms, 0742ms total)
T7764 071:076 JLINK_IsHalted()  returns FALSE (0000ms, 0742ms total)
T7764 071:178 JLINK_IsHalted()  returns FALSE (0000ms, 0742ms total)
T7764 071:280 JLINK_IsHalted()  returns FALSE (0000ms, 0742ms total)
T514C 071:381 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 04 42  returns 0x04 (0001ms, 0743ms total)
T7764 071:382 JLINK_IsHalted()  returns FALSE (0000ms, 0743ms total)
T7764 071:483 JLINK_IsHalted()  returns FALSE (0000ms, 0743ms total)
T7764 071:584 JLINK_IsHalted()  returns FALSE (0000ms, 0743ms total)
T7764 071:685 JLINK_IsHalted()  returns FALSE (0000ms, 0743ms total)
T7764 071:786 JLINK_IsHalted()  returns FALSE (0000ms, 0743ms total)
T7764 071:887 JLINK_IsHalted()  returns FALSE (0000ms, 0743ms total)
T514C 071:989 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 08 42  returns 0x04 (0000ms, 0743ms total)
T7764 071:990 JLINK_IsHalted()  returns FALSE (0000ms, 0743ms total)
T7764 072:091 JLINK_IsHalted()  returns FALSE (0000ms, 0743ms total)
T7764 072:192 JLINK_IsHalted()  returns FALSE (0000ms, 0743ms total)
T7764 072:293 JLINK_IsHalted()  returns FALSE (0000ms, 0743ms total)
T7764 072:394 JLINK_IsHalted()  returns FALSE (0000ms, 0743ms total)
T7764 072:495 JLINK_IsHalted()  returns FALSE (0000ms, 0743ms total)
T514C 072:596 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 0C 42  returns 0x04 (0000ms, 0743ms total)
T7764 072:597 JLINK_IsHalted()  returns FALSE (0001ms, 0745ms total)
T7764 072:699 JLINK_IsHalted()  returns FALSE (0000ms, 0744ms total)
T7764 072:800 JLINK_IsHalted()  returns FALSE (0000ms, 0744ms total)
T7764 072:902 JLINK_IsHalted()  returns FALSE (0000ms, 0744ms total)
T7764 073:003 JLINK_IsHalted()  returns FALSE (0000ms, 0744ms total)
T7764 073:104 JLINK_IsHalted()  returns FALSE (0000ms, 0744ms total)
T514C 073:205 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 0C 42  returns 0x04 (0001ms, 0745ms total)
T7764 073:206 JLINK_IsHalted()  returns FALSE (0000ms, 0745ms total)
T7764 073:307 JLINK_IsHalted()  returns FALSE (0000ms, 0745ms total)
T7764 073:409 JLINK_IsHalted()  returns FALSE (0000ms, 0745ms total)
T7764 073:510 JLINK_IsHalted()  returns FALSE (0000ms, 0745ms total)
T7764 073:611 JLINK_IsHalted()  returns FALSE (0000ms, 0745ms total)
T514C 073:713 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 10 42  returns 0x04 (0000ms, 0745ms total)
T7764 073:714 JLINK_IsHalted()  returns FALSE (0000ms, 0745ms total)
T7764 073:815 JLINK_IsHalted()  returns FALSE (0000ms, 0745ms total)
T7764 073:916 JLINK_IsHalted()  returns FALSE (0000ms, 0745ms total)
T7764 074:017 JLINK_IsHalted()  returns FALSE (0000ms, 0745ms total)
T7764 074:119 JLINK_IsHalted()  returns FALSE (0000ms, 0745ms total)
T7764 074:220 JLINK_IsHalted()  returns FALSE (0000ms, 0745ms total)
T514C 074:321 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 10 42  returns 0x04 (0001ms, 0746ms total)
T7764 074:322 JLINK_IsHalted()  returns FALSE (0000ms, 0746ms total)
T7764 074:423 JLINK_IsHalted()  returns FALSE (0000ms, 0746ms total)
T7764 074:525 JLINK_IsHalted()  returns FALSE (0000ms, 0746ms total)
T7764 074:627 JLINK_IsHalted()  returns FALSE (0000ms, 0746ms total)
T7764 074:728 JLINK_IsHalted()  returns FALSE (0000ms, 0746ms total)
T7764 074:830 JLINK_IsHalted()  returns FALSE (0000ms, 0746ms total)
T514C 074:931 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 14 42  returns 0x04 (0001ms, 0747ms total)
T7764 074:932 JLINK_IsHalted()  returns FALSE (0000ms, 0747ms total)
T7764 075:033 JLINK_IsHalted()  returns FALSE (0000ms, 0747ms total)
T7764 075:134 JLINK_IsHalted()  returns FALSE (0000ms, 0747ms total)
T7764 075:235 JLINK_IsHalted()  returns FALSE (0000ms, 0747ms total)
T7764 075:336 JLINK_IsHalted()  returns FALSE (0000ms, 0747ms total)
T7764 075:438 JLINK_IsHalted()  returns FALSE (0000ms, 0747ms total)
T514C 075:540 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 18 42  returns 0x04 (0000ms, 0747ms total)
T7764 075:541 JLINK_IsHalted()  returns FALSE (0000ms, 0748ms total)
T7764 075:641 JLINK_IsHalted()  returns FALSE (0000ms, 0748ms total)
T7764 075:742 JLINK_IsHalted()  returns FALSE (0000ms, 0748ms total)
T7764 075:844 JLINK_IsHalted()  returns FALSE (0000ms, 0748ms total)
T7764 075:945 JLINK_IsHalted()  returns FALSE (0000ms, 0748ms total)
T7764 076:046 JLINK_IsHalted()  returns FALSE (0000ms, 0748ms total)
T514C 076:148 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 18 42  returns 0x04 (0001ms, 0749ms total)
T7764 076:149 JLINK_IsHalted()  returns FALSE (0000ms, 0749ms total)
T7764 076:250 JLINK_IsHalted()  returns FALSE (0000ms, 0749ms total)
T7764 076:351 JLINK_IsHalted()  returns FALSE (0000ms, 0749ms total)
T7764 076:452 JLINK_IsHalted()  returns FALSE (0000ms, 0749ms total)
T7764 076:553 JLINK_IsHalted()  returns FALSE (0000ms, 0749ms total)
T7764 076:655 JLINK_IsHalted()  returns FALSE (0000ms, 0749ms total)
T514C 076:756 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 1C 42  returns 0x04 (0001ms, 0750ms total)
T7764 076:757 JLINK_IsHalted()  returns FALSE (0000ms, 0750ms total)
T7764 076:858 JLINK_IsHalted()  returns FALSE (0000ms, 0750ms total)
T7764 076:959 JLINK_IsHalted()  returns FALSE (0000ms, 0750ms total)
T7764 077:061 JLINK_IsHalted()  returns FALSE (0000ms, 0750ms total)
T7764 077:163 JLINK_IsHalted()  returns FALSE (0000ms, 0750ms total)
T7764 077:264 JLINK_IsHalted()  returns FALSE (0000ms, 0750ms total)
T514C 077:365 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 1C 42  returns 0x04 (0001ms, 0751ms total)
T7764 077:366 JLINK_IsHalted()  returns FALSE (0000ms, 0751ms total)
T7764 077:467 JLINK_IsHalted()  returns FALSE (0000ms, 0751ms total)
T7764 077:569 JLINK_IsHalted()  returns FALSE (0000ms, 0751ms total)
T7764 077:670 JLINK_IsHalted()  returns FALSE (0000ms, 0751ms total)
T7764 077:771 JLINK_IsHalted()  returns FALSE (0000ms, 0751ms total)
T7764 077:873 JLINK_IsHalted()  returns FALSE (0000ms, 0751ms total)
T514C 077:974 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 20 42  returns 0x04 (0000ms, 0751ms total)
T7764 077:975 JLINK_IsHalted()  returns FALSE (0000ms, 0751ms total)
T7764 078:076 JLINK_IsHalted()  returns FALSE (0000ms, 0751ms total)
T7764 078:177 JLINK_IsHalted()  returns FALSE (0000ms, 0751ms total)
T7764 078:278 JLINK_IsHalted()  returns FALSE (0000ms, 0751ms total)
T7764 078:379 JLINK_IsHalted()  returns FALSE (0000ms, 0751ms total)
T7764 078:480 JLINK_IsHalted()  returns FALSE (0000ms, 0751ms total)
T514C 078:582 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 24 42  returns 0x04 (0001ms, 0752ms total)
T7764 078:583 JLINK_IsHalted()  returns FALSE (0000ms, 0752ms total)
T7764 078:684 JLINK_IsHalted()  returns FALSE (0000ms, 0752ms total)
T7764 078:785 JLINK_IsHalted()  returns FALSE (0000ms, 0752ms total)
T7764 078:886 JLINK_IsHalted()  returns FALSE (0000ms, 0752ms total)
T7764 078:987 JLINK_IsHalted()  returns FALSE (0000ms, 0752ms total)
T7764 079:088 JLINK_IsHalted()  returns FALSE (0000ms, 0752ms total)
T514C 079:189 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 24 42  returns 0x04 (0000ms, 0752ms total)
T7764 079:190 JLINK_IsHalted()  returns FALSE (0000ms, 0752ms total)
T7764 079:291 JLINK_IsHalted()  returns FALSE (0000ms, 0752ms total)
T7764 079:393 JLINK_IsHalted()  returns FALSE (0000ms, 0752ms total)
T7764 079:494 JLINK_IsHalted()  returns FALSE (0000ms, 0752ms total)
T7764 079:595 JLINK_IsHalted()  returns FALSE (0000ms, 0752ms total)
T514C 079:696 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 28 42  returns 0x04 (0001ms, 0753ms total)
T7764 079:697 JLINK_IsHalted()  returns FALSE (0000ms, 0753ms total)
T7764 079:799 JLINK_IsHalted()  returns FALSE (0000ms, 0753ms total)
T7764 079:900 JLINK_IsHalted()  returns FALSE (0000ms, 0753ms total)
T7764 080:001 JLINK_IsHalted()  returns FALSE (0000ms, 0753ms total)
T7764 080:102 JLINK_IsHalted()  returns FALSE (0000ms, 0753ms total)
T7764 080:204 JLINK_IsHalted()  returns FALSE (0000ms, 0753ms total)
T514C 080:305 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 28 42  returns 0x04 (0001ms, 0754ms total)
T7764 080:306 JLINK_IsHalted()  returns FALSE (0000ms, 0754ms total)
T7764 080:407 JLINK_IsHalted()  returns FALSE (0000ms, 0754ms total)
T7764 080:509 JLINK_IsHalted()  returns FALSE (0000ms, 0754ms total)
T7764 080:611 JLINK_IsHalted()  returns FALSE (0000ms, 0754ms total)
T7764 080:712 JLINK_IsHalted()  returns FALSE (0000ms, 0754ms total)
T7764 080:813 JLINK_IsHalted()  returns FALSE (0000ms, 0754ms total)
T514C 080:915 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 2C 42  returns 0x04 (0001ms, 0755ms total)
T7764 080:916 JLINK_IsHalted()  returns FALSE (0000ms, 0755ms total)
T7764 081:017 JLINK_IsHalted()  returns FALSE (0000ms, 0755ms total)
T7764 081:118 JLINK_IsHalted()  returns FALSE (0000ms, 0755ms total)
T7764 081:220 JLINK_IsHalted()  returns FALSE (0000ms, 0755ms total)
T7764 081:321 JLINK_IsHalted()  returns FALSE (0000ms, 0755ms total)
T7764 081:422 JLINK_IsHalted()  returns FALSE (0000ms, 0755ms total)
T514C 081:524 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 30 42  returns 0x04 (0001ms, 0756ms total)
T7764 081:525 JLINK_IsHalted()  returns FALSE (0000ms, 0756ms total)
T7764 081:626 JLINK_IsHalted()  returns FALSE (0000ms, 0756ms total)
T7764 081:728 JLINK_IsHalted()  returns FALSE (0000ms, 0756ms total)
T7764 081:830 JLINK_IsHalted()  returns FALSE (0000ms, 0756ms total)
T7764 081:931 JLINK_IsHalted()  returns FALSE (0000ms, 0756ms total)
T7764 082:032 JLINK_IsHalted()  returns FALSE (0000ms, 0756ms total)
T514C 082:134 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 30 42  returns 0x04 (0000ms, 0756ms total)
T7764 082:135 JLINK_IsHalted()  returns FALSE (0000ms, 0756ms total)
T7764 082:236 JLINK_IsHalted()  returns FALSE (0000ms, 0756ms total)
T7764 082:337 JLINK_IsHalted()  returns FALSE (0000ms, 0756ms total)
T7764 082:438 JLINK_IsHalted()  returns FALSE (0000ms, 0756ms total)
T7764 082:540 JLINK_IsHalted()  returns FALSE (0000ms, 0756ms total)
T7764 082:641 JLINK_IsHalted()  returns FALSE (0000ms, 0756ms total)
T514C 082:742 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 34 42  returns 0x04 (0001ms, 0757ms total)
T7764 082:743 JLINK_IsHalted()  returns FALSE (0000ms, 0757ms total)
T7764 082:845 JLINK_IsHalted()  returns FALSE (0000ms, 0757ms total)
T7764 082:946 JLINK_IsHalted()  returns FALSE (0000ms, 0757ms total)
T7764 083:048 JLINK_IsHalted()  returns FALSE (0000ms, 0757ms total)
T7764 083:149 JLINK_IsHalted()  returns FALSE (0000ms, 0757ms total)
T7764 083:250 JLINK_IsHalted()  returns FALSE (0000ms, 0757ms total)
T514C 083:351 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 34 42  returns 0x04 (0000ms, 0757ms total)
T7764 083:352 JLINK_IsHalted()  returns FALSE (0000ms, 0757ms total)
T7764 083:454 JLINK_IsHalted()  returns FALSE (0000ms, 0757ms total)
T7764 083:555 JLINK_IsHalted()  returns FALSE (0000ms, 0757ms total)
T7764 083:657 JLINK_IsHalted()  returns FALSE (0000ms, 0757ms total)
T7764 083:758 JLINK_IsHalted()  returns FALSE (0000ms, 0757ms total)
T7764 083:859 JLINK_IsHalted()  returns FALSE (0000ms, 0757ms total)
T514C 083:961 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 38 42  returns 0x04 (0001ms, 0758ms total)
T7764 083:962 JLINK_IsHalted()  returns FALSE (0000ms, 0758ms total)
T7764 084:063 JLINK_IsHalted()  returns FALSE (0000ms, 0758ms total)
T7764 084:164 JLINK_IsHalted()  returns FALSE (0000ms, 0758ms total)
T7764 084:265 JLINK_IsHalted()  returns FALSE (0000ms, 0758ms total)
T7764 084:366 JLINK_IsHalted()  returns FALSE (0000ms, 0758ms total)
T7764 084:467 JLINK_IsHalted()  returns FALSE (0000ms, 0758ms total)
T514C 084:569 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 3C 42  returns 0x04 (0000ms, 0758ms total)
T7764 084:570 JLINK_IsHalted()  returns FALSE (0000ms, 0758ms total)
T7764 084:671 JLINK_IsHalted()  returns FALSE (0000ms, 0758ms total)
T7764 084:772 JLINK_IsHalted()  returns FALSE (0000ms, 0758ms total)
T7764 084:874 JLINK_IsHalted()  returns FALSE (0000ms, 0758ms total)
T7764 084:975 JLINK_IsHalted()  returns FALSE (0000ms, 0758ms total)
T7764 085:076 JLINK_IsHalted()  returns FALSE (0000ms, 0758ms total)
T514C 085:177 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 3C 42  returns 0x04 (0000ms, 0758ms total)
T7764 085:178 JLINK_IsHalted()  returns FALSE (0000ms, 0758ms total)
T7764 085:279 JLINK_IsHalted()  returns FALSE (0000ms, 0758ms total)
T7764 085:381 JLINK_IsHalted()  returns FALSE (0000ms, 0758ms total)
T7764 085:482 JLINK_IsHalted()  returns FALSE (0000ms, 0758ms total)
T7764 085:583 JLINK_IsHalted()  returns FALSE (0000ms, 0758ms total)
T7764 085:684 JLINK_IsHalted()  returns FALSE (0000ms, 0758ms total)
T514C 085:785 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 40 42  returns 0x04 (0000ms, 0758ms total)
T7764 085:786 JLINK_IsHalted()  returns FALSE (0000ms, 0758ms total)
T7764 085:887 JLINK_IsHalted()  returns FALSE (0000ms, 0758ms total)
T7764 085:989 JLINK_IsHalted()  returns FALSE (0000ms, 0758ms total)
T7764 086:090 JLINK_IsHalted()  returns FALSE (0000ms, 0758ms total)
T7764 086:191 JLINK_IsHalted()  returns FALSE (0000ms, 0758ms total)
T7764 086:292 JLINK_IsHalted()  returns FALSE (0000ms, 0758ms total)
T514C 086:393 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 40 42  returns 0x04 (0001ms, 0759ms total)
T7764 086:394 JLINK_IsHalted()  returns FALSE (0000ms, 0759ms total)
T7764 086:496 JLINK_IsHalted()  returns FALSE (0000ms, 0759ms total)
T7764 086:597 JLINK_IsHalted()  returns FALSE (0000ms, 0759ms total)
T7764 086:698 JLINK_IsHalted()  returns FALSE (0000ms, 0759ms total)
T7764 086:799 JLINK_IsHalted()  returns FALSE (0000ms, 0759ms total)
T7764 086:900 JLINK_IsHalted()  returns FALSE (0000ms, 0759ms total)
T514C 087:002 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 44 42  returns 0x04 (0001ms, 0760ms total)
T7764 087:003 JLINK_IsHalted()  returns FALSE (0001ms, 0761ms total)
T7764 087:105 JLINK_IsHalted()  returns FALSE (0000ms, 0760ms total)
T7764 087:206 JLINK_IsHalted()  returns FALSE (0000ms, 0760ms total)
T7764 087:307 JLINK_IsHalted()  returns FALSE (0000ms, 0760ms total)
T7764 087:408 JLINK_IsHalted()  returns FALSE (0000ms, 0760ms total)
T514C 087:509 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 44 42  returns 0x04 (0000ms, 0760ms total)
T7764 087:510 JLINK_IsHalted()  returns FALSE (0000ms, 0760ms total)
T7764 087:612 JLINK_IsHalted()  returns FALSE (0000ms, 0760ms total)
T7764 087:713 JLINK_IsHalted()  returns FALSE (0000ms, 0760ms total)
T7764 087:814 JLINK_IsHalted()  returns FALSE (0000ms, 0760ms total)
T7764 087:916 JLINK_IsHalted()  returns FALSE (0000ms, 0760ms total)
T7764 088:017 JLINK_IsHalted()  returns FALSE (0000ms, 0760ms total)
T514C 088:118 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 48 42  returns 0x04 (0000ms, 0760ms total)
T7764 088:119 JLINK_IsHalted()  returns FALSE (0000ms, 0760ms total)
T7764 088:220 JLINK_IsHalted()  returns FALSE (0000ms, 0760ms total)
T7764 088:321 JLINK_IsHalted()  returns FALSE (0000ms, 0760ms total)
T7764 088:422 JLINK_IsHalted()  returns FALSE (0000ms, 0760ms total)
T7764 088:523 JLINK_IsHalted()  returns FALSE (0000ms, 0760ms total)
T7764 088:625 JLINK_IsHalted()  returns FALSE (0000ms, 0760ms total)
T514C 088:726 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 4C 42  returns 0x04 (0001ms, 0761ms total)
T7764 088:727 JLINK_IsHalted()  returns FALSE (0000ms, 0761ms total)
T7764 088:829 JLINK_IsHalted()  returns FALSE (0000ms, 0761ms total)
T7764 088:930 JLINK_IsHalted()  returns FALSE (0000ms, 0761ms total)
T7764 089:031 JLINK_IsHalted()  returns FALSE (0000ms, 0761ms total)
T7764 089:132 JLINK_IsHalted()  returns FALSE (0000ms, 0761ms total)
T7764 089:233 JLINK_IsHalted()  returns FALSE (0000ms, 0761ms total)
T514C 089:334 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 4C 42  returns 0x04 (0001ms, 0762ms total)
T7764 089:335 JLINK_IsHalted()  returns FALSE (0000ms, 0762ms total)
T7764 089:437 JLINK_IsHalted()  returns FALSE (0000ms, 0762ms total)
T7764 089:538 JLINK_IsHalted()  returns FALSE (0000ms, 0762ms total)
T7764 089:640 JLINK_IsHalted()  returns FALSE (0000ms, 0762ms total)
T7764 089:741 JLINK_IsHalted()  returns FALSE (0000ms, 0762ms total)
T7764 089:842 JLINK_IsHalted()  returns FALSE (0000ms, 0762ms total)
T514C 089:943 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 50 42  returns 0x04 (0001ms, 0763ms total)
T7764 089:944 JLINK_IsHalted()  returns FALSE (0000ms, 0763ms total)
T7764 090:046 JLINK_IsHalted()  returns FALSE (0000ms, 0763ms total)
T7764 090:147 JLINK_IsHalted()  returns FALSE (0000ms, 0763ms total)
T7764 090:248 JLINK_IsHalted()  returns FALSE (0000ms, 0763ms total)
T7764 090:349 JLINK_IsHalted()  returns FALSE (0000ms, 0763ms total)
T7764 090:450 JLINK_IsHalted()  returns FALSE (0000ms, 0763ms total)
T514C 090:551 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 54 42  returns 0x04 (0001ms, 0764ms total)
T7764 090:552 JLINK_IsHalted()  returns FALSE (0000ms, 0764ms total)
T7764 090:653 JLINK_IsHalted()  returns FALSE (0000ms, 0764ms total)
T7764 090:754 JLINK_IsHalted()  returns FALSE (0000ms, 0764ms total)
T7764 090:855 JLINK_IsHalted()  returns FALSE (0000ms, 0764ms total)
T7764 090:956 JLINK_IsHalted()  returns FALSE (0000ms, 0764ms total)
T7764 091:058 JLINK_IsHalted()  returns FALSE (0000ms, 0764ms total)
T514C 091:159 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 54 42  returns 0x04 (0001ms, 0765ms total)
T7764 091:160 JLINK_IsHalted()  returns FALSE (0000ms, 0765ms total)
T7764 091:261 JLINK_IsHalted()  returns FALSE (0000ms, 0765ms total)
T7764 091:362 JLINK_IsHalted()  returns FALSE (0000ms, 0765ms total)
T7764 091:463 JLINK_IsHalted()  returns FALSE (0000ms, 0765ms total)
T7764 091:564 JLINK_IsHalted()  returns FALSE (0000ms, 0765ms total)
T7764 091:666 JLINK_IsHalted()  returns FALSE (0000ms, 0765ms total)
T514C 091:767 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 58 42  returns 0x04 (0000ms, 0765ms total)
T7764 091:768 JLINK_IsHalted()  returns FALSE (0000ms, 0765ms total)
T7764 091:870 JLINK_IsHalted()  returns FALSE (0000ms, 0765ms total)
T7764 091:971 JLINK_IsHalted()  returns FALSE (0000ms, 0765ms total)
T7764 092:072 JLINK_IsHalted()  returns FALSE (0000ms, 0765ms total)
T7764 092:173 JLINK_IsHalted()  returns FALSE (0000ms, 0765ms total)
T514C 092:275 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 58 42  returns 0x04 (0000ms, 0765ms total)
T7764 092:276 JLINK_IsHalted()  returns FALSE (0000ms, 0765ms total)
T7764 092:377 JLINK_IsHalted()  returns FALSE (0000ms, 0765ms total)
T7764 092:478 JLINK_IsHalted()  returns FALSE (0000ms, 0765ms total)
T7764 092:579 JLINK_IsHalted()  returns FALSE (0000ms, 0765ms total)
T7764 092:680 JLINK_IsHalted()  returns FALSE (0000ms, 0765ms total)
T7764 092:782 JLINK_IsHalted()  returns FALSE (0000ms, 0765ms total)
T514C 092:883 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 5C 42  returns 0x04 (0001ms, 0766ms total)
T7764 092:884 JLINK_IsHalted()  returns FALSE (0000ms, 0766ms total)
T7764 092:985 JLINK_IsHalted()  returns FALSE (0000ms, 0766ms total)
T7764 093:086 JLINK_IsHalted()  returns FALSE (0000ms, 0766ms total)
T7764 093:188 JLINK_IsHalted()  returns FALSE (0000ms, 0766ms total)
T7764 093:289 JLINK_IsHalted()  returns FALSE (0000ms, 0766ms total)
T7764 093:390 JLINK_IsHalted()  returns FALSE (0000ms, 0766ms total)
T514C 093:491 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 5C 42  returns 0x04 (0001ms, 0767ms total)
T7764 093:492 JLINK_IsHalted()  returns FALSE (0000ms, 0767ms total)
T7764 093:593 JLINK_IsHalted()  returns FALSE (0000ms, 0767ms total)
T7764 093:695 JLINK_IsHalted()  returns FALSE (0000ms, 0767ms total)
T7764 093:796 JLINK_IsHalted()  returns FALSE (0000ms, 0767ms total)
T7764 093:897 JLINK_IsHalted()  returns FALSE (0000ms, 0767ms total)
T7764 093:999 JLINK_IsHalted()  returns FALSE (0000ms, 0767ms total)
T514C 094:100 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 60 42  returns 0x04 (0000ms, 0767ms total)
T7764 094:101 JLINK_IsHalted()  returns FALSE (0000ms, 0767ms total)
T7764 094:202 JLINK_IsHalted()  returns FALSE (0000ms, 0767ms total)
T7764 094:304 JLINK_IsHalted()  returns FALSE (0000ms, 0767ms total)
T7764 094:405 JLINK_IsHalted()  returns FALSE (0000ms, 0767ms total)
T7764 094:507 JLINK_IsHalted()  returns FALSE (0000ms, 0767ms total)
T7764 094:608 JLINK_IsHalted()  returns FALSE (0000ms, 0767ms total)
T514C 094:710 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 64 42  returns 0x04 (0001ms, 0768ms total)
T7764 094:711 JLINK_IsHalted()  returns FALSE (0000ms, 0768ms total)
T7764 094:812 JLINK_IsHalted()  returns FALSE (0000ms, 0768ms total)
T7764 094:913 JLINK_IsHalted()  returns FALSE (0000ms, 0768ms total)
T7764 095:014 JLINK_IsHalted()  returns FALSE (0000ms, 0768ms total)
T7764 095:116 JLINK_IsHalted()  returns FALSE (0000ms, 0768ms total)
T7764 095:217 JLINK_IsHalted()  returns FALSE (0000ms, 0768ms total)
T514C 095:318 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 64 42  returns 0x04 (0001ms, 0769ms total)
T7764 095:319 JLINK_IsHalted()  returns FALSE (0000ms, 0769ms total)
T7764 095:420 JLINK_IsHalted()  returns FALSE (0000ms, 0769ms total)
T7764 095:521 JLINK_IsHalted()  returns FALSE (0000ms, 0769ms total)
T7764 095:623 JLINK_IsHalted()  returns FALSE (0000ms, 0769ms total)
T7764 095:724 JLINK_IsHalted()  returns FALSE (0000ms, 0769ms total)
T7764 095:825 JLINK_IsHalted()  returns FALSE (0000ms, 0769ms total)
T514C 095:926 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 68 42  returns 0x04 (0000ms, 0769ms total)
T7764 095:927 JLINK_IsHalted()  returns FALSE (0000ms, 0769ms total)
T7764 096:029 JLINK_IsHalted()  returns FALSE (0000ms, 0769ms total)
T7764 096:130 JLINK_IsHalted()  returns FALSE (0000ms, 0769ms total)
T7764 096:231 JLINK_IsHalted()  returns FALSE (0000ms, 0769ms total)
T7764 096:333 JLINK_IsHalted()  returns FALSE (0000ms, 0769ms total)
T7764 096:435 JLINK_IsHalted()  returns FALSE (0000ms, 0769ms total)
T514C 096:536 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 6C 42  returns 0x04 (0000ms, 0769ms total)
T7764 096:537 JLINK_IsHalted()  returns FALSE (0000ms, 0769ms total)
T7764 096:638 JLINK_IsHalted()  returns FALSE (0000ms, 0769ms total)
T7764 096:739 JLINK_IsHalted()  returns FALSE (0000ms, 0769ms total)
T7764 096:841 JLINK_IsHalted()  returns FALSE (0000ms, 0769ms total)
T7764 096:942 JLINK_IsHalted()  returns FALSE (0000ms, 0769ms total)
T7764 097:043 JLINK_IsHalted()  returns FALSE (0000ms, 0769ms total)
T514C 097:144 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 6C 42  returns 0x04 (0001ms, 0770ms total)
T7764 097:145 JLINK_IsHalted()  returns FALSE (0000ms, 0770ms total)
T7764 097:246 JLINK_IsHalted()  returns FALSE (0000ms, 0770ms total)
T7764 097:347 JLINK_IsHalted()  returns FALSE (0000ms, 0770ms total)
T7764 097:449 JLINK_IsHalted()  returns FALSE (0000ms, 0770ms total)
T7764 097:550 JLINK_IsHalted()  returns FALSE (0000ms, 0770ms total)
T7764 097:652 JLINK_IsHalted()  returns FALSE (0000ms, 0770ms total)
T514C 097:753 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 70 42  returns 0x04 (0000ms, 0770ms total)
T7764 097:754 JLINK_IsHalted()  returns FALSE (0000ms, 0770ms total)
T7764 097:856 JLINK_IsHalted()  returns FALSE (0000ms, 0770ms total)
T7764 097:957 JLINK_IsHalted()  returns FALSE (0000ms, 0770ms total)
T7764 098:059 JLINK_IsHalted()  returns FALSE (0000ms, 0770ms total)
T7764 098:160 JLINK_IsHalted()  returns FALSE (0000ms, 0770ms total)
T7764 098:261 JLINK_IsHalted()  returns FALSE (0000ms, 0770ms total)
T514C 098:362 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 70 42  returns 0x04 (0001ms, 0771ms total)
T7764 098:363 JLINK_IsHalted()  returns FALSE (0000ms, 0771ms total)
T7764 098:465 JLINK_IsHalted()  returns FALSE (0000ms, 0771ms total)
T7764 098:566 JLINK_IsHalted()  returns FALSE (0000ms, 0771ms total)
T7764 098:667 JLINK_IsHalted()  returns FALSE (0000ms, 0771ms total)
T7764 098:768 JLINK_IsHalted()  returns FALSE (0000ms, 0771ms total)
T7764 098:870 JLINK_IsHalted()  returns FALSE (0000ms, 0771ms total)
T514C 098:971 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 74 42  returns 0x04 (0001ms, 0772ms total)
T7764 098:972 JLINK_IsHalted()  returns FALSE (0000ms, 0772ms total)
T7764 099:074 JLINK_IsHalted()  returns FALSE (0000ms, 0772ms total)
T7764 099:175 JLINK_IsHalted()  returns FALSE (0000ms, 0772ms total)
T7764 099:276 JLINK_IsHalted()  returns FALSE (0000ms, 0772ms total)
T7764 099:377 JLINK_IsHalted()  returns FALSE (0000ms, 0772ms total)
T7764 099:479 JLINK_IsHalted()  returns FALSE (0000ms, 0772ms total)
T514C 099:580 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 78 42  returns 0x04 (0001ms, 0773ms total)
T7764 099:581 JLINK_IsHalted()  returns FALSE (0000ms, 0773ms total)
T7764 099:682 JLINK_IsHalted()  returns FALSE (0000ms, 0773ms total)
T7764 099:784 JLINK_IsHalted()  returns FALSE (0000ms, 0773ms total)
T7764 099:884 JLINK_IsHalted()  returns FALSE (0000ms, 0773ms total)
T7764 099:986 JLINK_IsHalted()  returns FALSE (0000ms, 0773ms total)
T514C 100:087 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 78 42  returns 0x04 (0000ms, 0773ms total)
T7764 100:088 JLINK_IsHalted()  returns FALSE (0000ms, 0774ms total)
T7764 100:190 JLINK_IsHalted()  returns FALSE (0000ms, 0774ms total)
T7764 100:291 JLINK_IsHalted()  returns FALSE (0000ms, 0774ms total)
T7764 100:392 JLINK_IsHalted()  returns FALSE (0000ms, 0774ms total)
T7764 100:493 JLINK_IsHalted()  returns FALSE (0000ms, 0774ms total)
T7764 100:595 JLINK_IsHalted()  returns FALSE (0000ms, 0774ms total)
T514C 100:696 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 7C 42  returns 0x04 (0001ms, 0775ms total)
T7764 100:697 JLINK_IsHalted()  returns FALSE (0000ms, 0775ms total)
T7764 100:798 JLINK_IsHalted()  returns FALSE (0000ms, 0775ms total)
T7764 100:900 JLINK_IsHalted()  returns FALSE (0000ms, 0775ms total)
T7764 101:001 JLINK_IsHalted()  returns FALSE (0000ms, 0775ms total)
T7764 101:102 JLINK_IsHalted()  returns FALSE (0000ms, 0775ms total)
T7764 101:203 JLINK_IsHalted()  returns FALSE (0000ms, 0775ms total)
T514C 101:304 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 7C 42  returns 0x04 (0001ms, 0776ms total)
T7764 101:305 JLINK_IsHalted()  returns FALSE (0000ms, 0776ms total)
T7764 101:406 JLINK_IsHalted()  returns FALSE (0000ms, 0776ms total)
T7764 101:507 JLINK_IsHalted()  returns FALSE (0000ms, 0776ms total)
T7764 101:609 JLINK_IsHalted()  returns FALSE (0000ms, 0776ms total)
T7764 101:711 JLINK_IsHalted()  returns FALSE (0000ms, 0776ms total)
T7764 101:812 JLINK_IsHalted()  returns FALSE (0000ms, 0776ms total)
T514C 101:913 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 80 42  returns 0x04 (0001ms, 0777ms total)
T7764 101:914 JLINK_IsHalted()  returns FALSE (0000ms, 0777ms total)
T7764 102:015 JLINK_IsHalted()  returns FALSE (0000ms, 0777ms total)
T7764 102:117 JLINK_IsHalted()  returns FALSE (0000ms, 0777ms total)
T7764 102:218 JLINK_IsHalted()  returns FALSE (0000ms, 0777ms total)
T7764 102:319 JLINK_IsHalted()  returns FALSE (0000ms, 0777ms total)
T7764 102:420 JLINK_IsHalted()  returns FALSE (0000ms, 0777ms total)
T514C 102:521 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 82 42  returns 0x04 (0000ms, 0777ms total)
T7764 102:522 JLINK_IsHalted()  returns FALSE (0000ms, 0778ms total)
T7764 102:624 JLINK_IsHalted()  returns FALSE (0000ms, 0778ms total)
T7764 102:725 JLINK_IsHalted()  returns FALSE (0000ms, 0778ms total)
T7764 102:826 JLINK_IsHalted()  returns FALSE (0000ms, 0778ms total)
T7764 102:927 JLINK_IsHalted()  returns FALSE (0000ms, 0778ms total)
T7764 103:029 JLINK_IsHalted()  returns FALSE (0000ms, 0778ms total)
T514C 103:130 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 82 42  returns 0x04 (0000ms, 0778ms total)
T7764 103:131 JLINK_IsHalted()  returns FALSE (0000ms, 0778ms total)
T7764 103:232 JLINK_IsHalted()  returns FALSE (0000ms, 0778ms total)
T7764 103:334 JLINK_IsHalted()  returns FALSE (0000ms, 0778ms total)
T7764 103:435 JLINK_IsHalted()  returns FALSE (0000ms, 0778ms total)
T7764 103:536 JLINK_IsHalted()  returns FALSE (0000ms, 0778ms total)
T7764 103:638 JLINK_IsHalted()  returns FALSE (0000ms, 0778ms total)
T514C 103:739 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 84 42  returns 0x04 (0000ms, 0778ms total)
T7764 103:740 JLINK_IsHalted()  returns FALSE (0000ms, 0778ms total)
T7764 103:841 JLINK_IsHalted()  returns FALSE (0000ms, 0778ms total)
T7764 103:943 JLINK_IsHalted()  returns FALSE (0000ms, 0778ms total)
T7764 104:044 JLINK_IsHalted()  returns FALSE (0000ms, 0778ms total)
T7764 104:146 JLINK_IsHalted()  returns FALSE (0000ms, 0778ms total)
T7764 104:247 JLINK_IsHalted()  returns FALSE (0000ms, 0778ms total)
T514C 104:348 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 84 42  returns 0x04 (0000ms, 0778ms total)
T7764 104:349 JLINK_IsHalted()  returns FALSE (0000ms, 0778ms total)
T7764 104:450 JLINK_IsHalted()  returns FALSE (0000ms, 0778ms total)
T7764 104:551 JLINK_IsHalted()  returns FALSE (0000ms, 0778ms total)
T7764 104:652 JLINK_IsHalted()  returns FALSE (0000ms, 0778ms total)
T7764 104:753 JLINK_IsHalted()  returns FALSE (0000ms, 0778ms total)
T7764 104:855 JLINK_IsHalted()  returns FALSE (0000ms, 0778ms total)
T514C 104:956 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 86 42  returns 0x04 (0001ms, 0779ms total)
T7764 104:957 JLINK_IsHalted()  returns FALSE (0000ms, 0779ms total)
T7764 105:059 JLINK_IsHalted()  returns FALSE (0000ms, 0779ms total)
T7764 105:160 JLINK_IsHalted()  returns FALSE (0000ms, 0779ms total)
T7764 105:261 JLINK_IsHalted()  returns FALSE (0000ms, 0779ms total)
T7764 105:362 JLINK_IsHalted()  returns FALSE (0000ms, 0779ms total)
T7764 105:463 JLINK_IsHalted()  returns FALSE (0000ms, 0779ms total)
T514C 105:565 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 88 42  returns 0x04 (0001ms, 0780ms total)
T7764 105:566 JLINK_IsHalted()  returns FALSE (0001ms, 0781ms total)
T7764 105:668 JLINK_IsHalted()  returns FALSE (0000ms, 0780ms total)
T7764 105:769 JLINK_IsHalted()  returns FALSE (0000ms, 0780ms total)
T7764 105:870 JLINK_IsHalted()  returns FALSE (0000ms, 0780ms total)
T7764 105:971 JLINK_IsHalted()  returns FALSE (0000ms, 0780ms total)
T7764 106:073 JLINK_IsHalted()  returns FALSE (0000ms, 0780ms total)
T514C 106:174 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 88 42  returns 0x04 (0000ms, 0780ms total)
T7764 106:175 JLINK_IsHalted()  returns FALSE (0000ms, 0781ms total)
T7764 106:276 JLINK_IsHalted()  returns FALSE (0000ms, 0781ms total)
T7764 106:377 JLINK_IsHalted()  returns FALSE (0000ms, 0781ms total)
T7764 106:479 JLINK_IsHalted()  returns FALSE (0000ms, 0781ms total)
T7764 106:580 JLINK_IsHalted()  returns FALSE (0000ms, 0781ms total)
T7764 106:681 JLINK_IsHalted()  returns FALSE (0000ms, 0781ms total)
T514C 106:783 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 8A 42  returns 0x04 (0000ms, 0781ms total)
T7764 106:784 JLINK_IsHalted()  returns FALSE (0000ms, 0781ms total)
T7764 106:885 JLINK_IsHalted()  returns FALSE (0000ms, 0781ms total)
T7764 106:986 JLINK_IsHalted()  returns FALSE (0000ms, 0781ms total)
T7764 107:087 JLINK_IsHalted()  returns FALSE (0000ms, 0781ms total)
T7764 107:188 JLINK_IsHalted()  returns FALSE (0000ms, 0781ms total)
T514C 107:290 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 8A 42  returns 0x04 (0001ms, 0782ms total)
T7764 107:291 JLINK_IsHalted()  returns FALSE (0000ms, 0782ms total)
T7764 107:393 JLINK_IsHalted()  returns FALSE (0000ms, 0782ms total)
T7764 107:494 JLINK_IsHalted()  returns FALSE (0000ms, 0782ms total)
T7764 107:594 JLINK_IsHalted()  returns FALSE (0000ms, 0782ms total)
T7764 107:696 JLINK_IsHalted()  returns FALSE (0000ms, 0782ms total)
T7764 107:798 JLINK_IsHalted()  returns FALSE (0000ms, 0782ms total)
T514C 107:899 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 8C 42  returns 0x04 (0001ms, 0783ms total)
T7764 107:900 JLINK_IsHalted()  returns FALSE (0000ms, 0783ms total)
T7764 108:001 JLINK_IsHalted()  returns FALSE (0000ms, 0783ms total)
T7764 108:102 JLINK_IsHalted()  returns FALSE (0000ms, 0783ms total)
T7764 108:203 JLINK_IsHalted()  returns FALSE (0000ms, 0783ms total)
T7764 108:304 JLINK_IsHalted()  returns FALSE (0000ms, 0783ms total)
T7764 108:405 JLINK_IsHalted()  returns FALSE (0000ms, 0783ms total)
T514C 108:507 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 8C 42  returns 0x04 (0000ms, 0783ms total)
T7764 108:508 JLINK_IsHalted()  returns FALSE (0000ms, 0784ms total)
T7764 108:609 JLINK_IsHalted()  returns FALSE (0000ms, 0784ms total)
T7764 108:710 JLINK_IsHalted()  returns FALSE (0000ms, 0784ms total)
T7764 108:811 JLINK_IsHalted()  returns FALSE (0000ms, 0784ms total)
T7764 108:912 JLINK_IsHalted()  returns FALSE (0000ms, 0784ms total)
T7764 109:013 JLINK_IsHalted()  returns FALSE (0000ms, 0784ms total)
T514C 109:115 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 8E 42  returns 0x04 (0000ms, 0784ms total)
T7764 109:116 JLINK_IsHalted()  returns FALSE (0000ms, 0784ms total)
T7764 109:217 JLINK_IsHalted()  returns FALSE (0000ms, 0784ms total)
T7764 109:319 JLINK_IsHalted()  returns FALSE (0000ms, 0784ms total)
T7764 109:420 JLINK_IsHalted()  returns FALSE (0000ms, 0784ms total)
T7764 109:521 JLINK_IsHalted()  returns FALSE (0000ms, 0784ms total)
T7764 109:623 JLINK_IsHalted()  returns FALSE (0000ms, 0784ms total)
T514C 109:724 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 90 42  returns 0x04 (0001ms, 0785ms total)
T7764 109:725 JLINK_IsHalted()  returns FALSE (0000ms, 0785ms total)
T7764 109:826 JLINK_IsHalted()  returns FALSE (0000ms, 0785ms total)
T7764 109:927 JLINK_IsHalted()  returns FALSE (0000ms, 0785ms total)
T7764 110:028 JLINK_IsHalted()  returns FALSE (0000ms, 0785ms total)
T7764 110:129 JLINK_IsHalted()  returns FALSE (0000ms, 0785ms total)
T7764 110:231 JLINK_IsHalted()  returns FALSE (0000ms, 0785ms total)
T514C 110:333 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 90 42  returns 0x04 (0000ms, 0785ms total)
T7764 110:334 JLINK_IsHalted()  returns FALSE (0000ms, 0785ms total)
T7764 110:435 JLINK_IsHalted()  returns FALSE (0000ms, 0785ms total)
T7764 110:536 JLINK_IsHalted()  returns FALSE (0000ms, 0785ms total)
T7764 110:637 JLINK_IsHalted()  returns FALSE (0000ms, 0785ms total)
T7764 110:738 JLINK_IsHalted()  returns FALSE (0000ms, 0785ms total)
T7764 110:839 JLINK_IsHalted()  returns FALSE (0000ms, 0785ms total)
T514C 110:940 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 92 42  returns 0x04 (0001ms, 0786ms total)
T7764 110:941 JLINK_IsHalted()  returns FALSE (0000ms, 0786ms total)
T7764 111:042 JLINK_IsHalted()  returns FALSE (0000ms, 0786ms total)
T7764 111:144 JLINK_IsHalted()  returns FALSE (0000ms, 0786ms total)
T7764 111:245 JLINK_IsHalted()  returns FALSE (0000ms, 0786ms total)
T7764 111:346 JLINK_IsHalted()  returns FALSE (0000ms, 0786ms total)
T7764 111:447 JLINK_IsHalted()  returns FALSE (0000ms, 0786ms total)
T514C 111:548 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 94 42  returns 0x04 (0001ms, 0787ms total)
T7764 111:549 JLINK_IsHalted()  returns FALSE (0000ms, 0787ms total)
T7764 111:650 JLINK_IsHalted()  returns FALSE (0000ms, 0787ms total)
T7764 111:751 JLINK_IsHalted()  returns FALSE (0000ms, 0787ms total)
T7764 111:852 JLINK_IsHalted()  returns FALSE (0000ms, 0787ms total)
T7764 111:953 JLINK_IsHalted()  returns FALSE (0000ms, 0787ms total)
T514C 112:054 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 94 42  returns 0x04 (0000ms, 0787ms total)
T7764 112:055 JLINK_IsHalted()  returns FALSE (0000ms, 0788ms total)
T7764 112:157 JLINK_IsHalted()  returns FALSE (0000ms, 0788ms total)
T7764 112:258 JLINK_IsHalted()  returns FALSE (0000ms, 0788ms total)
T7764 112:359 JLINK_IsHalted()  returns FALSE (0000ms, 0788ms total)
T7764 112:460 JLINK_IsHalted()  returns FALSE (0000ms, 0788ms total)
T7764 112:562 JLINK_IsHalted()  returns FALSE (0000ms, 0788ms total)
T514C 112:663 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 96 42  returns 0x04 (0000ms, 0788ms total)
T7764 112:664 JLINK_IsHalted()  returns FALSE (0000ms, 0788ms total)
T7764 112:766 JLINK_IsHalted()  returns FALSE (0000ms, 0788ms total)
T7764 112:867 JLINK_IsHalted()  returns FALSE (0000ms, 0788ms total)
T7764 112:968 JLINK_IsHalted()  returns FALSE (0000ms, 0788ms total)
T7764 113:069 JLINK_IsHalted()  returns FALSE (0000ms, 0788ms total)
T7764 113:171 JLINK_IsHalted()  returns FALSE (0000ms, 0788ms total)
T514C 113:271 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 96 42  returns 0x04 (0001ms, 0789ms total)
T7764 113:272 JLINK_IsHalted()  returns FALSE (0001ms, 0790ms total)
T7764 113:374 JLINK_IsHalted()  returns FALSE (0000ms, 0789ms total)
T7764 113:475 JLINK_IsHalted()  returns FALSE (0000ms, 0789ms total)
T7764 113:577 JLINK_IsHalted()  returns FALSE (0000ms, 0789ms total)
T7764 113:678 JLINK_IsHalted()  returns FALSE (0000ms, 0789ms total)
T7764 113:780 JLINK_IsHalted()  returns FALSE (0000ms, 0789ms total)
T514C 113:881 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 98 42  returns 0x04 (0000ms, 0789ms total)
T7764 113:882 JLINK_IsHalted()  returns FALSE (0000ms, 0789ms total)
T7764 113:983 JLINK_IsHalted()  returns FALSE (0000ms, 0789ms total)
T7764 114:084 JLINK_IsHalted()  returns FALSE (0000ms, 0789ms total)
T7764 114:185 JLINK_IsHalted()  returns FALSE (0000ms, 0789ms total)
T7764 114:286 JLINK_IsHalted()  returns FALSE (0000ms, 0789ms total)
T7764 114:387 JLINK_IsHalted()  returns FALSE (0000ms, 0789ms total)
T514C 114:488 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 98 42  returns 0x04 (0000ms, 0789ms total)
T7764 114:489 JLINK_IsHalted()  returns FALSE (0000ms, 0789ms total)
T7764 114:590 JLINK_IsHalted()  returns FALSE (0000ms, 0789ms total)
T7764 114:691 JLINK_IsHalted()  returns FALSE (0000ms, 0789ms total)
T7764 114:792 JLINK_IsHalted()  returns FALSE (0000ms, 0789ms total)
T7764 114:893 JLINK_IsHalted()  returns FALSE (0000ms, 0789ms total)
T7764 114:995 JLINK_IsHalted()  returns FALSE (0000ms, 0789ms total)
T514C 115:096 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 9A 42  returns 0x04 (0001ms, 0790ms total)
T7764 115:097 JLINK_IsHalted()  returns FALSE (0000ms, 0790ms total)
T7764 115:199 JLINK_IsHalted()  returns FALSE (0000ms, 0790ms total)
T7764 115:300 JLINK_IsHalted()  returns FALSE (0000ms, 0790ms total)
T7764 115:401 JLINK_IsHalted()  returns FALSE (0000ms, 0790ms total)
T7764 115:502 JLINK_IsHalted()  returns FALSE (0000ms, 0790ms total)
T7764 115:603 JLINK_IsHalted()  returns FALSE (0000ms, 0790ms total)
T514C 115:704 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 9C 42  returns 0x04 (0001ms, 0791ms total)
T7764 115:705 JLINK_IsHalted()  returns FALSE (0000ms, 0791ms total)
T7764 115:806 JLINK_IsHalted()  returns FALSE (0000ms, 0791ms total)
T7764 115:908 JLINK_IsHalted()  returns FALSE (0000ms, 0791ms total)
T7764 116:009 JLINK_IsHalted()  returns FALSE (0000ms, 0791ms total)
T7764 116:110 JLINK_IsHalted()  returns FALSE (0000ms, 0791ms total)
T514C 116:211 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 9C 42  returns 0x04 (0001ms, 0792ms total)
T7764 116:212 JLINK_IsHalted()  returns FALSE (0000ms, 0792ms total)
T7764 116:313 JLINK_IsHalted()  returns FALSE (0000ms, 0792ms total)
T7764 116:414 JLINK_IsHalted()  returns FALSE (0000ms, 0792ms total)
T7764 116:515 JLINK_IsHalted()  returns FALSE (0000ms, 0792ms total)
T7764 116:616 JLINK_IsHalted()  returns FALSE (0000ms, 0792ms total)
T7764 116:718 JLINK_IsHalted()  returns FALSE (0000ms, 0792ms total)
T514C 116:819 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 9E 42  returns 0x04 (0001ms, 0793ms total)
T7764 116:820 JLINK_IsHalted()  returns FALSE (0000ms, 0793ms total)
T7764 116:921 JLINK_IsHalted()  returns FALSE (0000ms, 0793ms total)
T7764 117:022 JLINK_IsHalted()  returns FALSE (0000ms, 0793ms total)
T7764 117:123 JLINK_IsHalted()  returns FALSE (0000ms, 0793ms total)
T7764 117:225 JLINK_IsHalted()  returns FALSE (0000ms, 0793ms total)
T7764 117:326 JLINK_IsHalted()  returns FALSE (0000ms, 0793ms total)
T514C 117:427 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 9E 42  returns 0x04 (0001ms, 0794ms total)
T7764 117:428 JLINK_IsHalted()  returns FALSE (0000ms, 0794ms total)
T7764 117:530 JLINK_IsHalted()  returns FALSE (0000ms, 0794ms total)
T7764 117:631 JLINK_IsHalted()  returns FALSE (0000ms, 0794ms total)
T7764 117:732 JLINK_IsHalted()  returns FALSE (0000ms, 0794ms total)
T7764 117:833 JLINK_IsHalted()  returns FALSE (0000ms, 0794ms total)
T7764 117:935 JLINK_IsHalted()  returns FALSE (0000ms, 0794ms total)
T514C 118:036 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 A0 42  returns 0x04 (0000ms, 0794ms total)
T7764 118:037 JLINK_IsHalted()  returns FALSE (0000ms, 0794ms total)
T7764 118:138 JLINK_IsHalted()  returns FALSE (0000ms, 0794ms total)
T7764 118:239 JLINK_IsHalted()  returns FALSE (0000ms, 0794ms total)
T7764 118:340 JLINK_IsHalted()  returns FALSE (0000ms, 0794ms total)
T7764 118:441 JLINK_IsHalted()  returns FALSE (0000ms, 0794ms total)
T7764 118:542 JLINK_IsHalted()  returns FALSE (0000ms, 0794ms total)
T514C 118:643 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 A2 42  returns 0x04 (0001ms, 0795ms total)
T7764 118:644 JLINK_IsHalted()  returns FALSE (0000ms, 0795ms total)
T7764 118:746 JLINK_IsHalted()  returns FALSE (0000ms, 0795ms total)
T7764 118:847 JLINK_IsHalted()  returns FALSE (0000ms, 0795ms total)
T7764 118:948 JLINK_IsHalted()  returns FALSE (0000ms, 0795ms total)
T7764 119:049 JLINK_IsHalted()  returns FALSE (0000ms, 0795ms total)
T7764 119:150 JLINK_IsHalted()  returns FALSE (0000ms, 0795ms total)
T514C 119:251 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 A2 42  returns 0x04 (0000ms, 0795ms total)
T7764 119:252 JLINK_IsHalted()  returns FALSE (0000ms, 0795ms total)
T7764 119:354 JLINK_IsHalted()  returns FALSE (0000ms, 0795ms total)
T7764 119:455 JLINK_IsHalted()  returns FALSE (0000ms, 0795ms total)
T7764 119:556 JLINK_IsHalted()  returns FALSE (0000ms, 0795ms total)
T7764 119:657 JLINK_IsHalted()  returns FALSE (0000ms, 0795ms total)
T514C 119:758 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 A4 42  returns 0x04 (0001ms, 0796ms total)
T7764 119:759 JLINK_IsHalted()  returns FALSE (0000ms, 0796ms total)
T7764 119:860 JLINK_IsHalted()  returns FALSE (0000ms, 0796ms total)
T7764 119:962 JLINK_IsHalted()  returns FALSE (0000ms, 0796ms total)
T7764 120:063 JLINK_IsHalted()  returns FALSE (0000ms, 0796ms total)
T7764 120:164 JLINK_IsHalted()  returns FALSE (0000ms, 0796ms total)
T7764 120:266 JLINK_IsHalted()  returns FALSE (0000ms, 0796ms total)
T514C 120:367 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 A4 42  returns 0x04 (0000ms, 0796ms total)
T7764 120:368 JLINK_IsHalted()  returns FALSE (0000ms, 0797ms total)
T7764 120:469 JLINK_IsHalted()  returns FALSE (0000ms, 0797ms total)
T7764 120:571 JLINK_IsHalted()  returns FALSE (0000ms, 0797ms total)
T7764 120:672 JLINK_IsHalted()  returns FALSE (0000ms, 0797ms total)
T7764 120:773 JLINK_IsHalted()  returns FALSE (0000ms, 0797ms total)
T7764 120:875 JLINK_IsHalted()  returns FALSE (0000ms, 0797ms total)
T514C 120:976 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 A6 42  returns 0x04 (0000ms, 0797ms total)
T7764 120:977 JLINK_IsHalted()  returns FALSE (0000ms, 0798ms total)
T7764 121:078 JLINK_IsHalted()  returns FALSE (0000ms, 0798ms total)
T7764 121:179 JLINK_IsHalted()  returns FALSE (0000ms, 0798ms total)
T7764 121:280 JLINK_IsHalted()  returns FALSE (0000ms, 0798ms total)
T7764 121:381 JLINK_IsHalted()  returns FALSE (0000ms, 0798ms total)
T7764 121:482 JLINK_IsHalted()  returns FALSE (0000ms, 0798ms total)
T514C 121:584 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 A8 42  returns 0x04 (0000ms, 0798ms total)
T7764 121:585 JLINK_IsHalted()  returns FALSE (0000ms, 0799ms total)
T7764 121:687 JLINK_IsHalted()  returns FALSE (0000ms, 0799ms total)
T7764 121:788 JLINK_IsHalted()  returns FALSE (0000ms, 0799ms total)
T7764 121:889 JLINK_IsHalted()  returns FALSE (0000ms, 0799ms total)
T7764 121:990 JLINK_IsHalted()  returns FALSE (0000ms, 0799ms total)
T7764 122:091 JLINK_IsHalted()  returns FALSE (0000ms, 0799ms total)
T514C 122:192 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 A8 42  returns 0x04 (0000ms, 0799ms total)
T7764 122:193 JLINK_IsHalted()  returns FALSE (0000ms, 0799ms total)
T7764 122:295 JLINK_IsHalted()  returns FALSE (0000ms, 0799ms total)
T7764 122:396 JLINK_IsHalted()  returns FALSE (0000ms, 0799ms total)
T7764 122:498 JLINK_IsHalted()  returns FALSE (0000ms, 0799ms total)
T7764 122:599 JLINK_IsHalted()  returns FALSE (0000ms, 0799ms total)
T7764 122:701 JLINK_IsHalted()  returns FALSE (0000ms, 0799ms total)
T514C 122:802 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 AA 42  returns 0x04 (0000ms, 0799ms total)
T7764 122:803 JLINK_IsHalted()  returns FALSE (0000ms, 0799ms total)
T7764 122:904 JLINK_IsHalted()  returns FALSE (0000ms, 0799ms total)
T7764 123:006 JLINK_IsHalted()  returns FALSE (0000ms, 0799ms total)
T7764 123:107 JLINK_IsHalted()  returns FALSE (0000ms, 0799ms total)
T7764 123:208 JLINK_IsHalted()  returns FALSE (0000ms, 0799ms total)
T7764 123:309 JLINK_IsHalted()  returns FALSE (0000ms, 0799ms total)
T514C 123:410 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 AA 42  returns 0x04 (0000ms, 0799ms total)
T7764 123:411 JLINK_IsHalted()  returns FALSE (0000ms, 0799ms total)
T7764 123:512 JLINK_IsHalted()  returns FALSE (0000ms, 0799ms total)
T7764 123:613 JLINK_IsHalted()  returns FALSE (0000ms, 0799ms total)
T7764 123:714 JLINK_IsHalted()  returns FALSE (0000ms, 0799ms total)
T7764 123:815 JLINK_IsHalted()  returns FALSE (0000ms, 0799ms total)
T7764 123:916 JLINK_IsHalted()  returns FALSE (0000ms, 0799ms total)
T514C 124:017 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 AC 42  returns 0x04 (0001ms, 0800ms total)
T7764 124:018 JLINK_IsHalted()  returns FALSE (0000ms, 0800ms total)
T7764 124:119 JLINK_IsHalted()  returns FALSE (0000ms, 0800ms total)
T7764 124:220 JLINK_IsHalted()  returns FALSE (0000ms, 0800ms total)
T7764 124:321 JLINK_IsHalted()  returns FALSE (0000ms, 0800ms total)
T7764 124:423 JLINK_IsHalted()  returns FALSE (0000ms, 0800ms total)
T514C 124:524 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 AE 42  returns 0x04 (0001ms, 0801ms total)
T7764 124:525 JLINK_IsHalted()  returns FALSE (0000ms, 0801ms total)
T7764 124:626 JLINK_IsHalted()  returns FALSE (0000ms, 0801ms total)
T7764 124:728 JLINK_IsHalted()  returns FALSE (0000ms, 0801ms total)
T7764 124:829 JLINK_IsHalted()  returns FALSE (0000ms, 0801ms total)
T7764 124:930 JLINK_IsHalted()  returns FALSE (0000ms, 0801ms total)
T7764 125:032 JLINK_IsHalted()  returns FALSE (0000ms, 0801ms total)
T514C 125:133 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 AE 42  returns 0x04 (0000ms, 0801ms total)
T7764 125:134 JLINK_IsHalted()  returns FALSE (0000ms, 0802ms total)
T7764 125:235 JLINK_IsHalted()  returns FALSE (0000ms, 0802ms total)
T7764 125:336 JLINK_IsHalted()  returns FALSE (0000ms, 0802ms total)
T7764 125:437 JLINK_IsHalted()  returns FALSE (0000ms, 0802ms total)
T7764 125:539 JLINK_IsHalted()  returns FALSE (0000ms, 0802ms total)
T7764 125:640 JLINK_IsHalted()  returns FALSE (0000ms, 0802ms total)
T514C 125:741 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 B0 42  returns 0x04 (0001ms, 0803ms total)
T7764 125:742 JLINK_IsHalted()  returns FALSE (0000ms, 0803ms total)
T7764 125:843 JLINK_IsHalted()  returns FALSE (0000ms, 0803ms total)
T7764 125:945 JLINK_IsHalted()  returns FALSE (0000ms, 0803ms total)
T7764 126:046 JLINK_IsHalted()  returns FALSE (0000ms, 0803ms total)
T7764 126:147 JLINK_IsHalted()  returns FALSE (0000ms, 0803ms total)
T7764 126:248 JLINK_IsHalted()  returns FALSE (0000ms, 0803ms total)
T514C 126:349 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 B0 42  returns 0x04 (0001ms, 0804ms total)
T7764 126:350 JLINK_IsHalted()  returns FALSE (0000ms, 0804ms total)
T7764 126:451 JLINK_IsHalted()  returns FALSE (0000ms, 0804ms total)
T7764 126:552 JLINK_IsHalted()  returns FALSE (0000ms, 0804ms total)
T7764 126:653 JLINK_IsHalted()  returns FALSE (0000ms, 0804ms total)
T7764 126:755 JLINK_IsHalted()  returns FALSE (0000ms, 0804ms total)
T7764 126:856 JLINK_IsHalted()  returns FALSE (0000ms, 0804ms total)
T514C 126:958 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 B2 42  returns 0x04 (0000ms, 0804ms total)
T7764 126:959 JLINK_IsHalted()  returns FALSE (0000ms, 0804ms total)
T7764 127:060 JLINK_IsHalted()  returns FALSE (0000ms, 0804ms total)
T7764 127:161 JLINK_IsHalted()  returns FALSE (0000ms, 0804ms total)
T7764 127:262 JLINK_IsHalted()  returns FALSE (0000ms, 0804ms total)
T7764 127:364 JLINK_IsHalted()  returns FALSE (0000ms, 0804ms total)
T7764 127:465 JLINK_IsHalted()  returns FALSE (0000ms, 0804ms total)
T514C 127:567 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 B4 42  returns 0x04 (0000ms, 0804ms total)
T7764 127:568 JLINK_IsHalted()  returns FALSE (0000ms, 0804ms total)
T7764 127:669 JLINK_IsHalted()  returns FALSE (0000ms, 0804ms total)
T7764 127:770 JLINK_IsHalted()  returns FALSE (0000ms, 0804ms total)
T7764 127:871 JLINK_IsHalted()  returns FALSE (0000ms, 0804ms total)
T7764 127:973 JLINK_IsHalted()  returns FALSE (0000ms, 0804ms total)
T7764 128:074 JLINK_IsHalted()  returns FALSE (0000ms, 0804ms total)
T514C 128:175 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 B4 42  returns 0x04 (0001ms, 0805ms total)
T7764 128:176 JLINK_IsHalted()  returns FALSE (0000ms, 0805ms total)
T7764 128:277 JLINK_IsHalted()  returns FALSE (0000ms, 0805ms total)
T7764 128:379 JLINK_IsHalted()  returns FALSE (0000ms, 0805ms total)
T7764 128:480 JLINK_IsHalted()  returns FALSE (0000ms, 0805ms total)
T7764 128:581 JLINK_IsHalted()  returns FALSE (0000ms, 0805ms total)
T7764 128:683 JLINK_IsHalted()  returns FALSE (0000ms, 0805ms total)
T514C 128:784 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 B6 42  returns 0x04 (0001ms, 0806ms total)
T7764 128:785 JLINK_IsHalted()  returns FALSE (0000ms, 0806ms total)
T7764 128:886 JLINK_IsHalted()  returns FALSE (0000ms, 0806ms total)
T7764 128:987 JLINK_IsHalted()  returns FALSE (0000ms, 0806ms total)
T7764 129:088 JLINK_IsHalted()  returns FALSE (0000ms, 0806ms total)
T7764 129:190 JLINK_IsHalted()  returns FALSE (0000ms, 0806ms total)
T7764 129:291 JLINK_IsHalted()  returns FALSE (0000ms, 0806ms total)
T514C 129:392 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 B6 42  returns 0x04 (0001ms, 0807ms total)
T7764 129:393 JLINK_IsHalted()  returns FALSE (0000ms, 0807ms total)
T7764 129:494 JLINK_IsHalted()  returns FALSE (0000ms, 0807ms total)
T7764 129:596 JLINK_IsHalted()  returns FALSE (0000ms, 0807ms total)
T7764 129:696 JLINK_IsHalted()  returns FALSE (0000ms, 0807ms total)
T7764 129:797 JLINK_IsHalted()  returns FALSE (0000ms, 0807ms total)
T514C 129:899 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 B8 42  returns 0x04 (0001ms, 0808ms total)
T7764 129:900 JLINK_IsHalted()  returns FALSE (0000ms, 0808ms total)
T7764 130:001 JLINK_IsHalted()  returns FALSE (0000ms, 0808ms total)
T7764 130:102 JLINK_IsHalted()  returns FALSE (0000ms, 0808ms total)
T7764 130:204 JLINK_IsHalted()  returns FALSE (0000ms, 0808ms total)
T7764 130:305 JLINK_IsHalted()  returns FALSE (0000ms, 0808ms total)
T7764 130:406 JLINK_IsHalted()  returns FALSE (0000ms, 0808ms total)
T514C 130:507 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 B8 42  returns 0x04 (0001ms, 0809ms total)
T7764 130:508 JLINK_IsHalted()  returns FALSE (0000ms, 0809ms total)
T7764 130:610 JLINK_IsHalted()  returns FALSE (0000ms, 0809ms total)
T7764 130:711 JLINK_IsHalted()  returns FALSE (0000ms, 0809ms total)
T7764 130:812 JLINK_IsHalted()  returns FALSE (0000ms, 0809ms total)
T7764 130:913 JLINK_IsHalted()  returns FALSE (0000ms, 0809ms total)
T7764 131:015 JLINK_IsHalted()  returns FALSE (0000ms, 0809ms total)
T514C 131:116 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 BA 42  returns 0x04 (0000ms, 0809ms total)
T7764 131:117 JLINK_IsHalted()  returns FALSE (0000ms, 0809ms total)
T7764 131:218 JLINK_IsHalted()  returns FALSE (0000ms, 0809ms total)
T7764 131:320 JLINK_IsHalted()  returns FALSE (0000ms, 0809ms total)
T7764 131:421 JLINK_IsHalted()  returns FALSE (0000ms, 0809ms total)
T7764 131:522 JLINK_IsHalted()  returns FALSE (0000ms, 0809ms total)
T7764 131:623 JLINK_IsHalted()  returns FALSE (0000ms, 0809ms total)
T514C 131:724 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 BC 42  returns 0x04 (0001ms, 0810ms total)
T7764 131:725 JLINK_IsHalted()  returns FALSE (0000ms, 0810ms total)
T7764 131:827 JLINK_IsHalted()  returns FALSE (0000ms, 0810ms total)
T7764 131:928 JLINK_IsHalted()  returns FALSE (0000ms, 0810ms total)
T7764 132:030 JLINK_IsHalted()  returns FALSE (0000ms, 0810ms total)
T7764 132:132 JLINK_IsHalted()  returns FALSE (0000ms, 0810ms total)
T7764 132:233 JLINK_IsHalted()  returns FALSE (0000ms, 0810ms total)
T514C 132:334 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 BC 42  returns 0x04 (0000ms, 0810ms total)
T7764 132:335 JLINK_IsHalted()  returns FALSE (0000ms, 0811ms total)
T7764 132:436 JLINK_IsHalted()  returns FALSE (0000ms, 0811ms total)
T7764 132:537 JLINK_IsHalted()  returns FALSE (0000ms, 0811ms total)
T7764 132:638 JLINK_IsHalted()  returns FALSE (0000ms, 0811ms total)
T7764 132:739 JLINK_IsHalted()  returns FALSE (0000ms, 0811ms total)
T7764 132:840 JLINK_IsHalted()  returns FALSE (0000ms, 0811ms total)
T514C 132:942 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 BE 42  returns 0x04 (0001ms, 0812ms total)
T7764 132:943 JLINK_IsHalted()  returns FALSE (0000ms, 0812ms total)
T7764 133:044 JLINK_IsHalted()  returns FALSE (0000ms, 0812ms total)
T7764 133:146 JLINK_IsHalted()  returns FALSE (0000ms, 0812ms total)
T7764 133:247 JLINK_IsHalted()  returns FALSE (0000ms, 0812ms total)
T7764 133:348 JLINK_IsHalted()  returns FALSE (0000ms, 0812ms total)
T7764 133:449 JLINK_IsHalted()  returns FALSE (0000ms, 0812ms total)
T514C 133:550 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 C0 42  returns 0x04 (0000ms, 0812ms total)
T7764 133:551 JLINK_IsHalted()  returns FALSE (0000ms, 0813ms total)
T7764 133:652 JLINK_IsHalted()  returns FALSE (0000ms, 0813ms total)
T7764 133:753 JLINK_IsHalted()  returns FALSE (0000ms, 0813ms total)
T7764 133:854 JLINK_IsHalted()  returns FALSE (0000ms, 0813ms total)
T7764 133:956 JLINK_IsHalted()  returns FALSE (0000ms, 0813ms total)
T7764 134:057 JLINK_IsHalted()  returns FALSE (0000ms, 0813ms total)
T514C 134:158 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 C0 42  returns 0x04 (0001ms, 0814ms total)
T7764 134:159 JLINK_IsHalted()  returns FALSE (0000ms, 0814ms total)
T7764 134:260 JLINK_IsHalted()  returns FALSE (0000ms, 0814ms total)
T7764 134:361 JLINK_IsHalted()  returns FALSE (0000ms, 0814ms total)
T7764 134:463 JLINK_IsHalted()  returns FALSE (0000ms, 0814ms total)
T7764 134:564 JLINK_IsHalted()  returns FALSE (0000ms, 0814ms total)
T7764 134:666 JLINK_IsHalted()  returns FALSE (0000ms, 0814ms total)
T514C 134:767 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 C2 42  returns 0x04 (0000ms, 0814ms total)
T7764 134:768 JLINK_IsHalted()  returns FALSE (0000ms, 0814ms total)
T7764 134:870 JLINK_IsHalted()  returns FALSE (0000ms, 0814ms total)
T7764 134:971 JLINK_IsHalted()  returns FALSE (0000ms, 0814ms total)
T7764 135:071 JLINK_IsHalted()  returns FALSE (0000ms, 0814ms total)
T7764 135:172 JLINK_IsHalted()  returns FALSE (0000ms, 0814ms total)
T514C 135:273 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 C2 42  returns 0x04 (0000ms, 0814ms total)
T7764 135:274 JLINK_IsHalted()  returns FALSE (0000ms, 0814ms total)
T7764 135:375 JLINK_IsHalted()  returns FALSE (0001ms, 0815ms total)
T7764 135:477 JLINK_IsHalted()  returns FALSE (0000ms, 0814ms total)
T7764 135:578 JLINK_IsHalted()  returns FALSE (0000ms, 0814ms total)
T7764 135:679 JLINK_IsHalted()  returns FALSE (0000ms, 0814ms total)
T7764 135:780 JLINK_IsHalted()  returns FALSE (0000ms, 0814ms total)
T514C 135:881 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 C4 42  returns 0x04 (0001ms, 0815ms total)
T7764 135:882 JLINK_IsHalted()  returns FALSE (0000ms, 0815ms total)
T7764 135:984 JLINK_IsHalted()  returns FALSE (0000ms, 0815ms total)
T7764 136:085 JLINK_IsHalted()  returns FALSE (0000ms, 0815ms total)
T7764 136:186 JLINK_IsHalted()  returns FALSE (0000ms, 0815ms total)
T7764 136:287 JLINK_IsHalted()  returns FALSE (0000ms, 0815ms total)
T7764 136:388 JLINK_IsHalted()  returns FALSE (0000ms, 0815ms total)
T514C 136:490 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 C4 42  returns 0x04 (0000ms, 0815ms total)
T7764 136:491 JLINK_IsHalted()  returns FALSE (0000ms, 0815ms total)
T7764 136:593 JLINK_IsHalted()  returns FALSE (0000ms, 0815ms total)
T7764 136:694 JLINK_IsHalted()  returns FALSE (0000ms, 0815ms total)
T7764 136:795 JLINK_IsHalted()  returns FALSE (0000ms, 0815ms total)
T7764 136:897 JLINK_IsHalted()  returns FALSE (0000ms, 0815ms total)
T7764 136:998 JLINK_IsHalted()  returns FALSE (0000ms, 0815ms total)
T514C 137:099 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 C6 42  returns 0x04 (0001ms, 0816ms total)
T7764 137:100 JLINK_IsHalted()  returns FALSE (0000ms, 0816ms total)
T7764 137:201 JLINK_IsHalted()  returns FALSE (0000ms, 0816ms total)
T7764 137:303 JLINK_IsHalted()  returns FALSE (0000ms, 0816ms total)
T7764 137:404 JLINK_IsHalted()  returns FALSE (0000ms, 0816ms total)
T7764 137:505 JLINK_IsHalted()  returns FALSE (0000ms, 0816ms total)
T7764 137:606 JLINK_IsHalted()  returns FALSE (0000ms, 0816ms total)
T514C 137:707 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 C8 42  returns 0x04 (0001ms, 0817ms total)
T7764 137:708 JLINK_IsHalted()  returns FALSE (0000ms, 0817ms total)
T7764 137:809 JLINK_IsHalted()  returns FALSE (0000ms, 0817ms total)
T7764 137:910 JLINK_IsHalted()  returns FALSE (0000ms, 0817ms total)
T7764 138:011 JLINK_IsHalted()  returns FALSE (0000ms, 0817ms total)
T7764 138:113 JLINK_IsHalted()  returns FALSE (0000ms, 0817ms total)
T7764 138:214 JLINK_IsHalted()  returns FALSE (0000ms, 0817ms total)
T514C 138:315 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 C8 42  returns 0x04 (0001ms, 0818ms total)
T7764 138:316 JLINK_IsHalted()  returns FALSE (0000ms, 0818ms total)
T7764 138:417 JLINK_IsHalted()  returns FALSE (0000ms, 0818ms total)
T7764 138:518 JLINK_IsHalted()  returns FALSE (0000ms, 0818ms total)
T7764 138:619 JLINK_IsHalted()  returns FALSE (0000ms, 0818ms total)
T7764 138:721 JLINK_IsHalted()  returns FALSE (0000ms, 0818ms total)
T7764 138:822 JLINK_IsHalted()  returns FALSE (0000ms, 0818ms total)
T514C 138:923 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 CA 42  returns 0x04 (0000ms, 0818ms total)
T7764 138:924 JLINK_IsHalted()  returns FALSE (0000ms, 0818ms total)
T7764 139:025 JLINK_IsHalted()  returns FALSE (0000ms, 0818ms total)
T7764 139:126 JLINK_IsHalted()  returns FALSE (0000ms, 0818ms total)
T7764 139:227 JLINK_IsHalted()  returns FALSE (0000ms, 0818ms total)
T7764 139:328 JLINK_IsHalted()  returns FALSE (0000ms, 0818ms total)
T514C 139:429 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 CA 42  returns 0x04 (0001ms, 0819ms total)
T7764 139:430 JLINK_IsHalted()  returns FALSE (0000ms, 0819ms total)
T7764 139:532 JLINK_IsHalted()  returns FALSE (0000ms, 0819ms total)
T7764 139:633 JLINK_IsHalted()  returns FALSE (0000ms, 0819ms total)
T7764 139:735 JLINK_IsHalted()  returns FALSE (0000ms, 0819ms total)
T7764 139:836 JLINK_IsHalted()  returns FALSE (0000ms, 0819ms total)
T7764 139:937 JLINK_IsHalted()  returns FALSE (0000ms, 0819ms total)
T514C 140:039 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 CC 42  returns 0x04 (0001ms, 0820ms total)
T7764 140:040 JLINK_IsHalted()  returns FALSE (0000ms, 0820ms total)
T7764 140:141 JLINK_IsHalted()  returns FALSE (0000ms, 0820ms total)
T7764 140:242 JLINK_IsHalted()  returns FALSE (0000ms, 0820ms total)
T7764 140:344 JLINK_IsHalted()  returns FALSE (0000ms, 0820ms total)
T7764 140:445 JLINK_IsHalted()  returns FALSE (0000ms, 0820ms total)
T7764 140:546 JLINK_IsHalted()  returns FALSE (0000ms, 0820ms total)
T514C 140:647 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 CE 42  returns 0x04 (0001ms, 0821ms total)
T7764 140:648 JLINK_IsHalted()  returns FALSE (0001ms, 0822ms total)
T7764 140:750 JLINK_IsHalted()  returns FALSE (0000ms, 0821ms total)
T7764 140:851 JLINK_IsHalted()  returns FALSE (0000ms, 0821ms total)
T7764 140:952 JLINK_IsHalted()  returns FALSE (0000ms, 0821ms total)
T7764 141:054 JLINK_IsHalted()  returns FALSE (0000ms, 0821ms total)
T7764 141:155 JLINK_IsHalted()  returns FALSE (0000ms, 0821ms total)
T514C 141:256 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 CE 42  returns 0x04 (0000ms, 0821ms total)
T7764 141:257 JLINK_IsHalted()  returns FALSE (0000ms, 0821ms total)
T7764 141:358 JLINK_IsHalted()  returns FALSE (0000ms, 0821ms total)
T7764 141:459 JLINK_IsHalted()  returns FALSE (0000ms, 0821ms total)
T7764 141:560 JLINK_IsHalted()  returns FALSE (0000ms, 0821ms total)
T7764 141:661 JLINK_IsHalted()  returns FALSE (0000ms, 0821ms total)
T7764 141:763 JLINK_IsHalted()  returns FALSE (0000ms, 0821ms total)
T514C 141:864 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 D0 42  returns 0x04 (0001ms, 0822ms total)
T7764 141:865 JLINK_IsHalted()  returns FALSE (0000ms, 0822ms total)
T7764 141:966 JLINK_IsHalted()  returns FALSE (0000ms, 0822ms total)
T7764 142:067 JLINK_IsHalted()  returns FALSE (0000ms, 0822ms total)
T7764 142:169 JLINK_IsHalted()  returns FALSE (0000ms, 0822ms total)
T7764 142:270 JLINK_IsHalted()  returns FALSE (0000ms, 0822ms total)
T7764 142:371 JLINK_IsHalted()  returns FALSE (0000ms, 0822ms total)
T514C 142:472 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 D0 42  returns 0x04 (0000ms, 0822ms total)
T7764 142:473 JLINK_IsHalted()  returns FALSE (0000ms, 0822ms total)
T7764 142:574 JLINK_IsHalted()  returns FALSE (0000ms, 0822ms total)
T7764 142:676 JLINK_IsHalted()  returns FALSE (0000ms, 0822ms total)
T7764 142:777 JLINK_IsHalted()  returns FALSE (0000ms, 0822ms total)
T7764 142:878 JLINK_IsHalted()  returns FALSE (0000ms, 0822ms total)
T7764 142:979 JLINK_IsHalted()  returns FALSE (0000ms, 0822ms total)
T514C 143:081 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 D2 42  returns 0x04 (0001ms, 0823ms total)
T7764 143:082 JLINK_IsHalted()  returns FALSE (0001ms, 0824ms total)
T7764 143:183 JLINK_IsHalted()  returns FALSE (0000ms, 0823ms total)
T7764 143:284 JLINK_IsHalted()  returns FALSE (0000ms, 0823ms total)
T7764 143:386 JLINK_IsHalted()  returns FALSE (0000ms, 0823ms total)
T7764 143:487 JLINK_IsHalted()  returns FALSE (0000ms, 0823ms total)
T7764 143:589 JLINK_IsHalted()  returns FALSE (0000ms, 0823ms total)
T514C 143:690 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 D4 42  returns 0x04 (0001ms, 0824ms total)
T7764 143:691 JLINK_IsHalted()  returns FALSE (0000ms, 0824ms total)
T7764 143:792 JLINK_IsHalted()  returns FALSE (0000ms, 0824ms total)
T7764 143:894 JLINK_IsHalted()  returns FALSE (0000ms, 0824ms total)
T7764 143:995 JLINK_IsHalted()  returns FALSE (0000ms, 0824ms total)
T7764 144:096 JLINK_IsHalted()  returns FALSE (0000ms, 0824ms total)
T7764 144:197 JLINK_IsHalted()  returns FALSE (0000ms, 0824ms total)
T514C 144:298 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 D4 42  returns 0x04 (0001ms, 0825ms total)
T7764 144:299 JLINK_IsHalted()  returns FALSE (0001ms, 0826ms total)
T7764 144:401 JLINK_IsHalted()  returns FALSE (0000ms, 0825ms total)
T7764 144:503 JLINK_IsHalted()  returns FALSE (0000ms, 0825ms total)
T7764 144:603 JLINK_IsHalted()  returns FALSE (0000ms, 0825ms total)
T7764 144:705 JLINK_IsHalted()  returns FALSE (0000ms, 0825ms total)
T514C 144:806 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 D6 42  returns 0x04 (0000ms, 0825ms total)
T7764 144:807 JLINK_IsHalted()  returns FALSE (0000ms, 0826ms total)
T7764 144:908 JLINK_IsHalted()  returns FALSE (0000ms, 0826ms total)
T7764 145:010 JLINK_IsHalted()  returns FALSE (0000ms, 0826ms total)
T7764 145:111 JLINK_IsHalted()  returns FALSE (0000ms, 0826ms total)
T7764 145:212 JLINK_IsHalted()  returns FALSE (0000ms, 0826ms total)
T7764 145:314 JLINK_IsHalted()  returns FALSE (0000ms, 0826ms total)
T514C 145:415 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 D6 42  returns 0x04 (0000ms, 0826ms total)
T7764 145:416 JLINK_IsHalted()  returns FALSE (0000ms, 0826ms total)
T7764 145:518 JLINK_IsHalted()  returns FALSE (0000ms, 0826ms total)
T7764 145:619 JLINK_IsHalted()  returns FALSE (0000ms, 0826ms total)
T7764 145:721 JLINK_IsHalted()  returns FALSE (0000ms, 0826ms total)
T7764 145:822 JLINK_IsHalted()  returns FALSE (0000ms, 0826ms total)
T7764 145:923 JLINK_IsHalted()  returns FALSE (0000ms, 0826ms total)
T514C 146:024 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 D8 42  returns 0x04 (0000ms, 0826ms total)
T7764 146:025 JLINK_IsHalted()  returns FALSE (0000ms, 0827ms total)
T7764 146:127 JLINK_IsHalted()  returns FALSE (0000ms, 0827ms total)
T7764 146:228 JLINK_IsHalted()  returns FALSE (0000ms, 0827ms total)
T7764 146:329 JLINK_IsHalted()  returns FALSE (0000ms, 0827ms total)
T7764 146:430 JLINK_IsHalted()  returns FALSE (0000ms, 0827ms total)
T7764 146:531 JLINK_IsHalted()  returns FALSE (0000ms, 0827ms total)
T514C 146:633 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 DA 42  returns 0x04 (0000ms, 0827ms total)
T7764 146:634 JLINK_IsHalted()  returns FALSE (0000ms, 0827ms total)
T7764 146:735 JLINK_IsHalted()  returns FALSE (0000ms, 0827ms total)
T7764 146:836 JLINK_IsHalted()  returns FALSE (0000ms, 0827ms total)
T7764 146:937 JLINK_IsHalted()  returns FALSE (0000ms, 0827ms total)
T7764 147:038 JLINK_IsHalted()  returns FALSE (0000ms, 0827ms total)
T7764 147:139 JLINK_IsHalted()  returns FALSE (0000ms, 0827ms total)
T514C 147:240 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 DA 42  returns 0x04 (0000ms, 0827ms total)
T7764 147:240 JLINK_IsHalted()  returns FALSE (0001ms, 0828ms total)
T7764 147:342 JLINK_IsHalted()  returns FALSE (0000ms, 0827ms total)
T7764 147:443 JLINK_IsHalted()  returns FALSE (0000ms, 0827ms total)
T7764 147:545 JLINK_IsHalted()  returns FALSE (0000ms, 0827ms total)
T7764 147:647 JLINK_IsHalted()  returns FALSE (0000ms, 0827ms total)
T7764 147:748 JLINK_IsHalted()  returns FALSE (0000ms, 0827ms total)
T514C 147:849 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 DC 42  returns 0x04 (0001ms, 0828ms total)
T7764 147:850 JLINK_IsHalted()  returns FALSE (0000ms, 0828ms total)
T7764 147:951 JLINK_IsHalted()  returns FALSE (0000ms, 0828ms total)
T7764 148:053 JLINK_IsHalted()  returns FALSE (0000ms, 0828ms total)
T7764 148:154 JLINK_IsHalted()  returns FALSE (0000ms, 0828ms total)
T7764 148:256 JLINK_IsHalted()  returns FALSE (0000ms, 0828ms total)
T7764 148:357 JLINK_IsHalted()  returns FALSE (0000ms, 0828ms total)
T514C 148:458 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 DC 42  returns 0x04 (0001ms, 0829ms total)
T7764 148:459 JLINK_IsHalted()  returns FALSE (0000ms, 0829ms total)
T7764 148:560 JLINK_IsHalted()  returns FALSE (0000ms, 0829ms total)
T7764 148:662 JLINK_IsHalted()  returns FALSE (0000ms, 0829ms total)
T7764 148:763 JLINK_IsHalted()  returns FALSE (0000ms, 0829ms total)
T7764 148:864 JLINK_IsHalted()  returns FALSE (0000ms, 0829ms total)
T7764 148:965 JLINK_IsHalted()  returns FALSE (0000ms, 0829ms total)
T514C 149:067 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 DE 42  returns 0x04 (0001ms, 0830ms total)
T7764 149:068 JLINK_IsHalted()  returns FALSE (0001ms, 0831ms total)
T7764 149:170 JLINK_IsHalted()  returns FALSE (0000ms, 0830ms total)
T7764 149:271 JLINK_IsHalted()  returns FALSE (0000ms, 0830ms total)
T7764 149:372 JLINK_IsHalted()  returns FALSE (0000ms, 0830ms total)
T7764 149:473 JLINK_IsHalted()  returns FALSE (0000ms, 0830ms total)
T7764 149:575 JLINK_IsHalted()  returns FALSE (0000ms, 0830ms total)
T514C 149:676 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 E0 42  returns 0x04 (0001ms, 0831ms total)
T7764 149:677 JLINK_IsHalted()  returns FALSE (0000ms, 0831ms total)
T7764 149:779 JLINK_IsHalted()  returns FALSE (0000ms, 0831ms total)
T7764 149:881 JLINK_IsHalted()  returns FALSE (0000ms, 0831ms total)
T7764 149:982 JLINK_IsHalted()  returns FALSE (0000ms, 0831ms total)
T7764 150:083 JLINK_IsHalted()  returns FALSE (0000ms, 0831ms total)
T7764 150:185 JLINK_IsHalted()  returns FALSE (0000ms, 0831ms total)
T514C 150:286 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 E0 42  returns 0x04 (0000ms, 0831ms total)
T7764 150:287 JLINK_IsHalted()  returns FALSE (0000ms, 0831ms total)
T7764 150:388 JLINK_IsHalted()  returns FALSE (0000ms, 0831ms total)
T7764 150:489 JLINK_IsHalted()  returns FALSE (0000ms, 0831ms total)
T7764 150:591 JLINK_IsHalted()  returns FALSE (0000ms, 0831ms total)
T7764 150:692 JLINK_IsHalted()  returns FALSE (0000ms, 0831ms total)
T7764 150:793 JLINK_IsHalted()  returns FALSE (0000ms, 0831ms total)
T514C 150:894 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 E2 42  returns 0x04 (0001ms, 0832ms total)
T7764 150:895 JLINK_IsHalted()  returns FALSE (0000ms, 0832ms total)
T7764 150:997 JLINK_IsHalted()  returns FALSE (0000ms, 0832ms total)
T7764 151:098 JLINK_IsHalted()  returns FALSE (0000ms, 0832ms total)
T7764 151:199 JLINK_IsHalted()  returns FALSE (0000ms, 0832ms total)
T7764 151:300 JLINK_IsHalted()  returns FALSE (0000ms, 0832ms total)
T7764 151:402 JLINK_IsHalted()  returns FALSE (0000ms, 0832ms total)
T514C 151:503 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 E2 42  returns 0x04 (0001ms, 0833ms total)
T7764 151:504 JLINK_IsHalted()  returns FALSE (0001ms, 0834ms total)
T7764 151:605 JLINK_IsHalted()  returns FALSE (0000ms, 0833ms total)
T7764 151:707 JLINK_IsHalted()  returns FALSE (0000ms, 0833ms total)
T7764 151:808 JLINK_IsHalted()  returns FALSE (0000ms, 0833ms total)
T7764 151:909 JLINK_IsHalted()  returns FALSE (0000ms, 0833ms total)
T7764 152:011 JLINK_IsHalted()  returns FALSE (0000ms, 0833ms total)
T514C 152:112 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 E4 42  returns 0x04 (0001ms, 0834ms total)
T7764 152:113 JLINK_IsHalted()  returns FALSE (0001ms, 0835ms total)
T7764 152:215 JLINK_IsHalted()  returns FALSE (0000ms, 0834ms total)
T7764 152:316 JLINK_IsHalted()  returns FALSE (0000ms, 0834ms total)
T7764 152:417 JLINK_IsHalted()  returns FALSE (0000ms, 0834ms total)
T7764 152:519 JLINK_IsHalted()  returns FALSE (0000ms, 0834ms total)
T7764 152:620 JLINK_IsHalted()  returns FALSE (0000ms, 0834ms total)
T514C 152:721 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 E6 42  returns 0x04 (0001ms, 0835ms total)
T7764 152:722 JLINK_IsHalted()  returns FALSE (0001ms, 0836ms total)
T7764 152:824 JLINK_IsHalted()  returns FALSE (0001ms, 0836ms total)
T7764 152:926 JLINK_IsHalted()  returns FALSE (0000ms, 0835ms total)
T7764 153:027 JLINK_IsHalted()  returns FALSE (0000ms, 0835ms total)
T7764 153:129 JLINK_IsHalted()  returns FALSE (0000ms, 0835ms total)
T7764 153:230 JLINK_IsHalted()  returns FALSE (0000ms, 0835ms total)
T514C 153:331 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 E6 42  returns 0x04 (0001ms, 0836ms total)
T7764 153:332 JLINK_IsHalted()  returns FALSE (0000ms, 0836ms total)
T7764 153:434 JLINK_IsHalted()  returns FALSE (0000ms, 0836ms total)
T7764 153:535 JLINK_IsHalted()  returns FALSE (0000ms, 0836ms total)
T7764 153:637 JLINK_IsHalted()  returns FALSE (0000ms, 0836ms total)
T7764 153:738 JLINK_IsHalted()  returns FALSE (0000ms, 0836ms total)
T7764 153:839 JLINK_IsHalted()  returns FALSE (0000ms, 0836ms total)
T514C 153:940 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 E8 42  returns 0x04 (0001ms, 0837ms total)
T7764 153:941 JLINK_IsHalted()  returns FALSE (0001ms, 0838ms total)
T7764 154:042 JLINK_IsHalted()  returns FALSE (0000ms, 0837ms total)
T7764 154:143 JLINK_IsHalted()  returns FALSE (0000ms, 0837ms total)
T7764 154:245 JLINK_IsHalted()  returns FALSE (0000ms, 0837ms total)
T7764 154:346 JLINK_IsHalted()  returns FALSE (0000ms, 0837ms total)
T7764 154:447 JLINK_IsHalted()  returns FALSE (0000ms, 0837ms total)
T514C 154:548 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 EA 42  returns 0x04 (0001ms, 0838ms total)
T7764 154:549 JLINK_IsHalted()  returns FALSE (0000ms, 0838ms total)
T7764 154:650 JLINK_IsHalted()  returns FALSE (0000ms, 0838ms total)
T7764 154:751 JLINK_IsHalted()  returns FALSE (0000ms, 0838ms total)
T7764 154:853 JLINK_IsHalted()  returns FALSE (0000ms, 0838ms total)
T7764 154:953 JLINK_IsHalted()  returns FALSE (0000ms, 0838ms total)
T514C 155:055 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 EA 42  returns 0x04 (0001ms, 0839ms total)
T7764 155:056 JLINK_IsHalted()  returns FALSE (0000ms, 0839ms total)
T7764 155:157 JLINK_IsHalted()  returns FALSE (0000ms, 0839ms total)
T7764 155:258 JLINK_IsHalted()  returns FALSE (0000ms, 0839ms total)
T7764 155:359 JLINK_IsHalted()  returns FALSE (0000ms, 0839ms total)
T7764 155:460 JLINK_IsHalted()  returns FALSE (0000ms, 0839ms total)
T7764 155:561 JLINK_IsHalted()  returns FALSE (0000ms, 0839ms total)
T514C 155:663 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 EC 42  returns 0x04 (0000ms, 0839ms total)
T7764 155:664 JLINK_IsHalted()  returns FALSE (0000ms, 0839ms total)
T7764 155:765 JLINK_IsHalted()  returns FALSE (0000ms, 0839ms total)
T7764 155:866 JLINK_IsHalted()  returns FALSE (0000ms, 0839ms total)
T7764 155:967 JLINK_IsHalted()  returns FALSE (0000ms, 0839ms total)
T7764 156:068 JLINK_IsHalted()  returns FALSE (0000ms, 0839ms total)
T7764 156:170 JLINK_IsHalted()  returns FALSE (0000ms, 0839ms total)
T514C 156:271 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 EC 42  returns 0x04 (0001ms, 0840ms total)
T7764 156:272 JLINK_IsHalted()  returns FALSE (0000ms, 0840ms total)
T7764 156:373 JLINK_IsHalted()  returns FALSE (0000ms, 0840ms total)
T7764 156:474 JLINK_IsHalted()  returns FALSE (0000ms, 0840ms total)
T7764 156:576 JLINK_IsHalted()  returns FALSE (0001ms, 0841ms total)
T7764 156:678 JLINK_IsHalted()  returns FALSE (0000ms, 0840ms total)
T7764 156:779 JLINK_IsHalted()  returns FALSE (0000ms, 0840ms total)
T514C 156:880 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 EE 42  returns 0x04 (0000ms, 0840ms total)
T7764 156:881 JLINK_IsHalted()  returns FALSE (0000ms, 0840ms total)
T7764 156:982 JLINK_IsHalted()  returns FALSE (0000ms, 0840ms total)
T7764 157:083 JLINK_IsHalted()  returns FALSE (0000ms, 0840ms total)
T7764 157:184 JLINK_IsHalted()  returns FALSE (0000ms, 0840ms total)
T7764 157:285 JLINK_IsHalted()  returns FALSE (0000ms, 0840ms total)
T7764 157:387 JLINK_IsHalted()  returns FALSE (0000ms, 0840ms total)
T514C 157:489 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 EE 42  returns 0x04 (0000ms, 0840ms total)
T7764 157:490 JLINK_IsHalted()  returns FALSE (0000ms, 0840ms total)
T7764 157:591 JLINK_IsHalted()  returns FALSE (0000ms, 0840ms total)
T7764 157:693 JLINK_IsHalted()  returns FALSE (0000ms, 0840ms total)
T7764 157:794 JLINK_IsHalted()  returns FALSE (0000ms, 0840ms total)
T7764 157:895 JLINK_IsHalted()  returns FALSE (0000ms, 0840ms total)
T7764 157:997 JLINK_IsHalted()  returns FALSE (0000ms, 0840ms total)
T514C 158:098 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 F0 42  returns 0x04 (0001ms, 0841ms total)
T7764 158:099 JLINK_IsHalted()  returns FALSE (0000ms, 0841ms total)
T7764 158:200 JLINK_IsHalted()  returns FALSE (0000ms, 0841ms total)
T7764 158:301 JLINK_IsHalted()  returns FALSE (0000ms, 0841ms total)
T7764 158:402 JLINK_IsHalted()  returns FALSE (0000ms, 0841ms total)
T7764 158:503 JLINK_IsHalted()  returns FALSE (0000ms, 0841ms total)
T7764 158:605 JLINK_IsHalted()  returns FALSE (0000ms, 0841ms total)
T514C 158:707 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 F2 42  returns 0x04 (0000ms, 0841ms total)
T7764 158:708 JLINK_IsHalted()  returns FALSE (0000ms, 0841ms total)
T7764 158:809 JLINK_IsHalted()  returns FALSE (0000ms, 0841ms total)
T7764 158:910 JLINK_IsHalted()  returns FALSE (0000ms, 0841ms total)
T7764 159:012 JLINK_IsHalted()  returns FALSE (0000ms, 0841ms total)
T7764 159:113 JLINK_IsHalted()  returns FALSE (0000ms, 0841ms total)
T7764 159:214 JLINK_IsHalted()  returns FALSE (0000ms, 0841ms total)
T514C 159:315 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 F2 42  returns 0x04 (0001ms, 0842ms total)
T7764 159:316 JLINK_IsHalted()  returns FALSE (0001ms, 0843ms total)
T7764 159:417 JLINK_IsHalted()  returns FALSE (0000ms, 0842ms total)
T7764 159:518 JLINK_IsHalted()  returns FALSE (0000ms, 0842ms total)
T7764 159:620 JLINK_IsHalted()  returns FALSE (0000ms, 0842ms total)
T7764 159:721 JLINK_IsHalted()  returns FALSE (0000ms, 0842ms total)
T7764 159:823 JLINK_IsHalted()  returns FALSE (0000ms, 0842ms total)
T514C 159:924 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 F4 42  returns 0x04 (0001ms, 0843ms total)
T7764 159:925 JLINK_IsHalted()  returns FALSE (0001ms, 0844ms total)
T7764 160:027 JLINK_IsHalted()  returns FALSE (0000ms, 0843ms total)
T7764 160:128 JLINK_IsHalted()  returns FALSE (0000ms, 0843ms total)
T7764 160:230 JLINK_IsHalted()  returns FALSE (0000ms, 0843ms total)
T7764 160:331 JLINK_IsHalted()  returns FALSE (0000ms, 0843ms total)
T514C 160:432 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 F4 42  returns 0x04 (0001ms, 0844ms total)
T7764 160:433 JLINK_IsHalted()  returns FALSE (0000ms, 0844ms total)
T7764 160:534 JLINK_IsHalted()  returns FALSE (0000ms, 0844ms total)
T7764 160:635 JLINK_IsHalted()  returns FALSE (0000ms, 0844ms total)
T7764 160:737 JLINK_IsHalted()  returns FALSE (0000ms, 0844ms total)
T7764 160:838 JLINK_IsHalted()  returns FALSE (0000ms, 0844ms total)
T7764 160:939 JLINK_IsHalted()  returns FALSE (0000ms, 0844ms total)
T514C 161:040 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 F6 42  returns 0x04 (0001ms, 0845ms total)
T7764 161:041 JLINK_IsHalted()  returns FALSE (0000ms, 0845ms total)
T7764 161:143 JLINK_IsHalted()  returns FALSE (0000ms, 0845ms total)
T7764 161:244 JLINK_IsHalted()  returns FALSE (0000ms, 0845ms total)
T7764 161:345 JLINK_IsHalted()  returns FALSE (0000ms, 0845ms total)
T7764 161:447 JLINK_IsHalted()  returns FALSE (0000ms, 0845ms total)
T7764 161:548 JLINK_IsHalted()  returns FALSE (0000ms, 0845ms total)
T514C 161:649 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 F8 42  returns 0x04 (0000ms, 0845ms total)
T7764 161:650 JLINK_IsHalted()  returns FALSE (0000ms, 0845ms total)
T7764 161:751 JLINK_IsHalted()  returns FALSE (0000ms, 0845ms total)
T7764 161:852 JLINK_IsHalted()  returns FALSE (0000ms, 0845ms total)
T7764 161:953 JLINK_IsHalted()  returns FALSE (0000ms, 0845ms total)
T7764 162:054 JLINK_IsHalted()  returns FALSE (0000ms, 0845ms total)
T7764 162:156 JLINK_IsHalted()  returns FALSE (0000ms, 0845ms total)
T514C 162:257 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 F8 42  returns 0x04 (0000ms, 0845ms total)
T7764 162:258 JLINK_IsHalted()  returns FALSE (0000ms, 0846ms total)
T7764 162:359 JLINK_IsHalted()  returns FALSE (0000ms, 0846ms total)
T7764 162:460 JLINK_IsHalted()  returns FALSE (0000ms, 0846ms total)
T7764 162:562 JLINK_IsHalted()  returns FALSE (0000ms, 0846ms total)
T7764 162:663 JLINK_IsHalted()  returns FALSE (0000ms, 0846ms total)
T7764 162:764 JLINK_IsHalted()  returns FALSE (0000ms, 0846ms total)
T514C 162:865 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 FA 42  returns 0x04 (0000ms, 0846ms total)
T7764 162:866 JLINK_IsHalted()  returns FALSE (0000ms, 0846ms total)
T7764 162:968 JLINK_IsHalted()  returns FALSE (0000ms, 0846ms total)
T7764 163:069 JLINK_IsHalted()  returns FALSE (0000ms, 0846ms total)
T7764 163:170 JLINK_IsHalted()  returns FALSE (0000ms, 0846ms total)
T7764 163:271 JLINK_IsHalted()  returns FALSE (0000ms, 0846ms total)
T7764 163:372 JLINK_IsHalted()  returns FALSE (0000ms, 0846ms total)
T514C 163:473 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 FA 42  returns 0x04 (0000ms, 0846ms total)
T7764 163:474 JLINK_IsHalted()  returns FALSE (0000ms, 0846ms total)
T7764 163:575 JLINK_IsHalted()  returns FALSE (0001ms, 0847ms total)
T7764 163:676 JLINK_IsHalted()  returns FALSE (0000ms, 0846ms total)
T7764 163:777 JLINK_IsHalted()  returns FALSE (0000ms, 0846ms total)
T7764 163:878 JLINK_IsHalted()  returns FALSE (0000ms, 0846ms total)
T7764 163:979 JLINK_IsHalted()  returns FALSE (0000ms, 0846ms total)
T514C 164:080 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 FC 42  returns 0x04 (0000ms, 0846ms total)
T7764 164:081 JLINK_IsHalted()  returns FALSE (0000ms, 0847ms total)
T7764 164:182 JLINK_IsHalted()  returns FALSE (0000ms, 0847ms total)
T7764 164:283 JLINK_IsHalted()  returns FALSE (0000ms, 0847ms total)
T7764 164:384 JLINK_IsHalted()  returns FALSE (0000ms, 0847ms total)
T7764 164:485 JLINK_IsHalted()  returns FALSE (0000ms, 0847ms total)
T7764 164:587 JLINK_IsHalted()  returns FALSE (0000ms, 0847ms total)
T514C 164:688 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 FE 42  returns 0x04 (0001ms, 0848ms total)
T7764 164:689 JLINK_IsHalted()  returns FALSE (0000ms, 0848ms total)
T7764 164:790 JLINK_IsHalted()  returns FALSE (0000ms, 0848ms total)
T7764 164:891 JLINK_IsHalted()  returns FALSE (0000ms, 0848ms total)
T7764 164:993 JLINK_IsHalted()  returns FALSE (0000ms, 0848ms total)
T7764 165:094 JLINK_IsHalted()  returns FALSE (0000ms, 0848ms total)
T514C 165:194 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 FE 42  returns 0x04 (0001ms, 0849ms total)
T7764 165:195 JLINK_IsHalted()  returns FALSE (0000ms, 0849ms total)
T7764 165:296 JLINK_IsHalted()  returns FALSE (0000ms, 0849ms total)
T7764 165:397 JLINK_IsHalted()  returns FALSE (0000ms, 0849ms total)
T7764 165:499 JLINK_IsHalted()  returns FALSE (0000ms, 0849ms total)
T7764 165:600 JLINK_IsHalted()  returns FALSE (0000ms, 0849ms total)
T7764 165:702 JLINK_IsHalted()  returns FALSE (0000ms, 0849ms total)
T514C 165:803 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 00 43  returns 0x04 (0000ms, 0849ms total)
T7764 165:804 JLINK_IsHalted()  returns FALSE (0000ms, 0849ms total)
T7764 165:905 JLINK_IsHalted()  returns FALSE (0000ms, 0849ms total)
T7764 166:007 JLINK_IsHalted()  returns FALSE (0000ms, 0849ms total)
T7764 166:108 JLINK_IsHalted()  returns FALSE (0000ms, 0849ms total)
T7764 166:208 JLINK_IsHalted()  returns FALSE (0000ms, 0849ms total)
T7764 166:309 JLINK_IsHalted()  returns FALSE (0000ms, 0849ms total)
T514C 166:410 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 00 43  returns 0x04 (0000ms, 0849ms total)
T7764 166:411 JLINK_IsHalted()  returns FALSE (0000ms, 0849ms total)
T7764 166:513 JLINK_IsHalted()  returns FALSE (0000ms, 0849ms total)
T7764 166:615 JLINK_IsHalted()  returns FALSE (0000ms, 0849ms total)
T7764 166:716 JLINK_IsHalted()  returns FALSE (0000ms, 0849ms total)
T7764 166:817 JLINK_IsHalted()  returns FALSE (0000ms, 0849ms total)
T7764 166:919 JLINK_IsHalted()  returns FALSE (0000ms, 0849ms total)
T514C 167:020 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 01 43  returns 0x04 (0000ms, 0849ms total)
T7764 167:021 JLINK_IsHalted()  returns FALSE (0000ms, 0849ms total)
T7764 167:122 JLINK_IsHalted()  returns FALSE (0000ms, 0849ms total)
T7764 167:223 JLINK_IsHalted()  returns FALSE (0000ms, 0849ms total)
T7764 167:324 JLINK_IsHalted()  returns FALSE (0000ms, 0849ms total)
T7764 167:425 JLINK_IsHalted()  returns FALSE (0000ms, 0849ms total)
T7764 167:526 JLINK_IsHalted()  returns FALSE (0000ms, 0849ms total)
T514C 167:628 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 02 43  returns 0x04 (0001ms, 0850ms total)
T7764 167:629 JLINK_IsHalted()  returns FALSE (0000ms, 0850ms total)
T7764 167:730 JLINK_IsHalted()  returns FALSE (0000ms, 0850ms total)
T7764 167:831 JLINK_IsHalted()  returns FALSE (0000ms, 0850ms total)
T7764 167:932 JLINK_IsHalted()  returns FALSE (0000ms, 0850ms total)
T7764 168:033 JLINK_IsHalted()  returns FALSE (0000ms, 0850ms total)
T7764 168:135 JLINK_IsHalted()  returns FALSE (0000ms, 0850ms total)
T514C 168:237 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 02 43  returns 0x04 (0001ms, 0851ms total)
T7764 168:238 JLINK_IsHalted()  returns FALSE (0000ms, 0851ms total)
T7764 168:339 JLINK_IsHalted()  returns FALSE (0000ms, 0851ms total)
T7764 168:440 JLINK_IsHalted()  returns FALSE (0000ms, 0851ms total)
T7764 168:541 JLINK_IsHalted()  returns FALSE (0000ms, 0851ms total)
T7764 168:642 JLINK_IsHalted()  returns FALSE (0000ms, 0851ms total)
T7764 168:743 JLINK_IsHalted()  returns FALSE (0000ms, 0851ms total)
T514C 168:845 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 03 43  returns 0x04 (0001ms, 0852ms total)
T7764 168:846 JLINK_IsHalted()  returns FALSE (0001ms, 0853ms total)
T7764 168:948 JLINK_IsHalted()  returns FALSE (0000ms, 0852ms total)
T7764 169:049 JLINK_IsHalted()  returns FALSE (0000ms, 0852ms total)
T7764 169:150 JLINK_IsHalted()  returns FALSE (0000ms, 0852ms total)
T7764 169:251 JLINK_IsHalted()  returns FALSE (0000ms, 0852ms total)
T514C 169:353 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 03 43  returns 0x04 (0000ms, 0852ms total)
T7764 169:354 JLINK_IsHalted()  returns FALSE (0000ms, 0853ms total)
T7764 169:455 JLINK_IsHalted()  returns FALSE (0000ms, 0853ms total)
T7764 169:557 JLINK_IsHalted()  returns FALSE (0000ms, 0853ms total)
T7764 169:658 JLINK_IsHalted()  returns FALSE (0000ms, 0853ms total)
T7764 169:759 JLINK_IsHalted()  returns FALSE (0000ms, 0853ms total)
T7764 169:861 JLINK_IsHalted()  returns FALSE (0000ms, 0853ms total)
T514C 169:962 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 04 43  returns 0x04 (0000ms, 0853ms total)
T7764 169:963 JLINK_IsHalted()  returns FALSE (0000ms, 0853ms total)
T7764 170:064 JLINK_IsHalted()  returns FALSE (0000ms, 0853ms total)
T7764 170:165 JLINK_IsHalted()  returns FALSE (0000ms, 0853ms total)
T7764 170:266 JLINK_IsHalted()  returns FALSE (0000ms, 0853ms total)
T7764 170:368 JLINK_IsHalted()  returns FALSE (0000ms, 0853ms total)
T7764 170:469 JLINK_IsHalted()  returns FALSE (0000ms, 0853ms total)
T514C 170:571 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 05 43  returns 0x04 (0001ms, 0854ms total)
T7764 170:572 JLINK_IsHalted()  returns FALSE (0000ms, 0854ms total)
T7764 170:673 JLINK_IsHalted()  returns FALSE (0000ms, 0854ms total)
T7764 170:774 JLINK_IsHalted()  returns FALSE (0000ms, 0854ms total)
T7764 170:875 JLINK_IsHalted()  returns FALSE (0000ms, 0854ms total)
T7764 170:977 JLINK_IsHalted()  returns FALSE (0000ms, 0854ms total)
T7764 171:078 JLINK_IsHalted()  returns FALSE (0000ms, 0854ms total)
T514C 171:179 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 05 43  returns 0x04 (0001ms, 0855ms total)
T7764 171:180 JLINK_IsHalted()  returns FALSE (0000ms, 0855ms total)
T7764 171:281 JLINK_IsHalted()  returns FALSE (0000ms, 0855ms total)
T7764 171:382 JLINK_IsHalted()  returns FALSE (0000ms, 0855ms total)
T7764 171:484 JLINK_IsHalted()  returns FALSE (0000ms, 0855ms total)
T7764 171:586 JLINK_IsHalted()  returns FALSE (0000ms, 0855ms total)
T7764 171:687 JLINK_IsHalted()  returns FALSE (0000ms, 0855ms total)
T514C 171:788 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 06 43  returns 0x04 (0001ms, 0856ms total)
T7764 171:789 JLINK_IsHalted()  returns FALSE (0000ms, 0856ms total)
T7764 171:891 JLINK_IsHalted()  returns FALSE (0000ms, 0856ms total)
T7764 171:992 JLINK_IsHalted()  returns FALSE (0000ms, 0856ms total)
T7764 172:093 JLINK_IsHalted()  returns FALSE (0000ms, 0856ms total)
T7764 172:194 JLINK_IsHalted()  returns FALSE (0000ms, 0856ms total)
T7764 172:296 JLINK_IsHalted()  returns FALSE (0000ms, 0856ms total)
T514C 172:397 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 06 43  returns 0x04 (0001ms, 0857ms total)
T7764 172:398 JLINK_IsHalted()  returns FALSE (0000ms, 0857ms total)
T7764 172:499 JLINK_IsHalted()  returns FALSE (0000ms, 0857ms total)
T7764 172:601 JLINK_IsHalted()  returns FALSE (0000ms, 0857ms total)
T7764 172:702 JLINK_IsHalted()  returns FALSE (0000ms, 0857ms total)
T7764 172:804 JLINK_IsHalted()  returns FALSE (0000ms, 0857ms total)
T7764 172:906 JLINK_IsHalted()  returns FALSE (0000ms, 0857ms total)
T514C 173:007 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 07 43  returns 0x04 (0001ms, 0858ms total)
T7764 173:008 JLINK_IsHalted()  returns FALSE (0000ms, 0858ms total)
T7764 173:109 JLINK_IsHalted()  returns FALSE (0000ms, 0858ms total)
T7764 173:210 JLINK_IsHalted()  returns FALSE (0000ms, 0858ms total)
T7764 173:311 JLINK_IsHalted()  returns FALSE (0000ms, 0858ms total)
T7764 173:412 JLINK_IsHalted()  returns FALSE (0000ms, 0858ms total)
T7764 173:513 JLINK_IsHalted()  returns FALSE (0000ms, 0858ms total)
T514C 173:615 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 08 43  returns 0x04 (0000ms, 0858ms total)
T7764 173:616 JLINK_IsHalted()  returns FALSE (0000ms, 0858ms total)
T7764 173:717 JLINK_IsHalted()  returns FALSE (0000ms, 0858ms total)
T7764 173:818 JLINK_IsHalted()  returns FALSE (0000ms, 0858ms total)
T7764 173:920 JLINK_IsHalted()  returns FALSE (0000ms, 0858ms total)
T7764 174:021 JLINK_IsHalted()  returns FALSE (0000ms, 0858ms total)
T7764 174:123 JLINK_IsHalted()  returns FALSE (0000ms, 0858ms total)
T514C 174:224 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 08 43  returns 0x04 (0001ms, 0859ms total)
T7764 174:225 JLINK_IsHalted()  returns FALSE (0001ms, 0860ms total)
T7764 174:326 JLINK_IsHalted()  returns FALSE (0000ms, 0859ms total)
T7764 174:427 JLINK_IsHalted()  returns FALSE (0001ms, 0860ms total)
T7764 174:528 JLINK_IsHalted()  returns FALSE (0000ms, 0859ms total)
T7764 174:629 JLINK_IsHalted()  returns FALSE (0000ms, 0859ms total)
T7764 174:731 JLINK_IsHalted()  returns FALSE (0000ms, 0859ms total)
T514C 174:832 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 09 43  returns 0x04 (0001ms, 0860ms total)
T7764 174:833 JLINK_IsHalted()  returns FALSE (0000ms, 0860ms total)
T7764 174:934 JLINK_IsHalted()  returns FALSE (0000ms, 0860ms total)
T7764 175:035 JLINK_IsHalted()  returns FALSE (0000ms, 0860ms total)
T7764 175:137 JLINK_IsHalted()  returns FALSE (0000ms, 0860ms total)
T7764 175:238 JLINK_IsHalted()  returns FALSE (0000ms, 0860ms total)
T7764 175:340 JLINK_IsHalted()  returns FALSE (0000ms, 0860ms total)
T514C 175:441 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 09 43  returns 0x04 (0001ms, 0861ms total)
T7764 175:442 JLINK_IsHalted()  returns FALSE (0001ms, 0862ms total)
T7764 175:543 JLINK_IsHalted()  returns FALSE (0000ms, 0861ms total)
T7764 175:644 JLINK_IsHalted()  returns FALSE (0000ms, 0861ms total)
T7764 175:746 JLINK_IsHalted()  returns FALSE (0000ms, 0861ms total)
T7764 175:847 JLINK_IsHalted()  returns FALSE (0000ms, 0861ms total)
T7764 175:948 JLINK_IsHalted()  returns FALSE (0000ms, 0861ms total)
T514C 176:049 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 0A 43  returns 0x04 (0001ms, 0862ms total)
T7764 176:050 JLINK_IsHalted()  returns FALSE (0000ms, 0862ms total)
T7764 176:152 JLINK_IsHalted()  returns FALSE (0000ms, 0862ms total)
T7764 176:253 JLINK_IsHalted()  returns FALSE (0000ms, 0862ms total)
T7764 176:354 JLINK_IsHalted()  returns FALSE (0000ms, 0862ms total)
T7764 176:455 JLINK_IsHalted()  returns FALSE (0000ms, 0862ms total)
T7764 176:556 JLINK_IsHalted()  returns FALSE (0000ms, 0862ms total)
T514C 176:658 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 0B 43  returns 0x04 (0000ms, 0862ms total)
T7764 176:659 JLINK_IsHalted()  returns FALSE (0000ms, 0862ms total)
T7764 176:760 JLINK_IsHalted()  returns FALSE (0000ms, 0862ms total)
T7764 176:861 JLINK_IsHalted()  returns FALSE (0000ms, 0862ms total)
T7764 176:962 JLINK_IsHalted()  returns FALSE (0000ms, 0862ms total)
T7764 177:063 JLINK_IsHalted()  returns FALSE (0000ms, 0862ms total)
T514C 177:164 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 0B 43  returns 0x04 (0001ms, 0863ms total)
T7764 177:165 JLINK_IsHalted()  returns FALSE (0000ms, 0863ms total)
T7764 177:266 JLINK_IsHalted()  returns FALSE (0000ms, 0863ms total)
T7764 177:368 JLINK_IsHalted()  returns FALSE (0000ms, 0863ms total)
T7764 177:469 JLINK_IsHalted()  returns FALSE (0000ms, 0863ms total)
T7764 177:571 JLINK_IsHalted()  returns FALSE (0000ms, 0863ms total)
T7764 177:672 JLINK_IsHalted()  returns FALSE (0000ms, 0863ms total)
T514C 177:773 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 0C 43  returns 0x04 (0001ms, 0864ms total)
T7764 177:774 JLINK_IsHalted()  returns FALSE (0000ms, 0864ms total)
T7764 177:875 JLINK_IsHalted()  returns FALSE (0000ms, 0864ms total)
T7764 177:976 JLINK_IsHalted()  returns FALSE (0000ms, 0864ms total)
T7764 178:077 JLINK_IsHalted()  returns FALSE (0000ms, 0864ms total)
T7764 178:179 JLINK_IsHalted()  returns FALSE (0000ms, 0864ms total)
T7764 178:280 JLINK_IsHalted()  returns FALSE (0000ms, 0864ms total)
T514C 178:381 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 0C 43  returns 0x04 (0001ms, 0865ms total)
T7764 178:382 JLINK_IsHalted()  returns FALSE (0000ms, 0865ms total)
T7764 178:483 JLINK_IsHalted()  returns FALSE (0000ms, 0865ms total)
T7764 178:585 JLINK_IsHalted()  returns FALSE (0000ms, 0865ms total)
T7764 178:687 JLINK_IsHalted()  returns FALSE (0000ms, 0865ms total)
T7764 178:788 JLINK_IsHalted()  returns FALSE (0000ms, 0865ms total)
T7764 178:888 JLINK_IsHalted()  returns FALSE (0000ms, 0865ms total)
T514C 178:989 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 0D 43  returns 0x04 (0000ms, 0865ms total)
T7764 178:990 JLINK_IsHalted()  returns FALSE (0000ms, 0865ms total)
T7764 179:091 JLINK_IsHalted()  returns FALSE (0000ms, 0865ms total)
T7764 179:193 JLINK_IsHalted()  returns FALSE (0000ms, 0865ms total)
T7764 179:294 JLINK_IsHalted()  returns FALSE (0000ms, 0865ms total)
T7764 179:395 JLINK_IsHalted()  returns FALSE (0000ms, 0865ms total)
T7764 179:496 JLINK_IsHalted()  returns FALSE (0000ms, 0865ms total)
T514C 179:597 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 0E 43  returns 0x04 (0000ms, 0865ms total)
T7764 179:598 JLINK_IsHalted()  returns FALSE (0000ms, 0865ms total)
T7764 179:700 JLINK_IsHalted()  returns FALSE (0000ms, 0865ms total)
T7764 179:801 JLINK_IsHalted()  returns FALSE (0000ms, 0865ms total)
T7764 179:902 JLINK_IsHalted()  returns FALSE (0000ms, 0865ms total)
T7764 180:003 JLINK_IsHalted()  returns FALSE (0000ms, 0865ms total)
T7764 180:104 JLINK_IsHalted()  returns FALSE (0000ms, 0865ms total)
T514C 180:206 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 0E 43  returns 0x04 (0001ms, 0866ms total)
T7764 180:207 JLINK_IsHalted()  returns FALSE (0000ms, 0866ms total)
T7764 180:308 JLINK_IsHalted()  returns FALSE (0000ms, 0866ms total)
T7764 180:409 JLINK_IsHalted()  returns FALSE (0000ms, 0866ms total)
T7764 180:510 JLINK_IsHalted()  returns FALSE (0000ms, 0866ms total)
T7764 180:612 JLINK_IsHalted()  returns FALSE (0000ms, 0866ms total)
T7764 180:713 JLINK_IsHalted()  returns FALSE (0000ms, 0866ms total)
T514C 180:814 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 0F 43  returns 0x04 (0001ms, 0867ms total)
T7764 180:815 JLINK_IsHalted()  returns FALSE (0001ms, 0868ms total)
T7764 180:917 JLINK_IsHalted()  returns FALSE (0000ms, 0867ms total)
T7764 181:018 JLINK_IsHalted()  returns FALSE (0000ms, 0867ms total)
T7764 181:119 JLINK_IsHalted()  returns FALSE (0000ms, 0867ms total)
T7764 181:220 JLINK_IsHalted()  returns FALSE (0000ms, 0867ms total)
T7764 181:321 JLINK_IsHalted()  returns FALSE (0000ms, 0867ms total)
T514C 181:423 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 0F 43  returns 0x04 (0001ms, 0868ms total)
T7764 181:424 JLINK_IsHalted()  returns FALSE (0000ms, 0868ms total)
T7764 181:525 JLINK_IsHalted()  returns FALSE (0000ms, 0868ms total)
T7764 181:626 JLINK_IsHalted()  returns FALSE (0000ms, 0868ms total)
T7764 181:728 JLINK_IsHalted()  returns FALSE (0000ms, 0868ms total)
T7764 181:829 JLINK_IsHalted()  returns FALSE (0000ms, 0868ms total)
T514C 181:930 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 10 43  returns 0x04 (0001ms, 0869ms total)
T7764 181:931 JLINK_IsHalted()  returns FALSE (0000ms, 0869ms total)
T7764 182:032 JLINK_IsHalted()  returns FALSE (0000ms, 0869ms total)
T7764 182:133 JLINK_IsHalted()  returns FALSE (0000ms, 0869ms total)
T7764 182:234 JLINK_IsHalted()  returns FALSE (0000ms, 0869ms total)
T7764 182:335 JLINK_IsHalted()  returns FALSE (0000ms, 0869ms total)
T7764 182:436 JLINK_IsHalted()  returns FALSE (0000ms, 0869ms total)
T514C 182:538 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 11 43  returns 0x04 (0001ms, 0870ms total)
T7764 182:539 JLINK_IsHalted()  returns FALSE (0000ms, 0870ms total)
T7764 182:640 JLINK_IsHalted()  returns FALSE (0000ms, 0870ms total)
T7764 182:742 JLINK_IsHalted()  returns FALSE (0000ms, 0870ms total)
T7764 182:843 JLINK_IsHalted()  returns FALSE (0000ms, 0870ms total)
T7764 182:945 JLINK_IsHalted()  returns FALSE (0000ms, 0870ms total)
T7764 183:046 JLINK_IsHalted()  returns FALSE (0000ms, 0870ms total)
T514C 183:147 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 11 43  returns 0x04 (0000ms, 0870ms total)
T7764 183:148 JLINK_IsHalted()  returns FALSE (0000ms, 0870ms total)
T7764 183:249 JLINK_IsHalted()  returns FALSE (0000ms, 0870ms total)
T7764 183:350 JLINK_IsHalted()  returns FALSE (0000ms, 0870ms total)
T7764 183:452 JLINK_IsHalted()  returns FALSE (0000ms, 0870ms total)
T7764 183:553 JLINK_IsHalted()  returns FALSE (0000ms, 0870ms total)
T7764 183:655 JLINK_IsHalted()  returns FALSE (0000ms, 0870ms total)
T514C 183:756 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 12 43  returns 0x04 (0001ms, 0871ms total)
T7764 183:757 JLINK_IsHalted()  returns FALSE (0000ms, 0871ms total)
T7764 183:859 JLINK_IsHalted()  returns FALSE (0000ms, 0871ms total)
T7764 183:960 JLINK_IsHalted()  returns FALSE (0000ms, 0871ms total)
T7764 184:061 JLINK_IsHalted()  returns FALSE (0000ms, 0871ms total)
T7764 184:162 JLINK_IsHalted()  returns FALSE (0000ms, 0871ms total)
T7764 184:264 JLINK_IsHalted()  returns FALSE (0000ms, 0871ms total)
T514C 184:365 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 12 43  returns 0x04 (0001ms, 0872ms total)
T7764 184:366 JLINK_IsHalted()  returns FALSE (0000ms, 0872ms total)
T7764 184:467 JLINK_IsHalted()  returns FALSE (0000ms, 0872ms total)
T7764 184:568 JLINK_IsHalted()  returns FALSE (0000ms, 0872ms total)
T7764 184:670 JLINK_IsHalted()  returns FALSE (0000ms, 0872ms total)
T7764 184:771 JLINK_IsHalted()  returns FALSE (0000ms, 0872ms total)
T7764 184:873 JLINK_IsHalted()  returns FALSE (0000ms, 0872ms total)
T514C 184:974 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 13 43  returns 0x04 (0001ms, 0873ms total)
T7764 184:975 JLINK_IsHalted()  returns FALSE (0000ms, 0873ms total)
T7764 185:076 JLINK_IsHalted()  returns FALSE (0000ms, 0873ms total)
T7764 185:177 JLINK_IsHalted()  returns FALSE (0000ms, 0873ms total)
T7764 185:278 JLINK_IsHalted()  returns FALSE (0000ms, 0873ms total)
T7764 185:379 JLINK_IsHalted()  returns FALSE (0000ms, 0873ms total)
T7764 185:480 JLINK_IsHalted()  returns FALSE (0000ms, 0873ms total)
T514C 185:581 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 14 43  returns 0x04 (0001ms, 0874ms total)
T7764 185:582 JLINK_IsHalted()  returns FALSE (0000ms, 0874ms total)
T7764 185:683 JLINK_IsHalted()  returns FALSE (0000ms, 0874ms total)
T7764 185:784 JLINK_IsHalted()  returns FALSE (0000ms, 0874ms total)
T7764 185:885 JLINK_IsHalted()  returns FALSE (0000ms, 0874ms total)
T7764 185:986 JLINK_IsHalted()  returns FALSE (0000ms, 0874ms total)
T7764 186:088 JLINK_IsHalted()  returns FALSE (0000ms, 0874ms total)
T514C 186:190 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 14 43  returns 0x04 (0001ms, 0875ms total)
T7764 186:191 JLINK_IsHalted()  returns FALSE (0001ms, 0876ms total)
T7764 186:293 JLINK_IsHalted()  returns FALSE (0000ms, 0875ms total)
T7764 186:394 JLINK_IsHalted()  returns FALSE (0000ms, 0875ms total)
T7764 186:495 JLINK_IsHalted()  returns FALSE (0000ms, 0875ms total)
T7764 186:596 JLINK_IsHalted()  returns FALSE (0000ms, 0875ms total)
T7764 186:698 JLINK_IsHalted()  returns FALSE (0000ms, 0875ms total)
T514C 186:799 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 15 43  returns 0x04 (0001ms, 0876ms total)
T7764 186:800 JLINK_IsHalted()  returns FALSE (0001ms, 0877ms total)
T7764 186:902 JLINK_IsHalted()  returns FALSE (0000ms, 0876ms total)
T7764 187:003 JLINK_IsHalted()  returns FALSE (0000ms, 0876ms total)
T7764 187:104 JLINK_IsHalted()  returns FALSE (0000ms, 0876ms total)
T7764 187:205 JLINK_IsHalted()  returns FALSE (0000ms, 0876ms total)
T7764 187:307 JLINK_IsHalted()  returns FALSE (0000ms, 0876ms total)
T514C 187:408 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 15 43  returns 0x04 (0001ms, 0877ms total)
T7764 187:409 JLINK_IsHalted()  returns FALSE (0001ms, 0878ms total)
T7764 187:511 JLINK_IsHalted()  returns FALSE (0000ms, 0877ms total)
T7764 187:612 JLINK_IsHalted()  returns FALSE (0000ms, 0877ms total)
T7764 187:713 JLINK_IsHalted()  returns FALSE (0000ms, 0877ms total)
T7764 187:814 JLINK_IsHalted()  returns FALSE (0000ms, 0877ms total)
T514C 187:915 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 16 43  returns 0x04 (0001ms, 0878ms total)
T7764 187:916 JLINK_IsHalted()  returns FALSE (0000ms, 0878ms total)
T7764 188:018 JLINK_IsHalted()  returns FALSE (0000ms, 0878ms total)
T7764 188:120 JLINK_IsHalted()  returns FALSE (0000ms, 0878ms total)
T7764 188:220 JLINK_IsHalted()  returns FALSE (0000ms, 0878ms total)
T7764 188:321 JLINK_IsHalted()  returns FALSE (0000ms, 0878ms total)
T7764 188:423 JLINK_IsHalted()  returns FALSE (0000ms, 0878ms total)
T514C 188:524 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 17 43  returns 0x04 (0001ms, 0879ms total)
T7764 188:525 JLINK_IsHalted()  returns FALSE (0000ms, 0879ms total)
T7764 188:626 JLINK_IsHalted()  returns FALSE (0001ms, 0880ms total)
T7764 188:728 JLINK_IsHalted()  returns FALSE (0000ms, 0879ms total)
T7764 188:829 JLINK_IsHalted()  returns FALSE (0000ms, 0879ms total)
T7764 188:930 JLINK_IsHalted()  returns FALSE (0000ms, 0879ms total)
T7764 189:031 JLINK_IsHalted()  returns FALSE (0000ms, 0879ms total)
T514C 189:133 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 17 43  returns 0x04 (0001ms, 0880ms total)
T7764 189:134 JLINK_IsHalted()  returns FALSE (0000ms, 0880ms total)
T7764 189:235 JLINK_IsHalted()  returns FALSE (0000ms, 0880ms total)
T7764 189:336 JLINK_IsHalted()  returns FALSE (0000ms, 0880ms total)
T7764 189:437 JLINK_IsHalted()  returns FALSE (0000ms, 0880ms total)
T7764 189:538 JLINK_IsHalted()  returns FALSE (0000ms, 0880ms total)
T7764 189:639 JLINK_IsHalted()  returns FALSE (0000ms, 0880ms total)
T514C 189:740 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 18 43  returns 0x04 (0000ms, 0880ms total)
T7764 189:741 JLINK_IsHalted()  returns FALSE (0000ms, 0880ms total)
T7764 189:843 JLINK_IsHalted()  returns FALSE (0000ms, 0880ms total)
T7764 189:944 JLINK_IsHalted()  returns FALSE (0000ms, 0880ms total)
T7764 190:045 JLINK_IsHalted()  returns FALSE (0000ms, 0880ms total)
T7764 190:146 JLINK_IsHalted()  returns FALSE (0000ms, 0880ms total)
T7764 190:247 JLINK_IsHalted()  returns FALSE (0000ms, 0880ms total)
T514C 190:348 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 18 43  returns 0x04 (0001ms, 0881ms total)
T7764 190:349 JLINK_IsHalted()  returns FALSE (0000ms, 0881ms total)
T7764 190:450 JLINK_IsHalted()  returns FALSE (0000ms, 0881ms total)
T7764 190:551 JLINK_IsHalted()  returns FALSE (0000ms, 0881ms total)
T7764 190:653 JLINK_IsHalted()  returns FALSE (0000ms, 0881ms total)
T7764 190:755 JLINK_IsHalted()  returns FALSE (0000ms, 0881ms total)
T7764 190:856 JLINK_IsHalted()  returns FALSE (0000ms, 0881ms total)
T514C 190:957 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 19 43  returns 0x04 (0001ms, 0882ms total)
T7764 190:958 JLINK_IsHalted()  returns FALSE (0000ms, 0882ms total)
T7764 191:059 JLINK_IsHalted()  returns FALSE (0000ms, 0882ms total)
T7764 191:160 JLINK_IsHalted()  returns FALSE (0000ms, 0882ms total)
T7764 191:262 JLINK_IsHalted()  returns FALSE (0000ms, 0882ms total)
T7764 191:363 JLINK_IsHalted()  returns FALSE (0000ms, 0882ms total)
T7764 191:464 JLINK_IsHalted()  returns FALSE (0000ms, 0882ms total)
T514C 191:565 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 1A 43  returns 0x04 (0001ms, 0883ms total)
T7764 191:566 JLINK_IsHalted()  returns FALSE (0000ms, 0883ms total)
T7764 191:668 JLINK_IsHalted()  returns FALSE (0000ms, 0883ms total)
T7764 191:770 JLINK_IsHalted()  returns FALSE (0000ms, 0883ms total)
T7764 191:871 JLINK_IsHalted()  returns FALSE (0000ms, 0883ms total)
T7764 191:972 JLINK_IsHalted()  returns FALSE (0000ms, 0883ms total)
T7764 192:073 JLINK_IsHalted()  returns FALSE (0000ms, 0883ms total)
T514C 192:175 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 1A 43  returns 0x04 (0001ms, 0884ms total)
T7764 192:176 JLINK_IsHalted()  returns FALSE (0000ms, 0884ms total)
T7764 192:277 JLINK_IsHalted()  returns FALSE (0000ms, 0884ms total)
T7764 192:378 JLINK_IsHalted()  returns FALSE (0000ms, 0884ms total)
T7764 192:479 JLINK_IsHalted()  returns FALSE (0000ms, 0884ms total)
T7764 192:581 JLINK_IsHalted()  returns FALSE (0000ms, 0884ms total)
T7764 192:682 JLINK_IsHalted()  returns FALSE (0000ms, 0884ms total)
T514C 192:783 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 1B 43  returns 0x04 (0000ms, 0884ms total)
T7764 192:784 JLINK_IsHalted()  returns FALSE (0000ms, 0884ms total)
T7764 192:885 JLINK_IsHalted()  returns FALSE (0000ms, 0884ms total)
T7764 192:986 JLINK_IsHalted()  returns FALSE (0000ms, 0884ms total)
T7764 193:088 JLINK_IsHalted()  returns FALSE (0000ms, 0884ms total)
T7764 193:189 JLINK_IsHalted()  returns FALSE (0000ms, 0884ms total)
T514C 193:290 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 1B 43  returns 0x04 (0001ms, 0885ms total)
T7764 193:291 JLINK_IsHalted()  returns FALSE (0000ms, 0885ms total)
T7764 193:393 JLINK_IsHalted()  returns FALSE (0000ms, 0885ms total)
T7764 193:494 JLINK_IsHalted()  returns FALSE (0000ms, 0885ms total)
T7764 193:595 JLINK_IsHalted()  returns FALSE (0000ms, 0885ms total)
T7764 193:697 JLINK_IsHalted()  returns FALSE (0000ms, 0885ms total)
T7764 193:798 JLINK_IsHalted()  returns FALSE (0000ms, 0885ms total)
T514C 193:899 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 1C 43  returns 0x04 (0001ms, 0886ms total)
T7764 193:900 JLINK_IsHalted()  returns FALSE (0000ms, 0886ms total)
T7764 194:002 JLINK_IsHalted()  returns FALSE (0000ms, 0886ms total)
T7764 194:103 JLINK_IsHalted()  returns FALSE (0000ms, 0886ms total)
T7764 194:204 JLINK_IsHalted()  returns FALSE (0000ms, 0886ms total)
T7764 194:306 JLINK_IsHalted()  returns FALSE (0000ms, 0886ms total)
T7764 194:407 JLINK_IsHalted()  returns FALSE (0000ms, 0886ms total)
T514C 194:508 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 1C 43  returns 0x04 (0001ms, 0887ms total)
T7764 194:509 JLINK_IsHalted()  returns FALSE (0000ms, 0887ms total)
T7764 194:611 JLINK_IsHalted()  returns FALSE (0000ms, 0887ms total)
T7764 194:712 JLINK_IsHalted()  returns FALSE (0000ms, 0887ms total)
T7764 194:813 JLINK_IsHalted()  returns FALSE (0000ms, 0887ms total)
T7764 194:914 JLINK_IsHalted()  returns FALSE (0000ms, 0887ms total)
T7764 195:016 JLINK_IsHalted()  returns FALSE (0000ms, 0887ms total)
T514C 195:118 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 1D 43  returns 0x04 (0000ms, 0887ms total)
T7764 195:119 JLINK_IsHalted()  returns FALSE (0000ms, 0887ms total)
T7764 195:220 JLINK_IsHalted()  returns FALSE (0000ms, 0887ms total)
T7764 195:321 JLINK_IsHalted()  returns FALSE (0000ms, 0887ms total)
T7764 195:422 JLINK_IsHalted()  returns FALSE (0000ms, 0887ms total)
T7764 195:524 JLINK_IsHalted()  returns FALSE (0000ms, 0887ms total)
T7764 195:624 JLINK_IsHalted()  returns FALSE (0000ms, 0887ms total)
T514C 195:726 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 1E 43  returns 0x04 (0001ms, 0888ms total)
T7764 195:727 JLINK_IsHalted()  returns FALSE (0000ms, 0888ms total)
T7764 195:828 JLINK_IsHalted()  returns FALSE (0000ms, 0888ms total)
T7764 195:929 JLINK_IsHalted()  returns FALSE (0000ms, 0888ms total)
T7764 196:031 JLINK_IsHalted()  returns FALSE (0000ms, 0888ms total)
T7764 196:132 JLINK_IsHalted()  returns FALSE (0000ms, 0888ms total)
T7764 196:234 JLINK_IsHalted()  returns FALSE (0000ms, 0888ms total)
T514C 196:335 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 1E 43  returns 0x04 (0001ms, 0889ms total)
T7764 196:336 JLINK_IsHalted()  returns FALSE (0000ms, 0889ms total)
T7764 196:438 JLINK_IsHalted()  returns FALSE (0000ms, 0889ms total)
T7764 196:539 JLINK_IsHalted()  returns FALSE (0000ms, 0889ms total)
T7764 196:640 JLINK_IsHalted()  returns FALSE (0000ms, 0889ms total)
T7764 196:741 JLINK_IsHalted()  returns FALSE (0000ms, 0889ms total)
T7764 196:842 JLINK_IsHalted()  returns FALSE (0000ms, 0889ms total)
T514C 196:943 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 1F 43  returns 0x04 (0001ms, 0890ms total)
T7764 196:944 JLINK_IsHalted()  returns FALSE (0000ms, 0890ms total)
T7764 197:045 JLINK_IsHalted()  returns FALSE (0000ms, 0890ms total)
T7764 197:146 JLINK_IsHalted()  returns FALSE (0000ms, 0890ms total)
T7764 197:247 JLINK_IsHalted()  returns FALSE (0000ms, 0890ms total)
T7764 197:348 JLINK_IsHalted()  returns FALSE (0000ms, 0890ms total)
T7764 197:450 JLINK_IsHalted()  returns FALSE (0000ms, 0890ms total)
T514C 197:552 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 20 43  returns 0x04 (0000ms, 0890ms total)
T7764 197:552 JLINK_IsHalted()  returns FALSE (0001ms, 0891ms total)
T7764 197:654 JLINK_IsHalted()  returns FALSE (0001ms, 0891ms total)
T7764 197:756 JLINK_IsHalted()  returns FALSE (0000ms, 0890ms total)
T7764 197:857 JLINK_IsHalted()  returns FALSE (0000ms, 0890ms total)
T7764 197:958 JLINK_IsHalted()  returns FALSE (0000ms, 0890ms total)
T7764 198:059 JLINK_IsHalted()  returns FALSE (0000ms, 0890ms total)
T514C 198:161 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 20 43  returns 0x04 (0001ms, 0891ms total)
T7764 198:162 JLINK_IsHalted()  returns FALSE (0000ms, 0891ms total)
T7764 198:263 JLINK_IsHalted()  returns FALSE (0000ms, 0891ms total)
T7764 198:364 JLINK_IsHalted()  returns FALSE (0000ms, 0891ms total)
T7764 198:465 JLINK_IsHalted()  returns FALSE (0000ms, 0891ms total)
T7764 198:567 JLINK_IsHalted()  returns FALSE (0000ms, 0891ms total)
T7764 198:668 JLINK_IsHalted()  returns FALSE (0000ms, 0891ms total)
T514C 198:770 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 21 43  returns 0x04 (0000ms, 0891ms total)
T7764 198:771 JLINK_IsHalted()  returns FALSE (0000ms, 0891ms total)
T7764 198:872 JLINK_IsHalted()  returns FALSE (0000ms, 0891ms total)
T7764 198:973 JLINK_IsHalted()  returns FALSE (0000ms, 0891ms total)
T7764 199:075 JLINK_IsHalted()  returns FALSE (0000ms, 0891ms total)
T7764 199:176 JLINK_IsHalted()  returns FALSE (0000ms, 0891ms total)
T7764 199:277 JLINK_IsHalted()  returns FALSE (0000ms, 0891ms total)
T514C 199:379 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 21 43  returns 0x04 (0001ms, 0892ms total)
T7764 199:380 JLINK_IsHalted()  returns FALSE (0001ms, 0893ms total)
T7764 199:481 JLINK_IsHalted()  returns FALSE (0000ms, 0892ms total)
T7764 199:583 JLINK_IsHalted()  returns FALSE (0000ms, 0892ms total)
T7764 199:684 JLINK_IsHalted()  returns FALSE (0000ms, 0892ms total)
T7764 199:786 JLINK_IsHalted()  returns FALSE (0000ms, 0892ms total)
T7764 199:887 JLINK_IsHalted()  returns FALSE (0000ms, 0892ms total)
T514C 199:989 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 22 43  returns 0x04 (0000ms, 0892ms total)
T7764 199:990 JLINK_IsHalted()  returns FALSE (0000ms, 0892ms total)
T7764 200:091 JLINK_IsHalted()  returns FALSE (0000ms, 0892ms total)
T7764 200:192 JLINK_IsHalted()  returns FALSE (0000ms, 0892ms total)
T7764 200:293 JLINK_IsHalted()  returns FALSE (0000ms, 0892ms total)
T7764 200:394 JLINK_IsHalted()  returns FALSE (0000ms, 0892ms total)
T7764 200:496 JLINK_IsHalted()  returns FALSE (0000ms, 0892ms total)
T514C 200:597 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 23 43  returns 0x04 (0000ms, 0892ms total)
T7764 200:598 JLINK_IsHalted()  returns FALSE (0000ms, 0892ms total)
T7764 200:699 JLINK_IsHalted()  returns FALSE (0000ms, 0892ms total)
T7764 200:800 JLINK_IsHalted()  returns FALSE (0000ms, 0892ms total)
T7764 200:902 JLINK_IsHalted()  returns FALSE (0000ms, 0892ms total)
T7764 201:003 JLINK_IsHalted()  returns FALSE (0000ms, 0892ms total)
T7764 201:104 JLINK_IsHalted()  returns FALSE (0000ms, 0892ms total)
T514C 201:205 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 23 43  returns 0x04 (0001ms, 0893ms total)
T7764 201:206 JLINK_IsHalted()  returns FALSE (0000ms, 0893ms total)
T7764 201:307 JLINK_IsHalted()  returns FALSE (0000ms, 0893ms total)
T7764 201:408 JLINK_IsHalted()  returns FALSE (0000ms, 0893ms total)
T7764 201:510 JLINK_IsHalted()  returns FALSE (0000ms, 0893ms total)
T7764 201:611 JLINK_IsHalted()  returns FALSE (0000ms, 0893ms total)
T514C 201:713 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 24 43  returns 0x04 (0000ms, 0893ms total)
T7764 201:714 JLINK_IsHalted()  returns FALSE (0000ms, 0893ms total)
T7764 201:815 JLINK_IsHalted()  returns FALSE (0000ms, 0893ms total)
T7764 201:916 JLINK_IsHalted()  returns FALSE (0000ms, 0893ms total)
T7764 202:017 JLINK_IsHalted()  returns FALSE (0000ms, 0893ms total)
T7764 202:118 JLINK_IsHalted()  returns FALSE (0000ms, 0893ms total)
T7764 202:220 JLINK_IsHalted()  returns FALSE (0000ms, 0893ms total)
T514C 202:321 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 24 43  returns 0x04 (0001ms, 0894ms total)
T7764 202:322 JLINK_IsHalted()  returns FALSE (0000ms, 0894ms total)
T7764 202:423 JLINK_IsHalted()  returns FALSE (0000ms, 0894ms total)
T7764 202:524 JLINK_IsHalted()  returns FALSE (0000ms, 0894ms total)
T7764 202:626 JLINK_IsHalted()  returns FALSE (0000ms, 0894ms total)
T7764 202:727 JLINK_IsHalted()  returns FALSE (0000ms, 0894ms total)
T7764 202:829 JLINK_IsHalted()  returns FALSE (0000ms, 0894ms total)
T514C 202:930 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 25 43  returns 0x04 (0001ms, 0895ms total)
T7764 202:931 JLINK_IsHalted()  returns FALSE (0000ms, 0895ms total)
T7764 203:032 JLINK_IsHalted()  returns FALSE (0000ms, 0895ms total)
T7764 203:133 JLINK_IsHalted()  returns FALSE (0000ms, 0895ms total)
T7764 203:234 JLINK_IsHalted()  returns FALSE (0000ms, 0895ms total)
T7764 203:336 JLINK_IsHalted()  returns FALSE (0000ms, 0895ms total)
T7764 203:437 JLINK_IsHalted()  returns FALSE (0000ms, 0895ms total)
T514C 203:538 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 26 43  returns 0x04 (0001ms, 0896ms total)
T7764 203:539 JLINK_IsHalted()  returns FALSE (0000ms, 0896ms total)
T7764 203:641 JLINK_IsHalted()  returns FALSE (0000ms, 0896ms total)
T7764 203:742 JLINK_IsHalted()  returns FALSE (0000ms, 0896ms total)
T7764 203:844 JLINK_IsHalted()  returns FALSE (0000ms, 0896ms total)
T7764 203:945 JLINK_IsHalted()  returns FALSE (0000ms, 0896ms total)
T7764 204:046 JLINK_IsHalted()  returns FALSE (0000ms, 0896ms total)
T514C 204:147 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 26 43  returns 0x04 (0001ms, 0897ms total)
T7764 204:148 JLINK_IsHalted()  returns FALSE (0000ms, 0897ms total)
T7764 204:249 JLINK_IsHalted()  returns FALSE (0000ms, 0897ms total)
T7764 204:351 JLINK_IsHalted()  returns FALSE (0000ms, 0897ms total)
T7764 204:452 JLINK_IsHalted()  returns FALSE (0000ms, 0897ms total)
T7764 204:553 JLINK_IsHalted()  returns FALSE (0000ms, 0897ms total)
T7764 204:654 JLINK_IsHalted()  returns FALSE (0000ms, 0897ms total)
T514C 204:756 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 27 43  returns 0x04 (0000ms, 0897ms total)
T7764 204:757 JLINK_IsHalted()  returns FALSE (0000ms, 0897ms total)
T7764 204:858 JLINK_IsHalted()  returns FALSE (0000ms, 0897ms total)
T7764 204:959 JLINK_IsHalted()  returns FALSE (0000ms, 0897ms total)
T7764 205:059 JLINK_IsHalted()  returns FALSE (0000ms, 0897ms total)
T7764 205:161 JLINK_IsHalted()  returns FALSE (0000ms, 0897ms total)
T7764 205:262 JLINK_IsHalted()  returns FALSE (0000ms, 0897ms total)
T514C 205:363 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 27 43  returns 0x04 (0000ms, 0897ms total)
T7764 205:364 JLINK_IsHalted()  returns FALSE (0000ms, 0897ms total)
T7764 205:465 JLINK_IsHalted()  returns FALSE (0000ms, 0897ms total)
T7764 205:566 JLINK_IsHalted()  returns FALSE (0000ms, 0897ms total)
T7764 205:667 JLINK_IsHalted()  returns FALSE (0000ms, 0897ms total)
T7764 205:768 JLINK_IsHalted()  returns FALSE (0000ms, 0897ms total)
T7764 205:869 JLINK_IsHalted()  returns FALSE (0000ms, 0897ms total)
T514C 205:971 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 28 43  returns 0x04 (0001ms, 0898ms total)
T7764 205:972 JLINK_IsHalted()  returns FALSE (0001ms, 0899ms total)
T7764 206:073 JLINK_IsHalted()  returns FALSE (0000ms, 0898ms total)
T7764 206:174 JLINK_IsHalted()  returns FALSE (0000ms, 0898ms total)
T7764 206:276 JLINK_IsHalted()  returns FALSE (0000ms, 0898ms total)
T7764 206:377 JLINK_IsHalted()  returns FALSE (0000ms, 0898ms total)
T7764 206:479 JLINK_IsHalted()  returns FALSE (0000ms, 0898ms total)
T514C 206:580 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 29 43  returns 0x04 (0001ms, 0899ms total)
T7764 206:581 JLINK_IsHalted()  returns FALSE (0000ms, 0899ms total)
T7764 206:682 JLINK_IsHalted()  returns FALSE (0000ms, 0899ms total)
T7764 206:784 JLINK_IsHalted()  returns FALSE (0000ms, 0899ms total)
T7764 206:885 JLINK_IsHalted()  returns FALSE (0000ms, 0899ms total)
T7764 206:986 JLINK_IsHalted()  returns FALSE (0000ms, 0899ms total)
T7764 207:087 JLINK_IsHalted()  returns FALSE (0000ms, 0899ms total)
T514C 207:188 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 29 43  returns 0x04 (0001ms, 0900ms total)
T7764 207:189 JLINK_IsHalted()  returns FALSE (0000ms, 0900ms total)
T7764 207:290 JLINK_IsHalted()  returns FALSE (0000ms, 0900ms total)
T7764 207:392 JLINK_IsHalted()  returns FALSE (0000ms, 0900ms total)
T7764 207:493 JLINK_IsHalted()  returns FALSE (0000ms, 0900ms total)
T7764 207:594 JLINK_IsHalted()  returns FALSE (0000ms, 0900ms total)
T514C 207:695 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 2A 43  returns 0x04 (0001ms, 0901ms total)
T7764 207:696 JLINK_IsHalted()  returns FALSE (0000ms, 0901ms total)
T7764 207:798 JLINK_IsHalted()  returns FALSE (0000ms, 0901ms total)
T7764 207:899 JLINK_IsHalted()  returns FALSE (0000ms, 0901ms total)
T7764 208:001 JLINK_IsHalted()  returns FALSE (0000ms, 0901ms total)
T7764 208:102 JLINK_IsHalted()  returns FALSE (0000ms, 0901ms total)
T7764 208:203 JLINK_IsHalted()  returns FALSE (0000ms, 0901ms total)
T514C 208:304 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 2A 43  returns 0x04 (0001ms, 0902ms total)
T7764 208:305 JLINK_IsHalted()  returns FALSE (0000ms, 0902ms total)
T7764 208:406 JLINK_IsHalted()  returns FALSE (0000ms, 0902ms total)
T7764 208:507 JLINK_IsHalted()  returns FALSE (0000ms, 0902ms total)
T7764 208:609 JLINK_IsHalted()  returns FALSE (0000ms, 0902ms total)
T7764 208:710 JLINK_IsHalted()  returns FALSE (0000ms, 0902ms total)
T7764 208:811 JLINK_IsHalted()  returns FALSE (0000ms, 0902ms total)
T514C 208:912 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 2B 43  returns 0x04 (0001ms, 0903ms total)
T7764 208:913 JLINK_IsHalted()  returns FALSE (0000ms, 0903ms total)
T7764 209:015 JLINK_IsHalted()  returns FALSE (0000ms, 0903ms total)
T7764 209:117 JLINK_IsHalted()  returns FALSE (0000ms, 0903ms total)
T7764 209:218 JLINK_IsHalted()  returns FALSE (0000ms, 0903ms total)
T7764 209:319 JLINK_IsHalted()  returns FALSE (0000ms, 0903ms total)
T7764 209:420 JLINK_IsHalted()  returns FALSE (0000ms, 0903ms total)
T514C 209:521 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 2C 43  returns 0x04 (0000ms, 0903ms total)
T7764 209:522 JLINK_IsHalted()  returns FALSE (0000ms, 0903ms total)
T7764 209:624 JLINK_IsHalted()  returns FALSE (0000ms, 0903ms total)
T7764 209:726 JLINK_IsHalted()  returns FALSE (0000ms, 0903ms total)
T7764 209:827 JLINK_IsHalted()  returns FALSE (0000ms, 0903ms total)
T7764 209:928 JLINK_IsHalted()  returns FALSE (0000ms, 0903ms total)
T7764 210:029 JLINK_IsHalted()  returns FALSE (0000ms, 0903ms total)
T514C 210:130 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 2C 43  returns 0x04 (0001ms, 0904ms total)
T7764 210:131 JLINK_IsHalted()  returns FALSE (0000ms, 0904ms total)
T7764 210:232 JLINK_IsHalted()  returns FALSE (0000ms, 0904ms total)
T7764 210:334 JLINK_IsHalted()  returns FALSE (0000ms, 0904ms total)
T7764 210:436 JLINK_IsHalted()  returns FALSE (0000ms, 0904ms total)
T7764 210:537 JLINK_IsHalted()  returns FALSE (0000ms, 0904ms total)
T7764 210:638 JLINK_IsHalted()  returns FALSE (0000ms, 0904ms total)
T514C 210:739 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 2D 43  returns 0x04 (0000ms, 0904ms total)
T7764 210:740 JLINK_IsHalted()  returns FALSE (0000ms, 0904ms total)
T7764 210:842 JLINK_IsHalted()  returns FALSE (0000ms, 0904ms total)
T7764 210:943 JLINK_IsHalted()  returns FALSE (0000ms, 0904ms total)
T7764 211:044 JLINK_IsHalted()  returns FALSE (0000ms, 0904ms total)
T7764 211:145 JLINK_IsHalted()  returns FALSE (0000ms, 0904ms total)
T7764 211:246 JLINK_IsHalted()  returns FALSE (0000ms, 0904ms total)
T514C 211:348 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 2D 43  returns 0x04 (0001ms, 0905ms total)
T7764 211:349 JLINK_IsHalted()  returns FALSE (0001ms, 0906ms total)
T7764 211:450 JLINK_IsHalted()  returns FALSE (0000ms, 0905ms total)
T7764 211:551 JLINK_IsHalted()  returns FALSE (0000ms, 0905ms total)
T7764 211:652 JLINK_IsHalted()  returns FALSE (0000ms, 0905ms total)
T7764 211:753 JLINK_IsHalted()  returns FALSE (0000ms, 0905ms total)
T7764 211:854 JLINK_IsHalted()  returns FALSE (0000ms, 0905ms total)
T514C 211:956 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 2E 43  returns 0x04 (0001ms, 0906ms total)
T7764 211:957 JLINK_IsHalted()  returns FALSE (0001ms, 0907ms total)
T7764 212:059 JLINK_IsHalted()  returns FALSE (0000ms, 0906ms total)
T7764 212:160 JLINK_IsHalted()  returns FALSE (0000ms, 0906ms total)
T7764 212:261 JLINK_IsHalted()  returns FALSE (0000ms, 0906ms total)
T7764 212:362 JLINK_IsHalted()  returns FALSE (0000ms, 0906ms total)
T7764 212:464 JLINK_IsHalted()  returns FALSE (0000ms, 0906ms total)
T514C 212:565 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 2F 43  returns 0x04 (0001ms, 0907ms total)
T7764 212:566 JLINK_IsHalted()  returns FALSE (0001ms, 0908ms total)
T7764 212:668 JLINK_IsHalted()  returns FALSE (0000ms, 0907ms total)
T7764 212:769 JLINK_IsHalted()  returns FALSE (0000ms, 0907ms total)
T7764 212:870 JLINK_IsHalted()  returns FALSE (0000ms, 0907ms total)
T7764 212:972 JLINK_IsHalted()  returns FALSE (0000ms, 0907ms total)
T7764 213:073 JLINK_IsHalted()  returns FALSE (0000ms, 0907ms total)
T514C 213:174 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 2F 43  returns 0x04 (0000ms, 0907ms total)
T7764 213:175 JLINK_IsHalted()  returns FALSE (0000ms, 0907ms total)
T7764 213:276 JLINK_IsHalted()  returns FALSE (0000ms, 0907ms total)
T7764 213:377 JLINK_IsHalted()  returns FALSE (0000ms, 0907ms total)
T7764 213:479 JLINK_IsHalted()  returns FALSE (0000ms, 0907ms total)
T7764 213:581 JLINK_IsHalted()  returns FALSE (0000ms, 0907ms total)
T7764 213:682 JLINK_IsHalted()  returns FALSE (0000ms, 0907ms total)
T514C 213:783 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 30 43  returns 0x04 (0001ms, 0908ms total)
T7764 213:784 JLINK_IsHalted()  returns FALSE (0000ms, 0908ms total)
T7764 213:885 JLINK_IsHalted()  returns FALSE (0000ms, 0908ms total)
T7764 213:986 JLINK_IsHalted()  returns FALSE (0000ms, 0908ms total)
T7764 214:088 JLINK_IsHalted()  returns FALSE (0000ms, 0908ms total)
T7764 214:189 JLINK_IsHalted()  returns FALSE (0000ms, 0908ms total)
T514C 214:291 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 30 43  returns 0x04 (0001ms, 0909ms total)
T7764 214:292 JLINK_IsHalted()  returns FALSE (0000ms, 0909ms total)
T7764 214:393 JLINK_IsHalted()  returns FALSE (0000ms, 0909ms total)
T7764 214:495 JLINK_IsHalted()  returns FALSE (0000ms, 0909ms total)
T7764 214:596 JLINK_IsHalted()  returns FALSE (0000ms, 0909ms total)
T7764 214:697 JLINK_IsHalted()  returns FALSE (0000ms, 0909ms total)
T7764 214:799 JLINK_IsHalted()  returns FALSE (0000ms, 0909ms total)
T514C 214:900 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 31 43  returns 0x04 (0001ms, 0910ms total)
T7764 214:901 JLINK_IsHalted()  returns FALSE (0000ms, 0910ms total)
T7764 215:002 JLINK_IsHalted()  returns FALSE (0000ms, 0910ms total)
T7764 215:103 JLINK_IsHalted()  returns FALSE (0000ms, 0910ms total)
T7764 215:205 JLINK_IsHalted()  returns FALSE (0000ms, 0910ms total)
T7764 215:306 JLINK_IsHalted()  returns FALSE (0000ms, 0910ms total)
T7764 215:407 JLINK_IsHalted()  returns FALSE (0000ms, 0910ms total)
T514C 215:508 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 31 43  returns 0x04 (0001ms, 0911ms total)
T7764 215:509 JLINK_IsHalted()  returns FALSE (0000ms, 0911ms total)
T7764 215:611 JLINK_IsHalted()  returns FALSE (0000ms, 0911ms total)
T7764 215:712 JLINK_IsHalted()  returns FALSE (0000ms, 0911ms total)
T7764 215:813 JLINK_IsHalted()  returns FALSE (0000ms, 0911ms total)
T7764 215:914 JLINK_IsHalted()  returns FALSE (0000ms, 0911ms total)
T7764 216:016 JLINK_IsHalted()  returns FALSE (0000ms, 0911ms total)
T514C 216:117 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 32 43  returns 0x04 (0000ms, 0911ms total)
T7764 216:118 JLINK_IsHalted()  returns FALSE (0000ms, 0911ms total)
T7764 216:219 JLINK_IsHalted()  returns FALSE (0000ms, 0911ms total)
T7764 216:320 JLINK_IsHalted()  returns FALSE (0000ms, 0911ms total)
T7764 216:422 JLINK_IsHalted()  returns FALSE (0000ms, 0911ms total)
T7764 216:524 JLINK_IsHalted()  returns FALSE (0000ms, 0911ms total)
T7764 216:625 JLINK_IsHalted()  returns FALSE (0000ms, 0911ms total)
T514C 216:726 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 33 43  returns 0x04 (0001ms, 0912ms total)
T7764 216:727 JLINK_IsHalted()  returns FALSE (0000ms, 0912ms total)
T7764 216:829 JLINK_IsHalted()  returns FALSE (0000ms, 0912ms total)
T7764 216:930 JLINK_IsHalted()  returns FALSE (0000ms, 0912ms total)
T7764 217:031 JLINK_IsHalted()  returns FALSE (0000ms, 0912ms total)
T7764 217:132 JLINK_IsHalted()  returns FALSE (0000ms, 0912ms total)
T7764 217:233 JLINK_IsHalted()  returns FALSE (0000ms, 0912ms total)
T514C 217:334 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 33 43  returns 0x04 (0000ms, 0912ms total)
T7764 217:335 JLINK_IsHalted()  returns FALSE (0000ms, 0912ms total)
T7764 217:437 JLINK_IsHalted()  returns FALSE (0000ms, 0912ms total)
T7764 217:538 JLINK_IsHalted()  returns FALSE (0000ms, 0912ms total)
T7764 217:639 JLINK_IsHalted()  returns FALSE (0000ms, 0912ms total)
T7764 217:740 JLINK_IsHalted()  returns FALSE (0000ms, 0912ms total)
T7764 217:841 JLINK_IsHalted()  returns FALSE (0000ms, 0912ms total)
T514C 217:942 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 34 43  returns 0x04 (0000ms, 0912ms total)
T7764 217:943 JLINK_IsHalted()  returns FALSE (0000ms, 0912ms total)
T7764 218:044 JLINK_IsHalted()  returns FALSE (0000ms, 0912ms total)
T7764 218:146 JLINK_IsHalted()  returns FALSE (0000ms, 0912ms total)
T7764 218:247 JLINK_IsHalted()  returns FALSE (0000ms, 0912ms total)
T7764 218:348 JLINK_IsHalted()  returns FALSE (0000ms, 0912ms total)
T7764 218:449 JLINK_IsHalted()  returns FALSE (0000ms, 0912ms total)
T514C 218:551 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 35 43  returns 0x04 (0001ms, 0913ms total)
T7764 218:552 JLINK_IsHalted()  returns FALSE (0000ms, 0913ms total)
T7764 218:653 JLINK_IsHalted()  returns FALSE (0000ms, 0913ms total)
T7764 218:754 JLINK_IsHalted()  returns FALSE (0000ms, 0913ms total)
T7764 218:855 JLINK_IsHalted()  returns FALSE (0000ms, 0913ms total)
T7764 218:957 JLINK_IsHalted()  returns FALSE (0000ms, 0913ms total)
T7764 219:058 JLINK_IsHalted()  returns FALSE (0000ms, 0913ms total)
T514C 219:159 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 35 43  returns 0x04 (0001ms, 0914ms total)
T7764 219:160 JLINK_IsHalted()  returns FALSE (0000ms, 0914ms total)
T7764 219:262 JLINK_IsHalted()  returns FALSE (0000ms, 0914ms total)
T7764 219:363 JLINK_IsHalted()  returns FALSE (0000ms, 0914ms total)
T7764 219:464 JLINK_IsHalted()  returns FALSE (0000ms, 0914ms total)
T7764 219:565 JLINK_IsHalted()  returns FALSE (0000ms, 0914ms total)
T7764 219:667 JLINK_IsHalted()  returns FALSE (0000ms, 0914ms total)
T514C 219:768 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 36 43  returns 0x04 (0001ms, 0915ms total)
T7764 219:769 JLINK_IsHalted()  returns FALSE (0000ms, 0915ms total)
T7764 219:870 JLINK_IsHalted()  returns FALSE (0000ms, 0915ms total)
T7764 219:971 JLINK_IsHalted()  returns FALSE (0000ms, 0915ms total)
T7764 220:073 JLINK_IsHalted()  returns FALSE (0000ms, 0915ms total)
T7764 220:174 JLINK_IsHalted()  returns FALSE (0000ms, 0915ms total)
T7764 220:275 JLINK_IsHalted()  returns FALSE (0000ms, 0915ms total)
T514C 220:376 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 36 43  returns 0x04 (0001ms, 0916ms total)
T7764 220:377 JLINK_IsHalted()  returns FALSE (0000ms, 0916ms total)
T7764 220:478 JLINK_IsHalted()  returns FALSE (0000ms, 0916ms total)
T7764 220:580 JLINK_IsHalted()  returns FALSE (0000ms, 0916ms total)
T7764 220:681 JLINK_IsHalted()  returns FALSE (0000ms, 0916ms total)
T7764 220:782 JLINK_IsHalted()  returns FALSE (0000ms, 0916ms total)
T514C 220:883 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 37 43  returns 0x04 (0000ms, 0916ms total)
T7764 220:884 JLINK_IsHalted()  returns FALSE (0000ms, 0916ms total)
T7764 220:985 JLINK_IsHalted()  returns FALSE (0000ms, 0916ms total)
T7764 221:086 JLINK_IsHalted()  returns FALSE (0000ms, 0916ms total)
T7764 221:188 JLINK_IsHalted()  returns FALSE (0000ms, 0916ms total)
T7764 221:289 JLINK_IsHalted()  returns FALSE (0000ms, 0916ms total)
T7764 221:390 JLINK_IsHalted()  returns FALSE (0000ms, 0916ms total)
T514C 221:491 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 37 43  returns 0x04 (0001ms, 0917ms total)
T7764 221:492 JLINK_IsHalted()  returns FALSE (0000ms, 0917ms total)
T7764 221:594 JLINK_IsHalted()  returns FALSE (0000ms, 0917ms total)
T7764 221:695 JLINK_IsHalted()  returns FALSE (0000ms, 0917ms total)
T7764 221:796 JLINK_IsHalted()  returns FALSE (0000ms, 0917ms total)
T7764 221:897 JLINK_IsHalted()  returns FALSE (0000ms, 0917ms total)
T7764 221:998 JLINK_IsHalted()  returns FALSE (0000ms, 0917ms total)
T514C 222:099 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 38 43  returns 0x04 (0001ms, 0918ms total)
T7764 222:100 JLINK_IsHalted()  returns FALSE (0000ms, 0918ms total)
T7764 222:201 JLINK_IsHalted()  returns FALSE (0000ms, 0918ms total)
T7764 222:302 JLINK_IsHalted()  returns FALSE (0000ms, 0918ms total)
T7764 222:404 JLINK_IsHalted()  returns FALSE (0000ms, 0918ms total)
T7764 222:505 JLINK_IsHalted()  returns FALSE (0000ms, 0918ms total)
T7764 222:607 JLINK_IsHalted()  returns FALSE (0000ms, 0918ms total)
T514C 222:708 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 39 43  returns 0x04 (0000ms, 0918ms total)
T7764 222:709 JLINK_IsHalted()  returns FALSE (0000ms, 0918ms total)
T7764 222:810 JLINK_IsHalted()  returns FALSE (0000ms, 0918ms total)
T7764 222:912 JLINK_IsHalted()  returns FALSE (0000ms, 0918ms total)
T7764 223:013 JLINK_IsHalted()  returns FALSE (0000ms, 0918ms total)
T7764 223:114 JLINK_IsHalted()  returns FALSE (0000ms, 0918ms total)
T7764 223:215 JLINK_IsHalted()  returns FALSE (0000ms, 0918ms total)
T514C 223:317 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 39 43  returns 0x04 (0001ms, 0919ms total)
T7764 223:318 JLINK_IsHalted()  returns FALSE (0000ms, 0919ms total)
T7764 223:419 JLINK_IsHalted()  returns FALSE (0000ms, 0919ms total)
T7764 223:520 JLINK_IsHalted()  returns FALSE (0000ms, 0919ms total)
T7764 223:620 JLINK_IsHalted()  returns FALSE (0000ms, 0919ms total)
T7764 223:722 JLINK_IsHalted()  returns FALSE (0000ms, 0919ms total)
T7764 223:824 JLINK_IsHalted()  returns FALSE (0000ms, 0919ms total)
T514C 223:925 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 3A 43  returns 0x04 (0000ms, 0919ms total)
T7764 223:925 JLINK_IsHalted()  returns FALSE (0001ms, 0920ms total)
T7764 224:027 JLINK_IsHalted()  returns FALSE (0000ms, 0919ms total)
T7764 224:128 JLINK_IsHalted()  returns FALSE (0000ms, 0919ms total)
T7764 224:230 JLINK_IsHalted()  returns FALSE (0000ms, 0919ms total)
T7764 224:331 JLINK_IsHalted()  returns FALSE (0000ms, 0919ms total)
T7764 224:432 JLINK_IsHalted()  returns FALSE (0000ms, 0919ms total)
T514C 224:533 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 3B 43  returns 0x04 (0001ms, 0920ms total)
T7764 224:534 JLINK_IsHalted()  returns FALSE (0001ms, 0921ms total)
T7764 224:635 JLINK_IsHalted()  returns FALSE (0000ms, 0920ms total)
T7764 224:737 JLINK_IsHalted()  returns FALSE (0000ms, 0920ms total)
T7764 224:838 JLINK_IsHalted()  returns FALSE (0000ms, 0920ms total)
T7764 224:939 JLINK_IsHalted()  returns FALSE (0000ms, 0920ms total)
T514C 225:040 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 3B 43  returns 0x04 (0001ms, 0921ms total)
T7764 225:041 JLINK_IsHalted()  returns FALSE (0000ms, 0921ms total)
T7764 225:142 JLINK_IsHalted()  returns FALSE (0000ms, 0921ms total)
T7764 225:244 JLINK_IsHalted()  returns FALSE (0000ms, 0921ms total)
T7764 225:345 JLINK_IsHalted()  returns FALSE (0000ms, 0921ms total)
T7764 225:446 JLINK_IsHalted()  returns FALSE (0000ms, 0921ms total)
T7764 225:547 JLINK_IsHalted()  returns FALSE (0000ms, 0921ms total)
T514C 225:648 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 3C 43  returns 0x04 (0001ms, 0922ms total)
T7764 225:649 JLINK_IsHalted()  returns FALSE (0000ms, 0922ms total)
T7764 225:751 JLINK_IsHalted()  returns FALSE (0000ms, 0922ms total)
T7764 225:852 JLINK_IsHalted()  returns FALSE (0000ms, 0922ms total)
T7764 225:953 JLINK_IsHalted()  returns FALSE (0000ms, 0922ms total)
T7764 226:054 JLINK_IsHalted()  returns FALSE (0000ms, 0922ms total)
T7764 226:156 JLINK_IsHalted()  returns FALSE (0000ms, 0922ms total)
T514C 226:258 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 3C 43  returns 0x04 (0001ms, 0923ms total)
T7764 226:259 JLINK_IsHalted()  returns FALSE (0000ms, 0923ms total)
T7764 226:360 JLINK_IsHalted()  returns FALSE (0000ms, 0923ms total)
T7764 226:461 JLINK_IsHalted()  returns FALSE (0000ms, 0923ms total)
T7764 226:562 JLINK_IsHalted()  returns FALSE (0000ms, 0923ms total)
T7764 226:664 JLINK_IsHalted()  returns FALSE (0000ms, 0923ms total)
T7764 226:765 JLINK_IsHalted()  returns FALSE (0000ms, 0923ms total)
T514C 226:866 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 3D 43  returns 0x04 (0001ms, 0924ms total)
T7764 226:867 JLINK_IsHalted()  returns FALSE (0000ms, 0924ms total)
T7764 226:968 JLINK_IsHalted()  returns FALSE (0000ms, 0924ms total)
T7764 227:069 JLINK_IsHalted()  returns FALSE (0000ms, 0924ms total)
T7764 227:171 JLINK_IsHalted()  returns FALSE (0000ms, 0924ms total)
T7764 227:272 JLINK_IsHalted()  returns FALSE (0000ms, 0924ms total)
T7764 227:373 JLINK_IsHalted()  returns FALSE (0000ms, 0924ms total)
T514C 227:474 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 3D 43  returns 0x04 (0001ms, 0925ms total)
T7764 227:475 JLINK_IsHalted()  returns FALSE (0001ms, 0926ms total)
T7764 227:577 JLINK_IsHalted()  returns FALSE (0000ms, 0925ms total)
T7764 227:678 JLINK_IsHalted()  returns FALSE (0000ms, 0925ms total)
T7764 227:779 JLINK_IsHalted()  returns FALSE (0000ms, 0925ms total)
T7764 227:880 JLINK_IsHalted()  returns FALSE (0000ms, 0925ms total)
T7764 227:981 JLINK_IsHalted()  returns FALSE (0000ms, 0925ms total)
T514C 228:082 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 3E 43  returns 0x04 (0001ms, 0926ms total)
T7764 228:083 JLINK_IsHalted()  returns FALSE (0000ms, 0926ms total)
T7764 228:185 JLINK_IsHalted()  returns FALSE (0000ms, 0926ms total)
T7764 228:286 JLINK_IsHalted()  returns FALSE (0000ms, 0926ms total)
T7764 228:387 JLINK_IsHalted()  returns FALSE (0000ms, 0926ms total)
T7764 228:488 JLINK_IsHalted()  returns FALSE (0000ms, 0926ms total)
T7764 228:590 JLINK_IsHalted()  returns FALSE (0000ms, 0926ms total)
T514C 228:691 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 3F 43  returns 0x04 (0001ms, 0927ms total)
T7764 228:692 JLINK_IsHalted()  returns FALSE (0001ms, 0928ms total)
T7764 228:794 JLINK_IsHalted()  returns FALSE (0000ms, 0927ms total)
T7764 228:895 JLINK_IsHalted()  returns FALSE (0000ms, 0927ms total)
T7764 228:996 JLINK_IsHalted()  returns FALSE (0000ms, 0927ms total)
T7764 229:097 JLINK_IsHalted()  returns FALSE (0000ms, 0927ms total)
T7764 229:199 JLINK_IsHalted()  returns FALSE (0000ms, 0927ms total)
T514C 229:299 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 3F 43  returns 0x04 (0001ms, 0928ms total)
T7764 229:300 JLINK_IsHalted()  returns FALSE (0000ms, 0928ms total)
T7764 229:402 JLINK_IsHalted()  returns FALSE (0000ms, 0928ms total)
T7764 229:504 JLINK_IsHalted()  returns FALSE (0000ms, 0928ms total)
T7764 229:605 JLINK_IsHalted()  returns FALSE (0000ms, 0928ms total)
T7764 229:707 JLINK_IsHalted()  returns FALSE (0000ms, 0928ms total)
T7764 229:808 JLINK_IsHalted()  returns FALSE (0000ms, 0928ms total)
T514C 229:909 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 40 43  returns 0x04 (0000ms, 0928ms total)
T7764 229:910 JLINK_IsHalted()  returns FALSE (0000ms, 0928ms total)
T7764 230:011 JLINK_IsHalted()  returns FALSE (0000ms, 0928ms total)
T7764 230:113 JLINK_IsHalted()  returns FALSE (0000ms, 0928ms total)
T7764 230:214 JLINK_IsHalted()  returns FALSE (0000ms, 0928ms total)
T7764 230:316 JLINK_IsHalted()  returns FALSE (0000ms, 0928ms total)
T7764 230:417 JLINK_IsHalted()  returns FALSE (0000ms, 0928ms total)
T514C 230:518 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 40 43  returns 0x04 (0001ms, 0929ms total)
T7764 230:519 JLINK_IsHalted()  returns FALSE (0000ms, 0929ms total)
T7764 230:621 JLINK_IsHalted()  returns FALSE (0000ms, 0929ms total)
T7764 230:722 JLINK_IsHalted()  returns FALSE (0000ms, 0929ms total)
T7764 230:824 JLINK_IsHalted()  returns FALSE (0000ms, 0929ms total)
T7764 230:926 JLINK_IsHalted()  returns FALSE (0000ms, 0929ms total)
T7764 231:027 JLINK_IsHalted()  returns FALSE (0000ms, 0929ms total)
T514C 231:128 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 41 43  returns 0x04 (0000ms, 0929ms total)
T7764 231:129 JLINK_IsHalted()  returns FALSE (0000ms, 0929ms total)
T7764 231:230 JLINK_IsHalted()  returns FALSE (0000ms, 0929ms total)
T7764 231:331 JLINK_IsHalted()  returns FALSE (0000ms, 0929ms total)
T7764 231:432 JLINK_IsHalted()  returns FALSE (0000ms, 0929ms total)
T7764 231:533 JLINK_IsHalted()  returns FALSE (0000ms, 0929ms total)
T7764 231:635 JLINK_IsHalted()  returns FALSE (0000ms, 0929ms total)
T514C 231:736 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 42 43  returns 0x04 (0001ms, 0930ms total)
T7764 231:737 JLINK_IsHalted()  returns FALSE (0001ms, 0931ms total)
T7764 231:839 JLINK_IsHalted()  returns FALSE (0000ms, 0930ms total)
T7764 231:940 JLINK_IsHalted()  returns FALSE (0000ms, 0930ms total)
T7764 232:042 JLINK_IsHalted()  returns FALSE (0000ms, 0930ms total)
T7764 232:143 JLINK_IsHalted()  returns FALSE (0000ms, 0930ms total)
T514C 232:243 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 42 43  returns 0x04 (0001ms, 0931ms total)
T7764 232:244 JLINK_IsHalted()  returns FALSE (0000ms, 0931ms total)
T7764 232:345 JLINK_IsHalted()  returns FALSE (0000ms, 0931ms total)
T7764 232:446 JLINK_IsHalted()  returns FALSE (0000ms, 0931ms total)
T7764 232:548 JLINK_IsHalted()  returns FALSE (0000ms, 0931ms total)
T7764 232:650 JLINK_IsHalted()  returns FALSE (0000ms, 0931ms total)
T7764 232:751 JLINK_IsHalted()  returns FALSE (0000ms, 0931ms total)
T514C 232:852 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 43 43  returns 0x04 (0000ms, 0931ms total)
T7764 232:853 JLINK_IsHalted()  returns FALSE (0000ms, 0932ms total)
T7764 232:954 JLINK_IsHalted()  returns FALSE (0000ms, 0932ms total)
T7764 233:056 JLINK_IsHalted()  returns FALSE (0000ms, 0932ms total)
T7764 233:157 JLINK_IsHalted()  returns FALSE (0000ms, 0932ms total)
T7764 233:258 JLINK_IsHalted()  returns FALSE (0000ms, 0932ms total)
T7764 233:359 JLINK_IsHalted()  returns FALSE (0000ms, 0932ms total)
T514C 233:460 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 43 43  returns 0x04 (0000ms, 0932ms total)
T7764 233:461 JLINK_IsHalted()  returns FALSE (0000ms, 0932ms total)
T7764 233:563 JLINK_IsHalted()  returns FALSE (0000ms, 0932ms total)
T7764 233:664 JLINK_IsHalted()  returns FALSE (0000ms, 0932ms total)
T7764 233:766 JLINK_IsHalted()  returns FALSE (0000ms, 0932ms total)
T7764 233:867 JLINK_IsHalted()  returns FALSE (0000ms, 0932ms total)
T7764 233:968 JLINK_IsHalted()  returns FALSE (0000ms, 0932ms total)
T514C 234:069 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 44 43  returns 0x04 (0001ms, 0933ms total)
T7764 234:070 JLINK_IsHalted()  returns FALSE (0000ms, 0933ms total)
T7764 234:171 JLINK_IsHalted()  returns FALSE (0000ms, 0933ms total)
T7764 234:273 JLINK_IsHalted()  returns FALSE (0000ms, 0933ms total)
T7764 234:375 JLINK_IsHalted()  returns FALSE (0000ms, 0933ms total)
T7764 234:476 JLINK_IsHalted()  returns FALSE (0000ms, 0933ms total)
T7764 234:577 JLINK_IsHalted()  returns FALSE (0000ms, 0933ms total)
T514C 234:678 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 45 43  returns 0x04 (0000ms, 0933ms total)
T7764 234:679 JLINK_IsHalted()  returns FALSE (0000ms, 0933ms total)
T7764 234:780 JLINK_IsHalted()  returns FALSE (0000ms, 0933ms total)
T7764 234:881 JLINK_IsHalted()  returns FALSE (0000ms, 0933ms total)
T7764 234:982 JLINK_IsHalted()  returns FALSE (0000ms, 0933ms total)
T7764 235:084 JLINK_IsHalted()  returns FALSE (0000ms, 0933ms total)
T7764 235:186 JLINK_IsHalted()  returns FALSE (0000ms, 0933ms total)
T514C 235:287 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 45 43  returns 0x04 (0000ms, 0933ms total)
T7764 235:288 JLINK_IsHalted()  returns FALSE (0000ms, 0933ms total)
T7764 235:389 JLINK_IsHalted()  returns FALSE (0000ms, 0933ms total)
T7764 235:490 JLINK_IsHalted()  returns FALSE (0000ms, 0933ms total)
T7764 235:591 JLINK_IsHalted()  returns FALSE (0000ms, 0933ms total)
T7764 235:692 JLINK_IsHalted()  returns FALSE (0000ms, 0933ms total)
T7764 235:794 JLINK_IsHalted()  returns FALSE (0000ms, 0933ms total)
T514C 235:895 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 46 43  returns 0x04 (0000ms, 0933ms total)
T7764 235:896 JLINK_IsHalted()  returns FALSE (0000ms, 0933ms total)
T7764 235:997 JLINK_IsHalted()  returns FALSE (0000ms, 0933ms total)
T7764 236:098 JLINK_IsHalted()  returns FALSE (0000ms, 0933ms total)
T7764 236:199 JLINK_IsHalted()  returns FALSE (0000ms, 0933ms total)
T7764 236:301 JLINK_IsHalted()  returns FALSE (0000ms, 0933ms total)
T7764 236:402 JLINK_IsHalted()  returns FALSE (0000ms, 0933ms total)
T514C 236:503 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 46 43  returns 0x04 (0001ms, 0934ms total)
T7764 236:504 JLINK_IsHalted()  returns FALSE (0000ms, 0934ms total)
T7764 236:606 JLINK_IsHalted()  returns FALSE (0000ms, 0934ms total)
T7764 236:707 JLINK_IsHalted()  returns FALSE (0000ms, 0934ms total)
T7764 236:809 JLINK_IsHalted()  returns FALSE (0000ms, 0934ms total)
T7764 236:910 JLINK_IsHalted()  returns FALSE (0000ms, 0934ms total)
T7764 237:011 JLINK_IsHalted()  returns FALSE (0000ms, 0934ms total)
T514C 237:112 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 47 43  returns 0x04 (0001ms, 0935ms total)
T7764 237:113 JLINK_IsHalted()  returns FALSE (0000ms, 0935ms total)
T7764 237:215 JLINK_IsHalted()  returns FALSE (0000ms, 0935ms total)
T7764 237:316 JLINK_IsHalted()  returns FALSE (0000ms, 0935ms total)
T7764 237:417 JLINK_IsHalted()  returns FALSE (0000ms, 0935ms total)
T7764 237:518 JLINK_IsHalted()  returns FALSE (0000ms, 0935ms total)
T7764 237:619 JLINK_IsHalted()  returns FALSE (0000ms, 0935ms total)
T514C 237:720 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 48 43  returns 0x04 (0001ms, 0936ms total)
T7764 237:721 JLINK_IsHalted()  returns FALSE (0001ms, 0937ms total)
T7764 237:823 JLINK_IsHalted()  returns FALSE (0000ms, 0936ms total)
T7764 237:925 JLINK_IsHalted()  returns FALSE (0000ms, 0936ms total)
T7764 238:026 JLINK_IsHalted()  returns FALSE (0000ms, 0936ms total)
T7764 238:127 JLINK_IsHalted()  returns FALSE (0000ms, 0936ms total)
T514C 238:228 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 48 43  returns 0x04 (0001ms, 0937ms total)
T7764 238:229 JLINK_IsHalted()  returns FALSE (0000ms, 0937ms total)
T7764 238:330 JLINK_IsHalted()  returns FALSE (0000ms, 0937ms total)
T7764 238:432 JLINK_IsHalted()  returns FALSE (0000ms, 0937ms total)
T7764 238:533 JLINK_IsHalted()  returns FALSE (0000ms, 0937ms total)
T7764 238:634 JLINK_IsHalted()  returns FALSE (0000ms, 0937ms total)
T7764 238:736 JLINK_IsHalted()  returns FALSE (0000ms, 0937ms total)
T514C 238:838 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 49 43  returns 0x04 (0001ms, 0938ms total)
T7764 238:839 JLINK_IsHalted()  returns FALSE (0000ms, 0938ms total)
T7764 238:940 JLINK_IsHalted()  returns FALSE (0000ms, 0938ms total)
T7764 239:041 JLINK_IsHalted()  returns FALSE (0000ms, 0938ms total)
T7764 239:142 JLINK_IsHalted()  returns FALSE (0000ms, 0938ms total)
T7764 239:244 JLINK_IsHalted()  returns FALSE (0000ms, 0938ms total)
T7764 239:345 JLINK_IsHalted()  returns FALSE (0000ms, 0938ms total)
T514C 239:446 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 49 43  returns 0x04 (0000ms, 0938ms total)
T7764 239:447 JLINK_IsHalted()  returns FALSE (0000ms, 0938ms total)
T7764 239:548 JLINK_IsHalted()  returns FALSE (0000ms, 0938ms total)
T7764 239:649 JLINK_IsHalted()  returns FALSE (0000ms, 0938ms total)
T7764 239:751 JLINK_IsHalted()  returns FALSE (0000ms, 0938ms total)
T7764 239:852 JLINK_IsHalted()  returns FALSE (0000ms, 0938ms total)
T7764 239:953 JLINK_IsHalted()  returns FALSE (0000ms, 0938ms total)
T514C 240:054 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 4A 43  returns 0x04 (0001ms, 0939ms total)
T7764 240:055 JLINK_IsHalted()  returns FALSE (0000ms, 0939ms total)
T7764 240:157 JLINK_IsHalted()  returns FALSE (0000ms, 0939ms total)
T7764 240:258 JLINK_IsHalted()  returns FALSE (0000ms, 0939ms total)
T7764 240:359 JLINK_IsHalted()  returns FALSE (0000ms, 0939ms total)
T7764 240:460 JLINK_IsHalted()  returns FALSE (0000ms, 0939ms total)
T7764 240:561 JLINK_IsHalted()  returns FALSE (0000ms, 0939ms total)
T514C 240:662 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 4B 43  returns 0x04 (0001ms, 0940ms total)
T7764 240:663 JLINK_IsHalted()  returns FALSE (0000ms, 0940ms total)
T7764 240:764 JLINK_IsHalted()  returns FALSE (0000ms, 0940ms total)
T7764 240:865 JLINK_IsHalted()  returns FALSE (0000ms, 0940ms total)
T7764 240:966 JLINK_IsHalted()  returns FALSE (0000ms, 0940ms total)
T7764 241:067 JLINK_IsHalted()  returns FALSE (0000ms, 0940ms total)
T7764 241:169 JLINK_IsHalted()  returns FALSE (0000ms, 0940ms total)
T514C 241:270 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 4B 43  returns 0x04 (0001ms, 0941ms total)
T7764 241:271 JLINK_IsHalted()  returns FALSE (0001ms, 0942ms total)
T7764 241:372 JLINK_IsHalted()  returns FALSE (0000ms, 0941ms total)
T7764 241:474 JLINK_IsHalted()  returns FALSE (0000ms, 0941ms total)
T7764 241:575 JLINK_IsHalted()  returns FALSE (0000ms, 0941ms total)
T7764 241:676 JLINK_IsHalted()  returns FALSE (0000ms, 0941ms total)
T7764 241:778 JLINK_IsHalted()  returns FALSE (0000ms, 0941ms total)
T514C 241:879 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 4C 43  returns 0x04 (0001ms, 0942ms total)
T7764 241:880 JLINK_IsHalted()  returns FALSE (0000ms, 0942ms total)
T7764 241:981 JLINK_IsHalted()  returns FALSE (0000ms, 0942ms total)
T7764 242:082 JLINK_IsHalted()  returns FALSE (0000ms, 0942ms total)
T7764 242:183 JLINK_IsHalted()  returns FALSE (0000ms, 0942ms total)
T7764 242:284 JLINK_IsHalted()  returns FALSE (0000ms, 0942ms total)
T7764 242:385 JLINK_IsHalted()  returns FALSE (0000ms, 0942ms total)
T514C 242:486 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 4C 43  returns 0x04 (0001ms, 0943ms total)
T7764 242:487 JLINK_IsHalted()  returns FALSE (0000ms, 0943ms total)
T7764 242:589 JLINK_IsHalted()  returns FALSE (0000ms, 0943ms total)
T7764 242:690 JLINK_IsHalted()  returns FALSE (0000ms, 0943ms total)
T7764 242:791 JLINK_IsHalted()  returns FALSE (0000ms, 0943ms total)
T7764 242:893 JLINK_IsHalted()  returns FALSE (0000ms, 0943ms total)
T7764 242:994 JLINK_IsHalted()  returns FALSE (0000ms, 0943ms total)
T514C 243:095 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 4D 43  returns 0x04 (0001ms, 0944ms total)
T7764 243:096 JLINK_IsHalted()  returns FALSE (0000ms, 0944ms total)
T7764 243:198 JLINK_IsHalted()  returns FALSE (0000ms, 0944ms total)
T7764 243:299 JLINK_IsHalted()  returns FALSE (0000ms, 0944ms total)
T7764 243:400 JLINK_IsHalted()  returns FALSE (0000ms, 0944ms total)
T7764 243:501 JLINK_IsHalted()  returns FALSE (0000ms, 0944ms total)
T514C 243:602 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 4E 43  returns 0x04 (0001ms, 0945ms total)
T7764 243:603 JLINK_IsHalted()  returns FALSE (0000ms, 0945ms total)
T7764 243:705 JLINK_IsHalted()  returns FALSE (0000ms, 0945ms total)
T7764 243:806 JLINK_IsHalted()  returns FALSE (0000ms, 0945ms total)
T7764 243:907 JLINK_IsHalted()  returns FALSE (0000ms, 0945ms total)
T7764 244:009 JLINK_IsHalted()  returns FALSE (0000ms, 0945ms total)
T7764 244:110 JLINK_IsHalted()  returns FALSE (0000ms, 0945ms total)
T514C 244:210 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 4E 43  returns 0x04 (0000ms, 0945ms total)
T7764 244:211 JLINK_IsHalted()  returns FALSE (0000ms, 0945ms total)
T7764 244:312 JLINK_IsHalted()  returns FALSE (0000ms, 0945ms total)
T7764 244:413 JLINK_IsHalted()  returns FALSE (0000ms, 0945ms total)
T7764 244:514 JLINK_IsHalted()  returns FALSE (0000ms, 0945ms total)
T7764 244:616 JLINK_IsHalted()  returns FALSE (0000ms, 0945ms total)
T7764 244:717 JLINK_IsHalted()  returns FALSE (0000ms, 0945ms total)
T514C 244:818 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 4F 43  returns 0x04 (0000ms, 0945ms total)
T7764 244:819 JLINK_IsHalted()  returns FALSE (0000ms, 0945ms total)
T7764 244:920 JLINK_IsHalted()  returns FALSE (0000ms, 0945ms total)
T7764 245:022 JLINK_IsHalted()  returns FALSE (0000ms, 0945ms total)
T7764 245:123 JLINK_IsHalted()  returns FALSE (0000ms, 0945ms total)
T7764 245:224 JLINK_IsHalted()  returns FALSE (0000ms, 0945ms total)
T7764 245:325 JLINK_IsHalted()  returns FALSE (0001ms, 0946ms total)
T514C 245:426 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 4F 43  returns 0x04 (0000ms, 0945ms total)
T7764 245:427 JLINK_IsHalted()  returns FALSE (0000ms, 0945ms total)
T7764 245:528 JLINK_IsHalted()  returns FALSE (0000ms, 0945ms total)
T7764 245:630 JLINK_IsHalted()  returns FALSE (0000ms, 0945ms total)
T7764 245:731 JLINK_IsHalted()  returns FALSE (0000ms, 0945ms total)
T7764 245:832 JLINK_IsHalted()  returns FALSE (0000ms, 0945ms total)
T7764 245:933 JLINK_IsHalted()  returns FALSE (0000ms, 0945ms total)
T514C 246:034 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 50 43  returns 0x04 (0001ms, 0946ms total)
T7764 246:035 JLINK_IsHalted()  returns FALSE (0000ms, 0946ms total)
T7764 246:137 JLINK_IsHalted()  returns FALSE (0000ms, 0946ms total)
T7764 246:238 JLINK_IsHalted()  returns FALSE (0000ms, 0946ms total)
T7764 246:339 JLINK_IsHalted()  returns FALSE (0000ms, 0946ms total)
T7764 246:440 JLINK_IsHalted()  returns FALSE (0000ms, 0946ms total)
T7764 246:541 JLINK_IsHalted()  returns FALSE (0000ms, 0946ms total)
T514C 246:642 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 51 43  returns 0x04 (0000ms, 0946ms total)
T7764 246:643 JLINK_IsHalted()  returns FALSE (0000ms, 0947ms total)
T7764 246:744 JLINK_IsHalted()  returns FALSE (0000ms, 0947ms total)
T7764 246:845 JLINK_IsHalted()  returns FALSE (0000ms, 0947ms total)
T7764 246:946 JLINK_IsHalted()  returns FALSE (0000ms, 0947ms total)
T7764 247:047 JLINK_IsHalted()  returns FALSE (0000ms, 0947ms total)
T514C 247:149 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 51 43  returns 0x04 (0001ms, 0948ms total)
T7764 247:150 JLINK_IsHalted()  returns FALSE (0000ms, 0948ms total)
T7764 247:252 JLINK_IsHalted()  returns FALSE (0000ms, 0948ms total)
T7764 247:353 JLINK_IsHalted()  returns FALSE (0000ms, 0948ms total)
T7764 247:454 JLINK_IsHalted()  returns FALSE (0000ms, 0948ms total)
T7764 247:555 JLINK_IsHalted()  returns FALSE (0000ms, 0948ms total)
T7764 247:656 JLINK_IsHalted()  returns FALSE (0000ms, 0948ms total)
T514C 247:757 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 52 43  returns 0x04 (0000ms, 0948ms total)
T7764 247:758 JLINK_IsHalted()  returns FALSE (0000ms, 0948ms total)
T7764 247:859 JLINK_IsHalted()  returns FALSE (0000ms, 0948ms total)
T7764 247:960 JLINK_IsHalted()  returns FALSE (0000ms, 0948ms total)
T7764 248:062 JLINK_IsHalted()  returns FALSE (0000ms, 0948ms total)
T7764 248:163 JLINK_IsHalted()  returns FALSE (0001ms, 0949ms total)
T7764 248:265 JLINK_IsHalted()  returns FALSE (0000ms, 0948ms total)
T514C 248:366 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 52 43  returns 0x04 (0001ms, 0949ms total)
T7764 248:367 JLINK_IsHalted()  returns FALSE (0000ms, 0949ms total)
T7764 248:468 JLINK_IsHalted()  returns FALSE (0000ms, 0949ms total)
T7764 248:569 JLINK_IsHalted()  returns FALSE (0000ms, 0949ms total)
T7764 248:671 JLINK_IsHalted()  returns FALSE (0000ms, 0949ms total)
T7764 248:772 JLINK_IsHalted()  returns FALSE (0000ms, 0949ms total)
T7764 248:873 JLINK_IsHalted()  returns FALSE (0000ms, 0949ms total)
T514C 248:974 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 53 43  returns 0x04 (0000ms, 0949ms total)
T7764 248:975 JLINK_IsHalted()  returns FALSE (0000ms, 0950ms total)
T7764 249:076 JLINK_IsHalted()  returns FALSE (0000ms, 0950ms total)
T7764 249:177 JLINK_IsHalted()  returns FALSE (0000ms, 0950ms total)
T7764 249:278 JLINK_IsHalted()  returns FALSE (0000ms, 0950ms total)
T7764 249:379 JLINK_IsHalted()  returns FALSE (0000ms, 0950ms total)
T7764 249:481 JLINK_IsHalted()  returns FALSE (0000ms, 0950ms total)
T514C 249:583 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 54 43  returns 0x04 (0001ms, 0951ms total)
T7764 249:584 JLINK_IsHalted()  returns FALSE (0000ms, 0951ms total)
T7764 249:685 JLINK_IsHalted()  returns FALSE (0000ms, 0951ms total)
T7764 249:787 JLINK_IsHalted()  returns FALSE (0000ms, 0951ms total)
T7764 249:888 JLINK_IsHalted()  returns FALSE (0000ms, 0951ms total)
T7764 249:989 JLINK_IsHalted()  returns FALSE (0000ms, 0951ms total)
T7764 250:090 JLINK_IsHalted()  returns FALSE (0000ms, 0951ms total)
T514C 250:191 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 54 43  returns 0x04 (0000ms, 0951ms total)
T7764 250:192 JLINK_IsHalted()  returns FALSE (0000ms, 0952ms total)
T7764 250:294 JLINK_IsHalted()  returns FALSE (0000ms, 0952ms total)
T7764 250:395 JLINK_IsHalted()  returns FALSE (0000ms, 0952ms total)
T7764 250:496 JLINK_IsHalted()  returns FALSE (0000ms, 0952ms total)
T7764 250:597 JLINK_IsHalted()  returns FALSE (0000ms, 0952ms total)
T7764 250:698 JLINK_IsHalted()  returns FALSE (0000ms, 0952ms total)
T514C 250:799 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 55 43  returns 0x04 (0001ms, 0953ms total)
T7764 250:800 JLINK_IsHalted()  returns FALSE (0001ms, 0954ms total)
T7764 250:902 JLINK_IsHalted()  returns FALSE (0000ms, 0953ms total)
T7764 251:003 JLINK_IsHalted()  returns FALSE (0000ms, 0953ms total)
T7764 251:104 JLINK_IsHalted()  returns FALSE (0000ms, 0953ms total)
T7764 251:206 JLINK_IsHalted()  returns FALSE (0000ms, 0953ms total)
T7764 251:307 JLINK_IsHalted()  returns FALSE (0000ms, 0953ms total)
T514C 251:408 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 55 43  returns 0x04 (0001ms, 0954ms total)
T7764 251:409 JLINK_IsHalted()  returns FALSE (0000ms, 0954ms total)
T7764 251:510 JLINK_IsHalted()  returns FALSE (0000ms, 0954ms total)
T7764 251:611 JLINK_IsHalted()  returns FALSE (0000ms, 0954ms total)
T7764 251:713 JLINK_IsHalted()  returns FALSE (0000ms, 0954ms total)
T7764 251:814 JLINK_IsHalted()  returns FALSE (0000ms, 0954ms total)
T514C 251:915 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 56 43  returns 0x04 (0000ms, 0954ms total)
T7764 251:916 JLINK_IsHalted()  returns FALSE (0000ms, 0954ms total)
T7764 252:017 JLINK_IsHalted()  returns FALSE (0000ms, 0954ms total)
T7764 252:118 JLINK_IsHalted()  returns FALSE (0000ms, 0954ms total)
T7764 252:219 JLINK_IsHalted()  returns FALSE (0000ms, 0954ms total)
T7764 252:320 JLINK_IsHalted()  returns FALSE (0000ms, 0954ms total)
T7764 252:421 JLINK_IsHalted()  returns FALSE (0000ms, 0954ms total)
T514C 252:522 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 56 43  returns 0x04 (0001ms, 0955ms total)
T7764 252:523 JLINK_IsHalted()  returns FALSE (0000ms, 0955ms total)
T7764 252:624 JLINK_IsHalted()  returns FALSE (0000ms, 0955ms total)
T7764 252:726 JLINK_IsHalted()  returns FALSE (0000ms, 0955ms total)
T7764 252:827 JLINK_IsHalted()  returns FALSE (0000ms, 0955ms total)
T7764 252:927 JLINK_IsHalted()  returns FALSE (0000ms, 0955ms total)
T7764 253:028 JLINK_IsHalted()  returns FALSE (0000ms, 0955ms total)
T514C 253:130 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 57 43  returns 0x04 (0001ms, 0956ms total)
T7764 253:131 JLINK_IsHalted()  returns FALSE (0000ms, 0956ms total)
T7764 253:232 JLINK_IsHalted()  returns FALSE (0000ms, 0956ms total)
T7764 253:333 JLINK_IsHalted()  returns FALSE (0000ms, 0956ms total)
T7764 253:435 JLINK_IsHalted()  returns FALSE (0000ms, 0956ms total)
T7764 253:536 JLINK_IsHalted()  returns FALSE (0000ms, 0956ms total)
T7764 253:637 JLINK_IsHalted()  returns FALSE (0000ms, 0956ms total)
T514C 253:739 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 58 43  returns 0x04 (0000ms, 0956ms total)
T7764 253:740 JLINK_IsHalted()  returns FALSE (0000ms, 0956ms total)
T7764 253:841 JLINK_IsHalted()  returns FALSE (0000ms, 0956ms total)
T7764 253:942 JLINK_IsHalted()  returns FALSE (0000ms, 0956ms total)
T7764 254:044 JLINK_IsHalted()  returns FALSE (0000ms, 0956ms total)
T7764 254:145 JLINK_IsHalted()  returns FALSE (0000ms, 0956ms total)
T7764 254:246 JLINK_IsHalted()  returns FALSE (0000ms, 0956ms total)
T514C 254:348 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 58 43  returns 0x04 (0000ms, 0956ms total)
T7764 254:349 JLINK_IsHalted()  returns FALSE (0000ms, 0956ms total)
T7764 254:451 JLINK_IsHalted()  returns FALSE (0000ms, 0956ms total)
T7764 254:552 JLINK_IsHalted()  returns FALSE (0000ms, 0956ms total)
T7764 254:653 JLINK_IsHalted()  returns FALSE (0000ms, 0956ms total)
T7764 254:755 JLINK_IsHalted()  returns FALSE (0000ms, 0956ms total)
T7764 254:856 JLINK_IsHalted()  returns FALSE (0000ms, 0956ms total)
T514C 254:957 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 59 43  returns 0x04 (0000ms, 0956ms total)
T7764 254:958 JLINK_IsHalted()  returns FALSE (0000ms, 0956ms total)
T7764 255:059 JLINK_IsHalted()  returns FALSE (0000ms, 0956ms total)
T7764 255:160 JLINK_IsHalted()  returns FALSE (0000ms, 0956ms total)
T7764 255:261 JLINK_IsHalted()  returns FALSE (0000ms, 0956ms total)
T7764 255:362 JLINK_IsHalted()  returns FALSE (0000ms, 0956ms total)
T7764 255:463 JLINK_IsHalted()  returns FALSE (0000ms, 0956ms total)
T514C 255:565 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 5A 43  returns 0x04 (0001ms, 0957ms total)
T7764 255:566 JLINK_IsHalted()  returns FALSE (0001ms, 0958ms total)
T7764 255:667 JLINK_IsHalted()  returns FALSE (0000ms, 0957ms total)
T7764 255:769 JLINK_IsHalted()  returns FALSE (0000ms, 0957ms total)
T7764 255:871 JLINK_IsHalted()  returns FALSE (0000ms, 0957ms total)
T7764 255:972 JLINK_IsHalted()  returns FALSE (0000ms, 0957ms total)
T7764 256:073 JLINK_IsHalted()  returns FALSE (0000ms, 0957ms total)
T514C 256:175 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 5A 43  returns 0x04 (0001ms, 0958ms total)
T7764 256:176 JLINK_IsHalted()  returns FALSE (0001ms, 0959ms total)
T7764 256:278 JLINK_IsHalted()  returns FALSE (0000ms, 0958ms total)
T7764 256:379 JLINK_IsHalted()  returns FALSE (0000ms, 0958ms total)
T7764 256:480 JLINK_IsHalted()  returns FALSE (0000ms, 0958ms total)
T7764 256:581 JLINK_IsHalted()  returns FALSE (0000ms, 0958ms total)
T7764 256:683 JLINK_IsHalted()  returns FALSE (0000ms, 0958ms total)
T514C 256:784 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 5B 43  returns 0x04 (0001ms, 0959ms total)
T7764 256:785 JLINK_IsHalted()  returns FALSE (0000ms, 0959ms total)
T7764 256:886 JLINK_IsHalted()  returns FALSE (0000ms, 0959ms total)
T7764 256:987 JLINK_IsHalted()  returns FALSE (0000ms, 0959ms total)
T7764 257:088 JLINK_IsHalted()  returns FALSE (0000ms, 0959ms total)
T7764 257:189 JLINK_IsHalted()  returns FALSE (0000ms, 0959ms total)
T7764 257:290 JLINK_IsHalted()  returns FALSE (0000ms, 0959ms total)
T514C 257:392 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 5B 43  returns 0x04 (0000ms, 0959ms total)
T7764 257:393 JLINK_IsHalted()  returns FALSE (0000ms, 0959ms total)
T7764 257:494 JLINK_IsHalted()  returns FALSE (0000ms, 0959ms total)
T7764 257:595 JLINK_IsHalted()  returns FALSE (0000ms, 0959ms total)
T7764 257:696 JLINK_IsHalted()  returns FALSE (0000ms, 0959ms total)
T7764 257:798 JLINK_IsHalted()  returns FALSE (0000ms, 0959ms total)
T514C 257:900 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 5C 43  returns 0x04 (0001ms, 0960ms total)
T7764 257:901 JLINK_IsHalted()  returns FALSE (0000ms, 0960ms total)
T7764 258:002 JLINK_IsHalted()  returns FALSE (0000ms, 0960ms total)
T7764 258:103 JLINK_IsHalted()  returns FALSE (0000ms, 0960ms total)
T7764 258:204 JLINK_IsHalted()  returns FALSE (0000ms, 0960ms total)
T7764 258:305 JLINK_IsHalted()  returns FALSE (0000ms, 0960ms total)
T7764 258:407 JLINK_IsHalted()  returns FALSE (0000ms, 0960ms total)
T514C 258:508 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 5C 43  returns 0x04 (0001ms, 0961ms total)
T7764 258:509 JLINK_IsHalted()  returns FALSE (0000ms, 0961ms total)
T7764 258:610 JLINK_IsHalted()  returns FALSE (0000ms, 0961ms total)
T7764 258:712 JLINK_IsHalted()  returns FALSE (0000ms, 0961ms total)
T7764 258:814 JLINK_IsHalted()  returns FALSE (0000ms, 0961ms total)
T7764 258:915 JLINK_IsHalted()  returns FALSE (0000ms, 0961ms total)
T7764 259:016 JLINK_IsHalted()  returns FALSE (0000ms, 0961ms total)
T514C 259:117 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 5D 43  returns 0x04 (0001ms, 0962ms total)
T7764 259:118 JLINK_IsHalted()  returns FALSE (0000ms, 0962ms total)
T7764 259:219 JLINK_IsHalted()  returns FALSE (0000ms, 0962ms total)
T7764 259:320 JLINK_IsHalted()  returns FALSE (0000ms, 0962ms total)
T7764 259:421 JLINK_IsHalted()  returns FALSE (0000ms, 0962ms total)
T7764 259:523 JLINK_IsHalted()  returns FALSE (0000ms, 0962ms total)
T7764 259:624 JLINK_IsHalted()  returns FALSE (0000ms, 0962ms total)
T514C 259:725 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 5E 43  returns 0x04 (0001ms, 0963ms total)
T7764 259:726 JLINK_IsHalted()  returns FALSE (0000ms, 0963ms total)
T7764 259:827 JLINK_IsHalted()  returns FALSE (0000ms, 0963ms total)
T7764 259:929 JLINK_IsHalted()  returns FALSE (0000ms, 0963ms total)
T7764 260:030 JLINK_IsHalted()  returns FALSE (0000ms, 0963ms total)
T7764 260:131 JLINK_IsHalted()  returns FALSE (0000ms, 0963ms total)
T7764 260:232 JLINK_IsHalted()  returns FALSE (0000ms, 0963ms total)
T514C 260:333 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 5E 43  returns 0x04 (0000ms, 0963ms total)
T7764 260:334 JLINK_IsHalted()  returns FALSE (0000ms, 0963ms total)
T7764 260:435 JLINK_IsHalted()  returns FALSE (0000ms, 0963ms total)
T7764 260:537 JLINK_IsHalted()  returns FALSE (0000ms, 0963ms total)
T7764 260:639 JLINK_IsHalted()  returns FALSE (0000ms, 0963ms total)
T7764 260:740 JLINK_IsHalted()  returns FALSE (0000ms, 0963ms total)
T7764 260:842 JLINK_IsHalted()  returns FALSE (0000ms, 0963ms total)
T514C 260:943 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 5F 43  returns 0x04 (0000ms, 0963ms total)
T7764 260:944 JLINK_IsHalted()  returns FALSE (0000ms, 0963ms total)
T7764 261:045 JLINK_IsHalted()  returns FALSE (0000ms, 0963ms total)
T7764 261:146 JLINK_IsHalted()  returns FALSE (0000ms, 0963ms total)
T7764 261:247 JLINK_IsHalted()  returns FALSE (0000ms, 0963ms total)
T7764 261:348 JLINK_IsHalted()  returns FALSE (0000ms, 0963ms total)
T7764 261:449 JLINK_IsHalted()  returns FALSE (0000ms, 0963ms total)
T514C 261:550 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 60 43  returns 0x04 (0001ms, 0964ms total)
T7764 261:551 JLINK_IsHalted()  returns FALSE (0000ms, 0964ms total)
T7764 261:653 JLINK_IsHalted()  returns FALSE (0000ms, 0964ms total)
T7764 261:754 JLINK_IsHalted()  returns FALSE (0000ms, 0964ms total)
T7764 261:855 JLINK_IsHalted()  returns FALSE (0000ms, 0964ms total)
T7764 261:956 JLINK_IsHalted()  returns FALSE (0000ms, 0964ms total)
T7764 262:057 JLINK_IsHalted()  returns FALSE (0000ms, 0964ms total)
T514C 262:158 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 60 43  returns 0x04 (0001ms, 0965ms total)
T7764 262:159 JLINK_IsHalted()  returns FALSE (0001ms, 0966ms total)
T7764 262:261 JLINK_IsHalted()  returns FALSE (0000ms, 0965ms total)
T7764 262:362 JLINK_IsHalted()  returns FALSE (0000ms, 0965ms total)
T7764 262:463 JLINK_IsHalted()  returns FALSE (0000ms, 0965ms total)
T7764 262:564 JLINK_IsHalted()  returns FALSE (0000ms, 0965ms total)
T514C 262:666 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 61 43  returns 0x04 (0001ms, 0966ms total)
T7764 262:667 JLINK_IsHalted()  returns FALSE (0000ms, 0966ms total)
T7764 262:768 JLINK_IsHalted()  returns FALSE (0000ms, 0966ms total)
T7764 262:870 JLINK_IsHalted()  returns FALSE (0000ms, 0966ms total)
T7764 262:971 JLINK_IsHalted()  returns FALSE (0000ms, 0966ms total)
T7764 263:072 JLINK_IsHalted()  returns FALSE (0000ms, 0966ms total)
T7764 263:173 JLINK_IsHalted()  returns FALSE (0000ms, 0966ms total)
T514C 263:274 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 61 43  returns 0x04 (0001ms, 0967ms total)
T7764 263:275 JLINK_IsHalted()  returns FALSE (0000ms, 0967ms total)
T7764 263:376 JLINK_IsHalted()  returns FALSE (0000ms, 0967ms total)
T7764 263:477 JLINK_IsHalted()  returns FALSE (0000ms, 0967ms total)
T7764 263:579 JLINK_IsHalted()  returns FALSE (0000ms, 0967ms total)
T7764 263:680 JLINK_IsHalted()  returns FALSE (0000ms, 0967ms total)
T7764 263:781 JLINK_IsHalted()  returns FALSE (0000ms, 0967ms total)
T514C 263:883 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 62 43  returns 0x04 (0001ms, 0968ms total)
T7764 263:884 JLINK_IsHalted()  returns FALSE (0000ms, 0968ms total)
T7764 263:985 JLINK_IsHalted()  returns FALSE (0000ms, 0968ms total)
T7764 264:086 JLINK_IsHalted()  returns FALSE (0000ms, 0968ms total)
T7764 264:188 JLINK_IsHalted()  returns FALSE (0000ms, 0968ms total)
T7764 264:289 JLINK_IsHalted()  returns FALSE (0000ms, 0968ms total)
T7764 264:390 JLINK_IsHalted()  returns FALSE (0000ms, 0968ms total)
T514C 264:491 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 62 43  returns 0x04 (0000ms, 0968ms total)
T7764 264:492 JLINK_IsHalted()  returns FALSE (0000ms, 0968ms total)
T7764 264:593 JLINK_IsHalted()  returns FALSE (0000ms, 0968ms total)
T7764 264:695 JLINK_IsHalted()  returns FALSE (0000ms, 0968ms total)
T7764 264:796 JLINK_IsHalted()  returns FALSE (0000ms, 0968ms total)
T7764 264:897 JLINK_IsHalted()  returns FALSE (0000ms, 0968ms total)
T7764 264:998 JLINK_IsHalted()  returns FALSE (0000ms, 0968ms total)
T514C 265:099 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 63 43  returns 0x04 (0000ms, 0968ms total)
T7764 265:100 JLINK_IsHalted()  returns FALSE (0000ms, 0969ms total)
T7764 265:201 JLINK_IsHalted()  returns FALSE (0000ms, 0969ms total)
T7764 265:302 JLINK_IsHalted()  returns FALSE (0000ms, 0969ms total)
T7764 265:403 JLINK_IsHalted()  returns FALSE (0000ms, 0969ms total)
T7764 265:505 JLINK_IsHalted()  returns FALSE (0000ms, 0969ms total)
T7764 265:606 JLINK_IsHalted()  returns FALSE (0000ms, 0969ms total)
T514C 265:708 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 64 43  returns 0x04 (0000ms, 0969ms total)
T7764 265:709 JLINK_IsHalted()  returns FALSE (0000ms, 0969ms total)
T7764 265:810 JLINK_IsHalted()  returns FALSE (0000ms, 0969ms total)
T7764 265:912 JLINK_IsHalted()  returns FALSE (0000ms, 0969ms total)
T7764 266:013 JLINK_IsHalted()  returns FALSE (0000ms, 0969ms total)
T7764 266:114 JLINK_IsHalted()  returns FALSE (0000ms, 0969ms total)
T7764 266:215 JLINK_IsHalted()  returns FALSE (0000ms, 0969ms total)
T514C 266:316 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 64 43  returns 0x04 (0001ms, 0970ms total)
T7764 266:317 JLINK_IsHalted()  returns FALSE (0000ms, 0970ms total)
T7764 266:418 JLINK_IsHalted()  returns FALSE (0000ms, 0970ms total)
T7764 266:520 JLINK_IsHalted()  returns FALSE (0000ms, 0970ms total)
T7764 266:621 JLINK_IsHalted()  returns FALSE (0000ms, 0970ms total)
T7764 266:723 JLINK_IsHalted()  returns FALSE (0000ms, 0970ms total)
T7764 266:824 JLINK_IsHalted()  returns FALSE (0000ms, 0970ms total)
T514C 266:925 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 65 43  returns 0x04 (0001ms, 0971ms total)
T7764 266:926 JLINK_IsHalted()  returns FALSE (0001ms, 0972ms total)
T7764 267:028 JLINK_IsHalted()  returns FALSE (0000ms, 0971ms total)
T7764 267:129 JLINK_IsHalted()  returns FALSE (0000ms, 0971ms total)
T7764 267:231 JLINK_IsHalted()  returns FALSE (0000ms, 0971ms total)
T7764 267:332 JLINK_IsHalted()  returns FALSE (0000ms, 0971ms total)
T7764 267:433 JLINK_IsHalted()  returns FALSE (0000ms, 0971ms total)
T514C 267:534 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 66 43  returns 0x04 (0001ms, 0972ms total)
T7764 267:535 JLINK_IsHalted()  returns FALSE (0000ms, 0972ms total)
T7764 267:637 JLINK_IsHalted()  returns FALSE (0000ms, 0972ms total)
T7764 267:738 JLINK_IsHalted()  returns FALSE (0000ms, 0972ms total)
T7764 267:839 JLINK_IsHalted()  returns FALSE (0000ms, 0972ms total)
T7764 267:941 JLINK_IsHalted()  returns FALSE (0000ms, 0972ms total)
T7764 268:042 JLINK_IsHalted()  returns FALSE (0000ms, 0972ms total)
T514C 268:143 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 66 43  returns 0x04 (0001ms, 0973ms total)
T7764 268:144 JLINK_IsHalted()  returns FALSE (0000ms, 0973ms total)
T7764 268:245 JLINK_IsHalted()  returns FALSE (0000ms, 0973ms total)
T7764 268:346 JLINK_IsHalted()  returns FALSE (0000ms, 0973ms total)
T7764 268:448 JLINK_IsHalted()  returns FALSE (0000ms, 0973ms total)
T7764 268:549 JLINK_IsHalted()  returns FALSE (0000ms, 0973ms total)
T7764 268:650 JLINK_IsHalted()  returns FALSE (0000ms, 0973ms total)
T514C 268:751 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 67 43  returns 0x04 (0000ms, 0973ms total)
T7764 268:752 JLINK_IsHalted()  returns FALSE (0000ms, 0973ms total)
T7764 268:853 JLINK_IsHalted()  returns FALSE (0000ms, 0973ms total)
T7764 268:954 JLINK_IsHalted()  returns FALSE (0000ms, 0973ms total)
T7764 269:056 JLINK_IsHalted()  returns FALSE (0000ms, 0973ms total)
T7764 269:157 JLINK_IsHalted()  returns FALSE (0000ms, 0973ms total)
T514C 269:258 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 67 43  returns 0x04 (0000ms, 0973ms total)
T7764 269:259 JLINK_IsHalted()  returns FALSE (0000ms, 0973ms total)
T7764 269:361 JLINK_IsHalted()  returns FALSE (0000ms, 0973ms total)
T7764 269:462 JLINK_IsHalted()  returns FALSE (0000ms, 0973ms total)
T7764 269:563 JLINK_IsHalted()  returns FALSE (0000ms, 0973ms total)
T7764 269:664 JLINK_IsHalted()  returns FALSE (0000ms, 0973ms total)
T7764 269:766 JLINK_IsHalted()  returns FALSE (0000ms, 0973ms total)
T514C 269:868 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 68 43  returns 0x04 (0000ms, 0973ms total)
T7764 269:869 JLINK_IsHalted()  returns FALSE (0000ms, 0973ms total)
T7764 269:970 JLINK_IsHalted()  returns FALSE (0000ms, 0973ms total)
T7764 270:071 JLINK_IsHalted()  returns FALSE (0000ms, 0973ms total)
T7764 270:172 JLINK_IsHalted()  returns FALSE (0000ms, 0973ms total)
T7764 270:273 JLINK_IsHalted()  returns FALSE (0000ms, 0973ms total)
T7764 270:374 JLINK_IsHalted()  returns FALSE (0000ms, 0973ms total)
T514C 270:475 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 68 43  returns 0x04 (0000ms, 0973ms total)
T7764 270:476 JLINK_IsHalted()  returns FALSE (0000ms, 0973ms total)
T7764 270:578 JLINK_IsHalted()  returns FALSE (0000ms, 0973ms total)
T7764 270:679 JLINK_IsHalted()  returns FALSE (0000ms, 0973ms total)
T7764 270:780 JLINK_IsHalted()  returns FALSE (0000ms, 0973ms total)
T7764 270:882 JLINK_IsHalted()  returns FALSE (0000ms, 0973ms total)
T7764 270:983 JLINK_IsHalted()  returns FALSE (0000ms, 0973ms total)
T514C 271:085 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 69 43  returns 0x04 (0000ms, 0973ms total)
T7764 271:086 JLINK_IsHalted()  returns FALSE (0000ms, 0973ms total)
T7764 271:187 JLINK_IsHalted()  returns FALSE (0000ms, 0973ms total)
T7764 271:288 JLINK_IsHalted()  returns FALSE (0000ms, 0973ms total)
T7764 271:389 JLINK_IsHalted()  returns FALSE (0000ms, 0973ms total)
T7764 271:491 JLINK_IsHalted()  returns FALSE (0000ms, 0973ms total)
T7764 271:592 JLINK_IsHalted()  returns FALSE (0000ms, 0973ms total)
T514C 271:694 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 6A 43  returns 0x04 (0000ms, 0973ms total)
T7764 271:695 JLINK_IsHalted()  returns FALSE (0000ms, 0973ms total)
T7764 271:796 JLINK_IsHalted()  returns FALSE (0000ms, 0973ms total)
T7764 271:897 JLINK_IsHalted()  returns FALSE (0000ms, 0973ms total)
T7764 271:999 JLINK_IsHalted()  returns FALSE (0000ms, 0973ms total)
T7764 272:100 JLINK_IsHalted()  returns FALSE (0000ms, 0973ms total)
T7764 272:201 JLINK_IsHalted()  returns FALSE (0000ms, 0973ms total)
T514C 272:302 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 6A 43  returns 0x04 (0001ms, 0974ms total)
T7764 272:303 JLINK_IsHalted()  returns FALSE (0000ms, 0974ms total)
T7764 272:405 JLINK_IsHalted()  returns FALSE (0000ms, 0974ms total)
T7764 272:506 JLINK_IsHalted()  returns FALSE (0000ms, 0974ms total)
T7764 272:607 JLINK_IsHalted()  returns FALSE (0000ms, 0974ms total)
T7764 272:708 JLINK_IsHalted()  returns FALSE (0000ms, 0974ms total)
T7764 272:809 JLINK_IsHalted()  returns FALSE (0000ms, 0974ms total)
T514C 272:911 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 6B 43  returns 0x04 (0000ms, 0974ms total)
T7764 272:912 JLINK_IsHalted()  returns FALSE (0000ms, 0974ms total)
T7764 273:013 JLINK_IsHalted()  returns FALSE (0000ms, 0974ms total)
T7764 273:114 JLINK_IsHalted()  returns FALSE (0000ms, 0974ms total)
T7764 273:215 JLINK_IsHalted()  returns FALSE (0000ms, 0974ms total)
T7764 273:316 JLINK_IsHalted()  returns FALSE (0000ms, 0974ms total)
T7764 273:418 JLINK_IsHalted()  returns FALSE (0000ms, 0974ms total)
T514C 273:519 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 6B 43  returns 0x04 (0001ms, 0975ms total)
T7764 273:520 JLINK_IsHalted()  returns FALSE (0000ms, 0975ms total)
T7764 273:622 JLINK_IsHalted()  returns FALSE (0000ms, 0975ms total)
T7764 273:723 JLINK_IsHalted()  returns FALSE (0000ms, 0975ms total)
T7764 273:825 JLINK_IsHalted()  returns FALSE (0000ms, 0975ms total)
T7764 273:926 JLINK_IsHalted()  returns FALSE (0000ms, 0975ms total)
T7764 274:028 JLINK_IsHalted()  returns FALSE (0000ms, 0975ms total)
T514C 274:129 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 6C 43  returns 0x04 (0001ms, 0976ms total)
T7764 274:130 JLINK_IsHalted()  returns FALSE (0000ms, 0976ms total)
T7764 274:231 JLINK_IsHalted()  returns FALSE (0000ms, 0976ms total)
T7764 274:332 JLINK_IsHalted()  returns FALSE (0000ms, 0976ms total)
T7764 274:433 JLINK_IsHalted()  returns FALSE (0000ms, 0976ms total)
T7764 274:535 JLINK_IsHalted()  returns FALSE (0000ms, 0976ms total)
T7764 274:636 JLINK_IsHalted()  returns FALSE (0000ms, 0976ms total)
T514C 274:737 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 6D 43  returns 0x04 (0001ms, 0977ms total)
T7764 274:738 JLINK_IsHalted()  returns FALSE (0001ms, 0978ms total)
T7764 274:840 JLINK_IsHalted()  returns FALSE (0000ms, 0977ms total)
T7764 274:941 JLINK_IsHalted()  returns FALSE (0000ms, 0977ms total)
T7764 275:042 JLINK_IsHalted()  returns FALSE (0000ms, 0977ms total)
T7764 275:143 JLINK_IsHalted()  returns FALSE (0000ms, 0977ms total)
T7764 275:245 JLINK_IsHalted()  returns FALSE (0000ms, 0977ms total)
T514C 275:346 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 6D 43  returns 0x04 (0001ms, 0978ms total)
T7764 275:347 JLINK_IsHalted()  returns FALSE (0000ms, 0978ms total)
T7764 275:447 JLINK_IsHalted()  returns FALSE (0000ms, 0978ms total)
T7764 275:548 JLINK_IsHalted()  returns FALSE (0000ms, 0978ms total)
T7764 275:649 JLINK_IsHalted()  returns FALSE (0000ms, 0978ms total)
T7764 275:751 JLINK_IsHalted()  returns FALSE (0000ms, 0978ms total)
T514C 275:852 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 6E 43  returns 0x04 (0000ms, 0978ms total)
T7764 275:853 JLINK_IsHalted()  returns FALSE (0000ms, 0978ms total)
T7764 275:954 JLINK_IsHalted()  returns FALSE (0000ms, 0978ms total)
T7764 276:055 JLINK_IsHalted()  returns FALSE (0000ms, 0978ms total)
T7764 276:156 JLINK_IsHalted()  returns FALSE (0000ms, 0978ms total)
T7764 276:257 JLINK_IsHalted()  returns FALSE (0000ms, 0978ms total)
T7764 276:358 JLINK_IsHalted()  returns FALSE (0000ms, 0978ms total)
T514C 276:460 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 6E 43  returns 0x04 (0001ms, 0979ms total)
T7764 276:461 JLINK_IsHalted()  returns FALSE (0000ms, 0979ms total)
T7764 276:562 JLINK_IsHalted()  returns FALSE (0000ms, 0979ms total)
T7764 276:663 JLINK_IsHalted()  returns FALSE (0000ms, 0979ms total)
T7764 276:764 JLINK_IsHalted()  returns FALSE (0000ms, 0979ms total)
T7764 276:865 JLINK_IsHalted()  returns FALSE (0000ms, 0979ms total)
T7764 276:966 JLINK_IsHalted()  returns FALSE (0000ms, 0979ms total)
T514C 277:067 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 6F 43  returns 0x04 (0000ms, 0979ms total)
T7764 277:068 JLINK_IsHalted()  returns FALSE (0000ms, 0979ms total)
T7764 277:169 JLINK_IsHalted()  returns FALSE (0000ms, 0979ms total)
T7764 277:270 JLINK_IsHalted()  returns FALSE (0000ms, 0979ms total)
T7764 277:372 JLINK_IsHalted()  returns FALSE (0000ms, 0979ms total)
T7764 277:473 JLINK_IsHalted()  returns FALSE (0000ms, 0979ms total)
T7764 277:574 JLINK_IsHalted()  returns FALSE (0000ms, 0979ms total)
T514C 277:675 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 70 43  returns 0x04 (0001ms, 0980ms total)
T7764 277:676 JLINK_IsHalted()  returns FALSE (0000ms, 0980ms total)
T7764 277:777 JLINK_IsHalted()  returns FALSE (0000ms, 0980ms total)
T7764 277:878 JLINK_IsHalted()  returns FALSE (0000ms, 0980ms total)
T7764 277:980 JLINK_IsHalted()  returns FALSE (0000ms, 0980ms total)
T7764 278:081 JLINK_IsHalted()  returns FALSE (0000ms, 0980ms total)
T7764 278:182 JLINK_IsHalted()  returns FALSE (0000ms, 0980ms total)
T514C 278:283 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 70 43  returns 0x04 (0001ms, 0981ms total)
T7764 278:284 JLINK_IsHalted()  returns FALSE (0000ms, 0981ms total)
T7764 278:385 JLINK_IsHalted()  returns FALSE (0000ms, 0981ms total)
T7764 278:486 JLINK_IsHalted()  returns FALSE (0000ms, 0981ms total)
T7764 278:587 JLINK_IsHalted()  returns FALSE (0000ms, 0981ms total)
T7764 278:688 JLINK_IsHalted()  returns FALSE (0000ms, 0981ms total)
T514C 278:790 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 71 43  returns 0x04 (0001ms, 0982ms total)
T7764 278:791 JLINK_IsHalted()  returns FALSE (0000ms, 0982ms total)
T7764 278:892 JLINK_IsHalted()  returns FALSE (0000ms, 0982ms total)
T7764 278:994 JLINK_IsHalted()  returns FALSE (0000ms, 0982ms total)
T7764 279:095 JLINK_IsHalted()  returns FALSE (0000ms, 0982ms total)
T7764 279:196 JLINK_IsHalted()  returns FALSE (0000ms, 0982ms total)
T7764 279:297 JLINK_IsHalted()  returns FALSE (0000ms, 0982ms total)
T514C 279:398 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 71 43  returns 0x04 (0001ms, 0983ms total)
T7764 279:399 JLINK_IsHalted()  returns FALSE (0000ms, 0983ms total)
T7764 279:500 JLINK_IsHalted()  returns FALSE (0000ms, 0983ms total)
T7764 279:602 JLINK_IsHalted()  returns FALSE (0000ms, 0983ms total)
T7764 279:704 JLINK_IsHalted()  returns FALSE (0000ms, 0983ms total)
T7764 279:805 JLINK_IsHalted()  returns FALSE (0000ms, 0983ms total)
T7764 279:907 JLINK_IsHalted()  returns FALSE (0000ms, 0983ms total)
T514C 280:008 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 72 43  returns 0x04 (0000ms, 0983ms total)
T7764 280:009 JLINK_IsHalted()  returns FALSE (0000ms, 0983ms total)
T7764 280:110 JLINK_IsHalted()  returns FALSE (0000ms, 0983ms total)
T7764 280:211 JLINK_IsHalted()  returns FALSE (0000ms, 0983ms total)
T7764 280:312 JLINK_IsHalted()  returns FALSE (0000ms, 0983ms total)
T7764 280:413 JLINK_IsHalted()  returns FALSE (0000ms, 0983ms total)
T7764 280:514 JLINK_IsHalted()  returns FALSE (0000ms, 0983ms total)
T514C 280:616 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 73 43  returns 0x04 (0001ms, 0984ms total)
T7764 280:617 JLINK_IsHalted()  returns FALSE (0000ms, 0984ms total)
T7764 280:718 JLINK_IsHalted()  returns FALSE (0000ms, 0984ms total)
T7764 280:819 JLINK_IsHalted()  returns FALSE (0000ms, 0984ms total)
T7764 280:920 JLINK_IsHalted()  returns FALSE (0000ms, 0984ms total)
T7764 281:021 JLINK_IsHalted()  returns FALSE (0000ms, 0984ms total)
T7764 281:122 JLINK_IsHalted()  returns FALSE (0000ms, 0984ms total)
T514C 281:223 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 73 43  returns 0x04 (0001ms, 0985ms total)
T7764 281:224 JLINK_IsHalted()  returns FALSE (0000ms, 0985ms total)
T7764 281:326 JLINK_IsHalted()  returns FALSE (0000ms, 0985ms total)
T7764 281:427 JLINK_IsHalted()  returns FALSE (0000ms, 0985ms total)
T7764 281:528 JLINK_IsHalted()  returns FALSE (0000ms, 0985ms total)
T7764 281:628 JLINK_IsHalted()  returns FALSE (0000ms, 0985ms total)
T7764 281:730 JLINK_IsHalted()  returns FALSE (0000ms, 0985ms total)
T514C 281:832 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 74 43  returns 0x04 (0001ms, 0986ms total)
T7764 281:833 JLINK_IsHalted()  returns FALSE (0000ms, 0986ms total)
T7764 281:934 JLINK_IsHalted()  returns FALSE (0000ms, 0986ms total)
T7764 282:036 JLINK_IsHalted()  returns FALSE (0000ms, 0986ms total)
T7764 282:137 JLINK_IsHalted()  returns FALSE (0000ms, 0986ms total)
T7764 282:238 JLINK_IsHalted()  returns FALSE (0000ms, 0986ms total)
T7764 282:339 JLINK_IsHalted()  returns FALSE (0000ms, 0986ms total)
T514C 282:440 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 74 43  returns 0x04 (0001ms, 0987ms total)
T7764 282:441 JLINK_IsHalted()  returns FALSE (0000ms, 0987ms total)
T7764 282:542 JLINK_IsHalted()  returns FALSE (0000ms, 0987ms total)
T7764 282:644 JLINK_IsHalted()  returns FALSE (0000ms, 0987ms total)
T7764 282:745 JLINK_IsHalted()  returns FALSE (0000ms, 0987ms total)
T7764 282:846 JLINK_IsHalted()  returns FALSE (0000ms, 0987ms total)
T7764 282:948 JLINK_IsHalted()  returns FALSE (0000ms, 0987ms total)
T514C 283:049 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 75 43  returns 0x04 (0001ms, 0988ms total)
T7764 283:050 JLINK_IsHalted()  returns FALSE (0001ms, 0989ms total)
T7764 283:152 JLINK_IsHalted()  returns FALSE (0000ms, 0988ms total)
T7764 283:253 JLINK_IsHalted()  returns FALSE (0000ms, 0988ms total)
T7764 283:354 JLINK_IsHalted()  returns FALSE (0000ms, 0988ms total)
T7764 283:455 JLINK_IsHalted()  returns FALSE (0000ms, 0988ms total)
T7764 283:555 JLINK_IsHalted()  returns FALSE (0000ms, 0988ms total)
T514C 283:657 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 76 43  returns 0x04 (0001ms, 0989ms total)
T7764 283:658 JLINK_IsHalted()  returns FALSE (0000ms, 0989ms total)
T7764 283:759 JLINK_IsHalted()  returns FALSE (0000ms, 0989ms total)
T7764 283:860 JLINK_IsHalted()  returns FALSE (0000ms, 0989ms total)
T7764 283:962 JLINK_IsHalted()  returns FALSE (0000ms, 0989ms total)
T7764 284:063 JLINK_IsHalted()  returns FALSE (0000ms, 0989ms total)
T514C 284:164 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 76 43  returns 0x04 (0001ms, 0990ms total)
T7764 284:165 JLINK_IsHalted()  returns FALSE (0000ms, 0990ms total)
T7764 284:266 JLINK_IsHalted()  returns FALSE (0000ms, 0990ms total)
T7764 284:367 JLINK_IsHalted()  returns FALSE (0000ms, 0990ms total)
T7764 284:468 JLINK_IsHalted()  returns FALSE (0000ms, 0990ms total)
T7764 284:570 JLINK_IsHalted()  returns FALSE (0000ms, 0990ms total)
T7764 284:671 JLINK_IsHalted()  returns FALSE (0000ms, 0990ms total)
T514C 284:772 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 77 43  returns 0x04 (0001ms, 0991ms total)
T7764 284:773 JLINK_IsHalted()  returns FALSE (0000ms, 0991ms total)
T7764 284:875 JLINK_IsHalted()  returns FALSE (0000ms, 0991ms total)
T7764 284:977 JLINK_IsHalted()  returns FALSE (0000ms, 0991ms total)
T7764 285:078 JLINK_IsHalted()  returns FALSE (0000ms, 0991ms total)
T7764 285:179 JLINK_IsHalted()  returns FALSE (0000ms, 0991ms total)
T7764 285:280 JLINK_IsHalted()  returns FALSE (0000ms, 0991ms total)
T514C 285:382 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 77 43  returns 0x04 (0000ms, 0991ms total)
T7764 285:383 JLINK_IsHalted()  returns FALSE (0000ms, 0991ms total)
T7764 285:484 JLINK_IsHalted()  returns FALSE (0000ms, 0991ms total)
T7764 285:586 JLINK_IsHalted()  returns FALSE (0000ms, 0991ms total)
T7764 285:687 JLINK_IsHalted()  returns FALSE (0000ms, 0991ms total)
T7764 285:789 JLINK_IsHalted()  returns FALSE (0000ms, 0991ms total)
T7764 285:890 JLINK_IsHalted()  returns FALSE (0000ms, 0991ms total)
T514C 285:991 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 78 43  returns 0x04 (0001ms, 0992ms total)
T7764 285:992 JLINK_IsHalted()  returns FALSE (0000ms, 0992ms total)
T7764 286:093 JLINK_IsHalted()  returns FALSE (0000ms, 0992ms total)
T7764 286:194 JLINK_IsHalted()  returns FALSE (0000ms, 0992ms total)
T7764 286:295 JLINK_IsHalted()  returns FALSE (0000ms, 0992ms total)
T7764 286:396 JLINK_IsHalted()  returns FALSE (0000ms, 0992ms total)
T7764 286:497 JLINK_IsHalted()  returns FALSE (0000ms, 0992ms total)
T514C 286:599 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 79 43  returns 0x04 (0001ms, 0993ms total)
T7764 286:600 JLINK_IsHalted()  returns FALSE (0000ms, 0993ms total)
T7764 286:701 JLINK_IsHalted()  returns FALSE (0000ms, 0993ms total)
T7764 286:802 JLINK_IsHalted()  returns FALSE (0000ms, 0993ms total)
T7764 286:903 JLINK_IsHalted()  returns FALSE (0000ms, 0993ms total)
T7764 287:004 JLINK_IsHalted()  returns FALSE (0000ms, 0993ms total)
T7764 287:106 JLINK_IsHalted()  returns FALSE (0000ms, 0993ms total)
T514C 287:207 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 79 43  returns 0x04 (0001ms, 0994ms total)
T7764 287:208 JLINK_IsHalted()  returns FALSE (0001ms, 0995ms total)
T7764 287:309 JLINK_IsHalted()  returns FALSE (0000ms, 0994ms total)
T7764 287:410 JLINK_IsHalted()  returns FALSE (0000ms, 0994ms total)
T7764 287:511 JLINK_IsHalted()  returns FALSE (0000ms, 0994ms total)
T7764 287:612 JLINK_IsHalted()  returns FALSE (0000ms, 0994ms total)
T7764 287:714 JLINK_IsHalted()  returns FALSE (0000ms, 0994ms total)
T514C 287:815 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 7A 43  returns 0x04 (0001ms, 0995ms total)
T7764 287:816 JLINK_IsHalted()  returns FALSE (0001ms, 0996ms total)
T7764 287:918 JLINK_IsHalted()  returns FALSE (0000ms, 0995ms total)
T7764 288:020 JLINK_IsHalted()  returns FALSE (0000ms, 0995ms total)
T7764 288:121 JLINK_IsHalted()  returns FALSE (0000ms, 0995ms total)
T7764 288:222 JLINK_IsHalted()  returns FALSE (0000ms, 0995ms total)
T7764 288:324 JLINK_IsHalted()  returns FALSE (0000ms, 0995ms total)
T514C 288:425 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 7A 43  returns 0x04 (0000ms, 0995ms total)
T7764 288:426 JLINK_IsHalted()  returns FALSE (0000ms, 0995ms total)
T7764 288:527 JLINK_IsHalted()  returns FALSE (0000ms, 0995ms total)
T7764 288:628 JLINK_IsHalted()  returns FALSE (0000ms, 0995ms total)
T7764 288:730 JLINK_IsHalted()  returns FALSE (0000ms, 0995ms total)
T7764 288:830 JLINK_IsHalted()  returns FALSE (0000ms, 0995ms total)
T7764 288:931 JLINK_IsHalted()  returns FALSE (0000ms, 0995ms total)
T514C 289:033 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 7B 43  returns 0x04 (0000ms, 0995ms total)
T7764 289:034 JLINK_IsHalted()  returns FALSE (0000ms, 0995ms total)
T7764 289:135 JLINK_IsHalted()  returns FALSE (0000ms, 0995ms total)
T7764 289:236 JLINK_IsHalted()  returns FALSE (0000ms, 0995ms total)
T7764 289:338 JLINK_IsHalted()  returns FALSE (0000ms, 0995ms total)
T7764 289:439 JLINK_IsHalted()  returns FALSE (0000ms, 0995ms total)
T514C 289:540 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 7C 43  returns 0x04 (0000ms, 0995ms total)
T7764 289:541 JLINK_IsHalted()  returns FALSE (0000ms, 0995ms total)
T7764 289:643 JLINK_IsHalted()  returns FALSE (0000ms, 0995ms total)
T7764 289:744 JLINK_IsHalted()  returns FALSE (0000ms, 0995ms total)
T7764 289:846 JLINK_IsHalted()  returns FALSE (0000ms, 0995ms total)
T7764 289:947 JLINK_IsHalted()  returns FALSE (0000ms, 0995ms total)
T7764 290:048 JLINK_IsHalted()  returns FALSE (0000ms, 0995ms total)
T514C 290:149 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 7C 43  returns 0x04 (0001ms, 0996ms total)
T7764 290:150 JLINK_IsHalted()  returns FALSE (0000ms, 0996ms total)
T7764 290:251 JLINK_IsHalted()  returns FALSE (0000ms, 0996ms total)
T7764 290:352 JLINK_IsHalted()  returns FALSE (0000ms, 0996ms total)
T7764 290:454 JLINK_IsHalted()  returns FALSE (0000ms, 0996ms total)
T7764 290:555 JLINK_IsHalted()  returns FALSE (0000ms, 0996ms total)
T7764 290:657 JLINK_IsHalted()  returns FALSE (0000ms, 0996ms total)
T514C 290:758 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 7D 43  returns 0x04 (0001ms, 0997ms total)
T7764 290:759 JLINK_IsHalted()  returns FALSE (0000ms, 0997ms total)
T7764 290:860 JLINK_IsHalted()  returns FALSE (0000ms, 0997ms total)
T7764 290:961 JLINK_IsHalted()  returns FALSE (0000ms, 0997ms total)
T7764 291:062 JLINK_IsHalted()  returns FALSE (0000ms, 0997ms total)
T7764 291:163 JLINK_IsHalted()  returns FALSE (0000ms, 0997ms total)
T7764 291:265 JLINK_IsHalted()  returns FALSE (0000ms, 0997ms total)
T514C 291:367 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 7D 43  returns 0x04 (0000ms, 0997ms total)
T7764 291:368 JLINK_IsHalted()  returns FALSE (0000ms, 0998ms total)
T7764 291:469 JLINK_IsHalted()  returns FALSE (0000ms, 0998ms total)
T7764 291:570 JLINK_IsHalted()  returns FALSE (0000ms, 0998ms total)
T7764 291:671 JLINK_IsHalted()  returns FALSE (0000ms, 0998ms total)
T7764 291:772 JLINK_IsHalted()  returns FALSE (0000ms, 0998ms total)
T7764 291:873 JLINK_IsHalted()  returns FALSE (0000ms, 0998ms total)
T514C 291:974 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 7E 43  returns 0x04 (0000ms, 0998ms total)
T7764 291:975 JLINK_IsHalted()  returns FALSE (0000ms, 0998ms total)
T7764 292:077 JLINK_IsHalted()  returns FALSE (0000ms, 0998ms total)
T7764 292:178 JLINK_IsHalted()  returns FALSE (0000ms, 0998ms total)
T7764 292:279 JLINK_IsHalted()  returns FALSE (0000ms, 0998ms total)
T7764 292:380 JLINK_IsHalted()  returns FALSE (0000ms, 0998ms total)
T7764 292:482 JLINK_IsHalted()  returns FALSE (0000ms, 0998ms total)
T514C 292:583 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 7F 43  returns 0x04 (0000ms, 0998ms total)
T7764 292:584 JLINK_IsHalted()  returns FALSE (0000ms, 0998ms total)
T7764 292:685 JLINK_IsHalted()  returns FALSE (0000ms, 0998ms total)
T7764 292:786 JLINK_IsHalted()  returns FALSE (0000ms, 0998ms total)
T7764 292:887 JLINK_IsHalted()  returns FALSE (0000ms, 0998ms total)
T7764 292:988 JLINK_IsHalted()  returns FALSE (0000ms, 0998ms total)
T7764 293:089 JLINK_IsHalted()  returns FALSE (0000ms, 0998ms total)
T514C 293:190 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 7F 43  returns 0x04 (0001ms, 0999ms total)
T7764 293:191 JLINK_IsHalted()  returns FALSE (0000ms, 0999ms total)
T7764 293:292 JLINK_IsHalted()  returns FALSE (0000ms, 0999ms total)
T7764 293:393 JLINK_IsHalted()  returns FALSE (0000ms, 0999ms total)
T7764 293:495 JLINK_IsHalted()  returns FALSE (0000ms, 0999ms total)
T7764 293:596 JLINK_IsHalted()  returns FALSE (0000ms, 0999ms total)
T7764 293:698 JLINK_IsHalted()  returns FALSE (0000ms, 0999ms total)
T514C 293:799 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 80 43  returns 0x04 (0001ms, 1000ms total)
T7764 293:800 JLINK_IsHalted()  returns FALSE (0001ms, 1001ms total)
T7764 293:902 JLINK_IsHalted()  returns FALSE (0000ms, 1000ms total)
T7764 294:003 JLINK_IsHalted()  returns FALSE (0000ms, 1000ms total)
T7764 294:104 JLINK_IsHalted()  returns FALSE (0000ms, 1000ms total)
T7764 294:205 JLINK_IsHalted()  returns FALSE (0000ms, 1000ms total)
T7764 294:306 JLINK_IsHalted()  returns FALSE (0000ms, 1000ms total)
T514C 294:407 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 80 43  returns 0x04 (0001ms, 1001ms total)
T7764 294:408 JLINK_IsHalted()  returns FALSE (0000ms, 1001ms total)
T7764 294:510 JLINK_IsHalted()  returns FALSE (0000ms, 1001ms total)
T7764 294:611 JLINK_IsHalted()  returns FALSE (0000ms, 1001ms total)
T7764 294:712 JLINK_IsHalted()  returns FALSE (0000ms, 1001ms total)
T7764 294:813 JLINK_IsHalted()  returns FALSE (0000ms, 1001ms total)
T514C 294:915 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 80 43  returns 0x04 (0001ms, 1002ms total)
T7764 294:916 JLINK_IsHalted()  returns FALSE (0000ms, 1002ms total)
T7764 295:017 JLINK_IsHalted()  returns FALSE (0000ms, 1002ms total)
T7764 295:118 JLINK_IsHalted()  returns FALSE (0000ms, 1002ms total)
T7764 295:219 JLINK_IsHalted()  returns FALSE (0000ms, 1002ms total)
T7764 295:320 JLINK_IsHalted()  returns FALSE (0000ms, 1002ms total)
T7764 295:421 JLINK_IsHalted()  returns FALSE (0000ms, 1002ms total)
T514C 295:522 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 80 43  returns 0x04 (0001ms, 1003ms total)
T7764 295:523 JLINK_IsHalted()  returns FALSE (0001ms, 1004ms total)
T7764 295:624 JLINK_IsHalted()  returns FALSE (0000ms, 1003ms total)
T7764 295:725 JLINK_IsHalted()  returns FALSE (0000ms, 1003ms total)
T7764 295:826 JLINK_IsHalted()  returns FALSE (0000ms, 1003ms total)
T7764 295:927 JLINK_IsHalted()  returns FALSE (0000ms, 1003ms total)
T7764 296:028 JLINK_IsHalted()  returns FALSE (0000ms, 1003ms total)
T514C 296:130 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 81 43  returns 0x04 (0000ms, 1003ms total)
T7764 296:131 JLINK_IsHalted()  returns FALSE (0000ms, 1004ms total)
T7764 296:233 JLINK_IsHalted()  returns FALSE (0000ms, 1004ms total)
T7764 296:334 JLINK_IsHalted()  returns FALSE (0000ms, 1004ms total)
T7764 296:435 JLINK_IsHalted()  returns FALSE (0000ms, 1004ms total)
T7764 296:536 JLINK_IsHalted()  returns FALSE (0000ms, 1004ms total)
T7764 296:638 JLINK_IsHalted()  returns FALSE (0000ms, 1004ms total)
T514C 296:739 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 81 43  returns 0x04 (0000ms, 1004ms total)
T7764 296:740 JLINK_IsHalted()  returns FALSE (0000ms, 1004ms total)
T7764 296:841 JLINK_IsHalted()  returns FALSE (0000ms, 1004ms total)
T7764 296:943 JLINK_IsHalted()  returns FALSE (0000ms, 1004ms total)
T7764 297:044 JLINK_IsHalted()  returns FALSE (0000ms, 1004ms total)
T7764 297:145 JLINK_IsHalted()  returns FALSE (0000ms, 1004ms total)
T7764 297:246 JLINK_IsHalted()  returns FALSE (0000ms, 1004ms total)
T514C 297:347 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 81 43  returns 0x04 (0001ms, 1005ms total)
T7764 297:348 JLINK_IsHalted()  returns FALSE (0000ms, 1005ms total)
T7764 297:449 JLINK_IsHalted()  returns FALSE (0000ms, 1005ms total)
T7764 297:550 JLINK_IsHalted()  returns FALSE (0000ms, 1005ms total)
T7764 297:652 JLINK_IsHalted()  returns FALSE (0000ms, 1005ms total)
T7764 297:754 JLINK_IsHalted()  returns FALSE (0000ms, 1005ms total)
T7764 297:855 JLINK_IsHalted()  returns FALSE (0000ms, 1005ms total)
T514C 297:956 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 82 43  returns 0x04 (0001ms, 1006ms total)
T7764 297:957 JLINK_IsHalted()  returns FALSE (0000ms, 1006ms total)
T7764 298:059 JLINK_IsHalted()  returns FALSE (0000ms, 1006ms total)
T7764 298:160 JLINK_IsHalted()  returns FALSE (0000ms, 1006ms total)
T7764 298:261 JLINK_IsHalted()  returns FALSE (0000ms, 1006ms total)
T7764 298:362 JLINK_IsHalted()  returns FALSE (0000ms, 1006ms total)
T7764 298:464 JLINK_IsHalted()  returns FALSE (0000ms, 1006ms total)
T514C 298:565 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 82 43  returns 0x04 (0001ms, 1007ms total)
T7764 298:566 JLINK_IsHalted()  returns FALSE (0000ms, 1007ms total)
T7764 298:668 JLINK_IsHalted()  returns FALSE (0000ms, 1007ms total)
T7764 298:769 JLINK_IsHalted()  returns FALSE (0000ms, 1007ms total)
T7764 298:870 JLINK_IsHalted()  returns FALSE (0000ms, 1007ms total)
T7764 298:972 JLINK_IsHalted()  returns FALSE (0000ms, 1007ms total)
T7764 299:073 JLINK_IsHalted()  returns FALSE (0000ms, 1007ms total)
T514C 299:174 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 82 43  returns 0x04 (0001ms, 1008ms total)
T7764 299:175 JLINK_IsHalted()  returns FALSE (0000ms, 1008ms total)
T7764 299:276 JLINK_IsHalted()  returns FALSE (0000ms, 1008ms total)
T7764 299:378 JLINK_IsHalted()  returns FALSE (0000ms, 1008ms total)
T7764 299:479 JLINK_IsHalted()  returns FALSE (0000ms, 1008ms total)
T7764 299:580 JLINK_IsHalted()  returns FALSE (0000ms, 1008ms total)
T514C 299:681 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 83 43  returns 0x04 (0001ms, 1009ms total)
T7764 299:682 JLINK_IsHalted()  returns FALSE (0000ms, 1009ms total)
T7764 299:783 JLINK_IsHalted()  returns FALSE (0000ms, 1009ms total)
T7764 299:885 JLINK_IsHalted()  returns FALSE (0000ms, 1009ms total)
T7764 299:986 JLINK_IsHalted()  returns FALSE (0000ms, 1009ms total)
T7764 300:087 JLINK_IsHalted()  returns FALSE (0000ms, 1009ms total)
T7764 300:188 JLINK_IsHalted()  returns FALSE (0000ms, 1009ms total)
T514C 300:290 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 83 43  returns 0x04 (0001ms, 1010ms total)
T7764 300:291 JLINK_IsHalted()  returns FALSE (0000ms, 1010ms total)
T7764 300:392 JLINK_IsHalted()  returns FALSE (0000ms, 1010ms total)
T7764 300:493 JLINK_IsHalted()  returns FALSE (0000ms, 1010ms total)
T7764 300:595 JLINK_IsHalted()  returns FALSE (0000ms, 1010ms total)
T7764 300:696 JLINK_IsHalted()  returns FALSE (0000ms, 1010ms total)
T7764 300:797 JLINK_IsHalted()  returns FALSE (0000ms, 1010ms total)
T514C 300:898 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 83 43  returns 0x04 (0001ms, 1011ms total)
T7764 300:899 JLINK_IsHalted()  returns FALSE (0000ms, 1011ms total)
T7764 301:000 JLINK_IsHalted()  returns FALSE (0000ms, 1011ms total)
T7764 301:102 JLINK_IsHalted()  returns FALSE (0000ms, 1011ms total)
T7764 301:203 JLINK_IsHalted()  returns FALSE (0000ms, 1011ms total)
T7764 301:305 JLINK_IsHalted()  returns FALSE (0000ms, 1011ms total)
T7764 301:406 JLINK_IsHalted()  returns FALSE (0000ms, 1011ms total)
T514C 301:508 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 83 43  returns 0x04 (0001ms, 1012ms total)
T7764 301:509 JLINK_IsHalted()  returns FALSE (0000ms, 1012ms total)
T7764 301:610 JLINK_IsHalted()  returns FALSE (0000ms, 1012ms total)
T7764 301:712 JLINK_IsHalted()  returns FALSE (0000ms, 1012ms total)
T7764 301:813 JLINK_IsHalted()  returns FALSE (0000ms, 1012ms total)
T7764 301:915 JLINK_IsHalted()  returns FALSE (0000ms, 1012ms total)
T7764 302:015 JLINK_IsHalted()  returns FALSE (0000ms, 1012ms total)
T514C 302:117 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 84 43  returns 0x04 (0000ms, 1012ms total)
T7764 302:118 JLINK_IsHalted()  returns FALSE (0000ms, 1013ms total)
T7764 302:219 JLINK_IsHalted()  returns FALSE (0000ms, 1013ms total)
T7764 302:320 JLINK_IsHalted()  returns FALSE (0000ms, 1013ms total)
T7764 302:422 JLINK_IsHalted()  returns FALSE (0000ms, 1013ms total)
T7764 302:524 JLINK_IsHalted()  returns FALSE (0000ms, 1013ms total)
T7764 302:625 JLINK_IsHalted()  returns FALSE (0000ms, 1013ms total)
T514C 302:726 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 84 43  returns 0x04 (0001ms, 1014ms total)
T7764 302:727 JLINK_IsHalted()  returns FALSE (0000ms, 1014ms total)
T7764 302:828 JLINK_IsHalted()  returns FALSE (0000ms, 1014ms total)
T7764 302:930 JLINK_IsHalted()  returns FALSE (0000ms, 1014ms total)
T7764 303:031 JLINK_IsHalted()  returns FALSE (0000ms, 1014ms total)
T7764 303:132 JLINK_IsHalted()  returns FALSE (0000ms, 1014ms total)
T7764 303:233 JLINK_IsHalted()  returns FALSE (0000ms, 1014ms total)
T514C 303:334 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 84 43  returns 0x04 (0001ms, 1015ms total)
T7764 303:335 JLINK_IsHalted()  returns FALSE (0000ms, 1015ms total)
T7764 303:437 JLINK_IsHalted()  returns FALSE (0000ms, 1015ms total)
T7764 303:538 JLINK_IsHalted()  returns FALSE (0000ms, 1015ms total)
T7764 303:639 JLINK_IsHalted()  returns FALSE (0000ms, 1015ms total)
T7764 303:741 JLINK_IsHalted()  returns FALSE (0000ms, 1015ms total)
T7764 303:843 JLINK_IsHalted()  returns FALSE (0000ms, 1015ms total)
T514C 303:944 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 85 43  returns 0x04 (0000ms, 1015ms total)
T7764 303:945 JLINK_IsHalted()  returns FALSE (0000ms, 1015ms total)
T7764 304:046 JLINK_IsHalted()  returns FALSE (0000ms, 1015ms total)
T7764 304:147 JLINK_IsHalted()  returns FALSE (0000ms, 1015ms total)
T7764 304:248 JLINK_IsHalted()  returns FALSE (0000ms, 1015ms total)
T7764 304:348 JLINK_IsHalted()  returns FALSE (0000ms, 1015ms total)
T7764 304:450 JLINK_IsHalted()  returns FALSE (0000ms, 1015ms total)
T514C 304:551 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 85 43  returns 0x04 (0000ms, 1015ms total)
T7764 304:552 JLINK_IsHalted()  returns FALSE (0000ms, 1016ms total)
T7764 304:653 JLINK_IsHalted()  returns FALSE (0000ms, 1016ms total)
T7764 304:755 JLINK_IsHalted()  returns FALSE (0000ms, 1016ms total)
T7764 304:856 JLINK_IsHalted()  returns FALSE (0000ms, 1016ms total)
T7764 304:957 JLINK_IsHalted()  returns FALSE (0000ms, 1016ms total)
T7764 305:058 JLINK_IsHalted()  returns FALSE (0000ms, 1016ms total)
T514C 305:159 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 85 43  returns 0x04 (0000ms, 1016ms total)
T7764 305:160 JLINK_IsHalted()  returns FALSE (0000ms, 1016ms total)
T7764 305:261 JLINK_IsHalted()  returns FALSE (0000ms, 1016ms total)
T7764 305:363 JLINK_IsHalted()  returns FALSE (0000ms, 1016ms total)
T7764 305:464 JLINK_IsHalted()  returns FALSE (0000ms, 1016ms total)
T7764 305:565 JLINK_IsHalted()  returns FALSE (0000ms, 1016ms total)
T7764 305:666 JLINK_IsHalted()  returns FALSE (0000ms, 1016ms total)
T514C 305:767 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 86 43  returns 0x04 (0000ms, 1016ms total)
T7764 305:768 JLINK_IsHalted()  returns FALSE (0000ms, 1016ms total)
T7764 305:870 JLINK_IsHalted()  returns FALSE (0000ms, 1016ms total)
T7764 305:971 JLINK_IsHalted()  returns FALSE (0000ms, 1016ms total)
T7764 306:072 JLINK_IsHalted()  returns FALSE (0000ms, 1016ms total)
T7764 306:174 JLINK_IsHalted()  returns FALSE (0000ms, 1016ms total)
T514C 306:275 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 86 43  returns 0x04 (0001ms, 1017ms total)
T7764 306:276 JLINK_IsHalted()  returns FALSE (0000ms, 1017ms total)
T7764 306:378 JLINK_IsHalted()  returns FALSE (0000ms, 1017ms total)
T7764 306:479 JLINK_IsHalted()  returns FALSE (0000ms, 1017ms total)
T7764 306:580 JLINK_IsHalted()  returns FALSE (0000ms, 1017ms total)
T7764 306:681 JLINK_IsHalted()  returns FALSE (0000ms, 1017ms total)
T7764 306:782 JLINK_IsHalted()  returns FALSE (0000ms, 1017ms total)
T514C 306:883 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 86 43  returns 0x04 (0001ms, 1018ms total)
T7764 306:884 JLINK_IsHalted()  returns FALSE (0000ms, 1018ms total)
T7764 306:985 JLINK_IsHalted()  returns FALSE (0000ms, 1018ms total)
T7764 307:086 JLINK_IsHalted()  returns FALSE (0000ms, 1018ms total)
T7764 307:188 JLINK_IsHalted()  returns FALSE (0000ms, 1018ms total)
T7764 307:289 JLINK_IsHalted()  returns FALSE (0000ms, 1018ms total)
T7764 307:390 JLINK_IsHalted()  returns FALSE (0000ms, 1018ms total)
T514C 307:491 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 86 43  returns 0x04 (0001ms, 1019ms total)
T7764 307:492 JLINK_IsHalted()  returns FALSE (0000ms, 1019ms total)
T7764 307:594 JLINK_IsHalted()  returns FALSE (0000ms, 1019ms total)
T7764 307:695 JLINK_IsHalted()  returns FALSE (0000ms, 1019ms total)
T7764 307:796 JLINK_IsHalted()  returns FALSE (0000ms, 1019ms total)
T7764 307:897 JLINK_IsHalted()  returns FALSE (0000ms, 1019ms total)
T7764 307:998 JLINK_IsHalted()  returns FALSE (0000ms, 1019ms total)
T514C 308:099 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 87 43  returns 0x04 (0001ms, 1020ms total)
T7764 308:100 JLINK_IsHalted()  returns FALSE (0000ms, 1020ms total)
T7764 308:202 JLINK_IsHalted()  returns FALSE (0000ms, 1020ms total)
T7764 308:303 JLINK_IsHalted()  returns FALSE (0000ms, 1020ms total)
T7764 308:404 JLINK_IsHalted()  returns FALSE (0000ms, 1020ms total)
T7764 308:505 JLINK_IsHalted()  returns FALSE (0000ms, 1020ms total)
T7764 308:606 JLINK_IsHalted()  returns FALSE (0000ms, 1020ms total)
T514C 308:708 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 87 43  returns 0x04 (0000ms, 1020ms total)
T7764 308:709 JLINK_IsHalted()  returns FALSE (0000ms, 1020ms total)
T7764 308:810 JLINK_IsHalted()  returns FALSE (0000ms, 1020ms total)
T7764 308:912 JLINK_IsHalted()  returns FALSE (0000ms, 1020ms total)
T7764 309:013 JLINK_IsHalted()  returns FALSE (0000ms, 1020ms total)
T7764 309:114 JLINK_IsHalted()  returns FALSE (0000ms, 1020ms total)
T7764 309:215 JLINK_IsHalted()  returns FALSE (0000ms, 1020ms total)
T514C 309:316 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 87 43  returns 0x04 (0001ms, 1021ms total)
T7764 309:317 JLINK_IsHalted()  returns FALSE (0000ms, 1021ms total)
T7764 309:419 JLINK_IsHalted()  returns FALSE (0000ms, 1021ms total)
T7764 309:520 JLINK_IsHalted()  returns FALSE (0000ms, 1021ms total)
T7764 309:621 JLINK_IsHalted()  returns FALSE (0000ms, 1021ms total)
T7764 309:722 JLINK_IsHalted()  returns FALSE (0000ms, 1021ms total)
T7764 309:823 JLINK_IsHalted()  returns FALSE (0000ms, 1021ms total)
T514C 309:925 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 88 43  returns 0x04 (0001ms, 1022ms total)
T7764 309:926 JLINK_IsHalted()  returns FALSE (0000ms, 1022ms total)
T7764 310:027 JLINK_IsHalted()  returns FALSE (0000ms, 1022ms total)
T7764 310:128 JLINK_IsHalted()  returns FALSE (0000ms, 1022ms total)
T7764 310:230 JLINK_IsHalted()  returns FALSE (0000ms, 1022ms total)
T7764 310:331 JLINK_IsHalted()  returns FALSE (0000ms, 1022ms total)
T7764 310:432 JLINK_IsHalted()  returns FALSE (0000ms, 1022ms total)
T514C 310:533 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 88 43  returns 0x04 (0000ms, 1022ms total)
T7764 310:534 JLINK_IsHalted()  returns FALSE (0001ms, 1024ms total)
T7764 310:636 JLINK_IsHalted()  returns FALSE (0000ms, 1023ms total)
T7764 310:737 JLINK_IsHalted()  returns FALSE (0000ms, 1023ms total)
T7764 310:838 JLINK_IsHalted()  returns FALSE (0000ms, 1023ms total)
T7764 310:939 JLINK_IsHalted()  returns FALSE (0000ms, 1023ms total)
T514C 311:040 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 88 43  returns 0x04 (0001ms, 1024ms total)
T7764 311:041 JLINK_IsHalted()  returns FALSE (0000ms, 1024ms total)
T7764 311:143 JLINK_IsHalted()  returns FALSE (0000ms, 1024ms total)
T7764 311:244 JLINK_IsHalted()  returns FALSE (0000ms, 1024ms total)
T7764 311:346 JLINK_IsHalted()  returns FALSE (0000ms, 1024ms total)
T7764 311:447 JLINK_IsHalted()  returns FALSE (0000ms, 1024ms total)
T7764 311:549 JLINK_IsHalted()  returns FALSE (0000ms, 1024ms total)
T514C 311:650 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 89 43  returns 0x04 (0000ms, 1024ms total)
T7764 311:651 JLINK_IsHalted()  returns FALSE (0000ms, 1024ms total)
T7764 311:752 JLINK_IsHalted()  returns FALSE (0000ms, 1024ms total)
T7764 311:853 JLINK_IsHalted()  returns FALSE (0000ms, 1024ms total)
T7764 311:954 JLINK_IsHalted()  returns FALSE (0000ms, 1024ms total)
T7764 312:055 JLINK_IsHalted()  returns FALSE (0000ms, 1024ms total)
T7764 312:156 JLINK_IsHalted()  returns FALSE (0000ms, 1024ms total)
T514C 312:258 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 89 43  returns 0x04 (0000ms, 1024ms total)
T7764 312:259 JLINK_IsHalted()  returns FALSE (0000ms, 1024ms total)
T7764 312:360 JLINK_IsHalted()  returns FALSE (0000ms, 1024ms total)
T7764 312:461 JLINK_IsHalted()  returns FALSE (0000ms, 1024ms total)
T7764 312:562 JLINK_IsHalted()  returns FALSE (0000ms, 1024ms total)
T7764 312:664 JLINK_IsHalted()  returns FALSE (0000ms, 1024ms total)
T7764 312:765 JLINK_IsHalted()  returns FALSE (0000ms, 1024ms total)
T514C 312:866 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 89 43  returns 0x04 (0001ms, 1025ms total)
T7764 312:867 JLINK_IsHalted()  returns FALSE (0000ms, 1025ms total)
T7764 312:968 JLINK_IsHalted()  returns FALSE (0000ms, 1025ms total)
T7764 313:069 JLINK_IsHalted()  returns FALSE (0000ms, 1025ms total)
T7764 313:171 JLINK_IsHalted()  returns FALSE (0000ms, 1025ms total)
T7764 313:272 JLINK_IsHalted()  returns FALSE (0000ms, 1025ms total)
T7764 313:374 JLINK_IsHalted()  returns FALSE (0000ms, 1025ms total)
T514C 313:475 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 89 43  returns 0x04 (0001ms, 1026ms total)
T7764 313:476 JLINK_IsHalted()  returns FALSE (0000ms, 1026ms total)
T7764 313:577 JLINK_IsHalted()  returns FALSE (0000ms, 1026ms total)
T7764 313:678 JLINK_IsHalted()  returns FALSE (0000ms, 1026ms total)
T7764 313:779 JLINK_IsHalted()  returns FALSE (0000ms, 1026ms total)
T7764 313:881 JLINK_IsHalted()  returns FALSE (0000ms, 1026ms total)
T7764 313:982 JLINK_IsHalted()  returns FALSE (0000ms, 1026ms total)
T514C 314:083 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 8A 43  returns 0x04 (0001ms, 1027ms total)
T7764 314:084 JLINK_IsHalted()  returns FALSE (0000ms, 1027ms total)
T7764 314:185 JLINK_IsHalted()  returns FALSE (0000ms, 1027ms total)
T7764 314:286 JLINK_IsHalted()  returns FALSE (0000ms, 1027ms total)
T7764 314:387 JLINK_IsHalted()  returns FALSE (0000ms, 1027ms total)
T7764 314:488 JLINK_IsHalted()  returns FALSE (0000ms, 1027ms total)
T7764 314:590 JLINK_IsHalted()  returns FALSE (0000ms, 1027ms total)
T514C 314:691 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 8A 43  returns 0x04 (0001ms, 1028ms total)
T7764 314:692 JLINK_IsHalted()  returns FALSE (0000ms, 1028ms total)
T7764 314:794 JLINK_IsHalted()  returns FALSE (0000ms, 1028ms total)
T7764 314:895 JLINK_IsHalted()  returns FALSE (0000ms, 1028ms total)
T7764 314:996 JLINK_IsHalted()  returns FALSE (0000ms, 1028ms total)
T7764 315:097 JLINK_IsHalted()  returns FALSE (0000ms, 1028ms total)
T7764 315:198 JLINK_IsHalted()  returns FALSE (0000ms, 1028ms total)
T514C 315:299 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 8A 43  returns 0x04 (0001ms, 1029ms total)
T7764 315:300 JLINK_IsHalted()  returns FALSE (0001ms, 1030ms total)
T7764 315:402 JLINK_IsHalted()  returns FALSE (0000ms, 1029ms total)
T7764 315:504 JLINK_IsHalted()  returns FALSE (0000ms, 1029ms total)
T7764 315:605 JLINK_IsHalted()  returns FALSE (0000ms, 1029ms total)
T7764 315:707 JLINK_IsHalted()  returns FALSE (0000ms, 1029ms total)
T7764 315:808 JLINK_IsHalted()  returns FALSE (0000ms, 1029ms total)
T514C 315:909 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 8B 43  returns 0x04 (0001ms, 1030ms total)
T7764 315:910 JLINK_IsHalted()  returns FALSE (0000ms, 1030ms total)
T7764 316:011 JLINK_IsHalted()  returns FALSE (0000ms, 1030ms total)
T7764 316:112 JLINK_IsHalted()  returns FALSE (0000ms, 1030ms total)
T7764 316:214 JLINK_IsHalted()  returns FALSE (0000ms, 1030ms total)
T7764 316:315 JLINK_IsHalted()  returns FALSE (0000ms, 1030ms total)
T7764 316:416 JLINK_IsHalted()  returns FALSE (0000ms, 1030ms total)
T514C 316:517 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 8B 43  returns 0x04 (0001ms, 1031ms total)
T7764 316:518 JLINK_IsHalted()  returns FALSE (0000ms, 1031ms total)
T7764 316:620 JLINK_IsHalted()  returns FALSE (0000ms, 1031ms total)
T7764 316:721 JLINK_IsHalted()  returns FALSE (0000ms, 1031ms total)
T7764 316:822 JLINK_IsHalted()  returns FALSE (0000ms, 1031ms total)
T7764 316:923 JLINK_IsHalted()  returns FALSE (0000ms, 1031ms total)
T514C 317:025 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 8B 43  returns 0x04 (0001ms, 1032ms total)
T7764 317:026 JLINK_IsHalted()  returns FALSE (0000ms, 1032ms total)
T7764 317:127 JLINK_IsHalted()  returns FALSE (0000ms, 1032ms total)
T7764 317:228 JLINK_IsHalted()  returns FALSE (0000ms, 1032ms total)
T7764 317:330 JLINK_IsHalted()  returns FALSE (0000ms, 1032ms total)
T7764 317:431 JLINK_IsHalted()  returns FALSE (0000ms, 1032ms total)
T7764 317:532 JLINK_IsHalted()  returns FALSE (0000ms, 1032ms total)
T514C 317:633 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 8C 43  returns 0x04 (0001ms, 1033ms total)
T7764 317:634 JLINK_IsHalted()  returns FALSE (0000ms, 1033ms total)
T7764 317:735 JLINK_IsHalted()  returns FALSE (0000ms, 1033ms total)
T7764 317:836 JLINK_IsHalted()  returns FALSE (0000ms, 1033ms total)
T7764 317:938 JLINK_IsHalted()  returns FALSE (0000ms, 1033ms total)
T7764 318:039 JLINK_IsHalted()  returns FALSE (0000ms, 1033ms total)
T7764 318:140 JLINK_IsHalted()  returns FALSE (0000ms, 1033ms total)
T514C 318:242 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 8C 43  returns 0x04 (0001ms, 1034ms total)
T7764 318:243 JLINK_IsHalted()  returns FALSE (0000ms, 1034ms total)
T7764 318:344 JLINK_IsHalted()  returns FALSE (0000ms, 1034ms total)
T7764 318:445 JLINK_IsHalted()  returns FALSE (0000ms, 1034ms total)
T7764 318:546 JLINK_IsHalted()  returns FALSE (0000ms, 1034ms total)
T7764 318:647 JLINK_IsHalted()  returns FALSE (0000ms, 1034ms total)
T7764 318:748 JLINK_IsHalted()  returns FALSE (0000ms, 1034ms total)
T514C 318:849 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 8C 43  returns 0x04 (0000ms, 1034ms total)
T7764 318:850 JLINK_IsHalted()  returns FALSE (0000ms, 1034ms total)
T7764 318:951 JLINK_IsHalted()  returns FALSE (0000ms, 1034ms total)
T7764 319:052 JLINK_IsHalted()  returns FALSE (0000ms, 1034ms total)
T7764 319:153 JLINK_IsHalted()  returns FALSE (0000ms, 1034ms total)
T7764 319:255 JLINK_IsHalted()  returns FALSE (0000ms, 1034ms total)
T7764 319:356 JLINK_IsHalted()  returns FALSE (0000ms, 1034ms total)
T514C 319:457 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 8C 43  returns 0x04 (0001ms, 1035ms total)
T7764 319:458 JLINK_IsHalted()  returns FALSE (0000ms, 1035ms total)
T7764 319:559 JLINK_IsHalted()  returns FALSE (0000ms, 1035ms total)
T7764 319:661 JLINK_IsHalted()  returns FALSE (0000ms, 1035ms total)
T7764 319:762 JLINK_IsHalted()  returns FALSE (0000ms, 1035ms total)
T7764 319:863 JLINK_IsHalted()  returns FALSE (0000ms, 1035ms total)
T7764 319:964 JLINK_IsHalted()  returns FALSE (0000ms, 1035ms total)
T514C 320:065 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 8D 43  returns 0x04 (0001ms, 1036ms total)
T7764 320:066 JLINK_IsHalted()  returns FALSE (0000ms, 1036ms total)
T7764 320:168 JLINK_IsHalted()  returns FALSE (0000ms, 1036ms total)
T7764 320:269 JLINK_IsHalted()  returns FALSE (0000ms, 1036ms total)
T7764 320:371 JLINK_IsHalted()  returns FALSE (0000ms, 1036ms total)
T7764 320:472 JLINK_IsHalted()  returns FALSE (0000ms, 1036ms total)
T7764 320:573 JLINK_IsHalted()  returns FALSE (0000ms, 1036ms total)
T514C 320:674 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 8D 43  returns 0x04 (0001ms, 1037ms total)
T7764 320:675 JLINK_IsHalted()  returns FALSE (0001ms, 1038ms total)
T7764 320:777 JLINK_IsHalted()  returns FALSE (0000ms, 1037ms total)
T7764 320:878 JLINK_IsHalted()  returns FALSE (0000ms, 1037ms total)
T7764 320:979 JLINK_IsHalted()  returns FALSE (0000ms, 1037ms total)
T7764 321:080 JLINK_IsHalted()  returns FALSE (0000ms, 1037ms total)
T7764 321:181 JLINK_IsHalted()  returns FALSE (0000ms, 1037ms total)
T514C 321:283 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 8D 43  returns 0x04 (0001ms, 1038ms total)
T7764 321:284 JLINK_IsHalted()  returns FALSE (0001ms, 1039ms total)
T7764 321:385 JLINK_IsHalted()  returns FALSE (0000ms, 1038ms total)
T7764 321:487 JLINK_IsHalted()  returns FALSE (0000ms, 1038ms total)
T7764 321:588 JLINK_IsHalted()  returns FALSE (0000ms, 1038ms total)
T7764 321:689 JLINK_IsHalted()  returns FALSE (0000ms, 1038ms total)
T514C 321:790 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 8E 43  returns 0x04 (0000ms, 1038ms total)
T7764 321:791 JLINK_IsHalted()  returns FALSE (0000ms, 1038ms total)
T7764 321:892 JLINK_IsHalted()  returns FALSE (0000ms, 1038ms total)
T7764 321:993 JLINK_IsHalted()  returns FALSE (0000ms, 1038ms total)
T7764 322:094 JLINK_IsHalted()  returns FALSE (0000ms, 1038ms total)
T7764 322:195 JLINK_IsHalted()  returns FALSE (0000ms, 1038ms total)
T7764 322:297 JLINK_IsHalted()  returns FALSE (0000ms, 1038ms total)
T514C 322:398 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 8E 43  returns 0x04 (0001ms, 1039ms total)
T7764 322:399 JLINK_IsHalted()  returns FALSE (0000ms, 1039ms total)
T7764 322:501 JLINK_IsHalted()  returns FALSE (0000ms, 1039ms total)
T7764 322:602 JLINK_IsHalted()  returns FALSE (0000ms, 1039ms total)
T7764 322:703 JLINK_IsHalted()  returns FALSE (0000ms, 1039ms total)
T7764 322:804 JLINK_IsHalted()  returns FALSE (0000ms, 1039ms total)
T7764 322:906 JLINK_IsHalted()  returns FALSE (0000ms, 1039ms total)
T514C 323:007 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 8E 43  returns 0x04 (0001ms, 1040ms total)
T7764 323:008 JLINK_IsHalted()  returns FALSE (0000ms, 1040ms total)
T7764 323:109 JLINK_IsHalted()  returns FALSE (0000ms, 1040ms total)
T7764 323:210 JLINK_IsHalted()  returns FALSE (0000ms, 1040ms total)
T7764 323:311 JLINK_IsHalted()  returns FALSE (0000ms, 1040ms total)
T7764 323:413 JLINK_IsHalted()  returns FALSE (0000ms, 1040ms total)
T7764 323:515 JLINK_IsHalted()  returns FALSE (0000ms, 1040ms total)
T514C 323:616 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 8F 43  returns 0x04 (0001ms, 1041ms total)
T7764 323:617 JLINK_IsHalted()  returns FALSE (0000ms, 1041ms total)
T7764 323:718 JLINK_IsHalted()  returns FALSE (0000ms, 1041ms total)
T7764 323:820 JLINK_IsHalted()  returns FALSE (0000ms, 1041ms total)
T7764 323:921 JLINK_IsHalted()  returns FALSE (0000ms, 1041ms total)
T7764 324:022 JLINK_IsHalted()  returns FALSE (0000ms, 1041ms total)
T7764 324:123 JLINK_IsHalted()  returns FALSE (0000ms, 1041ms total)
T514C 324:224 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 8F 43  returns 0x04 (0001ms, 1042ms total)
T7764 324:225 JLINK_IsHalted()  returns FALSE (0000ms, 1042ms total)
T7764 324:326 JLINK_IsHalted()  returns FALSE (0000ms, 1042ms total)
T7764 324:428 JLINK_IsHalted()  returns FALSE (0000ms, 1042ms total)
T7764 324:529 JLINK_IsHalted()  returns FALSE (0000ms, 1042ms total)
T7764 324:630 JLINK_IsHalted()  returns FALSE (0000ms, 1042ms total)
T7764 324:732 JLINK_IsHalted()  returns FALSE (0000ms, 1042ms total)
T514C 324:833 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 8F 43  returns 0x04 (0000ms, 1042ms total)
T7764 324:834 JLINK_IsHalted()  returns FALSE (0000ms, 1042ms total)
T7764 324:936 JLINK_IsHalted()  returns FALSE (0000ms, 1042ms total)
T7764 325:037 JLINK_IsHalted()  returns FALSE (0000ms, 1042ms total)
T7764 325:138 JLINK_IsHalted()  returns FALSE (0000ms, 1042ms total)
T7764 325:239 JLINK_IsHalted()  returns FALSE (0000ms, 1042ms total)
T7764 325:340 JLINK_IsHalted()  returns FALSE (0000ms, 1042ms total)
T514C 325:442 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 8F 43  returns 0x04 (0000ms, 1042ms total)
T7764 325:443 JLINK_IsHalted()  returns FALSE (0000ms, 1042ms total)
T7764 325:544 JLINK_IsHalted()  returns FALSE (0000ms, 1042ms total)
T7764 325:645 JLINK_IsHalted()  returns FALSE (0000ms, 1042ms total)
T7764 325:747 JLINK_IsHalted()  returns FALSE (0000ms, 1042ms total)
T7764 325:848 JLINK_IsHalted()  returns FALSE (0000ms, 1042ms total)
T7764 325:949 JLINK_IsHalted()  returns FALSE (0000ms, 1042ms total)
T514C 326:050 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 90 43  returns 0x04 (0001ms, 1043ms total)
T7764 326:051 JLINK_IsHalted()  returns FALSE (0001ms, 1044ms total)
T7764 326:152 JLINK_IsHalted()  returns FALSE (0000ms, 1043ms total)
T7764 326:253 JLINK_IsHalted()  returns FALSE (0000ms, 1043ms total)
T7764 326:354 JLINK_IsHalted()  returns FALSE (0000ms, 1043ms total)
T7764 326:455 JLINK_IsHalted()  returns FALSE (0000ms, 1043ms total)
T7764 326:557 JLINK_IsHalted()  returns FALSE (0000ms, 1043ms total)
T514C 326:658 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 90 43  returns 0x04 (0001ms, 1044ms total)
T7764 326:659 JLINK_IsHalted()  returns FALSE (0001ms, 1045ms total)
T7764 326:761 JLINK_IsHalted()  returns FALSE (0000ms, 1044ms total)
T7764 326:862 JLINK_IsHalted()  returns FALSE (0000ms, 1044ms total)
T7764 326:963 JLINK_IsHalted()  returns FALSE (0000ms, 1044ms total)
T7764 327:064 JLINK_IsHalted()  returns FALSE (0000ms, 1044ms total)
T514C 327:165 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 90 43  returns 0x04 (0001ms, 1045ms total)
T7764 327:166 JLINK_IsHalted()  returns FALSE (0000ms, 1045ms total)
T7764 327:268 JLINK_IsHalted()  returns FALSE (0000ms, 1045ms total)
T7764 327:369 JLINK_IsHalted()  returns FALSE (0000ms, 1045ms total)
T7764 327:470 JLINK_IsHalted()  returns FALSE (0000ms, 1045ms total)
T7764 327:571 JLINK_IsHalted()  returns FALSE (0000ms, 1045ms total)
T7764 327:672 JLINK_IsHalted()  returns FALSE (0000ms, 1045ms total)
T514C 327:773 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 91 43  returns 0x04 (0001ms, 1046ms total)
T7764 327:774 JLINK_IsHalted()  returns FALSE (0000ms, 1046ms total)
T7764 327:875 JLINK_IsHalted()  returns FALSE (0000ms, 1046ms total)
T7764 327:976 JLINK_IsHalted()  returns FALSE (0000ms, 1046ms total)
T7764 328:078 JLINK_IsHalted()  returns FALSE (0000ms, 1046ms total)
T7764 328:179 JLINK_IsHalted()  returns FALSE (0000ms, 1046ms total)
T7764 328:280 JLINK_IsHalted()  returns FALSE (0000ms, 1046ms total)
T514C 328:381 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 91 43  returns 0x04 (0001ms, 1047ms total)
T7764 328:382 JLINK_IsHalted()  returns FALSE (0000ms, 1047ms total)
T7764 328:483 JLINK_IsHalted()  returns FALSE (0000ms, 1047ms total)
T7764 328:584 JLINK_IsHalted()  returns FALSE (0000ms, 1047ms total)
T7764 328:686 JLINK_IsHalted()  returns FALSE (0000ms, 1047ms total)
T7764 328:787 JLINK_IsHalted()  returns FALSE (0000ms, 1047ms total)
T7764 328:888 JLINK_IsHalted()  returns FALSE (0000ms, 1047ms total)
T514C 328:989 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 91 43  returns 0x04 (0001ms, 1048ms total)
T7764 328:990 JLINK_IsHalted()  returns FALSE (0000ms, 1048ms total)
T7764 329:091 JLINK_IsHalted()  returns FALSE (0000ms, 1048ms total)
T7764 329:192 JLINK_IsHalted()  returns FALSE (0000ms, 1048ms total)
T7764 329:294 JLINK_IsHalted()  returns FALSE (0000ms, 1048ms total)
T7764 329:395 JLINK_IsHalted()  returns FALSE (0000ms, 1048ms total)
T7764 329:496 JLINK_IsHalted()  returns FALSE (0000ms, 1048ms total)
T514C 329:598 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 92 43  returns 0x04 (0001ms, 1049ms total)
T7764 329:599 JLINK_IsHalted()  returns FALSE (0000ms, 1049ms total)
T7764 329:700 JLINK_IsHalted()  returns FALSE (0000ms, 1049ms total)
T7764 329:802 JLINK_IsHalted()  returns FALSE (0000ms, 1049ms total)
T7764 329:903 JLINK_IsHalted()  returns FALSE (0000ms, 1049ms total)
T7764 330:004 JLINK_IsHalted()  returns FALSE (0000ms, 1049ms total)
T7764 330:106 JLINK_IsHalted()  returns FALSE (0000ms, 1049ms total)
T514C 330:207 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 92 43  returns 0x04 (0001ms, 1050ms total)
T7764 330:208 JLINK_IsHalted()  returns FALSE (0000ms, 1050ms total)
T7764 330:309 JLINK_IsHalted()  returns FALSE (0000ms, 1050ms total)
T7764 330:410 JLINK_IsHalted()  returns FALSE (0000ms, 1050ms total)
T7764 330:511 JLINK_IsHalted()  returns FALSE (0000ms, 1050ms total)
T7764 330:613 JLINK_IsHalted()  returns FALSE (0000ms, 1050ms total)
T7764 330:714 JLINK_IsHalted()  returns FALSE (0000ms, 1050ms total)
T514C 330:815 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 92 43  returns 0x04 (0001ms, 1051ms total)
T7764 330:816 JLINK_IsHalted()  returns FALSE (0001ms, 1052ms total)
T7764 330:918 JLINK_IsHalted()  returns FALSE (0000ms, 1051ms total)
T7764 331:019 JLINK_IsHalted()  returns FALSE (0000ms, 1051ms total)
T7764 331:120 JLINK_IsHalted()  returns FALSE (0000ms, 1051ms total)
T7764 331:222 JLINK_IsHalted()  returns FALSE (0000ms, 1051ms total)
T7764 331:323 JLINK_IsHalted()  returns FALSE (0000ms, 1051ms total)
T514C 331:424 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 92 43  returns 0x04 (0000ms, 1051ms total)
T7764 331:425 JLINK_IsHalted()  returns FALSE (0000ms, 1052ms total)
T7764 331:526 JLINK_IsHalted()  returns FALSE (0000ms, 1052ms total)
T7764 331:627 JLINK_IsHalted()  returns FALSE (0000ms, 1052ms total)
T7764 331:728 JLINK_IsHalted()  returns FALSE (0000ms, 1052ms total)
T7764 331:830 JLINK_IsHalted()  returns FALSE (0000ms, 1052ms total)
T514C 331:931 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 93 43  returns 0x04 (0001ms, 1053ms total)
T7764 331:932 JLINK_IsHalted()  returns FALSE (0000ms, 1053ms total)
T7764 332:033 JLINK_IsHalted()  returns FALSE (0000ms, 1053ms total)
T7764 332:134 JLINK_IsHalted()  returns FALSE (0000ms, 1053ms total)
T7764 332:235 JLINK_IsHalted()  returns FALSE (0000ms, 1053ms total)
T7764 332:337 JLINK_IsHalted()  returns FALSE (0000ms, 1053ms total)
T7764 332:438 JLINK_IsHalted()  returns FALSE (0000ms, 1053ms total)
T514C 332:539 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 93 43  returns 0x04 (0000ms, 1053ms total)
T7764 332:540 JLINK_IsHalted()  returns FALSE (0000ms, 1053ms total)
T7764 332:641 JLINK_IsHalted()  returns FALSE (0000ms, 1053ms total)
T7764 332:742 JLINK_IsHalted()  returns FALSE (0000ms, 1053ms total)
T7764 332:844 JLINK_IsHalted()  returns FALSE (0000ms, 1053ms total)
T7764 332:945 JLINK_IsHalted()  returns FALSE (0000ms, 1053ms total)
T7764 333:046 JLINK_IsHalted()  returns FALSE (0000ms, 1053ms total)
T514C 333:147 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 93 43  returns 0x04 (0001ms, 1054ms total)
T7764 333:148 JLINK_IsHalted()  returns FALSE (0000ms, 1054ms total)
T7764 333:249 JLINK_IsHalted()  returns FALSE (0000ms, 1054ms total)
T7764 333:350 JLINK_IsHalted()  returns FALSE (0000ms, 1054ms total)
T7764 333:451 JLINK_IsHalted()  returns FALSE (0000ms, 1054ms total)
T7764 333:552 JLINK_IsHalted()  returns FALSE (0001ms, 1055ms total)
T7764 333:653 JLINK_IsHalted()  returns FALSE (0000ms, 1054ms total)
T514C 333:754 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 94 43  returns 0x04 (0000ms, 1054ms total)
T7764 333:755 JLINK_IsHalted()  returns FALSE (0000ms, 1055ms total)
T7764 333:857 JLINK_IsHalted()  returns FALSE (0000ms, 1055ms total)
T7764 333:958 JLINK_IsHalted()  returns FALSE (0000ms, 1055ms total)
T7764 334:060 JLINK_IsHalted()  returns FALSE (0000ms, 1055ms total)
T7764 334:161 JLINK_IsHalted()  returns FALSE (0000ms, 1055ms total)
T7764 334:262 JLINK_IsHalted()  returns FALSE (0000ms, 1055ms total)
T514C 334:363 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 94 43  returns 0x04 (0001ms, 1056ms total)
T7764 334:364 JLINK_IsHalted()  returns FALSE (0000ms, 1056ms total)
T7764 334:465 JLINK_IsHalted()  returns FALSE (0000ms, 1056ms total)
T7764 334:567 JLINK_IsHalted()  returns FALSE (0000ms, 1056ms total)
T7764 334:669 JLINK_IsHalted()  returns FALSE (0000ms, 1056ms total)
T7764 334:770 JLINK_IsHalted()  returns FALSE (0000ms, 1056ms total)
T7764 334:871 JLINK_IsHalted()  returns FALSE (0000ms, 1056ms total)
T514C 334:972 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 94 43  returns 0x04 (0001ms, 1057ms total)
T7764 334:973 JLINK_IsHalted()  returns FALSE (0000ms, 1057ms total)
T7764 335:074 JLINK_IsHalted()  returns FALSE (0000ms, 1057ms total)
T7764 335:176 JLINK_IsHalted()  returns FALSE (0000ms, 1057ms total)
T7764 335:277 JLINK_IsHalted()  returns FALSE (0000ms, 1057ms total)
T7764 335:378 JLINK_IsHalted()  returns FALSE (0000ms, 1057ms total)
T7764 335:479 JLINK_IsHalted()  returns FALSE (0000ms, 1057ms total)
T514C 335:580 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 95 43  returns 0x04 (0001ms, 1058ms total)
T7764 335:581 JLINK_IsHalted()  returns FALSE (0001ms, 1059ms total)
T7764 335:683 JLINK_IsHalted()  returns FALSE (0000ms, 1058ms total)
T7764 335:784 JLINK_IsHalted()  returns FALSE (0000ms, 1058ms total)
T7764 335:885 JLINK_IsHalted()  returns FALSE (0000ms, 1058ms total)
T7764 335:986 JLINK_IsHalted()  returns FALSE (0000ms, 1058ms total)
T7764 336:088 JLINK_IsHalted()  returns FALSE (0000ms, 1058ms total)
T514C 336:189 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 95 43  returns 0x04 (0001ms, 1059ms total)
T7764 336:190 JLINK_IsHalted()  returns FALSE (0000ms, 1059ms total)
T7764 336:291 JLINK_IsHalted()  returns FALSE (0000ms, 1059ms total)
T7764 336:392 JLINK_IsHalted()  returns FALSE (0000ms, 1059ms total)
T7764 336:494 JLINK_IsHalted()  returns FALSE (0000ms, 1059ms total)
T7764 336:595 JLINK_IsHalted()  returns FALSE (0000ms, 1059ms total)
T514C 336:696 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 95 43  returns 0x04 (0001ms, 1060ms total)
T7764 336:697 JLINK_IsHalted()  returns FALSE (0000ms, 1060ms total)
T7764 336:799 JLINK_IsHalted()  returns FALSE (0001ms, 1061ms total)
T7764 336:900 JLINK_IsHalted()  returns FALSE (0001ms, 1061ms total)
T7764 337:001 JLINK_IsHalted()  returns FALSE (0001ms, 1061ms total)
T7764 337:102 JLINK_IsHalted()  returns FALSE (0001ms, 1061ms total)
T7764 337:204 JLINK_IsHalted()  returns FALSE (0000ms, 1060ms total)
T514C 337:305 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 95 43  returns 0x04 (0001ms, 1061ms total)
T7764 337:306 JLINK_IsHalted()  returns FALSE (0001ms, 1062ms total)
T7764 337:407 JLINK_IsHalted()  returns FALSE (0000ms, 1061ms total)
T7764 337:509 JLINK_IsHalted()  returns FALSE (0000ms, 1061ms total)
T7764 337:610 JLINK_IsHalted()  returns FALSE (0000ms, 1061ms total)
T7764 337:711 JLINK_IsHalted()  returns FALSE (0000ms, 1061ms total)
T7764 337:812 JLINK_IsHalted()  returns FALSE (0000ms, 1061ms total)
T514C 337:913 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 96 43  returns 0x04 (0000ms, 1061ms total)
T7764 337:914 JLINK_IsHalted()  returns FALSE (0000ms, 1062ms total)
T7764 338:015 JLINK_IsHalted()  returns FALSE (0000ms, 1062ms total)
T7764 338:117 JLINK_IsHalted()  returns FALSE (0000ms, 1062ms total)
T7764 338:218 JLINK_IsHalted()  returns FALSE (0000ms, 1062ms total)
T7764 338:319 JLINK_IsHalted()  returns FALSE (0000ms, 1062ms total)
T7764 338:420 JLINK_IsHalted()  returns FALSE (0001ms, 1063ms total)
T514C 338:521 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 96 43  returns 0x04 (0001ms, 1063ms total)
T7764 338:522 JLINK_IsHalted()  returns FALSE (0001ms, 1064ms total)
T7764 338:623 JLINK_IsHalted()  returns FALSE (0000ms, 1063ms total)
T7764 338:724 JLINK_IsHalted()  returns FALSE (0000ms, 1063ms total)
T7764 338:826 JLINK_IsHalted()  returns FALSE (0000ms, 1063ms total)
T7764 338:927 JLINK_IsHalted()  returns FALSE (0000ms, 1063ms total)
T7764 339:028 JLINK_IsHalted()  returns FALSE (0000ms, 1063ms total)
T514C 339:130 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 96 43  returns 0x04 (0000ms, 1063ms total)
T7764 339:131 JLINK_IsHalted()  returns FALSE (0000ms, 1064ms total)
T7764 339:232 JLINK_IsHalted()  returns FALSE (0000ms, 1064ms total)
T7764 339:333 JLINK_IsHalted()  returns FALSE (0000ms, 1064ms total)
T7764 339:434 JLINK_IsHalted()  returns FALSE (0000ms, 1064ms total)
T7764 339:535 JLINK_IsHalted()  returns FALSE (0000ms, 1064ms total)
T7764 339:636 JLINK_IsHalted()  returns FALSE (0000ms, 1064ms total)
T514C 339:739 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 97 43  returns 0x04 (0001ms, 1065ms total)
T7764 339:740 JLINK_IsHalted()  returns FALSE (0000ms, 1065ms total)
T7764 339:841 JLINK_IsHalted()  returns FALSE (0000ms, 1065ms total)
T7764 339:942 JLINK_IsHalted()  returns FALSE (0000ms, 1065ms total)
T7764 340:043 JLINK_IsHalted()  returns FALSE (0000ms, 1065ms total)
T7764 340:144 JLINK_IsHalted()  returns FALSE (0000ms, 1065ms total)
T7764 340:245 JLINK_IsHalted()  returns FALSE (0000ms, 1065ms total)
T514C 340:346 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 97 43  returns 0x04 (0001ms, 1066ms total)
T7764 340:347 JLINK_IsHalted()  returns FALSE (0001ms, 1067ms total)
T7764 340:449 JLINK_IsHalted()  returns FALSE (0000ms, 1066ms total)
T7764 340:550 JLINK_IsHalted()  returns FALSE (0001ms, 1067ms total)
T7764 340:651 JLINK_IsHalted()  returns FALSE (0001ms, 1067ms total)
T7764 340:752 JLINK_IsHalted()  returns FALSE (0000ms, 1066ms total)
T7764 340:854 JLINK_IsHalted()  returns FALSE (0000ms, 1066ms total)
T514C 340:955 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 97 43  returns 0x04 (0001ms, 1067ms total)
T7764 340:956 JLINK_IsHalted()  returns FALSE (0001ms, 1068ms total)
T7764 341:058 JLINK_IsHalted()  returns FALSE (0000ms, 1067ms total)
T7764 341:159 JLINK_IsHalted()  returns FALSE (0000ms, 1067ms total)
T7764 341:260 JLINK_IsHalted()  returns FALSE (0000ms, 1067ms total)
T7764 341:361 JLINK_IsHalted()  returns FALSE (0000ms, 1067ms total)
T7764 341:462 JLINK_IsHalted()  returns FALSE (0000ms, 1067ms total)
T514C 341:563 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 98 43  returns 0x04 (0001ms, 1068ms total)
T7764 341:564 JLINK_IsHalted()  returns FALSE (0000ms, 1068ms total)
T7764 341:666 JLINK_IsHalted()  returns FALSE (0000ms, 1068ms total)
T7764 341:767 JLINK_IsHalted()  returns FALSE (0000ms, 1068ms total)
T7764 341:869 JLINK_IsHalted()  returns FALSE (0000ms, 1068ms total)
T7764 341:970 JLINK_IsHalted()  returns FALSE (0000ms, 1068ms total)
T514C 342:071 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 98 43  returns 0x04 (0001ms, 1069ms total)
T7764 342:072 JLINK_IsHalted()  returns FALSE (0000ms, 1069ms total)
T7764 342:174 JLINK_IsHalted()  returns FALSE (0000ms, 1069ms total)
T7764 342:275 JLINK_IsHalted()  returns FALSE (0000ms, 1069ms total)
T7764 342:376 JLINK_IsHalted()  returns FALSE (0000ms, 1069ms total)
T7764 342:476 JLINK_IsHalted()  returns FALSE (0000ms, 1069ms total)
T7764 342:578 JLINK_IsHalted()  returns FALSE (0000ms, 1069ms total)
T514C 342:679 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 98 43  returns 0x04 (0001ms, 1070ms total)
T7764 342:680 JLINK_IsHalted()  returns FALSE (0000ms, 1070ms total)
T7764 342:781 JLINK_IsHalted()  returns FALSE (0000ms, 1070ms total)
T7764 342:883 JLINK_IsHalted()  returns FALSE (0000ms, 1070ms total)
T7764 342:984 JLINK_IsHalted()  returns FALSE (0000ms, 1070ms total)
T7764 343:086 JLINK_IsHalted()  returns FALSE (0000ms, 1070ms total)
T7764 343:187 JLINK_IsHalted()  returns FALSE (0000ms, 1070ms total)
T514C 343:288 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 98 43  returns 0x04 (0001ms, 1071ms total)
T7764 343:289 JLINK_IsHalted()  returns FALSE (0000ms, 1071ms total)
T7764 343:390 JLINK_IsHalted()  returns FALSE (0000ms, 1071ms total)
T7764 343:491 JLINK_IsHalted()  returns FALSE (0000ms, 1071ms total)
T7764 343:593 JLINK_IsHalted()  returns FALSE (0000ms, 1071ms total)
T7764 343:694 JLINK_IsHalted()  returns FALSE (0000ms, 1071ms total)
T7764 343:795 JLINK_IsHalted()  returns FALSE (0000ms, 1071ms total)
T514C 343:896 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 99 43  returns 0x04 (0001ms, 1072ms total)
T7764 343:897 JLINK_IsHalted()  returns FALSE (0000ms, 1072ms total)
T7764 343:998 JLINK_IsHalted()  returns FALSE (0000ms, 1072ms total)
T7764 344:099 JLINK_IsHalted()  returns FALSE (0000ms, 1072ms total)
T7764 344:200 JLINK_IsHalted()  returns FALSE (0000ms, 1072ms total)
T7764 344:301 JLINK_IsHalted()  returns FALSE (0000ms, 1072ms total)
T7764 344:402 JLINK_IsHalted()  returns FALSE (0000ms, 1072ms total)
T514C 344:503 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 99 43  returns 0x04 (0000ms, 1072ms total)
T7764 344:504 JLINK_IsHalted()  returns FALSE (0000ms, 1072ms total)
T7764 344:606 JLINK_IsHalted()  returns FALSE (0000ms, 1072ms total)
T7764 344:707 JLINK_IsHalted()  returns FALSE (0000ms, 1072ms total)
T7764 344:809 JLINK_IsHalted()  returns FALSE (0000ms, 1072ms total)
T7764 344:910 JLINK_IsHalted()  returns FALSE (0000ms, 1072ms total)
T7764 345:011 JLINK_IsHalted()  returns FALSE (0000ms, 1072ms total)
T514C 345:112 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 99 43  returns 0x04 (0001ms, 1073ms total)
T7764 345:113 JLINK_IsHalted()  returns FALSE (0000ms, 1073ms total)
T7764 345:214 JLINK_IsHalted()  returns FALSE (0000ms, 1073ms total)
T7764 345:315 JLINK_IsHalted()  returns FALSE (0000ms, 1073ms total)
T7764 345:416 JLINK_IsHalted()  returns FALSE (0000ms, 1073ms total)
T7764 345:517 JLINK_IsHalted()  returns FALSE (0000ms, 1073ms total)
T7764 345:618 JLINK_IsHalted()  returns FALSE (0000ms, 1073ms total)
T514C 345:719 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 9A 43  returns 0x04 (0001ms, 1074ms total)
T7764 345:720 JLINK_IsHalted()  returns FALSE (0000ms, 1074ms total)
T7764 345:822 JLINK_IsHalted()  returns FALSE (0000ms, 1074ms total)
T7764 345:923 JLINK_IsHalted()  returns FALSE (0000ms, 1074ms total)
T7764 346:025 JLINK_IsHalted()  returns FALSE (0000ms, 1074ms total)
T7764 346:126 JLINK_IsHalted()  returns FALSE (0000ms, 1074ms total)
T514C 346:227 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 9A 43  returns 0x04 (0001ms, 1075ms total)
T7764 346:228 JLINK_IsHalted()  returns FALSE (0000ms, 1075ms total)
T7764 346:329 JLINK_IsHalted()  returns FALSE (0000ms, 1075ms total)
T7764 346:431 JLINK_IsHalted()  returns FALSE (0000ms, 1075ms total)
T7764 346:532 JLINK_IsHalted()  returns FALSE (0000ms, 1075ms total)
T7764 346:633 JLINK_IsHalted()  returns FALSE (0000ms, 1075ms total)
T7764 346:734 JLINK_IsHalted()  returns FALSE (0001ms, 1076ms total)
T514C 346:836 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 9A 43  returns 0x04 (0000ms, 1075ms total)
T7764 346:837 JLINK_IsHalted()  returns FALSE (0000ms, 1075ms total)
T7764 346:938 JLINK_IsHalted()  returns FALSE (0000ms, 1075ms total)
T7764 347:039 JLINK_IsHalted()  returns FALSE (0000ms, 1075ms total)
T7764 347:140 JLINK_IsHalted()  returns FALSE (0000ms, 1075ms total)
T7764 347:241 JLINK_IsHalted()  returns FALSE (0000ms, 1075ms total)
T7764 347:343 JLINK_IsHalted()  returns FALSE (0000ms, 1075ms total)
T514C 347:445 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 9A 43  returns 0x04 (0001ms, 1076ms total)
T7764 347:446 JLINK_IsHalted()  returns FALSE (0000ms, 1076ms total)
T7764 347:547 JLINK_IsHalted()  returns FALSE (0000ms, 1076ms total)
T7764 347:647 JLINK_IsHalted()  returns FALSE (0000ms, 1076ms total)
T7764 347:749 JLINK_IsHalted()  returns FALSE (0000ms, 1076ms total)
T7764 347:850 JLINK_IsHalted()  returns FALSE (0000ms, 1076ms total)
T7764 347:951 JLINK_IsHalted()  returns FALSE (0000ms, 1076ms total)
T514C 348:052 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 9B 43  returns 0x04 (0000ms, 1076ms total)
T7764 348:053 JLINK_IsHalted()  returns FALSE (0000ms, 1076ms total)
T7764 348:155 JLINK_IsHalted()  returns FALSE (0000ms, 1076ms total)
T7764 348:256 JLINK_IsHalted()  returns FALSE (0000ms, 1076ms total)
T7764 348:357 JLINK_IsHalted()  returns FALSE (0000ms, 1076ms total)
T7764 348:458 JLINK_IsHalted()  returns FALSE (0000ms, 1076ms total)
T7764 348:560 JLINK_IsHalted()  returns FALSE (0000ms, 1076ms total)
T514C 348:661 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 9B 43  returns 0x04 (0000ms, 1076ms total)
T7764 348:662 JLINK_IsHalted()  returns FALSE (0000ms, 1076ms total)
T7764 348:763 JLINK_IsHalted()  returns FALSE (0000ms, 1076ms total)
T7764 348:864 JLINK_IsHalted()  returns FALSE (0000ms, 1076ms total)
T7764 348:965 JLINK_IsHalted()  returns FALSE (0000ms, 1076ms total)
T7764 349:066 JLINK_IsHalted()  returns FALSE (0000ms, 1076ms total)
T7764 349:167 JLINK_IsHalted()  returns FALSE (0000ms, 1076ms total)
T514C 349:268 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 9B 43  returns 0x04 (0000ms, 1076ms total)
T7764 349:269 JLINK_IsHalted()  returns FALSE (0000ms, 1076ms total)
T7764 349:370 JLINK_IsHalted()  returns FALSE (0000ms, 1076ms total)
T7764 349:471 JLINK_IsHalted()  returns FALSE (0000ms, 1076ms total)
T7764 349:572 JLINK_IsHalted()  returns FALSE (0000ms, 1076ms total)
T7764 349:673 JLINK_IsHalted()  returns FALSE (0000ms, 1076ms total)
T7764 349:774 JLINK_IsHalted()  returns FALSE (0000ms, 1076ms total)
T514C 349:875 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 9C 43  returns 0x04 (0001ms, 1077ms total)
T7764 349:876 JLINK_IsHalted()  returns FALSE (0000ms, 1077ms total)
T7764 349:977 JLINK_IsHalted()  returns FALSE (0000ms, 1077ms total)
T7764 350:078 JLINK_IsHalted()  returns FALSE (0000ms, 1077ms total)
T7764 350:179 JLINK_IsHalted()  returns FALSE (0000ms, 1077ms total)
T7764 350:280 JLINK_IsHalted()  returns FALSE (0000ms, 1077ms total)
T514C 350:381 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 9C 43  returns 0x04 (0000ms, 1077ms total)
T7764 350:382 JLINK_IsHalted()  returns FALSE (0000ms, 1077ms total)
T7764 350:483 JLINK_IsHalted()  returns FALSE (0000ms, 1077ms total)
T7764 350:584 JLINK_IsHalted()  returns FALSE (0000ms, 1077ms total)
T7764 350:686 JLINK_IsHalted()  returns FALSE (0000ms, 1077ms total)
T7764 350:787 JLINK_IsHalted()  returns FALSE (0000ms, 1077ms total)
T7764 350:888 JLINK_IsHalted()  returns FALSE (0000ms, 1077ms total)
T514C 350:989 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 9C 43  returns 0x04 (0000ms, 1077ms total)
T7764 350:990 JLINK_IsHalted()  returns FALSE (0000ms, 1077ms total)
T7764 351:092 JLINK_IsHalted()  returns FALSE (0000ms, 1077ms total)
T7764 351:193 JLINK_IsHalted()  returns FALSE (0000ms, 1077ms total)
T7764 351:294 JLINK_IsHalted()  returns FALSE (0000ms, 1077ms total)
T7764 351:395 JLINK_IsHalted()  returns FALSE (0000ms, 1077ms total)
T7764 351:497 JLINK_IsHalted()  returns FALSE (0000ms, 1077ms total)
T514C 351:598 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 9D 43  returns 0x04 (0001ms, 1078ms total)
T7764 351:599 JLINK_IsHalted()  returns FALSE (0000ms, 1078ms total)
T7764 351:700 JLINK_IsHalted()  returns FALSE (0000ms, 1078ms total)
T7764 351:801 JLINK_IsHalted()  returns FALSE (0000ms, 1078ms total)
T7764 351:902 JLINK_IsHalted()  returns FALSE (0000ms, 1078ms total)
T7764 352:003 JLINK_IsHalted()  returns FALSE (0000ms, 1078ms total)
T7764 352:104 JLINK_IsHalted()  returns FALSE (0000ms, 1078ms total)
T514C 352:205 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 9D 43  returns 0x04 (0001ms, 1079ms total)
T7764 352:206 JLINK_IsHalted()  returns FALSE (0001ms, 1080ms total)
T7764 352:308 JLINK_IsHalted()  returns FALSE (0000ms, 1079ms total)
T7764 352:409 JLINK_IsHalted()  returns FALSE (0000ms, 1079ms total)
T7764 352:511 JLINK_IsHalted()  returns FALSE (0000ms, 1079ms total)
T7764 352:611 JLINK_IsHalted()  returns FALSE (0000ms, 1079ms total)
T7764 352:713 JLINK_IsHalted()  returns FALSE (0000ms, 1079ms total)
T514C 352:814 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 9D 43  returns 0x04 (0000ms, 1079ms total)
T7764 352:815 JLINK_IsHalted()  returns FALSE (0000ms, 1079ms total)
T7764 352:916 JLINK_IsHalted()  returns FALSE (0000ms, 1079ms total)
T7764 353:018 JLINK_IsHalted()  returns FALSE (0000ms, 1079ms total)
T7764 353:119 JLINK_IsHalted()  returns FALSE (0000ms, 1079ms total)
T7764 353:220 JLINK_IsHalted()  returns FALSE (0000ms, 1079ms total)
T514C 353:321 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 9D 43  returns 0x04 (0000ms, 1079ms total)
T7764 353:322 JLINK_IsHalted()  returns FALSE (0000ms, 1079ms total)
T7764 353:423 JLINK_IsHalted()  returns FALSE (0000ms, 1079ms total)
T7764 353:524 JLINK_IsHalted()  returns FALSE (0000ms, 1079ms total)
T7764 353:625 JLINK_IsHalted()  returns FALSE (0000ms, 1079ms total)
T7764 353:725 JLINK_IsHalted()  returns FALSE (0000ms, 1079ms total)
T7764 353:826 JLINK_IsHalted()  returns FALSE (0000ms, 1079ms total)
T514C 353:927 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 9E 43  returns 0x04 (0000ms, 1079ms total)
T7764 353:928 JLINK_IsHalted()  returns FALSE (0000ms, 1079ms total)
T7764 354:030 JLINK_IsHalted()  returns FALSE (0000ms, 1079ms total)
T7764 354:131 JLINK_IsHalted()  returns FALSE (0000ms, 1079ms total)
T7764 354:232 JLINK_IsHalted()  returns FALSE (0000ms, 1079ms total)
T7764 354:333 JLINK_IsHalted()  returns FALSE (0000ms, 1079ms total)
T7764 354:434 JLINK_IsHalted()  returns FALSE (0000ms, 1079ms total)
T514C 354:535 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 9E 43  returns 0x04 (0001ms, 1080ms total)
T7764 354:536 JLINK_IsHalted()  returns FALSE (0000ms, 1080ms total)
T7764 354:637 JLINK_IsHalted()  returns FALSE (0000ms, 1080ms total)
T7764 354:738 JLINK_IsHalted()  returns FALSE (0000ms, 1080ms total)
T7764 354:839 JLINK_IsHalted()  returns FALSE (0000ms, 1080ms total)
T7764 354:941 JLINK_IsHalted()  returns FALSE (0000ms, 1080ms total)
T7764 355:042 JLINK_IsHalted()  returns FALSE (0000ms, 1080ms total)
T514C 355:143 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 9E 43  returns 0x04 (0000ms, 1080ms total)
T7764 355:144 JLINK_IsHalted()  returns FALSE (0000ms, 1080ms total)
T7764 355:246 JLINK_IsHalted()  returns FALSE (0000ms, 1080ms total)
T7764 355:347 JLINK_IsHalted()  returns FALSE (0000ms, 1080ms total)
T7764 355:448 JLINK_IsHalted()  returns FALSE (0000ms, 1080ms total)
T7764 355:549 JLINK_IsHalted()  returns FALSE (0000ms, 1080ms total)
T7764 355:650 JLINK_IsHalted()  returns FALSE (0001ms, 1081ms total)
T514C 355:752 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 9F 43  returns 0x04 (0001ms, 1081ms total)
T7764 355:753 JLINK_IsHalted()  returns FALSE (0001ms, 1082ms total)
T7764 355:855 JLINK_IsHalted()  returns FALSE (0000ms, 1081ms total)
T7764 355:956 JLINK_IsHalted()  returns FALSE (0000ms, 1081ms total)
T7764 356:057 JLINK_IsHalted()  returns FALSE (0000ms, 1081ms total)
T7764 356:159 JLINK_IsHalted()  returns FALSE (0000ms, 1081ms total)
T514C 356:260 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 9F 43  returns 0x04 (0000ms, 1081ms total)
T7764 356:261 JLINK_IsHalted()  returns FALSE (0000ms, 1081ms total)
T7764 356:362 JLINK_IsHalted()  returns FALSE (0000ms, 1081ms total)
T7764 356:463 JLINK_IsHalted()  returns FALSE (0000ms, 1081ms total)
T7764 356:564 JLINK_IsHalted()  returns FALSE (0000ms, 1081ms total)
T7764 356:665 JLINK_IsHalted()  returns FALSE (0000ms, 1081ms total)
T7764 356:767 JLINK_IsHalted()  returns FALSE (0000ms, 1081ms total)
T514C 356:869 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 9F 43  returns 0x04 (0001ms, 1082ms total)
T7764 356:870 JLINK_IsHalted()  returns FALSE (0000ms, 1082ms total)
T7764 356:971 JLINK_IsHalted()  returns FALSE (0000ms, 1082ms total)
T7764 357:072 JLINK_IsHalted()  returns FALSE (0000ms, 1082ms total)
T7764 357:173 JLINK_IsHalted()  returns FALSE (0000ms, 1082ms total)
T7764 357:274 JLINK_IsHalted()  returns FALSE (0000ms, 1082ms total)
T7764 357:375 JLINK_IsHalted()  returns FALSE (0000ms, 1082ms total)
T514C 357:476 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 9F 43  returns 0x04 (0000ms, 1082ms total)
T7764 357:477 JLINK_IsHalted()  returns FALSE (0000ms, 1082ms total)
T7764 357:578 JLINK_IsHalted()  returns FALSE (0000ms, 1082ms total)
T7764 357:679 JLINK_IsHalted()  returns FALSE (0000ms, 1082ms total)
T7764 357:780 JLINK_IsHalted()  returns FALSE (0000ms, 1082ms total)
T7764 357:881 JLINK_IsHalted()  returns FALSE (0000ms, 1082ms total)
T7764 357:982 JLINK_IsHalted()  returns FALSE (0000ms, 1082ms total)
T514C 358:083 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 A0 43  returns 0x04 (0000ms, 1082ms total)
T7764 358:084 JLINK_IsHalted()  returns FALSE (0000ms, 1082ms total)
T7764 358:185 JLINK_IsHalted()  returns FALSE (0000ms, 1082ms total)
T7764 358:286 JLINK_IsHalted()  returns FALSE (0000ms, 1082ms total)
T7764 358:388 JLINK_IsHalted()  returns FALSE (0000ms, 1082ms total)
T7764 358:489 JLINK_IsHalted()  returns FALSE (0000ms, 1082ms total)
T7764 358:590 JLINK_IsHalted()  returns FALSE (0000ms, 1082ms total)
T514C 358:691 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 A0 43  returns 0x04 (0001ms, 1083ms total)
T7764 358:692 JLINK_IsHalted()  returns FALSE (0000ms, 1083ms total)
T7764 358:793 JLINK_IsHalted()  returns FALSE (0000ms, 1083ms total)
T7764 358:894 JLINK_IsHalted()  returns FALSE (0000ms, 1083ms total)
T7764 358:995 JLINK_IsHalted()  returns FALSE (0000ms, 1083ms total)
T7764 359:096 JLINK_IsHalted()  returns FALSE (0000ms, 1083ms total)
T7764 359:198 JLINK_IsHalted()  returns FALSE (0000ms, 1083ms total)
T514C 359:299 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 A0 43  returns 0x04 (0001ms, 1084ms total)
T7764 359:300 JLINK_IsHalted()  returns FALSE (0001ms, 1085ms total)
T7764 359:402 JLINK_IsHalted()  returns FALSE (0000ms, 1084ms total)
T7764 359:504 JLINK_IsHalted()  returns FALSE (0000ms, 1084ms total)
T7764 359:605 JLINK_IsHalted()  returns FALSE (0000ms, 1084ms total)
T7764 359:706 JLINK_IsHalted()  returns FALSE (0000ms, 1084ms total)
T7764 359:807 JLINK_IsHalted()  returns FALSE (0000ms, 1084ms total)
T514C 359:908 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 A1 43  returns 0x04 (0000ms, 1084ms total)
T7764 359:909 JLINK_IsHalted()  returns FALSE (0001ms, 1086ms total)
T7764 360:011 JLINK_IsHalted()  returns FALSE (0000ms, 1085ms total)
T7764 360:112 JLINK_IsHalted()  returns FALSE (0000ms, 1085ms total)
T7764 360:213 JLINK_IsHalted()  returns FALSE (0000ms, 1085ms total)
T7764 360:314 JLINK_IsHalted()  returns FALSE (0000ms, 1085ms total)
T514C 360:416 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 A1 43  returns 0x04 (0001ms, 1086ms total)
T7764 360:417 JLINK_IsHalted()  returns FALSE (0000ms, 1086ms total)
T7764 360:518 JLINK_IsHalted()  returns FALSE (0000ms, 1086ms total)
T7764 360:619 JLINK_IsHalted()  returns FALSE (0000ms, 1086ms total)
T7764 360:720 JLINK_IsHalted()  returns FALSE (0000ms, 1086ms total)
T7764 360:821 JLINK_IsHalted()  returns FALSE (0000ms, 1086ms total)
T7764 360:922 JLINK_IsHalted()  returns FALSE (0000ms, 1086ms total)
T514C 361:023 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 A1 43  returns 0x04 (0000ms, 1086ms total)
T7764 361:024 JLINK_IsHalted()  returns FALSE (0000ms, 1086ms total)
T7764 361:125 JLINK_IsHalted()  returns FALSE (0000ms, 1086ms total)
T7764 361:226 JLINK_IsHalted()  returns FALSE (0000ms, 1086ms total)
T7764 361:327 JLINK_IsHalted()  returns FALSE (0000ms, 1086ms total)
T7764 361:428 JLINK_IsHalted()  returns FALSE (0000ms, 1086ms total)
T7764 361:529 JLINK_IsHalted()  returns FALSE (0000ms, 1086ms total)
T514C 361:631 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 A2 43  returns 0x04 (0000ms, 1086ms total)
T7764 361:632 JLINK_IsHalted()  returns FALSE (0000ms, 1086ms total)
T7764 361:733 JLINK_IsHalted()  returns FALSE (0000ms, 1086ms total)
T7764 361:834 JLINK_IsHalted()  returns FALSE (0000ms, 1086ms total)
T7764 361:936 JLINK_IsHalted()  returns FALSE (0000ms, 1086ms total)
T7764 362:037 JLINK_IsHalted()  returns FALSE (0000ms, 1086ms total)
T7764 362:138 JLINK_IsHalted()  returns FALSE (0000ms, 1086ms total)
T514C 362:240 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 A2 43  returns 0x04 (0001ms, 1087ms total)
T7764 362:241 JLINK_IsHalted()  returns FALSE (0000ms, 1087ms total)
T7764 362:342 JLINK_IsHalted()  returns FALSE (0000ms, 1087ms total)
T7764 362:443 JLINK_IsHalted()  returns FALSE (0000ms, 1087ms total)
T7764 362:544 JLINK_IsHalted()  returns FALSE (0000ms, 1087ms total)
T7764 362:645 JLINK_IsHalted()  returns FALSE (0000ms, 1087ms total)
T7764 362:746 JLINK_IsHalted()  returns FALSE (0000ms, 1087ms total)
T514C 362:847 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 A2 43  returns 0x04 (0001ms, 1088ms total)
T7764 362:848 JLINK_IsHalted()  returns FALSE (0001ms, 1089ms total)
T7764 362:950 JLINK_IsHalted()  returns FALSE (0000ms, 1088ms total)
T7764 363:051 JLINK_IsHalted()  returns FALSE (0000ms, 1088ms total)
T7764 363:152 JLINK_IsHalted()  returns FALSE (0000ms, 1088ms total)
T7764 363:253 JLINK_IsHalted()  returns FALSE (0000ms, 1088ms total)
T7764 363:355 JLINK_IsHalted()  returns FALSE (0000ms, 1088ms total)
T514C 363:456 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 A2 43  returns 0x04 (0001ms, 1089ms total)
T7764 363:457 JLINK_IsHalted()  returns FALSE (0001ms, 1090ms total)
T7764 363:558 JLINK_IsHalted()  returns FALSE (0000ms, 1089ms total)
T7764 363:660 JLINK_IsHalted()  returns FALSE (0000ms, 1089ms total)
T7764 363:761 JLINK_IsHalted()  returns FALSE (0000ms, 1089ms total)
T7764 363:862 JLINK_IsHalted()  returns FALSE (0000ms, 1089ms total)
T7764 363:963 JLINK_IsHalted()  returns FALSE (0000ms, 1089ms total)
T514C 364:065 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 A3 43  returns 0x04 (0001ms, 1090ms total)
T7764 364:066 JLINK_IsHalted()  returns FALSE (0001ms, 1091ms total)
T7764 364:168 JLINK_IsHalted()  returns FALSE (0000ms, 1090ms total)
T7764 364:269 JLINK_IsHalted()  returns FALSE (0000ms, 1090ms total)
T7764 364:371 JLINK_IsHalted()  returns FALSE (0000ms, 1090ms total)
T7764 364:472 JLINK_IsHalted()  returns FALSE (0000ms, 1090ms total)
T7764 364:573 JLINK_IsHalted()  returns FALSE (0000ms, 1090ms total)
T514C 364:674 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 A3 43  returns 0x04 (0001ms, 1091ms total)
T7764 364:675 JLINK_IsHalted()  returns FALSE (0001ms, 1092ms total)
T7764 364:777 JLINK_IsHalted()  returns FALSE (0000ms, 1091ms total)
T7764 364:878 JLINK_IsHalted()  returns FALSE (0000ms, 1091ms total)
T7764 364:980 JLINK_IsHalted()  returns FALSE (0000ms, 1091ms total)
T7764 365:081 JLINK_IsHalted()  returns FALSE (0000ms, 1091ms total)
T7764 365:183 JLINK_IsHalted()  returns FALSE (0000ms, 1091ms total)
T514C 365:284 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 A3 43  returns 0x04 (0001ms, 1092ms total)
T7764 365:285 JLINK_IsHalted()  returns FALSE (0000ms, 1092ms total)
T7764 365:386 JLINK_IsHalted()  returns FALSE (0000ms, 1092ms total)
T7764 365:487 JLINK_IsHalted()  returns FALSE (0000ms, 1092ms total)
T7764 365:589 JLINK_IsHalted()  returns FALSE (0000ms, 1092ms total)
T7764 365:690 JLINK_IsHalted()  returns FALSE (0000ms, 1092ms total)
T7764 365:791 JLINK_IsHalted()  returns FALSE (0000ms, 1092ms total)
T514C 365:893 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 A4 43  returns 0x04 (0001ms, 1093ms total)
T7764 365:894 JLINK_IsHalted()  returns FALSE (0000ms, 1093ms total)
T7764 365:995 JLINK_IsHalted()  returns FALSE (0000ms, 1093ms total)
T7764 366:096 JLINK_IsHalted()  returns FALSE (0000ms, 1093ms total)
T7764 366:197 JLINK_IsHalted()  returns FALSE (0000ms, 1093ms total)
T7764 366:299 JLINK_IsHalted()  returns FALSE (0000ms, 1093ms total)
T7764 366:400 JLINK_IsHalted()  returns FALSE (0000ms, 1093ms total)
T514C 366:501 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 A4 43  returns 0x04 (0000ms, 1093ms total)
T7764 366:502 JLINK_IsHalted()  returns FALSE (0000ms, 1093ms total)
T7764 366:603 JLINK_IsHalted()  returns FALSE (0000ms, 1093ms total)
T7764 366:704 JLINK_IsHalted()  returns FALSE (0000ms, 1093ms total)
T7764 366:805 JLINK_IsHalted()  returns FALSE (0000ms, 1093ms total)
T7764 366:907 JLINK_IsHalted()  returns FALSE (0000ms, 1093ms total)
T514C 367:008 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 A4 43  returns 0x04 (0001ms, 1094ms total)
T7764 367:009 JLINK_IsHalted()  returns FALSE (0000ms, 1094ms total)
T7764 367:111 JLINK_IsHalted()  returns FALSE (0000ms, 1094ms total)
T7764 367:212 JLINK_IsHalted()  returns FALSE (0000ms, 1094ms total)
T7764 367:313 JLINK_IsHalted()  returns FALSE (0000ms, 1094ms total)
T7764 367:414 JLINK_IsHalted()  returns FALSE (0000ms, 1094ms total)
T7764 367:516 JLINK_IsHalted()  returns FALSE (0000ms, 1094ms total)
T514C 367:617 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 A5 43  returns 0x04 (0000ms, 1094ms total)
T7764 367:618 JLINK_IsHalted()  returns FALSE (0000ms, 1094ms total)
T7764 367:719 JLINK_IsHalted()  returns FALSE (0000ms, 1094ms total)
T7764 367:819 JLINK_IsHalted()  returns FALSE (0000ms, 1094ms total)
T7764 367:920 JLINK_IsHalted()  returns FALSE (0000ms, 1094ms total)
T7764 368:022 JLINK_IsHalted()  returns FALSE (0000ms, 1094ms total)
T7764 368:123 JLINK_IsHalted()  returns FALSE (0000ms, 1094ms total)
T514C 368:224 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 A5 43  returns 0x04 (0001ms, 1095ms total)
T7764 368:225 JLINK_IsHalted()  returns FALSE (0000ms, 1095ms total)
T7764 368:326 JLINK_IsHalted()  returns FALSE (0000ms, 1095ms total)
T7764 368:428 JLINK_IsHalted()  returns FALSE (0000ms, 1095ms total)
T7764 368:529 JLINK_IsHalted()  returns FALSE (0000ms, 1095ms total)
T7764 368:630 JLINK_IsHalted()  returns FALSE (0000ms, 1095ms total)
T7764 368:732 JLINK_IsHalted()  returns FALSE (0000ms, 1095ms total)
T514C 368:833 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 A5 43  returns 0x04 (0000ms, 1095ms total)
T7764 368:834 JLINK_IsHalted()  returns FALSE (0000ms, 1095ms total)
T7764 368:935 JLINK_IsHalted()  returns FALSE (0000ms, 1095ms total)
T7764 369:037 JLINK_IsHalted()  returns FALSE (0000ms, 1095ms total)
T7764 369:138 JLINK_IsHalted()  returns FALSE (0000ms, 1095ms total)
T7764 369:239 JLINK_IsHalted()  returns FALSE (0000ms, 1095ms total)
T7764 369:341 JLINK_IsHalted()  returns FALSE (0000ms, 1095ms total)
T514C 369:442 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 A5 43  returns 0x04 (0000ms, 1095ms total)
T7764 369:443 JLINK_IsHalted()  returns FALSE (0000ms, 1095ms total)
T7764 369:544 JLINK_IsHalted()  returns FALSE (0000ms, 1095ms total)
T7764 369:645 JLINK_IsHalted()  returns FALSE (0000ms, 1095ms total)
T7764 369:747 JLINK_IsHalted()  returns FALSE (0000ms, 1095ms total)
T7764 369:848 JLINK_IsHalted()  returns FALSE (0000ms, 1095ms total)
T7764 369:949 JLINK_IsHalted()  returns FALSE (0000ms, 1095ms total)
T514C 370:051 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 A6 43  returns 0x04 (0001ms, 1096ms total)
T7764 370:052 JLINK_IsHalted()  returns FALSE (0000ms, 1096ms total)
T7764 370:153 JLINK_IsHalted()  returns FALSE (0001ms, 1097ms total)
T7764 370:255 JLINK_IsHalted()  returns FALSE (0000ms, 1096ms total)
T7764 370:356 JLINK_IsHalted()  returns FALSE (0000ms, 1096ms total)
T7764 370:457 JLINK_IsHalted()  returns FALSE (0000ms, 1096ms total)
T7764 370:558 JLINK_IsHalted()  returns FALSE (0000ms, 1096ms total)
T514C 370:660 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 A6 43  returns 0x04 (0001ms, 1097ms total)
T7764 370:661 JLINK_IsHalted()  returns FALSE (0000ms, 1097ms total)
T7764 370:762 JLINK_IsHalted()  returns FALSE (0000ms, 1097ms total)
T7764 370:863 JLINK_IsHalted()  returns FALSE (0000ms, 1097ms total)
T7764 370:964 JLINK_IsHalted()  returns FALSE (0000ms, 1097ms total)
T7764 371:066 JLINK_IsHalted()  returns FALSE (0000ms, 1097ms total)
T7764 371:167 JLINK_IsHalted()  returns FALSE (0000ms, 1097ms total)
T514C 371:269 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 A6 43  returns 0x04 (0000ms, 1097ms total)
T7764 371:270 JLINK_IsHalted()  returns FALSE (0000ms, 1097ms total)
T7764 371:371 JLINK_IsHalted()  returns FALSE (0000ms, 1097ms total)
T7764 371:473 JLINK_IsHalted()  returns FALSE (0000ms, 1097ms total)
T7764 371:574 JLINK_IsHalted()  returns FALSE (0000ms, 1097ms total)
T7764 371:675 JLINK_IsHalted()  returns FALSE (0000ms, 1097ms total)
T7764 371:776 JLINK_IsHalted()  returns FALSE (0000ms, 1097ms total)
T514C 371:877 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 A7 43  returns 0x04 (0001ms, 1098ms total)
T7764 371:878 JLINK_IsHalted()  returns FALSE (0001ms, 1099ms total)
T7764 371:979 JLINK_IsHalted()  returns FALSE (0000ms, 1098ms total)
T7764 372:080 JLINK_IsHalted()  returns FALSE (0000ms, 1098ms total)
T7764 372:181 JLINK_IsHalted()  returns FALSE (0000ms, 1098ms total)
T7764 372:283 JLINK_IsHalted()  returns FALSE (0000ms, 1098ms total)
T7764 372:384 JLINK_IsHalted()  returns FALSE (0000ms, 1098ms total)
T514C 372:485 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 A7 43  returns 0x04 (0000ms, 1098ms total)
T7764 372:486 JLINK_IsHalted()  returns FALSE (0000ms, 1099ms total)
T7764 372:587 JLINK_IsHalted()  returns FALSE (0000ms, 1099ms total)
T7764 372:688 JLINK_IsHalted()  returns FALSE (0000ms, 1099ms total)
T7764 372:789 JLINK_IsHalted()  returns FALSE (0000ms, 1099ms total)
T7764 372:890 JLINK_IsHalted()  returns FALSE (0000ms, 1099ms total)
T514C 372:992 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 A7 43  returns 0x04 (0001ms, 1100ms total)
T7764 372:993 JLINK_IsHalted()  returns FALSE (0000ms, 1100ms total)
T7764 373:094 JLINK_IsHalted()  returns FALSE (0000ms, 1100ms total)
T7764 373:195 JLINK_IsHalted()  returns FALSE (0000ms, 1100ms total)
T7764 373:297 JLINK_IsHalted()  returns FALSE (0000ms, 1100ms total)
T7764 373:398 JLINK_IsHalted()  returns FALSE (0000ms, 1100ms total)
T7764 373:499 JLINK_IsHalted()  returns FALSE (0000ms, 1100ms total)
T514C 373:601 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 A8 43  returns 0x04 (0001ms, 1101ms total)
T7764 373:602 JLINK_IsHalted()  returns FALSE (0000ms, 1101ms total)
T7764 373:703 JLINK_IsHalted()  returns FALSE (0000ms, 1101ms total)
T7764 373:804 JLINK_IsHalted()  returns FALSE (0000ms, 1101ms total)
T7764 373:905 JLINK_IsHalted()  returns FALSE (0000ms, 1101ms total)
T7764 374:006 JLINK_IsHalted()  returns FALSE (0000ms, 1101ms total)
T7764 374:108 JLINK_IsHalted()  returns FALSE (0000ms, 1101ms total)
T514C 374:209 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 A8 43  returns 0x04 (0000ms, 1101ms total)
T7764 374:210 JLINK_IsHalted()  returns FALSE (0000ms, 1101ms total)
T7764 374:311 JLINK_IsHalted()  returns FALSE (0000ms, 1101ms total)
T7764 374:412 JLINK_IsHalted()  returns FALSE (0000ms, 1101ms total)
T7764 374:513 JLINK_IsHalted()  returns FALSE (0000ms, 1101ms total)
T7764 374:614 JLINK_IsHalted()  returns FALSE (0000ms, 1101ms total)
T7764 374:715 JLINK_IsHalted()  returns FALSE (0000ms, 1101ms total)
T514C 374:816 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 A8 43  returns 0x04 (0001ms, 1102ms total)
T7764 374:817 JLINK_IsHalted()  returns FALSE (0001ms, 1103ms total)
T7764 374:919 JLINK_IsHalted()  returns FALSE (0000ms, 1102ms total)
T7764 375:020 JLINK_IsHalted()  returns FALSE (0000ms, 1102ms total)
T7764 375:121 JLINK_IsHalted()  returns FALSE (0000ms, 1102ms total)
T7764 375:222 JLINK_IsHalted()  returns FALSE (0000ms, 1102ms total)
T7764 375:323 JLINK_IsHalted()  returns FALSE (0000ms, 1102ms total)
T514C 375:425 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 A8 43  returns 0x04 (0001ms, 1103ms total)
T7764 375:426 JLINK_IsHalted()  returns FALSE (0001ms, 1104ms total)
T7764 375:528 JLINK_IsHalted()  returns FALSE (0000ms, 1103ms total)
T7764 375:629 JLINK_IsHalted()  returns FALSE (0000ms, 1103ms total)
T7764 375:730 JLINK_IsHalted()  returns FALSE (0000ms, 1103ms total)
T7764 375:831 JLINK_IsHalted()  returns FALSE (0000ms, 1103ms total)
T7764 375:932 JLINK_IsHalted()  returns FALSE (0000ms, 1103ms total)
T514C 376:033 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 A9 43  returns 0x04 (0001ms, 1104ms total)
T7764 376:034 JLINK_IsHalted()  returns FALSE (0001ms, 1105ms total)
T7764 376:136 JLINK_IsHalted()  returns FALSE (0000ms, 1104ms total)
T7764 376:237 JLINK_IsHalted()  returns FALSE (0000ms, 1104ms total)
T7764 376:338 JLINK_IsHalted()  returns FALSE (0000ms, 1104ms total)
T7764 376:440 JLINK_IsHalted()  returns FALSE (0000ms, 1104ms total)
T7764 376:541 JLINK_IsHalted()  returns FALSE (0000ms, 1104ms total)
T514C 376:642 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 A9 43  returns 0x04 (0001ms, 1105ms total)
T7764 376:643 JLINK_IsHalted()  returns FALSE (0000ms, 1105ms total)
T7764 376:745 JLINK_IsHalted()  returns FALSE (0000ms, 1105ms total)
T7764 376:846 JLINK_IsHalted()  returns FALSE (0000ms, 1105ms total)
T7764 376:947 JLINK_IsHalted()  returns FALSE (0000ms, 1105ms total)
T7764 377:048 JLINK_IsHalted()  returns FALSE (0000ms, 1105ms total)
T514C 377:150 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 A9 43  returns 0x04 (0001ms, 1106ms total)
T7764 377:151 JLINK_IsHalted()  returns FALSE (0000ms, 1106ms total)
T7764 377:252 JLINK_IsHalted()  returns FALSE (0000ms, 1106ms total)
T7764 377:352 JLINK_IsHalted()  returns FALSE (0000ms, 1106ms total)
T7764 377:453 JLINK_IsHalted()  returns FALSE (0000ms, 1106ms total)
T7764 377:555 JLINK_IsHalted()  returns FALSE (0000ms, 1106ms total)
T7764 377:656 JLINK_IsHalted()  returns FALSE (0000ms, 1106ms total)
T514C 377:758 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 AA 43  returns 0x04 (0000ms, 1106ms total)
T7764 377:759 JLINK_IsHalted()  returns FALSE (0000ms, 1107ms total)
T7764 377:860 JLINK_IsHalted()  returns FALSE (0000ms, 1107ms total)
T7764 377:961 JLINK_IsHalted()  returns FALSE (0000ms, 1107ms total)
T7764 378:062 JLINK_IsHalted()  returns FALSE (0000ms, 1107ms total)
T7764 378:163 JLINK_IsHalted()  returns FALSE (0000ms, 1107ms total)
T7764 378:265 JLINK_IsHalted()  returns FALSE (0000ms, 1107ms total)
T514C 378:366 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 AA 43  returns 0x04 (0001ms, 1108ms total)
T7764 378:367 JLINK_IsHalted()  returns FALSE (0000ms, 1108ms total)
T7764 378:468 JLINK_IsHalted()  returns FALSE (0000ms, 1108ms total)
T7764 378:569 JLINK_IsHalted()  returns FALSE (0000ms, 1108ms total)
T7764 378:670 JLINK_IsHalted()  returns FALSE (0000ms, 1108ms total)
T7764 378:771 JLINK_IsHalted()  returns FALSE (0000ms, 1108ms total)
T7764 378:872 JLINK_IsHalted()  returns FALSE (0000ms, 1108ms total)
T514C 378:974 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 AA 43  returns 0x04 (0000ms, 1108ms total)
T7764 378:974 JLINK_IsHalted()  returns FALSE (0001ms, 1109ms total)
T7764 379:076 JLINK_IsHalted()  returns FALSE (0000ms, 1108ms total)
T7764 379:178 JLINK_IsHalted()  returns FALSE (0000ms, 1108ms total)
T7764 379:279 JLINK_IsHalted()  returns FALSE (0000ms, 1108ms total)
T7764 379:379 JLINK_IsHalted()  returns FALSE (0000ms, 1108ms total)
T7764 379:481 JLINK_IsHalted()  returns FALSE (0000ms, 1108ms total)
T514C 379:582 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 AB 43  returns 0x04 (0001ms, 1109ms total)
T7764 379:583 JLINK_IsHalted()  returns FALSE (0001ms, 1110ms total)
T7764 379:685 JLINK_IsHalted()  returns FALSE (0000ms, 1109ms total)
T7764 379:786 JLINK_IsHalted()  returns FALSE (0000ms, 1109ms total)
T7764 379:887 JLINK_IsHalted()  returns FALSE (0000ms, 1109ms total)
T7764 379:988 JLINK_IsHalted()  returns FALSE (0000ms, 1109ms total)
T7764 380:089 JLINK_IsHalted()  returns FALSE (0000ms, 1109ms total)
T514C 380:190 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 AB 43  returns 0x04 (0001ms, 1110ms total)
T7764 380:191 JLINK_IsHalted()  returns FALSE (0000ms, 1110ms total)
T7764 380:293 JLINK_IsHalted()  returns FALSE (0000ms, 1110ms total)
T7764 380:394 JLINK_IsHalted()  returns FALSE (0000ms, 1110ms total)
T7764 380:495 JLINK_IsHalted()  returns FALSE (0000ms, 1110ms total)
T7764 380:597 JLINK_IsHalted()  returns FALSE (0000ms, 1110ms total)
T7764 380:698 JLINK_IsHalted()  returns FALSE (0000ms, 1110ms total)
T514C 380:800 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 AB 43  returns 0x04 (0001ms, 1111ms total)
T7764 380:801 JLINK_IsHalted()  returns FALSE (0000ms, 1111ms total)
T7764 380:902 JLINK_IsHalted()  returns FALSE (0000ms, 1111ms total)
T7764 381:003 JLINK_IsHalted()  returns FALSE (0000ms, 1111ms total)
T7764 381:104 JLINK_IsHalted()  returns FALSE (0000ms, 1111ms total)
T7764 381:205 JLINK_IsHalted()  returns FALSE (0000ms, 1111ms total)
T7764 381:307 JLINK_IsHalted()  returns FALSE (0000ms, 1111ms total)
T514C 381:408 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 AB 43  returns 0x04 (0000ms, 1111ms total)
T7764 381:409 JLINK_IsHalted()  returns FALSE (0000ms, 1111ms total)
T7764 381:510 JLINK_IsHalted()  returns FALSE (0000ms, 1111ms total)
T7764 381:611 JLINK_IsHalted()  returns FALSE (0000ms, 1111ms total)
T7764 381:713 JLINK_IsHalted()  returns FALSE (0000ms, 1111ms total)
T7764 381:814 JLINK_IsHalted()  returns FALSE (0000ms, 1111ms total)
T514C 381:915 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 AC 43  returns 0x04 (0001ms, 1112ms total)
T7764 381:916 JLINK_IsHalted()  returns FALSE (0000ms, 1112ms total)
T7764 382:017 JLINK_IsHalted()  returns FALSE (0000ms, 1112ms total)
T7764 382:118 JLINK_IsHalted()  returns FALSE (0000ms, 1112ms total)
T7764 382:220 JLINK_IsHalted()  returns FALSE (0000ms, 1112ms total)
T7764 382:321 JLINK_IsHalted()  returns FALSE (0000ms, 1112ms total)
T7764 382:422 JLINK_IsHalted()  returns FALSE (0000ms, 1112ms total)
T514C 382:523 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 AC 43  returns 0x04 (0001ms, 1113ms total)
T7764 382:524 JLINK_IsHalted()  returns FALSE (0000ms, 1113ms total)
T7764 382:625 JLINK_IsHalted()  returns FALSE (0000ms, 1113ms total)
T7764 382:726 JLINK_IsHalted()  returns FALSE (0000ms, 1113ms total)
T7764 382:827 JLINK_IsHalted()  returns FALSE (0000ms, 1113ms total)
T7764 382:928 JLINK_IsHalted()  returns FALSE (0000ms, 1113ms total)
T7764 383:030 JLINK_IsHalted()  returns FALSE (0000ms, 1113ms total)
T514C 383:131 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 AC 43  returns 0x04 (0000ms, 1113ms total)
T7764 383:132 JLINK_IsHalted()  returns FALSE (0000ms, 1113ms total)
T7764 383:233 JLINK_IsHalted()  returns FALSE (0000ms, 1113ms total)
T7764 383:334 JLINK_IsHalted()  returns FALSE (0000ms, 1113ms total)
T7764 383:435 JLINK_IsHalted()  returns FALSE (0000ms, 1113ms total)
T7764 383:537 JLINK_IsHalted()  returns FALSE (0000ms, 1113ms total)
T7764 383:638 JLINK_IsHalted()  returns FALSE (0000ms, 1113ms total)
T514C 383:740 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 AD 43  returns 0x04 (0000ms, 1113ms total)
T7764 383:741 JLINK_IsHalted()  returns FALSE (0000ms, 1113ms total)
T7764 383:842 JLINK_IsHalted()  returns FALSE (0000ms, 1113ms total)
T7764 383:944 JLINK_IsHalted()  returns FALSE (0000ms, 1113ms total)
T7764 384:045 JLINK_IsHalted()  returns FALSE (0000ms, 1113ms total)
T7764 384:146 JLINK_IsHalted()  returns FALSE (0000ms, 1113ms total)
T7764 384:247 JLINK_IsHalted()  returns FALSE (0000ms, 1113ms total)
T514C 384:348 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 AD 43  returns 0x04 (0000ms, 1113ms total)
T7764 384:349 JLINK_IsHalted()  returns FALSE (0000ms, 1113ms total)
T7764 384:450 JLINK_IsHalted()  returns FALSE (0000ms, 1113ms total)
T7764 384:552 JLINK_IsHalted()  returns FALSE (0001ms, 1114ms total)
T7764 384:653 JLINK_IsHalted()  returns FALSE (0000ms, 1113ms total)
T7764 384:754 JLINK_IsHalted()  returns FALSE (0000ms, 1113ms total)
T7764 384:856 JLINK_IsHalted()  returns FALSE (0000ms, 1113ms total)
T514C 384:957 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 AD 43  returns 0x04 (0001ms, 1114ms total)
T7764 384:958 JLINK_IsHalted()  returns FALSE (0000ms, 1114ms total)
T7764 385:059 JLINK_IsHalted()  returns FALSE (0000ms, 1114ms total)
T7764 385:160 JLINK_IsHalted()  returns FALSE (0000ms, 1114ms total)
T7764 385:261 JLINK_IsHalted()  returns FALSE (0000ms, 1114ms total)
T7764 385:362 JLINK_IsHalted()  returns FALSE (0000ms, 1114ms total)
T7764 385:463 JLINK_IsHalted()  returns FALSE (0000ms, 1114ms total)
T514C 385:565 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 AE 43  returns 0x04 (0001ms, 1115ms total)
T7764 385:566 JLINK_IsHalted()  returns FALSE (0001ms, 1116ms total)
T7764 385:667 JLINK_IsHalted()  returns FALSE (0000ms, 1115ms total)
T7764 385:768 JLINK_IsHalted()  returns FALSE (0000ms, 1115ms total)
T7764 385:870 JLINK_IsHalted()  returns FALSE (0000ms, 1115ms total)
T7764 385:971 JLINK_IsHalted()  returns FALSE (0000ms, 1115ms total)
T7764 386:072 JLINK_IsHalted()  returns FALSE (0000ms, 1115ms total)
T514C 386:174 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 AE 43  returns 0x04 (0001ms, 1116ms total)
T7764 386:175 JLINK_IsHalted()  returns FALSE (0000ms, 1116ms total)
T7764 386:276 JLINK_IsHalted()  returns FALSE (0000ms, 1116ms total)
T7764 386:377 JLINK_IsHalted()  returns FALSE (0000ms, 1116ms total)
T7764 386:478 JLINK_IsHalted()  returns FALSE (0000ms, 1116ms total)
T7764 386:579 JLINK_IsHalted()  returns FALSE (0000ms, 1116ms total)
T514C 386:681 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 AE 43  returns 0x04 (0001ms, 1117ms total)
T7764 386:682 JLINK_IsHalted()  returns FALSE (0000ms, 1117ms total)
T7764 386:783 JLINK_IsHalted()  returns FALSE (0000ms, 1117ms total)
T7764 386:884 JLINK_IsHalted()  returns FALSE (0000ms, 1117ms total)
T7764 386:985 JLINK_IsHalted()  returns FALSE (0000ms, 1117ms total)
T7764 387:087 JLINK_IsHalted()  returns FALSE (0000ms, 1117ms total)
T7764 387:188 JLINK_IsHalted()  returns FALSE (0000ms, 1117ms total)
T514C 387:289 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 AE 43  returns 0x04 (0001ms, 1118ms total)
T7764 387:290 JLINK_IsHalted()  returns FALSE (0000ms, 1118ms total)
T7764 387:392 JLINK_IsHalted()  returns FALSE (0000ms, 1118ms total)
T7764 387:493 JLINK_IsHalted()  returns FALSE (0000ms, 1118ms total)
T7764 387:594 JLINK_IsHalted()  returns FALSE (0000ms, 1118ms total)
T7764 387:695 JLINK_IsHalted()  returns FALSE (0000ms, 1118ms total)
T7764 387:797 JLINK_IsHalted()  returns FALSE (0000ms, 1118ms total)
T514C 387:899 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 AF 43  returns 0x04 (0001ms, 1119ms total)
T7764 387:900 JLINK_IsHalted()  returns FALSE (0000ms, 1119ms total)
T7764 388:001 JLINK_IsHalted()  returns FALSE (0000ms, 1119ms total)
T7764 388:102 JLINK_IsHalted()  returns FALSE (0000ms, 1119ms total)
T7764 388:203 JLINK_IsHalted()  returns FALSE (0000ms, 1119ms total)
T7764 388:304 JLINK_IsHalted()  returns FALSE (0000ms, 1119ms total)
T7764 388:405 JLINK_IsHalted()  returns FALSE (0000ms, 1119ms total)
T514C 388:507 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 AF 43  returns 0x04 (0001ms, 1120ms total)
T7764 388:508 JLINK_IsHalted()  returns FALSE (0000ms, 1120ms total)
T7764 388:610 JLINK_IsHalted()  returns FALSE (0000ms, 1120ms total)
T7764 388:711 JLINK_IsHalted()  returns FALSE (0000ms, 1120ms total)
T7764 388:812 JLINK_IsHalted()  returns FALSE (0000ms, 1120ms total)
T7764 388:913 JLINK_IsHalted()  returns FALSE (0000ms, 1120ms total)
T7764 389:014 JLINK_IsHalted()  returns FALSE (0000ms, 1120ms total)
T514C 389:115 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 AF 43  returns 0x04 (0001ms, 1121ms total)
T7764 389:116 JLINK_IsHalted()  returns FALSE (0000ms, 1121ms total)
T7764 389:218 JLINK_IsHalted()  returns FALSE (0000ms, 1121ms total)
T7764 389:319 JLINK_IsHalted()  returns FALSE (0000ms, 1121ms total)
T7764 389:420 JLINK_IsHalted()  returns FALSE (0000ms, 1121ms total)
T7764 389:521 JLINK_IsHalted()  returns FALSE (0000ms, 1121ms total)
T7764 389:622 JLINK_IsHalted()  returns FALSE (0000ms, 1121ms total)
T514C 389:724 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 B0 43  returns 0x04 (0000ms, 1121ms total)
T7764 389:725 JLINK_IsHalted()  returns FALSE (0000ms, 1121ms total)
T7764 389:826 JLINK_IsHalted()  returns FALSE (0000ms, 1121ms total)
T7764 389:928 JLINK_IsHalted()  returns FALSE (0000ms, 1121ms total)
T7764 390:029 JLINK_IsHalted()  returns FALSE (0000ms, 1121ms total)
T7764 390:130 JLINK_IsHalted()  returns FALSE (0000ms, 1121ms total)
T7764 390:231 JLINK_IsHalted()  returns FALSE (0000ms, 1121ms total)
T514C 390:332 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 B0 43  returns 0x04 (0001ms, 1122ms total)
T7764 390:333 JLINK_IsHalted()  returns FALSE (0000ms, 1122ms total)
T7764 390:435 JLINK_IsHalted()  returns FALSE (0000ms, 1122ms total)
T7764 390:536 JLINK_IsHalted()  returns FALSE (0000ms, 1122ms total)
T7764 390:637 JLINK_IsHalted()  returns FALSE (0000ms, 1122ms total)
T7764 390:739 JLINK_IsHalted()  returns FALSE (0000ms, 1122ms total)
T7764 390:840 JLINK_IsHalted()  returns FALSE (0000ms, 1122ms total)
T514C 390:941 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 B0 43  returns 0x04 (0000ms, 1122ms total)
T7764 390:942 JLINK_IsHalted()  returns FALSE (0000ms, 1122ms total)
T7764 391:043 JLINK_IsHalted()  returns FALSE (0000ms, 1122ms total)
T7764 391:144 JLINK_IsHalted()  returns FALSE (0000ms, 1122ms total)
T7764 391:245 JLINK_IsHalted()  returns FALSE (0000ms, 1122ms total)
T7764 391:347 JLINK_IsHalted()  returns FALSE (0000ms, 1122ms total)
T7764 391:448 JLINK_IsHalted()  returns FALSE (0000ms, 1122ms total)
T514C 391:549 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 B1 43  returns 0x04 (0000ms, 1122ms total)
T7764 391:550 JLINK_IsHalted()  returns FALSE (0000ms, 1122ms total)
T7764 391:651 JLINK_IsHalted()  returns FALSE (0000ms, 1122ms total)
T7764 391:752 JLINK_IsHalted()  returns FALSE (0000ms, 1122ms total)
T7764 391:854 JLINK_IsHalted()  returns FALSE (0000ms, 1122ms total)
T7764 391:956 JLINK_IsHalted()  returns FALSE (0000ms, 1122ms total)
T7764 392:057 JLINK_IsHalted()  returns FALSE (0000ms, 1122ms total)
T514C 392:158 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 B1 43  returns 0x04 (0001ms, 1123ms total)
T7764 392:159 JLINK_IsHalted()  returns FALSE (0001ms, 1124ms total)
T7764 392:261 JLINK_IsHalted()  returns FALSE (0000ms, 1123ms total)
T7764 392:362 JLINK_IsHalted()  returns FALSE (0000ms, 1123ms total)
T7764 392:464 JLINK_IsHalted()  returns FALSE (0000ms, 1123ms total)
T7764 392:565 JLINK_IsHalted()  returns FALSE (0000ms, 1123ms total)
T514C 392:666 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 B1 43  returns 0x04 (0001ms, 1124ms total)
T7764 392:667 JLINK_IsHalted()  returns FALSE (0000ms, 1124ms total)
T7764 392:768 JLINK_IsHalted()  returns FALSE (0000ms, 1124ms total)
T7764 392:869 JLINK_IsHalted()  returns FALSE (0000ms, 1124ms total)
T7764 392:970 JLINK_IsHalted()  returns FALSE (0000ms, 1124ms total)
T7764 393:071 JLINK_IsHalted()  returns FALSE (0000ms, 1124ms total)
T7764 393:173 JLINK_IsHalted()  returns FALSE (0000ms, 1124ms total)
T514C 393:274 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 B1 43  returns 0x04 (0001ms, 1125ms total)
T7764 393:275 JLINK_IsHalted()  returns FALSE (0000ms, 1125ms total)
T7764 393:376 JLINK_IsHalted()  returns FALSE (0000ms, 1125ms total)
T7764 393:477 JLINK_IsHalted()  returns FALSE (0000ms, 1125ms total)
T7764 393:579 JLINK_IsHalted()  returns FALSE (0000ms, 1125ms total)
T7764 393:680 JLINK_IsHalted()  returns FALSE (0000ms, 1125ms total)
T7764 393:781 JLINK_IsHalted()  returns FALSE (0000ms, 1125ms total)
T514C 393:882 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 B2 43  returns 0x04 (0001ms, 1126ms total)
T7764 393:883 JLINK_IsHalted()  returns FALSE (0000ms, 1126ms total)
T7764 393:984 JLINK_IsHalted()  returns FALSE (0000ms, 1126ms total)
T7764 394:086 JLINK_IsHalted()  returns FALSE (0000ms, 1126ms total)
T7764 394:187 JLINK_IsHalted()  returns FALSE (0000ms, 1126ms total)
T7764 394:288 JLINK_IsHalted()  returns FALSE (0000ms, 1126ms total)
T7764 394:390 JLINK_IsHalted()  returns FALSE (0000ms, 1126ms total)
T514C 394:491 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 B2 43  returns 0x04 (0001ms, 1127ms total)
T7764 394:492 JLINK_IsHalted()  returns FALSE (0000ms, 1127ms total)
T7764 394:593 JLINK_IsHalted()  returns FALSE (0000ms, 1127ms total)
T7764 394:694 JLINK_IsHalted()  returns FALSE (0000ms, 1127ms total)
T7764 394:796 JLINK_IsHalted()  returns FALSE (0000ms, 1127ms total)
T7764 394:897 JLINK_IsHalted()  returns FALSE (0000ms, 1127ms total)
T7764 394:998 JLINK_IsHalted()  returns FALSE (0001ms, 1128ms total)
T514C 395:099 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 B2 43  returns 0x04 (0001ms, 1128ms total)
T7764 395:100 JLINK_IsHalted()  returns FALSE (0000ms, 1128ms total)
T7764 395:202 JLINK_IsHalted()  returns FALSE (0000ms, 1128ms total)
T7764 395:303 JLINK_IsHalted()  returns FALSE (0000ms, 1128ms total)
T7764 395:404 JLINK_IsHalted()  returns FALSE (0000ms, 1128ms total)
T7764 395:505 JLINK_IsHalted()  returns FALSE (0000ms, 1128ms total)
T7764 395:607 JLINK_IsHalted()  returns FALSE (0000ms, 1128ms total)
T514C 395:708 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 B3 43  returns 0x04 (0000ms, 1128ms total)
T7764 395:709 JLINK_IsHalted()  returns FALSE (0000ms, 1128ms total)
T7764 395:811 JLINK_IsHalted()  returns FALSE (0000ms, 1128ms total)
T7764 395:912 JLINK_IsHalted()  returns FALSE (0000ms, 1128ms total)
T7764 396:013 JLINK_IsHalted()  returns FALSE (0000ms, 1128ms total)
T7764 396:115 JLINK_IsHalted()  returns FALSE (0000ms, 1128ms total)
T7764 396:216 JLINK_IsHalted()  returns FALSE (0000ms, 1128ms total)
T514C 396:317 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 B3 43  returns 0x04 (0001ms, 1129ms total)
T7764 396:318 JLINK_IsHalted()  returns FALSE (0000ms, 1129ms total)
T7764 396:420 JLINK_IsHalted()  returns FALSE (0000ms, 1129ms total)
T7764 396:521 JLINK_IsHalted()  returns FALSE (0000ms, 1129ms total)
T7764 396:622 JLINK_IsHalted()  returns FALSE (0000ms, 1129ms total)
T7764 396:723 JLINK_IsHalted()  returns FALSE (0000ms, 1129ms total)
T7764 396:824 JLINK_IsHalted()  returns FALSE (0000ms, 1129ms total)
T514C 396:925 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 B3 43  returns 0x04 (0001ms, 1130ms total)
T7764 396:926 JLINK_IsHalted()  returns FALSE (0000ms, 1130ms total)
T7764 397:027 JLINK_IsHalted()  returns FALSE (0000ms, 1130ms total)
T7764 397:128 JLINK_IsHalted()  returns FALSE (0000ms, 1130ms total)
T7764 397:230 JLINK_IsHalted()  returns FALSE (0000ms, 1130ms total)
T7764 397:331 JLINK_IsHalted()  returns FALSE (0000ms, 1130ms total)
T7764 397:432 JLINK_IsHalted()  returns FALSE (0000ms, 1130ms total)
T514C 397:533 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 B3 43  returns 0x04 (0001ms, 1131ms total)
T7764 397:534 JLINK_IsHalted()  returns FALSE (0000ms, 1131ms total)
T7764 397:636 JLINK_IsHalted()  returns FALSE (0000ms, 1131ms total)
T7764 397:737 JLINK_IsHalted()  returns FALSE (0000ms, 1131ms total)
T7764 397:838 JLINK_IsHalted()  returns FALSE (0000ms, 1131ms total)
T7764 397:939 JLINK_IsHalted()  returns FALSE (0000ms, 1131ms total)
T514C 398:041 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 B4 43  returns 0x04 (0001ms, 1132ms total)
T7764 398:042 JLINK_IsHalted()  returns FALSE (0000ms, 1132ms total)
T7764 398:143 JLINK_IsHalted()  returns FALSE (0000ms, 1132ms total)
T7764 398:244 JLINK_IsHalted()  returns FALSE (0000ms, 1132ms total)
T7764 398:345 JLINK_IsHalted()  returns FALSE (0000ms, 1132ms total)
T7764 398:446 JLINK_IsHalted()  returns FALSE (0000ms, 1132ms total)
T7764 398:547 JLINK_IsHalted()  returns FALSE (0001ms, 1133ms total)
T514C 398:649 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 B4 43  returns 0x04 (0001ms, 1133ms total)
T7764 398:650 JLINK_IsHalted()  returns FALSE (0000ms, 1133ms total)
T7764 398:752 JLINK_IsHalted()  returns FALSE (0000ms, 1133ms total)
T7764 398:853 JLINK_IsHalted()  returns FALSE (0000ms, 1133ms total)
T7764 398:954 JLINK_IsHalted()  returns FALSE (0000ms, 1133ms total)
T7764 399:056 JLINK_IsHalted()  returns FALSE (0000ms, 1133ms total)
T7764 399:157 JLINK_IsHalted()  returns FALSE (0000ms, 1133ms total)
T514C 399:258 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 B4 43  returns 0x04 (0001ms, 1134ms total)
T7764 399:259 JLINK_IsHalted()  returns FALSE (0000ms, 1134ms total)
T7764 399:360 JLINK_IsHalted()  returns FALSE (0000ms, 1134ms total)
T7764 399:462 JLINK_IsHalted()  returns FALSE (0000ms, 1134ms total)
T7764 399:563 JLINK_IsHalted()  returns FALSE (0000ms, 1134ms total)
T7764 399:664 JLINK_IsHalted()  returns FALSE (0000ms, 1134ms total)
T7764 399:765 JLINK_IsHalted()  returns FALSE (0000ms, 1134ms total)
T514C 399:867 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 B5 43  returns 0x04 (0001ms, 1135ms total)
T7764 399:868 JLINK_IsHalted()  returns FALSE (0000ms, 1135ms total)
T7764 399:969 JLINK_IsHalted()  returns FALSE (0000ms, 1135ms total)
T7764 400:070 JLINK_IsHalted()  returns FALSE (0000ms, 1135ms total)
T7764 400:171 JLINK_IsHalted()  returns FALSE (0000ms, 1135ms total)
T7764 400:272 JLINK_IsHalted()  returns FALSE (0000ms, 1135ms total)
T7764 400:373 JLINK_IsHalted()  returns FALSE (0000ms, 1135ms total)
T514C 400:474 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 B5 43  returns 0x04 (0000ms, 1135ms total)
T7764 400:475 JLINK_IsHalted()  returns FALSE (0000ms, 1135ms total)
T7764 400:577 JLINK_IsHalted()  returns FALSE (0000ms, 1135ms total)
T7764 400:678 JLINK_IsHalted()  returns FALSE (0000ms, 1135ms total)
T7764 400:780 JLINK_IsHalted()  returns FALSE (0000ms, 1135ms total)
T7764 400:882 JLINK_IsHalted()  returns FALSE (0000ms, 1135ms total)
T7764 400:983 JLINK_IsHalted()  returns FALSE (0000ms, 1135ms total)
T514C 401:084 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 B5 43  returns 0x04 (0001ms, 1136ms total)
T7764 401:085 JLINK_IsHalted()  returns FALSE (0000ms, 1136ms total)
T7764 401:186 JLINK_IsHalted()  returns FALSE (0000ms, 1136ms total)
T7764 401:287 JLINK_IsHalted()  returns FALSE (0000ms, 1136ms total)
T7764 401:389 JLINK_IsHalted()  returns FALSE (0000ms, 1136ms total)
T7764 401:490 JLINK_IsHalted()  returns FALSE (0000ms, 1136ms total)
T7764 401:591 JLINK_IsHalted()  returns FALSE (0000ms, 1136ms total)
T514C 401:692 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 B6 43  returns 0x04 (0001ms, 1137ms total)
T7764 401:693 JLINK_IsHalted()  returns FALSE (0000ms, 1137ms total)
T7764 401:795 JLINK_IsHalted()  returns FALSE (0000ms, 1137ms total)
T7764 401:896 JLINK_IsHalted()  returns FALSE (0000ms, 1137ms total)
T7764 401:997 JLINK_IsHalted()  returns FALSE (0000ms, 1137ms total)
T7764 402:098 JLINK_IsHalted()  returns FALSE (0000ms, 1137ms total)
T7764 402:200 JLINK_IsHalted()  returns FALSE (0000ms, 1137ms total)
T514C 402:301 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 B6 43  returns 0x04 (0000ms, 1137ms total)
T7764 402:302 JLINK_IsHalted()  returns FALSE (0000ms, 1137ms total)
T7764 402:403 JLINK_IsHalted()  returns FALSE (0000ms, 1137ms total)
T7764 402:504 JLINK_IsHalted()  returns FALSE (0000ms, 1137ms total)
T7764 402:605 JLINK_IsHalted()  returns FALSE (0000ms, 1137ms total)
T7764 402:706 JLINK_IsHalted()  returns FALSE (0000ms, 1137ms total)
T7764 402:807 JLINK_IsHalted()  returns FALSE (0000ms, 1137ms total)
T514C 402:909 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 B6 43  returns 0x04 (0001ms, 1138ms total)
T7764 402:910 JLINK_IsHalted()  returns FALSE (0000ms, 1138ms total)
T7764 403:011 JLINK_IsHalted()  returns FALSE (0000ms, 1138ms total)
T7764 403:112 JLINK_IsHalted()  returns FALSE (0000ms, 1138ms total)
T7764 403:213 JLINK_IsHalted()  returns FALSE (0000ms, 1138ms total)
T7764 403:314 JLINK_IsHalted()  returns FALSE (0000ms, 1138ms total)
T7764 403:415 JLINK_IsHalted()  returns FALSE (0000ms, 1138ms total)
T514C 403:516 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 B6 43  returns 0x04 (0000ms, 1138ms total)
T7764 403:517 JLINK_IsHalted()  returns FALSE (0000ms, 1138ms total)
T7764 403:618 JLINK_IsHalted()  returns FALSE (0000ms, 1138ms total)
T7764 403:720 JLINK_IsHalted()  returns FALSE (0000ms, 1138ms total)
T7764 403:821 JLINK_IsHalted()  returns FALSE (0000ms, 1138ms total)
T7764 403:922 JLINK_IsHalted()  returns FALSE (0000ms, 1138ms total)
T514C 404:023 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 B7 43  returns 0x04 (0000ms, 1138ms total)
T7764 404:024 JLINK_IsHalted()  returns FALSE (0000ms, 1139ms total)
T7764 404:126 JLINK_IsHalted()  returns FALSE (0000ms, 1139ms total)
T7764 404:227 JLINK_IsHalted()  returns FALSE (0000ms, 1139ms total)
T7764 404:328 JLINK_IsHalted()  returns FALSE (0000ms, 1139ms total)
T7764 404:429 JLINK_IsHalted()  returns FALSE (0000ms, 1139ms total)
T7764 404:531 JLINK_IsHalted()  returns FALSE (0000ms, 1139ms total)
T514C 404:633 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 B7 43  returns 0x04 (0001ms, 1140ms total)
T7764 404:634 JLINK_IsHalted()  returns FALSE (0000ms, 1140ms total)
T7764 404:735 JLINK_IsHalted()  returns FALSE (0000ms, 1140ms total)
T7764 404:836 JLINK_IsHalted()  returns FALSE (0000ms, 1140ms total)
T7764 404:938 JLINK_IsHalted()  returns FALSE (0000ms, 1140ms total)
T7764 405:039 JLINK_IsHalted()  returns FALSE (0000ms, 1140ms total)
T7764 405:140 JLINK_IsHalted()  returns FALSE (0000ms, 1140ms total)
T514C 405:241 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 B7 43  returns 0x04 (0000ms, 1140ms total)
T7764 405:242 JLINK_IsHalted()  returns FALSE (0000ms, 1140ms total)
T7764 405:344 JLINK_IsHalted()  returns FALSE (0000ms, 1140ms total)
T7764 405:445 JLINK_IsHalted()  returns FALSE (0000ms, 1140ms total)
T7764 405:546 JLINK_IsHalted()  returns FALSE (0000ms, 1140ms total)
T7764 405:648 JLINK_IsHalted()  returns FALSE (0000ms, 1140ms total)
T7764 405:749 JLINK_IsHalted()  returns FALSE (0000ms, 1140ms total)
T514C 405:850 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 B8 43  returns 0x04 (0001ms, 1141ms total)
T7764 405:851 JLINK_IsHalted()  returns FALSE (0000ms, 1141ms total)
T7764 405:952 JLINK_IsHalted()  returns FALSE (0000ms, 1141ms total)
T7764 406:054 JLINK_IsHalted()  returns FALSE (0000ms, 1141ms total)
T7764 406:155 JLINK_IsHalted()  returns FALSE (0000ms, 1141ms total)
T7764 406:256 JLINK_IsHalted()  returns FALSE (0000ms, 1141ms total)
T7764 406:357 JLINK_IsHalted()  returns FALSE (0000ms, 1141ms total)
T514C 406:458 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 B8 43  returns 0x04 (0000ms, 1141ms total)
T7764 406:459 JLINK_IsHalted()  returns FALSE (0000ms, 1142ms total)
T7764 406:560 JLINK_IsHalted()  returns FALSE (0000ms, 1142ms total)
T7764 406:662 JLINK_IsHalted()  returns FALSE (0000ms, 1142ms total)
T7764 406:763 JLINK_IsHalted()  returns FALSE (0000ms, 1142ms total)
T7764 406:865 JLINK_IsHalted()  returns FALSE (0000ms, 1142ms total)
T7764 406:966 JLINK_IsHalted()  returns FALSE (0000ms, 1142ms total)
T514C 407:067 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 B8 43  returns 0x04 (0001ms, 1143ms total)
T7764 407:068 JLINK_IsHalted()  returns FALSE (0000ms, 1143ms total)
T7764 407:170 JLINK_IsHalted()  returns FALSE (0000ms, 1143ms total)
T7764 407:271 JLINK_IsHalted()  returns FALSE (0000ms, 1143ms total)
T7764 407:372 JLINK_IsHalted()  returns FALSE (0000ms, 1143ms total)
T7764 407:473 JLINK_IsHalted()  returns FALSE (0000ms, 1143ms total)
T7764 407:574 JLINK_IsHalted()  returns FALSE (0000ms, 1143ms total)
T514C 407:675 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 B9 43  returns 0x04 (0001ms, 1144ms total)
T7764 407:676 JLINK_IsHalted()  returns FALSE (0001ms, 1145ms total)
T7764 407:778 JLINK_IsHalted()  returns FALSE (0000ms, 1144ms total)
T7764 407:879 JLINK_IsHalted()  returns FALSE (0000ms, 1144ms total)
T7764 407:980 JLINK_IsHalted()  returns FALSE (0000ms, 1144ms total)
T7764 408:082 JLINK_IsHalted()  returns FALSE (0000ms, 1144ms total)
T7764 408:183 JLINK_IsHalted()  returns FALSE (0000ms, 1144ms total)
T514C 408:284 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 B9 43  returns 0x04 (0001ms, 1145ms total)
T7764 408:285 JLINK_IsHalted()  returns FALSE (0000ms, 1145ms total)
T7764 408:386 JLINK_IsHalted()  returns FALSE (0000ms, 1145ms total)
T7764 408:487 JLINK_IsHalted()  returns FALSE (0000ms, 1145ms total)
T7764 408:589 JLINK_IsHalted()  returns FALSE (0000ms, 1145ms total)
T7764 408:691 JLINK_IsHalted()  returns FALSE (0000ms, 1145ms total)
T7764 408:792 JLINK_IsHalted()  returns FALSE (0000ms, 1145ms total)
T514C 408:893 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 B9 43  returns 0x04 (0001ms, 1146ms total)
T7764 408:894 JLINK_IsHalted()  returns FALSE (0001ms, 1147ms total)
T7764 408:996 JLINK_IsHalted()  returns FALSE (0000ms, 1146ms total)
T7764 409:097 JLINK_IsHalted()  returns FALSE (0000ms, 1146ms total)
T7764 409:199 JLINK_IsHalted()  returns FALSE (0000ms, 1146ms total)
T7764 409:300 JLINK_IsHalted()  returns FALSE (0000ms, 1146ms total)
T7764 409:401 JLINK_IsHalted()  returns FALSE (0000ms, 1146ms total)
T514C 409:502 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 B9 43  returns 0x04 (0000ms, 1146ms total)
T7764 409:503 JLINK_IsHalted()  returns FALSE (0000ms, 1146ms total)
T7764 409:604 JLINK_IsHalted()  returns FALSE (0000ms, 1146ms total)
T7764 409:705 JLINK_IsHalted()  returns FALSE (0000ms, 1146ms total)
T7764 409:806 JLINK_IsHalted()  returns FALSE (0000ms, 1146ms total)
T7764 409:907 JLINK_IsHalted()  returns FALSE (0000ms, 1146ms total)
T514C 410:009 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 BA 43  returns 0x04 (0001ms, 1147ms total)
T7764 410:010 JLINK_IsHalted()  returns FALSE (0000ms, 1147ms total)
T7764 410:112 JLINK_IsHalted()  returns FALSE (0000ms, 1147ms total)
T7764 410:213 JLINK_IsHalted()  returns FALSE (0000ms, 1147ms total)
T7764 410:314 JLINK_IsHalted()  returns FALSE (0000ms, 1147ms total)
T7764 410:416 JLINK_IsHalted()  returns FALSE (0000ms, 1147ms total)
T7764 410:517 JLINK_IsHalted()  returns FALSE (0000ms, 1147ms total)
T514C 410:618 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 BA 43  returns 0x04 (0000ms, 1147ms total)
T7764 410:619 JLINK_IsHalted()  returns FALSE (0000ms, 1147ms total)
T7764 410:720 JLINK_IsHalted()  returns FALSE (0000ms, 1147ms total)
T7764 410:821 JLINK_IsHalted()  returns FALSE (0000ms, 1147ms total)
T7764 410:922 JLINK_IsHalted()  returns FALSE (0000ms, 1147ms total)
T7764 411:023 JLINK_IsHalted()  returns FALSE (0000ms, 1147ms total)
T7764 411:124 JLINK_IsHalted()  returns FALSE (0000ms, 1147ms total)
T514C 411:225 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 BA 43  returns 0x04 (0001ms, 1148ms total)
T7764 411:226 JLINK_IsHalted()  returns FALSE (0000ms, 1148ms total)
T7764 411:328 JLINK_IsHalted()  returns FALSE (0000ms, 1148ms total)
T7764 411:429 JLINK_IsHalted()  returns FALSE (0000ms, 1148ms total)
T7764 411:530 JLINK_IsHalted()  returns FALSE (0000ms, 1148ms total)
T7764 411:631 JLINK_IsHalted()  returns FALSE (0000ms, 1148ms total)
T7764 411:732 JLINK_IsHalted()  returns FALSE (0000ms, 1148ms total)
T514C 411:834 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 BB 43  returns 0x04 (0000ms, 1148ms total)
T7764 411:835 JLINK_IsHalted()  returns FALSE (0000ms, 1149ms total)
T7764 411:936 JLINK_IsHalted()  returns FALSE (0000ms, 1149ms total)
T7764 412:037 JLINK_IsHalted()  returns FALSE (0000ms, 1149ms total)
T7764 412:138 JLINK_IsHalted()  returns FALSE (0000ms, 1149ms total)
T7764 412:240 JLINK_IsHalted()  returns FALSE (0000ms, 1149ms total)
T7764 412:341 JLINK_IsHalted()  returns FALSE (0000ms, 1149ms total)
T514C 412:442 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 BB 43  returns 0x04 (0000ms, 1149ms total)
T7764 412:443 JLINK_IsHalted()  returns FALSE (0000ms, 1149ms total)
T7764 412:544 JLINK_IsHalted()  returns FALSE (0000ms, 1149ms total)
T7764 412:646 JLINK_IsHalted()  returns FALSE (0000ms, 1149ms total)
T7764 412:747 JLINK_IsHalted()  returns FALSE (0000ms, 1149ms total)
T7764 412:849 JLINK_IsHalted()  returns FALSE (0000ms, 1149ms total)
T7764 412:951 JLINK_IsHalted()  returns FALSE (0000ms, 1149ms total)
T514C 413:052 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 BB 43  returns 0x04 (0001ms, 1150ms total)
T7764 413:053 JLINK_IsHalted()  returns FALSE (0000ms, 1150ms total)
T7764 413:154 JLINK_IsHalted()  returns FALSE (0000ms, 1150ms total)
T7764 413:255 JLINK_IsHalted()  returns FALSE (0000ms, 1150ms total)
T7764 413:356 JLINK_IsHalted()  returns FALSE (0000ms, 1150ms total)
T7764 413:458 JLINK_IsHalted()  returns FALSE (0000ms, 1150ms total)
T7764 413:559 JLINK_IsHalted()  returns FALSE (0000ms, 1150ms total)
T514C 413:660 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 BC 43  returns 0x04 (0000ms, 1150ms total)
T7764 413:661 JLINK_IsHalted()  returns FALSE (0000ms, 1150ms total)
T7764 413:763 JLINK_IsHalted()  returns FALSE (0000ms, 1150ms total)
T7764 413:865 JLINK_IsHalted()  returns FALSE (0000ms, 1150ms total)
T7764 413:966 JLINK_IsHalted()  returns FALSE (0000ms, 1150ms total)
T7764 414:067 JLINK_IsHalted()  returns FALSE (0000ms, 1150ms total)
T7764 414:168 JLINK_IsHalted()  returns FALSE (0000ms, 1150ms total)
T514C 414:269 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 BC 43  returns 0x04 (0001ms, 1151ms total)
T7764 414:270 JLINK_IsHalted()  returns FALSE (0000ms, 1151ms total)
T7764 414:372 JLINK_IsHalted()  returns FALSE (0000ms, 1151ms total)
T7764 414:473 JLINK_IsHalted()  returns FALSE (0000ms, 1151ms total)
T7764 414:574 JLINK_IsHalted()  returns FALSE (0000ms, 1151ms total)
T7764 414:675 JLINK_IsHalted()  returns FALSE (0000ms, 1151ms total)
T7764 414:777 JLINK_IsHalted()  returns FALSE (0000ms, 1151ms total)
T514C 414:878 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 BC 43  returns 0x04 (0001ms, 1152ms total)
T7764 414:879 JLINK_IsHalted()  returns FALSE (0001ms, 1153ms total)
T7764 414:981 JLINK_IsHalted()  returns FALSE (0000ms, 1152ms total)
T7764 415:082 JLINK_IsHalted()  returns FALSE (0000ms, 1152ms total)
T7764 415:183 JLINK_IsHalted()  returns FALSE (0000ms, 1152ms total)
T7764 415:284 JLINK_IsHalted()  returns FALSE (0000ms, 1152ms total)
T7764 415:385 JLINK_IsHalted()  returns FALSE (0000ms, 1152ms total)
T514C 415:486 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 BC 43  returns 0x04 (0001ms, 1153ms total)
T7764 415:487 JLINK_IsHalted()  returns FALSE (0001ms, 1154ms total)
T7764 415:589 JLINK_IsHalted()  returns FALSE (0000ms, 1153ms total)
T7764 415:690 JLINK_IsHalted()  returns FALSE (0000ms, 1153ms total)
T7764 415:792 JLINK_IsHalted()  returns FALSE (0000ms, 1153ms total)
T7764 415:893 JLINK_IsHalted()  returns FALSE (0000ms, 1153ms total)
T514C 415:995 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 BD 43  returns 0x04 (0000ms, 1153ms total)
T7764 415:996 JLINK_IsHalted()  returns FALSE (0000ms, 1154ms total)
T7764 416:097 JLINK_IsHalted()  returns FALSE (0000ms, 1154ms total)
T7764 416:198 JLINK_IsHalted()  returns FALSE (0000ms, 1154ms total)
T7764 416:299 JLINK_IsHalted()  returns FALSE (0000ms, 1154ms total)
T7764 416:399 JLINK_IsHalted()  returns FALSE (0000ms, 1154ms total)
T7764 416:500 JLINK_IsHalted()  returns FALSE (0000ms, 1154ms total)
T514C 416:602 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 BD 43  returns 0x04 (0001ms, 1155ms total)
T7764 416:603 JLINK_IsHalted()  returns FALSE (0000ms, 1155ms total)
T7764 416:704 JLINK_IsHalted()  returns FALSE (0000ms, 1155ms total)
T7764 416:805 JLINK_IsHalted()  returns FALSE (0000ms, 1155ms total)
T7764 416:907 JLINK_IsHalted()  returns FALSE (0000ms, 1155ms total)
T7764 417:008 JLINK_IsHalted()  returns FALSE (0000ms, 1155ms total)
T7764 417:109 JLINK_IsHalted()  returns FALSE (0000ms, 1155ms total)
T514C 417:210 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 BD 43  returns 0x04 (0001ms, 1156ms total)
T7764 417:211 JLINK_IsHalted()  returns FALSE (0000ms, 1156ms total)
T7764 417:312 JLINK_IsHalted()  returns FALSE (0000ms, 1156ms total)
T7764 417:413 JLINK_IsHalted()  returns FALSE (0000ms, 1156ms total)
T7764 417:515 JLINK_IsHalted()  returns FALSE (0000ms, 1156ms total)
T7764 417:616 JLINK_IsHalted()  returns FALSE (0000ms, 1156ms total)
T7764 417:718 JLINK_IsHalted()  returns FALSE (0000ms, 1156ms total)
T514C 417:820 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 BE 43  returns 0x04 (0000ms, 1156ms total)
T7764 417:821 JLINK_IsHalted()  returns FALSE (0000ms, 1156ms total)
T7764 417:922 JLINK_IsHalted()  returns FALSE (0000ms, 1156ms total)
T7764 418:023 JLINK_IsHalted()  returns FALSE (0000ms, 1156ms total)
T7764 418:124 JLINK_IsHalted()  returns FALSE (0000ms, 1156ms total)
T7764 418:225 JLINK_IsHalted()  returns FALSE (0001ms, 1157ms total)
T7764 418:326 JLINK_IsHalted()  returns FALSE (0000ms, 1156ms total)
T514C 418:427 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 BE 43  returns 0x04 (0001ms, 1157ms total)
T7764 418:428 JLINK_IsHalted()  returns FALSE (0000ms, 1157ms total)
T7764 418:530 JLINK_IsHalted()  returns FALSE (0000ms, 1157ms total)
T7764 418:631 JLINK_IsHalted()  returns FALSE (0000ms, 1157ms total)
T7764 418:733 JLINK_IsHalted()  returns FALSE (0000ms, 1157ms total)
T7764 418:835 JLINK_IsHalted()  returns FALSE (0000ms, 1157ms total)
T7764 418:936 JLINK_IsHalted()  returns FALSE (0000ms, 1157ms total)
T514C 419:036 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 BE 43  returns 0x04 (0000ms, 1157ms total)
T7764 419:037 JLINK_IsHalted()  returns FALSE (0000ms, 1157ms total)
T7764 419:139 JLINK_IsHalted()  returns FALSE (0000ms, 1157ms total)
T7764 419:240 JLINK_IsHalted()  returns FALSE (0000ms, 1157ms total)
T7764 419:341 JLINK_IsHalted()  returns FALSE (0000ms, 1157ms total)
T7764 419:442 JLINK_IsHalted()  returns FALSE (0000ms, 1157ms total)
T7764 419:543 JLINK_IsHalted()  returns FALSE (0000ms, 1157ms total)
T514C 419:645 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 BF 43  returns 0x04 (0001ms, 1158ms total)
T7764 419:646 JLINK_IsHalted()  returns FALSE (0000ms, 1158ms total)
T7764 419:747 JLINK_IsHalted()  returns FALSE (0000ms, 1158ms total)
T7764 419:849 JLINK_IsHalted()  returns FALSE (0000ms, 1158ms total)
T7764 419:950 JLINK_IsHalted()  returns FALSE (0000ms, 1158ms total)
T7764 420:051 JLINK_IsHalted()  returns FALSE (0000ms, 1158ms total)
T7764 420:152 JLINK_IsHalted()  returns FALSE (0000ms, 1158ms total)
T514C 420:253 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 BF 43  returns 0x04 (0001ms, 1159ms total)
T7764 420:254 JLINK_IsHalted()  returns FALSE (0000ms, 1159ms total)
T7764 420:356 JLINK_IsHalted()  returns FALSE (0000ms, 1159ms total)
T7764 420:457 JLINK_IsHalted()  returns FALSE (0000ms, 1159ms total)
T7764 420:558 JLINK_IsHalted()  returns FALSE (0000ms, 1159ms total)
T7764 420:659 JLINK_IsHalted()  returns FALSE (0000ms, 1159ms total)
T7764 420:761 JLINK_IsHalted()  returns FALSE (0000ms, 1159ms total)
T514C 420:862 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 BF 43  returns 0x04 (0001ms, 1160ms total)
T7764 420:863 JLINK_IsHalted()  returns FALSE (0000ms, 1160ms total)
T7764 420:964 JLINK_IsHalted()  returns FALSE (0000ms, 1160ms total)
T7764 421:065 JLINK_IsHalted()  returns FALSE (0000ms, 1160ms total)
T7764 421:166 JLINK_IsHalted()  returns FALSE (0000ms, 1160ms total)
T7764 421:268 JLINK_IsHalted()  returns FALSE (0000ms, 1160ms total)
T7764 421:369 JLINK_IsHalted()  returns FALSE (0000ms, 1160ms total)
T514C 421:470 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 BF 43  returns 0x04 (0001ms, 1161ms total)
T7764 421:471 JLINK_IsHalted()  returns FALSE (0000ms, 1161ms total)
T7764 421:573 JLINK_IsHalted()  returns FALSE (0000ms, 1161ms total)
T7764 421:674 JLINK_IsHalted()  returns FALSE (0000ms, 1161ms total)
T7764 421:775 JLINK_IsHalted()  returns FALSE (0000ms, 1161ms total)
T7764 421:876 JLINK_IsHalted()  returns FALSE (0000ms, 1161ms total)
T514C 421:977 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 C0 43  returns 0x04 (0000ms, 1161ms total)
T7764 421:978 JLINK_IsHalted()  returns FALSE (0000ms, 1161ms total)
T7764 422:080 JLINK_IsHalted()  returns FALSE (0000ms, 1161ms total)
T7764 422:181 JLINK_IsHalted()  returns FALSE (0000ms, 1161ms total)
T7764 422:283 JLINK_IsHalted()  returns FALSE (0000ms, 1161ms total)
T7764 422:384 JLINK_IsHalted()  returns FALSE (0000ms, 1161ms total)
T7764 422:485 JLINK_IsHalted()  returns FALSE (0000ms, 1161ms total)
T514C 422:586 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 C0 43  returns 0x04 (0000ms, 1161ms total)
T7764 422:587 JLINK_IsHalted()  returns FALSE (0000ms, 1161ms total)
T7764 422:689 JLINK_IsHalted()  returns FALSE (0000ms, 1161ms total)
T7764 422:790 JLINK_IsHalted()  returns FALSE (0000ms, 1161ms total)
T7764 422:891 JLINK_IsHalted()  returns FALSE (0000ms, 1161ms total)
T7764 422:992 JLINK_IsHalted()  returns FALSE (0000ms, 1161ms total)
T7764 423:093 JLINK_IsHalted()  returns FALSE (0000ms, 1161ms total)
T514C 423:194 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 C0 43  returns 0x04 (0000ms, 1161ms total)
T7764 423:195 JLINK_IsHalted()  returns FALSE (0000ms, 1161ms total)
T7764 423:297 JLINK_IsHalted()  returns FALSE (0000ms, 1161ms total)
T7764 423:398 JLINK_IsHalted()  returns FALSE (0000ms, 1161ms total)
T7764 423:499 JLINK_IsHalted()  returns FALSE (0000ms, 1161ms total)
T7764 423:601 JLINK_IsHalted()  returns FALSE (0000ms, 1161ms total)
T7764 423:702 JLINK_IsHalted()  returns FALSE (0000ms, 1161ms total)
T514C 423:803 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 C1 43  returns 0x04 (0000ms, 1161ms total)
T7764 423:804 JLINK_IsHalted()  returns FALSE (0000ms, 1161ms total)
T7764 423:906 JLINK_IsHalted()  returns FALSE (0000ms, 1161ms total)
T7764 424:007 JLINK_IsHalted()  returns FALSE (0000ms, 1161ms total)
T7764 424:108 JLINK_IsHalted()  returns FALSE (0000ms, 1161ms total)
T7764 424:209 JLINK_IsHalted()  returns FALSE (0000ms, 1161ms total)
T7764 424:310 JLINK_IsHalted()  returns FALSE (0000ms, 1161ms total)
T514C 424:412 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 C1 43  returns 0x04 (0001ms, 1162ms total)
T7764 424:413 JLINK_IsHalted()  returns FALSE (0000ms, 1162ms total)
T7764 424:514 JLINK_IsHalted()  returns FALSE (0000ms, 1162ms total)
T7764 424:615 JLINK_IsHalted()  returns FALSE (0000ms, 1162ms total)
T7764 424:717 JLINK_IsHalted()  returns FALSE (0000ms, 1162ms total)
T7764 424:818 JLINK_IsHalted()  returns FALSE (0000ms, 1162ms total)
T7764 424:919 JLINK_IsHalted()  returns FALSE (0000ms, 1162ms total)
T514C 425:020 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 C1 43  returns 0x04 (0001ms, 1163ms total)
T7764 425:021 JLINK_IsHalted()  returns FALSE (0001ms, 1164ms total)
T7764 425:123 JLINK_IsHalted()  returns FALSE (0000ms, 1163ms total)
T7764 425:224 JLINK_IsHalted()  returns FALSE (0000ms, 1163ms total)
T7764 425:325 JLINK_IsHalted()  returns FALSE (0000ms, 1163ms total)
T7764 425:427 JLINK_IsHalted()  returns FALSE (0000ms, 1163ms total)
T7764 425:528 JLINK_IsHalted()  returns FALSE (0000ms, 1163ms total)
T514C 425:630 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 C2 43  returns 0x04 (0000ms, 1163ms total)
T7764 425:631 JLINK_IsHalted()  returns FALSE (0000ms, 1163ms total)
T7764 425:732 JLINK_IsHalted()  returns FALSE (0000ms, 1163ms total)
T7764 425:833 JLINK_IsHalted()  returns FALSE (0000ms, 1163ms total)
T7764 425:934 JLINK_IsHalted()  returns FALSE (0000ms, 1163ms total)
T7764 426:036 JLINK_IsHalted()  returns FALSE (0000ms, 1163ms total)
T7764 426:137 JLINK_IsHalted()  returns FALSE (0000ms, 1163ms total)
T514C 426:238 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 C2 43  returns 0x04 (0001ms, 1164ms total)
T7764 426:239 JLINK_IsHalted()  returns FALSE (0001ms, 1165ms total)
T7764 426:340 JLINK_IsHalted()  returns FALSE (0000ms, 1164ms total)
T7764 426:441 JLINK_IsHalted()  returns FALSE (0000ms, 1164ms total)
T7764 426:542 JLINK_IsHalted()  returns FALSE (0000ms, 1164ms total)
T7764 426:643 JLINK_IsHalted()  returns FALSE (0000ms, 1164ms total)
T7764 426:744 JLINK_IsHalted()  returns FALSE (0000ms, 1164ms total)
T514C 426:845 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 C2 43  returns 0x04 (0000ms, 1164ms total)
T7764 426:846 JLINK_IsHalted()  returns FALSE (0000ms, 1164ms total)
T7764 426:947 JLINK_IsHalted()  returns FALSE (0000ms, 1164ms total)
T7764 427:048 JLINK_IsHalted()  returns FALSE (0000ms, 1164ms total)
T7764 427:149 JLINK_IsHalted()  returns FALSE (0000ms, 1164ms total)
T7764 427:251 JLINK_IsHalted()  returns FALSE (0000ms, 1164ms total)
T514C 427:352 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 C2 43  returns 0x04 (0001ms, 1165ms total)
T7764 427:353 JLINK_IsHalted()  returns FALSE (0000ms, 1165ms total)
T7764 427:455 JLINK_IsHalted()  returns FALSE (0000ms, 1165ms total)
T7764 427:556 JLINK_IsHalted()  returns FALSE (0000ms, 1165ms total)
T7764 427:657 JLINK_IsHalted()  returns FALSE (0000ms, 1165ms total)
T7764 427:759 JLINK_IsHalted()  returns FALSE (0000ms, 1165ms total)
T7764 427:860 JLINK_IsHalted()  returns FALSE (0000ms, 1165ms total)
T514C 427:961 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 C3 43  returns 0x04 (0001ms, 1166ms total)
T7764 427:962 JLINK_IsHalted()  returns FALSE (0000ms, 1166ms total)
T7764 428:063 JLINK_IsHalted()  returns FALSE (0000ms, 1166ms total)
T7764 428:164 JLINK_IsHalted()  returns FALSE (0000ms, 1166ms total)
T7764 428:265 JLINK_IsHalted()  returns FALSE (0000ms, 1166ms total)
T7764 428:367 JLINK_IsHalted()  returns FALSE (0000ms, 1166ms total)
T7764 428:468 JLINK_IsHalted()  returns FALSE (0000ms, 1166ms total)
T514C 428:569 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 C3 43  returns 0x04 (0000ms, 1166ms total)
T7764 428:570 JLINK_IsHalted()  returns FALSE (0000ms, 1166ms total)
T7764 428:671 JLINK_IsHalted()  returns FALSE (0000ms, 1166ms total)
T7764 428:772 JLINK_IsHalted()  returns FALSE (0000ms, 1166ms total)
T7764 428:874 JLINK_IsHalted()  returns FALSE (0000ms, 1166ms total)
T7764 428:975 JLINK_IsHalted()  returns FALSE (0001ms, 1167ms total)
T7764 429:077 JLINK_IsHalted()  returns FALSE (0000ms, 1166ms total)
T514C 429:178 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 C3 43  returns 0x04 (0000ms, 1166ms total)
T7764 429:179 JLINK_IsHalted()  returns FALSE (0000ms, 1166ms total)
T7764 429:280 JLINK_IsHalted()  returns FALSE (0000ms, 1166ms total)
T7764 429:381 JLINK_IsHalted()  returns FALSE (0000ms, 1166ms total)
T7764 429:482 JLINK_IsHalted()  returns FALSE (0000ms, 1166ms total)
T7764 429:583 JLINK_IsHalted()  returns FALSE (0000ms, 1166ms total)
T7764 429:685 JLINK_IsHalted()  returns FALSE (0000ms, 1166ms total)
T514C 429:786 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 C4 43  returns 0x04 (0000ms, 1166ms total)
T7764 429:787 JLINK_IsHalted()  returns FALSE (0000ms, 1166ms total)
T7764 429:888 JLINK_IsHalted()  returns FALSE (0000ms, 1166ms total)
T7764 429:989 JLINK_IsHalted()  returns FALSE (0000ms, 1166ms total)
T7764 430:090 JLINK_IsHalted()  returns FALSE (0000ms, 1166ms total)
T7764 430:192 JLINK_IsHalted()  returns FALSE (0000ms, 1166ms total)
T7764 430:293 JLINK_IsHalted()  returns FALSE (0000ms, 1166ms total)
T514C 430:394 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 C4 43  returns 0x04 (0000ms, 1166ms total)
T7764 430:395 JLINK_IsHalted()  returns FALSE (0000ms, 1166ms total)
T7764 430:496 JLINK_IsHalted()  returns FALSE (0000ms, 1166ms total)
T7764 430:597 JLINK_IsHalted()  returns FALSE (0000ms, 1166ms total)
T7764 430:698 JLINK_IsHalted()  returns FALSE (0000ms, 1166ms total)
T7764 430:800 JLINK_IsHalted()  returns FALSE (0000ms, 1166ms total)
T7764 430:901 JLINK_IsHalted()  returns FALSE (0000ms, 1166ms total)
T514C 431:002 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 C4 43  returns 0x04 (0000ms, 1166ms total)
T7764 431:003 JLINK_IsHalted()  returns FALSE (0000ms, 1166ms total)
T7764 431:104 JLINK_IsHalted()  returns FALSE (0000ms, 1166ms total)
T7764 431:205 JLINK_IsHalted()  returns FALSE (0000ms, 1166ms total)
T7764 431:306 JLINK_IsHalted()  returns FALSE (0000ms, 1166ms total)
T7764 431:407 JLINK_IsHalted()  returns FALSE (0000ms, 1166ms total)
T514C 431:508 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 C4 43  returns 0x04 (0001ms, 1167ms total)
T7764 431:509 JLINK_IsHalted()  returns FALSE (0000ms, 1167ms total)
T7764 431:611 JLINK_IsHalted()  returns FALSE (0000ms, 1167ms total)
T7764 431:713 JLINK_IsHalted()  returns FALSE (0000ms, 1167ms total)
T7764 431:814 JLINK_IsHalted()  returns FALSE (0000ms, 1167ms total)
T7764 431:916 JLINK_IsHalted()  returns FALSE (0000ms, 1167ms total)
T7764 432:017 JLINK_IsHalted()  returns FALSE (0000ms, 1167ms total)
T514C 432:119 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 C5 43  returns 0x04 (0001ms, 1168ms total)
T7764 432:120 JLINK_IsHalted()  returns FALSE (0000ms, 1168ms total)
T7764 432:221 JLINK_IsHalted()  returns FALSE (0000ms, 1168ms total)
T7764 432:322 JLINK_IsHalted()  returns FALSE (0000ms, 1168ms total)
T7764 432:423 JLINK_IsHalted()  returns FALSE (0000ms, 1168ms total)
T7764 432:525 JLINK_IsHalted()  returns FALSE (0000ms, 1168ms total)
T7764 432:627 JLINK_IsHalted()  returns FALSE (0000ms, 1168ms total)
T514C 432:728 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 C5 43  returns 0x04 (0001ms, 1169ms total)
T7764 432:729 JLINK_IsHalted()  returns FALSE (0000ms, 1169ms total)
T7764 432:831 JLINK_IsHalted()  returns FALSE (0000ms, 1169ms total)
T7764 432:932 JLINK_IsHalted()  returns FALSE (0000ms, 1169ms total)
T7764 433:033 JLINK_IsHalted()  returns FALSE (0000ms, 1169ms total)
T7764 433:134 JLINK_IsHalted()  returns FALSE (0000ms, 1169ms total)
T7764 433:235 JLINK_IsHalted()  returns FALSE (0000ms, 1169ms total)
T514C 433:336 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 C5 43  returns 0x04 (0000ms, 1169ms total)
T7764 433:337 JLINK_IsHalted()  returns FALSE (0000ms, 1169ms total)
T7764 433:439 JLINK_IsHalted()  returns FALSE (0000ms, 1169ms total)
T7764 433:540 JLINK_IsHalted()  returns FALSE (0000ms, 1169ms total)
T7764 433:641 JLINK_IsHalted()  returns FALSE (0000ms, 1169ms total)
T7764 433:743 JLINK_IsHalted()  returns FALSE (0000ms, 1169ms total)
T7764 433:844 JLINK_IsHalted()  returns FALSE (0000ms, 1169ms total)
T514C 433:945 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 C6 43  returns 0x04 (0001ms, 1170ms total)
T7764 433:946 JLINK_IsHalted()  returns FALSE (0000ms, 1170ms total)
T7764 434:048 JLINK_IsHalted()  returns FALSE (0000ms, 1170ms total)
T7764 434:149 JLINK_IsHalted()  returns FALSE (0000ms, 1170ms total)
T7764 434:249 JLINK_IsHalted()  returns FALSE (0000ms, 1170ms total)
T7764 434:351 JLINK_IsHalted()  returns FALSE (0000ms, 1170ms total)
T7764 434:452 JLINK_IsHalted()  returns FALSE (0000ms, 1170ms total)
T514C 434:554 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 C6 43  returns 0x04 (0000ms, 1170ms total)
T7764 434:555 JLINK_IsHalted()  returns FALSE (0000ms, 1170ms total)
T7764 434:656 JLINK_IsHalted()  returns FALSE (0000ms, 1170ms total)
T7764 434:758 JLINK_IsHalted()  returns FALSE (0000ms, 1170ms total)
T7764 434:859 JLINK_IsHalted()  returns FALSE (0000ms, 1170ms total)
T7764 434:960 JLINK_IsHalted()  returns FALSE (0000ms, 1170ms total)
T7764 435:061 JLINK_IsHalted()  returns FALSE (0000ms, 1170ms total)
T514C 435:163 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 C6 43  returns 0x04 (0001ms, 1171ms total)
T7764 435:164 JLINK_IsHalted()  returns FALSE (0000ms, 1171ms total)
T7764 435:265 JLINK_IsHalted()  returns FALSE (0000ms, 1171ms total)
T7764 435:366 JLINK_IsHalted()  returns FALSE (0000ms, 1171ms total)
T7764 435:468 JLINK_IsHalted()  returns FALSE (0000ms, 1171ms total)
T7764 435:569 JLINK_IsHalted()  returns FALSE (0000ms, 1171ms total)
T7764 435:670 JLINK_IsHalted()  returns FALSE (0000ms, 1171ms total)
T514C 435:771 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 C7 43  returns 0x04 (0000ms, 1171ms total)
T7764 435:772 JLINK_IsHalted()  returns FALSE (0000ms, 1171ms total)
T7764 435:874 JLINK_IsHalted()  returns FALSE (0000ms, 1171ms total)
T7764 435:975 JLINK_IsHalted()  returns FALSE (0001ms, 1172ms total)
T7764 436:077 JLINK_IsHalted()  returns FALSE (0000ms, 1171ms total)
T7764 436:178 JLINK_IsHalted()  returns FALSE (0000ms, 1171ms total)
T7764 436:279 JLINK_IsHalted()  returns FALSE (0000ms, 1171ms total)
T514C 436:380 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 C7 43  returns 0x04 (0001ms, 1172ms total)
T7764 436:381 JLINK_IsHalted()  returns FALSE (0000ms, 1172ms total)
T7764 436:482 JLINK_IsHalted()  returns FALSE (0000ms, 1172ms total)
T7764 436:584 JLINK_IsHalted()  returns FALSE (0000ms, 1172ms total)
T7764 436:685 JLINK_IsHalted()  returns FALSE (0000ms, 1172ms total)
T7764 436:786 JLINK_IsHalted()  returns FALSE (0000ms, 1172ms total)
T7764 436:888 JLINK_IsHalted()  returns FALSE (0000ms, 1172ms total)
T514C 436:989 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 C7 43  returns 0x04 (0000ms, 1172ms total)
T7764 436:990 JLINK_IsHalted()  returns FALSE (0000ms, 1172ms total)
T7764 437:091 JLINK_IsHalted()  returns FALSE (0000ms, 1172ms total)
T7764 437:193 JLINK_IsHalted()  returns FALSE (0000ms, 1172ms total)
T7764 437:295 JLINK_IsHalted()  returns FALSE (0000ms, 1172ms total)
T7764 437:396 JLINK_IsHalted()  returns FALSE (0000ms, 1172ms total)
T7764 437:497 JLINK_IsHalted()  returns FALSE (0000ms, 1172ms total)
T514C 437:598 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 C8 43  returns 0x04 (0001ms, 1173ms total)
T7764 437:599 JLINK_IsHalted()  returns FALSE (0001ms, 1174ms total)
T7764 437:701 JLINK_IsHalted()  returns FALSE (0000ms, 1173ms total)
T7764 437:802 JLINK_IsHalted()  returns FALSE (0000ms, 1173ms total)
T7764 437:904 JLINK_IsHalted()  returns FALSE (0000ms, 1173ms total)
T7764 438:005 JLINK_IsHalted()  returns FALSE (0000ms, 1173ms total)
T7764 438:106 JLINK_IsHalted()  returns FALSE (0000ms, 1173ms total)
T514C 438:207 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 C8 43  returns 0x04 (0001ms, 1174ms total)
T7764 438:208 JLINK_IsHalted()  returns FALSE (0000ms, 1174ms total)
T7764 438:310 JLINK_IsHalted()  returns FALSE (0000ms, 1174ms total)
T7764 438:411 JLINK_IsHalted()  returns FALSE (0000ms, 1174ms total)
T7764 438:512 JLINK_IsHalted()  returns FALSE (0000ms, 1174ms total)
T7764 438:614 JLINK_IsHalted()  returns FALSE (0000ms, 1174ms total)
T7764 438:715 JLINK_IsHalted()  returns FALSE (0000ms, 1174ms total)
T514C 438:816 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 C8 43  returns 0x04 (0001ms, 1175ms total)
T7764 438:817 JLINK_IsHalted()  returns FALSE (0000ms, 1175ms total)
T7764 438:919 JLINK_IsHalted()  returns FALSE (0000ms, 1175ms total)
T7764 439:020 JLINK_IsHalted()  returns FALSE (0000ms, 1175ms total)
T7764 439:121 JLINK_IsHalted()  returns FALSE (0000ms, 1175ms total)
T7764 439:223 JLINK_IsHalted()  returns FALSE (0000ms, 1175ms total)
T7764 439:324 JLINK_IsHalted()  returns FALSE (0000ms, 1175ms total)
T514C 439:425 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 C8 43  returns 0x04 (0001ms, 1176ms total)
T7764 439:426 JLINK_IsHalted()  returns FALSE (0000ms, 1176ms total)
T7764 439:527 JLINK_IsHalted()  returns FALSE (0000ms, 1176ms total)
T7764 439:628 JLINK_IsHalted()  returns FALSE (0000ms, 1176ms total)
T7764 439:730 JLINK_IsHalted()  returns FALSE (0000ms, 1176ms total)
T7764 439:831 JLINK_IsHalted()  returns FALSE (0000ms, 1176ms total)
T7764 439:932 JLINK_IsHalted()  returns FALSE (0000ms, 1176ms total)
T514C 440:033 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 C9 43  returns 0x04 (0001ms, 1177ms total)
T7764 440:034 JLINK_IsHalted()  returns FALSE (0001ms, 1178ms total)
T7764 440:135 JLINK_IsHalted()  returns FALSE (0000ms, 1177ms total)
T7764 440:236 JLINK_IsHalted()  returns FALSE (0000ms, 1177ms total)
T7764 440:338 JLINK_IsHalted()  returns FALSE (0000ms, 1177ms total)
T7764 440:439 JLINK_IsHalted()  returns FALSE (0000ms, 1177ms total)
T514C 440:541 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 C9 43  returns 0x04 (0001ms, 1178ms total)
T7764 440:542 JLINK_IsHalted()  returns FALSE (0000ms, 1178ms total)
T7764 440:643 JLINK_IsHalted()  returns FALSE (0000ms, 1178ms total)
T7764 440:744 JLINK_IsHalted()  returns FALSE (0000ms, 1178ms total)
T7764 440:845 JLINK_IsHalted()  returns FALSE (0000ms, 1178ms total)
T7764 440:947 JLINK_IsHalted()  returns FALSE (0000ms, 1178ms total)
T7764 441:048 JLINK_IsHalted()  returns FALSE (0000ms, 1178ms total)
T514C 441:150 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 C9 43  returns 0x04 (0001ms, 1179ms total)
T7764 441:151 JLINK_IsHalted()  returns FALSE (0000ms, 1179ms total)
T7764 441:252 JLINK_IsHalted()  returns FALSE (0000ms, 1179ms total)
T7764 441:353 JLINK_IsHalted()  returns FALSE (0000ms, 1179ms total)
T7764 441:455 JLINK_IsHalted()  returns FALSE (0000ms, 1179ms total)
T7764 441:556 JLINK_IsHalted()  returns FALSE (0000ms, 1179ms total)
T7764 441:658 JLINK_IsHalted()  returns FALSE (0000ms, 1179ms total)
T514C 441:759 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 CA 43  returns 0x04 (0000ms, 1179ms total)
T7764 441:760 JLINK_IsHalted()  returns FALSE (0000ms, 1179ms total)
T7764 441:861 JLINK_IsHalted()  returns FALSE (0000ms, 1179ms total)
T7764 441:962 JLINK_IsHalted()  returns FALSE (0000ms, 1179ms total)
T7764 442:064 JLINK_IsHalted()  returns FALSE (0000ms, 1179ms total)
T7764 442:165 JLINK_IsHalted()  returns FALSE (0000ms, 1179ms total)
T7764 442:266 JLINK_IsHalted()  returns FALSE (0000ms, 1179ms total)
T514C 442:367 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 CA 43  returns 0x04 (0000ms, 1179ms total)
T7764 442:368 JLINK_IsHalted()  returns FALSE (0000ms, 1179ms total)
T7764 442:469 JLINK_IsHalted()  returns FALSE (0000ms, 1179ms total)
T7764 442:571 JLINK_IsHalted()  returns FALSE (0000ms, 1179ms total)
T7764 442:672 JLINK_IsHalted()  returns FALSE (0000ms, 1179ms total)
T7764 442:773 JLINK_IsHalted()  returns FALSE (0000ms, 1179ms total)
T7764 442:875 JLINK_IsHalted()  returns FALSE (0000ms, 1179ms total)
T514C 442:976 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 CA 43  returns 0x04 (0001ms, 1180ms total)
T7764 442:977 JLINK_IsHalted()  returns FALSE (0000ms, 1180ms total)
T7764 443:078 JLINK_IsHalted()  returns FALSE (0000ms, 1180ms total)
T7764 443:179 JLINK_IsHalted()  returns FALSE (0000ms, 1180ms total)
T7764 443:280 JLINK_IsHalted()  returns FALSE (0000ms, 1180ms total)
T7764 443:381 JLINK_IsHalted()  returns FALSE (0000ms, 1180ms total)
T7764 443:483 JLINK_IsHalted()  returns FALSE (0000ms, 1180ms total)
T514C 443:584 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 CB 43  returns 0x04 (0001ms, 1181ms total)
T7764 443:585 JLINK_IsHalted()  returns FALSE (0000ms, 1181ms total)
T7764 443:687 JLINK_IsHalted()  returns FALSE (0000ms, 1181ms total)
T7764 443:788 JLINK_IsHalted()  returns FALSE (0000ms, 1181ms total)
T7764 443:889 JLINK_IsHalted()  returns FALSE (0000ms, 1181ms total)
T7764 443:990 JLINK_IsHalted()  returns FALSE (0000ms, 1181ms total)
T7764 444:091 JLINK_IsHalted()  returns FALSE (0000ms, 1181ms total)
T514C 444:193 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 CB 43  returns 0x04 (0000ms, 1181ms total)
T7764 444:194 JLINK_IsHalted()  returns FALSE (0000ms, 1181ms total)
T7764 444:295 JLINK_IsHalted()  returns FALSE (0000ms, 1181ms total)
T7764 444:397 JLINK_IsHalted()  returns FALSE (0000ms, 1181ms total)
T7764 444:498 JLINK_IsHalted()  returns FALSE (0000ms, 1181ms total)
T7764 444:600 JLINK_IsHalted()  returns FALSE (0000ms, 1181ms total)
T7764 444:701 JLINK_IsHalted()  returns FALSE (0000ms, 1181ms total)
T514C 444:802 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 CB 43  returns 0x04 (0000ms, 1181ms total)
T7764 444:803 JLINK_IsHalted()  returns FALSE (0000ms, 1181ms total)
T7764 444:904 JLINK_IsHalted()  returns FALSE (0000ms, 1181ms total)
T7764 445:005 JLINK_IsHalted()  returns FALSE (0000ms, 1181ms total)
T7764 445:106 JLINK_IsHalted()  returns FALSE (0000ms, 1181ms total)
T7764 445:207 JLINK_IsHalted()  returns FALSE (0000ms, 1181ms total)
T7764 445:308 JLINK_IsHalted()  returns FALSE (0000ms, 1181ms total)
T514C 445:409 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 CB 43  returns 0x04 (0000ms, 1181ms total)
T7764 445:410 JLINK_IsHalted()  returns FALSE (0000ms, 1181ms total)
T7764 445:512 JLINK_IsHalted()  returns FALSE (0000ms, 1181ms total)
T7764 445:613 JLINK_IsHalted()  returns FALSE (0000ms, 1181ms total)
T7764 445:714 JLINK_IsHalted()  returns FALSE (0000ms, 1181ms total)
T7764 445:815 JLINK_IsHalted()  returns FALSE (0000ms, 1181ms total)
T7764 445:916 JLINK_IsHalted()  returns FALSE (0000ms, 1181ms total)
T514C 446:018 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 CC 43  returns 0x04 (0001ms, 1182ms total)
T7764 446:019 JLINK_IsHalted()  returns FALSE (0001ms, 1183ms total)
T7764 446:120 JLINK_IsHalted()  returns FALSE (0000ms, 1182ms total)
T7764 446:222 JLINK_IsHalted()  returns FALSE (0000ms, 1182ms total)
T7764 446:323 JLINK_IsHalted()  returns FALSE (0000ms, 1182ms total)
T7764 446:424 JLINK_IsHalted()  returns FALSE (0000ms, 1182ms total)
T7764 446:525 JLINK_IsHalted()  returns FALSE (0000ms, 1182ms total)
T514C 446:627 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 CC 43  returns 0x04 (0001ms, 1183ms total)
T7764 446:628 JLINK_IsHalted()  returns FALSE (0001ms, 1184ms total)
T7764 446:729 JLINK_IsHalted()  returns FALSE (0000ms, 1183ms total)
T7764 446:831 JLINK_IsHalted()  returns FALSE (0000ms, 1183ms total)
T7764 446:932 JLINK_IsHalted()  returns FALSE (0000ms, 1183ms total)
T7764 447:033 JLINK_IsHalted()  returns FALSE (0000ms, 1183ms total)
T514C 447:134 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 CC 43  returns 0x04 (0001ms, 1184ms total)
T7764 447:135 JLINK_IsHalted()  returns FALSE (0000ms, 1184ms total)
T7764 447:236 JLINK_IsHalted()  returns FALSE (0000ms, 1184ms total)
T7764 447:337 JLINK_IsHalted()  returns FALSE (0000ms, 1184ms total)
T7764 447:438 JLINK_IsHalted()  returns FALSE (0000ms, 1184ms total)
T7764 447:539 JLINK_IsHalted()  returns FALSE (0000ms, 1184ms total)
T7764 447:641 JLINK_IsHalted()  returns FALSE (0000ms, 1184ms total)
T514C 447:743 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 CD 43  returns 0x04 (0001ms, 1185ms total)
T7764 447:744 JLINK_IsHalted()  returns FALSE (0000ms, 1185ms total)
T7764 447:845 JLINK_IsHalted()  returns FALSE (0000ms, 1185ms total)
T7764 447:947 JLINK_IsHalted()  returns FALSE (0000ms, 1185ms total)
T7764 448:048 JLINK_IsHalted()  returns FALSE (0000ms, 1185ms total)
T7764 448:149 JLINK_IsHalted()  returns FALSE (0000ms, 1185ms total)
T7764 448:250 JLINK_IsHalted()  returns FALSE (0000ms, 1185ms total)
T514C 448:351 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 CD 43  returns 0x04 (0001ms, 1186ms total)
T7764 448:352 JLINK_IsHalted()  returns FALSE (0000ms, 1186ms total)
T7764 448:454 JLINK_IsHalted()  returns FALSE (0000ms, 1186ms total)
T7764 448:555 JLINK_IsHalted()  returns FALSE (0000ms, 1186ms total)
T7764 448:657 JLINK_IsHalted()  returns FALSE (0000ms, 1186ms total)
T7764 448:758 JLINK_IsHalted()  returns FALSE (0000ms, 1186ms total)
T7764 448:859 JLINK_IsHalted()  returns FALSE (0000ms, 1186ms total)
T514C 448:960 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 CD 43  returns 0x04 (0001ms, 1187ms total)
T7764 448:961 JLINK_IsHalted()  returns FALSE (0000ms, 1187ms total)
T7764 449:063 JLINK_IsHalted()  returns FALSE (0000ms, 1187ms total)
T7764 449:164 JLINK_IsHalted()  returns FALSE (0000ms, 1187ms total)
T7764 449:265 JLINK_IsHalted()  returns FALSE (0000ms, 1187ms total)
T7764 449:367 JLINK_IsHalted()  returns FALSE (0000ms, 1187ms total)
T7764 449:468 JLINK_IsHalted()  returns FALSE (0000ms, 1187ms total)
T514C 449:569 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 CE 43  returns 0x04 (0000ms, 1187ms total)
T7764 449:570 JLINK_IsHalted()  returns FALSE (0000ms, 1187ms total)
T7764 449:671 JLINK_IsHalted()  returns FALSE (0000ms, 1187ms total)
T7764 449:772 JLINK_IsHalted()  returns FALSE (0000ms, 1187ms total)
T7764 449:873 JLINK_IsHalted()  returns FALSE (0000ms, 1187ms total)
T7764 449:974 JLINK_IsHalted()  returns FALSE (0000ms, 1187ms total)
T7764 450:075 JLINK_IsHalted()  returns FALSE (0001ms, 1188ms total)
T514C 450:177 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 CE 43  returns 0x04 (0000ms, 1187ms total)
T7764 450:178 JLINK_IsHalted()  returns FALSE (0000ms, 1187ms total)
T7764 450:279 JLINK_IsHalted()  returns FALSE (0000ms, 1187ms total)
T7764 450:380 JLINK_IsHalted()  returns FALSE (0000ms, 1187ms total)
T7764 450:481 JLINK_IsHalted()  returns FALSE (0000ms, 1187ms total)
T7764 450:582 JLINK_IsHalted()  returns FALSE (0000ms, 1187ms total)
T7764 450:683 JLINK_IsHalted()  returns FALSE (0000ms, 1187ms total)
T514C 450:784 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 CE 43  returns 0x04 (0001ms, 1188ms total)
T7764 450:785 JLINK_IsHalted()  returns FALSE (0001ms, 1189ms total)
T7764 450:887 JLINK_IsHalted()  returns FALSE (0000ms, 1188ms total)
T7764 450:988 JLINK_IsHalted()  returns FALSE (0000ms, 1188ms total)
T7764 451:089 JLINK_IsHalted()  returns FALSE (0000ms, 1188ms total)
T7764 451:190 JLINK_IsHalted()  returns FALSE (0000ms, 1188ms total)
T7764 451:291 JLINK_IsHalted()  returns FALSE (0000ms, 1188ms total)
T514C 451:392 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 CE 43  returns 0x04 (0000ms, 1188ms total)
T7764 451:393 JLINK_IsHalted()  returns FALSE (0000ms, 1188ms total)
T7764 451:495 JLINK_IsHalted()  returns FALSE (0000ms, 1188ms total)
T7764 451:596 JLINK_IsHalted()  returns FALSE (0000ms, 1188ms total)
T7764 451:697 JLINK_IsHalted()  returns FALSE (0000ms, 1188ms total)
T7764 451:798 JLINK_IsHalted()  returns FALSE (0000ms, 1188ms total)
T514C 451:900 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 CF 43  returns 0x04 (0001ms, 1189ms total)
T7764 451:901 JLINK_IsHalted()  returns FALSE (0000ms, 1189ms total)
T7764 452:002 JLINK_IsHalted()  returns FALSE (0000ms, 1189ms total)
T7764 452:103 JLINK_IsHalted()  returns FALSE (0000ms, 1189ms total)
T7764 452:204 JLINK_IsHalted()  returns FALSE (0000ms, 1189ms total)
T7764 452:305 JLINK_IsHalted()  returns FALSE (0000ms, 1189ms total)
T7764 452:406 JLINK_IsHalted()  returns FALSE (0000ms, 1189ms total)
T514C 452:507 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 CF 43  returns 0x04 (0001ms, 1190ms total)
T7764 452:508 JLINK_IsHalted()  returns FALSE (0000ms, 1190ms total)
T7764 452:610 JLINK_IsHalted()  returns FALSE (0000ms, 1190ms total)
T7764 452:711 JLINK_IsHalted()  returns FALSE (0000ms, 1190ms total)
T7764 452:812 JLINK_IsHalted()  returns FALSE (0000ms, 1190ms total)
T7764 452:914 JLINK_IsHalted()  returns FALSE (0000ms, 1190ms total)
T7764 453:015 JLINK_IsHalted()  returns FALSE (0000ms, 1190ms total)
T514C 453:116 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 CF 43  returns 0x04 (0000ms, 1190ms total)
T7764 453:117 JLINK_IsHalted()  returns FALSE (0000ms, 1190ms total)
T7764 453:219 JLINK_IsHalted()  returns FALSE (0000ms, 1190ms total)
T7764 453:320 JLINK_IsHalted()  returns FALSE (0000ms, 1190ms total)
T7764 453:421 JLINK_IsHalted()  returns FALSE (0000ms, 1190ms total)
T7764 453:522 JLINK_IsHalted()  returns FALSE (0000ms, 1190ms total)
T7764 453:624 JLINK_IsHalted()  returns FALSE (0000ms, 1190ms total)
T514C 453:725 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 D0 43  returns 0x04 (0000ms, 1190ms total)
T7764 453:726 JLINK_IsHalted()  returns FALSE (0000ms, 1190ms total)
T7764 453:827 JLINK_IsHalted()  returns FALSE (0000ms, 1190ms total)
T7764 453:929 JLINK_IsHalted()  returns FALSE (0000ms, 1190ms total)
T7764 454:030 JLINK_IsHalted()  returns FALSE (0000ms, 1190ms total)
T7764 454:131 JLINK_IsHalted()  returns FALSE (0000ms, 1190ms total)
T7764 454:233 JLINK_IsHalted()  returns FALSE (0000ms, 1190ms total)
T514C 454:334 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 D0 43  returns 0x04 (0001ms, 1191ms total)
T7764 454:335 JLINK_IsHalted()  returns FALSE (0000ms, 1191ms total)
T7764 454:437 JLINK_IsHalted()  returns FALSE (0000ms, 1191ms total)
T7764 454:538 JLINK_IsHalted()  returns FALSE (0000ms, 1191ms total)
T7764 454:640 JLINK_IsHalted()  returns FALSE (0000ms, 1191ms total)
T7764 454:741 JLINK_IsHalted()  returns FALSE (0000ms, 1191ms total)
T7764 454:842 JLINK_IsHalted()  returns FALSE (0000ms, 1191ms total)
T514C 454:944 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 D0 43  returns 0x04 (0001ms, 1192ms total)
T7764 454:945 JLINK_IsHalted()  returns FALSE (0000ms, 1192ms total)
T7764 455:046 JLINK_IsHalted()  returns FALSE (0000ms, 1192ms total)
T7764 455:147 JLINK_IsHalted()  returns FALSE (0000ms, 1192ms total)
T7764 455:248 JLINK_IsHalted()  returns FALSE (0000ms, 1192ms total)
T7764 455:349 JLINK_IsHalted()  returns FALSE (0000ms, 1192ms total)
T7764 455:451 JLINK_IsHalted()  returns FALSE (0000ms, 1192ms total)
T514C 455:552 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 D1 43  returns 0x04 (0000ms, 1192ms total)
T7764 455:552 JLINK_IsHalted()  returns FALSE (0001ms, 1193ms total)
T7764 455:654 JLINK_IsHalted()  returns FALSE (0000ms, 1192ms total)
T7764 455:755 JLINK_IsHalted()  returns FALSE (0000ms, 1192ms total)
T7764 455:857 JLINK_IsHalted()  returns FALSE (0000ms, 1192ms total)
T7764 455:958 JLINK_IsHalted()  returns FALSE (0000ms, 1192ms total)
T7764 456:059 JLINK_IsHalted()  returns FALSE (0000ms, 1192ms total)
T514C 456:161 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 D1 43  returns 0x04 (0001ms, 1193ms total)
T7764 456:162 JLINK_IsHalted()  returns FALSE (0000ms, 1193ms total)
T7764 456:263 JLINK_IsHalted()  returns FALSE (0000ms, 1193ms total)
T7764 456:364 JLINK_IsHalted()  returns FALSE (0000ms, 1193ms total)
T7764 456:466 JLINK_IsHalted()  returns FALSE (0000ms, 1193ms total)
T7764 456:567 JLINK_IsHalted()  returns FALSE (0000ms, 1193ms total)
T7764 456:668 JLINK_IsHalted()  returns FALSE (0000ms, 1193ms total)
T514C 456:769 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 D1 43  returns 0x04 (0001ms, 1194ms total)
T7764 456:770 JLINK_IsHalted()  returns FALSE (0000ms, 1194ms total)
T7764 456:871 JLINK_IsHalted()  returns FALSE (0000ms, 1194ms total)
T7764 456:972 JLINK_IsHalted()  returns FALSE (0000ms, 1194ms total)
T7764 457:073 JLINK_IsHalted()  returns FALSE (0000ms, 1194ms total)
T7764 457:175 JLINK_IsHalted()  returns FALSE (0000ms, 1194ms total)
T7764 457:276 JLINK_IsHalted()  returns FALSE (0000ms, 1194ms total)
T514C 457:377 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 D1 43  returns 0x04 (0001ms, 1195ms total)
T7764 457:378 JLINK_IsHalted()  returns FALSE (0000ms, 1195ms total)
T7764 457:479 JLINK_IsHalted()  returns FALSE (0000ms, 1195ms total)
T7764 457:580 JLINK_IsHalted()  returns FALSE (0000ms, 1195ms total)
T7764 457:681 JLINK_IsHalted()  returns FALSE (0000ms, 1195ms total)
T7764 457:782 JLINK_IsHalted()  returns FALSE (0000ms, 1195ms total)
T7764 457:884 JLINK_IsHalted()  returns FALSE (0000ms, 1195ms total)
T514C 457:985 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 D2 43  returns 0x04 (0000ms, 1195ms total)
T7764 457:986 JLINK_IsHalted()  returns FALSE (0000ms, 1196ms total)
T7764 458:087 JLINK_IsHalted()  returns FALSE (0000ms, 1196ms total)
T7764 458:188 JLINK_IsHalted()  returns FALSE (0000ms, 1196ms total)
T7764 458:289 JLINK_IsHalted()  returns FALSE (0000ms, 1196ms total)
T7764 458:391 JLINK_IsHalted()  returns FALSE (0000ms, 1196ms total)
T514C 458:492 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 D2 43  returns 0x04 (0001ms, 1197ms total)
T7764 458:493 JLINK_IsHalted()  returns FALSE (0000ms, 1197ms total)
T7764 458:595 JLINK_IsHalted()  returns FALSE (0000ms, 1197ms total)
T7764 458:696 JLINK_IsHalted()  returns FALSE (0000ms, 1197ms total)
T7764 458:797 JLINK_IsHalted()  returns FALSE (0000ms, 1197ms total)
T7764 458:898 JLINK_IsHalted()  returns FALSE (0000ms, 1197ms total)
T7764 458:999 JLINK_IsHalted()  returns FALSE (0000ms, 1197ms total)
T514C 459:100 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 D2 43  returns 0x04 (0001ms, 1198ms total)
T7764 459:101 JLINK_IsHalted()  returns FALSE (0000ms, 1198ms total)
T7764 459:202 JLINK_IsHalted()  returns FALSE (0000ms, 1198ms total)
T7764 459:304 JLINK_IsHalted()  returns FALSE (0000ms, 1198ms total)
T7764 459:406 JLINK_IsHalted()  returns FALSE (0000ms, 1198ms total)
T7764 459:507 JLINK_IsHalted()  returns FALSE (0000ms, 1198ms total)
T7764 459:608 JLINK_IsHalted()  returns FALSE (0000ms, 1198ms total)
T514C 459:710 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 D3 43  returns 0x04 (0001ms, 1199ms total)
T7764 459:711 JLINK_IsHalted()  returns FALSE (0000ms, 1199ms total)
T7764 459:812 JLINK_IsHalted()  returns FALSE (0000ms, 1199ms total)
T7764 459:913 JLINK_IsHalted()  returns FALSE (0000ms, 1199ms total)
T7764 460:014 JLINK_IsHalted()  returns FALSE (0000ms, 1199ms total)
T7764 460:116 JLINK_IsHalted()  returns FALSE (0000ms, 1199ms total)
T7764 460:217 JLINK_IsHalted()  returns FALSE (0000ms, 1199ms total)
T514C 460:318 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 D3 43  returns 0x04 (0000ms, 1199ms total)
T7764 460:319 JLINK_IsHalted()  returns FALSE (0000ms, 1199ms total)
T7764 460:420 JLINK_IsHalted()  returns FALSE (0000ms, 1199ms total)
T7764 460:522 JLINK_IsHalted()  returns FALSE (0000ms, 1199ms total)
T7764 460:623 JLINK_IsHalted()  returns FALSE (0000ms, 1199ms total)
T7764 460:725 JLINK_IsHalted()  returns FALSE (0000ms, 1199ms total)
T7764 460:826 JLINK_IsHalted()  returns FALSE (0001ms, 1200ms total)
T514C 460:928 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 D3 43  returns 0x04 (0000ms, 1199ms total)
T7764 460:929 JLINK_IsHalted()  returns FALSE (0000ms, 1199ms total)
T7764 461:030 JLINK_IsHalted()  returns FALSE (0000ms, 1199ms total)
T7764 461:131 JLINK_IsHalted()  returns FALSE (0000ms, 1199ms total)
T7764 461:232 JLINK_IsHalted()  returns FALSE (0000ms, 1199ms total)
T7764 461:333 JLINK_IsHalted()  returns FALSE (0000ms, 1199ms total)
T7764 461:434 JLINK_IsHalted()  returns FALSE (0000ms, 1199ms total)
T514C 461:536 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 D3 43  returns 0x04 (0000ms, 1199ms total)
T7764 461:537 JLINK_IsHalted()  returns FALSE (0000ms, 1199ms total)
T7764 461:638 JLINK_IsHalted()  returns FALSE (0000ms, 1199ms total)
T7764 461:739 JLINK_IsHalted()  returns FALSE (0000ms, 1199ms total)
T7764 461:840 JLINK_IsHalted()  returns FALSE (0000ms, 1199ms total)
T7764 461:941 JLINK_IsHalted()  returns FALSE (0000ms, 1199ms total)
T7764 462:042 JLINK_IsHalted()  returns FALSE (0000ms, 1199ms total)
T514C 462:143 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 D4 43  returns 0x04 (0001ms, 1200ms total)
T7764 462:144 JLINK_IsHalted()  returns FALSE (0000ms, 1200ms total)
T7764 462:245 JLINK_IsHalted()  returns FALSE (0000ms, 1200ms total)
T7764 462:347 JLINK_IsHalted()  returns FALSE (0000ms, 1200ms total)
T7764 462:449 JLINK_IsHalted()  returns FALSE (0000ms, 1200ms total)
T7764 462:550 JLINK_IsHalted()  returns FALSE (0000ms, 1200ms total)
T7764 462:651 JLINK_IsHalted()  returns FALSE (0000ms, 1200ms total)
T514C 462:752 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 D4 43  returns 0x04 (0001ms, 1201ms total)
T7764 462:753 JLINK_IsHalted()  returns FALSE (0001ms, 1202ms total)
T7764 462:854 JLINK_IsHalted()  returns FALSE (0000ms, 1201ms total)
T7764 462:955 JLINK_IsHalted()  returns FALSE (0000ms, 1201ms total)
T7764 463:056 JLINK_IsHalted()  returns FALSE (0000ms, 1201ms total)
T7764 463:157 JLINK_IsHalted()  returns FALSE (0000ms, 1201ms total)
T514C 463:259 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 D4 43  returns 0x04 (0000ms, 1201ms total)
T7764 463:260 JLINK_IsHalted()  returns FALSE (0000ms, 1202ms total)
T7764 463:361 JLINK_IsHalted()  returns FALSE (0000ms, 1202ms total)
T7764 463:462 JLINK_IsHalted()  returns FALSE (0000ms, 1202ms total)
T7764 463:564 JLINK_IsHalted()  returns FALSE (0000ms, 1202ms total)
T7764 463:665 JLINK_IsHalted()  returns FALSE (0000ms, 1202ms total)
T7764 463:766 JLINK_IsHalted()  returns FALSE (0000ms, 1202ms total)
T514C 463:867 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 D5 43  returns 0x04 (0001ms, 1203ms total)
T7764 463:868 JLINK_IsHalted()  returns FALSE (0000ms, 1203ms total)
T7764 463:969 JLINK_IsHalted()  returns FALSE (0000ms, 1203ms total)
T7764 464:071 JLINK_IsHalted()  returns FALSE (0000ms, 1203ms total)
T7764 464:172 JLINK_IsHalted()  returns FALSE (0000ms, 1203ms total)
T7764 464:273 JLINK_IsHalted()  returns FALSE (0000ms, 1203ms total)
T7764 464:374 JLINK_IsHalted()  returns FALSE (0000ms, 1203ms total)
T514C 464:475 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 D5 43  returns 0x04 (0001ms, 1204ms total)
T7764 464:476 JLINK_IsHalted()  returns FALSE (0000ms, 1204ms total)
T7764 464:578 JLINK_IsHalted()  returns FALSE (0000ms, 1204ms total)
T7764 464:680 JLINK_IsHalted()  returns FALSE (0000ms, 1204ms total)
T7764 464:781 JLINK_IsHalted()  returns FALSE (0000ms, 1204ms total)
T7764 464:882 JLINK_IsHalted()  returns FALSE (0000ms, 1204ms total)
T7764 464:984 JLINK_IsHalted()  returns FALSE (0000ms, 1204ms total)
T514C 465:085 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 D5 43  returns 0x04 (0001ms, 1205ms total)
T7764 465:086 JLINK_IsHalted()  returns FALSE (0000ms, 1205ms total)
T7764 465:187 JLINK_IsHalted()  returns FALSE (0000ms, 1205ms total)
T7764 465:288 JLINK_IsHalted()  returns FALSE (0000ms, 1205ms total)
T7764 465:389 JLINK_IsHalted()  returns FALSE (0000ms, 1205ms total)
T7764 465:491 JLINK_IsHalted()  returns FALSE (0000ms, 1205ms total)
T7764 465:592 JLINK_IsHalted()  returns FALSE (0000ms, 1205ms total)
T514C 465:693 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 D6 43  returns 0x04 (0001ms, 1206ms total)
T7764 465:694 JLINK_IsHalted()  returns FALSE (0000ms, 1206ms total)
T7764 465:795 JLINK_IsHalted()  returns FALSE (0000ms, 1206ms total)
T7764 465:897 JLINK_IsHalted()  returns FALSE (0000ms, 1206ms total)
T7764 465:998 JLINK_IsHalted()  returns FALSE (0000ms, 1206ms total)
T7764 466:099 JLINK_IsHalted()  returns FALSE (0000ms, 1206ms total)
T7764 466:201 JLINK_IsHalted()  returns FALSE (0000ms, 1206ms total)
T514C 466:302 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 D6 43  returns 0x04 (0000ms, 1206ms total)
T7764 466:303 JLINK_IsHalted()  returns FALSE (0000ms, 1206ms total)
T7764 466:404 JLINK_IsHalted()  returns FALSE (0000ms, 1206ms total)
T7764 466:505 JLINK_IsHalted()  returns FALSE (0000ms, 1206ms total)
T7764 466:606 JLINK_IsHalted()  returns FALSE (0000ms, 1206ms total)
T7764 466:707 JLINK_IsHalted()  returns FALSE (0000ms, 1206ms total)
T7764 466:808 JLINK_IsHalted()  returns FALSE (0000ms, 1206ms total)
T514C 466:909 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 D6 43  returns 0x04 (0001ms, 1207ms total)
T7764 466:910 JLINK_IsHalted()  returns FALSE (0001ms, 1208ms total)
T7764 467:012 JLINK_IsHalted()  returns FALSE (0000ms, 1207ms total)
T7764 467:114 JLINK_IsHalted()  returns FALSE (0000ms, 1207ms total)
T7764 467:216 JLINK_IsHalted()  returns FALSE (0000ms, 1207ms total)
T7764 467:317 JLINK_IsHalted()  returns FALSE (0000ms, 1207ms total)
T7764 467:418 JLINK_IsHalted()  returns FALSE (0000ms, 1207ms total)
T514C 467:519 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 D6 43  returns 0x04 (0001ms, 1208ms total)
T7764 467:520 JLINK_IsHalted()  returns FALSE (0000ms, 1208ms total)
T7764 467:622 JLINK_IsHalted()  returns FALSE (0000ms, 1208ms total)
T7764 467:723 JLINK_IsHalted()  returns FALSE (0000ms, 1208ms total)
T7764 467:824 JLINK_IsHalted()  returns FALSE (0000ms, 1208ms total)
T7764 467:925 JLINK_IsHalted()  returns FALSE (0000ms, 1208ms total)
T7764 468:027 JLINK_IsHalted()  returns FALSE (0000ms, 1208ms total)
T514C 468:128 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 D7 43  returns 0x04 (0001ms, 1209ms total)
T7764 468:129 JLINK_IsHalted()  returns FALSE (0000ms, 1209ms total)
T7764 468:230 JLINK_IsHalted()  returns FALSE (0000ms, 1209ms total)
T7764 468:331 JLINK_IsHalted()  returns FALSE (0000ms, 1209ms total)
T7764 468:432 JLINK_IsHalted()  returns FALSE (0000ms, 1209ms total)
T7764 468:533 JLINK_IsHalted()  returns FALSE (0000ms, 1209ms total)
T7764 468:634 JLINK_IsHalted()  returns FALSE (0000ms, 1209ms total)
T514C 468:735 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 D7 43  returns 0x04 (0001ms, 1210ms total)
T7764 468:736 JLINK_IsHalted()  returns FALSE (0000ms, 1210ms total)
T7764 468:837 JLINK_IsHalted()  returns FALSE (0000ms, 1210ms total)
T7764 468:938 JLINK_IsHalted()  returns FALSE (0000ms, 1210ms total)
T7764 469:039 JLINK_IsHalted()  returns FALSE (0000ms, 1210ms total)
T7764 469:140 JLINK_IsHalted()  returns FALSE (0000ms, 1210ms total)
T514C 469:242 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 D7 43  returns 0x04 (0000ms, 1210ms total)
T7764 469:243 JLINK_IsHalted()  returns FALSE (0000ms, 1210ms total)
T7764 469:344 JLINK_IsHalted()  returns FALSE (0000ms, 1210ms total)
T7764 469:444 JLINK_IsHalted()  returns FALSE (0000ms, 1210ms total)
T7764 469:546 JLINK_IsHalted()  returns FALSE (0000ms, 1210ms total)
T7764 469:647 JLINK_IsHalted()  returns FALSE (0000ms, 1210ms total)
T7764 469:748 JLINK_IsHalted()  returns FALSE (0000ms, 1210ms total)
T514C 469:849 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 D8 43  returns 0x04 (0001ms, 1211ms total)
T7764 469:850 JLINK_IsHalted()  returns FALSE (0000ms, 1211ms total)
T7764 469:951 JLINK_IsHalted()  returns FALSE (0000ms, 1211ms total)
T7764 470:052 JLINK_IsHalted()  returns FALSE (0000ms, 1211ms total)
T7764 470:154 JLINK_IsHalted()  returns FALSE (0000ms, 1211ms total)
T7764 470:255 JLINK_IsHalted()  returns FALSE (0000ms, 1211ms total)
T7764 470:356 JLINK_IsHalted()  returns FALSE (0000ms, 1211ms total)
T514C 470:457 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 D8 43  returns 0x04 (0001ms, 1212ms total)
T7764 470:458 JLINK_IsHalted()  returns FALSE (0000ms, 1212ms total)
T7764 470:559 JLINK_IsHalted()  returns FALSE (0000ms, 1212ms total)
T7764 470:661 JLINK_IsHalted()  returns FALSE (0000ms, 1212ms total)
T7764 470:762 JLINK_IsHalted()  returns FALSE (0000ms, 1212ms total)
T7764 470:863 JLINK_IsHalted()  returns FALSE (0000ms, 1212ms total)
T7764 470:965 JLINK_IsHalted()  returns FALSE (0000ms, 1212ms total)
T514C 471:066 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 D8 43  returns 0x04 (0001ms, 1213ms total)
T7764 471:067 JLINK_IsHalted()  returns FALSE (0000ms, 1213ms total)
T7764 471:169 JLINK_IsHalted()  returns FALSE (0000ms, 1213ms total)
T7764 471:269 JLINK_IsHalted()  returns FALSE (0000ms, 1213ms total)
T7764 471:370 JLINK_IsHalted()  returns FALSE (0000ms, 1213ms total)
T7764 471:471 JLINK_IsHalted()  returns FALSE (0000ms, 1213ms total)
T7764 471:573 JLINK_IsHalted()  returns FALSE (0000ms, 1213ms total)
T514C 471:674 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 D9 43  returns 0x04 (0000ms, 1213ms total)
T7764 471:675 JLINK_IsHalted()  returns FALSE (0000ms, 1213ms total)
T7764 471:776 JLINK_IsHalted()  returns FALSE (0000ms, 1213ms total)
T7764 471:877 JLINK_IsHalted()  returns FALSE (0000ms, 1213ms total)
T7764 471:978 JLINK_IsHalted()  returns FALSE (0000ms, 1213ms total)
T7764 472:079 JLINK_IsHalted()  returns FALSE (0000ms, 1213ms total)
T7764 472:180 JLINK_IsHalted()  returns FALSE (0000ms, 1213ms total)
T514C 472:281 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 D9 43  returns 0x04 (0001ms, 1214ms total)
T7764 472:282 JLINK_IsHalted()  returns FALSE (0000ms, 1214ms total)
T7764 472:383 JLINK_IsHalted()  returns FALSE (0000ms, 1214ms total)
T7764 472:484 JLINK_IsHalted()  returns FALSE (0000ms, 1214ms total)
T7764 472:586 JLINK_IsHalted()  returns FALSE (0000ms, 1214ms total)
T7764 472:687 JLINK_IsHalted()  returns FALSE (0000ms, 1214ms total)
T514C 472:789 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 D9 43  returns 0x04 (0001ms, 1215ms total)
T7764 472:790 JLINK_IsHalted()  returns FALSE (0000ms, 1215ms total)
T7764 472:891 JLINK_IsHalted()  returns FALSE (0000ms, 1215ms total)
T7764 472:993 JLINK_IsHalted()  returns FALSE (0000ms, 1215ms total)
T7764 473:094 JLINK_IsHalted()  returns FALSE (0000ms, 1215ms total)
T7764 473:195 JLINK_IsHalted()  returns FALSE (0000ms, 1215ms total)
T7764 473:296 JLINK_IsHalted()  returns FALSE (0000ms, 1215ms total)
T514C 473:397 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 D9 43  returns 0x04 (0001ms, 1216ms total)
T7764 473:398 JLINK_IsHalted()  returns FALSE (0000ms, 1216ms total)
T7764 473:500 JLINK_IsHalted()  returns FALSE (0000ms, 1216ms total)
T7764 473:602 JLINK_IsHalted()  returns FALSE (0000ms, 1216ms total)
T7764 473:703 JLINK_IsHalted()  returns FALSE (0000ms, 1216ms total)
T7764 473:804 JLINK_IsHalted()  returns FALSE (0000ms, 1216ms total)
T7764 473:906 JLINK_IsHalted()  returns FALSE (0000ms, 1216ms total)
T514C 474:007 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 DA 43  returns 0x04 (0000ms, 1216ms total)
T7764 474:008 JLINK_IsHalted()  returns FALSE (0000ms, 1217ms total)
T7764 474:109 JLINK_IsHalted()  returns FALSE (0000ms, 1217ms total)
T7764 474:210 JLINK_IsHalted()  returns FALSE (0000ms, 1217ms total)
T7764 474:311 JLINK_IsHalted()  returns FALSE (0000ms, 1217ms total)
T7764 474:413 JLINK_IsHalted()  returns FALSE (0000ms, 1217ms total)
T7764 474:514 JLINK_IsHalted()  returns FALSE (0000ms, 1217ms total)
T514C 474:615 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 DA 43  returns 0x04 (0001ms, 1218ms total)
T7764 474:616 JLINK_IsHalted()  returns FALSE (0000ms, 1218ms total)
T7764 474:718 JLINK_IsHalted()  returns FALSE (0000ms, 1218ms total)
T7764 474:819 JLINK_IsHalted()  returns FALSE (0000ms, 1218ms total)
T7764 474:920 JLINK_IsHalted()  returns FALSE (0000ms, 1218ms total)
T7764 475:021 JLINK_IsHalted()  returns FALSE (0000ms, 1218ms total)
T7764 475:123 JLINK_IsHalted()  returns FALSE (0000ms, 1218ms total)
T514C 475:224 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 DA 43  returns 0x04 (0000ms, 1218ms total)
T7764 475:225 JLINK_IsHalted()  returns FALSE (0000ms, 1219ms total)
T7764 475:326 JLINK_IsHalted()  returns FALSE (0000ms, 1219ms total)
T7764 475:428 JLINK_IsHalted()  returns FALSE (0000ms, 1219ms total)
T7764 475:530 JLINK_IsHalted()  returns FALSE (0000ms, 1219ms total)
T7764 475:630 JLINK_IsHalted()  returns FALSE (0000ms, 1219ms total)
T7764 475:731 JLINK_IsHalted()  returns FALSE (0000ms, 1219ms total)
T514C 475:832 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 DB 43  returns 0x04 (0001ms, 1220ms total)
T7764 475:833 JLINK_IsHalted()  returns FALSE (0000ms, 1220ms total)
T7764 475:935 JLINK_IsHalted()  returns FALSE (0000ms, 1220ms total)
T7764 476:036 JLINK_IsHalted()  returns FALSE (0000ms, 1220ms total)
T7764 476:137 JLINK_IsHalted()  returns FALSE (0000ms, 1220ms total)
T7764 476:238 JLINK_IsHalted()  returns FALSE (0000ms, 1220ms total)
T7764 476:339 JLINK_IsHalted()  returns FALSE (0000ms, 1220ms total)
T514C 476:440 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 DB 43  returns 0x04 (0001ms, 1221ms total)
T7764 476:441 JLINK_IsHalted()  returns FALSE (0001ms, 1222ms total)
T7764 476:543 JLINK_IsHalted()  returns FALSE (0000ms, 1221ms total)
T7764 476:645 JLINK_IsHalted()  returns FALSE (0000ms, 1221ms total)
T7764 476:746 JLINK_IsHalted()  returns FALSE (0000ms, 1221ms total)
T7764 476:848 JLINK_IsHalted()  returns FALSE (0000ms, 1221ms total)
T7764 476:949 JLINK_IsHalted()  returns FALSE (0000ms, 1221ms total)
T514C 477:050 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 DB 43  returns 0x04 (0001ms, 1222ms total)
T7764 477:051 JLINK_IsHalted()  returns FALSE (0001ms, 1223ms total)
T7764 477:153 JLINK_IsHalted()  returns FALSE (0000ms, 1222ms total)
T7764 477:254 JLINK_IsHalted()  returns FALSE (0000ms, 1222ms total)
T7764 477:355 JLINK_IsHalted()  returns FALSE (0000ms, 1222ms total)
T7764 477:457 JLINK_IsHalted()  returns FALSE (0000ms, 1222ms total)
T7764 477:558 JLINK_IsHalted()  returns FALSE (0000ms, 1222ms total)
T514C 477:659 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 DC 43  returns 0x04 (0001ms, 1223ms total)
T7764 477:660 JLINK_IsHalted()  returns FALSE (0000ms, 1223ms total)
T7764 477:762 JLINK_IsHalted()  returns FALSE (0000ms, 1223ms total)
T7764 477:863 JLINK_IsHalted()  returns FALSE (0000ms, 1223ms total)
T7764 477:964 JLINK_IsHalted()  returns FALSE (0000ms, 1223ms total)
T7764 478:065 JLINK_IsHalted()  returns FALSE (0000ms, 1223ms total)
T7764 478:166 JLINK_IsHalted()  returns FALSE (0000ms, 1223ms total)
T514C 478:267 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 DC 43  returns 0x04 (0001ms, 1224ms total)
T7764 478:268 JLINK_IsHalted()  returns FALSE (0000ms, 1224ms total)
T7764 478:369 JLINK_IsHalted()  returns FALSE (0000ms, 1224ms total)
T7764 478:470 JLINK_IsHalted()  returns FALSE (0000ms, 1224ms total)
T7764 478:571 JLINK_IsHalted()  returns FALSE (0000ms, 1224ms total)
T7764 478:672 JLINK_IsHalted()  returns FALSE (0000ms, 1224ms total)
T514C 478:773 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 DC 43  returns 0x04 (0001ms, 1225ms total)
T7764 478:774 JLINK_IsHalted()  returns FALSE (0000ms, 1225ms total)
T7764 478:875 JLINK_IsHalted()  returns FALSE (0000ms, 1225ms total)
T7764 478:977 JLINK_IsHalted()  returns FALSE (0000ms, 1225ms total)
T7764 479:078 JLINK_IsHalted()  returns FALSE (0000ms, 1225ms total)
T7764 479:179 JLINK_IsHalted()  returns FALSE (0000ms, 1225ms total)
T7764 479:280 JLINK_IsHalted()  returns FALSE (0000ms, 1225ms total)
T514C 479:382 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 DC 43  returns 0x04 (0001ms, 1226ms total)
T7764 479:383 JLINK_IsHalted()  returns FALSE (0000ms, 1226ms total)
T7764 479:484 JLINK_IsHalted()  returns FALSE (0000ms, 1226ms total)
T7764 479:585 JLINK_IsHalted()  returns FALSE (0000ms, 1226ms total)
T7764 479:686 JLINK_IsHalted()  returns FALSE (0000ms, 1226ms total)
T7764 479:788 JLINK_IsHalted()  returns FALSE (0000ms, 1226ms total)
T7764 479:890 JLINK_IsHalted()  returns FALSE (0000ms, 1226ms total)
T514C 479:991 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 DD 43  returns 0x04 (0001ms, 1227ms total)
T7764 479:992 JLINK_IsHalted()  returns FALSE (0000ms, 1227ms total)
T7764 480:094 JLINK_IsHalted()  returns FALSE (0000ms, 1227ms total)
T7764 480:195 JLINK_IsHalted()  returns FALSE (0000ms, 1227ms total)
T7764 480:296 JLINK_IsHalted()  returns FALSE (0000ms, 1227ms total)
T7764 480:397 JLINK_IsHalted()  returns FALSE (0000ms, 1227ms total)
T7764 480:498 JLINK_IsHalted()  returns FALSE (0000ms, 1227ms total)
T514C 480:599 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 DD 43  returns 0x04 (0001ms, 1228ms total)
T7764 480:600 JLINK_IsHalted()  returns FALSE (0000ms, 1228ms total)
T7764 480:702 JLINK_IsHalted()  returns FALSE (0000ms, 1228ms total)
T7764 480:804 JLINK_IsHalted()  returns FALSE (0000ms, 1228ms total)
T7764 480:905 JLINK_IsHalted()  returns FALSE (0000ms, 1228ms total)
T7764 481:006 JLINK_IsHalted()  returns FALSE (0000ms, 1228ms total)
T7764 481:107 JLINK_IsHalted()  returns FALSE (0000ms, 1228ms total)
T514C 481:209 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 DD 43  returns 0x04 (0001ms, 1229ms total)
T7764 481:210 JLINK_IsHalted()  returns FALSE (0000ms, 1229ms total)
T7764 481:311 JLINK_IsHalted()  returns FALSE (0000ms, 1229ms total)
T7764 481:412 JLINK_IsHalted()  returns FALSE (0000ms, 1229ms total)
T7764 481:513 JLINK_IsHalted()  returns FALSE (0000ms, 1229ms total)
T7764 481:614 JLINK_IsHalted()  returns FALSE (0000ms, 1229ms total)
T7764 481:715 JLINK_IsHalted()  returns FALSE (0000ms, 1229ms total)
T514C 481:816 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 DE 43  returns 0x04 (0000ms, 1229ms total)
T7764 481:817 JLINK_IsHalted()  returns FALSE (0000ms, 1229ms total)
T7764 481:919 JLINK_IsHalted()  returns FALSE (0000ms, 1229ms total)
T7764 482:020 JLINK_IsHalted()  returns FALSE (0000ms, 1229ms total)
T7764 482:121 JLINK_IsHalted()  returns FALSE (0000ms, 1229ms total)
T7764 482:222 JLINK_IsHalted()  returns FALSE (0000ms, 1229ms total)
T7764 482:323 JLINK_IsHalted()  returns FALSE (0000ms, 1229ms total)
T514C 482:425 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 DE 43  returns 0x04 (0001ms, 1230ms total)
T7764 482:426 JLINK_IsHalted()  returns FALSE (0000ms, 1230ms total)
T7764 482:527 JLINK_IsHalted()  returns FALSE (0000ms, 1230ms total)
T7764 482:628 JLINK_IsHalted()  returns FALSE (0000ms, 1230ms total)
T7764 482:729 JLINK_IsHalted()  returns FALSE (0000ms, 1230ms total)
T7764 482:831 JLINK_IsHalted()  returns FALSE (0000ms, 1230ms total)
T7764 482:932 JLINK_IsHalted()  returns FALSE (0000ms, 1230ms total)
T514C 483:033 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 DE 43  returns 0x04 (0001ms, 1231ms total)
T7764 483:034 JLINK_IsHalted()  returns FALSE (0000ms, 1231ms total)
T7764 483:135 JLINK_IsHalted()  returns FALSE (0000ms, 1231ms total)
T7764 483:236 JLINK_IsHalted()  returns FALSE (0000ms, 1231ms total)
T7764 483:338 JLINK_IsHalted()  returns FALSE (0000ms, 1231ms total)
T7764 483:439 JLINK_IsHalted()  returns FALSE (0000ms, 1231ms total)
T514C 483:540 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 DE 43  returns 0x04 (0001ms, 1232ms total)
T7764 483:541 JLINK_IsHalted()  returns FALSE (0000ms, 1232ms total)
T7764 483:642 JLINK_IsHalted()  returns FALSE (0000ms, 1232ms total)
T7764 483:743 JLINK_IsHalted()  returns FALSE (0000ms, 1232ms total)
T7764 483:844 JLINK_IsHalted()  returns FALSE (0000ms, 1232ms total)
T7764 483:945 JLINK_IsHalted()  returns FALSE (0000ms, 1232ms total)
T7764 484:046 JLINK_IsHalted()  returns FALSE (0000ms, 1232ms total)
T514C 484:148 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 DF 43  returns 0x04 (0001ms, 1233ms total)
T7764 484:149 JLINK_IsHalted()  returns FALSE (0001ms, 1234ms total)
T7764 484:251 JLINK_IsHalted()  returns FALSE (0000ms, 1233ms total)
T7764 484:352 JLINK_IsHalted()  returns FALSE (0000ms, 1233ms total)
T7764 484:454 JLINK_IsHalted()  returns FALSE (0000ms, 1233ms total)
T7764 484:555 JLINK_IsHalted()  returns FALSE (0000ms, 1233ms total)
T7764 484:657 JLINK_IsHalted()  returns FALSE (0000ms, 1233ms total)
T514C 484:758 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 DF 43  returns 0x04 (0001ms, 1234ms total)
T7764 484:759 JLINK_IsHalted()  returns FALSE (0000ms, 1234ms total)
T7764 484:861 JLINK_IsHalted()  returns FALSE (0000ms, 1234ms total)
T7764 484:962 JLINK_IsHalted()  returns FALSE (0000ms, 1234ms total)
T7764 485:063 JLINK_IsHalted()  returns FALSE (0000ms, 1234ms total)
T7764 485:164 JLINK_IsHalted()  returns FALSE (0000ms, 1234ms total)
T7764 485:266 JLINK_IsHalted()  returns FALSE (0000ms, 1234ms total)
T514C 485:367 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 DF 43  returns 0x04 (0001ms, 1235ms total)
T7764 485:368 JLINK_IsHalted()  returns FALSE (0000ms, 1235ms total)
T7764 485:469 JLINK_IsHalted()  returns FALSE (0000ms, 1235ms total)
T7764 485:570 JLINK_IsHalted()  returns FALSE (0000ms, 1235ms total)
T7764 485:672 JLINK_IsHalted()  returns FALSE (0000ms, 1235ms total)
T7764 485:773 JLINK_IsHalted()  returns FALSE (0000ms, 1235ms total)
T7764 485:874 JLINK_IsHalted()  returns FALSE (0000ms, 1235ms total)
T514C 485:975 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 E0 43  returns 0x04 (0001ms, 1236ms total)
T7764 485:976 JLINK_IsHalted()  returns FALSE (0000ms, 1236ms total)
T7764 486:077 JLINK_IsHalted()  returns FALSE (0000ms, 1236ms total)
T7764 486:178 JLINK_IsHalted()  returns FALSE (0000ms, 1236ms total)
T7764 486:279 JLINK_IsHalted()  returns FALSE (0000ms, 1236ms total)
T7764 486:380 JLINK_IsHalted()  returns FALSE (0000ms, 1236ms total)
T7764 486:482 JLINK_IsHalted()  returns FALSE (0000ms, 1236ms total)
T514C 486:583 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 E0 43  returns 0x04 (0000ms, 1236ms total)
T7764 486:584 JLINK_IsHalted()  returns FALSE (0000ms, 1236ms total)
T7764 486:686 JLINK_IsHalted()  returns FALSE (0000ms, 1236ms total)
T7764 486:787 JLINK_IsHalted()  returns FALSE (0000ms, 1236ms total)
T7764 486:889 JLINK_IsHalted()  returns FALSE (0000ms, 1236ms total)
T7764 486:990 JLINK_IsHalted()  returns FALSE (0000ms, 1236ms total)
T7764 487:091 JLINK_IsHalted()  returns FALSE (0000ms, 1236ms total)
T514C 487:192 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 E0 43  returns 0x04 (0000ms, 1236ms total)
T7764 487:193 JLINK_IsHalted()  returns FALSE (0000ms, 1236ms total)
T7764 487:294 JLINK_IsHalted()  returns FALSE (0000ms, 1236ms total)
T7764 487:395 JLINK_IsHalted()  returns FALSE (0000ms, 1236ms total)
T7764 487:496 JLINK_IsHalted()  returns FALSE (0000ms, 1236ms total)
T7764 487:597 JLINK_IsHalted()  returns FALSE (0000ms, 1236ms total)
T7764 487:699 JLINK_IsHalted()  returns FALSE (0000ms, 1236ms total)
T514C 487:800 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 E1 43  returns 0x04 (0001ms, 1237ms total)
T7764 487:801 JLINK_IsHalted()  returns FALSE (0001ms, 1238ms total)
T7764 487:902 JLINK_IsHalted()  returns FALSE (0000ms, 1237ms total)
T7764 488:003 JLINK_IsHalted()  returns FALSE (0000ms, 1237ms total)
T7764 488:105 JLINK_IsHalted()  returns FALSE (0000ms, 1237ms total)
T7764 488:206 JLINK_IsHalted()  returns FALSE (0000ms, 1237ms total)
T7764 488:307 JLINK_IsHalted()  returns FALSE (0000ms, 1237ms total)
T514C 488:409 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 E1 43  returns 0x04 (0001ms, 1238ms total)
T7764 488:410 JLINK_IsHalted()  returns FALSE (0000ms, 1238ms total)
T7764 488:511 JLINK_IsHalted()  returns FALSE (0000ms, 1238ms total)
T7764 488:613 JLINK_IsHalted()  returns FALSE (0000ms, 1238ms total)
T7764 488:714 JLINK_IsHalted()  returns FALSE (0000ms, 1238ms total)
T7764 488:815 JLINK_IsHalted()  returns FALSE (0000ms, 1238ms total)
T7764 488:917 JLINK_IsHalted()  returns FALSE (0000ms, 1238ms total)
T514C 489:018 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 E1 43  returns 0x04 (0001ms, 1239ms total)
T7764 489:019 JLINK_IsHalted()  returns FALSE (0000ms, 1239ms total)
T7764 489:120 JLINK_IsHalted()  returns FALSE (0000ms, 1239ms total)
T7764 489:221 JLINK_IsHalted()  returns FALSE (0000ms, 1239ms total)
T7764 489:322 JLINK_IsHalted()  returns FALSE (0000ms, 1239ms total)
T7764 489:424 JLINK_IsHalted()  returns FALSE (0000ms, 1239ms total)
T7764 489:525 JLINK_IsHalted()  returns FALSE (0000ms, 1239ms total)
T514C 489:626 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 E2 43  returns 0x04 (0001ms, 1240ms total)
T7764 489:627 JLINK_IsHalted()  returns FALSE (0000ms, 1240ms total)
T7764 489:729 JLINK_IsHalted()  returns FALSE (0000ms, 1240ms total)
T7764 489:830 JLINK_IsHalted()  returns FALSE (0000ms, 1240ms total)
T7764 489:931 JLINK_IsHalted()  returns FALSE (0000ms, 1240ms total)
T7764 490:032 JLINK_IsHalted()  returns FALSE (0000ms, 1240ms total)
T514C 490:133 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 E2 43  returns 0x04 (0000ms, 1240ms total)
T7764 490:134 JLINK_IsHalted()  returns FALSE (0000ms, 1240ms total)
T7764 490:235 JLINK_IsHalted()  returns FALSE (0000ms, 1240ms total)
T7764 490:336 JLINK_IsHalted()  returns FALSE (0000ms, 1240ms total)
T7764 490:438 JLINK_IsHalted()  returns FALSE (0000ms, 1240ms total)
T7764 490:539 JLINK_IsHalted()  returns FALSE (0000ms, 1240ms total)
T7764 490:640 JLINK_IsHalted()  returns FALSE (0000ms, 1240ms total)
T514C 490:741 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 E2 43  returns 0x04 (0001ms, 1241ms total)
T7764 490:742 JLINK_IsHalted()  returns FALSE (0000ms, 1241ms total)
T7764 490:843 JLINK_IsHalted()  returns FALSE (0000ms, 1241ms total)
T7764 490:944 JLINK_IsHalted()  returns FALSE (0000ms, 1241ms total)
T7764 491:045 JLINK_IsHalted()  returns FALSE (0000ms, 1241ms total)
T7764 491:147 JLINK_IsHalted()  returns FALSE (0000ms, 1241ms total)
T7764 491:248 JLINK_IsHalted()  returns FALSE (0000ms, 1241ms total)
T514C 491:349 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 E2 43  returns 0x04 (0001ms, 1242ms total)
T7764 491:350 JLINK_IsHalted()  returns FALSE (0000ms, 1242ms total)
T7764 491:451 JLINK_IsHalted()  returns FALSE (0000ms, 1242ms total)
T7764 491:552 JLINK_IsHalted()  returns FALSE (0001ms, 1243ms total)
T7764 491:653 JLINK_IsHalted()  returns FALSE (0000ms, 1242ms total)
T7764 491:755 JLINK_IsHalted()  returns FALSE (0000ms, 1242ms total)
T7764 491:856 JLINK_IsHalted()  returns FALSE (0000ms, 1242ms total)
T514C 491:957 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 E3 43  returns 0x04 (0001ms, 1243ms total)
T7764 491:958 JLINK_IsHalted()  returns FALSE (0000ms, 1243ms total)
T7764 492:059 JLINK_IsHalted()  returns FALSE (0000ms, 1243ms total)
T7764 492:161 JLINK_IsHalted()  returns FALSE (0000ms, 1243ms total)
T7764 492:262 JLINK_IsHalted()  returns FALSE (0000ms, 1243ms total)
T7764 492:363 JLINK_IsHalted()  returns FALSE (0000ms, 1243ms total)
T7764 492:464 JLINK_IsHalted()  returns FALSE (0001ms, 1244ms total)
T514C 492:566 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 E3 43  returns 0x04 (0001ms, 1244ms total)
T7764 492:567 JLINK_IsHalted()  returns FALSE (0000ms, 1244ms total)
T7764 492:668 JLINK_IsHalted()  returns FALSE (0000ms, 1244ms total)
T7764 492:769 JLINK_IsHalted()  returns FALSE (0000ms, 1244ms total)
T7764 492:871 JLINK_IsHalted()  returns FALSE (0000ms, 1244ms total)
T7764 492:972 JLINK_IsHalted()  returns FALSE (0000ms, 1244ms total)
T7764 493:073 JLINK_IsHalted()  returns FALSE (0000ms, 1244ms total)
T514C 493:174 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 E3 43  returns 0x04 (0001ms, 1245ms total)
T7764 493:175 JLINK_IsHalted()  returns FALSE (0001ms, 1246ms total)
T7764 493:277 JLINK_IsHalted()  returns FALSE (0000ms, 1245ms total)
T7764 493:378 JLINK_IsHalted()  returns FALSE (0000ms, 1245ms total)
T7764 493:479 JLINK_IsHalted()  returns FALSE (0000ms, 1245ms total)
T7764 493:580 JLINK_IsHalted()  returns FALSE (0000ms, 1245ms total)
T7764 493:682 JLINK_IsHalted()  returns FALSE (0000ms, 1245ms total)
T514C 493:783 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 E4 43  returns 0x04 (0001ms, 1246ms total)
T7764 493:784 JLINK_IsHalted()  returns FALSE (0000ms, 1246ms total)
T7764 493:885 JLINK_IsHalted()  returns FALSE (0000ms, 1246ms total)
T7764 493:987 JLINK_IsHalted()  returns FALSE (0000ms, 1246ms total)
T7764 494:088 JLINK_IsHalted()  returns FALSE (0000ms, 1246ms total)
T7764 494:189 JLINK_IsHalted()  returns FALSE (0000ms, 1246ms total)
T514C 494:290 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 E4 43  returns 0x04 (0001ms, 1247ms total)
T7764 494:291 JLINK_IsHalted()  returns FALSE (0000ms, 1247ms total)
T7764 494:392 JLINK_IsHalted()  returns FALSE (0000ms, 1247ms total)
T7764 494:494 JLINK_IsHalted()  returns FALSE (0000ms, 1247ms total)
T7764 494:595 JLINK_IsHalted()  returns FALSE (0000ms, 1247ms total)
T7764 494:696 JLINK_IsHalted()  returns FALSE (0000ms, 1247ms total)
T7764 494:797 JLINK_IsHalted()  returns FALSE (0000ms, 1247ms total)
T514C 494:899 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 E4 43  returns 0x04 (0001ms, 1248ms total)
T7764 494:900 JLINK_IsHalted()  returns FALSE (0000ms, 1248ms total)
T7764 495:001 JLINK_IsHalted()  returns FALSE (0000ms, 1248ms total)
T7764 495:102 JLINK_IsHalted()  returns FALSE (0000ms, 1248ms total)
T7764 495:203 JLINK_IsHalted()  returns FALSE (0000ms, 1248ms total)
T7764 495:304 JLINK_IsHalted()  returns FALSE (0000ms, 1248ms total)
T7764 495:406 JLINK_IsHalted()  returns FALSE (0000ms, 1248ms total)
T514C 495:507 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 E4 43  returns 0x04 (0001ms, 1249ms total)
T7764 495:508 JLINK_IsHalted()  returns FALSE (0000ms, 1249ms total)
T7764 495:609 JLINK_IsHalted()  returns FALSE (0000ms, 1249ms total)
T7764 495:710 JLINK_IsHalted()  returns FALSE (0000ms, 1249ms total)
T7764 495:811 JLINK_IsHalted()  returns FALSE (0000ms, 1249ms total)
T7764 495:912 JLINK_IsHalted()  returns FALSE (0000ms, 1249ms total)
T7764 496:013 JLINK_IsHalted()  returns FALSE (0000ms, 1249ms total)
T514C 496:114 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 E5 43  returns 0x04 (0000ms, 1249ms total)
T7764 496:115 JLINK_IsHalted()  returns FALSE (0000ms, 1249ms total)
T7764 496:216 JLINK_IsHalted()  returns FALSE (0000ms, 1249ms total)
T7764 496:318 JLINK_IsHalted()  returns FALSE (0000ms, 1249ms total)
T7764 496:420 JLINK_IsHalted()  returns FALSE (0000ms, 1249ms total)
T7764 496:521 JLINK_IsHalted()  returns FALSE (0000ms, 1249ms total)
T7764 496:622 JLINK_IsHalted()  returns FALSE (0000ms, 1249ms total)
T514C 496:723 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 E5 43  returns 0x04 (0000ms, 1249ms total)
T7764 496:724 JLINK_IsHalted()  returns FALSE (0000ms, 1249ms total)
T7764 496:825 JLINK_IsHalted()  returns FALSE (0000ms, 1249ms total)
T7764 496:926 JLINK_IsHalted()  returns FALSE (0000ms, 1249ms total)
T7764 497:026 JLINK_IsHalted()  returns FALSE (0000ms, 1249ms total)
T7764 497:128 JLINK_IsHalted()  returns FALSE (0000ms, 1249ms total)
T7764 497:229 JLINK_IsHalted()  returns FALSE (0000ms, 1249ms total)
T514C 497:330 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 E5 43  returns 0x04 (0001ms, 1250ms total)
T7764 497:331 JLINK_IsHalted()  returns FALSE (0000ms, 1250ms total)
T7764 497:432 JLINK_IsHalted()  returns FALSE (0000ms, 1250ms total)
T7764 497:533 JLINK_IsHalted()  returns FALSE (0000ms, 1250ms total)
T7764 497:634 JLINK_IsHalted()  returns FALSE (0000ms, 1250ms total)
T7764 497:736 JLINK_IsHalted()  returns FALSE (0000ms, 1250ms total)
T7764 497:837 JLINK_IsHalted()  returns FALSE (0000ms, 1250ms total)
T514C 497:938 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 E6 43  returns 0x04 (0000ms, 1250ms total)
T7764 497:939 JLINK_IsHalted()  returns FALSE (0000ms, 1251ms total)
T7764 498:041 JLINK_IsHalted()  returns FALSE (0000ms, 1251ms total)
T7764 498:142 JLINK_IsHalted()  returns FALSE (0000ms, 1251ms total)
T7764 498:243 JLINK_IsHalted()  returns FALSE (0000ms, 1251ms total)
T7764 498:345 JLINK_IsHalted()  returns FALSE (0000ms, 1251ms total)
T514C 498:446 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 E6 43  returns 0x04 (0001ms, 1252ms total)
T7764 498:447 JLINK_IsHalted()  returns FALSE (0000ms, 1252ms total)
T7764 498:548 JLINK_IsHalted()  returns FALSE (0000ms, 1252ms total)
T7764 498:649 JLINK_IsHalted()  returns FALSE (0000ms, 1252ms total)
T7764 498:750 JLINK_IsHalted()  returns FALSE (0000ms, 1252ms total)
T7764 498:851 JLINK_IsHalted()  returns FALSE (0000ms, 1252ms total)
T7764 498:952 JLINK_IsHalted()  returns FALSE (0000ms, 1252ms total)
T514C 499:053 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 E6 43  returns 0x04 (0001ms, 1253ms total)
T7764 499:054 JLINK_IsHalted()  returns FALSE (0000ms, 1253ms total)
T7764 499:155 JLINK_IsHalted()  returns FALSE (0000ms, 1253ms total)
T7764 499:256 JLINK_IsHalted()  returns FALSE (0000ms, 1253ms total)
T7764 499:358 JLINK_IsHalted()  returns FALSE (0000ms, 1253ms total)
T7764 499:459 JLINK_IsHalted()  returns FALSE (0000ms, 1253ms total)
T7764 499:560 JLINK_IsHalted()  returns FALSE (0000ms, 1253ms total)
T514C 499:661 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 E7 43  returns 0x04 (0001ms, 1254ms total)
T7764 499:662 JLINK_IsHalted()  returns FALSE (0000ms, 1254ms total)
T7764 499:763 JLINK_IsHalted()  returns FALSE (0000ms, 1254ms total)
T7764 499:865 JLINK_IsHalted()  returns FALSE (0000ms, 1254ms total)
T7764 499:966 JLINK_IsHalted()  returns FALSE (0000ms, 1254ms total)
T7764 500:067 JLINK_IsHalted()  returns FALSE (0000ms, 1254ms total)
T7764 500:168 JLINK_IsHalted()  returns FALSE (0000ms, 1254ms total)
T514C 500:269 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 E7 43  returns 0x04 (0001ms, 1255ms total)
T7764 500:270 JLINK_IsHalted()  returns FALSE (0000ms, 1255ms total)
T7764 500:372 JLINK_IsHalted()  returns FALSE (0000ms, 1255ms total)
T7764 500:473 JLINK_IsHalted()  returns FALSE (0000ms, 1255ms total)
T7764 500:574 JLINK_IsHalted()  returns FALSE (0000ms, 1255ms total)
T7764 500:675 JLINK_IsHalted()  returns FALSE (0000ms, 1255ms total)
T7764 500:776 JLINK_IsHalted()  returns FALSE (0000ms, 1255ms total)
T514C 500:877 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 E7 43  returns 0x04 (0001ms, 1256ms total)
T7764 500:878 JLINK_IsHalted()  returns FALSE (0000ms, 1256ms total)
T7764 500:979 JLINK_IsHalted()  returns FALSE (0000ms, 1256ms total)
T7764 501:080 JLINK_IsHalted()  returns FALSE (0000ms, 1256ms total)
T7764 501:181 JLINK_IsHalted()  returns FALSE (0000ms, 1256ms total)
T7764 501:282 JLINK_IsHalted()  returns FALSE (0000ms, 1256ms total)
T7764 501:383 JLINK_IsHalted()  returns FALSE (0000ms, 1256ms total)
T514C 501:484 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 E7 43  returns 0x04 (0001ms, 1257ms total)
T7764 501:485 JLINK_IsHalted()  returns FALSE (0000ms, 1257ms total)
T7764 501:587 JLINK_IsHalted()  returns FALSE (0000ms, 1257ms total)
T7764 501:688 JLINK_IsHalted()  returns FALSE (0000ms, 1257ms total)
T7764 501:790 JLINK_IsHalted()  returns FALSE (0000ms, 1257ms total)
T7764 501:891 JLINK_IsHalted()  returns FALSE (0000ms, 1257ms total)
T514C 501:992 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 E8 43  returns 0x04 (0000ms, 1257ms total)
T7764 501:993 JLINK_IsHalted()  returns FALSE (0000ms, 1258ms total)
T7764 502:094 JLINK_IsHalted()  returns FALSE (0000ms, 1258ms total)
T7764 502:195 JLINK_IsHalted()  returns FALSE (0000ms, 1258ms total)
T7764 502:296 JLINK_IsHalted()  returns FALSE (0000ms, 1258ms total)
T7764 502:398 JLINK_IsHalted()  returns FALSE (0000ms, 1258ms total)
T7764 502:499 JLINK_IsHalted()  returns FALSE (0000ms, 1258ms total)
T514C 502:600 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 E8 43  returns 0x04 (0001ms, 1259ms total)
T7764 502:601 JLINK_IsHalted()  returns FALSE (0000ms, 1259ms total)
T7764 502:702 JLINK_IsHalted()  returns FALSE (0000ms, 1259ms total)
T7764 502:803 JLINK_IsHalted()  returns FALSE (0000ms, 1259ms total)
T7764 502:904 JLINK_IsHalted()  returns FALSE (0000ms, 1259ms total)
T7764 503:006 JLINK_IsHalted()  returns FALSE (0000ms, 1259ms total)
T7764 503:107 JLINK_IsHalted()  returns FALSE (0000ms, 1259ms total)
T514C 503:208 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 E8 43  returns 0x04 (0001ms, 1260ms total)
T7764 503:209 JLINK_IsHalted()  returns FALSE (0000ms, 1260ms total)
T7764 503:310 JLINK_IsHalted()  returns FALSE (0000ms, 1260ms total)
T7764 503:411 JLINK_IsHalted()  returns FALSE (0000ms, 1260ms total)
T7764 503:512 JLINK_IsHalted()  returns FALSE (0000ms, 1260ms total)
T7764 503:614 JLINK_IsHalted()  returns FALSE (0000ms, 1260ms total)
T7764 503:715 JLINK_IsHalted()  returns FALSE (0000ms, 1260ms total)
T514C 503:816 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 E9 43  returns 0x04 (0000ms, 1260ms total)
T7764 503:817 JLINK_IsHalted()  returns FALSE (0000ms, 1260ms total)
T7764 503:919 JLINK_IsHalted()  returns FALSE (0000ms, 1260ms total)
T7764 504:020 JLINK_IsHalted()  returns FALSE (0000ms, 1260ms total)
T7764 504:121 JLINK_IsHalted()  returns FALSE (0000ms, 1260ms total)
T7764 504:222 JLINK_IsHalted()  returns FALSE (0000ms, 1260ms total)
T7764 504:323 JLINK_IsHalted()  returns FALSE (0000ms, 1260ms total)
T514C 504:424 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 E9 43  returns 0x04 (0001ms, 1261ms total)
T7764 504:425 JLINK_IsHalted()  returns FALSE (0000ms, 1261ms total)
T7764 504:526 JLINK_IsHalted()  returns FALSE (0000ms, 1261ms total)
T7764 504:627 JLINK_IsHalted()  returns FALSE (0000ms, 1261ms total)
T7764 504:728 JLINK_IsHalted()  returns FALSE (0000ms, 1261ms total)
T7764 504:829 JLINK_IsHalted()  returns FALSE (0000ms, 1261ms total)
T514C 504:930 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 E9 43  returns 0x04 (0001ms, 1262ms total)
T7764 504:931 JLINK_IsHalted()  returns FALSE (0000ms, 1262ms total)
T7764 505:033 JLINK_IsHalted()  returns FALSE (0000ms, 1262ms total)
T7764 505:134 JLINK_IsHalted()  returns FALSE (0000ms, 1262ms total)
T7764 505:235 JLINK_IsHalted()  returns FALSE (0000ms, 1262ms total)
T7764 505:336 JLINK_IsHalted()  returns FALSE (0000ms, 1262ms total)
T7764 505:438 JLINK_IsHalted()  returns FALSE (0000ms, 1262ms total)
T514C 505:539 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 E9 43  returns 0x04 (0001ms, 1263ms total)
T7764 505:540 JLINK_IsHalted()  returns FALSE (0000ms, 1263ms total)
T7764 505:642 JLINK_IsHalted()  returns FALSE (0000ms, 1263ms total)
T7764 505:743 JLINK_IsHalted()  returns FALSE (0000ms, 1263ms total)
T7764 505:844 JLINK_IsHalted()  returns FALSE (0000ms, 1263ms total)
T7764 505:945 JLINK_IsHalted()  returns FALSE (0000ms, 1263ms total)
T7764 506:046 JLINK_IsHalted()  returns FALSE (0000ms, 1263ms total)
T514C 506:147 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 EA 43  returns 0x04 (0001ms, 1264ms total)
T7764 506:148 JLINK_IsHalted()  returns FALSE (0000ms, 1264ms total)
T7764 506:249 JLINK_IsHalted()  returns FALSE (0000ms, 1264ms total)
T7764 506:351 JLINK_IsHalted()  returns FALSE (0000ms, 1264ms total)
T7764 506:452 JLINK_IsHalted()  returns FALSE (0000ms, 1264ms total)
T7764 506:553 JLINK_IsHalted()  returns FALSE (0000ms, 1264ms total)
T7764 506:654 JLINK_IsHalted()  returns FALSE (0000ms, 1264ms total)
T514C 506:756 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 EA 43  returns 0x04 (0000ms, 1264ms total)
T7764 506:757 JLINK_IsHalted()  returns FALSE (0000ms, 1264ms total)
T7764 506:858 JLINK_IsHalted()  returns FALSE (0000ms, 1264ms total)
T7764 506:959 JLINK_IsHalted()  returns FALSE (0000ms, 1264ms total)
T7764 507:060 JLINK_IsHalted()  returns FALSE (0000ms, 1264ms total)
T7764 507:162 JLINK_IsHalted()  returns FALSE (0000ms, 1264ms total)
T7764 507:263 JLINK_IsHalted()  returns FALSE (0000ms, 1264ms total)
T514C 507:364 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 EA 43  returns 0x04 (0000ms, 1264ms total)
T7764 507:365 JLINK_IsHalted()  returns FALSE (0000ms, 1264ms total)
T7764 507:466 JLINK_IsHalted()  returns FALSE (0000ms, 1264ms total)
T7764 507:567 JLINK_IsHalted()  returns FALSE (0000ms, 1264ms total)
T7764 507:668 JLINK_IsHalted()  returns FALSE (0000ms, 1264ms total)
T7764 507:769 JLINK_IsHalted()  returns FALSE (0000ms, 1264ms total)
T7764 507:870 JLINK_IsHalted()  returns FALSE (0000ms, 1264ms total)
T514C 507:972 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 EB 43  returns 0x04 (0000ms, 1264ms total)
T7764 507:973 JLINK_IsHalted()  returns FALSE (0000ms, 1264ms total)
T7764 508:074 JLINK_IsHalted()  returns FALSE (0000ms, 1264ms total)
T7764 508:175 JLINK_IsHalted()  returns FALSE (0000ms, 1264ms total)
T7764 508:276 JLINK_IsHalted()  returns FALSE (0000ms, 1264ms total)
T7764 508:378 JLINK_IsHalted()  returns FALSE (0000ms, 1264ms total)
T7764 508:479 JLINK_IsHalted()  returns FALSE (0000ms, 1264ms total)
T514C 508:580 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 EB 43  returns 0x04 (0001ms, 1265ms total)
T7764 508:581 JLINK_IsHalted()  returns FALSE (0000ms, 1265ms total)
T7764 508:682 JLINK_IsHalted()  returns FALSE (0000ms, 1265ms total)
T7764 508:783 JLINK_IsHalted()  returns FALSE (0000ms, 1265ms total)
T7764 508:884 JLINK_IsHalted()  returns FALSE (0000ms, 1265ms total)
T7764 508:986 JLINK_IsHalted()  returns FALSE (0000ms, 1265ms total)
T7764 509:087 JLINK_IsHalted()  returns FALSE (0000ms, 1265ms total)
T514C 509:188 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 EB 43  returns 0x04 (0001ms, 1266ms total)
T7764 509:189 JLINK_IsHalted()  returns FALSE (0000ms, 1266ms total)
T7764 509:290 JLINK_IsHalted()  returns FALSE (0000ms, 1266ms total)
T7764 509:391 JLINK_IsHalted()  returns FALSE (0000ms, 1266ms total)
T7764 509:492 JLINK_IsHalted()  returns FALSE (0000ms, 1266ms total)
T7764 509:594 JLINK_IsHalted()  returns FALSE (0000ms, 1266ms total)
T514C 509:695 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 EC 43  returns 0x04 (0000ms, 1266ms total)
T7764 509:696 JLINK_IsHalted()  returns FALSE (0000ms, 1267ms total)
T7764 509:797 JLINK_IsHalted()  returns FALSE (0000ms, 1267ms total)
T7764 509:898 JLINK_IsHalted()  returns FALSE (0000ms, 1267ms total)
T7764 510:000 JLINK_IsHalted()  returns FALSE (0000ms, 1267ms total)
T7764 510:102 JLINK_IsHalted()  returns FALSE (0000ms, 1267ms total)
T7764 510:203 JLINK_IsHalted()  returns FALSE (0000ms, 1267ms total)
T514C 510:304 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 EC 43  returns 0x04 (0000ms, 1267ms total)
T7764 510:305 JLINK_IsHalted()  returns FALSE (0000ms, 1268ms total)
T7764 510:406 JLINK_IsHalted()  returns FALSE (0000ms, 1268ms total)
T7764 510:508 JLINK_IsHalted()  returns FALSE (0000ms, 1268ms total)
T7764 510:609 JLINK_IsHalted()  returns FALSE (0000ms, 1268ms total)
T7764 510:711 JLINK_IsHalted()  returns FALSE (0000ms, 1268ms total)
T7764 510:812 JLINK_IsHalted()  returns FALSE (0000ms, 1268ms total)
T514C 510:913 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 EC 43  returns 0x04 (0000ms, 1268ms total)
T7764 510:914 JLINK_IsHalted()  returns FALSE (0000ms, 1268ms total)
T7764 511:016 JLINK_IsHalted()  returns FALSE (0000ms, 1268ms total)
T7764 511:117 JLINK_IsHalted()  returns FALSE (0000ms, 1268ms total)
T7764 511:218 JLINK_IsHalted()  returns FALSE (0000ms, 1268ms total)
T7764 511:319 JLINK_IsHalted()  returns FALSE (0000ms, 1268ms total)
T7764 511:420 JLINK_IsHalted()  returns FALSE (0000ms, 1268ms total)
T514C 511:522 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 EC 43  returns 0x04 (0001ms, 1269ms total)
T7764 511:523 JLINK_IsHalted()  returns FALSE (0001ms, 1270ms total)
T7764 511:624 JLINK_IsHalted()  returns FALSE (0000ms, 1269ms total)
T7764 511:726 JLINK_IsHalted()  returns FALSE (0000ms, 1269ms total)
T7764 511:826 JLINK_IsHalted()  returns FALSE (0000ms, 1269ms total)
T7764 511:927 JLINK_IsHalted()  returns FALSE (0000ms, 1269ms total)
T7764 512:028 JLINK_IsHalted()  returns FALSE (0000ms, 1269ms total)
T514C 512:129 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 ED 43  returns 0x04 (0001ms, 1270ms total)
T7764 512:130 JLINK_IsHalted()  returns FALSE (0000ms, 1270ms total)
T7764 512:231 JLINK_IsHalted()  returns FALSE (0000ms, 1270ms total)
T7764 512:332 JLINK_IsHalted()  returns FALSE (0000ms, 1270ms total)
T7764 512:434 JLINK_IsHalted()  returns FALSE (0000ms, 1270ms total)
T7764 512:535 JLINK_IsHalted()  returns FALSE (0000ms, 1270ms total)
T7764 512:636 JLINK_IsHalted()  returns FALSE (0000ms, 1270ms total)
T514C 512:737 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 ED 43  returns 0x04 (0001ms, 1271ms total)
T7764 512:738 JLINK_IsHalted()  returns FALSE (0001ms, 1272ms total)
T7764 512:840 JLINK_IsHalted()  returns FALSE (0000ms, 1271ms total)
T7764 512:941 JLINK_IsHalted()  returns FALSE (0000ms, 1271ms total)
T7764 513:043 JLINK_IsHalted()  returns FALSE (0000ms, 1271ms total)
T7764 513:144 JLINK_IsHalted()  returns FALSE (0000ms, 1271ms total)
T7764 513:245 JLINK_IsHalted()  returns FALSE (0000ms, 1271ms total)
T514C 513:346 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 ED 43  returns 0x04 (0001ms, 1272ms total)
T7764 513:347 JLINK_IsHalted()  returns FALSE (0000ms, 1272ms total)
T7764 513:448 JLINK_IsHalted()  returns FALSE (0000ms, 1272ms total)
T7764 513:549 JLINK_IsHalted()  returns FALSE (0000ms, 1272ms total)
T7764 513:650 JLINK_IsHalted()  returns FALSE (0000ms, 1272ms total)
T7764 513:751 JLINK_IsHalted()  returns FALSE (0000ms, 1272ms total)
T514C 513:852 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 EE 43  returns 0x04 (0000ms, 1272ms total)
T7764 513:853 JLINK_IsHalted()  returns FALSE (0000ms, 1272ms total)
T7764 513:954 JLINK_IsHalted()  returns FALSE (0000ms, 1272ms total)
T7764 514:055 JLINK_IsHalted()  returns FALSE (0000ms, 1272ms total)
T7764 514:157 JLINK_IsHalted()  returns FALSE (0000ms, 1272ms total)
T7764 514:258 JLINK_IsHalted()  returns FALSE (0000ms, 1272ms total)
T7764 514:360 JLINK_IsHalted()  returns FALSE (0000ms, 1272ms total)
T514C 514:460 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 EE 43  returns 0x04 (0001ms, 1273ms total)
T7764 514:461 JLINK_IsHalted()  returns FALSE (0000ms, 1273ms total)
T7764 514:563 JLINK_IsHalted()  returns FALSE (0000ms, 1273ms total)
T7764 514:664 JLINK_IsHalted()  returns FALSE (0000ms, 1273ms total)
T7764 514:766 JLINK_IsHalted()  returns FALSE (0000ms, 1273ms total)
T7764 514:867 JLINK_IsHalted()  returns FALSE (0000ms, 1273ms total)
T7764 514:968 JLINK_IsHalted()  returns FALSE (0000ms, 1273ms total)
T514C 515:069 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 EE 43  returns 0x04 (0000ms, 1273ms total)
T7764 515:070 JLINK_IsHalted()  returns FALSE (0000ms, 1273ms total)
T7764 515:172 JLINK_IsHalted()  returns FALSE (0000ms, 1273ms total)
T7764 515:273 JLINK_IsHalted()  returns FALSE (0000ms, 1273ms total)
T7764 515:374 JLINK_IsHalted()  returns FALSE (0000ms, 1273ms total)
T7764 515:476 JLINK_IsHalted()  returns FALSE (0000ms, 1273ms total)
T7764 515:577 JLINK_IsHalted()  returns FALSE (0000ms, 1273ms total)
T514C 515:678 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 EF 43  returns 0x04 (0000ms, 1273ms total)
T7764 515:679 JLINK_IsHalted()  returns FALSE (0000ms, 1273ms total)
T7764 515:780 JLINK_IsHalted()  returns FALSE (0000ms, 1273ms total)
T7764 515:881 JLINK_IsHalted()  returns FALSE (0000ms, 1273ms total)
T7764 515:983 JLINK_IsHalted()  returns FALSE (0000ms, 1273ms total)
T7764 516:084 JLINK_IsHalted()  returns FALSE (0000ms, 1273ms total)
T7764 516:185 JLINK_IsHalted()  returns FALSE (0000ms, 1273ms total)
T514C 516:286 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 EF 43  returns 0x04 (0000ms, 1273ms total)
T7764 516:287 JLINK_IsHalted()  returns FALSE (0000ms, 1274ms total)
T7764 516:388 JLINK_IsHalted()  returns FALSE (0000ms, 1274ms total)
T7764 516:490 JLINK_IsHalted()  returns FALSE (0000ms, 1274ms total)
T7764 516:591 JLINK_IsHalted()  returns FALSE (0000ms, 1274ms total)
T7764 516:693 JLINK_IsHalted()  returns FALSE (0000ms, 1274ms total)
T7764 516:794 JLINK_IsHalted()  returns FALSE (0000ms, 1274ms total)
T514C 516:896 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 EF 43  returns 0x04 (0000ms, 1274ms total)
T7764 516:897 JLINK_IsHalted()  returns FALSE (0000ms, 1275ms total)
T7764 516:998 JLINK_IsHalted()  returns FALSE (0000ms, 1275ms total)
T7764 517:098 JLINK_IsHalted()  returns FALSE (0000ms, 1275ms total)
T7764 517:199 JLINK_IsHalted()  returns FALSE (0000ms, 1275ms total)
T7764 517:300 JLINK_IsHalted()  returns FALSE (0000ms, 1275ms total)
T7764 517:402 JLINK_IsHalted()  returns FALSE (0000ms, 1275ms total)
T514C 517:503 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 EF 43  returns 0x04 (0001ms, 1276ms total)
T7764 517:504 JLINK_IsHalted()  returns FALSE (0000ms, 1276ms total)
T7764 517:606 JLINK_IsHalted()  returns FALSE (0000ms, 1276ms total)
T7764 517:707 JLINK_IsHalted()  returns FALSE (0000ms, 1276ms total)
T7764 517:809 JLINK_IsHalted()  returns FALSE (0000ms, 1276ms total)
T7764 517:910 JLINK_IsHalted()  returns FALSE (0000ms, 1276ms total)
T7764 518:011 JLINK_IsHalted()  returns FALSE (0000ms, 1276ms total)
T514C 518:112 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 F0 43  returns 0x04 (0001ms, 1277ms total)
T7764 518:113 JLINK_IsHalted()  returns FALSE (0001ms, 1278ms total)
T7764 518:214 JLINK_IsHalted()  returns FALSE (0000ms, 1277ms total)
T7764 518:315 JLINK_IsHalted()  returns FALSE (0000ms, 1277ms total)
T7764 518:417 JLINK_IsHalted()  returns FALSE (0000ms, 1277ms total)
T7764 518:518 JLINK_IsHalted()  returns FALSE (0000ms, 1277ms total)
T7764 518:619 JLINK_IsHalted()  returns FALSE (0000ms, 1277ms total)
T514C 518:721 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 F0 43  returns 0x04 (0001ms, 1278ms total)
T7764 518:722 JLINK_IsHalted()  returns FALSE (0000ms, 1278ms total)
T7764 518:823 JLINK_IsHalted()  returns FALSE (0000ms, 1278ms total)
T7764 518:924 JLINK_IsHalted()  returns FALSE (0000ms, 1278ms total)
T7764 519:025 JLINK_IsHalted()  returns FALSE (0000ms, 1278ms total)
T7764 519:127 JLINK_IsHalted()  returns FALSE (0000ms, 1278ms total)
T7764 519:228 JLINK_IsHalted()  returns FALSE (0000ms, 1278ms total)
T514C 519:329 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 F0 43  returns 0x04 (0001ms, 1279ms total)
T7764 519:330 JLINK_IsHalted()  returns FALSE (0000ms, 1279ms total)
T7764 519:431 JLINK_IsHalted()  returns FALSE (0000ms, 1279ms total)
T7764 519:532 JLINK_IsHalted()  returns FALSE (0000ms, 1279ms total)
T7764 519:633 JLINK_IsHalted()  returns FALSE (0000ms, 1279ms total)
T7764 519:735 JLINK_IsHalted()  returns FALSE (0000ms, 1279ms total)
T514C 519:836 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 F1 43  returns 0x04 (0001ms, 1280ms total)
T7764 519:837 JLINK_IsHalted()  returns FALSE (0000ms, 1280ms total)
T7764 519:938 JLINK_IsHalted()  returns FALSE (0000ms, 1280ms total)
T7764 520:039 JLINK_IsHalted()  returns FALSE (0000ms, 1280ms total)
T7764 520:140 JLINK_IsHalted()  returns FALSE (0000ms, 1280ms total)
T7764 520:242 JLINK_IsHalted()  returns FALSE (0000ms, 1280ms total)
T7764 520:343 JLINK_IsHalted()  returns FALSE (0000ms, 1280ms total)
T514C 520:444 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 F1 43  returns 0x04 (0001ms, 1281ms total)
T7764 520:445 JLINK_IsHalted()  returns FALSE (0000ms, 1281ms total)
T7764 520:546 JLINK_IsHalted()  returns FALSE (0000ms, 1281ms total)
T7764 520:647 JLINK_IsHalted()  returns FALSE (0001ms, 1282ms total)
T7764 520:749 JLINK_IsHalted()  returns FALSE (0000ms, 1281ms total)
T7764 520:850 JLINK_IsHalted()  returns FALSE (0000ms, 1281ms total)
T7764 520:952 JLINK_IsHalted()  returns FALSE (0000ms, 1281ms total)
T514C 521:053 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 F1 43  returns 0x04 (0001ms, 1282ms total)
T7764 521:054 JLINK_IsHalted()  returns FALSE (0000ms, 1282ms total)
T7764 521:155 JLINK_IsHalted()  returns FALSE (0000ms, 1282ms total)
T7764 521:256 JLINK_IsHalted()  returns FALSE (0000ms, 1282ms total)
T7764 521:358 JLINK_IsHalted()  returns FALSE (0000ms, 1282ms total)
T7764 521:459 JLINK_IsHalted()  returns FALSE (0000ms, 1282ms total)
T7764 521:560 JLINK_IsHalted()  returns FALSE (0000ms, 1282ms total)
T514C 521:661 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 F2 43  returns 0x04 (0001ms, 1283ms total)
T7764 521:662 JLINK_IsHalted()  returns FALSE (0000ms, 1283ms total)
T7764 521:764 JLINK_IsHalted()  returns FALSE (0000ms, 1283ms total)
T7764 521:865 JLINK_IsHalted()  returns FALSE (0000ms, 1283ms total)
T7764 521:967 JLINK_IsHalted()  returns FALSE (0000ms, 1283ms total)
T7764 522:068 JLINK_IsHalted()  returns FALSE (0000ms, 1283ms total)
T7764 522:169 JLINK_IsHalted()  returns FALSE (0000ms, 1283ms total)
T514C 522:270 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 F2 43  returns 0x04 (0000ms, 1283ms total)
T7764 522:271 JLINK_IsHalted()  returns FALSE (0000ms, 1283ms total)
T7764 522:373 JLINK_IsHalted()  returns FALSE (0000ms, 1283ms total)
T7764 522:474 JLINK_IsHalted()  returns FALSE (0000ms, 1283ms total)
T7764 522:575 JLINK_IsHalted()  returns FALSE (0000ms, 1283ms total)
T7764 522:677 JLINK_IsHalted()  returns FALSE (0000ms, 1283ms total)
T7764 522:778 JLINK_IsHalted()  returns FALSE (0000ms, 1283ms total)
T514C 522:879 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 F2 43  returns 0x04 (0001ms, 1284ms total)
T7764 522:880 JLINK_IsHalted()  returns FALSE (0000ms, 1284ms total)
T7764 522:981 JLINK_IsHalted()  returns FALSE (0000ms, 1284ms total)
T7764 523:083 JLINK_IsHalted()  returns FALSE (0000ms, 1284ms total)
T7764 523:184 JLINK_IsHalted()  returns FALSE (0000ms, 1284ms total)
T7764 523:286 JLINK_IsHalted()  returns FALSE (0000ms, 1284ms total)
T7764 523:387 JLINK_IsHalted()  returns FALSE (0000ms, 1284ms total)
T514C 523:488 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 F2 43  returns 0x04 (0001ms, 1285ms total)
T7764 523:489 JLINK_IsHalted()  returns FALSE (0001ms, 1286ms total)
T7764 523:591 JLINK_IsHalted()  returns FALSE (0000ms, 1285ms total)
T7764 523:693 JLINK_IsHalted()  returns FALSE (0000ms, 1285ms total)
T7764 523:794 JLINK_IsHalted()  returns FALSE (0000ms, 1285ms total)
T7764 523:895 JLINK_IsHalted()  returns FALSE (0000ms, 1285ms total)
T7764 523:996 JLINK_IsHalted()  returns FALSE (0000ms, 1285ms total)
T514C 524:098 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 F3 43  returns 0x04 (0000ms, 1285ms total)
T7764 524:099 JLINK_IsHalted()  returns FALSE (0000ms, 1285ms total)
T7764 524:200 JLINK_IsHalted()  returns FALSE (0000ms, 1285ms total)
T7764 524:301 JLINK_IsHalted()  returns FALSE (0000ms, 1285ms total)
T7764 524:402 JLINK_IsHalted()  returns FALSE (0000ms, 1285ms total)
T7764 524:503 JLINK_IsHalted()  returns FALSE (0000ms, 1285ms total)
T7764 524:604 JLINK_IsHalted()  returns FALSE (0000ms, 1285ms total)
T514C 524:706 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 F3 43  returns 0x04 (0001ms, 1286ms total)
T7764 524:707 JLINK_IsHalted()  returns FALSE (0001ms, 1287ms total)
T7764 524:809 JLINK_IsHalted()  returns FALSE (0000ms, 1286ms total)
T7764 524:909 JLINK_IsHalted()  returns FALSE (0000ms, 1286ms total)
T7764 525:010 JLINK_IsHalted()  returns FALSE (0000ms, 1286ms total)
T7764 525:112 JLINK_IsHalted()  returns FALSE (0000ms, 1286ms total)
T7764 525:213 JLINK_IsHalted()  returns FALSE (0000ms, 1286ms total)
T514C 525:315 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 F3 43  returns 0x04 (0001ms, 1287ms total)
T7764 525:316 JLINK_IsHalted()  returns FALSE (0000ms, 1287ms total)
T7764 525:417 JLINK_IsHalted()  returns FALSE (0000ms, 1287ms total)
T7764 525:518 JLINK_IsHalted()  returns FALSE (0000ms, 1287ms total)
T7764 525:620 JLINK_IsHalted()  returns FALSE (0000ms, 1287ms total)
T7764 525:721 JLINK_IsHalted()  returns FALSE (0000ms, 1287ms total)
T7764 525:822 JLINK_IsHalted()  returns FALSE (0000ms, 1287ms total)
T514C 525:923 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 F4 43  returns 0x04 (0001ms, 1288ms total)
T7764 525:924 JLINK_IsHalted()  returns FALSE (0001ms, 1289ms total)
T7764 526:026 JLINK_IsHalted()  returns FALSE (0000ms, 1288ms total)
T7764 526:127 JLINK_IsHalted()  returns FALSE (0000ms, 1288ms total)
T7764 526:228 JLINK_IsHalted()  returns FALSE (0000ms, 1288ms total)
T7764 526:329 JLINK_IsHalted()  returns FALSE (0000ms, 1288ms total)
T514C 526:430 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 F4 43  returns 0x04 (0001ms, 1289ms total)
T7764 526:431 JLINK_IsHalted()  returns FALSE (0000ms, 1289ms total)
T7764 526:532 JLINK_IsHalted()  returns FALSE (0000ms, 1289ms total)
T7764 526:633 JLINK_IsHalted()  returns FALSE (0000ms, 1289ms total)
T7764 526:735 JLINK_IsHalted()  returns FALSE (0000ms, 1289ms total)
T7764 526:836 JLINK_IsHalted()  returns FALSE (0000ms, 1289ms total)
T7764 526:937 JLINK_IsHalted()  returns FALSE (0000ms, 1289ms total)
T514C 527:038 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 F4 43  returns 0x04 (0001ms, 1290ms total)
T7764 527:039 JLINK_IsHalted()  returns FALSE (0000ms, 1290ms total)
T7764 527:140 JLINK_IsHalted()  returns FALSE (0000ms, 1290ms total)
T7764 527:241 JLINK_IsHalted()  returns FALSE (0000ms, 1290ms total)
T7764 527:343 JLINK_IsHalted()  returns FALSE (0000ms, 1290ms total)
T7764 527:445 JLINK_IsHalted()  returns FALSE (0000ms, 1290ms total)
T7764 527:546 JLINK_IsHalted()  returns FALSE (0000ms, 1290ms total)
T514C 527:648 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 F5 43  returns 0x04 (0000ms, 1290ms total)
T7764 527:648 JLINK_IsHalted()  returns FALSE (0001ms, 1291ms total)
T7764 527:750 JLINK_IsHalted()  returns FALSE (0000ms, 1290ms total)
T7764 527:851 JLINK_IsHalted()  returns FALSE (0000ms, 1290ms total)
T7764 527:952 JLINK_IsHalted()  returns FALSE (0000ms, 1290ms total)
T7764 528:053 JLINK_IsHalted()  returns FALSE (0000ms, 1290ms total)
T7764 528:155 JLINK_IsHalted()  returns FALSE (0000ms, 1290ms total)
T514C 528:257 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 F5 43  returns 0x04 (0001ms, 1291ms total)
T7764 528:258 JLINK_IsHalted()  returns FALSE (0000ms, 1291ms total)
T7764 528:359 JLINK_IsHalted()  returns FALSE (0000ms, 1291ms total)
T7764 528:461 JLINK_IsHalted()  returns FALSE (0000ms, 1291ms total)
T7764 528:562 JLINK_IsHalted()  returns FALSE (0000ms, 1291ms total)
T7764 528:663 JLINK_IsHalted()  returns FALSE (0000ms, 1291ms total)
T7764 528:764 JLINK_IsHalted()  returns FALSE (0000ms, 1291ms total)
T514C 528:865 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 F5 43  returns 0x04 (0001ms, 1292ms total)
T7764 528:866 JLINK_IsHalted()  returns FALSE (0000ms, 1292ms total)
T7764 528:968 JLINK_IsHalted()  returns FALSE (0000ms, 1292ms total)
T7764 529:069 JLINK_IsHalted()  returns FALSE (0000ms, 1292ms total)
T7764 529:170 JLINK_IsHalted()  returns FALSE (0000ms, 1292ms total)
T7764 529:271 JLINK_IsHalted()  returns FALSE (0000ms, 1292ms total)
T7764 529:373 JLINK_IsHalted()  returns FALSE (0000ms, 1292ms total)
T514C 529:474 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 F5 43  returns 0x04 (0000ms, 1292ms total)
T7764 529:475 JLINK_IsHalted()  returns FALSE (0000ms, 1292ms total)
T7764 529:576 JLINK_IsHalted()  returns FALSE (0000ms, 1292ms total)
T7764 529:677 JLINK_IsHalted()  returns FALSE (0000ms, 1292ms total)
T7764 529:778 JLINK_IsHalted()  returns FALSE (0000ms, 1292ms total)
T7764 529:879 JLINK_IsHalted()  returns FALSE (0000ms, 1292ms total)
T7764 529:980 JLINK_IsHalted()  returns FALSE (0000ms, 1292ms total)
T514C 530:081 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 F6 43  returns 0x04 (0001ms, 1293ms total)
T7764 530:082 JLINK_IsHalted()  returns FALSE (0000ms, 1293ms total)
T7764 530:183 JLINK_IsHalted()  returns FALSE (0000ms, 1293ms total)
T7764 530:285 JLINK_IsHalted()  returns FALSE (0000ms, 1293ms total)
T7764 530:386 JLINK_IsHalted()  returns FALSE (0000ms, 1293ms total)
T7764 530:488 JLINK_IsHalted()  returns FALSE (0000ms, 1293ms total)
T7764 530:589 JLINK_IsHalted()  returns FALSE (0000ms, 1293ms total)
T514C 530:691 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 F6 43  returns 0x04 (0001ms, 1294ms total)
T7764 530:692 JLINK_IsHalted()  returns FALSE (0000ms, 1294ms total)
T7764 530:793 JLINK_IsHalted()  returns FALSE (0000ms, 1294ms total)
T7764 530:895 JLINK_IsHalted()  returns FALSE (0000ms, 1294ms total)
T7764 530:996 JLINK_IsHalted()  returns FALSE (0000ms, 1294ms total)
T7764 531:097 JLINK_IsHalted()  returns FALSE (0000ms, 1294ms total)
T7764 531:198 JLINK_IsHalted()  returns FALSE (0000ms, 1294ms total)
T514C 531:299 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 F6 43  returns 0x04 (0001ms, 1295ms total)
T7764 531:300 JLINK_IsHalted()  returns FALSE (0000ms, 1295ms total)
T7764 531:401 JLINK_IsHalted()  returns FALSE (0000ms, 1295ms total)
T7764 531:502 JLINK_IsHalted()  returns FALSE (0000ms, 1295ms total)
T7764 531:604 JLINK_IsHalted()  returns FALSE (0000ms, 1295ms total)
T7764 531:706 JLINK_IsHalted()  returns FALSE (0000ms, 1295ms total)
T7764 531:807 JLINK_IsHalted()  returns FALSE (0000ms, 1295ms total)
T514C 531:908 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 F7 43  returns 0x04 (0001ms, 1296ms total)
T7764 531:909 JLINK_IsHalted()  returns FALSE (0000ms, 1296ms total)
T7764 532:010 JLINK_IsHalted()  returns FALSE (0000ms, 1296ms total)
T7764 532:112 JLINK_IsHalted()  returns FALSE (0000ms, 1296ms total)
T7764 532:213 JLINK_IsHalted()  returns FALSE (0000ms, 1296ms total)
T7764 532:314 JLINK_IsHalted()  returns FALSE (0000ms, 1296ms total)
T7764 532:415 JLINK_IsHalted()  returns FALSE (0000ms, 1296ms total)
T514C 532:516 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 F7 43  returns 0x04 (0001ms, 1297ms total)
T7764 532:517 JLINK_IsHalted()  returns FALSE (0000ms, 1297ms total)
T7764 532:619 JLINK_IsHalted()  returns FALSE (0000ms, 1297ms total)
T7764 532:720 JLINK_IsHalted()  returns FALSE (0000ms, 1297ms total)
T7764 532:821 JLINK_IsHalted()  returns FALSE (0000ms, 1297ms total)
T7764 532:922 JLINK_IsHalted()  returns FALSE (0000ms, 1297ms total)
T514C 533:023 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 F7 43  returns 0x04 (0001ms, 1298ms total)
T7764 533:024 JLINK_IsHalted()  returns FALSE (0000ms, 1298ms total)
T7764 533:126 JLINK_IsHalted()  returns FALSE (0000ms, 1298ms total)
T7764 533:227 JLINK_IsHalted()  returns FALSE (0000ms, 1298ms total)
T7764 533:329 JLINK_IsHalted()  returns FALSE (0000ms, 1298ms total)
T7764 533:430 JLINK_IsHalted()  returns FALSE (0000ms, 1298ms total)
T7764 533:531 JLINK_IsHalted()  returns FALSE (0000ms, 1298ms total)
T514C 533:632 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 F8 43  returns 0x04 (0000ms, 1298ms total)
T7764 533:633 JLINK_IsHalted()  returns FALSE (0000ms, 1298ms total)
T7764 533:735 JLINK_IsHalted()  returns FALSE (0000ms, 1298ms total)
T7764 533:836 JLINK_IsHalted()  returns FALSE (0000ms, 1298ms total)
T7764 533:937 JLINK_IsHalted()  returns FALSE (0000ms, 1298ms total)
T7764 534:038 JLINK_IsHalted()  returns FALSE (0000ms, 1298ms total)
T7764 534:139 JLINK_IsHalted()  returns FALSE (0000ms, 1298ms total)
T514C 534:240 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 F8 43  returns 0x04 (0001ms, 1299ms total)
T7764 534:241 JLINK_IsHalted()  returns FALSE (0000ms, 1299ms total)
T7764 534:343 JLINK_IsHalted()  returns FALSE (0000ms, 1299ms total)
T7764 534:444 JLINK_IsHalted()  returns FALSE (0000ms, 1299ms total)
T7764 534:545 JLINK_IsHalted()  returns FALSE (0000ms, 1299ms total)
T7764 534:646 JLINK_IsHalted()  returns FALSE (0000ms, 1299ms total)
T7764 534:748 JLINK_IsHalted()  returns FALSE (0000ms, 1299ms total)
T514C 534:849 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 F8 43  returns 0x04 (0001ms, 1300ms total)
T7764 534:850 JLINK_IsHalted()  returns FALSE (0000ms, 1300ms total)
T7764 534:951 JLINK_IsHalted()  returns FALSE (0000ms, 1300ms total)
T7764 535:053 JLINK_IsHalted()  returns FALSE (0000ms, 1300ms total)
T7764 535:154 JLINK_IsHalted()  returns FALSE (0000ms, 1300ms total)
T7764 535:255 JLINK_IsHalted()  returns FALSE (0000ms, 1300ms total)
T7764 535:356 JLINK_IsHalted()  returns FALSE (0000ms, 1300ms total)
T514C 535:457 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 F8 43  returns 0x04 (0000ms, 1300ms total)
T7764 535:458 JLINK_IsHalted()  returns FALSE (0000ms, 1300ms total)
T7764 535:560 JLINK_IsHalted()  returns FALSE (0000ms, 1300ms total)
T7764 535:660 JLINK_IsHalted()  returns FALSE (0000ms, 1300ms total)
T7764 535:762 JLINK_IsHalted()  returns FALSE (0000ms, 1300ms total)
T7764 535:864 JLINK_IsHalted()  returns FALSE (0000ms, 1300ms total)
T7764 535:965 JLINK_IsHalted()  returns FALSE (0000ms, 1300ms total)
T514C 536:066 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 F9 43  returns 0x04 (0001ms, 1301ms total)
T7764 536:067 JLINK_IsHalted()  returns FALSE (0001ms, 1302ms total)
T7764 536:169 JLINK_IsHalted()  returns FALSE (0000ms, 1301ms total)
T7764 536:270 JLINK_IsHalted()  returns FALSE (0000ms, 1301ms total)
T7764 536:371 JLINK_IsHalted()  returns FALSE (0000ms, 1301ms total)
T7764 536:473 JLINK_IsHalted()  returns FALSE (0000ms, 1301ms total)
T7764 536:574 JLINK_IsHalted()  returns FALSE (0000ms, 1301ms total)
T514C 536:675 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 F9 43  returns 0x04 (0000ms, 1301ms total)
T7764 536:676 JLINK_IsHalted()  returns FALSE (0000ms, 1301ms total)
T7764 536:778 JLINK_IsHalted()  returns FALSE (0000ms, 1301ms total)
T7764 536:879 JLINK_IsHalted()  returns FALSE (0000ms, 1301ms total)
T7764 536:980 JLINK_IsHalted()  returns FALSE (0000ms, 1301ms total)
T7764 537:081 JLINK_IsHalted()  returns FALSE (0000ms, 1301ms total)
T7764 537:182 JLINK_IsHalted()  returns FALSE (0000ms, 1301ms total)
T514C 537:283 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 F9 43  returns 0x04 (0001ms, 1302ms total)
T7764 537:284 JLINK_IsHalted()  returns FALSE (0000ms, 1302ms total)
T7764 537:385 JLINK_IsHalted()  returns FALSE (0000ms, 1302ms total)
T7764 537:486 JLINK_IsHalted()  returns FALSE (0000ms, 1302ms total)
T7764 537:588 JLINK_IsHalted()  returns FALSE (0000ms, 1302ms total)
T7764 537:689 JLINK_IsHalted()  returns FALSE (0000ms, 1302ms total)
T7764 537:791 JLINK_IsHalted()  returns FALSE (0000ms, 1302ms total)
T514C 537:893 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 FA 43  returns 0x04 (0001ms, 1303ms total)
T7764 537:894 JLINK_IsHalted()  returns FALSE (0000ms, 1303ms total)
T7764 537:995 JLINK_IsHalted()  returns FALSE (0000ms, 1303ms total)
T7764 538:096 JLINK_IsHalted()  returns FALSE (0000ms, 1303ms total)
T7764 538:197 JLINK_IsHalted()  returns FALSE (0000ms, 1303ms total)
T7764 538:298 JLINK_IsHalted()  returns FALSE (0000ms, 1303ms total)
T7764 538:400 JLINK_IsHalted()  returns FALSE (0000ms, 1303ms total)
T514C 538:501 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 FA 43  returns 0x04 (0001ms, 1304ms total)
T7764 538:502 JLINK_IsHalted()  returns FALSE (0001ms, 1305ms total)
T7764 538:604 JLINK_IsHalted()  returns FALSE (0000ms, 1304ms total)
T7764 538:705 JLINK_IsHalted()  returns FALSE (0000ms, 1304ms total)
T7764 538:806 JLINK_IsHalted()  returns FALSE (0000ms, 1304ms total)
T7764 538:907 JLINK_IsHalted()  returns FALSE (0000ms, 1304ms total)
T514C 539:009 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 FA 43  returns 0x04 (0001ms, 1305ms total)
T7764 539:010 JLINK_IsHalted()  returns FALSE (0000ms, 1305ms total)
T7764 539:111 JLINK_IsHalted()  returns FALSE (0000ms, 1305ms total)
T7764 539:212 JLINK_IsHalted()  returns FALSE (0000ms, 1305ms total)
T7764 539:314 JLINK_IsHalted()  returns FALSE (0000ms, 1305ms total)
T7764 539:415 JLINK_IsHalted()  returns FALSE (0000ms, 1305ms total)
T7764 539:516 JLINK_IsHalted()  returns FALSE (0000ms, 1305ms total)
T514C 539:617 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 FB 43  returns 0x04 (0001ms, 1306ms total)
T7764 539:618 JLINK_IsHalted()  returns FALSE (0000ms, 1306ms total)
T7764 539:719 JLINK_IsHalted()  returns FALSE (0000ms, 1306ms total)
T7764 539:821 JLINK_IsHalted()  returns FALSE (0000ms, 1306ms total)
T7764 539:922 JLINK_IsHalted()  returns FALSE (0000ms, 1306ms total)
T7764 540:023 JLINK_IsHalted()  returns FALSE (0000ms, 1306ms total)
T7764 540:124 JLINK_IsHalted()  returns FALSE (0000ms, 1306ms total)
T514C 540:226 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 FB 43  returns 0x04 (0000ms, 1306ms total)
T7764 540:226 JLINK_IsHalted()  returns FALSE (0000ms, 1306ms total)
T7764 540:327 JLINK_IsHalted()  returns FALSE (0001ms, 1307ms total)
T7764 540:429 JLINK_IsHalted()  returns FALSE (0000ms, 1306ms total)
T7764 540:530 JLINK_IsHalted()  returns FALSE (0000ms, 1306ms total)
T7764 540:631 JLINK_IsHalted()  returns FALSE (0000ms, 1306ms total)
T7764 540:732 JLINK_IsHalted()  returns FALSE (0000ms, 1306ms total)
T514C 540:833 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 FB 43  returns 0x04 (0000ms, 1306ms total)
T7764 540:834 JLINK_IsHalted()  returns FALSE (0000ms, 1306ms total)
T7764 540:936 JLINK_IsHalted()  returns FALSE (0000ms, 1306ms total)
T7764 541:037 JLINK_IsHalted()  returns FALSE (0000ms, 1306ms total)
T7764 541:138 JLINK_IsHalted()  returns FALSE (0000ms, 1306ms total)
T7764 541:239 JLINK_IsHalted()  returns FALSE (0000ms, 1306ms total)
T7764 541:340 JLINK_IsHalted()  returns FALSE (0000ms, 1306ms total)
T514C 541:441 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 FB 43  returns 0x04 (0001ms, 1307ms total)
T7764 541:442 JLINK_IsHalted()  returns FALSE (0001ms, 1308ms total)
T7764 541:544 JLINK_IsHalted()  returns FALSE (0000ms, 1307ms total)
T7764 541:645 JLINK_IsHalted()  returns FALSE (0000ms, 1307ms total)
T7764 541:747 JLINK_IsHalted()  returns FALSE (0000ms, 1307ms total)
T7764 541:848 JLINK_IsHalted()  returns FALSE (0000ms, 1307ms total)
T7764 541:949 JLINK_IsHalted()  returns FALSE (0000ms, 1307ms total)
T514C 542:050 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 FC 43  returns 0x04 (0001ms, 1308ms total)
T7764 542:051 JLINK_IsHalted()  returns FALSE (0001ms, 1309ms total)
T7764 542:153 JLINK_IsHalted()  returns FALSE (0000ms, 1308ms total)
T7764 542:254 JLINK_IsHalted()  returns FALSE (0000ms, 1308ms total)
T7764 542:355 JLINK_IsHalted()  returns FALSE (0000ms, 1308ms total)
T7764 542:456 JLINK_IsHalted()  returns FALSE (0000ms, 1308ms total)
T7764 542:557 JLINK_IsHalted()  returns FALSE (0000ms, 1308ms total)
T514C 542:658 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 FC 43  returns 0x04 (0001ms, 1309ms total)
T7764 542:659 JLINK_IsHalted()  returns FALSE (0000ms, 1309ms total)
T7764 542:761 JLINK_IsHalted()  returns FALSE (0000ms, 1309ms total)
T7764 542:862 JLINK_IsHalted()  returns FALSE (0000ms, 1309ms total)
T7764 542:963 JLINK_IsHalted()  returns FALSE (0000ms, 1309ms total)
T7764 543:064 JLINK_IsHalted()  returns FALSE (0000ms, 1309ms total)
T7764 543:165 JLINK_IsHalted()  returns FALSE (0000ms, 1309ms total)
T514C 543:267 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 FC 43  returns 0x04 (0000ms, 1309ms total)
T7764 543:268 JLINK_IsHalted()  returns FALSE (0000ms, 1310ms total)
T7764 543:369 JLINK_IsHalted()  returns FALSE (0000ms, 1310ms total)
T7764 543:470 JLINK_IsHalted()  returns FALSE (0000ms, 1310ms total)
T7764 543:572 JLINK_IsHalted()  returns FALSE (0000ms, 1310ms total)
T7764 543:673 JLINK_IsHalted()  returns FALSE (0000ms, 1310ms total)
T514C 543:774 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 FD 43  returns 0x04 (0001ms, 1311ms total)
T7764 543:775 JLINK_IsHalted()  returns FALSE (0000ms, 1311ms total)
T7764 543:877 JLINK_IsHalted()  returns FALSE (0000ms, 1311ms total)
T7764 543:978 JLINK_IsHalted()  returns FALSE (0000ms, 1311ms total)
T7764 544:079 JLINK_IsHalted()  returns FALSE (0000ms, 1311ms total)
T7764 544:180 JLINK_IsHalted()  returns FALSE (0000ms, 1311ms total)
T7764 544:282 JLINK_IsHalted()  returns FALSE (0000ms, 1311ms total)
T514C 544:383 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 FD 43  returns 0x04 (0001ms, 1312ms total)
T7764 544:384 JLINK_IsHalted()  returns FALSE (0000ms, 1312ms total)
T7764 544:485 JLINK_IsHalted()  returns FALSE (0000ms, 1312ms total)
T7764 544:587 JLINK_IsHalted()  returns FALSE (0000ms, 1312ms total)
T7764 544:688 JLINK_IsHalted()  returns FALSE (0000ms, 1312ms total)
T7764 544:789 JLINK_IsHalted()  returns FALSE (0000ms, 1312ms total)
T7764 544:891 JLINK_IsHalted()  returns FALSE (0000ms, 1312ms total)
T514C 544:992 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 FD 43  returns 0x04 (0001ms, 1313ms total)
T7764 544:993 JLINK_IsHalted()  returns FALSE (0000ms, 1313ms total)
T7764 545:095 JLINK_IsHalted()  returns FALSE (0000ms, 1313ms total)
T7764 545:196 JLINK_IsHalted()  returns FALSE (0000ms, 1313ms total)
T7764 545:297 JLINK_IsHalted()  returns FALSE (0000ms, 1313ms total)
T7764 545:399 JLINK_IsHalted()  returns FALSE (0000ms, 1313ms total)
T7764 545:500 JLINK_IsHalted()  returns FALSE (0000ms, 1313ms total)
T514C 545:601 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 FE 43  returns 0x04 (0001ms, 1314ms total)
T7764 545:602 JLINK_IsHalted()  returns FALSE (0000ms, 1314ms total)
T7764 545:704 JLINK_IsHalted()  returns FALSE (0000ms, 1314ms total)
T7764 545:805 JLINK_IsHalted()  returns FALSE (0000ms, 1314ms total)
T7764 545:906 JLINK_IsHalted()  returns FALSE (0000ms, 1314ms total)
T7764 546:008 JLINK_IsHalted()  returns FALSE (0000ms, 1314ms total)
T7764 546:109 JLINK_IsHalted()  returns FALSE (0000ms, 1314ms total)
T514C 546:210 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 FE 43  returns 0x04 (0000ms, 1314ms total)
T7764 546:211 JLINK_IsHalted()  returns FALSE (0000ms, 1314ms total)
T7764 546:312 JLINK_IsHalted()  returns FALSE (0000ms, 1314ms total)
T7764 546:413 JLINK_IsHalted()  returns FALSE (0000ms, 1314ms total)
T7764 546:514 JLINK_IsHalted()  returns FALSE (0000ms, 1314ms total)
T7764 546:615 JLINK_IsHalted()  returns FALSE (0000ms, 1314ms total)
T7764 546:717 JLINK_IsHalted()  returns FALSE (0000ms, 1314ms total)
T514C 546:818 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 FE 43  returns 0x04 (0001ms, 1315ms total)
T7764 546:819 JLINK_IsHalted()  returns FALSE (0000ms, 1315ms total)
T7764 546:920 JLINK_IsHalted()  returns FALSE (0000ms, 1315ms total)
T7764 547:021 JLINK_IsHalted()  returns FALSE (0000ms, 1315ms total)
T7764 547:122 JLINK_IsHalted()  returns FALSE (0000ms, 1315ms total)
T7764 547:223 JLINK_IsHalted()  returns FALSE (0000ms, 1315ms total)
T7764 547:324 JLINK_IsHalted()  returns FALSE (0000ms, 1315ms total)
T514C 547:425 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 FE 43  returns 0x04 (0000ms, 1315ms total)
T7764 547:426 JLINK_IsHalted()  returns FALSE (0000ms, 1315ms total)
T7764 547:527 JLINK_IsHalted()  returns FALSE (0000ms, 1315ms total)
T7764 547:629 JLINK_IsHalted()  returns FALSE (0000ms, 1315ms total)
T7764 547:730 JLINK_IsHalted()  returns FALSE (0000ms, 1315ms total)
T7764 547:831 JLINK_IsHalted()  returns FALSE (0000ms, 1315ms total)
T7764 547:933 JLINK_IsHalted()  returns FALSE (0000ms, 1315ms total)
T514C 548:034 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 FF 43  returns 0x04 (0001ms, 1316ms total)
T7764 548:035 JLINK_IsHalted()  returns FALSE (0000ms, 1316ms total)
T7764 548:137 JLINK_IsHalted()  returns FALSE (0000ms, 1316ms total)
T7764 548:238 JLINK_IsHalted()  returns FALSE (0000ms, 1316ms total)
T7764 548:339 JLINK_IsHalted()  returns FALSE (0000ms, 1316ms total)
T7764 548:440 JLINK_IsHalted()  returns FALSE (0000ms, 1316ms total)
T7764 548:541 JLINK_IsHalted()  returns FALSE (0000ms, 1316ms total)
T514C 548:642 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 FF 43  returns 0x04 (0001ms, 1317ms total)
T7764 548:643 JLINK_IsHalted()  returns FALSE (0001ms, 1318ms total)
T7764 548:745 JLINK_IsHalted()  returns FALSE (0000ms, 1317ms total)
T7764 548:846 JLINK_IsHalted()  returns FALSE (0000ms, 1317ms total)
T7764 548:947 JLINK_IsHalted()  returns FALSE (0000ms, 1317ms total)
T7764 549:048 JLINK_IsHalted()  returns FALSE (0000ms, 1317ms total)
T514C 549:149 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 FF 43  returns 0x04 (0001ms, 1318ms total)
T7764 549:150 JLINK_IsHalted()  returns FALSE (0000ms, 1318ms total)
T7764 549:252 JLINK_IsHalted()  returns FALSE (0000ms, 1318ms total)
T7764 549:353 JLINK_IsHalted()  returns FALSE (0000ms, 1318ms total)
T7764 549:454 JLINK_IsHalted()  returns FALSE (0000ms, 1318ms total)
T7764 549:556 JLINK_IsHalted()  returns FALSE (0000ms, 1318ms total)
T7764 549:657 JLINK_IsHalted()  returns FALSE (0000ms, 1318ms total)
T514C 549:758 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 00 44  returns 0x04 (0001ms, 1319ms total)
T7764 549:759 JLINK_IsHalted()  returns FALSE (0000ms, 1319ms total)
T7764 549:860 JLINK_IsHalted()  returns FALSE (0000ms, 1319ms total)
T7764 549:961 JLINK_IsHalted()  returns FALSE (0000ms, 1319ms total)
T7764 550:062 JLINK_IsHalted()  returns FALSE (0000ms, 1319ms total)
T7764 550:163 JLINK_IsHalted()  returns FALSE (0000ms, 1319ms total)
T7764 550:265 JLINK_IsHalted()  returns FALSE (0000ms, 1319ms total)
T514C 550:366 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 00 44  returns 0x04 (0001ms, 1320ms total)
T7764 550:367 JLINK_IsHalted()  returns FALSE (0000ms, 1320ms total)
T7764 550:468 JLINK_IsHalted()  returns FALSE (0000ms, 1320ms total)
T7764 550:570 JLINK_IsHalted()  returns FALSE (0000ms, 1320ms total)
T7764 550:671 JLINK_IsHalted()  returns FALSE (0000ms, 1320ms total)
T7764 550:773 JLINK_IsHalted()  returns FALSE (0000ms, 1320ms total)
T7764 550:874 JLINK_IsHalted()  returns FALSE (0000ms, 1320ms total)
T514C 550:975 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 40 00 44  returns 0x04 (0001ms, 1321ms total)
T7764 550:976 JLINK_IsHalted()  returns FALSE (0000ms, 1321ms total)
T7764 551:077 JLINK_IsHalted()  returns FALSE (0000ms, 1321ms total)
T7764 551:179 JLINK_IsHalted()  returns FALSE (0000ms, 1321ms total)
T7764 551:280 JLINK_IsHalted()  returns FALSE (0000ms, 1321ms total)
T7764 551:381 JLINK_IsHalted()  returns FALSE (0000ms, 1321ms total)
T7764 551:482 JLINK_IsHalted()  returns FALSE (0000ms, 1321ms total)
T514C 551:584 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 00 44  returns 0x04 (0001ms, 1322ms total)
T7764 551:585 JLINK_IsHalted()  returns FALSE (0000ms, 1322ms total)
T7764 551:686 JLINK_IsHalted()  returns FALSE (0000ms, 1322ms total)
T7764 551:788 JLINK_IsHalted()  returns FALSE (0000ms, 1322ms total)
T7764 551:889 JLINK_IsHalted()  returns FALSE (0000ms, 1322ms total)
T7764 551:990 JLINK_IsHalted()  returns FALSE (0000ms, 1322ms total)
T7764 552:091 JLINK_IsHalted()  returns FALSE (0000ms, 1322ms total)
T514C 552:192 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 00 44  returns 0x04 (0000ms, 1322ms total)
T7764 552:193 JLINK_IsHalted()  returns FALSE (0000ms, 1322ms total)
T7764 552:295 JLINK_IsHalted()  returns FALSE (0000ms, 1322ms total)
T7764 552:396 JLINK_IsHalted()  returns FALSE (0000ms, 1322ms total)
T7764 552:498 JLINK_IsHalted()  returns FALSE (0000ms, 1322ms total)
T7764 552:599 JLINK_IsHalted()  returns FALSE (0000ms, 1322ms total)
T7764 552:701 JLINK_IsHalted()  returns FALSE (0000ms, 1322ms total)
T514C 552:802 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 C0 00 44  returns 0x04 (0000ms, 1322ms total)
T7764 552:803 JLINK_IsHalted()  returns FALSE (0000ms, 1322ms total)
T7764 552:904 JLINK_IsHalted()  returns FALSE (0000ms, 1322ms total)
T7764 553:005 JLINK_IsHalted()  returns FALSE (0000ms, 1322ms total)
T7764 553:107 JLINK_IsHalted()  returns FALSE (0000ms, 1322ms total)
T7764 553:208 JLINK_IsHalted()  returns FALSE (0000ms, 1322ms total)
T7764 553:309 JLINK_IsHalted()  returns FALSE (0000ms, 1322ms total)
T514C 553:410 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 C0 00 44  returns 0x04 (0001ms, 1323ms total)
T7764 553:411 JLINK_IsHalted()  returns FALSE (0000ms, 1323ms total)
T7764 553:513 JLINK_IsHalted()  returns FALSE (0000ms, 1323ms total)
T7764 553:614 JLINK_IsHalted()  returns FALSE (0000ms, 1323ms total)
T7764 553:715 JLINK_IsHalted()  returns FALSE (0000ms, 1323ms total)
T7764 553:816 JLINK_IsHalted()  returns FALSE (0000ms, 1323ms total)
T7764 553:916 JLINK_IsHalted()  returns FALSE (0000ms, 1323ms total)
T514C 554:018 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 01 44  returns 0x04 (0001ms, 1324ms total)
T7764 554:019 JLINK_IsHalted()  returns FALSE (0000ms, 1324ms total)
T7764 554:121 JLINK_IsHalted()  returns FALSE (0000ms, 1324ms total)
T7764 554:222 JLINK_IsHalted()  returns FALSE (0000ms, 1324ms total)
T7764 554:323 JLINK_IsHalted()  returns FALSE (0000ms, 1324ms total)
T7764 554:424 JLINK_IsHalted()  returns FALSE (0000ms, 1324ms total)
T7764 554:525 JLINK_IsHalted()  returns FALSE (0001ms, 1325ms total)
T514C 554:627 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 40 01 44  returns 0x04 (0001ms, 1325ms total)
T7764 554:628 JLINK_IsHalted()  returns FALSE (0001ms, 1326ms total)
T7764 554:730 JLINK_IsHalted()  returns FALSE (0000ms, 1325ms total)
T7764 554:831 JLINK_IsHalted()  returns FALSE (0000ms, 1325ms total)
T7764 554:933 JLINK_IsHalted()  returns FALSE (0000ms, 1325ms total)
T7764 555:034 JLINK_IsHalted()  returns FALSE (0000ms, 1325ms total)
T514C 555:135 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 40 01 44  returns 0x04 (0001ms, 1326ms total)
T7764 555:136 JLINK_IsHalted()  returns FALSE (0000ms, 1326ms total)
T7764 555:237 JLINK_IsHalted()  returns FALSE (0000ms, 1326ms total)
T7764 555:338 JLINK_IsHalted()  returns FALSE (0000ms, 1326ms total)
T7764 555:439 JLINK_IsHalted()  returns FALSE (0000ms, 1326ms total)
T7764 555:540 JLINK_IsHalted()  returns FALSE (0000ms, 1326ms total)
T7764 555:642 JLINK_IsHalted()  returns FALSE (0000ms, 1326ms total)
T514C 555:744 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 01 44  returns 0x04 (0001ms, 1327ms total)
T7764 555:745 JLINK_IsHalted()  returns FALSE (0000ms, 1327ms total)
T7764 555:846 JLINK_IsHalted()  returns FALSE (0000ms, 1327ms total)
T7764 555:947 JLINK_IsHalted()  returns FALSE (0000ms, 1327ms total)
T7764 556:048 JLINK_IsHalted()  returns FALSE (0000ms, 1327ms total)
T7764 556:149 JLINK_IsHalted()  returns FALSE (0000ms, 1327ms total)
T7764 556:251 JLINK_IsHalted()  returns FALSE (0000ms, 1327ms total)
T514C 556:352 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 01 44  returns 0x04 (0001ms, 1328ms total)
T7764 556:353 JLINK_IsHalted()  returns FALSE (0000ms, 1328ms total)
T7764 556:454 JLINK_IsHalted()  returns FALSE (0000ms, 1328ms total)
T7764 556:555 JLINK_IsHalted()  returns FALSE (0000ms, 1328ms total)
T7764 556:657 JLINK_IsHalted()  returns FALSE (0000ms, 1328ms total)
T7764 556:758 JLINK_IsHalted()  returns FALSE (0000ms, 1328ms total)
T7764 556:859 JLINK_IsHalted()  returns FALSE (0000ms, 1328ms total)
T514C 556:960 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 C0 01 44  returns 0x04 (0001ms, 1329ms total)
T7764 556:961 JLINK_IsHalted()  returns FALSE (0000ms, 1329ms total)
T7764 557:062 JLINK_IsHalted()  returns FALSE (0000ms, 1329ms total)
T7764 557:164 JLINK_IsHalted()  returns FALSE (0000ms, 1329ms total)
T7764 557:265 JLINK_IsHalted()  returns FALSE (0000ms, 1329ms total)
T7764 557:366 JLINK_IsHalted()  returns FALSE (0000ms, 1329ms total)
T7764 557:467 JLINK_IsHalted()  returns FALSE (0000ms, 1329ms total)
T514C 557:568 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 02 44  returns 0x04 (0001ms, 1330ms total)
T7764 557:569 JLINK_IsHalted()  returns FALSE (0000ms, 1330ms total)
T7764 557:671 JLINK_IsHalted()  returns FALSE (0000ms, 1330ms total)
T7764 557:772 JLINK_IsHalted()  returns FALSE (0000ms, 1330ms total)
T7764 557:873 JLINK_IsHalted()  returns FALSE (0000ms, 1330ms total)
T7764 557:974 JLINK_IsHalted()  returns FALSE (0000ms, 1330ms total)
T7764 558:075 JLINK_IsHalted()  returns FALSE (0000ms, 1330ms total)
T514C 558:176 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 02 44  returns 0x04 (0001ms, 1331ms total)
T7764 558:177 JLINK_IsHalted()  returns FALSE (0000ms, 1331ms total)
T7764 558:279 JLINK_IsHalted()  returns FALSE (0000ms, 1331ms total)
T7764 558:380 JLINK_IsHalted()  returns FALSE (0000ms, 1331ms total)
T7764 558:481 JLINK_IsHalted()  returns FALSE (0000ms, 1331ms total)
T7764 558:582 JLINK_IsHalted()  returns FALSE (0000ms, 1331ms total)
T7764 558:684 JLINK_IsHalted()  returns FALSE (0000ms, 1331ms total)
T514C 558:785 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 40 02 44  returns 0x04 (0001ms, 1332ms total)
T7764 558:786 JLINK_IsHalted()  returns FALSE (0001ms, 1333ms total)
T7764 558:888 JLINK_IsHalted()  returns FALSE (0000ms, 1332ms total)
T7764 558:989 JLINK_IsHalted()  returns FALSE (0000ms, 1332ms total)
T7764 559:090 JLINK_IsHalted()  returns FALSE (0000ms, 1332ms total)
T7764 559:191 JLINK_IsHalted()  returns FALSE (0000ms, 1332ms total)
T7764 559:293 JLINK_IsHalted()  returns FALSE (0000ms, 1332ms total)
T514C 559:394 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 40 02 44  returns 0x04 (0001ms, 1333ms total)
T7764 559:395 JLINK_IsHalted()  returns FALSE (0000ms, 1333ms total)
T7764 559:496 JLINK_IsHalted()  returns FALSE (0000ms, 1333ms total)
T7764 559:598 JLINK_IsHalted()  returns FALSE (0000ms, 1333ms total)
T7764 559:699 JLINK_IsHalted()  returns FALSE (0000ms, 1333ms total)
T7764 559:800 JLINK_IsHalted()  returns FALSE (0000ms, 1333ms total)
T7764 559:902 JLINK_IsHalted()  returns FALSE (0000ms, 1333ms total)
T514C 560:003 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 02 44  returns 0x04 (0000ms, 1333ms total)
T7764 560:004 JLINK_IsHalted()  returns FALSE (0000ms, 1333ms total)
T7764 560:105 JLINK_IsHalted()  returns FALSE (0000ms, 1333ms total)
T7764 560:206 JLINK_IsHalted()  returns FALSE (0000ms, 1333ms total)
T7764 560:307 JLINK_IsHalted()  returns FALSE (0000ms, 1333ms total)
T7764 560:408 JLINK_IsHalted()  returns FALSE (0000ms, 1333ms total)
T7764 560:509 JLINK_IsHalted()  returns FALSE (0000ms, 1333ms total)
T514C 560:611 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 C0 02 44  returns 0x04 (0001ms, 1334ms total)
T7764 560:612 JLINK_IsHalted()  returns FALSE (0001ms, 1335ms total)
T7764 560:713 JLINK_IsHalted()  returns FALSE (0000ms, 1334ms total)
T7764 560:814 JLINK_IsHalted()  returns FALSE (0000ms, 1334ms total)
T7764 560:916 JLINK_IsHalted()  returns FALSE (0000ms, 1334ms total)
T7764 561:018 JLINK_IsHalted()  returns FALSE (0000ms, 1334ms total)
T514C 561:119 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 C0 02 44  returns 0x04 (0001ms, 1335ms total)
T7764 561:120 JLINK_IsHalted()  returns FALSE (0000ms, 1335ms total)
T7764 561:221 JLINK_IsHalted()  returns FALSE (0000ms, 1335ms total)
T7764 561:322 JLINK_IsHalted()  returns FALSE (0000ms, 1335ms total)
T7764 561:424 JLINK_IsHalted()  returns FALSE (0000ms, 1335ms total)
T7764 561:525 JLINK_IsHalted()  returns FALSE (0000ms, 1335ms total)
T7764 561:626 JLINK_IsHalted()  returns FALSE (0001ms, 1336ms total)
T514C 561:728 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 03 44  returns 0x04 (0000ms, 1335ms total)
T7764 561:729 JLINK_IsHalted()  returns FALSE (0000ms, 1335ms total)
T7764 561:830 JLINK_IsHalted()  returns FALSE (0000ms, 1335ms total)
T7764 561:931 JLINK_IsHalted()  returns FALSE (0001ms, 1336ms total)
T7764 562:033 JLINK_IsHalted()  returns FALSE (0001ms, 1336ms total)
T7764 562:135 JLINK_IsHalted()  returns FALSE (0000ms, 1335ms total)
T7764 562:236 JLINK_IsHalted()  returns FALSE (0000ms, 1335ms total)
T514C 562:338 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 03 44  returns 0x04 (0001ms, 1336ms total)
T7764 562:339 JLINK_IsHalted()  returns FALSE (0000ms, 1336ms total)
T7764 562:440 JLINK_IsHalted()  returns FALSE (0000ms, 1336ms total)
T7764 562:541 JLINK_IsHalted()  returns FALSE (0000ms, 1336ms total)
T7764 562:642 JLINK_IsHalted()  returns FALSE (0000ms, 1336ms total)
T7764 562:743 JLINK_IsHalted()  returns FALSE (0000ms, 1336ms total)
T7764 562:845 JLINK_IsHalted()  returns FALSE (0000ms, 1336ms total)
T514C 562:946 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 40 03 44  returns 0x04 (0000ms, 1336ms total)
T7764 562:947 JLINK_IsHalted()  returns FALSE (0000ms, 1336ms total)
T7764 563:048 JLINK_IsHalted()  returns FALSE (0000ms, 1336ms total)
T7764 563:149 JLINK_IsHalted()  returns FALSE (0000ms, 1336ms total)
T7764 563:250 JLINK_IsHalted()  returns FALSE (0000ms, 1336ms total)
T7764 563:351 JLINK_IsHalted()  returns FALSE (0000ms, 1336ms total)
T7764 563:452 JLINK_IsHalted()  returns FALSE (0000ms, 1336ms total)
T514C 563:554 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 03 44  returns 0x04 (0001ms, 1337ms total)
T7764 563:555 JLINK_IsHalted()  returns FALSE (0000ms, 1337ms total)
T7764 563:657 JLINK_IsHalted()  returns FALSE (0000ms, 1337ms total)
T7764 563:758 JLINK_IsHalted()  returns FALSE (0000ms, 1337ms total)
T7764 563:859 JLINK_IsHalted()  returns FALSE (0000ms, 1337ms total)
T7764 563:960 JLINK_IsHalted()  returns FALSE (0000ms, 1337ms total)
T7764 564:062 JLINK_IsHalted()  returns FALSE (0000ms, 1337ms total)
T514C 564:163 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 03 44  returns 0x04 (0000ms, 1337ms total)
T7764 564:164 JLINK_IsHalted()  returns FALSE (0000ms, 1337ms total)
T7764 564:265 JLINK_IsHalted()  returns FALSE (0000ms, 1337ms total)
T7764 564:366 JLINK_IsHalted()  returns FALSE (0000ms, 1337ms total)
T7764 564:467 JLINK_IsHalted()  returns FALSE (0000ms, 1337ms total)
T7764 564:568 JLINK_IsHalted()  returns FALSE (0000ms, 1337ms total)
T7764 564:669 JLINK_IsHalted()  returns FALSE (0000ms, 1337ms total)
T514C 564:770 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 C0 03 44  returns 0x04 (0000ms, 1337ms total)
T7764 564:771 JLINK_IsHalted()  returns FALSE (0000ms, 1337ms total)
T7764 564:873 JLINK_IsHalted()  returns FALSE (0000ms, 1337ms total)
T7764 564:974 JLINK_IsHalted()  returns FALSE (0000ms, 1337ms total)
T7764 565:075 JLINK_IsHalted()  returns FALSE (0000ms, 1337ms total)
T7764 565:177 JLINK_IsHalted()  returns FALSE (0000ms, 1337ms total)
T7764 565:278 JLINK_IsHalted()  returns FALSE (0000ms, 1337ms total)
T514C 565:379 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 C0 03 44  returns 0x04 (0001ms, 1338ms total)
T7764 565:380 JLINK_IsHalted()  returns FALSE (0000ms, 1338ms total)
T7764 565:481 JLINK_IsHalted()  returns FALSE (0000ms, 1338ms total)
T7764 565:582 JLINK_IsHalted()  returns FALSE (0000ms, 1338ms total)
T7764 565:684 JLINK_IsHalted()  returns FALSE (0000ms, 1338ms total)
T7764 565:785 JLINK_IsHalted()  returns FALSE (0000ms, 1338ms total)
T7764 565:886 JLINK_IsHalted()  returns FALSE (0000ms, 1338ms total)
T514C 565:988 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 04 44  returns 0x04 (0000ms, 1338ms total)
T7764 565:989 JLINK_IsHalted()  returns FALSE (0000ms, 1338ms total)
T7764 566:090 JLINK_IsHalted()  returns FALSE (0000ms, 1338ms total)
T7764 566:191 JLINK_IsHalted()  returns FALSE (0000ms, 1338ms total)
T7764 566:292 JLINK_IsHalted()  returns FALSE (0000ms, 1338ms total)
T7764 566:394 JLINK_IsHalted()  returns FALSE (0000ms, 1338ms total)
T7764 566:495 JLINK_IsHalted()  returns FALSE (0000ms, 1338ms total)
T514C 566:596 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 40 04 44  returns 0x04 (0001ms, 1339ms total)
T7764 566:597 JLINK_IsHalted()  returns FALSE (0001ms, 1340ms total)
T7764 566:698 JLINK_IsHalted()  returns FALSE (0000ms, 1339ms total)
T7764 566:799 JLINK_IsHalted()  returns FALSE (0000ms, 1339ms total)
T7764 566:901 JLINK_IsHalted()  returns FALSE (0000ms, 1339ms total)
T7764 567:002 JLINK_IsHalted()  returns FALSE (0000ms, 1339ms total)
T7764 567:103 JLINK_IsHalted()  returns FALSE (0000ms, 1339ms total)
T514C 567:204 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 40 04 44  returns 0x04 (0000ms, 1339ms total)
T7764 567:205 JLINK_IsHalted()  returns FALSE (0000ms, 1339ms total)
T7764 567:306 JLINK_IsHalted()  returns FALSE (0000ms, 1339ms total)
T7764 567:407 JLINK_IsHalted()  returns FALSE (0000ms, 1339ms total)
T7764 567:509 JLINK_IsHalted()  returns FALSE (0000ms, 1339ms total)
T7764 567:610 JLINK_IsHalted()  returns FALSE (0000ms, 1339ms total)
T514C 567:711 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 04 44  returns 0x04 (0001ms, 1340ms total)
T7764 567:712 JLINK_IsHalted()  returns FALSE (0000ms, 1340ms total)
T7764 567:813 JLINK_IsHalted()  returns FALSE (0000ms, 1340ms total)
T7764 567:914 JLINK_IsHalted()  returns FALSE (0000ms, 1340ms total)
T7764 568:015 JLINK_IsHalted()  returns FALSE (0000ms, 1340ms total)
T7764 568:116 JLINK_IsHalted()  returns FALSE (0000ms, 1340ms total)
T7764 568:217 JLINK_IsHalted()  returns FALSE (0000ms, 1340ms total)
T514C 568:319 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 04 44  returns 0x04 (0001ms, 1341ms total)
T7764 568:320 JLINK_IsHalted()  returns FALSE (0000ms, 1341ms total)
T7764 568:421 JLINK_IsHalted()  returns FALSE (0000ms, 1341ms total)
T7764 568:523 JLINK_IsHalted()  returns FALSE (0000ms, 1341ms total)
T7764 568:625 JLINK_IsHalted()  returns FALSE (0000ms, 1341ms total)
T7764 568:726 JLINK_IsHalted()  returns FALSE (0000ms, 1341ms total)
T7764 568:828 JLINK_IsHalted()  returns FALSE (0000ms, 1341ms total)
T514C 568:929 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 C0 04 44  returns 0x04 (0001ms, 1342ms total)
T7764 568:930 JLINK_IsHalted()  returns FALSE (0000ms, 1342ms total)
T7764 569:031 JLINK_IsHalted()  returns FALSE (0000ms, 1342ms total)
T7764 569:132 JLINK_IsHalted()  returns FALSE (0001ms, 1343ms total)
T7764 569:234 JLINK_IsHalted()  returns FALSE (0000ms, 1342ms total)
T7764 569:336 JLINK_IsHalted()  returns FALSE (0000ms, 1342ms total)
T7764 569:437 JLINK_IsHalted()  returns FALSE (0000ms, 1342ms total)
T514C 569:538 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 C0 04 44  returns 0x04 (0001ms, 1343ms total)
T7764 569:539 JLINK_IsHalted()  returns FALSE (0000ms, 1343ms total)
T7764 569:641 JLINK_IsHalted()  returns FALSE (0000ms, 1343ms total)
T7764 569:742 JLINK_IsHalted()  returns FALSE (0000ms, 1343ms total)
T7764 569:844 JLINK_IsHalted()  returns FALSE (0000ms, 1343ms total)
T7764 569:945 JLINK_IsHalted()  returns FALSE (0000ms, 1343ms total)
T7764 570:046 JLINK_IsHalted()  returns FALSE (0000ms, 1343ms total)
T514C 570:147 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 05 44  returns 0x04 (0001ms, 1344ms total)
T7764 570:148 JLINK_IsHalted()  returns FALSE (0000ms, 1344ms total)
T7764 570:249 JLINK_IsHalted()  returns FALSE (0000ms, 1344ms total)
T7764 570:350 JLINK_IsHalted()  returns FALSE (0000ms, 1344ms total)
T7764 570:452 JLINK_IsHalted()  returns FALSE (0000ms, 1344ms total)
T7764 570:553 JLINK_IsHalted()  returns FALSE (0000ms, 1344ms total)
T7764 570:655 JLINK_IsHalted()  returns FALSE (0000ms, 1344ms total)
T514C 570:756 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 40 05 44  returns 0x04 (0000ms, 1344ms total)
T7764 570:757 JLINK_IsHalted()  returns FALSE (0000ms, 1344ms total)
T7764 570:858 JLINK_IsHalted()  returns FALSE (0000ms, 1344ms total)
T7764 570:959 JLINK_IsHalted()  returns FALSE (0000ms, 1344ms total)
T7764 571:060 JLINK_IsHalted()  returns FALSE (0000ms, 1344ms total)
T7764 571:161 JLINK_IsHalted()  returns FALSE (0000ms, 1344ms total)
T7764 571:263 JLINK_IsHalted()  returns FALSE (0000ms, 1344ms total)
T514C 571:365 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 40 05 44  returns 0x04 (0000ms, 1344ms total)
T7764 571:366 JLINK_IsHalted()  returns FALSE (0000ms, 1344ms total)
T7764 571:467 JLINK_IsHalted()  returns FALSE (0000ms, 1344ms total)
T7764 571:568 JLINK_IsHalted()  returns FALSE (0000ms, 1344ms total)
T7764 571:669 JLINK_IsHalted()  returns FALSE (0000ms, 1344ms total)
T7764 571:770 JLINK_IsHalted()  returns FALSE (0000ms, 1344ms total)
T7764 571:871 JLINK_IsHalted()  returns FALSE (0000ms, 1344ms total)
T514C 571:972 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 05 44  returns 0x04 (0001ms, 1345ms total)
T7764 571:973 JLINK_IsHalted()  returns FALSE (0000ms, 1345ms total)
T7764 572:075 JLINK_IsHalted()  returns FALSE (0000ms, 1345ms total)
T7764 572:176 JLINK_IsHalted()  returns FALSE (0000ms, 1345ms total)
T7764 572:278 JLINK_IsHalted()  returns FALSE (0000ms, 1345ms total)
T7764 572:379 JLINK_IsHalted()  returns FALSE (0000ms, 1345ms total)
T7764 572:480 JLINK_IsHalted()  returns FALSE (0000ms, 1345ms total)
T514C 572:581 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 C0 05 44  returns 0x04 (0001ms, 1346ms total)
T7764 572:582 JLINK_IsHalted()  returns FALSE (0000ms, 1346ms total)
T7764 572:684 JLINK_IsHalted()  returns FALSE (0000ms, 1346ms total)
T7764 572:786 JLINK_IsHalted()  returns FALSE (0000ms, 1346ms total)
T7764 572:887 JLINK_IsHalted()  returns FALSE (0000ms, 1346ms total)
T7764 572:989 JLINK_IsHalted()  returns FALSE (0000ms, 1346ms total)
T7764 573:090 JLINK_IsHalted()  returns FALSE (0000ms, 1346ms total)
T514C 573:191 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 C0 05 44  returns 0x04 (0001ms, 1347ms total)
T7764 573:192 JLINK_IsHalted()  returns FALSE (0000ms, 1347ms total)
T7764 573:293 JLINK_IsHalted()  returns FALSE (0000ms, 1347ms total)
T7764 573:394 JLINK_IsHalted()  returns FALSE (0000ms, 1347ms total)
T7764 573:495 JLINK_IsHalted()  returns FALSE (0000ms, 1347ms total)
T7764 573:596 JLINK_IsHalted()  returns FALSE (0000ms, 1347ms total)
T7764 573:697 JLINK_IsHalted()  returns FALSE (0000ms, 1347ms total)
T514C 573:798 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 06 44  returns 0x04 (0000ms, 1347ms total)
T7764 573:799 JLINK_IsHalted()  returns FALSE (0001ms, 1348ms total)
T7764 573:901 JLINK_IsHalted()  returns FALSE (0000ms, 1347ms total)
T7764 574:002 JLINK_IsHalted()  returns FALSE (0000ms, 1347ms total)
T7764 574:103 JLINK_IsHalted()  returns FALSE (0000ms, 1347ms total)
T7764 574:204 JLINK_IsHalted()  returns FALSE (0000ms, 1347ms total)
T514C 574:305 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 06 44  returns 0x04 (0000ms, 1347ms total)
T7764 574:306 JLINK_IsHalted()  returns FALSE (0000ms, 1347ms total)
T7764 574:407 JLINK_IsHalted()  returns FALSE (0000ms, 1347ms total)
T7764 574:509 JLINK_IsHalted()  returns FALSE (0000ms, 1347ms total)
T7764 574:610 JLINK_IsHalted()  returns FALSE (0001ms, 1348ms total)
T7764 574:711 JLINK_IsHalted()  returns FALSE (0000ms, 1347ms total)
T7764 574:812 JLINK_IsHalted()  returns FALSE (0000ms, 1347ms total)
T514C 574:913 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 40 06 44  returns 0x04 (0001ms, 1348ms total)
T7764 574:914 JLINK_IsHalted()  returns FALSE (0000ms, 1348ms total)
T7764 575:015 JLINK_IsHalted()  returns FALSE (0000ms, 1348ms total)
T7764 575:116 JLINK_IsHalted()  returns FALSE (0000ms, 1348ms total)
T7764 575:217 JLINK_IsHalted()  returns FALSE (0000ms, 1348ms total)
T7764 575:319 JLINK_IsHalted()  returns FALSE (0000ms, 1348ms total)
T7764 575:420 JLINK_IsHalted()  returns FALSE (0000ms, 1348ms total)
T514C 575:522 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 40 06 44  returns 0x04 (0000ms, 1348ms total)
T7764 575:523 JLINK_IsHalted()  returns FALSE (0000ms, 1348ms total)
T7764 575:624 JLINK_IsHalted()  returns FALSE (0000ms, 1348ms total)
T7764 575:725 JLINK_IsHalted()  returns FALSE (0000ms, 1348ms total)
T7764 575:826 JLINK_IsHalted()  returns FALSE (0001ms, 1349ms total)
T7764 575:928 JLINK_IsHalted()  returns FALSE (0000ms, 1348ms total)
T7764 576:029 JLINK_IsHalted()  returns FALSE (0000ms, 1348ms total)
T514C 576:130 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 06 44  returns 0x04 (0001ms, 1349ms total)
T7764 576:131 JLINK_IsHalted()  returns FALSE (0000ms, 1349ms total)
T7764 576:232 JLINK_IsHalted()  returns FALSE (0000ms, 1349ms total)
T7764 576:333 JLINK_IsHalted()  returns FALSE (0000ms, 1349ms total)
T7764 576:434 JLINK_IsHalted()  returns FALSE (0000ms, 1349ms total)
T7764 576:536 JLINK_IsHalted()  returns FALSE (0000ms, 1349ms total)
T7764 576:637 JLINK_IsHalted()  returns FALSE (0000ms, 1349ms total)
T514C 576:739 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 C0 06 44  returns 0x04 (0000ms, 1349ms total)
T7764 576:739 JLINK_IsHalted()  returns FALSE (0001ms, 1350ms total)
T7764 576:841 JLINK_IsHalted()  returns FALSE (0000ms, 1349ms total)
T7764 576:942 JLINK_IsHalted()  returns FALSE (0000ms, 1349ms total)
T7764 577:043 JLINK_IsHalted()  returns FALSE (0000ms, 1349ms total)
T7764 577:144 JLINK_IsHalted()  returns FALSE (0000ms, 1349ms total)
T7764 577:245 JLINK_IsHalted()  returns FALSE (0000ms, 1349ms total)
T514C 577:346 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 C0 06 44  returns 0x04 (0001ms, 1350ms total)
T7764 577:347 JLINK_IsHalted()  returns FALSE (0001ms, 1351ms total)
T7764 577:449 JLINK_IsHalted()  returns FALSE (0000ms, 1350ms total)
T7764 577:550 JLINK_IsHalted()  returns FALSE (0000ms, 1350ms total)
T7764 577:651 JLINK_IsHalted()  returns FALSE (0000ms, 1350ms total)
T7764 577:752 JLINK_IsHalted()  returns FALSE (0000ms, 1350ms total)
T7764 577:853 JLINK_IsHalted()  returns FALSE (0000ms, 1350ms total)
T514C 577:954 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 07 44  returns 0x04 (0000ms, 1350ms total)
T7764 577:955 JLINK_IsHalted()  returns FALSE (0000ms, 1350ms total)
T7764 578:056 JLINK_IsHalted()  returns FALSE (0000ms, 1350ms total)
T7764 578:158 JLINK_IsHalted()  returns FALSE (0000ms, 1350ms total)
T7764 578:259 JLINK_IsHalted()  returns FALSE (0000ms, 1350ms total)
T7764 578:361 JLINK_IsHalted()  returns FALSE (0000ms, 1350ms total)
T514C 578:462 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 07 44  returns 0x04 (0001ms, 1351ms total)
T7764 578:463 JLINK_IsHalted()  returns FALSE (0000ms, 1351ms total)
T7764 578:564 JLINK_IsHalted()  returns FALSE (0000ms, 1351ms total)
T7764 578:665 JLINK_IsHalted()  returns FALSE (0000ms, 1351ms total)
T7764 578:766 JLINK_IsHalted()  returns FALSE (0000ms, 1351ms total)
T7764 578:867 JLINK_IsHalted()  returns FALSE (0000ms, 1351ms total)
T7764 578:969 JLINK_IsHalted()  returns FALSE (0000ms, 1351ms total)
T514C 579:070 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 40 07 44  returns 0x04 (0000ms, 1351ms total)
T7764 579:071 JLINK_IsHalted()  returns FALSE (0000ms, 1351ms total)
T7764 579:172 JLINK_IsHalted()  returns FALSE (0000ms, 1351ms total)
T7764 579:273 JLINK_IsHalted()  returns FALSE (0000ms, 1351ms total)
T7764 579:374 JLINK_IsHalted()  returns FALSE (0000ms, 1351ms total)
T7764 579:475 JLINK_IsHalted()  returns FALSE (0000ms, 1351ms total)
T7764 579:577 JLINK_IsHalted()  returns FALSE (0000ms, 1351ms total)
T514C 579:678 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 07 44  returns 0x04 (0000ms, 1351ms total)
T7764 579:679 JLINK_IsHalted()  returns FALSE (0000ms, 1351ms total)
T7764 579:780 JLINK_IsHalted()  returns FALSE (0000ms, 1351ms total)
T7764 579:881 JLINK_IsHalted()  returns FALSE (0000ms, 1351ms total)
T7764 579:982 JLINK_IsHalted()  returns FALSE (0000ms, 1351ms total)
T7764 580:083 JLINK_IsHalted()  returns FALSE (0000ms, 1351ms total)
T7764 580:184 JLINK_IsHalted()  returns FALSE (0000ms, 1351ms total)
T514C 580:285 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 07 44  returns 0x04 (0000ms, 1351ms total)
T7764 580:286 JLINK_IsHalted()  returns FALSE (0000ms, 1351ms total)
T7764 580:388 JLINK_IsHalted()  returns FALSE (0000ms, 1351ms total)
T7764 580:489 JLINK_IsHalted()  returns FALSE (0000ms, 1351ms total)
T7764 580:590 JLINK_IsHalted()  returns FALSE (0000ms, 1351ms total)
T7764 580:691 JLINK_IsHalted()  returns FALSE (0000ms, 1351ms total)
T7764 580:792 JLINK_IsHalted()  returns FALSE (0000ms, 1351ms total)
T514C 580:894 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 C0 07 44  returns 0x04 (0001ms, 1352ms total)
T7764 580:895 JLINK_IsHalted()  returns FALSE (0000ms, 1352ms total)
T7764 580:996 JLINK_IsHalted()  returns FALSE (0000ms, 1352ms total)
T7764 581:097 JLINK_IsHalted()  returns FALSE (0000ms, 1352ms total)
T7764 581:199 JLINK_IsHalted()  returns FALSE (0000ms, 1352ms total)
T7764 581:300 JLINK_IsHalted()  returns FALSE (0000ms, 1352ms total)
T7764 581:401 JLINK_IsHalted()  returns FALSE (0000ms, 1352ms total)
T514C 581:502 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 C0 07 44  returns 0x04 (0000ms, 1352ms total)
T7764 581:503 JLINK_IsHalted()  returns FALSE (0000ms, 1352ms total)
T7764 581:604 JLINK_IsHalted()  returns FALSE (0000ms, 1352ms total)
T7764 581:705 JLINK_IsHalted()  returns FALSE (0000ms, 1352ms total)
T7764 581:806 JLINK_IsHalted()  returns FALSE (0000ms, 1352ms total)
T7764 581:907 JLINK_IsHalted()  returns FALSE (0000ms, 1352ms total)
T514C 582:008 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 08 44  returns 0x04 (0000ms, 1352ms total)
T7764 582:009 JLINK_IsHalted()  returns FALSE (0000ms, 1353ms total)
T7764 582:110 JLINK_IsHalted()  returns FALSE (0000ms, 1353ms total)
T7764 582:211 JLINK_IsHalted()  returns FALSE (0000ms, 1353ms total)
T7764 582:312 JLINK_IsHalted()  returns FALSE (0000ms, 1353ms total)
T7764 582:413 JLINK_IsHalted()  returns FALSE (0000ms, 1353ms total)
T7764 582:515 JLINK_IsHalted()  returns FALSE (0000ms, 1353ms total)
T514C 582:616 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 40 08 44  returns 0x04 (0000ms, 1353ms total)
T7764 582:617 JLINK_IsHalted()  returns FALSE (0000ms, 1353ms total)
T7764 582:719 JLINK_IsHalted()  returns FALSE (0000ms, 1353ms total)
T7764 582:820 JLINK_IsHalted()  returns FALSE (0000ms, 1353ms total)
T7764 582:921 JLINK_IsHalted()  returns FALSE (0000ms, 1353ms total)
T7764 583:022 JLINK_IsHalted()  returns FALSE (0000ms, 1353ms total)
T7764 583:124 JLINK_IsHalted()  returns FALSE (0000ms, 1353ms total)
T514C 583:225 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 40 08 44  returns 0x04 (0000ms, 1353ms total)
T7764 583:226 JLINK_IsHalted()  returns FALSE (0000ms, 1354ms total)
T7764 583:328 JLINK_IsHalted()  returns FALSE (0000ms, 1354ms total)
T7764 583:430 JLINK_IsHalted()  returns FALSE (0000ms, 1354ms total)
T7764 583:531 JLINK_IsHalted()  returns FALSE (0000ms, 1354ms total)
T7764 583:632 JLINK_IsHalted()  returns FALSE (0000ms, 1354ms total)
T7764 583:733 JLINK_IsHalted()  returns FALSE (0000ms, 1354ms total)
T514C 583:834 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 08 44  returns 0x04 (0001ms, 1355ms total)
T7764 583:835 JLINK_IsHalted()  returns FALSE (0000ms, 1355ms total)
T7764 583:936 JLINK_IsHalted()  returns FALSE (0000ms, 1355ms total)
T7764 584:037 JLINK_IsHalted()  returns FALSE (0000ms, 1355ms total)
T7764 584:138 JLINK_IsHalted()  returns FALSE (0000ms, 1355ms total)
T7764 584:240 JLINK_IsHalted()  returns FALSE (0000ms, 1355ms total)
T7764 584:342 JLINK_IsHalted()  returns FALSE (0000ms, 1355ms total)
T514C 584:443 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 08 44  returns 0x04 (0000ms, 1355ms total)
T7764 584:444 JLINK_IsHalted()  returns FALSE (0000ms, 1355ms total)
T7764 584:545 JLINK_IsHalted()  returns FALSE (0000ms, 1355ms total)
T7764 584:646 JLINK_IsHalted()  returns FALSE (0000ms, 1355ms total)
T7764 584:747 JLINK_IsHalted()  returns FALSE (0000ms, 1355ms total)
T7764 584:848 JLINK_IsHalted()  returns FALSE (0000ms, 1355ms total)
T7764 584:949 JLINK_IsHalted()  returns FALSE (0000ms, 1355ms total)
T514C 585:050 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 C0 08 44  returns 0x04 (0001ms, 1356ms total)
T7764 585:051 JLINK_IsHalted()  returns FALSE (0001ms, 1357ms total)
T7764 585:153 JLINK_IsHalted()  returns FALSE (0000ms, 1356ms total)
T7764 585:254 JLINK_IsHalted()  returns FALSE (0000ms, 1356ms total)
T7764 585:355 JLINK_IsHalted()  returns FALSE (0000ms, 1356ms total)
T7764 585:457 JLINK_IsHalted()  returns FALSE (0000ms, 1356ms total)
T7764 585:558 JLINK_IsHalted()  returns FALSE (0000ms, 1356ms total)
T514C 585:660 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 09 44  returns 0x04 (0000ms, 1356ms total)
T7764 585:661 JLINK_IsHalted()  returns FALSE (0000ms, 1357ms total)
T7764 585:763 JLINK_IsHalted()  returns FALSE (0000ms, 1357ms total)
T7764 585:864 JLINK_IsHalted()  returns FALSE (0000ms, 1357ms total)
T7764 585:965 JLINK_IsHalted()  returns FALSE (0000ms, 1357ms total)
T7764 586:066 JLINK_IsHalted()  returns FALSE (0000ms, 1357ms total)
T7764 586:168 JLINK_IsHalted()  returns FALSE (0000ms, 1357ms total)
T514C 586:269 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 09 44  returns 0x04 (0001ms, 1358ms total)
T7764 586:270 JLINK_IsHalted()  returns FALSE (0001ms, 1359ms total)
T7764 586:372 JLINK_IsHalted()  returns FALSE (0000ms, 1358ms total)
T7764 586:473 JLINK_IsHalted()  returns FALSE (0000ms, 1358ms total)
T7764 586:574 JLINK_IsHalted()  returns FALSE (0000ms, 1358ms total)
T7764 586:676 JLINK_IsHalted()  returns FALSE (0000ms, 1358ms total)
T7764 586:777 JLINK_IsHalted()  returns FALSE (0000ms, 1358ms total)
T514C 586:878 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 40 09 44  returns 0x04 (0001ms, 1359ms total)
T7764 586:879 JLINK_IsHalted()  returns FALSE (0000ms, 1359ms total)
T7764 586:980 JLINK_IsHalted()  returns FALSE (0000ms, 1359ms total)
T7764 587:082 JLINK_IsHalted()  returns FALSE (0000ms, 1359ms total)
T7764 587:183 JLINK_IsHalted()  returns FALSE (0000ms, 1359ms total)
T7764 587:284 JLINK_IsHalted()  returns FALSE (0000ms, 1359ms total)
T7764 587:385 JLINK_IsHalted()  returns FALSE (0000ms, 1359ms total)
T514C 587:486 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 40 09 44  returns 0x04 (0000ms, 1359ms total)
T7764 587:487 JLINK_IsHalted()  returns FALSE (0001ms, 1361ms total)
T7764 587:589 JLINK_IsHalted()  returns FALSE (0000ms, 1360ms total)
T7764 587:690 JLINK_IsHalted()  returns FALSE (0000ms, 1360ms total)
T7764 587:791 JLINK_IsHalted()  returns FALSE (0000ms, 1360ms total)
T7764 587:892 JLINK_IsHalted()  returns FALSE (0000ms, 1360ms total)
T7764 587:994 JLINK_IsHalted()  returns FALSE (0000ms, 1360ms total)
T514C 588:095 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 09 44  returns 0x04 (0000ms, 1360ms total)
T7764 588:096 JLINK_IsHalted()  returns FALSE (0001ms, 1361ms total)
T7764 588:198 JLINK_IsHalted()  returns FALSE (0000ms, 1360ms total)
T7764 588:299 JLINK_IsHalted()  returns FALSE (0000ms, 1360ms total)
T7764 588:400 JLINK_IsHalted()  returns FALSE (0000ms, 1360ms total)
T7764 588:501 JLINK_IsHalted()  returns FALSE (0000ms, 1360ms total)
T514C 588:602 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 C0 09 44  returns 0x04 (0001ms, 1361ms total)
T7764 588:603 JLINK_IsHalted()  returns FALSE (0000ms, 1361ms total)
T7764 588:704 JLINK_IsHalted()  returns FALSE (0000ms, 1361ms total)
T7764 588:806 JLINK_IsHalted()  returns FALSE (0000ms, 1361ms total)
T7764 588:907 JLINK_IsHalted()  returns FALSE (0000ms, 1361ms total)
T7764 589:008 JLINK_IsHalted()  returns FALSE (0000ms, 1361ms total)
T7764 589:109 JLINK_IsHalted()  returns FALSE (0000ms, 1361ms total)
T514C 589:211 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 C0 09 44  returns 0x04 (0001ms, 1362ms total)
T7764 589:212 JLINK_IsHalted()  returns FALSE (0000ms, 1362ms total)
T7764 589:313 JLINK_IsHalted()  returns FALSE (0000ms, 1362ms total)
T7764 589:414 JLINK_IsHalted()  returns FALSE (0000ms, 1362ms total)
T7764 589:515 JLINK_IsHalted()  returns FALSE (0000ms, 1362ms total)
T7764 589:616 JLINK_IsHalted()  returns FALSE (0000ms, 1362ms total)
T7764 589:717 JLINK_IsHalted()  returns FALSE (0000ms, 1362ms total)
T514C 589:819 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 0A 44  returns 0x04 (0001ms, 1363ms total)
T7764 589:820 JLINK_IsHalted()  returns FALSE (0000ms, 1363ms total)
T7764 589:921 JLINK_IsHalted()  returns FALSE (0000ms, 1363ms total)
T7764 590:022 JLINK_IsHalted()  returns FALSE (0000ms, 1363ms total)
T7764 590:123 JLINK_IsHalted()  returns FALSE (0000ms, 1363ms total)
T7764 590:225 JLINK_IsHalted()  returns FALSE (0000ms, 1363ms total)
T7764 590:326 JLINK_IsHalted()  returns FALSE (0001ms, 1364ms total)
T514C 590:428 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 0A 44  returns 0x04 (0001ms, 1364ms total)
T7764 590:429 JLINK_IsHalted()  returns FALSE (0000ms, 1364ms total)
T7764 590:531 JLINK_IsHalted()  returns FALSE (0000ms, 1364ms total)
T7764 590:632 JLINK_IsHalted()  returns FALSE (0000ms, 1364ms total)
T7764 590:734 JLINK_IsHalted()  returns FALSE (0000ms, 1364ms total)
T7764 590:835 JLINK_IsHalted()  returns FALSE (0000ms, 1364ms total)
T7764 590:937 JLINK_IsHalted()  returns FALSE (0000ms, 1364ms total)
T514C 591:038 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 40 0A 44  returns 0x04 (0001ms, 1365ms total)
T7764 591:039 JLINK_IsHalted()  returns FALSE (0000ms, 1365ms total)
T7764 591:140 JLINK_IsHalted()  returns FALSE (0000ms, 1365ms total)
T7764 591:241 JLINK_IsHalted()  returns FALSE (0000ms, 1365ms total)
T7764 591:342 JLINK_IsHalted()  returns FALSE (0000ms, 1365ms total)
T7764 591:444 JLINK_IsHalted()  returns FALSE (0000ms, 1365ms total)
T7764 591:545 JLINK_IsHalted()  returns FALSE (0000ms, 1365ms total)
T514C 591:646 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 0A 44  returns 0x04 (0001ms, 1366ms total)
T7764 591:647 JLINK_IsHalted()  returns FALSE (0000ms, 1366ms total)
T7764 591:748 JLINK_IsHalted()  returns FALSE (0000ms, 1366ms total)
T7764 591:849 JLINK_IsHalted()  returns FALSE (0000ms, 1366ms total)
T7764 591:950 JLINK_IsHalted()  returns FALSE (0000ms, 1366ms total)
T7764 592:051 JLINK_IsHalted()  returns FALSE (0000ms, 1366ms total)
T7764 592:153 JLINK_IsHalted()  returns FALSE (0000ms, 1366ms total)
T514C 592:254 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 0A 44  returns 0x04 (0001ms, 1367ms total)
T7764 592:255 JLINK_IsHalted()  returns FALSE (0000ms, 1367ms total)
T7764 592:357 JLINK_IsHalted()  returns FALSE (0000ms, 1367ms total)
T7764 592:458 JLINK_IsHalted()  returns FALSE (0000ms, 1367ms total)
T7764 592:559 JLINK_IsHalted()  returns FALSE (0000ms, 1367ms total)
T7764 592:660 JLINK_IsHalted()  returns FALSE (0000ms, 1367ms total)
T7764 592:762 JLINK_IsHalted()  returns FALSE (0000ms, 1367ms total)
T514C 592:863 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 C0 0A 44  returns 0x04 (0001ms, 1368ms total)
T7764 592:864 JLINK_IsHalted()  returns FALSE (0000ms, 1368ms total)
T7764 592:965 JLINK_IsHalted()  returns FALSE (0000ms, 1368ms total)
T7764 593:066 JLINK_IsHalted()  returns FALSE (0000ms, 1368ms total)
T7764 593:167 JLINK_IsHalted()  returns FALSE (0000ms, 1368ms total)
T7764 593:268 JLINK_IsHalted()  returns FALSE (0000ms, 1368ms total)
T7764 593:370 JLINK_IsHalted()  returns FALSE (0000ms, 1368ms total)
T514C 593:471 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 C0 0A 44  returns 0x04 (0001ms, 1369ms total)
T7764 593:472 JLINK_IsHalted()  returns FALSE (0001ms, 1370ms total)
T7764 593:574 JLINK_IsHalted()  returns FALSE (0000ms, 1369ms total)
T7764 593:676 JLINK_IsHalted()  returns FALSE (0000ms, 1369ms total)
T7764 593:777 JLINK_IsHalted()  returns FALSE (0000ms, 1369ms total)
T7764 593:878 JLINK_IsHalted()  returns FALSE (0000ms, 1369ms total)
T7764 593:979 JLINK_IsHalted()  returns FALSE (0000ms, 1369ms total)
T514C 594:080 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 0B 44  returns 0x04 (0001ms, 1370ms total)
T7764 594:081 JLINK_IsHalted()  returns FALSE (0001ms, 1371ms total)
T7764 594:183 JLINK_IsHalted()  returns FALSE (0000ms, 1370ms total)
T7764 594:284 JLINK_IsHalted()  returns FALSE (0000ms, 1370ms total)
T7764 594:385 JLINK_IsHalted()  returns FALSE (0000ms, 1370ms total)
T7764 594:486 JLINK_IsHalted()  returns FALSE (0000ms, 1370ms total)
T7764 594:587 JLINK_IsHalted()  returns FALSE (0000ms, 1370ms total)
T514C 594:689 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 40 0B 44  returns 0x04 (0000ms, 1370ms total)
T7764 594:690 JLINK_IsHalted()  returns FALSE (0000ms, 1371ms total)
T7764 594:791 JLINK_IsHalted()  returns FALSE (0000ms, 1371ms total)
T7764 594:892 JLINK_IsHalted()  returns FALSE (0000ms, 1371ms total)
T7764 594:993 JLINK_IsHalted()  returns FALSE (0000ms, 1371ms total)
T7764 595:095 JLINK_IsHalted()  returns FALSE (0000ms, 1371ms total)
T514C 595:196 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 40 0B 44  returns 0x04 (0001ms, 1372ms total)
T7764 595:197 JLINK_IsHalted()  returns FALSE (0000ms, 1372ms total)
T7764 595:299 JLINK_IsHalted()  returns FALSE (0000ms, 1372ms total)
T7764 595:400 JLINK_IsHalted()  returns FALSE (0000ms, 1372ms total)
T7764 595:502 JLINK_IsHalted()  returns FALSE (0000ms, 1372ms total)
T7764 595:603 JLINK_IsHalted()  returns FALSE (0000ms, 1372ms total)
T7764 595:704 JLINK_IsHalted()  returns FALSE (0000ms, 1372ms total)
T514C 595:805 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 0B 44  returns 0x04 (0001ms, 1373ms total)
T7764 595:806 JLINK_IsHalted()  returns FALSE (0000ms, 1373ms total)
T7764 595:907 JLINK_IsHalted()  returns FALSE (0000ms, 1373ms total)
T7764 596:008 JLINK_IsHalted()  returns FALSE (0000ms, 1373ms total)
T7764 596:110 JLINK_IsHalted()  returns FALSE (0000ms, 1373ms total)
T7764 596:211 JLINK_IsHalted()  returns FALSE (0000ms, 1373ms total)
T7764 596:312 JLINK_IsHalted()  returns FALSE (0000ms, 1373ms total)
T514C 596:413 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 0B 44  returns 0x04 (0000ms, 1373ms total)
T7764 596:414 JLINK_IsHalted()  returns FALSE (0000ms, 1373ms total)
T7764 596:515 JLINK_IsHalted()  returns FALSE (0000ms, 1373ms total)
T7764 596:616 JLINK_IsHalted()  returns FALSE (0000ms, 1373ms total)
T7764 596:718 JLINK_IsHalted()  returns FALSE (0000ms, 1373ms total)
T7764 596:819 JLINK_IsHalted()  returns FALSE (0000ms, 1373ms total)
T7764 596:920 JLINK_IsHalted()  returns FALSE (0000ms, 1373ms total)
T514C 597:021 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 C0 0B 44  returns 0x04 (0001ms, 1374ms total)
T7764 597:022 JLINK_IsHalted()  returns FALSE (0000ms, 1374ms total)
T7764 597:123 JLINK_IsHalted()  returns FALSE (0000ms, 1374ms total)
T7764 597:224 JLINK_IsHalted()  returns FALSE (0000ms, 1374ms total)
T7764 597:325 JLINK_IsHalted()  returns FALSE (0000ms, 1374ms total)
T7764 597:426 JLINK_IsHalted()  returns FALSE (0000ms, 1374ms total)
T7764 597:528 JLINK_IsHalted()  returns FALSE (0000ms, 1374ms total)
T514C 597:629 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 0C 44  returns 0x04 (0000ms, 1374ms total)
T7764 597:630 JLINK_IsHalted()  returns FALSE (0000ms, 1374ms total)
T7764 597:732 JLINK_IsHalted()  returns FALSE (0000ms, 1374ms total)
T7764 597:833 JLINK_IsHalted()  returns FALSE (0000ms, 1374ms total)
T7764 597:934 JLINK_IsHalted()  returns FALSE (0000ms, 1374ms total)
T7764 598:036 JLINK_IsHalted()  returns FALSE (0000ms, 1374ms total)
T7764 598:137 JLINK_IsHalted()  returns FALSE (0000ms, 1374ms total)
T514C 598:239 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 0C 44  returns 0x04 (0000ms, 1374ms total)
T7764 598:240 JLINK_IsHalted()  returns FALSE (0000ms, 1374ms total)
T7764 598:341 JLINK_IsHalted()  returns FALSE (0000ms, 1374ms total)
T7764 598:442 JLINK_IsHalted()  returns FALSE (0000ms, 1374ms total)
T7764 598:543 JLINK_IsHalted()  returns FALSE (0000ms, 1374ms total)
T7764 598:645 JLINK_IsHalted()  returns FALSE (0000ms, 1374ms total)
T7764 598:745 JLINK_IsHalted()  returns FALSE (0000ms, 1374ms total)
T514C 598:847 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 40 0C 44  returns 0x04 (0001ms, 1375ms total)
T7764 598:848 JLINK_IsHalted()  returns FALSE (0000ms, 1375ms total)
T7764 598:950 JLINK_IsHalted()  returns FALSE (0000ms, 1375ms total)
T7764 599:051 JLINK_IsHalted()  returns FALSE (0000ms, 1375ms total)
T7764 599:152 JLINK_IsHalted()  returns FALSE (0000ms, 1375ms total)
T7764 599:253 JLINK_IsHalted()  returns FALSE (0000ms, 1375ms total)
T7764 599:354 JLINK_IsHalted()  returns FALSE (0000ms, 1375ms total)
T514C 599:456 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 40 0C 44  returns 0x04 (0001ms, 1376ms total)
T7764 599:457 JLINK_IsHalted()  returns FALSE (0000ms, 1376ms total)
T7764 599:558 JLINK_IsHalted()  returns FALSE (0000ms, 1376ms total)
T7764 599:660 JLINK_IsHalted()  returns FALSE (0000ms, 1376ms total)
T7764 599:761 JLINK_IsHalted()  returns FALSE (0000ms, 1376ms total)
T7764 599:862 JLINK_IsHalted()  returns FALSE (0000ms, 1376ms total)
T7764 599:963 JLINK_IsHalted()  returns FALSE (0000ms, 1376ms total)
T514C 600:065 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 0C 44  returns 0x04 (0001ms, 1377ms total)
T7764 600:066 JLINK_IsHalted()  returns FALSE (0000ms, 1377ms total)
T7764 600:167 JLINK_IsHalted()  returns FALSE (0000ms, 1377ms total)
T7764 600:268 JLINK_IsHalted()  returns FALSE (0000ms, 1377ms total)
T7764 600:369 JLINK_IsHalted()  returns FALSE (0000ms, 1377ms total)
T7764 600:470 JLINK_IsHalted()  returns FALSE (0000ms, 1377ms total)
T7764 600:571 JLINK_IsHalted()  returns FALSE (0000ms, 1377ms total)
T514C 600:673 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 C0 0C 44  returns 0x04 (0001ms, 1378ms total)
T7764 600:674 JLINK_IsHalted()  returns FALSE (0000ms, 1378ms total)
T7764 600:776 JLINK_IsHalted()  returns FALSE (0000ms, 1378ms total)
T7764 600:877 JLINK_IsHalted()  returns FALSE (0000ms, 1378ms total)
T7764 600:978 JLINK_IsHalted()  returns FALSE (0000ms, 1378ms total)
T7764 601:079 JLINK_IsHalted()  returns FALSE (0000ms, 1378ms total)
T514C 601:180 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 C0 0C 44  returns 0x04 (0001ms, 1379ms total)
T7764 601:181 JLINK_IsHalted()  returns FALSE (0000ms, 1379ms total)
T7764 601:282 JLINK_IsHalted()  returns FALSE (0000ms, 1379ms total)
T7764 601:383 JLINK_IsHalted()  returns FALSE (0000ms, 1379ms total)
T7764 601:485 JLINK_IsHalted()  returns FALSE (0000ms, 1379ms total)
T7764 601:586 JLINK_IsHalted()  returns FALSE (0000ms, 1379ms total)
T7764 601:688 JLINK_IsHalted()  returns FALSE (0000ms, 1379ms total)
T514C 601:789 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 0D 44  returns 0x04 (0001ms, 1380ms total)
T7764 601:790 JLINK_IsHalted()  returns FALSE (0000ms, 1380ms total)
T7764 601:891 JLINK_IsHalted()  returns FALSE (0000ms, 1380ms total)
T7764 601:992 JLINK_IsHalted()  returns FALSE (0000ms, 1380ms total)
T7764 602:094 JLINK_IsHalted()  returns FALSE (0000ms, 1380ms total)
T7764 602:195 JLINK_IsHalted()  returns FALSE (0000ms, 1380ms total)
T7764 602:297 JLINK_IsHalted()  returns FALSE (0000ms, 1380ms total)
T514C 602:398 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 0D 44  returns 0x04 (0001ms, 1381ms total)
T7764 602:399 JLINK_IsHalted()  returns FALSE (0000ms, 1381ms total)
T7764 602:500 JLINK_IsHalted()  returns FALSE (0000ms, 1381ms total)
T7764 602:601 JLINK_IsHalted()  returns FALSE (0000ms, 1381ms total)
T7764 602:702 JLINK_IsHalted()  returns FALSE (0000ms, 1381ms total)
T7764 602:803 JLINK_IsHalted()  returns FALSE (0000ms, 1381ms total)
T7764 602:904 JLINK_IsHalted()  returns FALSE (0000ms, 1381ms total)
T514C 603:005 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 40 0D 44  returns 0x04 (0000ms, 1381ms total)
T7764 603:006 JLINK_IsHalted()  returns FALSE (0000ms, 1381ms total)
T7764 603:108 JLINK_IsHalted()  returns FALSE (0000ms, 1381ms total)
T7764 603:209 JLINK_IsHalted()  returns FALSE (0000ms, 1381ms total)
T7764 603:310 JLINK_IsHalted()  returns FALSE (0000ms, 1381ms total)
T7764 603:412 JLINK_IsHalted()  returns FALSE (0000ms, 1381ms total)
T7764 603:513 JLINK_IsHalted()  returns FALSE (0000ms, 1381ms total)
T514C 603:614 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 0D 44  returns 0x04 (0001ms, 1382ms total)
T7764 603:615 JLINK_IsHalted()  returns FALSE (0000ms, 1382ms total)
T7764 603:716 JLINK_IsHalted()  returns FALSE (0000ms, 1382ms total)
T7764 603:817 JLINK_IsHalted()  returns FALSE (0000ms, 1382ms total)
T7764 603:919 JLINK_IsHalted()  returns FALSE (0000ms, 1382ms total)
T7764 604:020 JLINK_IsHalted()  returns FALSE (0000ms, 1382ms total)
T7764 604:121 JLINK_IsHalted()  returns FALSE (0000ms, 1382ms total)
T514C 604:222 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 0D 44  returns 0x04 (0001ms, 1383ms total)
T7764 604:223 JLINK_IsHalted()  returns FALSE (0000ms, 1383ms total)
T7764 604:324 JLINK_IsHalted()  returns FALSE (0000ms, 1383ms total)
T7764 604:425 JLINK_IsHalted()  returns FALSE (0000ms, 1383ms total)
T7764 604:526 JLINK_IsHalted()  returns FALSE (0000ms, 1383ms total)
T7764 604:627 JLINK_IsHalted()  returns FALSE (0000ms, 1383ms total)
T7764 604:729 JLINK_IsHalted()  returns FALSE (0000ms, 1383ms total)
T514C 604:830 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 C0 0D 44  returns 0x04 (0001ms, 1384ms total)
T7764 604:831 JLINK_IsHalted()  returns FALSE (0000ms, 1384ms total)
T7764 604:933 JLINK_IsHalted()  returns FALSE (0000ms, 1384ms total)
T7764 605:034 JLINK_IsHalted()  returns FALSE (0000ms, 1384ms total)
T7764 605:135 JLINK_IsHalted()  returns FALSE (0000ms, 1384ms total)
T7764 605:237 JLINK_IsHalted()  returns FALSE (0000ms, 1384ms total)
T7764 605:338 JLINK_IsHalted()  returns FALSE (0000ms, 1384ms total)
T514C 605:439 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 C0 0D 44  returns 0x04 (0001ms, 1385ms total)
T7764 605:440 JLINK_IsHalted()  returns FALSE (0000ms, 1385ms total)
T7764 605:541 JLINK_IsHalted()  returns FALSE (0000ms, 1385ms total)
T7764 605:643 JLINK_IsHalted()  returns FALSE (0000ms, 1385ms total)
T7764 605:744 JLINK_IsHalted()  returns FALSE (0000ms, 1385ms total)
T7764 605:845 JLINK_IsHalted()  returns FALSE (0000ms, 1385ms total)
T514C 605:946 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 0E 44  returns 0x04 (0000ms, 1385ms total)
T7764 605:947 JLINK_IsHalted()  returns FALSE (0000ms, 1385ms total)
T7764 606:048 JLINK_IsHalted()  returns FALSE (0000ms, 1385ms total)
T7764 606:150 JLINK_IsHalted()  returns FALSE (0000ms, 1385ms total)
T7764 606:250 JLINK_IsHalted()  returns FALSE (0000ms, 1385ms total)
T7764 606:351 JLINK_IsHalted()  returns FALSE (0000ms, 1385ms total)
T7764 606:453 JLINK_IsHalted()  returns FALSE (0000ms, 1385ms total)
T514C 606:554 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 40 0E 44  returns 0x04 (0001ms, 1386ms total)
T7764 606:555 JLINK_IsHalted()  returns FALSE (0000ms, 1386ms total)
T7764 606:657 JLINK_IsHalted()  returns FALSE (0000ms, 1386ms total)
T7764 606:758 JLINK_IsHalted()  returns FALSE (0000ms, 1386ms total)
T7764 606:859 JLINK_IsHalted()  returns FALSE (0000ms, 1386ms total)
T7764 606:960 JLINK_IsHalted()  returns FALSE (0000ms, 1386ms total)
T7764 607:061 JLINK_IsHalted()  returns FALSE (0000ms, 1386ms total)
T514C 607:163 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 40 0E 44  returns 0x04 (0000ms, 1386ms total)
T7764 607:164 JLINK_IsHalted()  returns FALSE (0000ms, 1386ms total)
T7764 607:265 JLINK_IsHalted()  returns FALSE (0000ms, 1386ms total)
T7764 607:366 JLINK_IsHalted()  returns FALSE (0000ms, 1386ms total)
T7764 607:467 JLINK_IsHalted()  returns FALSE (0000ms, 1386ms total)
T7764 607:569 JLINK_IsHalted()  returns FALSE (0000ms, 1386ms total)
T7764 607:670 JLINK_IsHalted()  returns FALSE (0000ms, 1386ms total)
T514C 607:771 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 0E 44  returns 0x04 (0000ms, 1386ms total)
T7764 607:772 JLINK_IsHalted()  returns FALSE (0000ms, 1386ms total)
T7764 607:873 JLINK_IsHalted()  returns FALSE (0000ms, 1386ms total)
T7764 607:974 JLINK_IsHalted()  returns FALSE (0000ms, 1386ms total)
T7764 608:076 JLINK_IsHalted()  returns FALSE (0000ms, 1386ms total)
T7764 608:177 JLINK_IsHalted()  returns FALSE (0000ms, 1386ms total)
T7764 608:278 JLINK_IsHalted()  returns FALSE (0000ms, 1386ms total)
T514C 608:380 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 0E 44  returns 0x04 (0000ms, 1386ms total)
T7764 608:381 JLINK_IsHalted()  returns FALSE (0000ms, 1386ms total)
T7764 608:482 JLINK_IsHalted()  returns FALSE (0000ms, 1386ms total)
T7764 608:583 JLINK_IsHalted()  returns FALSE (0000ms, 1386ms total)
T7764 608:684 JLINK_IsHalted()  returns FALSE (0000ms, 1386ms total)
T7764 608:785 JLINK_IsHalted()  returns FALSE (0000ms, 1386ms total)
T7764 608:887 JLINK_IsHalted()  returns FALSE (0000ms, 1386ms total)
T514C 608:989 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 C0 0E 44  returns 0x04 (0000ms, 1386ms total)
T7764 608:989 JLINK_IsHalted()  returns FALSE (0001ms, 1387ms total)
T7764 609:091 JLINK_IsHalted()  returns FALSE (0000ms, 1386ms total)
T7764 609:192 JLINK_IsHalted()  returns FALSE (0000ms, 1386ms total)
T7764 609:293 JLINK_IsHalted()  returns FALSE (0000ms, 1386ms total)
T7764 609:395 JLINK_IsHalted()  returns FALSE (0000ms, 1386ms total)
T7764 609:496 JLINK_IsHalted()  returns FALSE (0000ms, 1386ms total)
T514C 609:597 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 0F 44  returns 0x04 (0001ms, 1387ms total)
T7764 609:598 JLINK_IsHalted()  returns FALSE (0000ms, 1387ms total)
T7764 609:700 JLINK_IsHalted()  returns FALSE (0000ms, 1387ms total)
T7764 609:802 JLINK_IsHalted()  returns FALSE (0000ms, 1387ms total)
T7764 609:903 JLINK_IsHalted()  returns FALSE (0000ms, 1387ms total)
T7764 610:004 JLINK_IsHalted()  returns FALSE (0000ms, 1387ms total)
T7764 610:105 JLINK_IsHalted()  returns FALSE (0000ms, 1387ms total)
T514C 610:206 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 0F 44  returns 0x04 (0001ms, 1388ms total)
T7764 610:207 JLINK_IsHalted()  returns FALSE (0000ms, 1388ms total)
T7764 610:308 JLINK_IsHalted()  returns FALSE (0000ms, 1388ms total)
T7764 610:409 JLINK_IsHalted()  returns FALSE (0000ms, 1388ms total)
T7764 610:510 JLINK_IsHalted()  returns FALSE (0000ms, 1388ms total)
T7764 610:611 JLINK_IsHalted()  returns FALSE (0000ms, 1388ms total)
T7764 610:713 JLINK_IsHalted()  returns FALSE (0000ms, 1388ms total)
T514C 610:814 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 40 0F 44  returns 0x04 (0001ms, 1389ms total)
T7764 610:815 JLINK_IsHalted()  returns FALSE (0001ms, 1390ms total)
T7764 610:917 JLINK_IsHalted()  returns FALSE (0000ms, 1389ms total)
T7764 611:018 JLINK_IsHalted()  returns FALSE (0000ms, 1389ms total)
T7764 611:120 JLINK_IsHalted()  returns FALSE (0000ms, 1389ms total)
T7764 611:221 JLINK_IsHalted()  returns FALSE (0000ms, 1389ms total)
T514C 611:323 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 40 0F 44  returns 0x04 (0001ms, 1390ms total)
T7764 611:324 JLINK_IsHalted()  returns FALSE (0000ms, 1390ms total)
T7764 611:425 JLINK_IsHalted()  returns FALSE (0000ms, 1390ms total)
T7764 611:526 JLINK_IsHalted()  returns FALSE (0000ms, 1390ms total)
T7764 611:628 JLINK_IsHalted()  returns FALSE (0000ms, 1390ms total)
T7764 611:729 JLINK_IsHalted()  returns FALSE (0000ms, 1390ms total)
T514C 611:831 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 0F 44  returns 0x04 (0001ms, 1391ms total)
T7764 611:832 JLINK_IsHalted()  returns FALSE (0001ms, 1392ms total)
T7764 611:934 JLINK_IsHalted()  returns FALSE (0000ms, 1391ms total)
T7764 612:035 JLINK_IsHalted()  returns FALSE (0000ms, 1391ms total)
T7764 612:136 JLINK_IsHalted()  returns FALSE (0000ms, 1391ms total)
T7764 612:237 JLINK_IsHalted()  returns FALSE (0000ms, 1391ms total)
T7764 612:338 JLINK_IsHalted()  returns FALSE (0000ms, 1391ms total)
T514C 612:440 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 0F 44  returns 0x04 (0001ms, 1392ms total)
T7764 612:441 JLINK_IsHalted()  returns FALSE (0001ms, 1393ms total)
T7764 612:543 JLINK_IsHalted()  returns FALSE (0000ms, 1392ms total)
T7764 612:644 JLINK_IsHalted()  returns FALSE (0000ms, 1392ms total)
T7764 612:745 JLINK_IsHalted()  returns FALSE (0000ms, 1392ms total)
T7764 612:846 JLINK_IsHalted()  returns FALSE (0000ms, 1392ms total)
T7764 612:947 JLINK_IsHalted()  returns FALSE (0000ms, 1392ms total)
T514C 613:048 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 C0 0F 44  returns 0x04 (0000ms, 1392ms total)
T7764 613:049 JLINK_IsHalted()  returns FALSE (0000ms, 1392ms total)
T7764 613:150 JLINK_IsHalted()  returns FALSE (0000ms, 1392ms total)
T7764 613:251 JLINK_IsHalted()  returns FALSE (0000ms, 1392ms total)
T7764 613:353 JLINK_IsHalted()  returns FALSE (0000ms, 1392ms total)
T7764 613:454 JLINK_IsHalted()  returns FALSE (0000ms, 1392ms total)
T514C 613:555 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 10 44  returns 0x04 (0001ms, 1393ms total)
T7764 613:556 JLINK_IsHalted()  returns FALSE (0000ms, 1393ms total)
T7764 613:657 JLINK_IsHalted()  returns FALSE (0000ms, 1393ms total)
T7764 613:758 JLINK_IsHalted()  returns FALSE (0000ms, 1393ms total)
T7764 613:859 JLINK_IsHalted()  returns FALSE (0000ms, 1393ms total)
T7764 613:960 JLINK_IsHalted()  returns FALSE (0000ms, 1393ms total)
T7764 614:061 JLINK_IsHalted()  returns FALSE (0000ms, 1393ms total)
T514C 614:163 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 10 44  returns 0x04 (0000ms, 1393ms total)
T7764 614:164 JLINK_IsHalted()  returns FALSE (0000ms, 1393ms total)
T7764 614:265 JLINK_IsHalted()  returns FALSE (0000ms, 1393ms total)
T7764 614:366 JLINK_IsHalted()  returns FALSE (0000ms, 1393ms total)
T7764 614:468 JLINK_IsHalted()  returns FALSE (0000ms, 1393ms total)
T7764 614:569 JLINK_IsHalted()  returns FALSE (0000ms, 1393ms total)
T7764 614:670 JLINK_IsHalted()  returns FALSE (0000ms, 1393ms total)
T514C 614:771 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 40 10 44  returns 0x04 (0001ms, 1394ms total)
T7764 614:772 JLINK_IsHalted()  returns FALSE (0000ms, 1394ms total)
T7764 614:873 JLINK_IsHalted()  returns FALSE (0000ms, 1394ms total)
T7764 614:974 JLINK_IsHalted()  returns FALSE (0000ms, 1394ms total)
T7764 615:076 JLINK_IsHalted()  returns FALSE (0000ms, 1394ms total)
T7764 615:176 JLINK_IsHalted()  returns FALSE (0000ms, 1394ms total)
T7764 615:278 JLINK_IsHalted()  returns FALSE (0000ms, 1394ms total)
T514C 615:379 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 40 10 44  returns 0x04 (0000ms, 1394ms total)
T7764 615:380 JLINK_IsHalted()  returns FALSE (0000ms, 1394ms total)
T7764 615:482 JLINK_IsHalted()  returns FALSE (0000ms, 1394ms total)
T7764 615:583 JLINK_IsHalted()  returns FALSE (0000ms, 1394ms total)
T7764 615:684 JLINK_IsHalted()  returns FALSE (0000ms, 1394ms total)
T7764 615:785 JLINK_IsHalted()  returns FALSE (0000ms, 1394ms total)
T7764 615:886 JLINK_IsHalted()  returns FALSE (0000ms, 1394ms total)
T514C 615:987 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 10 44  returns 0x04 (0001ms, 1395ms total)
T7764 615:988 JLINK_IsHalted()  returns FALSE (0001ms, 1396ms total)
T7764 616:090 JLINK_IsHalted()  returns FALSE (0000ms, 1395ms total)
T7764 616:191 JLINK_IsHalted()  returns FALSE (0000ms, 1395ms total)
T7764 616:293 JLINK_IsHalted()  returns FALSE (0000ms, 1395ms total)
T7764 616:394 JLINK_IsHalted()  returns FALSE (0000ms, 1395ms total)
T7764 616:495 JLINK_IsHalted()  returns FALSE (0000ms, 1395ms total)
T514C 616:596 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 C0 10 44  returns 0x04 (0000ms, 1395ms total)
T7764 616:597 JLINK_IsHalted()  returns FALSE (0000ms, 1395ms total)
T7764 616:698 JLINK_IsHalted()  returns FALSE (0000ms, 1395ms total)
T7764 616:800 JLINK_IsHalted()  returns FALSE (0000ms, 1395ms total)
T7764 616:901 JLINK_IsHalted()  returns FALSE (0000ms, 1395ms total)
T7764 617:002 JLINK_IsHalted()  returns FALSE (0000ms, 1395ms total)
T514C 617:104 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 C0 10 44  returns 0x04 (0001ms, 1396ms total)
T7764 617:105 JLINK_IsHalted()  returns FALSE (0000ms, 1396ms total)
T7764 617:206 JLINK_IsHalted()  returns FALSE (0000ms, 1396ms total)
T7764 617:307 JLINK_IsHalted()  returns FALSE (0000ms, 1396ms total)
T7764 617:408 JLINK_IsHalted()  returns FALSE (0000ms, 1396ms total)
T7764 617:510 JLINK_IsHalted()  returns FALSE (0000ms, 1396ms total)
T7764 617:611 JLINK_IsHalted()  returns FALSE (0000ms, 1396ms total)
T514C 617:713 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 11 44  returns 0x04 (0001ms, 1397ms total)
T7764 617:714 JLINK_IsHalted()  returns FALSE (0000ms, 1397ms total)
T7764 617:815 JLINK_IsHalted()  returns FALSE (0000ms, 1397ms total)
T7764 617:916 JLINK_IsHalted()  returns FALSE (0000ms, 1397ms total)
T7764 618:017 JLINK_IsHalted()  returns FALSE (0000ms, 1397ms total)
T7764 618:118 JLINK_IsHalted()  returns FALSE (0000ms, 1397ms total)
T7764 618:219 JLINK_IsHalted()  returns FALSE (0000ms, 1397ms total)
T514C 618:320 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 11 44  returns 0x04 (0000ms, 1397ms total)
T7764 618:321 JLINK_IsHalted()  returns FALSE (0000ms, 1397ms total)
T7764 618:423 JLINK_IsHalted()  returns FALSE (0000ms, 1397ms total)
T7764 618:524 JLINK_IsHalted()  returns FALSE (0001ms, 1398ms total)
T7764 618:625 JLINK_IsHalted()  returns FALSE (0000ms, 1397ms total)
T7764 618:727 JLINK_IsHalted()  returns FALSE (0000ms, 1397ms total)
T7764 618:828 JLINK_IsHalted()  returns FALSE (0000ms, 1397ms total)
T514C 618:929 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 40 11 44  returns 0x04 (0000ms, 1397ms total)
T7764 618:930 JLINK_IsHalted()  returns FALSE (0000ms, 1397ms total)
T7764 619:031 JLINK_IsHalted()  returns FALSE (0000ms, 1397ms total)
T7764 619:133 JLINK_IsHalted()  returns FALSE (0000ms, 1397ms total)
T7764 619:234 JLINK_IsHalted()  returns FALSE (0000ms, 1397ms total)
T7764 619:336 JLINK_IsHalted()  returns FALSE (0000ms, 1397ms total)
T7764 619:436 JLINK_IsHalted()  returns FALSE (0000ms, 1397ms total)
T514C 619:537 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 40 11 44  returns 0x04 (0000ms, 1397ms total)
T7764 619:538 JLINK_IsHalted()  returns FALSE (0000ms, 1397ms total)
T7764 619:640 JLINK_IsHalted()  returns FALSE (0000ms, 1397ms total)
T7764 619:741 JLINK_IsHalted()  returns FALSE (0000ms, 1397ms total)
T7764 619:842 JLINK_IsHalted()  returns FALSE (0000ms, 1397ms total)
T7764 619:943 JLINK_IsHalted()  returns FALSE (0000ms, 1397ms total)
T7764 620:044 JLINK_IsHalted()  returns FALSE (0000ms, 1397ms total)
T514C 620:145 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 11 44  returns 0x04 (0001ms, 1398ms total)
T7764 620:146 JLINK_IsHalted()  returns FALSE (0001ms, 1399ms total)
T7764 620:248 JLINK_IsHalted()  returns FALSE (0000ms, 1398ms total)
T7764 620:349 JLINK_IsHalted()  returns FALSE (0000ms, 1398ms total)
T7764 620:451 JLINK_IsHalted()  returns FALSE (0000ms, 1398ms total)
T7764 620:552 JLINK_IsHalted()  returns FALSE (0000ms, 1398ms total)
T7764 620:653 JLINK_IsHalted()  returns FALSE (0000ms, 1398ms total)
T514C 620:755 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 C0 11 44  returns 0x04 (0000ms, 1398ms total)
T7764 620:756 JLINK_IsHalted()  returns FALSE (0000ms, 1398ms total)
T7764 620:857 JLINK_IsHalted()  returns FALSE (0000ms, 1398ms total)
T7764 620:958 JLINK_IsHalted()  returns FALSE (0000ms, 1398ms total)
T7764 621:059 JLINK_IsHalted()  returns FALSE (0000ms, 1398ms total)
T7764 621:160 JLINK_IsHalted()  returns FALSE (0000ms, 1398ms total)
T7764 621:261 JLINK_IsHalted()  returns FALSE (0000ms, 1398ms total)
T514C 621:362 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 C0 11 44  returns 0x04 (0001ms, 1399ms total)
T7764 621:363 JLINK_IsHalted()  returns FALSE (0000ms, 1399ms total)
T7764 621:464 JLINK_IsHalted()  returns FALSE (0000ms, 1399ms total)
T7764 621:566 JLINK_IsHalted()  returns FALSE (0000ms, 1399ms total)
T7764 621:668 JLINK_IsHalted()  returns FALSE (0000ms, 1399ms total)
T7764 621:769 JLINK_IsHalted()  returns FALSE (0000ms, 1399ms total)
T7764 621:870 JLINK_IsHalted()  returns FALSE (0000ms, 1399ms total)
T514C 621:971 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 12 44  returns 0x04 (0001ms, 1400ms total)
T7764 621:972 JLINK_IsHalted()  returns FALSE (0000ms, 1400ms total)
T7764 622:074 JLINK_IsHalted()  returns FALSE (0000ms, 1400ms total)
T7764 622:175 JLINK_IsHalted()  returns FALSE (0000ms, 1400ms total)
T7764 622:276 JLINK_IsHalted()  returns FALSE (0000ms, 1400ms total)
T7764 622:378 JLINK_IsHalted()  returns FALSE (0000ms, 1400ms total)
T7764 622:479 JLINK_IsHalted()  returns FALSE (0000ms, 1400ms total)
T514C 622:580 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 40 12 44  returns 0x04 (0001ms, 1401ms total)
T7764 622:581 JLINK_IsHalted()  returns FALSE (0001ms, 1402ms total)
T7764 622:684 JLINK_IsHalted()  returns FALSE (0000ms, 1401ms total)
T7764 622:785 JLINK_IsHalted()  returns FALSE (0000ms, 1401ms total)
T7764 622:886 JLINK_IsHalted()  returns FALSE (0000ms, 1401ms total)
T7764 622:987 JLINK_IsHalted()  returns FALSE (0000ms, 1401ms total)
T7764 623:088 JLINK_IsHalted()  returns FALSE (0000ms, 1401ms total)
T514C 623:190 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 40 12 44  returns 0x04 (0001ms, 1402ms total)
T7764 623:191 JLINK_IsHalted()  returns FALSE (0001ms, 1403ms total)
T7764 623:293 JLINK_IsHalted()  returns FALSE (0000ms, 1402ms total)
T7764 623:394 JLINK_IsHalted()  returns FALSE (0000ms, 1402ms total)
T7764 623:495 JLINK_IsHalted()  returns FALSE (0000ms, 1402ms total)
T7764 623:596 JLINK_IsHalted()  returns FALSE (0000ms, 1402ms total)
T7764 623:698 JLINK_IsHalted()  returns FALSE (0000ms, 1402ms total)
T514C 623:799 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 12 44  returns 0x04 (0001ms, 1403ms total)
T7764 623:800 JLINK_IsHalted()  returns FALSE (0000ms, 1403ms total)
T7764 623:901 JLINK_IsHalted()  returns FALSE (0000ms, 1403ms total)
T7764 624:002 JLINK_IsHalted()  returns FALSE (0000ms, 1403ms total)
T7764 624:103 JLINK_IsHalted()  returns FALSE (0000ms, 1403ms total)
T7764 624:205 JLINK_IsHalted()  returns FALSE (0000ms, 1403ms total)
T514C 624:306 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 12 44  returns 0x04 (0000ms, 1403ms total)
T7764 624:307 JLINK_IsHalted()  returns FALSE (0000ms, 1403ms total)
T7764 624:408 JLINK_IsHalted()  returns FALSE (0000ms, 1403ms total)
T7764 624:509 JLINK_IsHalted()  returns FALSE (0000ms, 1403ms total)
T7764 624:610 JLINK_IsHalted()  returns FALSE (0000ms, 1403ms total)
T7764 624:711 JLINK_IsHalted()  returns FALSE (0000ms, 1403ms total)
T7764 624:812 JLINK_IsHalted()  returns FALSE (0000ms, 1403ms total)
T514C 624:913 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 C0 12 44  returns 0x04 (0001ms, 1404ms total)
T7764 624:914 JLINK_IsHalted()  returns FALSE (0000ms, 1404ms total)
T7764 625:016 JLINK_IsHalted()  returns FALSE (0000ms, 1404ms total)
T7764 625:118 JLINK_IsHalted()  returns FALSE (0000ms, 1404ms total)
T7764 625:219 JLINK_IsHalted()  returns FALSE (0000ms, 1404ms total)
T7764 625:320 JLINK_IsHalted()  returns FALSE (0000ms, 1404ms total)
T7764 625:421 JLINK_IsHalted()  returns FALSE (0000ms, 1404ms total)
T514C 625:523 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 C0 12 44  returns 0x04 (0001ms, 1405ms total)
T7764 625:524 JLINK_IsHalted()  returns FALSE (0000ms, 1405ms total)
T7764 625:625 JLINK_IsHalted()  returns FALSE (0000ms, 1405ms total)
T7764 625:726 JLINK_IsHalted()  returns FALSE (0000ms, 1405ms total)
T7764 625:827 JLINK_IsHalted()  returns FALSE (0000ms, 1405ms total)
T7764 625:929 JLINK_IsHalted()  returns FALSE (0000ms, 1405ms total)
T7764 626:030 JLINK_IsHalted()  returns FALSE (0000ms, 1405ms total)
T514C 626:131 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 13 44  returns 0x04 (0001ms, 1406ms total)
T7764 626:132 JLINK_IsHalted()  returns FALSE (0000ms, 1406ms total)
T7764 626:233 JLINK_IsHalted()  returns FALSE (0000ms, 1406ms total)
T7764 626:334 JLINK_IsHalted()  returns FALSE (0000ms, 1406ms total)
T7764 626:436 JLINK_IsHalted()  returns FALSE (0000ms, 1406ms total)
T7764 626:537 JLINK_IsHalted()  returns FALSE (0000ms, 1406ms total)
T7764 626:638 JLINK_IsHalted()  returns FALSE (0000ms, 1406ms total)
T514C 626:740 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 40 13 44  returns 0x04 (0000ms, 1406ms total)
T7764 626:741 JLINK_IsHalted()  returns FALSE (0000ms, 1406ms total)
T7764 626:842 JLINK_IsHalted()  returns FALSE (0000ms, 1406ms total)
T7764 626:943 JLINK_IsHalted()  returns FALSE (0000ms, 1406ms total)
T7764 627:044 JLINK_IsHalted()  returns FALSE (0000ms, 1406ms total)
T7764 627:145 JLINK_IsHalted()  returns FALSE (0000ms, 1406ms total)
T7764 627:247 JLINK_IsHalted()  returns FALSE (0000ms, 1406ms total)
T514C 627:349 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 40 13 44  returns 0x04 (0000ms, 1406ms total)
T7764 627:350 JLINK_IsHalted()  returns FALSE (0000ms, 1406ms total)
T7764 627:451 JLINK_IsHalted()  returns FALSE (0000ms, 1406ms total)
T7764 627:551 JLINK_IsHalted()  returns FALSE (0000ms, 1406ms total)
T7764 627:653 JLINK_IsHalted()  returns FALSE (0000ms, 1406ms total)
T7764 627:754 JLINK_IsHalted()  returns FALSE (0000ms, 1406ms total)
T7764 627:856 JLINK_IsHalted()  returns FALSE (0000ms, 1406ms total)
T514C 627:957 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 13 44  returns 0x04 (0001ms, 1407ms total)
T7764 627:958 JLINK_IsHalted()  returns FALSE (0000ms, 1407ms total)
T7764 628:059 JLINK_IsHalted()  returns FALSE (0000ms, 1407ms total)
T7764 628:160 JLINK_IsHalted()  returns FALSE (0000ms, 1407ms total)
T7764 628:261 JLINK_IsHalted()  returns FALSE (0000ms, 1407ms total)
T7764 628:362 JLINK_IsHalted()  returns FALSE (0000ms, 1407ms total)
T7764 628:463 JLINK_IsHalted()  returns FALSE (0000ms, 1407ms total)
T514C 628:564 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 C0 13 44  returns 0x04 (0001ms, 1408ms total)
T7764 628:565 JLINK_IsHalted()  returns FALSE (0000ms, 1408ms total)
T7764 628:667 JLINK_IsHalted()  returns FALSE (0000ms, 1408ms total)
T7764 628:768 JLINK_IsHalted()  returns FALSE (0000ms, 1408ms total)
T7764 628:869 JLINK_IsHalted()  returns FALSE (0000ms, 1408ms total)
T7764 628:970 JLINK_IsHalted()  returns FALSE (0000ms, 1408ms total)
T514C 629:072 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 C0 13 44  returns 0x04 (0001ms, 1409ms total)
T7764 629:073 JLINK_IsHalted()  returns FALSE (0000ms, 1409ms total)
T7764 629:174 JLINK_IsHalted()  returns FALSE (0000ms, 1409ms total)
T7764 629:276 JLINK_IsHalted()  returns FALSE (0000ms, 1409ms total)
T7764 629:377 JLINK_IsHalted()  returns FALSE (0000ms, 1409ms total)
T7764 629:478 JLINK_IsHalted()  returns FALSE (0000ms, 1409ms total)
T7764 629:579 JLINK_IsHalted()  returns FALSE (0000ms, 1409ms total)
T514C 629:681 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 14 44  returns 0x04 (0001ms, 1410ms total)
T7764 629:682 JLINK_IsHalted()  returns FALSE (0000ms, 1410ms total)
T7764 629:783 JLINK_IsHalted()  returns FALSE (0000ms, 1410ms total)
T7764 629:884 JLINK_IsHalted()  returns FALSE (0000ms, 1410ms total)
T7764 629:986 JLINK_IsHalted()  returns FALSE (0000ms, 1410ms total)
T7764 630:087 JLINK_IsHalted()  returns FALSE (0000ms, 1410ms total)
T7764 630:188 JLINK_IsHalted()  returns FALSE (0000ms, 1410ms total)
T514C 630:290 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 14 44  returns 0x04 (0001ms, 1411ms total)
T7764 630:291 JLINK_IsHalted()  returns FALSE (0000ms, 1411ms total)
T7764 630:392 JLINK_IsHalted()  returns FALSE (0000ms, 1411ms total)
T7764 630:494 JLINK_IsHalted()  returns FALSE (0000ms, 1411ms total)
T7764 630:595 JLINK_IsHalted()  returns FALSE (0000ms, 1411ms total)
T7764 630:696 JLINK_IsHalted()  returns FALSE (0000ms, 1411ms total)
T7764 630:797 JLINK_IsHalted()  returns FALSE (0000ms, 1411ms total)
T514C 630:899 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 40 14 44  returns 0x04 (0001ms, 1412ms total)
T7764 630:900 JLINK_IsHalted()  returns FALSE (0000ms, 1412ms total)
T7764 631:001 JLINK_IsHalted()  returns FALSE (0000ms, 1412ms total)
T7764 631:102 JLINK_IsHalted()  returns FALSE (0000ms, 1412ms total)
T7764 631:203 JLINK_IsHalted()  returns FALSE (0000ms, 1412ms total)
T7764 631:304 JLINK_IsHalted()  returns FALSE (0000ms, 1412ms total)
T7764 631:406 JLINK_IsHalted()  returns FALSE (0000ms, 1412ms total)
T514C 631:507 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 40 14 44  returns 0x04 (0000ms, 1412ms total)
T7764 631:508 JLINK_IsHalted()  returns FALSE (0000ms, 1412ms total)
T7764 631:609 JLINK_IsHalted()  returns FALSE (0000ms, 1412ms total)
T7764 631:710 JLINK_IsHalted()  returns FALSE (0000ms, 1412ms total)
T7764 631:811 JLINK_IsHalted()  returns FALSE (0000ms, 1412ms total)
T7764 631:913 JLINK_IsHalted()  returns FALSE (0000ms, 1412ms total)
T7764 632:014 JLINK_IsHalted()  returns FALSE (0000ms, 1412ms total)
T514C 632:116 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 14 44  returns 0x04 (0001ms, 1413ms total)
T7764 632:117 JLINK_IsHalted()  returns FALSE (0000ms, 1413ms total)
T7764 632:218 JLINK_IsHalted()  returns FALSE (0000ms, 1413ms total)
T7764 632:319 JLINK_IsHalted()  returns FALSE (0000ms, 1413ms total)
T7764 632:420 JLINK_IsHalted()  returns FALSE (0000ms, 1413ms total)
T7764 632:521 JLINK_IsHalted()  returns FALSE (0000ms, 1413ms total)
T7764 632:622 JLINK_IsHalted()  returns FALSE (0000ms, 1413ms total)
T514C 632:724 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 C0 14 44  returns 0x04 (0000ms, 1413ms total)
T7764 632:725 JLINK_IsHalted()  returns FALSE (0000ms, 1413ms total)
T7764 632:826 JLINK_IsHalted()  returns FALSE (0000ms, 1413ms total)
T7764 632:928 JLINK_IsHalted()  returns FALSE (0000ms, 1413ms total)
T7764 633:029 JLINK_IsHalted()  returns FALSE (0000ms, 1413ms total)
T7764 633:130 JLINK_IsHalted()  returns FALSE (0000ms, 1413ms total)
T7764 633:231 JLINK_IsHalted()  returns FALSE (0000ms, 1413ms total)
T514C 633:333 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 C0 14 44  returns 0x04 (0000ms, 1413ms total)
T7764 633:334 JLINK_IsHalted()  returns FALSE (0000ms, 1413ms total)
T7764 633:435 JLINK_IsHalted()  returns FALSE (0000ms, 1413ms total)
T7764 633:536 JLINK_IsHalted()  returns FALSE (0000ms, 1413ms total)
T7764 633:638 JLINK_IsHalted()  returns FALSE (0000ms, 1413ms total)
T7764 633:739 JLINK_IsHalted()  returns FALSE (0000ms, 1413ms total)
T7764 633:840 JLINK_IsHalted()  returns FALSE (0000ms, 1413ms total)
T514C 633:941 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 15 44  returns 0x04 (0000ms, 1413ms total)
T7764 633:942 JLINK_IsHalted()  returns FALSE (0000ms, 1413ms total)
T7764 634:043 JLINK_IsHalted()  returns FALSE (0000ms, 1413ms total)
T7764 634:145 JLINK_IsHalted()  returns FALSE (0000ms, 1413ms total)
T7764 634:247 JLINK_IsHalted()  returns FALSE (0000ms, 1413ms total)
T7764 634:348 JLINK_IsHalted()  returns FALSE (0000ms, 1413ms total)
T7764 634:448 JLINK_IsHalted()  returns FALSE (0000ms, 1413ms total)
T514C 634:549 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 15 44  returns 0x04 (0001ms, 1414ms total)
T7764 634:550 JLINK_IsHalted()  returns FALSE (0001ms, 1415ms total)
T7764 634:652 JLINK_IsHalted()  returns FALSE (0000ms, 1414ms total)
T7764 634:754 JLINK_IsHalted()  returns FALSE (0000ms, 1414ms total)
T7764 634:855 JLINK_IsHalted()  returns FALSE (0000ms, 1414ms total)
T7764 634:956 JLINK_IsHalted()  returns FALSE (0000ms, 1414ms total)
T7764 635:058 JLINK_IsHalted()  returns FALSE (0000ms, 1414ms total)
T514C 635:160 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 40 15 44  returns 0x04 (0001ms, 1415ms total)
T7764 635:161 JLINK_IsHalted()  returns FALSE (0000ms, 1415ms total)
T7764 635:262 JLINK_IsHalted()  returns FALSE (0000ms, 1415ms total)
T7764 635:363 JLINK_IsHalted()  returns FALSE (0000ms, 1415ms total)
T7764 635:465 JLINK_IsHalted()  returns FALSE (0000ms, 1415ms total)
T7764 635:566 JLINK_IsHalted()  returns FALSE (0000ms, 1415ms total)
T7764 635:667 JLINK_IsHalted()  returns FALSE (0000ms, 1415ms total)
T514C 635:768 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 15 44  returns 0x04 (0001ms, 1416ms total)
T7764 635:769 JLINK_IsHalted()  returns FALSE (0001ms, 1417ms total)
T7764 635:871 JLINK_IsHalted()  returns FALSE (0000ms, 1416ms total)
T7764 635:972 JLINK_IsHalted()  returns FALSE (0000ms, 1416ms total)
T7764 636:073 JLINK_IsHalted()  returns FALSE (0000ms, 1416ms total)
T7764 636:174 JLINK_IsHalted()  returns FALSE (0000ms, 1416ms total)
T7764 636:275 JLINK_IsHalted()  returns FALSE (0000ms, 1416ms total)
T514C 636:377 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 15 44  returns 0x04 (0000ms, 1416ms total)
T7764 636:378 JLINK_IsHalted()  returns FALSE (0000ms, 1416ms total)
T7764 636:479 JLINK_IsHalted()  returns FALSE (0000ms, 1416ms total)
T7764 636:581 JLINK_IsHalted()  returns FALSE (0000ms, 1416ms total)
T7764 636:682 JLINK_IsHalted()  returns FALSE (0000ms, 1416ms total)
T7764 636:784 JLINK_IsHalted()  returns FALSE (0000ms, 1416ms total)
T514C 636:885 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 C0 15 44  returns 0x04 (0001ms, 1417ms total)
T7764 636:886 JLINK_IsHalted()  returns FALSE (0000ms, 1417ms total)
T7764 636:986 JLINK_IsHalted()  returns FALSE (0000ms, 1417ms total)
T7764 637:088 JLINK_IsHalted()  returns FALSE (0000ms, 1417ms total)
T7764 637:189 JLINK_IsHalted()  returns FALSE (0000ms, 1417ms total)
T7764 637:290 JLINK_IsHalted()  returns FALSE (0000ms, 1417ms total)
T7764 637:392 JLINK_IsHalted()  returns FALSE (0000ms, 1417ms total)
T514C 637:493 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 C0 15 44  returns 0x04 (0001ms, 1418ms total)
T7764 637:494 JLINK_IsHalted()  returns FALSE (0000ms, 1418ms total)
T7764 637:595 JLINK_IsHalted()  returns FALSE (0000ms, 1418ms total)
T7764 637:697 JLINK_IsHalted()  returns FALSE (0000ms, 1418ms total)
T7764 637:798 JLINK_IsHalted()  returns FALSE (0000ms, 1418ms total)
T7764 637:899 JLINK_IsHalted()  returns FALSE (0000ms, 1418ms total)
T7764 638:000 JLINK_IsHalted()  returns FALSE (0000ms, 1418ms total)
T514C 638:101 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 16 44  returns 0x04 (0001ms, 1419ms total)
T7764 638:102 JLINK_IsHalted()  returns FALSE (0000ms, 1419ms total)
T7764 638:204 JLINK_IsHalted()  returns FALSE (0000ms, 1419ms total)
T7764 638:305 JLINK_IsHalted()  returns FALSE (0000ms, 1419ms total)
T7764 638:406 JLINK_IsHalted()  returns FALSE (0000ms, 1419ms total)
T7764 638:507 JLINK_IsHalted()  returns FALSE (0000ms, 1419ms total)
T7764 638:609 JLINK_IsHalted()  returns FALSE (0000ms, 1419ms total)
T514C 638:710 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 40 16 44  returns 0x04 (0001ms, 1420ms total)
T7764 638:711 JLINK_IsHalted()  returns FALSE (0000ms, 1420ms total)
T7764 638:812 JLINK_IsHalted()  returns FALSE (0000ms, 1420ms total)
T7764 638:914 JLINK_IsHalted()  returns FALSE (0000ms, 1420ms total)
T7764 639:015 JLINK_IsHalted()  returns FALSE (0000ms, 1420ms total)
T7764 639:117 JLINK_IsHalted()  returns FALSE (0000ms, 1420ms total)
T7764 639:218 JLINK_IsHalted()  returns FALSE (0000ms, 1420ms total)
T514C 639:319 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 40 16 44  returns 0x04 (0001ms, 1421ms total)
T7764 639:320 JLINK_IsHalted()  returns FALSE (0000ms, 1421ms total)
T7764 639:421 JLINK_IsHalted()  returns FALSE (0000ms, 1421ms total)
T7764 639:522 JLINK_IsHalted()  returns FALSE (0000ms, 1421ms total)
T7764 639:623 JLINK_IsHalted()  returns FALSE (0000ms, 1421ms total)
T7764 639:724 JLINK_IsHalted()  returns FALSE (0000ms, 1421ms total)
T7764 639:825 JLINK_IsHalted()  returns FALSE (0000ms, 1421ms total)
T514C 639:926 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 16 44  returns 0x04 (0000ms, 1421ms total)
T7764 639:927 JLINK_IsHalted()  returns FALSE (0000ms, 1421ms total)
T7764 640:029 JLINK_IsHalted()  returns FALSE (0000ms, 1421ms total)
T7764 640:131 JLINK_IsHalted()  returns FALSE (0001ms, 1422ms total)
T7764 640:233 JLINK_IsHalted()  returns FALSE (0000ms, 1421ms total)
T7764 640:334 JLINK_IsHalted()  returns FALSE (0000ms, 1421ms total)
T7764 640:435 JLINK_IsHalted()  returns FALSE (0000ms, 1421ms total)
T514C 640:536 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 16 44  returns 0x04 (0000ms, 1421ms total)
T7764 640:537 JLINK_IsHalted()  returns FALSE (0000ms, 1421ms total)
T7764 640:638 JLINK_IsHalted()  returns FALSE (0000ms, 1421ms total)
T7764 640:740 JLINK_IsHalted()  returns FALSE (0000ms, 1421ms total)
T7764 640:841 JLINK_IsHalted()  returns FALSE (0000ms, 1421ms total)
T7764 640:942 JLINK_IsHalted()  returns FALSE (0000ms, 1421ms total)
T7764 641:043 JLINK_IsHalted()  returns FALSE (0000ms, 1421ms total)
T514C 641:144 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 C0 16 44  returns 0x04 (0001ms, 1422ms total)
T7764 641:145 JLINK_IsHalted()  returns FALSE (0001ms, 1423ms total)
T7764 641:247 JLINK_IsHalted()  returns FALSE (0000ms, 1422ms total)
T7764 641:349 JLINK_IsHalted()  returns FALSE (0000ms, 1422ms total)
T7764 641:450 JLINK_IsHalted()  returns FALSE (0000ms, 1422ms total)
T7764 641:551 JLINK_IsHalted()  returns FALSE (0000ms, 1422ms total)
T7764 641:652 JLINK_IsHalted()  returns FALSE (0000ms, 1422ms total)
T514C 641:754 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 17 44  returns 0x04 (0000ms, 1422ms total)
T7764 641:755 JLINK_IsHalted()  returns FALSE (0000ms, 1422ms total)
T7764 641:856 JLINK_IsHalted()  returns FALSE (0000ms, 1422ms total)
T7764 641:957 JLINK_IsHalted()  returns FALSE (0000ms, 1422ms total)
T7764 642:059 JLINK_IsHalted()  returns FALSE (0000ms, 1422ms total)
T7764 642:161 JLINK_IsHalted()  returns FALSE (0000ms, 1422ms total)
T7764 642:262 JLINK_IsHalted()  returns FALSE (0000ms, 1422ms total)
T514C 642:363 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 17 44  returns 0x04 (0000ms, 1422ms total)
T7764 642:364 JLINK_IsHalted()  returns FALSE (0000ms, 1422ms total)
T7764 642:465 JLINK_IsHalted()  returns FALSE (0000ms, 1422ms total)
T7764 642:566 JLINK_IsHalted()  returns FALSE (0000ms, 1422ms total)
T7764 642:668 JLINK_IsHalted()  returns FALSE (0000ms, 1422ms total)
T7764 642:769 JLINK_IsHalted()  returns FALSE (0000ms, 1422ms total)
T7764 642:870 JLINK_IsHalted()  returns FALSE (0000ms, 1422ms total)
T514C 642:971 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 40 17 44  returns 0x04 (0001ms, 1423ms total)
T7764 642:972 JLINK_IsHalted()  returns FALSE (0000ms, 1423ms total)
T7764 643:073 JLINK_IsHalted()  returns FALSE (0000ms, 1423ms total)
T7764 643:175 JLINK_IsHalted()  returns FALSE (0000ms, 1423ms total)
T7764 643:276 JLINK_IsHalted()  returns FALSE (0000ms, 1423ms total)
T7764 643:377 JLINK_IsHalted()  returns FALSE (0000ms, 1423ms total)
T7764 643:478 JLINK_IsHalted()  returns FALSE (0000ms, 1423ms total)
T514C 643:579 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 17 44  returns 0x04 (0001ms, 1424ms total)
T7764 643:580 JLINK_IsHalted()  returns FALSE (0000ms, 1424ms total)
T7764 643:682 JLINK_IsHalted()  returns FALSE (0000ms, 1424ms total)
T7764 643:783 JLINK_IsHalted()  returns FALSE (0000ms, 1424ms total)
T7764 643:884 JLINK_IsHalted()  returns FALSE (0000ms, 1424ms total)
T7764 643:985 JLINK_IsHalted()  returns FALSE (0000ms, 1424ms total)
T514C 644:086 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 17 44  returns 0x04 (0001ms, 1425ms total)
T7764 644:087 JLINK_IsHalted()  returns FALSE (0000ms, 1425ms total)
T7764 644:189 JLINK_IsHalted()  returns FALSE (0000ms, 1425ms total)
T7764 644:290 JLINK_IsHalted()  returns FALSE (0000ms, 1425ms total)
T7764 644:391 JLINK_IsHalted()  returns FALSE (0000ms, 1425ms total)
T7764 644:492 JLINK_IsHalted()  returns FALSE (0000ms, 1425ms total)
T7764 644:593 JLINK_IsHalted()  returns FALSE (0000ms, 1425ms total)
T514C 644:695 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 C0 17 44  returns 0x04 (0000ms, 1425ms total)
T7764 644:696 JLINK_IsHalted()  returns FALSE (0000ms, 1425ms total)
T7764 644:797 JLINK_IsHalted()  returns FALSE (0000ms, 1425ms total)
T7764 644:898 JLINK_IsHalted()  returns FALSE (0000ms, 1425ms total)
T7764 644:999 JLINK_IsHalted()  returns FALSE (0000ms, 1425ms total)
T7764 645:100 JLINK_IsHalted()  returns FALSE (0000ms, 1425ms total)
T7764 645:202 JLINK_IsHalted()  returns FALSE (0000ms, 1425ms total)
T514C 645:303 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 C0 17 44  returns 0x04 (0001ms, 1426ms total)
T7764 645:304 JLINK_IsHalted()  returns FALSE (0000ms, 1426ms total)
T7764 645:405 JLINK_IsHalted()  returns FALSE (0000ms, 1426ms total)
T7764 645:506 JLINK_IsHalted()  returns FALSE (0000ms, 1426ms total)
T7764 645:608 JLINK_IsHalted()  returns FALSE (0000ms, 1426ms total)
T7764 645:709 JLINK_IsHalted()  returns FALSE (0000ms, 1426ms total)
T7764 645:810 JLINK_IsHalted()  returns FALSE (0000ms, 1426ms total)
T514C 645:912 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 18 44  returns 0x04 (0001ms, 1427ms total)
T7764 645:913 JLINK_IsHalted()  returns FALSE (0000ms, 1427ms total)
T7764 646:014 JLINK_IsHalted()  returns FALSE (0000ms, 1427ms total)
T7764 646:115 JLINK_IsHalted()  returns FALSE (0000ms, 1427ms total)
T7764 646:217 JLINK_IsHalted()  returns FALSE (0000ms, 1427ms total)
T7764 646:318 JLINK_IsHalted()  returns FALSE (0000ms, 1427ms total)
T7764 646:419 JLINK_IsHalted()  returns FALSE (0000ms, 1427ms total)
T514C 646:521 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 18 44  returns 0x04 (0001ms, 1428ms total)
T7764 646:522 JLINK_IsHalted()  returns FALSE (0000ms, 1428ms total)
T7764 646:623 JLINK_IsHalted()  returns FALSE (0000ms, 1428ms total)
T7764 646:724 JLINK_IsHalted()  returns FALSE (0000ms, 1428ms total)
T7764 646:826 JLINK_IsHalted()  returns FALSE (0000ms, 1428ms total)
T7764 646:927 JLINK_IsHalted()  returns FALSE (0000ms, 1428ms total)
T7764 647:028 JLINK_IsHalted()  returns FALSE (0000ms, 1428ms total)
T514C 647:129 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 40 18 44  returns 0x04 (0001ms, 1429ms total)
T7764 647:130 JLINK_IsHalted()  returns FALSE (0000ms, 1429ms total)
T7764 647:231 JLINK_IsHalted()  returns FALSE (0000ms, 1429ms total)
T7764 647:332 JLINK_IsHalted()  returns FALSE (0000ms, 1429ms total)
T7764 647:433 JLINK_IsHalted()  returns FALSE (0000ms, 1429ms total)
T7764 647:534 JLINK_IsHalted()  returns FALSE (0000ms, 1429ms total)
T7764 647:636 JLINK_IsHalted()  returns FALSE (0000ms, 1429ms total)
T514C 647:738 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 18 44  returns 0x04 (0001ms, 1430ms total)
T7764 647:739 JLINK_IsHalted()  returns FALSE (0001ms, 1431ms total)
T7764 647:841 JLINK_IsHalted()  returns FALSE (0000ms, 1430ms total)
T7764 647:942 JLINK_IsHalted()  returns FALSE (0000ms, 1430ms total)
T7764 648:043 JLINK_IsHalted()  returns FALSE (0000ms, 1430ms total)
T7764 648:144 JLINK_IsHalted()  returns FALSE (0000ms, 1430ms total)
T7764 648:246 JLINK_IsHalted()  returns FALSE (0000ms, 1430ms total)
T514C 648:347 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 18 44  returns 0x04 (0000ms, 1430ms total)
T7764 648:348 JLINK_IsHalted()  returns FALSE (0000ms, 1431ms total)
T7764 648:449 JLINK_IsHalted()  returns FALSE (0000ms, 1431ms total)
T7764 648:550 JLINK_IsHalted()  returns FALSE (0000ms, 1431ms total)
T7764 648:652 JLINK_IsHalted()  returns FALSE (0000ms, 1431ms total)
T7764 648:753 JLINK_IsHalted()  returns FALSE (0000ms, 1431ms total)
T7764 648:854 JLINK_IsHalted()  returns FALSE (0000ms, 1431ms total)
T514C 648:955 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 C0 18 44  returns 0x04 (0001ms, 1432ms total)
T7764 648:956 JLINK_IsHalted()  returns FALSE (0000ms, 1432ms total)
T7764 649:058 JLINK_IsHalted()  returns FALSE (0000ms, 1432ms total)
T7764 649:159 JLINK_IsHalted()  returns FALSE (0000ms, 1432ms total)
T7764 649:260 JLINK_IsHalted()  returns FALSE (0000ms, 1432ms total)
T7764 649:361 JLINK_IsHalted()  returns FALSE (0000ms, 1432ms total)
T7764 649:462 JLINK_IsHalted()  returns FALSE (0000ms, 1432ms total)
T514C 649:564 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 19 44  returns 0x04 (0000ms, 1432ms total)
T7764 649:565 JLINK_IsHalted()  returns FALSE (0000ms, 1432ms total)
T7764 649:666 JLINK_IsHalted()  returns FALSE (0000ms, 1432ms total)
T7764 649:768 JLINK_IsHalted()  returns FALSE (0000ms, 1432ms total)
T7764 649:869 JLINK_IsHalted()  returns FALSE (0000ms, 1432ms total)
T7764 649:970 JLINK_IsHalted()  returns FALSE (0000ms, 1432ms total)
T514C 650:071 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 19 44  returns 0x04 (0001ms, 1433ms total)
T7764 650:072 JLINK_IsHalted()  returns FALSE (0000ms, 1433ms total)
T7764 650:174 JLINK_IsHalted()  returns FALSE (0000ms, 1433ms total)
T7764 650:274 JLINK_IsHalted()  returns FALSE (0000ms, 1433ms total)
T7764 650:376 JLINK_IsHalted()  returns FALSE (0000ms, 1433ms total)
T7764 650:477 JLINK_IsHalted()  returns FALSE (0000ms, 1433ms total)
T7764 650:578 JLINK_IsHalted()  returns FALSE (0000ms, 1433ms total)
T514C 650:679 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 40 19 44  returns 0x04 (0000ms, 1433ms total)
T7764 650:680 JLINK_IsHalted()  returns FALSE (0000ms, 1433ms total)
T7764 650:781 JLINK_IsHalted()  returns FALSE (0000ms, 1433ms total)
T7764 650:883 JLINK_IsHalted()  returns FALSE (0000ms, 1433ms total)
T7764 650:984 JLINK_IsHalted()  returns FALSE (0000ms, 1433ms total)
T7764 651:086 JLINK_IsHalted()  returns FALSE (0000ms, 1433ms total)
T7764 651:187 JLINK_IsHalted()  returns FALSE (0000ms, 1433ms total)
T514C 651:288 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 40 19 44  returns 0x04 (0000ms, 1433ms total)
T7764 651:289 JLINK_IsHalted()  returns FALSE (0000ms, 1434ms total)
T7764 651:390 JLINK_IsHalted()  returns FALSE (0000ms, 1434ms total)
T7764 651:491 JLINK_IsHalted()  returns FALSE (0000ms, 1434ms total)
T7764 651:593 JLINK_IsHalted()  returns FALSE (0000ms, 1434ms total)
T7764 651:695 JLINK_IsHalted()  returns FALSE (0000ms, 1434ms total)
T7764 651:796 JLINK_IsHalted()  returns FALSE (0000ms, 1434ms total)
T514C 651:897 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 19 44  returns 0x04 (0000ms, 1434ms total)
T7764 651:898 JLINK_IsHalted()  returns FALSE (0000ms, 1434ms total)
T7764 651:999 JLINK_IsHalted()  returns FALSE (0000ms, 1434ms total)
T7764 652:100 JLINK_IsHalted()  returns FALSE (0000ms, 1434ms total)
T7764 652:201 JLINK_IsHalted()  returns FALSE (0000ms, 1434ms total)
T7764 652:303 JLINK_IsHalted()  returns FALSE (0000ms, 1434ms total)
T7764 652:404 JLINK_IsHalted()  returns FALSE (0000ms, 1434ms total)
T514C 652:505 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 19 44  returns 0x04 (0000ms, 1434ms total)
T7764 652:506 JLINK_IsHalted()  returns FALSE (0000ms, 1434ms total)
T7764 652:607 JLINK_IsHalted()  returns FALSE (0000ms, 1434ms total)
T7764 652:709 JLINK_IsHalted()  returns FALSE (0000ms, 1434ms total)
T7764 652:811 JLINK_IsHalted()  returns FALSE (0000ms, 1434ms total)
T7764 652:912 JLINK_IsHalted()  returns FALSE (0000ms, 1434ms total)
T7764 653:013 JLINK_IsHalted()  returns FALSE (0000ms, 1434ms total)
T514C 653:114 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 C0 19 44  returns 0x04 (0001ms, 1435ms total)
T7764 653:115 JLINK_IsHalted()  returns FALSE (0000ms, 1435ms total)
T7764 653:217 JLINK_IsHalted()  returns FALSE (0000ms, 1435ms total)
T7764 653:318 JLINK_IsHalted()  returns FALSE (0000ms, 1435ms total)
T7764 653:419 JLINK_IsHalted()  returns FALSE (0000ms, 1435ms total)
T7764 653:520 JLINK_IsHalted()  returns FALSE (0000ms, 1435ms total)
T7764 653:622 JLINK_IsHalted()  returns FALSE (0000ms, 1435ms total)
T514C 653:723 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 1A 44  returns 0x04 (0000ms, 1435ms total)
T7764 653:724 JLINK_IsHalted()  returns FALSE (0000ms, 1435ms total)
T7764 653:826 JLINK_IsHalted()  returns FALSE (0000ms, 1435ms total)
T7764 653:927 JLINK_IsHalted()  returns FALSE (0000ms, 1435ms total)
T7764 654:028 JLINK_IsHalted()  returns FALSE (0000ms, 1435ms total)
T7764 654:130 JLINK_IsHalted()  returns FALSE (0000ms, 1435ms total)
T7764 654:231 JLINK_IsHalted()  returns FALSE (0000ms, 1435ms total)
T514C 654:332 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 1A 44  returns 0x04 (0001ms, 1436ms total)
T7764 654:333 JLINK_IsHalted()  returns FALSE (0000ms, 1436ms total)
T7764 654:434 JLINK_IsHalted()  returns FALSE (0000ms, 1436ms total)
T7764 654:536 JLINK_IsHalted()  returns FALSE (0000ms, 1436ms total)
T7764 654:637 JLINK_IsHalted()  returns FALSE (0000ms, 1436ms total)
T7764 654:738 JLINK_IsHalted()  returns FALSE (0000ms, 1436ms total)
T7764 654:839 JLINK_IsHalted()  returns FALSE (0000ms, 1436ms total)
T514C 654:940 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 40 1A 44  returns 0x04 (0002ms, 1438ms total)
T7764 654:942 JLINK_IsHalted()  returns FALSE (0001ms, 1439ms total)
T7764 655:043 JLINK_IsHalted()  returns FALSE (0000ms, 1438ms total)
T7764 655:145 JLINK_IsHalted()  returns FALSE (0000ms, 1438ms total)
T7764 655:246 JLINK_IsHalted()  returns FALSE (0000ms, 1438ms total)
T7764 655:347 JLINK_IsHalted()  returns FALSE (0000ms, 1438ms total)
T7764 655:448 JLINK_IsHalted()  returns FALSE (0000ms, 1438ms total)
T514C 655:550 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 40 1A 44  returns 0x04 (0001ms, 1439ms total)
T7764 655:551 JLINK_IsHalted()  returns FALSE (0001ms, 1440ms total)
T7764 655:653 JLINK_IsHalted()  returns FALSE (0000ms, 1439ms total)
T7764 655:753 JLINK_IsHalted()  returns FALSE (0000ms, 1439ms total)
T7764 655:855 JLINK_IsHalted()  returns FALSE (0000ms, 1439ms total)
T7764 655:956 JLINK_IsHalted()  returns FALSE (0000ms, 1439ms total)
T7764 656:057 JLINK_IsHalted()  returns FALSE (0000ms, 1439ms total)
T514C 656:159 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 1A 44  returns 0x04 (0001ms, 1440ms total)
T7764 656:160 JLINK_IsHalted()  returns FALSE (0001ms, 1441ms total)
T7764 656:262 JLINK_IsHalted()  returns FALSE (0000ms, 1440ms total)
T7764 656:363 JLINK_IsHalted()  returns FALSE (0000ms, 1440ms total)
T7764 656:464 JLINK_IsHalted()  returns FALSE (0000ms, 1440ms total)
T7764 656:566 JLINK_IsHalted()  returns FALSE (0000ms, 1440ms total)
T7764 656:667 JLINK_IsHalted()  returns FALSE (0000ms, 1440ms total)
T514C 656:768 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 C0 1A 44  returns 0x04 (0001ms, 1441ms total)
T7764 656:769 JLINK_IsHalted()  returns FALSE (0001ms, 1442ms total)
T7764 656:871 JLINK_IsHalted()  returns FALSE (0000ms, 1441ms total)
T7764 656:972 JLINK_IsHalted()  returns FALSE (0000ms, 1441ms total)
T7764 657:074 JLINK_IsHalted()  returns FALSE (0000ms, 1441ms total)
T7764 657:175 JLINK_IsHalted()  returns FALSE (0000ms, 1441ms total)
T7764 657:276 JLINK_IsHalted()  returns FALSE (0000ms, 1441ms total)
T514C 657:377 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 C0 1A 44  returns 0x04 (0001ms, 1442ms total)
T7764 657:378 JLINK_IsHalted()  returns FALSE (0001ms, 1443ms total)
T7764 657:480 JLINK_IsHalted()  returns FALSE (0000ms, 1442ms total)
T7764 657:581 JLINK_IsHalted()  returns FALSE (0000ms, 1442ms total)
T7764 657:682 JLINK_IsHalted()  returns FALSE (0000ms, 1442ms total)
T7764 657:783 JLINK_IsHalted()  returns FALSE (0000ms, 1442ms total)
T7764 657:884 JLINK_IsHalted()  returns FALSE (0000ms, 1442ms total)
T514C 657:986 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 1B 44  returns 0x04 (0001ms, 1443ms total)
T7764 657:987 JLINK_IsHalted()  returns FALSE (0001ms, 1444ms total)
T7764 658:089 JLINK_IsHalted()  returns FALSE (0000ms, 1443ms total)
T7764 658:190 JLINK_IsHalted()  returns FALSE (0000ms, 1443ms total)
T7764 658:291 JLINK_IsHalted()  returns FALSE (0000ms, 1443ms total)
T7764 658:393 JLINK_IsHalted()  returns FALSE (0000ms, 1443ms total)
T514C 658:494 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 1B 44  returns 0x04 (0001ms, 1444ms total)
T7764 658:495 JLINK_IsHalted()  returns FALSE (0000ms, 1444ms total)
T7764 658:596 JLINK_IsHalted()  returns FALSE (0000ms, 1444ms total)
T7764 658:697 JLINK_IsHalted()  returns FALSE (0000ms, 1444ms total)
T7764 658:798 JLINK_IsHalted()  returns FALSE (0000ms, 1444ms total)
T7764 658:899 JLINK_IsHalted()  returns FALSE (0000ms, 1444ms total)
T7764 659:001 JLINK_IsHalted()  returns FALSE (0000ms, 1444ms total)
T514C 659:102 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 40 1B 44  returns 0x04 (0001ms, 1445ms total)
T7764 659:103 JLINK_IsHalted()  returns FALSE (0000ms, 1445ms total)
T7764 659:204 JLINK_IsHalted()  returns FALSE (0000ms, 1445ms total)
T7764 659:305 JLINK_IsHalted()  returns FALSE (0000ms, 1445ms total)
T7764 659:407 JLINK_IsHalted()  returns FALSE (0000ms, 1445ms total)
T7764 659:508 JLINK_IsHalted()  returns FALSE (0000ms, 1445ms total)
T7764 659:609 JLINK_IsHalted()  returns FALSE (0000ms, 1445ms total)
T514C 659:711 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 1B 44  returns 0x04 (0001ms, 1446ms total)
T7764 659:712 JLINK_IsHalted()  returns FALSE (0000ms, 1446ms total)
T7764 659:813 JLINK_IsHalted()  returns FALSE (0000ms, 1446ms total)
T7764 659:914 JLINK_IsHalted()  returns FALSE (0000ms, 1446ms total)
T7764 660:015 JLINK_IsHalted()  returns FALSE (0000ms, 1446ms total)
T7764 660:116 JLINK_IsHalted()  returns FALSE (0000ms, 1446ms total)
T7764 660:217 JLINK_IsHalted()  returns FALSE (0000ms, 1446ms total)
T514C 660:318 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 1B 44  returns 0x04 (0000ms, 1446ms total)
T7764 660:319 JLINK_IsHalted()  returns FALSE (0000ms, 1446ms total)
T7764 660:420 JLINK_IsHalted()  returns FALSE (0000ms, 1446ms total)
T7764 660:521 JLINK_IsHalted()  returns FALSE (0000ms, 1446ms total)
T7764 660:623 JLINK_IsHalted()  returns FALSE (0000ms, 1446ms total)
T7764 660:725 JLINK_IsHalted()  returns FALSE (0000ms, 1446ms total)
T7764 660:826 JLINK_IsHalted()  returns FALSE (0000ms, 1446ms total)
T514C 660:927 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 C0 1B 44  returns 0x04 (0001ms, 1447ms total)
T7764 660:928 JLINK_IsHalted()  returns FALSE (0000ms, 1447ms total)
T7764 661:029 JLINK_IsHalted()  returns FALSE (0000ms, 1447ms total)
T7764 661:131 JLINK_IsHalted()  returns FALSE (0000ms, 1447ms total)
T7764 661:232 JLINK_IsHalted()  returns FALSE (0000ms, 1447ms total)
T7764 661:333 JLINK_IsHalted()  returns FALSE (0000ms, 1447ms total)
T7764 661:434 JLINK_IsHalted()  returns FALSE (0000ms, 1447ms total)
T514C 661:535 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 C0 1B 44  returns 0x04 (0001ms, 1448ms total)
T7764 661:536 JLINK_IsHalted()  returns FALSE (0000ms, 1448ms total)
T7764 661:637 JLINK_IsHalted()  returns FALSE (0000ms, 1448ms total)
T7764 661:738 JLINK_IsHalted()  returns FALSE (0000ms, 1448ms total)
T7764 661:839 JLINK_IsHalted()  returns FALSE (0000ms, 1448ms total)
T7764 661:940 JLINK_IsHalted()  returns FALSE (0000ms, 1448ms total)
T7764 662:042 JLINK_IsHalted()  returns FALSE (0000ms, 1448ms total)
T514C 662:143 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 1C 44  returns 0x04 (0001ms, 1449ms total)
T7764 662:144 JLINK_IsHalted()  returns FALSE (0000ms, 1449ms total)
T7764 662:245 JLINK_IsHalted()  returns FALSE (0000ms, 1449ms total)
T7764 662:346 JLINK_IsHalted()  returns FALSE (0000ms, 1449ms total)
T7764 662:447 JLINK_IsHalted()  returns FALSE (0000ms, 1449ms total)
T7764 662:548 JLINK_IsHalted()  returns FALSE (0000ms, 1449ms total)
T7764 662:649 JLINK_IsHalted()  returns FALSE (0000ms, 1449ms total)
T514C 662:750 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 40 1C 44  returns 0x04 (0001ms, 1450ms total)
T7764 662:751 JLINK_IsHalted()  returns FALSE (0000ms, 1450ms total)
T7764 662:852 JLINK_IsHalted()  returns FALSE (0000ms, 1450ms total)
T7764 662:953 JLINK_IsHalted()  returns FALSE (0000ms, 1450ms total)
T7764 663:054 JLINK_IsHalted()  returns FALSE (0000ms, 1450ms total)
T7764 663:155 JLINK_IsHalted()  returns FALSE (0000ms, 1450ms total)
T514C 663:256 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 40 1C 44  returns 0x04 (0001ms, 1451ms total)
T7764 663:257 JLINK_IsHalted()  returns FALSE (0000ms, 1451ms total)
T7764 663:358 JLINK_IsHalted()  returns FALSE (0000ms, 1451ms total)
T7764 663:460 JLINK_IsHalted()  returns FALSE (0000ms, 1451ms total)
T7764 663:561 JLINK_IsHalted()  returns FALSE (0000ms, 1451ms total)
T7764 663:662 JLINK_IsHalted()  returns FALSE (0000ms, 1451ms total)
T7764 663:763 JLINK_IsHalted()  returns FALSE (0000ms, 1451ms total)
T514C 663:864 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 1C 44  returns 0x04 (0001ms, 1452ms total)
T7764 663:865 JLINK_IsHalted()  returns FALSE (0000ms, 1452ms total)
T7764 663:966 JLINK_IsHalted()  returns FALSE (0000ms, 1452ms total)
T7764 664:068 JLINK_IsHalted()  returns FALSE (0000ms, 1452ms total)
T7764 664:170 JLINK_IsHalted()  returns FALSE (0000ms, 1452ms total)
T7764 664:271 JLINK_IsHalted()  returns FALSE (0000ms, 1452ms total)
T7764 664:372 JLINK_IsHalted()  returns FALSE (0000ms, 1452ms total)
T514C 664:473 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 1C 44  returns 0x04 (0000ms, 1452ms total)
T7764 664:473 JLINK_IsHalted()  returns FALSE (0001ms, 1453ms total)
T7764 664:575 JLINK_IsHalted()  returns FALSE (0000ms, 1452ms total)
T7764 664:676 JLINK_IsHalted()  returns FALSE (0001ms, 1453ms total)
T7764 664:778 JLINK_IsHalted()  returns FALSE (0000ms, 1452ms total)
T7764 664:879 JLINK_IsHalted()  returns FALSE (0000ms, 1452ms total)
T7764 664:980 JLINK_IsHalted()  returns FALSE (0000ms, 1452ms total)
T514C 665:081 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 C0 1C 44  returns 0x04 (0001ms, 1453ms total)
T7764 665:082 JLINK_IsHalted()  returns FALSE (0000ms, 1453ms total)
T7764 665:183 JLINK_IsHalted()  returns FALSE (0000ms, 1453ms total)
T7764 665:285 JLINK_IsHalted()  returns FALSE (0000ms, 1453ms total)
T7764 665:386 JLINK_IsHalted()  returns FALSE (0000ms, 1453ms total)
T7764 665:487 JLINK_IsHalted()  returns FALSE (0000ms, 1453ms total)
T7764 665:589 JLINK_IsHalted()  returns FALSE (0000ms, 1453ms total)
T514C 665:690 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 1D 44  returns 0x04 (0001ms, 1454ms total)
T7764 665:691 JLINK_IsHalted()  returns FALSE (0000ms, 1454ms total)
T7764 665:792 JLINK_IsHalted()  returns FALSE (0000ms, 1454ms total)
T7764 665:893 JLINK_IsHalted()  returns FALSE (0000ms, 1454ms total)
T7764 665:994 JLINK_IsHalted()  returns FALSE (0000ms, 1454ms total)
T7764 666:095 JLINK_IsHalted()  returns FALSE (0000ms, 1454ms total)
T7764 666:197 JLINK_IsHalted()  returns FALSE (0000ms, 1454ms total)
T514C 666:298 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 1D 44  returns 0x04 (0001ms, 1455ms total)
T7764 666:299 JLINK_IsHalted()  returns FALSE (0000ms, 1455ms total)
T7764 666:400 JLINK_IsHalted()  returns FALSE (0000ms, 1455ms total)
T7764 666:501 JLINK_IsHalted()  returns FALSE (0000ms, 1455ms total)
T7764 666:602 JLINK_IsHalted()  returns FALSE (0000ms, 1455ms total)
T7764 666:704 JLINK_IsHalted()  returns FALSE (0000ms, 1455ms total)
T514C 666:805 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 40 1D 44  returns 0x04 (0001ms, 1456ms total)
T7764 666:806 JLINK_IsHalted()  returns FALSE (0000ms, 1456ms total)
T7764 666:907 JLINK_IsHalted()  returns FALSE (0000ms, 1456ms total)
T7764 667:008 JLINK_IsHalted()  returns FALSE (0000ms, 1456ms total)
T7764 667:109 JLINK_IsHalted()  returns FALSE (0000ms, 1456ms total)
T7764 667:211 JLINK_IsHalted()  returns FALSE (0000ms, 1456ms total)
T7764 667:312 JLINK_IsHalted()  returns FALSE (0000ms, 1456ms total)
T514C 667:413 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 40 1D 44  returns 0x04 (0001ms, 1457ms total)
T7764 667:414 JLINK_IsHalted()  returns FALSE (0000ms, 1457ms total)
T7764 667:515 JLINK_IsHalted()  returns FALSE (0000ms, 1457ms total)
T7764 667:617 JLINK_IsHalted()  returns FALSE (0000ms, 1457ms total)
T7764 667:718 JLINK_IsHalted()  returns FALSE (0000ms, 1457ms total)
T7764 667:819 JLINK_IsHalted()  returns FALSE (0000ms, 1457ms total)
T7764 667:921 JLINK_IsHalted()  returns FALSE (0000ms, 1457ms total)
T514C 668:022 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 1D 44  returns 0x04 (0001ms, 1458ms total)
T7764 668:023 JLINK_IsHalted()  returns FALSE (0000ms, 1458ms total)
T7764 668:124 JLINK_IsHalted()  returns FALSE (0000ms, 1458ms total)
T7764 668:225 JLINK_IsHalted()  returns FALSE (0000ms, 1458ms total)
T7764 668:327 JLINK_IsHalted()  returns FALSE (0000ms, 1458ms total)
T7764 668:428 JLINK_IsHalted()  returns FALSE (0000ms, 1458ms total)
T7764 668:529 JLINK_IsHalted()  returns FALSE (0000ms, 1458ms total)
T514C 668:631 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 C0 1D 44  returns 0x04 (0000ms, 1458ms total)
T7764 668:632 JLINK_IsHalted()  returns FALSE (0000ms, 1459ms total)
T7764 668:733 JLINK_IsHalted()  returns FALSE (0000ms, 1459ms total)
T7764 668:835 JLINK_IsHalted()  returns FALSE (0000ms, 1459ms total)
T7764 668:936 JLINK_IsHalted()  returns FALSE (0000ms, 1459ms total)
T7764 669:037 JLINK_IsHalted()  returns FALSE (0000ms, 1459ms total)
T7764 669:138 JLINK_IsHalted()  returns FALSE (0000ms, 1459ms total)
T514C 669:239 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 C0 1D 44  returns 0x04 (0000ms, 1459ms total)
T7764 669:240 JLINK_IsHalted()  returns FALSE (0000ms, 1459ms total)
T7764 669:341 JLINK_IsHalted()  returns FALSE (0000ms, 1459ms total)
T7764 669:443 JLINK_IsHalted()  returns FALSE (0000ms, 1459ms total)
T7764 669:544 JLINK_IsHalted()  returns FALSE (0000ms, 1459ms total)
T7764 669:645 JLINK_IsHalted()  returns FALSE (0000ms, 1459ms total)
T7764 669:747 JLINK_IsHalted()  returns FALSE (0000ms, 1459ms total)
T514C 669:848 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 1E 44  returns 0x04 (0000ms, 1459ms total)
T7764 669:849 JLINK_IsHalted()  returns FALSE (0000ms, 1459ms total)
T7764 669:950 JLINK_IsHalted()  returns FALSE (0000ms, 1459ms total)
T7764 670:051 JLINK_IsHalted()  returns FALSE (0000ms, 1459ms total)
T7764 670:152 JLINK_IsHalted()  returns FALSE (0000ms, 1459ms total)
T7764 670:254 JLINK_IsHalted()  returns FALSE (0000ms, 1459ms total)
T7764 670:355 JLINK_IsHalted()  returns FALSE (0000ms, 1459ms total)
T514C 670:456 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 1E 44  returns 0x04 (0001ms, 1460ms total)
T7764 670:457 JLINK_IsHalted()  returns FALSE (0001ms, 1461ms total)
T7764 670:558 JLINK_IsHalted()  returns FALSE (0000ms, 1460ms total)
T7764 670:659 JLINK_IsHalted()  returns FALSE (0000ms, 1460ms total)
T7764 670:760 JLINK_IsHalted()  returns FALSE (0000ms, 1460ms total)
T7764 670:861 JLINK_IsHalted()  returns FALSE (0000ms, 1460ms total)
T7764 670:963 JLINK_IsHalted()  returns FALSE (0000ms, 1460ms total)
T514C 671:064 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 40 1E 44  returns 0x04 (0001ms, 1461ms total)
T7764 671:065 JLINK_IsHalted()  returns FALSE (0001ms, 1462ms total)
T7764 671:166 JLINK_IsHalted()  returns FALSE (0000ms, 1461ms total)
T7764 671:267 JLINK_IsHalted()  returns FALSE (0000ms, 1461ms total)
T7764 671:368 JLINK_IsHalted()  returns FALSE (0000ms, 1461ms total)
T7764 671:470 JLINK_IsHalted()  returns FALSE (0000ms, 1461ms total)
T514C 671:571 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 1E 44  returns 0x04 (0000ms, 1461ms total)
T7764 671:572 JLINK_IsHalted()  returns FALSE (0000ms, 1461ms total)
T7764 671:674 JLINK_IsHalted()  returns FALSE (0000ms, 1461ms total)
T7764 671:775 JLINK_IsHalted()  returns FALSE (0000ms, 1461ms total)
T7764 671:876 JLINK_IsHalted()  returns FALSE (0000ms, 1461ms total)
T7764 671:977 JLINK_IsHalted()  returns FALSE (0000ms, 1461ms total)
T7764 672:078 JLINK_IsHalted()  returns FALSE (0000ms, 1461ms total)
T514C 672:179 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 1E 44  returns 0x04 (0001ms, 1462ms total)
T7764 672:180 JLINK_IsHalted()  returns FALSE (0000ms, 1462ms total)
T7764 672:281 JLINK_IsHalted()  returns FALSE (0000ms, 1462ms total)
T7764 672:382 JLINK_IsHalted()  returns FALSE (0000ms, 1462ms total)
T7764 672:483 JLINK_IsHalted()  returns FALSE (0000ms, 1462ms total)
T7764 672:584 JLINK_IsHalted()  returns FALSE (0000ms, 1462ms total)
T7764 672:686 JLINK_IsHalted()  returns FALSE (0000ms, 1462ms total)
T514C 672:787 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 C0 1E 44  returns 0x04 (0001ms, 1463ms total)
T7764 672:788 JLINK_IsHalted()  returns FALSE (0000ms, 1463ms total)
T7764 672:889 JLINK_IsHalted()  returns FALSE (0000ms, 1463ms total)
T7764 672:990 JLINK_IsHalted()  returns FALSE (0000ms, 1463ms total)
T7764 673:091 JLINK_IsHalted()  returns FALSE (0000ms, 1463ms total)
T7764 673:193 JLINK_IsHalted()  returns FALSE (0000ms, 1463ms total)
T7764 673:294 JLINK_IsHalted()  returns FALSE (0000ms, 1463ms total)
T514C 673:396 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 C0 1E 44  returns 0x04 (0001ms, 1464ms total)
T7764 673:397 JLINK_IsHalted()  returns FALSE (0000ms, 1464ms total)
T7764 673:498 JLINK_IsHalted()  returns FALSE (0000ms, 1464ms total)
T7764 673:599 JLINK_IsHalted()  returns FALSE (0000ms, 1464ms total)
T7764 673:700 JLINK_IsHalted()  returns FALSE (0000ms, 1464ms total)
T7764 673:801 JLINK_IsHalted()  returns FALSE (0000ms, 1464ms total)
T7764 673:902 JLINK_IsHalted()  returns FALSE (0000ms, 1464ms total)
T514C 674:003 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 1F 44  returns 0x04 (0001ms, 1465ms total)
T7764 674:004 JLINK_IsHalted()  returns FALSE (0000ms, 1465ms total)
T7764 674:105 JLINK_IsHalted()  returns FALSE (0000ms, 1465ms total)
T7764 674:207 JLINK_IsHalted()  returns FALSE (0000ms, 1465ms total)
T7764 674:308 JLINK_IsHalted()  returns FALSE (0000ms, 1465ms total)
T7764 674:409 JLINK_IsHalted()  returns FALSE (0000ms, 1465ms total)
T7764 674:510 JLINK_IsHalted()  returns FALSE (0000ms, 1465ms total)
T514C 674:612 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 40 1F 44  returns 0x04 (0001ms, 1466ms total)
T7764 674:613 JLINK_IsHalted()  returns FALSE (0001ms, 1467ms total)
T7764 674:714 JLINK_IsHalted()  returns FALSE (0000ms, 1466ms total)
T7764 674:815 JLINK_IsHalted()  returns FALSE (0000ms, 1466ms total)
T7764 674:916 JLINK_IsHalted()  returns FALSE (0000ms, 1466ms total)
T7764 675:018 JLINK_IsHalted()  returns FALSE (0000ms, 1466ms total)
T7764 675:118 JLINK_IsHalted()  returns FALSE (0000ms, 1466ms total)
T514C 675:219 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 40 1F 44  returns 0x04 (0001ms, 1467ms total)
T7764 675:220 JLINK_IsHalted()  returns FALSE (0000ms, 1467ms total)
T7764 675:322 JLINK_IsHalted()  returns FALSE (0000ms, 1467ms total)
T7764 675:423 JLINK_IsHalted()  returns FALSE (0000ms, 1467ms total)
T7764 675:524 JLINK_IsHalted()  returns FALSE (0001ms, 1468ms total)
T7764 675:625 JLINK_IsHalted()  returns FALSE (0000ms, 1467ms total)
T514C 675:726 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 1F 44  returns 0x04 (0001ms, 1468ms total)
T7764 675:727 JLINK_IsHalted()  returns FALSE (0000ms, 1468ms total)
T7764 675:828 JLINK_IsHalted()  returns FALSE (0000ms, 1468ms total)
T7764 675:930 JLINK_IsHalted()  returns FALSE (0000ms, 1468ms total)
T7764 676:031 JLINK_IsHalted()  returns FALSE (0000ms, 1468ms total)
T7764 676:132 JLINK_IsHalted()  returns FALSE (0000ms, 1468ms total)
T7764 676:233 JLINK_IsHalted()  returns FALSE (0000ms, 1468ms total)
T514C 676:334 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 1F 44  returns 0x04 (0001ms, 1469ms total)
T7764 676:335 JLINK_IsHalted()  returns FALSE (0000ms, 1469ms total)
T7764 676:436 JLINK_IsHalted()  returns FALSE (0000ms, 1469ms total)
T7764 676:538 JLINK_IsHalted()  returns FALSE (0000ms, 1469ms total)
T7764 676:639 JLINK_IsHalted()  returns FALSE (0000ms, 1469ms total)
T7764 676:741 JLINK_IsHalted()  returns FALSE (0000ms, 1469ms total)
T7764 676:841 JLINK_IsHalted()  returns FALSE (0000ms, 1469ms total)
T514C 676:942 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 C0 1F 44  returns 0x04 (0000ms, 1469ms total)
T7764 676:943 JLINK_IsHalted()  returns FALSE (0000ms, 1469ms total)
T7764 677:044 JLINK_IsHalted()  returns FALSE (0001ms, 1470ms total)
T7764 677:146 JLINK_IsHalted()  returns FALSE (0000ms, 1469ms total)
T7764 677:246 JLINK_IsHalted()  returns FALSE (0000ms, 1469ms total)
T7764 677:347 JLINK_IsHalted()  returns FALSE (0000ms, 1469ms total)
T7764 677:449 JLINK_IsHalted()  returns FALSE (0000ms, 1469ms total)
T514C 677:550 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 C0 1F 44  returns 0x04 (0001ms, 1470ms total)
T7764 677:551 JLINK_IsHalted()  returns FALSE (0000ms, 1470ms total)
T7764 677:652 JLINK_IsHalted()  returns FALSE (0000ms, 1470ms total)
T7764 677:753 JLINK_IsHalted()  returns FALSE (0000ms, 1470ms total)
T7764 677:855 JLINK_IsHalted()  returns FALSE (0000ms, 1470ms total)
T7764 677:956 JLINK_IsHalted()  returns FALSE (0000ms, 1470ms total)
T7764 678:057 JLINK_IsHalted()  returns FALSE (0000ms, 1470ms total)
T514C 678:158 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 20 44  returns 0x04 (0001ms, 1471ms total)
T7764 678:159 JLINK_IsHalted()  returns FALSE (0000ms, 1471ms total)
T7764 678:261 JLINK_IsHalted()  returns FALSE (0000ms, 1471ms total)
T7764 678:362 JLINK_IsHalted()  returns FALSE (0000ms, 1471ms total)
T7764 678:464 JLINK_IsHalted()  returns FALSE (0000ms, 1471ms total)
T7764 678:565 JLINK_IsHalted()  returns FALSE (0000ms, 1471ms total)
T7764 678:667 JLINK_IsHalted()  returns FALSE (0000ms, 1471ms total)
T514C 678:768 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 40 20 44  returns 0x04 (0000ms, 1471ms total)
T7764 678:769 JLINK_IsHalted()  returns FALSE (0000ms, 1472ms total)
T7764 678:870 JLINK_IsHalted()  returns FALSE (0000ms, 1472ms total)
T7764 678:971 JLINK_IsHalted()  returns FALSE (0000ms, 1472ms total)
T7764 679:073 JLINK_IsHalted()  returns FALSE (0000ms, 1472ms total)
T7764 679:174 JLINK_IsHalted()  returns FALSE (0000ms, 1472ms total)
T7764 679:275 JLINK_IsHalted()  returns FALSE (0000ms, 1472ms total)
T514C 679:376 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 40 20 44  returns 0x04 (0001ms, 1473ms total)
T7764 679:377 JLINK_IsHalted()  returns FALSE (0000ms, 1473ms total)
T7764 679:479 JLINK_IsHalted()  returns FALSE (0000ms, 1473ms total)
T7764 679:580 JLINK_IsHalted()  returns FALSE (0000ms, 1473ms total)
T7764 679:681 JLINK_IsHalted()  returns FALSE (0000ms, 1473ms total)
T7764 679:782 JLINK_IsHalted()  returns FALSE (0000ms, 1473ms total)
T514C 679:884 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 20 44  returns 0x04 (0001ms, 1474ms total)
T7764 679:885 JLINK_IsHalted()  returns FALSE (0000ms, 1474ms total)
T7764 679:986 JLINK_IsHalted()  returns FALSE (0000ms, 1474ms total)
T7764 680:088 JLINK_IsHalted()  returns FALSE (0000ms, 1474ms total)
T7764 680:189 JLINK_IsHalted()  returns FALSE (0000ms, 1474ms total)
T7764 680:291 JLINK_IsHalted()  returns FALSE (0000ms, 1474ms total)
T7764 680:392 JLINK_IsHalted()  returns FALSE (0000ms, 1474ms total)
T514C 680:493 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 20 44  returns 0x04 (0001ms, 1475ms total)
T7764 680:494 JLINK_IsHalted()  returns FALSE (0000ms, 1475ms total)
T7764 680:595 JLINK_IsHalted()  returns FALSE (0000ms, 1475ms total)
T7764 680:697 JLINK_IsHalted()  returns FALSE (0000ms, 1475ms total)
T7764 680:798 JLINK_IsHalted()  returns FALSE (0000ms, 1475ms total)
T7764 680:899 JLINK_IsHalted()  returns FALSE (0000ms, 1475ms total)
T7764 681:000 JLINK_IsHalted()  returns FALSE (0000ms, 1475ms total)
T514C 681:101 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 C0 20 44  returns 0x04 (0000ms, 1475ms total)
T7764 681:102 JLINK_IsHalted()  returns FALSE (0000ms, 1475ms total)
T7764 681:203 JLINK_IsHalted()  returns FALSE (0000ms, 1475ms total)
T7764 681:305 JLINK_IsHalted()  returns FALSE (0000ms, 1475ms total)
T7764 681:406 JLINK_IsHalted()  returns FALSE (0000ms, 1475ms total)
T7764 681:507 JLINK_IsHalted()  returns FALSE (0000ms, 1475ms total)
T7764 681:609 JLINK_IsHalted()  returns FALSE (0000ms, 1475ms total)
T514C 681:710 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 21 44  returns 0x04 (0001ms, 1476ms total)
T7764 681:711 JLINK_IsHalted()  returns FALSE (0000ms, 1476ms total)
T7764 681:812 JLINK_IsHalted()  returns FALSE (0000ms, 1476ms total)
T7764 681:913 JLINK_IsHalted()  returns FALSE (0000ms, 1476ms total)
T7764 682:014 JLINK_IsHalted()  returns FALSE (0000ms, 1476ms total)
T7764 682:115 JLINK_IsHalted()  returns FALSE (0000ms, 1476ms total)
T7764 682:217 JLINK_IsHalted()  returns FALSE (0000ms, 1476ms total)
T514C 682:318 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 21 44  returns 0x04 (0000ms, 1476ms total)
T7764 682:319 JLINK_IsHalted()  returns FALSE (0000ms, 1476ms total)
T7764 682:421 JLINK_IsHalted()  returns FALSE (0000ms, 1476ms total)
T7764 682:522 JLINK_IsHalted()  returns FALSE (0000ms, 1476ms total)
T7764 682:623 JLINK_IsHalted()  returns FALSE (0000ms, 1476ms total)
T7764 682:724 JLINK_IsHalted()  returns FALSE (0000ms, 1476ms total)
T7764 682:825 JLINK_IsHalted()  returns FALSE (0000ms, 1476ms total)
T514C 682:926 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 40 21 44  returns 0x04 (0001ms, 1477ms total)
T7764 682:927 JLINK_IsHalted()  returns FALSE (0000ms, 1477ms total)
T7764 683:028 JLINK_IsHalted()  returns FALSE (0000ms, 1477ms total)
T7764 683:130 JLINK_IsHalted()  returns FALSE (0000ms, 1477ms total)
T7764 683:231 JLINK_IsHalted()  returns FALSE (0000ms, 1477ms total)
T7764 683:332 JLINK_IsHalted()  returns FALSE (0000ms, 1477ms total)
T7764 683:434 JLINK_IsHalted()  returns FALSE (0000ms, 1477ms total)
T514C 683:535 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 40 21 44  returns 0x04 (0001ms, 1478ms total)
T7764 683:536 JLINK_IsHalted()  returns FALSE (0000ms, 1478ms total)
T7764 683:637 JLINK_IsHalted()  returns FALSE (0000ms, 1478ms total)
T7764 683:738 JLINK_IsHalted()  returns FALSE (0000ms, 1478ms total)
T7764 683:840 JLINK_IsHalted()  returns FALSE (0000ms, 1478ms total)
T7764 683:941 JLINK_IsHalted()  returns FALSE (0000ms, 1478ms total)
T7764 684:042 JLINK_IsHalted()  returns FALSE (0000ms, 1478ms total)
T514C 684:143 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 21 44  returns 0x04 (0001ms, 1479ms total)
T7764 684:144 JLINK_IsHalted()  returns FALSE (0000ms, 1479ms total)
T7764 684:245 JLINK_IsHalted()  returns FALSE (0000ms, 1479ms total)
T7764 684:346 JLINK_IsHalted()  returns FALSE (0000ms, 1479ms total)
T7764 684:447 JLINK_IsHalted()  returns FALSE (0000ms, 1479ms total)
T7764 684:548 JLINK_IsHalted()  returns FALSE (0000ms, 1479ms total)
T7764 684:650 JLINK_IsHalted()  returns FALSE (0000ms, 1479ms total)
T514C 684:751 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 C0 21 44  returns 0x04 (0001ms, 1480ms total)
T7764 684:752 JLINK_IsHalted()  returns FALSE (0000ms, 1480ms total)
T7764 684:853 JLINK_IsHalted()  returns FALSE (0000ms, 1480ms total)
T7764 684:954 JLINK_IsHalted()  returns FALSE (0000ms, 1480ms total)
T7764 685:055 JLINK_IsHalted()  returns FALSE (0000ms, 1480ms total)
T7764 685:156 JLINK_IsHalted()  returns FALSE (0000ms, 1480ms total)
T514C 685:257 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 C0 21 44  returns 0x04 (0001ms, 1481ms total)
T7764 685:258 JLINK_IsHalted()  returns FALSE (0000ms, 1481ms total)
T7764 685:359 JLINK_IsHalted()  returns FALSE (0000ms, 1481ms total)
T7764 685:461 JLINK_IsHalted()  returns FALSE (0000ms, 1481ms total)
T7764 685:562 JLINK_IsHalted()  returns FALSE (0000ms, 1481ms total)
T7764 685:663 JLINK_IsHalted()  returns FALSE (0000ms, 1481ms total)
T7764 685:764 JLINK_IsHalted()  returns FALSE (0000ms, 1481ms total)
T514C 685:865 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 00 22 44  returns 0x04 (0000ms, 1481ms total)
T7764 685:866 JLINK_IsHalted()  returns FALSE (0000ms, 1482ms total)
T7764 685:968 JLINK_IsHalted()  returns FALSE (0000ms, 1482ms total)
T7764 686:069 JLINK_IsHalted()  returns FALSE (0001ms, 1483ms total)
T7764 686:171 JLINK_IsHalted()  returns FALSE (0000ms, 1482ms total)
T7764 686:273 JLINK_IsHalted()  returns FALSE (0000ms, 1482ms total)
T7764 686:374 JLINK_IsHalted()  returns FALSE (0000ms, 1482ms total)
T514C 687:905 JLINK_ReadMemEx(0x0201BC24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BC24) - Data: 00 80 22 44  returns 0x04 (0001ms, 1483ms total)
T7764 687:906 JLINK_IsHalted()  returns FALSE (0001ms, 1484ms total)