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
 
T544C 000:092 SEGGER J-Link V6.30d Log File (0001ms, 0033ms total)
T544C 000:092 DLL Compiled: Feb 16 2018 13:30:32 (0001ms, 0033ms total)
T544C 000:092 Logging started @ 2024-11-04 09:34 (0001ms, 0033ms total)
T544C 000:093 JLINK_SetWarnOutHandler(...) (0000ms, 0033ms total)
T544C 000:093 JLINK_OpenEx(...)
Firmware: J-Link ARM-OB STM32 compiled Aug 22 2012 19:52:04
Hardware: V7.00
S/N: 20090928
Feature(s): RDI,FlashDL,FlashBP,JFlash,GDB
TELNET listener socket opened on port 19021WEBSRV 
Starting webserver (0017ms, 0050ms total)
T544C 000:093 WEBSRV Webserver running on local port 19080 (0017ms, 0050ms total)
T544C 000:093   returns O.K. (0017ms, 0050ms total)
T544C 000:110 JLINK_GetEmuCaps()  returns 0x88EA5833 (0000ms, 0050ms total)
T544C 000:110 JLINK_TIF_GetAvailable(...) (0001ms, 0051ms total)
T544C 000:111 JLINK_SetErrorOutHandler(...) (0000ms, 0051ms total)
T544C 000:111 JLINK_ExecCommand("ProjectFile = "D:\project chen\ChinaUWBProject_URT no UWB\ChinaUWBProject\keil\JLinkSettings.ini"", ...). d:\Keil_v5\ARM\Segger\JLinkDevices.xml evaluated successfully.  returns 0x00 (0159ms, 0210ms total)
T544C 000:270 JLINK_ExecCommand("Device = MK8000", ...). Device "MK8000" selected.  returns 0x00 (0009ms, 0219ms total)
T544C 000:279 JLINK_ExecCommand("DisableConnectionTimeout", ...).   returns 0x01 (0000ms, 0219ms total)
T544C 000:279 JLINK_GetHardwareVersion()  returns 0x11170 (0000ms, 0219ms total)
T544C 000:280 JLINK_GetDLLVersion()  returns 63004 (0000ms, 0220ms total)
T544C 000:280 JLINK_GetFirmwareString(...) (0000ms, 0220ms total)
T544C 000:280 JLINK_GetDLLVersion()  returns 63004 (0000ms, 0220ms total)
T544C 000:280 JLINK_GetCompileDateTime() (0000ms, 0220ms total)
T544C 000:280 JLINK_GetFirmwareString(...) (0000ms, 0220ms total)
T544C 000:280 JLINK_GetHardwareVersion()  returns 0x11170 (0000ms, 0220ms total)
T544C 000:280 JLINK_TIF_Select(JLINKARM_TIF_SWD)  returns 0x00 (0002ms, 0222ms total)
T544C 000:282 JLINK_SetSpeed(10000) (0001ms, 0223ms total)
T544C 000:283 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_ReadMem(4 bytes @ 0xE0002000)FPUnit: 4 code (BP) slots and 0 literal slots -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000)CoreSight components:ROMTbl[0] @ 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 (0154ms, 0377ms total)
T544C 000:437 JLINK_GetDLLVersion()  returns 63004 (0000ms, 0377ms total)
T544C 000:437 JLINK_CORE_GetFound()  returns 0x60000FF (0000ms, 0377ms total)
T544C 000:437 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xE00FF000  returns 0x00 (0001ms, 0378ms total)
T544C 000:438 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xE00FF000  returns 0x00 (0000ms, 0378ms total)
T544C 000:438 JLINK_GetDebugInfo(0x101 = JLINKARM_DEBUG_INFO_ETM_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0378ms total)
T544C 000:438 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, 0379ms total)
T544C 000:439 JLINK_GetDebugInfo(0x102 = JLINKARM_DEBUG_INFO_MTB_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0379ms total)
T544C 000:439 JLINK_GetDebugInfo(0x103 = JLINKARM_DEBUG_INFO_TPIU_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0379ms total)
T544C 000:439 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, 0380ms total)
T544C 000:440 JLINK_GetDebugInfo(0x104 = JLINKARM_DEBUG_INFO_ITM_ADDR_INDEX) -- Value=0xE0000000  returns 0x00 (0001ms, 0381ms total)
T544C 000:441 JLINK_GetDebugInfo(0x105 = JLINKARM_DEBUG_INFO_DWT_ADDR_INDEX) -- Value=0xE0001000  returns 0x00 (0000ms, 0381ms total)
T544C 000:441 JLINK_GetDebugInfo(0x106 = JLINKARM_DEBUG_INFO_FPB_ADDR_INDEX) -- Value=0xE0002000  returns 0x00 (0000ms, 0381ms total)
T544C 000:441 JLINK_GetDebugInfo(0x107 = JLINKARM_DEBUG_INFO_NVIC_ADDR_INDEX) -- Value=0xE000E000  returns 0x00 (0000ms, 0381ms total)
T544C 000:441 JLINK_GetDebugInfo(0x10C = JLINKARM_DEBUG_INFO_DBG_ADDR_INDEX) -- Value=0xE000EDF0  returns 0x00 (0000ms, 0381ms total)
T544C 000:441 JLINK_GetDebugInfo(0x01 = Unknown) -- Value=0x00000000  returns 0x00 (0000ms, 0381ms total)
T544C 000:441 JLINK_ReadMemU32(0xE000ED00, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED00) - Data: 00 C2 0C 41  returns 0x01 (0001ms, 0382ms total)
T544C 000:442 JLINK_GetDebugInfo(0x10F = JLINKARM_DEBUG_INFO_HAS_CORTEX_M_SECURITY_EXT_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0382ms total)
T544C 000:442 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 0382ms total)
T544C 000:442 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) (0077ms, 0459ms total)
T544C 000:519 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0459ms total)
T544C 000:519 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0001ms, 0460ms total)
T544C 000:520 JLINK_Halt()  returns 0x00 (0000ms, 0460ms total)
T544C 000:520 JLINK_ReadMemU32(0xE000EDF0, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) - Data: 03 00 03 00  returns 0x01 (0001ms, 0461ms total)
T544C 000:521 JLINK_WriteU32(0xE000EDF0, 0xA05F0003) -- CPU_WriteMem(4 bytes @ 0xE000EDF0)  returns 0x00 (0000ms, 0461ms total)
T544C 000:521 JLINK_WriteU32(0xE000EDFC, 0x01000000) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)  returns 0x00 (0002ms, 0463ms total)
T544C 000:523 JLINK_GetHWStatus(...)  returns 0x00 (0001ms, 0464ms total)
T544C 000:524 JLINK_GetNumBPUnits(Type = 0xFFFFFF00)  returns 0x04 (0000ms, 0464ms total)
T544C 000:524 JLINK_GetNumBPUnits(Type = 0xF0)  returns 0x2000 (0000ms, 0464ms total)
T544C 000:524 JLINK_GetNumWPUnits()  returns 0x02 (0000ms, 0464ms total)
T544C 000:524 JLINK_GetSpeed()  returns 0xFA0 (0000ms, 0464ms total)
T544C 000:524 JLINK_ReadMemU32(0xE000E004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000E004) - Data: 00 00 00 00  returns 0x01 (0001ms, 0465ms total)
T544C 000:525 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0465ms total)
T544C 000:525 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0465ms total)
T544C 000:630 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0001ms, 0466ms total)
T544C 000:631 JLINK_Reset() -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)Reset: Halt core after reset via DEMCR.VC_CORERESET. >0x35 TIF>Reset: Reset device via AIRCR.SYSRESETREQ. -- CPU_WriteMem(4 bytes @ 0xE000ED0C) >0x0D TIF> >0x28 TIF> -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE0002000)
 -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0075ms, 0541ms total)
T544C 000:706 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0541ms total)
T544C 000:706 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0541ms total)
T544C 000:706 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, 0543ms total)
T544C 000:708 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0001ms, 0544ms total)
T544C 000:709 JLINK_ReadMemEx(0x0300373A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373A) - Data: 4E F8  returns 0x02 (0001ms, 0545ms total)
T544C 000:710 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, 0546ms total)
T544C 000:711 JLINK_ReadMemEx(0x0300373C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373C) - Data: FC F7  returns 0x02 (0001ms, 0547ms total)
T544C 000:712 JLINK_ReadMemEx(0x0300373E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373E) - Data: C0 FC  returns 0x02 (0001ms, 0548ms total)
T544C 000:713 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 (0002ms, 0550ms total)
T544C 000:715 JLINK_ReadMemEx(0x03003740, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003740) - Data: 80 B5  returns 0x02 (0001ms, 0551ms total)
T544C 000:716 JLINK_ReadMemEx(0x03003742, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003742) - Data: 0D 49  returns 0x02 (0001ms, 0552ms total)
T544C 000:717 JLINK_ReadMemEx(0x03003742, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003742) - Data: 0D 49  returns 0x02 (0001ms, 0553ms total)
T544C 000:718 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 (0002ms, 0555ms total)
T544C 000:720 JLINK_ReadMemEx(0x03003744, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003744) - Data: 08 68  returns 0x02 (0001ms, 0556ms total)
T544C 000:721 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, 0557ms total)
T544C 000:722 JLINK_ReadMemEx(0x03003744, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003744) - Data: 08 68  returns 0x02 (0001ms, 0558ms total)
T544C 000:723 JLINK_ReadMemEx(0x03003746, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003746) - Data: 00 28  returns 0x02 (0001ms, 0559ms total)
T544C 000:724 JLINK_ReadMemEx(0x03003746, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003746) - Data: 00 28  returns 0x02 (0001ms, 0560ms total)
T544C 000:725 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 (0002ms, 0562ms total)
T544C 000:727 JLINK_ReadMemEx(0x03003748, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003748) - Data: 00 D4  returns 0x02 (0001ms, 0563ms total)
T544C 000:728 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, 0564ms total)
T544C 000:729 JLINK_ReadMemEx(0x03003748, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003748) - Data: 00 D4  returns 0x02 (0001ms, 0565ms total)
T544C 000:730 JLINK_ReadMemEx(0x0300374A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300374A) - Data: 80 BD  returns 0x02 (0001ms, 0566ms total)
T544C 005:239 JLINK_ReadReg(R0)  returns 0x0000001B (0001ms, 0567ms total)
T544C 005:240 JLINK_ReadReg(R1)  returns 0x0201B862 (0000ms, 0567ms total)
T544C 005:240 JLINK_ReadReg(R2)  returns 0x00000000 (0000ms, 0567ms total)
T544C 005:240 JLINK_ReadReg(R3)  returns 0x0000000A (0000ms, 0567ms total)
T544C 005:240 JLINK_ReadReg(R4)  returns 0x02019C9A (0000ms, 0567ms total)
T544C 005:240 JLINK_ReadReg(R5)  returns 0x0202F63C (0000ms, 0567ms total)
T544C 005:240 JLINK_ReadReg(R6)  returns 0x02019558 (0000ms, 0567ms total)
T544C 005:240 JLINK_ReadReg(R7)  returns 0x00000000 (0000ms, 0567ms total)
T544C 005:240 JLINK_ReadReg(R8)  returns 0xFFFDDBF7 (0000ms, 0567ms total)
T544C 005:240 JLINK_ReadReg(R9)  returns 0x3D7E17EC (0000ms, 0567ms total)
T544C 005:240 JLINK_ReadReg(R10)  returns 0x7EFBF7FF (0000ms, 0567ms total)
T544C 005:240 JLINK_ReadReg(R11)  returns 0xFDBFF7FE (0000ms, 0567ms total)
T544C 005:240 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 0567ms total)
T544C 005:240 JLINK_ReadReg(R13 (SP))  returns 0x0202F800 (0000ms, 0567ms total)
T544C 005:240 JLINK_ReadReg(R14)  returns 0x000013F9 (0001ms, 0568ms total)
T544C 005:241 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0568ms total)
T544C 005:241 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0568ms total)
T544C 005:241 JLINK_ReadReg(MSP)  returns 0x0202F800 (0000ms, 0568ms total)
T544C 005:241 JLINK_ReadReg(PSP)  returns 0xBBFFFE98 (0000ms, 0568ms total)
T544C 005:241 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0568ms total)
T544C 005:241 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0570ms total)
T544C 005:250 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 0571ms total)
T544C 005:251 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 0572ms total)
T544C 005:252 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 0573ms total)
T544C 005:551 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 0574ms total)
T544C 005:552 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 0575ms total)
T544C 005:553 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 0576ms total)
T544C 005:571 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 03  returns 0x01 (0001ms, 0577ms total)
T544C 005:572 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 03  returns 0x01 (0001ms, 0578ms total)
T544C 005:573 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 03  returns 0x01 (0000ms, 0578ms total)
T544C 005:589 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0001ms, 0579ms total)
T544C 005:590 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0001ms, 0580ms total)
T544C 005:591 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0001ms, 0581ms total)
T544C 005:655 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 0582ms total)
T544C 005:656 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 0583ms total)
T544C 005:657 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 0584ms total)
T544C 005:674 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 0585ms total)
T544C 005:675 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 0586ms total)
T544C 005:676 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 0587ms total)
T544C 005:709 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 0588ms total)
T544C 005:710 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 0589ms total)
T544C 005:711 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 0590ms total)
T544C 005:727 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 0591ms total)
T544C 005:729 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 0593ms total)
T544C 005:730 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 0594ms total)
T544C 005:748 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0596ms total)
T544C 005:994 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 0597ms total)
T544C 005:995 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 0598ms total)
T544C 005:996 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 0599ms total)
T544C 006:013 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 0600ms total)
T544C 006:014 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 0601ms total)
T544C 006:015 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 0602ms total)
T544C 006:053 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0000ms, 0602ms total)
T544C 006:053 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0002ms, 0604ms total)
T544C 006:055 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 0605ms total)
T544C 006:071 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0002ms, 0607ms total)
T544C 006:073 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 0608ms total)
T544C 006:074 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 0609ms total)
T544C 006:091 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 0610ms total)
T544C 006:092 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 0611ms total)
T544C 006:093 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0002ms, 0613ms total)
T544C 006:111 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 0614ms total)
T544C 006:112 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 0615ms total)
T544C 006:113 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0002ms, 0617ms total)
T544C 006:131 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0002ms, 0619ms total)
T544C 006:133 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 0620ms total)
T544C 006:134 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 0621ms total)
T544C 006:151 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0623ms total)
T544C 006:168 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0002ms, 0625ms total)
T544C 006:170 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0001ms, 0626ms total)
T544C 006:171 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0001ms, 0627ms total)
T544C 006:220 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0002ms, 0629ms total)
T544C 006:222 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 0630ms total)
T544C 006:223 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 0631ms total)
T544C 006:240 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 0632ms total)
T544C 006:241 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 0633ms total)
T544C 006:242 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 0634ms total)
T544C 006:261 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0002ms, 0636ms total)
T544C 006:263 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 0637ms total)
T544C 006:264 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 0638ms total)
T544C 006:280 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0002ms, 0640ms total)
T544C 006:282 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 0641ms total)
T544C 006:283 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 0642ms total)
T544C 006:303 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 0643ms total)
T544C 006:304 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 0644ms total)
T544C 006:305 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 0645ms total)
T544C 006:322 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 0646ms total)
T544C 006:323 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 0647ms total)
T544C 006:324 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0002ms, 0649ms total)
T544C 006:343 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 0650ms total)
T544C 006:344 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 0651ms total)
T544C 006:345 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 0652ms total)
T544C 006:364 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 17 00 00 00  returns 0x04 (0001ms, 0653ms total)
T544C 006:365 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 17 00 00 00  returns 0x04 (0001ms, 0654ms total)
T544C 006:367 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 17 00 00 00  returns 0x04 (0001ms, 0655ms total)
T544C 006:385 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 17 00 00 00  returns 0x04 (0001ms, 0656ms total)
T544C 006:386 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 17 00 00 00  returns 0x04 (0001ms, 0657ms total)
T544C 006:387 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 17 00 00 00  returns 0x04 (0001ms, 0658ms total)
T544C 006:408 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 00  returns 0x01 (0001ms, 0659ms total)
T544C 006:409 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 00  returns 0x01 (0001ms, 0660ms total)
T544C 006:410 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 00  returns 0x01 (0001ms, 0661ms total)
T544C 006:428 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 0662ms total)
T544C 006:429 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0002ms, 0664ms total)
T544C 006:431 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 0665ms total)
T544C 006:449 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 0666ms total)
T544C 006:450 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 0667ms total)
T544C 006:451 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0002ms, 0669ms total)
T544C 006:471 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0002ms, 0671ms total)
T544C 006:489 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0001ms, 0672ms total)
T544C 006:491 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0001ms, 0673ms total)
T544C 006:492 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0001ms, 0674ms total)
T544C 006:510 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 E0 40  returns 0x04 (0001ms, 0675ms total)
T544C 006:511 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 E0 40  returns 0x04 (0001ms, 0676ms total)
T544C 006:512 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 E0 40  returns 0x04 (0002ms, 0678ms total)
T544C 006:533 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 64  returns 0x01 (0002ms, 0680ms total)
T544C 006:535 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 64  returns 0x01 (0001ms, 0681ms total)
T544C 006:536 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 64  returns 0x01 (0001ms, 0682ms total)
T544C 006:552 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 70 10  returns 0x02 (0002ms, 0684ms total)
T544C 006:554 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 70 10  returns 0x02 (0001ms, 0685ms total)
T544C 006:555 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 70 10  returns 0x02 (0001ms, 0686ms total)
T544C 006:608 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0002ms, 0688ms total)
T544C 006:610 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 0689ms total)
T544C 006:611 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 0690ms total)
T544C 006:629 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 00 00  returns 0x02 (0002ms, 0692ms total)
T544C 006:631 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 00 00  returns 0x02 (0001ms, 0693ms total)
T544C 006:632 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 00 00  returns 0x02 (0001ms, 0694ms total)
T544C 006:668 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 0695ms total)
T544C 006:670 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 0696ms total)
T544C 006:671 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 0697ms total)
T544C 006:690 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0000ms, 0697ms total)
T544C 006:690 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 0698ms total)
T544C 006:691 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0002ms, 0700ms total)
T544C 006:710 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 00  returns 0x01 (0001ms, 0701ms total)
T544C 006:711 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 00  returns 0x01 (0001ms, 0702ms total)
T544C 006:712 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 00  returns 0x01 (0001ms, 0703ms total)
T544C 006:753 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 0704ms total)
T544C 006:754 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 0705ms total)
T544C 006:755 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 0706ms total)
T544C 006:773 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0001ms, 0707ms total)
T544C 006:774 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0002ms, 0709ms total)
T544C 006:776 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0001ms, 0710ms total)
T544C 006:798 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 0711ms total)
T544C 006:799 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 0712ms total)
T544C 006:800 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 0713ms total)
T4018 006:975 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0001ms, 0714ms total)
T4018 006:976 JLINK_SetBPEx(Addr = 0x000099F8, Type = 0xFFFFFFF2)  returns 0x00000001 (0000ms, 0714ms total)
T4018 006:976 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU_WriteMem(4 bytes @ 0xE0002014) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0008ms, 0722ms total)
T4018 007:085 JLINK_IsHalted()  returns TRUE (0005ms, 0727ms total)
T4018 007:090 JLINK_Halt()  returns 0x00 (0000ms, 0722ms total)
T4018 007:090 JLINK_IsHalted()  returns TRUE (0000ms, 0722ms total)
T4018 007:090 JLINK_IsHalted()  returns TRUE (0000ms, 0722ms total)
T4018 007:090 JLINK_IsHalted()  returns TRUE (0000ms, 0722ms total)
T4018 007:090 JLINK_ReadReg(R15 (PC))  returns 0x000099F8 (0000ms, 0722ms total)
T4018 007:090 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 0722ms total)
T4018 007:090 JLINK_ClrBPEx(BPHandle = 0x00000001)  returns 0x00 (0000ms, 0722ms total)
T4018 007:090 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0001ms, 0723ms total)
T4018 007:091 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 0724ms total)
T4018 007:092 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0001ms, 0725ms total)
T4018 007:093 JLINK_ReadReg(R0)  returns 0x000099F9 (0000ms, 0725ms total)
T4018 007:093 JLINK_ReadReg(R1)  returns 0x0201CD70 (0000ms, 0725ms total)
T4018 007:093 JLINK_ReadReg(R2)  returns 0x00000000 (0000ms, 0725ms total)
T4018 007:093 JLINK_ReadReg(R3)  returns 0x0000D205 (0000ms, 0725ms total)
T4018 007:093 JLINK_ReadReg(R4)  returns 0x0000F25C (0000ms, 0725ms total)
T4018 007:093 JLINK_ReadReg(R5)  returns 0x00000001 (0000ms, 0725ms total)
T4018 007:093 JLINK_ReadReg(R6)  returns 0x0000F25C (0000ms, 0725ms total)
T4018 007:093 JLINK_ReadReg(R7)  returns 0x02000000 (0000ms, 0725ms total)
T4018 007:093 JLINK_ReadReg(R8)  returns 0xFFFDDBF7 (0000ms, 0725ms total)
T4018 007:093 JLINK_ReadReg(R9)  returns 0x3D7E17EC (0000ms, 0725ms total)
T4018 007:093 JLINK_ReadReg(R10)  returns 0x7EFBF7FF (0000ms, 0725ms total)
T4018 007:093 JLINK_ReadReg(R11)  returns 0xFDBFF7FE (0001ms, 0726ms total)
T4018 007:094 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 0726ms total)
T4018 007:094 JLINK_ReadReg(R13 (SP))  returns 0x0202F800 (0000ms, 0726ms total)
T4018 007:094 JLINK_ReadReg(R14)  returns 0x00000CB5 (0000ms, 0726ms total)
T4018 007:094 JLINK_ReadReg(R15 (PC))  returns 0x000099F8 (0000ms, 0726ms total)
T4018 007:094 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 0726ms total)
T4018 007:094 JLINK_ReadReg(MSP)  returns 0x0202F800 (0000ms, 0726ms total)
T4018 007:094 JLINK_ReadReg(PSP)  returns 0xBBFFFE98 (0000ms, 0726ms total)
T4018 007:094 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0726ms total)
T544C 007:101 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0727ms total)
T544C 007:102 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 00  returns 0x01 (0001ms, 0728ms total)
T544C 007:125 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 0729ms total)
T544C 007:127 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 00  returns 0x01 (0000ms, 0729ms total)
T544C 007:127 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0001ms, 0730ms total)
T544C 007:129 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 00  returns 0x01 (0002ms, 0732ms total)
T544C 007:131 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 00  returns 0x01 (0000ms, 0732ms total)
T544C 007:132 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0000ms, 0732ms total)
T544C 007:132 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 0733ms total)
T544C 007:133 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0734ms total)
T544C 007:135 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 00 00 00 00  returns 0x04 (0001ms, 0735ms total)
T544C 007:136 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0002ms, 0737ms total)
T544C 007:138 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 0738ms total)
T544C 007:139 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 00  returns 0x01 (0001ms, 0739ms total)
T544C 007:141 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 0740ms total)
T544C 007:142 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 0741ms total)
T544C 007:143 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 0742ms total)
T544C 007:144 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0743ms total)
T544C 007:145 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 00  returns 0x01 (0001ms, 0744ms total)
T544C 007:146 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 0745ms total)
T544C 007:147 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 0746ms total)
T544C 007:148 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0002ms, 0748ms total)
T544C 007:150 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0000ms, 0748ms total)
T544C 007:150 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 0749ms total)
T544C 007:151 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 0750ms total)
T544C 007:152 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 00 00 00 00  returns 0x04 (0001ms, 0751ms total)
T544C 007:153 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 00 00 00 00  returns 0x04 (0002ms, 0753ms total)
T544C 007:155 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 00 00 00 00  returns 0x04 (0001ms, 0754ms total)
T544C 007:156 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 00  returns 0x01 (0000ms, 0754ms total)
T544C 007:156 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 00  returns 0x01 (0001ms, 0755ms total)
T544C 007:157 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 0756ms total)
T544C 007:158 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0758ms total)
T544C 007:160 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0001ms, 0759ms total)
T544C 007:161 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 00 00  returns 0x04 (0001ms, 0760ms total)
T544C 007:162 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 00  returns 0x01 (0001ms, 0761ms total)
T544C 007:163 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 00 00  returns 0x02 (0001ms, 0762ms total)
T544C 007:164 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 00 00  returns 0x02 (0001ms, 0763ms total)
T544C 007:165 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 00 00  returns 0x02 (0001ms, 0764ms total)
T544C 007:166 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 0765ms total)
T544C 007:167 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 0766ms total)
T544C 007:168 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 00  returns 0x01 (0001ms, 0767ms total)
T544C 007:169 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: 00  returns 0x01 (0002ms, 0769ms total)
T544C 007:171 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 00  returns 0x01 (0000ms, 0769ms total)
T544C 007:171 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 0770ms total)
T544C 007:174 JLINK_ReadMemEx(0x000098F8, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x000098C0) -- Updating C cache (128 bytes @ 0x000098C0) -- Read from C cache (60 bytes @ 0x000098F8) - Data: 60 23 8B 54 19 49 81 60 C1 60 01 61 21 60 7D 21 ...  returns 0x3C (0002ms, 0772ms total)
T544C 007:176 JLINK_ReadMemEx(0x000098F8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000098F8) - Data: 60 23  returns 0x02 (0000ms, 0772ms total)
T544C 007:176 JLINK_ReadMemEx(0x000098FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000098FA) - Data: 8B 54  returns 0x02 (0000ms, 0772ms total)
T544C 007:176 JLINK_ReadMemEx(0x000098FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000098FA) - Data: 8B 54  returns 0x02 (0000ms, 0772ms total)
T544C 007:176 JLINK_ReadMemEx(0x000098FC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000098FC) - Data: 19 49 81 60 C1 60 01 61 21 60 7D 21 09 01 01 66 ...  returns 0x3C (0000ms, 0772ms total)
T544C 007:176 JLINK_ReadMemEx(0x000098FC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000098FC) - Data: 19 49  returns 0x02 (0000ms, 0772ms total)
T544C 007:178 JLINK_ReadMemEx(0x000098FC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000098FC) - Data: 19 49 81 60 C1 60 01 61 21 60 7D 21 09 01 01 66 ...  returns 0x3C (0000ms, 0774ms total)
T544C 007:178 JLINK_ReadMemEx(0x000098FC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000098FC) - Data: 19 49  returns 0x02 (0000ms, 0774ms total)
T544C 007:178 JLINK_ReadMemEx(0x000098FE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000098FE) - Data: 81 60  returns 0x02 (0000ms, 0774ms total)
T544C 007:178 JLINK_ReadMemEx(0x000098FE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000098FE) - Data: 81 60  returns 0x02 (0000ms, 0774ms total)
T544C 007:178 JLINK_ReadMemEx(0x00009900, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009900) - Data: C1 60 01 61 21 60 7D 21 09 01 01 66 41 66 16 49 ...  returns 0x3C (0000ms, 0774ms total)
T544C 007:178 JLINK_ReadMemEx(0x00009900, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009900) - Data: C1 60  returns 0x02 (0000ms, 0774ms total)
T544C 007:178 JLINK_ReadMemEx(0x00009900, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009900) - Data: C1 60 01 61 21 60 7D 21 09 01 01 66 41 66 16 49 ...  returns 0x3C (0000ms, 0774ms total)
T544C 007:178 JLINK_ReadMemEx(0x00009900, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009900) - Data: C1 60  returns 0x02 (0000ms, 0774ms total)
T544C 007:178 JLINK_ReadMemEx(0x00009902, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009902) - Data: 01 61  returns 0x02 (0000ms, 0774ms total)
T544C 007:178 JLINK_ReadMemEx(0x00009902, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009902) - Data: 01 61  returns 0x02 (0000ms, 0774ms total)
T544C 007:178 JLINK_ReadMemEx(0x00009904, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009904) - Data: 21 60 7D 21 09 01 01 66 41 66 16 49 C1 64 16 49 ...  returns 0x3C (0001ms, 0775ms total)
T544C 007:179 JLINK_ReadMemEx(0x00009904, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009904) - Data: 21 60  returns 0x02 (0000ms, 0775ms total)
T544C 007:179 JLINK_ReadMemEx(0x00009904, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009904) - Data: 21 60 7D 21 09 01 01 66 41 66 16 49 C1 64 16 49 ...  returns 0x3C (0000ms, 0775ms total)
T544C 007:179 JLINK_ReadMemEx(0x00009904, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009904) - Data: 21 60  returns 0x02 (0000ms, 0775ms total)
T544C 007:179 JLINK_ReadMemEx(0x00009906, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009906) - Data: 7D 21  returns 0x02 (0000ms, 0775ms total)
T544C 007:179 JLINK_ReadMemEx(0x00009906, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009906) - Data: 7D 21  returns 0x02 (0000ms, 0775ms total)
T544C 007:179 JLINK_ReadMemEx(0x00009908, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00009940) -- Updating C cache (64 bytes @ 0x00009940) -- Read from C cache (60 bytes @ 0x00009908) - Data: 09 01 01 66 41 66 16 49 C1 64 16 49 41 64 16 49 ...  returns 0x3C (0002ms, 0777ms total)
T544C 007:181 JLINK_ReadMemEx(0x00009908, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009908) - Data: 09 01  returns 0x02 (0000ms, 0777ms total)
T544C 007:181 JLINK_ReadMemEx(0x00009908, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009908) - Data: 09 01 01 66 41 66 16 49 C1 64 16 49 41 64 16 49 ...  returns 0x3C (0000ms, 0777ms total)
T544C 007:181 JLINK_ReadMemEx(0x00009908, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009908) - Data: 09 01  returns 0x02 (0000ms, 0777ms total)
T544C 007:181 JLINK_ReadMemEx(0x0000990A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000990A) - Data: 01 66  returns 0x02 (0000ms, 0777ms total)
T544C 007:181 JLINK_ReadMemEx(0x0000990A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000990A) - Data: 01 66  returns 0x02 (0000ms, 0777ms total)
T544C 007:181 JLINK_ReadMemEx(0x0000990C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000990C) - Data: 41 66 16 49 C1 64 16 49 41 64 16 49 01 64 00 F0 ...  returns 0x3C (0000ms, 0777ms total)
T544C 007:181 JLINK_ReadMemEx(0x0000990C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000990C) - Data: 41 66  returns 0x02 (0000ms, 0777ms total)
T544C 007:181 JLINK_ReadMemEx(0x0000990C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000990C) - Data: 41 66 16 49 C1 64 16 49 41 64 16 49 01 64 00 F0 ...  returns 0x3C (0000ms, 0777ms total)
T544C 007:181 JLINK_ReadMemEx(0x0000990C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000990C) - Data: 41 66  returns 0x02 (0000ms, 0777ms total)
T544C 007:181 JLINK_ReadMemEx(0x0000990E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000990E) - Data: 16 49  returns 0x02 (0000ms, 0777ms total)
T544C 007:181 JLINK_ReadMemEx(0x0000990E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000990E) - Data: 16 49  returns 0x02 (0000ms, 0777ms total)
T544C 007:181 JLINK_ReadMemEx(0x00009910, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009910) - Data: C1 64 16 49 41 64 16 49 01 64 00 F0 8B FA 01 B0 ...  returns 0x3C (0000ms, 0777ms total)
T544C 007:181 JLINK_ReadMemEx(0x00009910, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009910) - Data: C1 64  returns 0x02 (0000ms, 0777ms total)
T544C 007:181 JLINK_ReadMemEx(0x00009910, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009910) - Data: C1 64 16 49 41 64 16 49 01 64 00 F0 8B FA 01 B0 ...  returns 0x3C (0000ms, 0777ms total)
T544C 007:181 JLINK_ReadMemEx(0x00009910, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009910) - Data: C1 64  returns 0x02 (0000ms, 0777ms total)
T544C 007:181 JLINK_ReadMemEx(0x00009912, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009912) - Data: 16 49  returns 0x02 (0001ms, 0778ms total)
T544C 007:182 JLINK_ReadMemEx(0x00009912, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009912) - Data: 16 49  returns 0x02 (0000ms, 0778ms total)
T544C 007:182 JLINK_ReadMemEx(0x00009914, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009914) - Data: 41 64 16 49 01 64 00 F0 8B FA 01 B0 F0 BD C0 46 ...  returns 0x3C (0000ms, 0778ms total)
T544C 007:182 JLINK_ReadMemEx(0x00009914, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009914) - Data: 41 64  returns 0x02 (0000ms, 0778ms total)
T544C 007:182 JLINK_ReadMemEx(0x00009914, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009914) - Data: 41 64 16 49 01 64 00 F0 8B FA 01 B0 F0 BD C0 46 ...  returns 0x3C (0000ms, 0778ms total)
T544C 007:182 JLINK_ReadMemEx(0x00009914, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009914) - Data: 41 64  returns 0x02 (0000ms, 0778ms total)
T544C 007:182 JLINK_ReadMemEx(0x00009916, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009916) - Data: 16 49  returns 0x02 (0000ms, 0778ms total)
T544C 007:182 JLINK_ReadMemEx(0x00009916, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009916) - Data: 16 49  returns 0x02 (0000ms, 0778ms total)
T544C 007:182 JLINK_ReadMemEx(0x00009918, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009918) - Data: 01 64 00 F0 8B FA 01 B0 F0 BD C0 46 04 A0 00 50 ...  returns 0x3C (0000ms, 0778ms total)
T544C 007:182 JLINK_ReadMemEx(0x00009918, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009918) - Data: 01 64  returns 0x02 (0000ms, 0778ms total)
T544C 007:182 JLINK_ReadMemEx(0x00009918, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009918) - Data: 01 64 00 F0 8B FA 01 B0 F0 BD C0 46 04 A0 00 50 ...  returns 0x3C (0000ms, 0778ms total)
T544C 007:182 JLINK_ReadMemEx(0x00009918, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009918) - Data: 01 64  returns 0x02 (0000ms, 0778ms total)
T544C 007:182 JLINK_ReadMemEx(0x0000991A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000991A) - Data: 00 F0  returns 0x02 (0000ms, 0778ms total)
T544C 007:182 JLINK_ReadMemEx(0x0000991A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000991A) - Data: 00 F0  returns 0x02 (0000ms, 0778ms total)
T544C 007:182 JLINK_ReadMemEx(0x0000991C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000991C) - Data: 8B FA 01 B0 F0 BD C0 46 04 A0 00 50 00 00 F8 FF ...  returns 0x3C (0000ms, 0778ms total)
T544C 007:182 JLINK_ReadMemEx(0x0000991C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000991C) - Data: 8B FA  returns 0x02 (0001ms, 0779ms total)
T544C 007:183 JLINK_ReadMemEx(0x0000991E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000991E) - Data: 01 B0  returns 0x02 (0000ms, 0779ms total)
T544C 007:183 JLINK_ReadMemEx(0x00009920, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009920) - Data: F0 BD C0 46 04 A0 00 50 00 00 F8 FF 94 A0 00 50 ...  returns 0x3C (0000ms, 0779ms total)
T544C 007:183 JLINK_ReadMemEx(0x00009920, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009920) - Data: F0 BD  returns 0x02 (0000ms, 0779ms total)
T544C 007:183 JLINK_ReadMemEx(0x00009920, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009920) - Data: F0 BD C0 46 04 A0 00 50 00 00 F8 FF 94 A0 00 50 ...  returns 0x3C (0000ms, 0779ms total)
T544C 007:183 JLINK_ReadMemEx(0x00009920, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009920) - Data: F0 BD  returns 0x02 (0000ms, 0779ms total)
T544C 007:183 JLINK_ReadMemEx(0x00009922, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009922) - Data: C0 46  returns 0x02 (0000ms, 0779ms total)
T544C 007:183 JLINK_ReadMemEx(0x00009922, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009922) - Data: C0 46  returns 0x02 (0000ms, 0779ms total)
T544C 007:183 JLINK_ReadMemEx(0x00009924, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009924) - Data: 04 A0 00 50 00 00 F8 FF 94 A0 00 50 34 A1 00 50 ...  returns 0x3C (0000ms, 0779ms total)
T544C 007:183 JLINK_ReadMemEx(0x00009924, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009924) - Data: 04 A0  returns 0x02 (0000ms, 0779ms total)
T544C 007:183 JLINK_ReadMemEx(0x00009974, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00009980) -- Updating C cache (64 bytes @ 0x00009980) -- Read from C cache (60 bytes @ 0x00009974) - Data: 70 B5 18 20 01 F0 E0 F8 19 20 01 F0 DD F8 06 24 ...  returns 0x3C (0002ms, 0781ms total)
T544C 007:185 JLINK_ReadMemEx(0x00009974, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009974) - Data: 70 B5  returns 0x02 (0000ms, 0781ms total)
T544C 007:185 JLINK_ReadMemEx(0x00009976, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009976) - Data: 18 20  returns 0x02 (0000ms, 0781ms total)
T544C 007:185 JLINK_ReadMemEx(0x00009976, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009976) - Data: 18 20  returns 0x02 (0000ms, 0781ms total)
T544C 007:185 JLINK_ReadMemEx(0x00009978, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009978) - Data: 01 F0 E0 F8 19 20 01 F0 DD F8 06 24 20 46 01 F0 ...  returns 0x3C (0001ms, 0782ms total)
T544C 007:186 JLINK_ReadMemEx(0x00009978, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009978) - Data: 01 F0  returns 0x02 (0000ms, 0782ms total)
T544C 007:186 JLINK_ReadMemEx(0x00009978, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009978) - Data: 01 F0 E0 F8 19 20 01 F0 DD F8 06 24 20 46 01 F0 ...  returns 0x3C (0000ms, 0782ms total)
T544C 007:186 JLINK_ReadMemEx(0x00009978, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009978) - Data: 01 F0  returns 0x02 (0000ms, 0782ms total)
T544C 007:186 JLINK_ReadMemEx(0x0000997A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000997A) - Data: E0 F8  returns 0x02 (0000ms, 0782ms total)
T544C 007:186 JLINK_ReadMemEx(0x0000997C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000997C) - Data: 19 20 01 F0 DD F8 06 24 20 46 01 F0 D9 F8 20 46 ...  returns 0x3C (0000ms, 0782ms total)
T544C 007:186 JLINK_ReadMemEx(0x0000997C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000997C) - Data: 19 20  returns 0x02 (0000ms, 0782ms total)
T544C 007:186 JLINK_ReadMemEx(0x0000997E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000997E) - Data: 01 F0  returns 0x02 (0000ms, 0782ms total)
T544C 007:186 JLINK_ReadMemEx(0x0000997E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000997E) - Data: 01 F0  returns 0x02 (0000ms, 0782ms total)
T544C 007:186 JLINK_ReadMemEx(0x00009980, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009980) - Data: DD F8 06 24 20 46 01 F0 D9 F8 20 46 FD F7 DC FE ...  returns 0x3C (0000ms, 0782ms total)
T544C 007:186 JLINK_ReadMemEx(0x00009980, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009980) - Data: DD F8  returns 0x02 (0000ms, 0782ms total)
T544C 007:186 JLINK_ReadMemEx(0x00009982, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009982) - Data: 06 24  returns 0x02 (0000ms, 0782ms total)
T544C 007:186 JLINK_ReadMemEx(0x00009984, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009984) - Data: 20 46 01 F0 D9 F8 20 46 FD F7 DC FE 0F 4C 00 25 ...  returns 0x3C (0000ms, 0782ms total)
T544C 007:186 JLINK_ReadMemEx(0x00009984, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009984) - Data: 20 46  returns 0x02 (0000ms, 0782ms total)
T544C 007:186 JLINK_ReadMemEx(0x00009984, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009984) - Data: 20 46 01 F0 D9 F8 20 46 FD F7 DC FE 0F 4C 00 25 ...  returns 0x3C (0001ms, 0783ms total)
T544C 007:187 JLINK_ReadMemEx(0x00009984, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009984) - Data: 20 46  returns 0x02 (0000ms, 0783ms total)
T544C 007:187 JLINK_ReadMemEx(0x00009986, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009986) - Data: 01 F0  returns 0x02 (0000ms, 0783ms total)
T544C 007:187 JLINK_ReadMemEx(0x00009986, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009986) - Data: 01 F0  returns 0x02 (0000ms, 0783ms total)
T544C 007:187 JLINK_ReadMemEx(0x00009988, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x000099C0) -- Updating C cache (64 bytes @ 0x000099C0) -- Read from C cache (60 bytes @ 0x00009988) - Data: D9 F8 20 46 FD F7 DC FE 0F 4C 00 25 25 70 65 70 ...  returns 0x3C (0001ms, 0784ms total)
T544C 007:188 JLINK_ReadMemEx(0x00009988, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009988) - Data: D9 F8  returns 0x02 (0000ms, 0784ms total)
T544C 007:188 JLINK_ReadMemEx(0x0000998A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000998A) - Data: 20 46  returns 0x02 (0000ms, 0784ms total)
T544C 007:188 JLINK_ReadMemEx(0x0000998C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000998C) - Data: FD F7 DC FE 0F 4C 00 25 25 70 65 70 A5 71 25 71 ...  returns 0x3C (0000ms, 0784ms total)
T544C 007:188 JLINK_ReadMemEx(0x0000998C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000998C) - Data: FD F7  returns 0x02 (0000ms, 0784ms total)
T544C 007:188 JLINK_ReadMemEx(0x0000998C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000998C) - Data: FD F7 DC FE 0F 4C 00 25 25 70 65 70 A5 71 25 71 ...  returns 0x3C (0000ms, 0784ms total)
T544C 007:188 JLINK_ReadMemEx(0x0000998C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000998C) - Data: FD F7  returns 0x02 (0000ms, 0784ms total)
T544C 007:188 JLINK_ReadMemEx(0x0000998E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000998E) - Data: DC FE  returns 0x02 (0000ms, 0784ms total)
T544C 007:188 JLINK_ReadMemEx(0x00009990, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009990) - Data: 0F 4C 00 25 25 70 65 70 A5 71 25 71 A5 70 65 71 ...  returns 0x3C (0001ms, 0785ms total)
T544C 007:189 JLINK_ReadMemEx(0x00009990, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009990) - Data: 0F 4C  returns 0x02 (0000ms, 0785ms total)
T544C 007:189 JLINK_ReadMemEx(0x00009992, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009992) - Data: 00 25  returns 0x02 (0000ms, 0785ms total)
T544C 007:189 JLINK_ReadMemEx(0x00009992, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009992) - Data: 00 25  returns 0x02 (0000ms, 0785ms total)
T544C 007:189 JLINK_ReadMemEx(0x00009994, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009994) - Data: 25 70 65 70 A5 71 25 71 A5 70 65 71 E5 70 60 7B ...  returns 0x3C (0000ms, 0785ms total)
T544C 007:189 JLINK_ReadMemEx(0x00009994, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009994) - Data: 25 70  returns 0x02 (0000ms, 0785ms total)
T544C 007:189 JLINK_ReadMemEx(0x00009994, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009994) - Data: 25 70 65 70 A5 71 25 71 A5 70 65 71 E5 70 60 7B ...  returns 0x3C (0000ms, 0785ms total)
T544C 007:189 JLINK_ReadMemEx(0x00009994, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009994) - Data: 25 70  returns 0x02 (0000ms, 0785ms total)
T544C 007:189 JLINK_ReadMemEx(0x00009996, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009996) - Data: 65 70  returns 0x02 (0000ms, 0785ms total)
T544C 007:189 JLINK_ReadMemEx(0x00009996, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009996) - Data: 65 70  returns 0x02 (0000ms, 0785ms total)
T544C 007:189 JLINK_ReadMemEx(0x00009998, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009998) - Data: A5 71 25 71 A5 70 65 71 E5 70 60 7B 14 21 41 43 ...  returns 0x3C (0000ms, 0785ms total)
T544C 007:189 JLINK_ReadMemEx(0x00009998, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009998) - Data: A5 71  returns 0x02 (0000ms, 0785ms total)
T544C 007:189 JLINK_ReadMemEx(0x00009998, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009998) - Data: A5 71 25 71 A5 70 65 71 E5 70 60 7B 14 21 41 43 ...  returns 0x3C (0000ms, 0785ms total)
T544C 007:189 JLINK_ReadMemEx(0x00009998, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009998) - Data: A5 71  returns 0x02 (0000ms, 0785ms total)
T544C 007:189 JLINK_ReadMemEx(0x0000999A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000999A) - Data: 25 71  returns 0x02 (0000ms, 0785ms total)
T544C 007:189 JLINK_ReadMemEx(0x0000999A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000999A) - Data: 25 71  returns 0x02 (0000ms, 0785ms total)
T544C 007:190 JLINK_ReadMemEx(0x0000999C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000999C) - Data: A5 70 65 71 E5 70 60 7B 14 21 41 43 20 7B 50 22 ...  returns 0x3C (0000ms, 0786ms total)
T544C 007:190 JLINK_ReadMemEx(0x0000999C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000999C) - Data: A5 70  returns 0x02 (0000ms, 0786ms total)
T544C 007:190 JLINK_ReadMemEx(0x0000999C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000999C) - Data: A5 70 65 71 E5 70 60 7B 14 21 41 43 20 7B 50 22 ...  returns 0x3C (0000ms, 0786ms total)
T544C 007:190 JLINK_ReadMemEx(0x0000999C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000999C) - Data: A5 70  returns 0x02 (0000ms, 0786ms total)
T544C 007:190 JLINK_ReadMemEx(0x0000999E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000999E) - Data: 65 71  returns 0x02 (0000ms, 0786ms total)
T544C 007:190 JLINK_ReadMemEx(0x0000999E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000999E) - Data: 65 71  returns 0x02 (0000ms, 0786ms total)
T544C 007:190 JLINK_ReadMemEx(0x000099A0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000099A0) - Data: E5 70 60 7B 14 21 41 43 20 7B 50 22 42 43 E3 7A ...  returns 0x3C (0000ms, 0786ms total)
T544C 007:190 JLINK_ReadMemEx(0x000099A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099A0) - Data: E5 70  returns 0x02 (0000ms, 0786ms total)
T544C 007:190 JLINK_ReadMemEx(0x000099A0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000099A0) - Data: E5 70 60 7B 14 21 41 43 20 7B 50 22 42 43 E3 7A ...  returns 0x3C (0000ms, 0786ms total)
T544C 007:190 JLINK_ReadMemEx(0x000099A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099A0) - Data: E5 70  returns 0x02 (0000ms, 0786ms total)
T544C 007:190 JLINK_ReadMemEx(0x000099A2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099A2) - Data: 60 7B  returns 0x02 (0000ms, 0786ms total)
T544C 007:190 JLINK_ReadMemEx(0x000099A2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099A2) - Data: 60 7B  returns 0x02 (0000ms, 0786ms total)
T544C 007:190 JLINK_ReadMemEx(0x000099A4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000099A4) - Data: 14 21 41 43 20 7B 50 22 42 43 E3 7A 1E 01 92 19 ...  returns 0x3C (0000ms, 0786ms total)
T544C 007:190 JLINK_ReadMemEx(0x000099A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099A4) - Data: 14 21  returns 0x02 (0000ms, 0786ms total)
T544C 007:190 JLINK_ReadMemEx(0x000099A4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000099A4) - Data: 14 21 41 43 20 7B 50 22 42 43 E3 7A 1E 01 92 19 ...  returns 0x3C (0000ms, 0786ms total)
T544C 007:190 JLINK_ReadMemEx(0x000099A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099A4) - Data: 14 21  returns 0x02 (0000ms, 0786ms total)
T544C 007:190 JLINK_ReadMemEx(0x000099A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099A6) - Data: 41 43  returns 0x02 (0000ms, 0786ms total)
T544C 007:190 JLINK_ReadMemEx(0x000099A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099A6) - Data: 41 43  returns 0x02 (0000ms, 0786ms total)
T544C 007:190 JLINK_ReadMemEx(0x000099A8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000099A8) - Data: 20 7B 50 22 42 43 E3 7A 1E 01 92 19 51 18 C0 18 ...  returns 0x3C (0000ms, 0786ms total)
T544C 007:192 JLINK_ReadMemEx(0x000099A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099A8) - Data: 20 7B  returns 0x02 (0000ms, 0788ms total)
T544C 007:192 JLINK_ReadMemEx(0x000099A8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000099A8) - Data: 20 7B 50 22 42 43 E3 7A 1E 01 92 19 51 18 C0 18 ...  returns 0x3C (0000ms, 0788ms total)
T544C 007:192 JLINK_ReadMemEx(0x000099A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099A8) - Data: 20 7B  returns 0x02 (0000ms, 0788ms total)
T544C 007:192 JLINK_ReadMemEx(0x000099AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099AA) - Data: 50 22  returns 0x02 (0000ms, 0788ms total)
T544C 007:192 JLINK_ReadMemEx(0x000099AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099AA) - Data: 50 22  returns 0x02 (0000ms, 0788ms total)
T544C 007:192 JLINK_ReadMemEx(0x000099AC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000099AC) - Data: 42 43 E3 7A 1E 01 92 19 51 18 C0 18 1C 22 42 43 ...  returns 0x3C (0000ms, 0788ms total)
T544C 007:192 JLINK_ReadMemEx(0x000099AC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099AC) - Data: 42 43  returns 0x02 (0000ms, 0788ms total)
T544C 007:192 JLINK_ReadMemEx(0x000099AC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000099AC) - Data: 42 43 E3 7A 1E 01 92 19 51 18 C0 18 1C 22 42 43 ...  returns 0x3C (0000ms, 0788ms total)
T544C 007:192 JLINK_ReadMemEx(0x000099AC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099AC) - Data: 42 43  returns 0x02 (0000ms, 0788ms total)
T544C 007:192 JLINK_ReadMemEx(0x000099AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099AE) - Data: E3 7A  returns 0x02 (0000ms, 0788ms total)
T544C 007:192 JLINK_ReadMemEx(0x000099AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099AE) - Data: E3 7A  returns 0x02 (0000ms, 0788ms total)
T544C 007:192 JLINK_ReadMemEx(0x000099B0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000099B0) - Data: 1E 01 92 19 51 18 C0 18 1C 22 42 43 89 18 41 20 ...  returns 0x3C (0000ms, 0788ms total)
T544C 007:192 JLINK_ReadMemEx(0x000099B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099B0) - Data: 1E 01  returns 0x02 (0000ms, 0788ms total)
T544C 007:192 JLINK_ReadMemEx(0x000099B0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000099B0) - Data: 1E 01 92 19 51 18 C0 18 1C 22 42 43 89 18 41 20 ...  returns 0x3C (0000ms, 0788ms total)
T544C 007:192 JLINK_ReadMemEx(0x000099B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099B0) - Data: 1E 01  returns 0x02 (0001ms, 0789ms total)
T544C 007:193 JLINK_ReadMemEx(0x000099B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099B2) - Data: 92 19  returns 0x02 (0000ms, 0789ms total)
T544C 007:193 JLINK_ReadMemEx(0x000099B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099B2) - Data: 92 19  returns 0x02 (0000ms, 0789ms total)
T544C 007:193 JLINK_ReadMemEx(0x000099B4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000099B4) - Data: 51 18 C0 18 1C 22 42 43 89 18 41 20 C0 04 F6 F7 ...  returns 0x3C (0000ms, 0789ms total)
T544C 007:193 JLINK_ReadMemEx(0x000099B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099B4) - Data: 51 18  returns 0x02 (0000ms, 0789ms total)
T544C 007:193 JLINK_ReadMemEx(0x000099B4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000099B4) - Data: 51 18 C0 18 1C 22 42 43 89 18 41 20 C0 04 F6 F7 ...  returns 0x3C (0000ms, 0789ms total)
T544C 007:193 JLINK_ReadMemEx(0x000099B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099B4) - Data: 51 18  returns 0x02 (0000ms, 0789ms total)
T544C 007:193 JLINK_ReadMemEx(0x000099B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099B6) - Data: C0 18  returns 0x02 (0000ms, 0789ms total)
T544C 007:193 JLINK_ReadMemEx(0x000099B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099B6) - Data: C0 18  returns 0x02 (0000ms, 0789ms total)
T544C 007:193 JLINK_ReadMemEx(0x000099B8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000099B8) - Data: 1C 22 42 43 89 18 41 20 C0 04 F6 F7 CA FB E5 71 ...  returns 0x3C (0000ms, 0789ms total)
T544C 007:193 JLINK_ReadMemEx(0x000099B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099B8) - Data: 1C 22  returns 0x02 (0000ms, 0789ms total)
T544C 007:194 JLINK_ReadMemEx(0x000099B8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000099B8) - Data: 1C 22 42 43 89 18 41 20 C0 04 F6 F7 CA FB E5 71 ...  returns 0x3C (0000ms, 0790ms total)
T544C 007:194 JLINK_ReadMemEx(0x000099B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099B8) - Data: 1C 22  returns 0x02 (0000ms, 0790ms total)
T544C 007:194 JLINK_ReadMemEx(0x000099BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099BA) - Data: 42 43  returns 0x02 (0000ms, 0790ms total)
T544C 007:194 JLINK_ReadMemEx(0x000099BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099BA) - Data: 42 43  returns 0x02 (0000ms, 0790ms total)
T544C 007:194 JLINK_ReadMemEx(0x000099BC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000099BC) - Data: 89 18 41 20 C0 04 F6 F7 CA FB E5 71 25 72 FF F7 ...  returns 0x3C (0000ms, 0790ms total)
T544C 007:194 JLINK_ReadMemEx(0x000099BC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099BC) - Data: 89 18  returns 0x02 (0000ms, 0790ms total)
T544C 007:194 JLINK_ReadMemEx(0x000099BC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000099BC) - Data: 89 18 41 20 C0 04 F6 F7 CA FB E5 71 25 72 FF F7 ...  returns 0x3C (0000ms, 0790ms total)
T544C 007:194 JLINK_ReadMemEx(0x000099BC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099BC) - Data: 89 18  returns 0x02 (0000ms, 0790ms total)
T544C 007:194 JLINK_ReadMemEx(0x000099BE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099BE) - Data: 41 20  returns 0x02 (0000ms, 0790ms total)
T544C 007:194 JLINK_ReadMemEx(0x000099BE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099BE) - Data: 41 20  returns 0x02 (0000ms, 0790ms total)
T544C 007:194 JLINK_ReadMemEx(0x000099C0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000099C0) - Data: C0 04 F6 F7 CA FB E5 71 25 72 FF F7 21 FF 70 BD ...  returns 0x3C (0000ms, 0790ms total)
T544C 007:194 JLINK_ReadMemEx(0x000099C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099C0) - Data: C0 04  returns 0x02 (0000ms, 0790ms total)
T544C 007:194 JLINK_ReadMemEx(0x000099C0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000099C0) - Data: C0 04 F6 F7 CA FB E5 71 25 72 FF F7 21 FF 70 BD ...  returns 0x3C (0000ms, 0790ms total)
T544C 007:194 JLINK_ReadMemEx(0x000099C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099C0) - Data: C0 04  returns 0x02 (0001ms, 0791ms total)
T544C 007:195 JLINK_ReadMemEx(0x000099C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099C2) - Data: F6 F7  returns 0x02 (0000ms, 0791ms total)
T544C 007:195 JLINK_ReadMemEx(0x000099C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099C2) - Data: F6 F7  returns 0x02 (0000ms, 0791ms total)
T544C 007:195 JLINK_ReadMemEx(0x000099C4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000099C4) - Data: CA FB E5 71 25 72 FF F7 21 FF 70 BD EC C4 01 02 ...  returns 0x3C (0000ms, 0791ms total)
T544C 007:195 JLINK_ReadMemEx(0x000099C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099C4) - Data: CA FB  returns 0x02 (0000ms, 0791ms total)
T544C 007:195 JLINK_ReadMemEx(0x000099C6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099C6) - Data: E5 71  returns 0x02 (0000ms, 0791ms total)
T544C 007:195 JLINK_ReadMemEx(0x000099C8, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00009A00) -- Updating C cache (64 bytes @ 0x00009A00) -- Read from C cache (60 bytes @ 0x000099C8) - Data: 25 72 FF F7 21 FF 70 BD EC C4 01 02 80 B5 01 20 ...  returns 0x3C (0001ms, 0792ms total)
T544C 007:196 JLINK_ReadMemEx(0x000099C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099C8) - Data: 25 72  returns 0x02 (0001ms, 0793ms total)
T544C 007:197 JLINK_ReadMemEx(0x000099C8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000099C8) - Data: 25 72 FF F7 21 FF 70 BD EC C4 01 02 80 B5 01 20 ...  returns 0x3C (0000ms, 0793ms total)
T544C 007:197 JLINK_ReadMemEx(0x000099C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099C8) - Data: 25 72  returns 0x02 (0000ms, 0793ms total)
T544C 007:197 JLINK_ReadMemEx(0x000099CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099CA) - Data: FF F7  returns 0x02 (0000ms, 0793ms total)
T544C 007:197 JLINK_ReadMemEx(0x000099CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099CA) - Data: FF F7  returns 0x02 (0000ms, 0793ms total)
T544C 007:197 JLINK_ReadMemEx(0x000099CC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000099CC) - Data: 21 FF 70 BD EC C4 01 02 80 B5 01 20 FE F7 0A F9 ...  returns 0x3C (0000ms, 0793ms total)
T544C 007:197 JLINK_ReadMemEx(0x000099CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099CC) - Data: 21 FF  returns 0x02 (0000ms, 0793ms total)
T544C 007:197 JLINK_ReadMemEx(0x000099CE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099CE) - Data: 70 BD  returns 0x02 (0000ms, 0793ms total)
T544C 007:197 JLINK_ReadMemEx(0x000099D0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000099D0) - Data: EC C4 01 02 80 B5 01 20 FE F7 0A F9 80 BD 00 00 ...  returns 0x3C (0000ms, 0793ms total)
T544C 007:197 JLINK_ReadMemEx(0x000099D0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099D0) - Data: EC C4  returns 0x02 (0000ms, 0793ms total)
T544C 007:197 JLINK_ReadMemEx(0x000099D4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000099D4) - Data: 80 B5 01 20 FE F7 0A F9 80 BD 00 00 01 68 04 4A ...  returns 0x3C (0000ms, 0793ms total)
T544C 007:197 JLINK_ReadMemEx(0x000099D4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099D4) - Data: 80 B5  returns 0x02 (0000ms, 0793ms total)
T544C 007:197 JLINK_ReadMemEx(0x000099D6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099D6) - Data: 01 20  returns 0x02 (0000ms, 0793ms total)
T544C 007:197 JLINK_ReadMemEx(0x000099D6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099D6) - Data: 01 20  returns 0x02 (0000ms, 0793ms total)
T544C 007:197 JLINK_ReadMemEx(0x000099D8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000099D8) - Data: FE F7 0A F9 80 BD 00 00 01 68 04 4A 11 60 41 68 ...  returns 0x3C (0000ms, 0793ms total)
T544C 007:197 JLINK_ReadMemEx(0x000099D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099D8) - Data: FE F7  returns 0x02 (0000ms, 0793ms total)
T544C 007:197 JLINK_ReadMemEx(0x000099D8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000099D8) - Data: FE F7 0A F9 80 BD 00 00 01 68 04 4A 11 60 41 68 ...  returns 0x3C (0000ms, 0793ms total)
T544C 007:197 JLINK_ReadMemEx(0x000099D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099D8) - Data: FE F7  returns 0x02 (0000ms, 0793ms total)
T544C 007:197 JLINK_ReadMemEx(0x000099DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099DA) - Data: 0A F9  returns 0x02 (0000ms, 0793ms total)
T544C 007:197 JLINK_ReadMemEx(0x000099DC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000099DC) - Data: 80 BD 00 00 01 68 04 4A 11 60 41 68 51 60 81 68 ...  returns 0x3C (0000ms, 0793ms total)
T544C 007:198 JLINK_ReadMemEx(0x000099DC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099DC) - Data: 80 BD  returns 0x02 (0000ms, 0794ms total)
T544C 007:198 JLINK_ReadMemEx(0x000099DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099DE) - Data: 00 00  returns 0x02 (0000ms, 0794ms total)
T544C 007:198 JLINK_ReadMemEx(0x000099DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099DE) - Data: 00 00  returns 0x02 (0000ms, 0794ms total)
T544C 007:198 JLINK_ReadMemEx(0x000099E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000099E0) - Data: 01 68 04 4A 11 60 41 68 51 60 81 68 91 60 C0 68 ...  returns 0x3C (0000ms, 0794ms total)
T544C 007:198 JLINK_ReadMemEx(0x000099E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099E0) - Data: 01 68  returns 0x02 (0000ms, 0794ms total)
T544C 007:198 JLINK_ReadMemEx(0x000099E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000099E0) - Data: 01 68 04 4A 11 60 41 68 51 60 81 68 91 60 C0 68 ...  returns 0x3C (0000ms, 0794ms total)
T544C 007:198 JLINK_ReadMemEx(0x000099E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099E0) - Data: 01 68  returns 0x02 (0000ms, 0794ms total)
T544C 007:198 JLINK_ReadMemEx(0x000099E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099E2) - Data: 04 4A  returns 0x02 (0000ms, 0794ms total)
T544C 007:198 JLINK_ReadMemEx(0x000099E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099E2) - Data: 04 4A  returns 0x02 (0000ms, 0794ms total)
T544C 007:198 JLINK_ReadMemEx(0x000099E4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000099E4) - Data: 11 60 41 68 51 60 81 68 91 60 C0 68 D0 60 70 47 ...  returns 0x3C (0000ms, 0794ms total)
T544C 007:198 JLINK_ReadMemEx(0x000099E4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099E4) - Data: 11 60  returns 0x02 (0000ms, 0794ms total)
T544C 007:198 JLINK_ReadMemEx(0x000099E4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000099E4) - Data: 11 60 41 68 51 60 81 68 91 60 C0 68 D0 60 70 47 ...  returns 0x3C (0000ms, 0794ms total)
T544C 007:198 JLINK_ReadMemEx(0x000099E4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099E4) - Data: 11 60  returns 0x02 (0000ms, 0794ms total)
T544C 007:198 JLINK_ReadMemEx(0x000099E6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099E6) - Data: 41 68  returns 0x02 (0000ms, 0794ms total)
T544C 007:198 JLINK_ReadMemEx(0x000099E6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099E6) - Data: 41 68  returns 0x02 (0000ms, 0794ms total)
T544C 007:198 JLINK_ReadMemEx(0x000099E8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000099E8) - Data: 51 60 81 68 91 60 C0 68 D0 60 70 47 80 A0 00 50 ...  returns 0x3C (0000ms, 0794ms total)
T544C 007:198 JLINK_ReadMemEx(0x000099E8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099E8) - Data: 51 60  returns 0x02 (0000ms, 0794ms total)
T544C 007:198 JLINK_ReadMemEx(0x000099E8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000099E8) - Data: 51 60 81 68 91 60 C0 68 D0 60 70 47 80 A0 00 50 ...  returns 0x3C (0000ms, 0794ms total)
T544C 007:198 JLINK_ReadMemEx(0x000099E8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099E8) - Data: 51 60  returns 0x02 (0000ms, 0794ms total)
T544C 007:198 JLINK_ReadMemEx(0x000099EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099EA) - Data: 81 68  returns 0x02 (0002ms, 0796ms total)
T544C 007:200 JLINK_ReadMemEx(0x000099EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099EA) - Data: 81 68  returns 0x02 (0000ms, 0796ms total)
T544C 007:200 JLINK_ReadMemEx(0x000099EC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000099EC) - Data: 91 60 C0 68 D0 60 70 47 80 A0 00 50 82 B0 FD F7 ...  returns 0x3C (0000ms, 0796ms total)
T544C 007:200 JLINK_ReadMemEx(0x000099EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099EC) - Data: 91 60  returns 0x02 (0000ms, 0796ms total)
T544C 007:200 JLINK_ReadMemEx(0x000099EC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000099EC) - Data: 91 60 C0 68 D0 60 70 47 80 A0 00 50 82 B0 FD F7 ...  returns 0x3C (0000ms, 0796ms total)
T544C 007:200 JLINK_ReadMemEx(0x000099EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099EC) - Data: 91 60  returns 0x02 (0000ms, 0796ms total)
T544C 007:200 JLINK_ReadMemEx(0x000099EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099EE) - Data: C0 68  returns 0x02 (0000ms, 0796ms total)
T544C 007:200 JLINK_ReadMemEx(0x000099EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099EE) - Data: C0 68  returns 0x02 (0000ms, 0796ms total)
T544C 007:200 JLINK_ReadMemEx(0x000099F0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000099F0) - Data: D0 60 70 47 80 A0 00 50 82 B0 FD F7 AB FB 05 20 ...  returns 0x3C (0000ms, 0796ms total)
T544C 007:200 JLINK_ReadMemEx(0x000099F0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099F0) - Data: D0 60  returns 0x02 (0000ms, 0796ms total)
T544C 007:200 JLINK_ReadMemEx(0x000099F0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000099F0) - Data: D0 60 70 47 80 A0 00 50 82 B0 FD F7 AB FB 05 20 ...  returns 0x3C (0000ms, 0796ms total)
T544C 007:200 JLINK_ReadMemEx(0x000099F0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099F0) - Data: D0 60  returns 0x02 (0000ms, 0796ms total)
T544C 007:200 JLINK_ReadMemEx(0x000099F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099F2) - Data: 70 47  returns 0x02 (0000ms, 0796ms total)
T544C 007:200 JLINK_ReadMemEx(0x000099F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099F2) - Data: 70 47  returns 0x02 (0000ms, 0796ms total)
T544C 007:200 JLINK_ReadMemEx(0x000099F4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000099F4) - Data: 80 A0 00 50 82 B0 FD F7 AB FB 05 20 00 25 29 46 ...  returns 0x3C (0000ms, 0796ms total)
T544C 007:200 JLINK_ReadMemEx(0x000099F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099F4) - Data: 80 A0  returns 0x02 (0001ms, 0797ms total)
T544C 007:201 JLINK_ReadMemEx(0x000099F6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099F6) - Data: 00 50  returns 0x02 (0000ms, 0797ms total)
T544C 007:201 JLINK_ReadMemEx(0x000099F8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000099F8) - Data: 82 B0 FD F7 AB FB 05 20 00 25 29 46 FF F7 B6 FE ...  returns 0x3C (0000ms, 0797ms total)
T544C 007:201 JLINK_ReadMemEx(0x000099F8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099F8) - Data: 82 B0  returns 0x02 (0000ms, 0797ms total)
T544C 007:201 JLINK_ReadMemEx(0x000099F8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000099F8) - Data: 82 B0 FD F7 AB FB 05 20 00 25 29 46 FF F7 B6 FE ...  returns 0x3C (0000ms, 0797ms total)
T544C 007:201 JLINK_ReadMemEx(0x000099F8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099F8) - Data: 82 B0  returns 0x02 (0000ms, 0797ms total)
T544C 007:201 JLINK_ReadMemEx(0x000099FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099FA) - Data: FD F7  returns 0x02 (0000ms, 0797ms total)
T544C 007:201 JLINK_ReadMemEx(0x000099FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099FA) - Data: FD F7  returns 0x02 (0000ms, 0797ms total)
T544C 007:201 JLINK_ReadMemEx(0x000099FC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000099FC) - Data: AB FB 05 20 00 25 29 46 FF F7 B6 FE 06 20 29 46 ...  returns 0x3C (0000ms, 0797ms total)
T544C 007:201 JLINK_ReadMemEx(0x000099FC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099FC) - Data: AB FB  returns 0x02 (0000ms, 0797ms total)
T544C 007:201 JLINK_ReadMemEx(0x000099FE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099FE) - Data: 05 20  returns 0x02 (0000ms, 0797ms total)
T544C 007:201 JLINK_ReadMemEx(0x00009A00, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009A00) - Data: 00 25 29 46 FF F7 B6 FE 06 20 29 46 FF F7 B2 FE ...  returns 0x3C (0000ms, 0797ms total)
T544C 007:201 JLINK_ReadMemEx(0x00009A00, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009A00) - Data: 00 25  returns 0x02 (0000ms, 0797ms total)
T544C 009:419 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 0797ms total)
T544C 009:419 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) (0077ms, 0874ms total)
T544C 009:497 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0874ms total)
T544C 009:497 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0874ms total)
T544C 009:500 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, 0875ms total)
T544C 009:501 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0001ms, 0876ms total)
T544C 009:502 JLINK_ReadMemEx(0x0300373A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373A) - Data: 4E F8  returns 0x02 (0001ms, 0877ms total)
T544C 009:503 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 (0002ms, 0879ms total)
T544C 009:505 JLINK_ReadMemEx(0x0300373C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373C) - Data: FC F7  returns 0x02 (0001ms, 0880ms total)
T544C 009:506 JLINK_ReadMemEx(0x0300373E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373E) - Data: C0 FC  returns 0x02 (0001ms, 0881ms total)
T544C 009:507 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, 0882ms total)
T544C 009:508 JLINK_ReadMemEx(0x03003740, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003740) - Data: 80 B5  returns 0x02 (0001ms, 0883ms total)
T544C 009:509 JLINK_ReadMemEx(0x03003742, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003742) - Data: 0D 49  returns 0x02 (0001ms, 0884ms total)
T544C 009:511 JLINK_ReadMemEx(0x03003742, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003742) - Data: 0D 49  returns 0x02 (0000ms, 0884ms total)
T544C 009:511 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 (0002ms, 0886ms total)
T544C 009:513 JLINK_ReadMemEx(0x03003744, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003744) - Data: 08 68  returns 0x02 (0001ms, 0887ms total)
T544C 009:514 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, 0888ms total)
T544C 009:515 JLINK_ReadMemEx(0x03003744, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003744) - Data: 08 68  returns 0x02 (0002ms, 0890ms total)
T544C 009:517 JLINK_ReadMemEx(0x03003746, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003746) - Data: 00 28  returns 0x02 (0001ms, 0891ms total)
T544C 009:518 JLINK_ReadMemEx(0x03003746, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003746) - Data: 00 28  returns 0x02 (0001ms, 0892ms total)
T544C 009:519 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, 0893ms total)
T544C 009:520 JLINK_ReadMemEx(0x03003748, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003748) - Data: 00 D4  returns 0x02 (0001ms, 0894ms total)
T544C 009:521 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 (0002ms, 0896ms total)
T544C 009:523 JLINK_ReadMemEx(0x03003748, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003748) - Data: 00 D4  returns 0x02 (0001ms, 0897ms total)
T544C 009:524 JLINK_ReadMemEx(0x0300374A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300374A) - Data: 80 BD  returns 0x02 (0001ms, 0898ms total)
T544C 009:648 JLINK_ReadReg(R0)  returns 0x000099F9 (0000ms, 0898ms total)
T544C 009:648 JLINK_ReadReg(R1)  returns 0x0201CD70 (0000ms, 0898ms total)
T544C 009:648 JLINK_ReadReg(R2)  returns 0x00000000 (0000ms, 0898ms total)
T544C 009:648 JLINK_ReadReg(R3)  returns 0x0000D205 (0000ms, 0898ms total)
T544C 009:648 JLINK_ReadReg(R4)  returns 0x0000F25C (0000ms, 0898ms total)
T544C 009:649 JLINK_ReadReg(R5)  returns 0x00000001 (0000ms, 0899ms total)
T544C 009:649 JLINK_ReadReg(R6)  returns 0x0000F25C (0000ms, 0899ms total)
T544C 009:649 JLINK_ReadReg(R7)  returns 0x02000000 (0000ms, 0899ms total)
T544C 009:649 JLINK_ReadReg(R8)  returns 0xFFFDDBF7 (0000ms, 0899ms total)
T544C 009:649 JLINK_ReadReg(R9)  returns 0x3D7E17EC (0000ms, 0899ms total)
T544C 009:649 JLINK_ReadReg(R10)  returns 0x7EFBF7FF (0000ms, 0899ms total)
T544C 009:649 JLINK_ReadReg(R11)  returns 0xFDBFF7FE (0000ms, 0899ms total)
T544C 009:649 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 0899ms total)
T544C 009:649 JLINK_ReadReg(R13 (SP))  returns 0x0202F800 (0000ms, 0899ms total)
T544C 009:649 JLINK_ReadReg(R14)  returns 0x00000CB5 (0000ms, 0899ms total)
T544C 009:649 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0899ms total)
T544C 009:649 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0899ms total)
T544C 009:649 JLINK_ReadReg(MSP)  returns 0x0202F800 (0000ms, 0899ms total)
T544C 009:649 JLINK_ReadReg(PSP)  returns 0xBBFFFE98 (0000ms, 0899ms total)
T544C 009:649 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0899ms total)
T544C 009:649 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0901ms total)
T544C 009:651 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 00  returns 0x01 (0001ms, 0902ms total)
T544C 009:676 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 0903ms total)
T544C 009:677 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 00  returns 0x01 (0001ms, 0904ms total)
T544C 009:678 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0001ms, 0905ms total)
T544C 009:679 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 00  returns 0x01 (0001ms, 0906ms total)
T544C 009:680 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 00  returns 0x01 (0002ms, 0908ms total)
T544C 009:682 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 0909ms total)
T544C 009:683 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0000ms, 0909ms total)
T544C 009:683 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0910ms total)
T544C 009:685 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 00 00 00 00  returns 0x04 (0001ms, 0911ms total)
T544C 009:687 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 0912ms total)
T544C 009:688 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 0913ms total)
T544C 009:689 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 00  returns 0x01 (0001ms, 0914ms total)
T544C 009:690 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 0915ms total)
T544C 009:691 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 0916ms total)
T544C 009:692 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 0917ms total)
T544C 009:693 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0918ms total)
T544C 009:694 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 00  returns 0x01 (0001ms, 0919ms total)
T544C 009:695 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0002ms, 0921ms total)
T544C 009:697 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 0922ms total)
T544C 009:698 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 0923ms total)
T544C 009:699 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 0924ms total)
T544C 009:700 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 0925ms total)
T544C 009:701 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 0926ms total)
T544C 009:702 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 00 00 00 00  returns 0x04 (0001ms, 0927ms total)
T544C 009:703 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 00 00 00 00  returns 0x04 (0001ms, 0928ms total)
T544C 009:704 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 00 00 00 00  returns 0x04 (0001ms, 0929ms total)
T544C 009:705 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 00  returns 0x01 (0001ms, 0930ms total)
T544C 009:706 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 00  returns 0x01 (0001ms, 0931ms total)
T544C 009:707 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0002ms, 0933ms total)
T544C 009:709 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0934ms total)
T544C 009:710 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0001ms, 0935ms total)
T544C 009:711 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 00 00  returns 0x04 (0001ms, 0936ms total)
T544C 009:712 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 00  returns 0x01 (0001ms, 0937ms total)
T544C 009:713 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 00 00  returns 0x02 (0001ms, 0938ms total)
T544C 009:714 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 00 00  returns 0x02 (0001ms, 0939ms total)
T544C 009:715 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 00 00  returns 0x02 (0001ms, 0940ms total)
T544C 009:716 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 0941ms total)
T544C 009:717 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 0942ms total)
T544C 009:718 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 00  returns 0x01 (0001ms, 0943ms total)
T544C 009:719 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: 00  returns 0x01 (0001ms, 0944ms total)
T544C 009:720 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 00  returns 0x01 (0001ms, 0945ms total)
T544C 009:721 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 0946ms total)
T4018 010:027 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0002ms, 0948ms total)
T4018 010:029 JLINK_Go() -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU_WriteMem(4 bytes @ 0xE0002014) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0006ms, 0954ms total)
T4018 010:137 JLINK_IsHalted()  returns FALSE (0000ms, 0955ms total)
T4018 010:238 JLINK_IsHalted()  returns FALSE (0001ms, 0956ms total)
T4018 010:339 JLINK_IsHalted()  returns FALSE (0001ms, 0956ms total)
T4018 010:441 JLINK_IsHalted()  returns FALSE (0001ms, 0956ms total)
T4018 010:544 JLINK_IsHalted()  returns FALSE (0001ms, 0956ms total)
T544C 010:650 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0956ms total)
T544C 010:651 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 0957ms total)
T544C 010:679 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 0959ms total)
T544C 010:680 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 00  returns 0x01 (0001ms, 0960ms total)
T544C 010:681 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0001ms, 0961ms total)
T544C 010:682 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 0962ms total)
T544C 010:683 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 0963ms total)
T544C 010:684 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 0964ms total)
T544C 010:685 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0002ms, 0966ms total)
T544C 010:687 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0967ms total)
T544C 010:690 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 0968ms total)
T544C 010:691 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 0969ms total)
T544C 010:692 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 0970ms total)
T544C 010:693 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 0971ms total)
T544C 010:694 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 0972ms total)
T544C 010:695 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 0973ms total)
T544C 010:696 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 0974ms total)
T544C 010:697 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0975ms total)
T544C 010:698 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0001ms, 0976ms total)
T544C 010:700 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 0978ms total)
T544C 010:701 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 0979ms total)
T544C 010:702 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 0980ms total)
T544C 010:703 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 0981ms total)
T544C 010:704 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 0982ms total)
T544C 010:705 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 0983ms total)
T544C 010:706 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 0984ms total)
T544C 010:707 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 01 00 00 00  returns 0x04 (0001ms, 0985ms total)
T544C 010:708 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 01 00 00 00  returns 0x04 (0001ms, 0986ms total)
T544C 010:709 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 00  returns 0x01 (0001ms, 0987ms total)
T544C 010:710 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 0988ms total)
T544C 010:711 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 0989ms total)
T544C 010:712 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0990ms total)
T544C 010:713 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0002ms, 0992ms total)
T544C 010:715 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 80 3F  returns 0x04 (0001ms, 0993ms total)
T544C 010:716 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 0994ms total)
T544C 010:717 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 0995ms total)
T544C 010:718 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 0996ms total)
T544C 010:719 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 00 00  returns 0x02 (0001ms, 0997ms total)
T544C 010:720 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 0998ms total)
T544C 010:721 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 0999ms total)
T544C 010:722 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 1000ms total)
T544C 010:723 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 1001ms total)
T544C 010:724 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0001ms, 1002ms total)
T544C 010:725 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 1003ms total)
T4018 010:726 JLINK_IsHalted()  returns FALSE (0001ms, 1004ms total)
T4018 010:828 JLINK_IsHalted()  returns FALSE (0001ms, 1004ms total)
T4018 010:930 JLINK_IsHalted()  returns FALSE (0000ms, 1003ms total)
T4018 011:032 JLINK_IsHalted()  returns FALSE (0001ms, 1004ms total)
T4018 011:133 JLINK_IsHalted()  returns FALSE (0001ms, 1004ms total)
T544C 011:240 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1005ms total)
T544C 011:242 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1006ms total)
T544C 011:269 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0002ms, 1008ms total)
T544C 011:271 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 00  returns 0x01 (0001ms, 1009ms total)
T544C 011:272 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0001ms, 1010ms total)
T544C 011:273 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 1011ms total)
T544C 011:274 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1012ms total)
T544C 011:275 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 1013ms total)
T544C 011:276 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 1014ms total)
T544C 011:277 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1016ms total)
T544C 011:280 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 1017ms total)
T544C 011:281 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 1018ms total)
T544C 011:282 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 1019ms total)
T544C 011:283 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1020ms total)
T544C 011:284 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0002ms, 1022ms total)
T544C 011:286 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 1023ms total)
T544C 011:287 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 1024ms total)
T544C 011:288 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1025ms total)
T544C 011:289 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0001ms, 1026ms total)
T544C 011:290 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 1027ms total)
T544C 011:291 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 1028ms total)
T544C 011:292 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 1029ms total)
T544C 011:293 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 1030ms total)
T544C 011:294 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 1031ms total)
T544C 011:295 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 1032ms total)
T544C 011:296 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 1033ms total)
T544C 011:297 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 01 00 00 00  returns 0x04 (0002ms, 1035ms total)
T544C 011:299 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 01 00 00 00  returns 0x04 (0001ms, 1036ms total)
T544C 011:300 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 00  returns 0x01 (0002ms, 1038ms total)
T544C 011:302 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1039ms total)
T544C 011:303 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 1040ms total)
T544C 011:304 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1041ms total)
T544C 011:305 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0001ms, 1042ms total)
T544C 011:306 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 80 3F  returns 0x04 (0001ms, 1043ms total)
T544C 011:307 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 1044ms total)
T544C 011:308 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 1045ms total)
T544C 011:309 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 1046ms total)
T544C 011:310 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 00 00  returns 0x02 (0001ms, 1047ms total)
T544C 011:312 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 1048ms total)
T544C 011:313 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 1049ms total)
T544C 011:314 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0000ms, 1049ms total)
T544C 011:315 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0000ms, 1049ms total)
T544C 011:315 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0002ms, 1051ms total)
T544C 011:317 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 1052ms total)
T4018 011:318 JLINK_IsHalted()  returns FALSE (0001ms, 1053ms total)
T4018 011:420 JLINK_IsHalted()  returns FALSE (0000ms, 1052ms total)
T4018 011:522 JLINK_IsHalted()  returns FALSE (0001ms, 1053ms total)
T4018 011:624 JLINK_IsHalted()  returns FALSE (0000ms, 1052ms total)
T4018 011:725 JLINK_IsHalted()  returns FALSE (0001ms, 1053ms total)
T544C 011:833 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1053ms total)
T544C 011:834 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1054ms total)
T544C 011:858 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0002ms, 1056ms total)
T544C 011:860 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 00  returns 0x01 (0001ms, 1057ms total)
T544C 011:861 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0001ms, 1058ms total)
T544C 011:862 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 00  returns 0x01 (0001ms, 1059ms total)
T544C 011:863 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1060ms total)
T544C 011:864 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 1061ms total)
T544C 011:865 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 1062ms total)
T544C 011:866 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1064ms total)
T544C 011:869 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 1065ms total)
T544C 011:870 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 1066ms total)
T544C 011:871 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 1067ms total)
T544C 011:872 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1068ms total)
T544C 011:873 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 1069ms total)
T544C 011:874 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 1070ms total)
T544C 011:875 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 1071ms total)
T544C 011:876 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1072ms total)
T544C 011:877 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0001ms, 1073ms total)
T544C 011:878 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 1074ms total)
T544C 011:879 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0002ms, 1076ms total)
T544C 011:881 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 1077ms total)
T544C 011:882 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 1078ms total)
T544C 011:883 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 1079ms total)
T544C 011:884 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 1080ms total)
T544C 011:885 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 1081ms total)
T544C 011:886 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 02 00 00 00  returns 0x04 (0001ms, 1082ms total)
T544C 011:887 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 02 00 00 00  returns 0x04 (0001ms, 1083ms total)
T544C 011:888 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 00  returns 0x01 (0001ms, 1084ms total)
T544C 011:889 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1085ms total)
T544C 011:890 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 1086ms total)
T544C 011:891 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1087ms total)
T544C 011:892 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0001ms, 1088ms total)
T544C 011:893 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 00 40  returns 0x04 (0001ms, 1089ms total)
T544C 011:894 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 1090ms total)
T544C 011:895 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 1091ms total)
T544C 011:897 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 1092ms total)
T544C 011:898 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 00 00  returns 0x02 (0001ms, 1093ms total)
T544C 011:899 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 1094ms total)
T544C 011:900 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 1095ms total)
T544C 011:901 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 1096ms total)
T544C 011:902 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: 60  returns 0x01 (0001ms, 1097ms total)
T544C 011:903 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 00  returns 0x01 (0001ms, 1098ms total)
T544C 011:904 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 1099ms total)
T4018 011:905 JLINK_IsHalted()  returns FALSE (0001ms, 1100ms total)
T4018 012:007 JLINK_IsHalted()  returns FALSE (0001ms, 1100ms total)
T4018 012:108 JLINK_IsHalted()  returns FALSE (0001ms, 1100ms total)
T4018 012:210 JLINK_IsHalted()  returns FALSE (0001ms, 1100ms total)
T4018 012:312 JLINK_IsHalted()  returns FALSE (0001ms, 1100ms total)
T544C 012:417 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1100ms total)
T544C 012:419 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1102ms total)
T544C 012:446 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 1103ms total)
T544C 012:447 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 02  returns 0x01 (0001ms, 1104ms total)
T544C 012:448 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0001ms, 1105ms total)
T544C 012:449 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 00  returns 0x01 (0001ms, 1106ms total)
T544C 012:450 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1107ms total)
T544C 012:451 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 1108ms total)
T544C 012:452 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 1109ms total)
T544C 012:453 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1111ms total)
T544C 012:456 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 1112ms total)
T544C 012:457 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0000ms, 1112ms total)
T544C 012:457 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0002ms, 1114ms total)
T544C 012:459 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1115ms total)
T544C 012:460 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 1116ms total)
T544C 012:461 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0000ms, 1116ms total)
T544C 012:461 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0002ms, 1118ms total)
T544C 012:463 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1119ms total)
T544C 012:464 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0001ms, 1120ms total)
T544C 012:465 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 1121ms total)
T544C 012:466 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 1122ms total)
T544C 012:467 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 1123ms total)
T544C 012:468 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 1124ms total)
T544C 012:469 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 1125ms total)
T544C 012:470 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 1126ms total)
T544C 012:471 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 1127ms total)
T544C 012:472 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 02 00 00 00  returns 0x04 (0001ms, 1128ms total)
T544C 012:473 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 02 00 00 00  returns 0x04 (0001ms, 1129ms total)
T544C 012:474 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 00  returns 0x01 (0001ms, 1130ms total)
T544C 012:475 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1131ms total)
T544C 012:477 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 1132ms total)
T544C 012:478 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1133ms total)
T544C 012:479 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0001ms, 1134ms total)
T544C 012:480 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 00 40  returns 0x04 (0001ms, 1135ms total)
T544C 012:481 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 1136ms total)
T544C 012:482 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 1137ms total)
T544C 012:483 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 1138ms total)
T544C 012:484 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 00 00  returns 0x02 (0001ms, 1139ms total)
T544C 012:485 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 1140ms total)
T544C 012:486 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 1141ms total)
T544C 012:487 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 1142ms total)
T544C 012:488 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: 60  returns 0x01 (0001ms, 1143ms total)
T544C 012:489 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 00  returns 0x01 (0001ms, 1144ms total)
T544C 012:490 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 1145ms total)
T4018 012:491 JLINK_IsHalted()  returns FALSE (0001ms, 1146ms total)
T4018 012:594 JLINK_IsHalted()  returns FALSE (0001ms, 1146ms total)
T4018 012:696 JLINK_IsHalted()  returns FALSE (0001ms, 1146ms total)
T4018 012:797 JLINK_IsHalted()  returns FALSE (0001ms, 1146ms total)
T4018 012:899 JLINK_IsHalted()  returns FALSE (0001ms, 1146ms total)
T544C 013:006 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1147ms total)
T544C 013:008 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0000ms, 1147ms total)
T544C 013:033 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0000ms, 1147ms total)
T544C 013:033 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 01  returns 0x01 (0001ms, 1148ms total)
T544C 013:034 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0001ms, 1149ms total)
T544C 013:035 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 00  returns 0x01 (0001ms, 1150ms total)
T544C 013:036 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1151ms total)
T544C 013:037 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0002ms, 1153ms total)
T544C 013:039 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 1154ms total)
T544C 013:040 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1156ms total)
T544C 013:043 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 1157ms total)
T544C 013:044 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 1158ms total)
T544C 013:045 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 1159ms total)
T544C 013:046 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1160ms total)
T544C 013:047 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 1161ms total)
T544C 013:048 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 1162ms total)
T544C 013:049 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 1163ms total)
T544C 013:050 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1165ms total)
T544C 013:052 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0001ms, 1166ms total)
T544C 013:053 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0000ms, 1166ms total)
T544C 013:053 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0002ms, 1168ms total)
T544C 013:055 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 01  returns 0x01 (0001ms, 1169ms total)
T544C 013:056 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 1170ms total)
T544C 013:057 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 1171ms total)
T544C 013:058 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 1172ms total)
T544C 013:059 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 1173ms total)
T544C 013:060 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 02 00 00 00  returns 0x04 (0001ms, 1174ms total)
T544C 013:061 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 02 00 00 00  returns 0x04 (0001ms, 1175ms total)
T544C 013:062 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 00  returns 0x01 (0001ms, 1176ms total)
T544C 013:063 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1177ms total)
T544C 013:064 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 1178ms total)
T544C 013:065 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1179ms total)
T544C 013:066 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0001ms, 1180ms total)
T544C 013:067 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 00 40  returns 0x04 (0001ms, 1181ms total)
T544C 013:068 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 1182ms total)
T544C 013:069 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 1183ms total)
T544C 013:070 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 1184ms total)
T544C 013:071 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 00 00  returns 0x02 (0001ms, 1185ms total)
T544C 013:072 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 1186ms total)
T544C 013:073 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 1187ms total)
T544C 013:074 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 1188ms total)
T544C 013:075 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: 60  returns 0x01 (0001ms, 1189ms total)
T544C 013:076 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 00  returns 0x01 (0001ms, 1190ms total)
T544C 013:077 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 1191ms total)
T4018 013:078 JLINK_IsHalted()  returns FALSE (0001ms, 1192ms total)
T4018 013:180 JLINK_IsHalted()  returns FALSE (0001ms, 1192ms total)
T4018 013:282 JLINK_IsHalted()  returns FALSE (0001ms, 1192ms total)
T4018 013:383 JLINK_IsHalted()  returns FALSE (0001ms, 1192ms total)
T4018 013:484 JLINK_IsHalted()  returns FALSE (0001ms, 1192ms total)
T544C 013:591 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1192ms total)
T544C 013:593 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1193ms total)
T544C 013:619 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 1194ms total)
T544C 013:620 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 00  returns 0x01 (0001ms, 1195ms total)
T544C 013:621 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0001ms, 1196ms total)
T544C 013:623 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 1197ms total)
T544C 013:624 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1198ms total)
T544C 013:625 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 1199ms total)
T544C 013:626 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 1200ms total)
T544C 013:627 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1202ms total)
T544C 013:629 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 1203ms total)
T544C 013:630 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 1204ms total)
T544C 013:631 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 1205ms total)
T544C 013:632 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1206ms total)
T544C 013:633 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 1207ms total)
T544C 013:634 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 1208ms total)
T544C 013:635 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 1209ms total)
T544C 013:636 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1210ms total)
T544C 013:637 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0002ms, 1212ms total)
T544C 013:639 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 1213ms total)
T544C 013:640 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 1214ms total)
T544C 013:641 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 1215ms total)
T544C 013:642 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 1216ms total)
T544C 013:643 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 1217ms total)
T544C 013:644 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 1218ms total)
T544C 013:645 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 1219ms total)
T544C 013:646 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 03 00 00 00  returns 0x04 (0001ms, 1220ms total)
T544C 013:647 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 03 00 00 00  returns 0x04 (0001ms, 1221ms total)
T544C 013:648 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 00  returns 0x01 (0001ms, 1222ms total)
T544C 013:649 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1223ms total)
T544C 013:650 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 1224ms total)
T544C 013:651 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1225ms total)
T544C 013:652 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0001ms, 1226ms total)
T544C 013:654 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 40 40  returns 0x04 (0001ms, 1228ms total)
T544C 013:655 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 1229ms total)
T544C 013:656 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 1230ms total)
T544C 013:657 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 1231ms total)
T544C 013:658 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 00 00  returns 0x02 (0001ms, 1232ms total)
T544C 013:659 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 1233ms total)
T544C 013:660 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 1234ms total)
T544C 013:661 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 1235ms total)
T544C 013:662 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 1236ms total)
T544C 013:663 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0001ms, 1237ms total)
T544C 013:664 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 1238ms total)
T4018 013:665 JLINK_IsHalted()  returns FALSE (0001ms, 1239ms total)
T4018 013:768 JLINK_IsHalted()  returns FALSE (0001ms, 1239ms total)
T4018 013:870 JLINK_IsHalted()  returns FALSE (0001ms, 1239ms total)
T4018 013:972 JLINK_IsHalted()  returns FALSE (0001ms, 1239ms total)
T4018 014:074 JLINK_IsHalted()  returns FALSE (0000ms, 1238ms total)
T544C 014:180 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1240ms total)
T544C 014:182 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1241ms total)
T544C 014:207 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 1242ms total)
T544C 014:208 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 00  returns 0x01 (0001ms, 1243ms total)
T544C 014:210 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0001ms, 1244ms total)
T544C 014:211 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 1245ms total)
T544C 014:212 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1246ms total)
T544C 014:213 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 1247ms total)
T544C 014:214 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 1248ms total)
T544C 014:215 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1249ms total)
T544C 014:217 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 1250ms total)
T544C 014:218 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 1251ms total)
T544C 014:219 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0002ms, 1253ms total)
T544C 014:221 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0000ms, 1253ms total)
T544C 014:221 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 1254ms total)
T544C 014:222 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 1255ms total)
T544C 014:223 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0002ms, 1257ms total)
T544C 014:225 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1258ms total)
T544C 014:226 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0001ms, 1259ms total)
T544C 014:227 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 1260ms total)
T544C 014:228 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 1261ms total)
T544C 014:229 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 1262ms total)
T544C 014:230 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 1263ms total)
T544C 014:231 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 1264ms total)
T544C 014:232 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 1265ms total)
T544C 014:233 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 1266ms total)
T544C 014:234 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 03 00 00 00  returns 0x04 (0001ms, 1267ms total)
T544C 014:235 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 03 00 00 00  returns 0x04 (0001ms, 1268ms total)
T544C 014:236 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 00  returns 0x01 (0002ms, 1270ms total)
T544C 014:238 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1271ms total)
T544C 014:239 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 1272ms total)
T544C 014:240 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0001ms, 1273ms total)
T544C 014:241 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0001ms, 1274ms total)
T544C 014:242 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 40 40  returns 0x04 (0001ms, 1275ms total)
T544C 014:243 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 1276ms total)
T544C 014:244 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 1277ms total)
T544C 014:245 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 1278ms total)
T544C 014:246 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 00 00  returns 0x02 (0001ms, 1279ms total)
T544C 014:247 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 1280ms total)
T544C 014:248 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 1281ms total)
T544C 014:249 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 1282ms total)
T544C 014:250 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 1283ms total)
T544C 014:251 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0001ms, 1284ms total)
T544C 014:252 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 1285ms total)
T4018 014:254 JLINK_IsHalted()  returns FALSE (0001ms, 1286ms total)
T4018 014:356 JLINK_IsHalted()  returns FALSE (0001ms, 1286ms total)
T4018 014:458 JLINK_IsHalted()  returns FALSE (0001ms, 1286ms total)
T4018 014:560 JLINK_IsHalted()  returns FALSE (0001ms, 1286ms total)
T4018 014:662 JLINK_IsHalted()  returns FALSE (0001ms, 1286ms total)
T544C 014:775 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1287ms total)
T544C 014:777 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1288ms total)
T544C 014:798 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 1289ms total)
T544C 014:799 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 00  returns 0x01 (0001ms, 1290ms total)
T544C 014:801 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0001ms, 1291ms total)
T544C 014:802 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 1292ms total)
T544C 014:803 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1293ms total)
T544C 014:804 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 1294ms total)
T544C 014:805 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0000ms, 1294ms total)
T544C 014:805 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1296ms total)
T544C 014:808 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 1297ms total)
T544C 014:809 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 1298ms total)
T544C 014:810 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 1299ms total)
T544C 014:811 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0002ms, 1301ms total)
T544C 014:813 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0000ms, 1301ms total)
T544C 014:813 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 1302ms total)
T544C 014:814 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0002ms, 1304ms total)
T544C 014:816 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1305ms total)
T544C 014:817 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0001ms, 1306ms total)
T544C 014:819 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 1307ms total)
T544C 014:820 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 1308ms total)
T544C 014:821 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0000ms, 1308ms total)
T544C 014:821 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 1309ms total)
T544C 014:822 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 1310ms total)
T544C 014:823 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 1311ms total)
T544C 014:824 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 1312ms total)
T544C 014:825 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 04 00 00 00  returns 0x04 (0001ms, 1313ms total)
T544C 014:826 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 04 00 00 00  returns 0x04 (0001ms, 1314ms total)
T544C 014:827 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 00  returns 0x01 (0001ms, 1315ms total)
T544C 014:828 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1316ms total)
T544C 014:829 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 1317ms total)
T544C 014:830 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0001ms, 1318ms total)
T544C 014:831 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0001ms, 1319ms total)
T544C 014:832 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 80 40  returns 0x04 (0001ms, 1320ms total)
T544C 014:833 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 1321ms total)
T544C 014:834 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 1322ms total)
T544C 014:835 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0002ms, 1324ms total)
T544C 014:837 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 00 00  returns 0x02 (0001ms, 1325ms total)
T544C 014:838 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 1326ms total)
T544C 014:839 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 1327ms total)
T544C 014:840 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 1328ms total)
T544C 014:841 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 1329ms total)
T544C 014:842 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0001ms, 1330ms total)
T544C 014:843 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 1331ms total)
T4018 014:844 JLINK_IsHalted()  returns FALSE (0001ms, 1332ms total)
T4018 014:946 JLINK_IsHalted()  returns FALSE (0001ms, 1332ms total)
T4018 015:048 JLINK_IsHalted()  returns FALSE (0001ms, 1332ms total)
T4018 015:149 JLINK_IsHalted()  returns FALSE (0001ms, 1332ms total)
T4018 015:251 JLINK_IsHalted()  returns FALSE (0000ms, 1331ms total)
T544C 015:356 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1332ms total)
T544C 015:357 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1333ms total)
T544C 015:379 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 1334ms total)
T544C 015:380 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 00  returns 0x01 (0001ms, 1335ms total)
T544C 015:381 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0001ms, 1336ms total)
T544C 015:382 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 1337ms total)
T544C 015:383 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1338ms total)
T544C 015:384 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 1339ms total)
T544C 015:385 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 1340ms total)
T544C 015:386 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1342ms total)
T544C 015:389 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 1343ms total)
T544C 015:390 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0002ms, 1345ms total)
T544C 015:392 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0002ms, 1347ms total)
T544C 015:394 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1348ms total)
T544C 015:395 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 1349ms total)
T544C 015:396 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0002ms, 1351ms total)
T544C 015:398 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 1352ms total)
T544C 015:399 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1353ms total)
T544C 015:400 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0001ms, 1354ms total)
T544C 015:401 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 1355ms total)
T544C 015:402 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 1356ms total)
T544C 015:403 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 1357ms total)
T544C 015:404 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 1358ms total)
T544C 015:405 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 1359ms total)
T544C 015:406 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 1360ms total)
T544C 015:407 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 1361ms total)
T544C 015:408 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 04 00 00 00  returns 0x04 (0001ms, 1362ms total)
T544C 015:409 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 04 00 00 00  returns 0x04 (0001ms, 1363ms total)
T544C 015:410 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 00  returns 0x01 (0001ms, 1364ms total)
T544C 015:411 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1365ms total)
T544C 015:412 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 1366ms total)
T544C 015:413 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0002ms, 1368ms total)
T544C 015:415 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0001ms, 1369ms total)
T544C 015:416 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 80 40  returns 0x04 (0001ms, 1370ms total)
T544C 015:417 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 1371ms total)
T544C 015:418 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 1372ms total)
T544C 015:419 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 1373ms total)
T544C 015:420 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 00 00  returns 0x02 (0001ms, 1374ms total)
T544C 015:421 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 1375ms total)
T544C 015:422 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 1376ms total)
T544C 015:423 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 1377ms total)
T544C 015:424 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0000ms, 1377ms total)
T544C 015:424 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0002ms, 1379ms total)
T544C 015:426 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 1380ms total)
T4018 015:427 JLINK_IsHalted()  returns FALSE (0001ms, 1381ms total)
T4018 015:529 JLINK_IsHalted()  returns FALSE (0001ms, 1381ms total)
T4018 015:631 JLINK_IsHalted()  returns FALSE (0001ms, 1381ms total)
T4018 015:732 JLINK_IsHalted()  returns FALSE (0001ms, 1381ms total)
T4018 015:834 JLINK_IsHalted()  returns FALSE (0001ms, 1381ms total)
T544C 015:937 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 24 47 4E 47 53 41 2C 41 2C 31 2C 2C 2C 2C 2C 2C ...  returns 0x20 (0002ms, 1382ms total)
T544C 015:939 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1383ms total)
T544C 015:942 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 1384ms total)
T544C 015:943 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 00  returns 0x01 (0001ms, 1385ms total)
T544C 015:944 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0001ms, 1386ms total)
T544C 015:945 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 1387ms total)
T544C 015:946 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0002ms, 1389ms total)
T544C 015:948 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 1390ms total)
T544C 015:949 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 1391ms total)
T544C 015:950 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 24 47 4E 47 53 41 2C 41 2C 31 2C 2C 2C 2C 2C 2C ...  returns 0x20 (0002ms, 1393ms total)
T544C 015:971 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 1394ms total)
T544C 015:972 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 1395ms total)
T544C 015:974 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 1396ms total)
T544C 015:975 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1397ms total)
T544C 015:976 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 1398ms total)
T544C 015:977 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 1399ms total)
T544C 015:978 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0002ms, 1401ms total)
T544C 015:980 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1402ms total)
T544C 015:981 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0001ms, 1403ms total)
T544C 015:983 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 1404ms total)
T544C 015:984 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 1405ms total)
T544C 015:985 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 1406ms total)
T544C 015:986 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0002ms, 1408ms total)
T544C 015:988 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 1409ms total)
T544C 015:989 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 1410ms total)
T544C 015:990 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 1411ms total)
T544C 015:991 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 05 00 00 00  returns 0x04 (0001ms, 1412ms total)
T544C 015:993 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 05 00 00 00  returns 0x04 (0001ms, 1413ms total)
T544C 015:994 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 00  returns 0x01 (0001ms, 1414ms total)
T544C 015:995 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1415ms total)
T544C 015:996 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 1416ms total)
T544C 015:997 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0001ms, 1417ms total)
T544C 015:998 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0001ms, 1418ms total)
T544C 015:999 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 A0 40  returns 0x04 (0001ms, 1419ms total)
T544C 016:012 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 1420ms total)
T544C 016:013 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0002ms, 1422ms total)
T544C 016:015 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 1423ms total)
T544C 016:016 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 00 00  returns 0x02 (0001ms, 1424ms total)
T544C 016:017 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 1425ms total)
T544C 016:018 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 1426ms total)
T544C 016:019 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 1427ms total)
T544C 016:020 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 1428ms total)
T544C 016:021 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0001ms, 1429ms total)
T544C 016:022 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 1430ms total)
T4018 016:024 JLINK_IsHalted()  returns FALSE (0000ms, 1430ms total)
T4018 016:125 JLINK_IsHalted()  returns FALSE (0001ms, 1431ms total)
T4018 016:226 JLINK_IsHalted()  returns FALSE (0001ms, 1431ms total)
T4018 016:328 JLINK_IsHalted()  returns FALSE (0001ms, 1431ms total)
T4018 016:429 JLINK_IsHalted()  returns FALSE (0001ms, 1431ms total)
T544C 016:539 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1431ms total)
T544C 016:540 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1432ms total)
T544C 016:543 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 1434ms total)
T544C 016:544 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 00  returns 0x01 (0001ms, 1435ms total)
T544C 016:545 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0001ms, 1436ms total)
T544C 016:546 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 1437ms total)
T544C 016:547 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0000ms, 1437ms total)
T544C 016:549 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0000ms, 1437ms total)
T544C 016:549 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 1438ms total)
T544C 016:550 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1439ms total)
T544C 016:552 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 1440ms total)
T544C 016:553 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 1441ms total)
T544C 016:555 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 1442ms total)
T544C 016:556 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1443ms total)
T544C 016:557 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 1444ms total)
T544C 016:558 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 1445ms total)
T544C 016:559 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 1446ms total)
T544C 016:560 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1447ms total)
T544C 016:561 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0001ms, 1448ms total)
T544C 016:564 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 1449ms total)
T544C 016:565 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 1450ms total)
T544C 016:566 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 1451ms total)
T544C 016:567 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 1452ms total)
T544C 016:568 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 1453ms total)
T544C 016:569 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 1454ms total)
T544C 016:570 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 1455ms total)
T544C 016:571 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 05 00 00 00  returns 0x04 (0001ms, 1456ms total)
T544C 016:573 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 05 00 00 00  returns 0x04 (0001ms, 1457ms total)
T544C 016:574 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 00  returns 0x01 (0001ms, 1458ms total)
T544C 016:575 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1459ms total)
T544C 016:576 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 1460ms total)
T544C 016:577 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0002ms, 1462ms total)
T544C 016:579 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0001ms, 1463ms total)
T544C 016:580 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 A0 40  returns 0x04 (0000ms, 1463ms total)
T544C 016:581 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 1464ms total)
T544C 016:582 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 1465ms total)
T544C 016:583 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 1466ms total)
T544C 016:584 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 00 00  returns 0x02 (0001ms, 1467ms total)
T544C 016:586 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 1468ms total)
T544C 016:587 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 1469ms total)
T544C 016:588 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 1470ms total)
T544C 016:589 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 1471ms total)
T544C 016:590 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0001ms, 1472ms total)
T544C 016:591 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 1473ms total)
T4018 016:592 JLINK_IsHalted()  returns FALSE (0001ms, 1474ms total)
T4018 016:694 JLINK_IsHalted()  returns FALSE (0001ms, 1474ms total)
T4018 016:797 JLINK_IsHalted()  returns FALSE (0001ms, 1474ms total)
T4018 016:898 JLINK_IsHalted()  returns FALSE (0001ms, 1474ms total)
T4018 017:000 JLINK_IsHalted()  returns FALSE (0001ms, 1474ms total)
T544C 017:102 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1474ms total)
T544C 017:103 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0002ms, 1476ms total)
T544C 017:107 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 1477ms total)
T544C 017:108 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 00  returns 0x01 (0001ms, 1478ms total)
T544C 017:109 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0001ms, 1479ms total)
T544C 017:110 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 1480ms total)
T544C 017:111 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0002ms, 1482ms total)
T544C 017:113 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 1483ms total)
T544C 017:114 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 1484ms total)
T544C 017:115 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1485ms total)
T544C 017:117 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 1486ms total)
T544C 017:118 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 1487ms total)
T544C 017:119 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 1488ms total)
T544C 017:120 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1489ms total)
T544C 017:121 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 1490ms total)
T544C 017:122 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 1491ms total)
T544C 017:123 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0000ms, 1491ms total)
T544C 017:123 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1493ms total)
T544C 017:125 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0001ms, 1494ms total)
T544C 017:128 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 1495ms total)
T544C 017:129 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 1496ms total)
T544C 017:130 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 1497ms total)
T544C 017:131 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 1498ms total)
T544C 017:132 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 1499ms total)
T544C 017:133 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 1500ms total)
T544C 017:134 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 1501ms total)
T544C 017:135 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 06 00 00 00  returns 0x04 (0001ms, 1502ms total)
T544C 017:137 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 06 00 00 00  returns 0x04 (0002ms, 1504ms total)
T544C 017:139 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 00  returns 0x01 (0001ms, 1505ms total)
T544C 017:140 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1506ms total)
T544C 017:141 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 1507ms total)
T544C 017:142 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0002ms, 1509ms total)
T544C 017:144 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0001ms, 1510ms total)
T544C 017:145 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 C0 40  returns 0x04 (0000ms, 1510ms total)
T544C 017:146 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0000ms, 1510ms total)
T544C 017:146 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0002ms, 1512ms total)
T544C 017:149 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 1513ms total)
T544C 017:150 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 00 00  returns 0x02 (0001ms, 1514ms total)
T544C 017:151 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 1515ms total)
T544C 017:152 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 1516ms total)
T544C 017:153 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 1517ms total)
T544C 017:154 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 1518ms total)
T544C 017:155 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0001ms, 1519ms total)
T544C 017:156 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 1520ms total)
T4018 017:157 JLINK_IsHalted()  returns FALSE (0001ms, 1521ms total)
T4018 017:259 JLINK_IsHalted()  returns FALSE (0001ms, 1521ms total)
T4018 017:362 JLINK_IsHalted()  returns FALSE (0001ms, 1521ms total)
T4018 017:463 JLINK_IsHalted()  returns FALSE (0001ms, 1521ms total)
T4018 017:565 JLINK_IsHalted()  returns FALSE (0001ms, 1521ms total)
T544C 017:669 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1521ms total)
T544C 017:670 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1522ms total)
T544C 017:672 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 1523ms total)
T544C 017:673 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 00  returns 0x01 (0001ms, 1524ms total)
T544C 017:674 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0001ms, 1525ms total)
T544C 017:675 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0002ms, 1527ms total)
T544C 017:677 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0000ms, 1527ms total)
T544C 017:677 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0002ms, 1529ms total)
T544C 017:679 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 1530ms total)
T544C 017:680 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1531ms total)
T544C 017:683 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0000ms, 1531ms total)
T544C 017:684 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 1533ms total)
T544C 017:685 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 1534ms total)
T544C 017:686 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1535ms total)
T544C 017:687 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 1536ms total)
T544C 017:688 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 1537ms total)
T544C 017:689 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 1538ms total)
T544C 017:690 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1539ms total)
T544C 017:691 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0001ms, 1540ms total)
T544C 017:694 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 1541ms total)
T544C 017:695 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 1542ms total)
T544C 017:696 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 1543ms total)
T544C 017:697 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 1544ms total)
T544C 017:698 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 1545ms total)
T544C 017:699 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 1546ms total)
T544C 017:700 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 1547ms total)
T544C 017:701 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 07 00 00 00  returns 0x04 (0001ms, 1548ms total)
T544C 017:703 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 07 00 00 00  returns 0x04 (0001ms, 1549ms total)
T544C 017:704 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 00  returns 0x01 (0002ms, 1551ms total)
T544C 017:706 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1552ms total)
T544C 017:707 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 1553ms total)
T544C 017:708 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0001ms, 1554ms total)
T544C 017:709 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0001ms, 1555ms total)
T544C 017:710 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 E0 40  returns 0x04 (0001ms, 1556ms total)
T544C 017:712 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0000ms, 1556ms total)
T544C 017:713 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0000ms, 1557ms total)
T544C 017:714 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 1558ms total)
T544C 017:715 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 00 00  returns 0x02 (0001ms, 1559ms total)
T544C 017:716 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 1560ms total)
T544C 017:718 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 1561ms total)
T544C 017:719 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 1562ms total)
T544C 017:720 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 1563ms total)
T544C 017:721 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0001ms, 1564ms total)
T544C 017:722 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 1565ms total)
T4018 017:723 JLINK_IsHalted()  returns FALSE (0001ms, 1566ms total)
T4018 017:826 JLINK_IsHalted()  returns FALSE (0001ms, 1566ms total)
T4018 017:928 JLINK_IsHalted()  returns FALSE (0001ms, 1566ms total)
T4018 018:029 JLINK_IsHalted()  returns FALSE (0001ms, 1566ms total)
T4018 018:131 JLINK_IsHalted()  returns FALSE (0001ms, 1566ms total)
T544C 018:234 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1566ms total)
T544C 018:235 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1567ms total)
T544C 018:238 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0000ms, 1567ms total)
T544C 018:238 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 00  returns 0x01 (0002ms, 1569ms total)
T544C 018:240 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0001ms, 1570ms total)
T544C 018:241 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 1571ms total)
T544C 018:242 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1572ms total)
T544C 018:243 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 1573ms total)
T544C 018:244 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 1574ms total)
T544C 018:245 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1576ms total)
T544C 018:247 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 1577ms total)
T544C 018:249 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 1579ms total)
T544C 018:250 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 1580ms total)
T544C 018:251 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1581ms total)
T544C 018:252 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 1582ms total)
T544C 018:253 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 1583ms total)
T544C 018:254 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 1584ms total)
T544C 018:255 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1585ms total)
T544C 018:256 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0001ms, 1586ms total)
T544C 018:259 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 1587ms total)
T544C 018:260 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0000ms, 1587ms total)
T544C 018:260 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0002ms, 1589ms total)
T544C 018:262 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0002ms, 1591ms total)
T544C 018:264 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0000ms, 1591ms total)
T544C 018:264 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0002ms, 1593ms total)
T544C 018:266 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 1594ms total)
T544C 018:267 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 07 00 00 00  returns 0x04 (0001ms, 1595ms total)
T544C 018:268 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 07 00 00 00  returns 0x04 (0001ms, 1596ms total)
T544C 018:269 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 00  returns 0x01 (0001ms, 1597ms total)
T544C 018:270 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1598ms total)
T544C 018:271 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 1599ms total)
T544C 018:272 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0002ms, 1601ms total)
T544C 018:274 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0001ms, 1602ms total)
T544C 018:275 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 E0 40  returns 0x04 (0001ms, 1603ms total)
T544C 018:276 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 1604ms total)
T544C 018:277 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 1605ms total)
T544C 018:278 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0002ms, 1607ms total)
T544C 018:280 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 00 00  returns 0x02 (0001ms, 1608ms total)
T544C 018:281 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 1609ms total)
T544C 018:282 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 1610ms total)
T544C 018:283 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 1611ms total)
T544C 018:284 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 1612ms total)
T544C 018:285 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0001ms, 1613ms total)
T544C 018:286 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 1614ms total)
T4018 018:287 JLINK_IsHalted()  returns FALSE (0001ms, 1615ms total)
T4018 018:391 JLINK_IsHalted()  returns FALSE (0001ms, 1615ms total)
T4018 018:492 JLINK_IsHalted()  returns FALSE (0001ms, 1615ms total)
T4018 018:594 JLINK_IsHalted()  returns FALSE (0001ms, 1615ms total)
T4018 018:696 JLINK_IsHalted()  returns FALSE (0001ms, 1615ms total)
T544C 018:798 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1616ms total)
T544C 018:800 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1617ms total)
T544C 018:802 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 1618ms total)
T544C 018:803 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 00  returns 0x01 (0002ms, 1620ms total)
T544C 018:805 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0000ms, 1620ms total)
T544C 018:807 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 1621ms total)
T544C 018:808 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1622ms total)
T544C 018:809 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 1623ms total)
T544C 018:810 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 1624ms total)
T544C 018:811 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1625ms total)
T544C 018:813 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 1626ms total)
T544C 018:814 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 1627ms total)
T544C 018:816 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 1628ms total)
T544C 018:817 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1629ms total)
T544C 018:818 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 1630ms total)
T544C 018:819 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 1631ms total)
T544C 018:820 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 1632ms total)
T544C 018:821 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1633ms total)
T544C 018:822 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0001ms, 1634ms total)
T544C 018:825 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 1635ms total)
T544C 018:826 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 1636ms total)
T544C 018:827 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 1637ms total)
T544C 018:828 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 1638ms total)
T544C 018:829 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0000ms, 1638ms total)
T544C 018:829 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0002ms, 1640ms total)
T544C 018:831 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 1641ms total)
T544C 018:832 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 08 00 00 00  returns 0x04 (0001ms, 1642ms total)
T544C 018:834 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 08 00 00 00  returns 0x04 (0001ms, 1643ms total)
T544C 018:836 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 00  returns 0x01 (0001ms, 1644ms total)
T544C 018:837 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1645ms total)
T544C 018:838 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 1646ms total)
T544C 018:839 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0001ms, 1647ms total)
T544C 018:840 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0001ms, 1648ms total)
T544C 018:841 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 00 41  returns 0x04 (0001ms, 1649ms total)
T544C 018:843 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0000ms, 1649ms total)
T544C 018:843 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0002ms, 1651ms total)
T544C 018:845 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 1652ms total)
T544C 018:846 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 00 00  returns 0x02 (0001ms, 1653ms total)
T544C 018:847 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 1654ms total)
T544C 018:848 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 1655ms total)
T544C 018:849 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 1656ms total)
T544C 018:852 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 1657ms total)
T544C 018:854 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0001ms, 1659ms total)
T544C 018:855 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 1660ms total)
T4018 018:856 JLINK_IsHalted()  returns FALSE (0001ms, 1661ms total)
T4018 018:958 JLINK_IsHalted()  returns FALSE (0001ms, 1661ms total)
T4018 019:059 JLINK_IsHalted()  returns FALSE (0001ms, 1661ms total)
T4018 019:161 JLINK_IsHalted()  returns FALSE (0001ms, 1661ms total)
T4018 019:262 JLINK_IsHalted()  returns FALSE (0001ms, 1661ms total)
T544C 019:365 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1662ms total)
T544C 019:367 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1663ms total)
T544C 019:369 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 1664ms total)
T544C 019:370 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 00  returns 0x01 (0001ms, 1665ms total)
T544C 019:371 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0001ms, 1666ms total)
T544C 019:372 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 1667ms total)
T544C 019:373 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1668ms total)
T544C 019:374 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 1669ms total)
T544C 019:375 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 1670ms total)
T544C 019:376 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1671ms total)
T544C 019:379 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 1672ms total)
T544C 019:380 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 1673ms total)
T544C 019:381 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 1674ms total)
T544C 019:382 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1675ms total)
T544C 019:383 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 1676ms total)
T544C 019:384 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 1677ms total)
T544C 019:385 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 1678ms total)
T544C 019:386 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1679ms total)
T544C 019:387 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0002ms, 1681ms total)
T544C 019:390 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 1682ms total)
T544C 019:391 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 1683ms total)
T544C 019:392 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 1684ms total)
T544C 019:393 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 1685ms total)
T544C 019:394 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0002ms, 1687ms total)
T544C 019:396 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 1688ms total)
T544C 019:397 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 1689ms total)
T544C 019:398 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 08 00 00 00  returns 0x04 (0001ms, 1690ms total)
T544C 019:399 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 08 00 00 00  returns 0x04 (0002ms, 1692ms total)
T544C 019:401 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 00  returns 0x01 (0001ms, 1693ms total)
T544C 019:402 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1694ms total)
T544C 019:403 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 1695ms total)
T544C 019:404 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0002ms, 1697ms total)
T544C 019:406 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0000ms, 1697ms total)
T544C 019:406 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 00 41  returns 0x04 (0001ms, 1698ms total)
T544C 019:408 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 1699ms total)
T544C 019:409 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 1700ms total)
T544C 019:410 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 1701ms total)
T544C 019:411 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 00 00  returns 0x02 (0001ms, 1702ms total)
T544C 019:413 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 1703ms total)
T544C 019:414 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 1704ms total)
T544C 019:415 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 1705ms total)
T544C 019:417 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 1706ms total)
T544C 019:418 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0000ms, 1706ms total)
T544C 019:418 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0002ms, 1708ms total)
T4018 019:420 JLINK_IsHalted()  returns FALSE (0001ms, 1709ms total)
T4018 019:522 JLINK_IsHalted()  returns FALSE (0001ms, 1709ms total)
T4018 019:624 JLINK_IsHalted()  returns FALSE (0001ms, 1709ms total)
T4018 019:726 JLINK_IsHalted()  returns FALSE (0001ms, 1709ms total)
T4018 019:828 JLINK_IsHalted()  returns FALSE (0000ms, 1708ms total)
T544C 019:932 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 24 47 4E 47 4C 4C 2C 30 30 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1710ms total)
T544C 019:934 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1711ms total)
T544C 019:936 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0002ms, 1713ms total)
T544C 019:938 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 02  returns 0x01 (0001ms, 1714ms total)
T544C 019:939 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0001ms, 1715ms total)
T544C 019:940 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 1716ms total)
T544C 019:941 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1717ms total)
T544C 019:943 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 1718ms total)
T544C 019:944 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 1719ms total)
T544C 019:945 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 24 47 4E 47 53 41 2C 41 2C 31 2C 2C 2C 2C 2C 2C ...  returns 0x20 (0001ms, 1720ms total)
T544C 019:947 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 1721ms total)
T544C 019:948 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 1722ms total)
T544C 019:950 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 1724ms total)
T544C 019:951 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1725ms total)
T544C 019:952 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 1726ms total)
T544C 019:953 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 1727ms total)
T544C 019:954 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 1728ms total)
T544C 019:955 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 24 47 4C 47 53 56 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1730ms total)
T544C 019:971 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0001ms, 1731ms total)
T544C 019:975 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 1732ms total)
T544C 019:976 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 1733ms total)
T544C 019:977 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 1734ms total)
T544C 019:978 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 1735ms total)
T544C 019:979 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 1736ms total)
T544C 019:980 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 1737ms total)
T544C 019:981 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 1738ms total)
T544C 019:982 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 09 00 00 00  returns 0x04 (0001ms, 1739ms total)
T544C 019:983 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 09 00 00 00  returns 0x04 (0002ms, 1741ms total)
T544C 019:985 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 00  returns 0x01 (0001ms, 1742ms total)
T544C 019:986 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1743ms total)
T544C 019:987 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 1744ms total)
T544C 019:988 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0001ms, 1745ms total)
T544C 019:989 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0001ms, 1746ms total)
T544C 019:990 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 10 41  returns 0x04 (0001ms, 1747ms total)
T544C 019:992 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0000ms, 1747ms total)
T544C 019:992 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 1748ms total)
T544C 019:994 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 1749ms total)
T544C 019:995 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 00 00  returns 0x02 (0001ms, 1750ms total)
T544C 019:996 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 1751ms total)
T544C 019:997 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 1752ms total)
T544C 019:998 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 1753ms total)
T544C 020:000 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 1754ms total)
T544C 020:001 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0001ms, 1755ms total)
T544C 020:002 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 1756ms total)
T4018 020:003 JLINK_IsHalted()  returns FALSE (0001ms, 1757ms total)
T4018 020:105 JLINK_IsHalted()  returns FALSE (0001ms, 1757ms total)
T4018 020:207 JLINK_IsHalted()  returns FALSE (0002ms, 1758ms total)
T4018 020:309 JLINK_IsHalted()  returns FALSE (0001ms, 1757ms total)
T4018 020:411 JLINK_IsHalted()  returns FALSE (0001ms, 1757ms total)
T544C 020:513 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1758ms total)
T544C 020:515 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1759ms total)
T544C 020:517 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 1760ms total)
T544C 020:518 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 01  returns 0x01 (0001ms, 1761ms total)
T544C 020:519 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0001ms, 1762ms total)
T544C 020:520 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 1763ms total)
T544C 020:521 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1764ms total)
T544C 020:522 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0002ms, 1766ms total)
T544C 020:524 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 1767ms total)
T544C 020:525 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1768ms total)
T544C 020:527 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 1769ms total)
T544C 020:528 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 1770ms total)
T544C 020:529 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 1771ms total)
T544C 020:530 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1772ms total)
T544C 020:531 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 1773ms total)
T544C 020:532 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 1774ms total)
T544C 020:533 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 1775ms total)
T544C 020:534 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1776ms total)
T544C 020:549 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0001ms, 1777ms total)
T544C 020:551 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0002ms, 1779ms total)
T544C 020:553 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 1780ms total)
T544C 020:554 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0000ms, 1780ms total)
T544C 020:554 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 1781ms total)
T544C 020:555 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0002ms, 1783ms total)
T544C 020:557 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 1784ms total)
T544C 020:558 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 1785ms total)
T544C 020:559 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 09 00 00 00  returns 0x04 (0001ms, 1786ms total)
T544C 020:560 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 09 00 00 00  returns 0x04 (0002ms, 1788ms total)
T544C 020:562 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 00  returns 0x01 (0001ms, 1789ms total)
T544C 020:563 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1790ms total)
T544C 020:564 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 1791ms total)
T544C 020:565 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0001ms, 1792ms total)
T544C 020:566 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0001ms, 1793ms total)
T544C 020:567 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 10 41  returns 0x04 (0001ms, 1794ms total)
T544C 020:568 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 1795ms total)
T544C 020:569 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 1796ms total)
T544C 020:570 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 1797ms total)
T544C 020:571 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 00 00  returns 0x02 (0001ms, 1798ms total)
T544C 020:573 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 1799ms total)
T544C 020:574 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 1800ms total)
T544C 020:575 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 1801ms total)
T544C 020:576 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 1802ms total)
T544C 020:577 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0001ms, 1803ms total)
T544C 020:578 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 1804ms total)
T4018 020:579 JLINK_IsHalted()  returns FALSE (0001ms, 1805ms total)
T4018 020:681 JLINK_IsHalted()  returns FALSE (0001ms, 1805ms total)
T4018 020:783 JLINK_IsHalted()  returns FALSE (0001ms, 1805ms total)
T4018 020:885 JLINK_IsHalted()  returns FALSE (0001ms, 1805ms total)
T4018 020:987 JLINK_IsHalted()  returns FALSE (0001ms, 1805ms total)
T544C 021:089 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1806ms total)
T544C 021:091 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1807ms total)
T544C 021:093 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 1808ms total)
T544C 021:094 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 00  returns 0x01 (0001ms, 1809ms total)
T544C 021:095 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0001ms, 1810ms total)
T544C 021:096 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 1811ms total)
T544C 021:097 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1812ms total)
T544C 021:098 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 1813ms total)
T544C 021:099 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 1814ms total)
T544C 021:100 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1816ms total)
T544C 021:103 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 1817ms total)
T544C 021:104 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 1818ms total)
T544C 021:105 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 1819ms total)
T544C 021:106 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1820ms total)
T544C 021:107 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 1821ms total)
T544C 021:108 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 1822ms total)
T544C 021:109 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 1823ms total)
T544C 021:110 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1825ms total)
T544C 021:112 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0001ms, 1826ms total)
T544C 021:114 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0002ms, 1828ms total)
T544C 021:116 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 1829ms total)
T544C 021:117 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 1830ms total)
T544C 021:118 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 1831ms total)
T544C 021:119 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 1832ms total)
T544C 021:120 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 1833ms total)
T544C 021:121 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 1834ms total)
T544C 021:122 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 0A 00 00 00  returns 0x04 (0001ms, 1835ms total)
T544C 021:123 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 0A 00 00 00  returns 0x04 (0001ms, 1836ms total)
T544C 021:124 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 00  returns 0x01 (0001ms, 1837ms total)
T544C 021:125 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1838ms total)
T544C 021:126 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 1839ms total)
T544C 021:127 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0002ms, 1841ms total)
T544C 021:129 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0001ms, 1842ms total)
T544C 021:130 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 20 41  returns 0x04 (0001ms, 1843ms total)
T544C 021:132 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 1844ms total)
T544C 021:133 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 1845ms total)
T544C 021:134 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 1846ms total)
T544C 021:135 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 00 00  returns 0x02 (0001ms, 1847ms total)
T544C 021:136 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0002ms, 1849ms total)
T544C 021:138 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 1850ms total)
T544C 021:139 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 1851ms total)
T544C 021:140 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 1852ms total)
T544C 021:141 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0001ms, 1853ms total)
T544C 021:142 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 1854ms total)
T4018 021:143 JLINK_IsHalted()  returns FALSE (0001ms, 1855ms total)
T4018 021:245 JLINK_IsHalted()  returns FALSE (0001ms, 1855ms total)
T4018 021:346 JLINK_IsHalted()  returns FALSE (0001ms, 1855ms total)
T4018 021:448 JLINK_IsHalted()  returns FALSE (0001ms, 1855ms total)
T4018 021:550 JLINK_IsHalted()  returns FALSE (0001ms, 1855ms total)
T544C 021:652 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1855ms total)
T544C 021:653 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1856ms total)
T544C 021:655 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 1857ms total)
T544C 021:656 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 00  returns 0x01 (0002ms, 1859ms total)
T544C 021:658 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0001ms, 1860ms total)
T544C 021:660 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 1861ms total)
T544C 021:661 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1862ms total)
T544C 021:662 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 1863ms total)
T544C 021:663 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 1864ms total)
T544C 021:664 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1865ms total)
T544C 021:666 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 1866ms total)
T544C 021:667 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0002ms, 1868ms total)
T544C 021:669 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 1869ms total)
T544C 021:670 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1870ms total)
T544C 021:671 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 1871ms total)
T544C 021:672 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 1872ms total)
T544C 021:673 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 1873ms total)
T544C 021:674 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1874ms total)
T544C 021:675 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0001ms, 1875ms total)
T544C 021:678 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 1876ms total)
T544C 021:679 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 1877ms total)
T544C 021:680 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 1878ms total)
T544C 021:681 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 1879ms total)
T544C 021:682 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 1880ms total)
T544C 021:683 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0002ms, 1882ms total)
T544C 021:685 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0000ms, 1882ms total)
T544C 021:685 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 0B 00 00 00  returns 0x04 (0001ms, 1883ms total)
T544C 021:687 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 0B 00 00 00  returns 0x04 (0001ms, 1884ms total)
T544C 021:689 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 00  returns 0x01 (0001ms, 1885ms total)
T544C 021:690 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1886ms total)
T544C 021:691 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 1887ms total)
T544C 021:692 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0001ms, 1888ms total)
T544C 021:693 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0001ms, 1889ms total)
T544C 021:694 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 30 41  returns 0x04 (0001ms, 1890ms total)
T544C 021:696 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 1891ms total)
T544C 021:697 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 1892ms total)
T544C 021:698 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 1893ms total)
T544C 021:699 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 00 00  returns 0x02 (0002ms, 1895ms total)
T544C 021:701 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0000ms, 1895ms total)
T544C 021:703 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 1896ms total)
T544C 021:704 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 1897ms total)
T544C 021:705 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 1898ms total)
T544C 021:706 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0001ms, 1899ms total)
T544C 021:707 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 1900ms total)
T4018 021:708 JLINK_IsHalted()  returns FALSE (0001ms, 1901ms total)
T4018 021:810 JLINK_IsHalted()  returns FALSE (0001ms, 1901ms total)
T4018 021:911 JLINK_IsHalted()  returns FALSE (0001ms, 1901ms total)
T4018 022:013 JLINK_IsHalted()  returns FALSE (0001ms, 1901ms total)
T4018 022:114 JLINK_IsHalted()  returns FALSE (0001ms, 1901ms total)
T544C 022:216 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1902ms total)
T544C 022:218 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1903ms total)
T544C 022:220 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 1904ms total)
T544C 022:221 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 03  returns 0x01 (0001ms, 1905ms total)
T544C 022:222 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0001ms, 1906ms total)
T544C 022:224 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 1907ms total)
T544C 022:225 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0000ms, 1907ms total)
T544C 022:225 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0002ms, 1909ms total)
T544C 022:227 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0000ms, 1909ms total)
T544C 022:228 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1911ms total)
T544C 022:230 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 1912ms total)
T544C 022:231 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 1913ms total)
T544C 022:232 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 1914ms total)
T544C 022:233 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1915ms total)
T544C 022:234 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0000ms, 1915ms total)
T544C 022:234 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0002ms, 1917ms total)
T544C 022:236 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 1918ms total)
T544C 022:237 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1919ms total)
T544C 022:238 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0001ms, 1920ms total)
T544C 022:243 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 1921ms total)
T544C 022:244 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 1922ms total)
T544C 022:245 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 1923ms total)
T544C 022:246 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 1924ms total)
T544C 022:247 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 1925ms total)
T544C 022:248 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0000ms, 1925ms total)
T544C 022:248 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 1926ms total)
T544C 022:249 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 0B 00 00 00  returns 0x04 (0001ms, 1927ms total)
T544C 022:252 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 0B 00 00 00  returns 0x04 (0001ms, 1928ms total)
T544C 022:253 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 00  returns 0x01 (0001ms, 1929ms total)
T544C 022:254 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1930ms total)
T544C 022:255 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 1931ms total)
T544C 022:256 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0001ms, 1932ms total)
T544C 022:257 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0001ms, 1933ms total)
T544C 022:258 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 30 41  returns 0x04 (0001ms, 1934ms total)
T544C 022:259 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 1935ms total)
T544C 022:260 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 1936ms total)
T544C 022:262 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 1937ms total)
T544C 022:263 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 00 00  returns 0x02 (0002ms, 1939ms total)
T544C 022:265 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 1940ms total)
T544C 022:266 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 1941ms total)
T544C 022:267 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 1942ms total)
T544C 022:269 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 1943ms total)
T544C 022:270 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0001ms, 1944ms total)
T544C 022:271 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 1945ms total)
T4018 022:272 JLINK_IsHalted()  returns FALSE (0001ms, 1946ms total)
T4018 022:374 JLINK_IsHalted()  returns FALSE (0001ms, 1946ms total)
T4018 022:475 JLINK_IsHalted()  returns FALSE (0001ms, 1946ms total)
T4018 022:577 JLINK_IsHalted()  returns FALSE (0001ms, 1946ms total)
T4018 022:679 JLINK_IsHalted()  returns FALSE (0001ms, 1946ms total)
T544C 022:781 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1946ms total)
T544C 022:782 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1947ms total)
T544C 022:785 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 1948ms total)
T544C 022:786 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 03  returns 0x01 (0000ms, 1948ms total)
T544C 022:786 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0002ms, 1950ms total)
T544C 022:788 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 1951ms total)
T544C 022:789 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1952ms total)
T544C 022:790 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 1953ms total)
T544C 022:791 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 1954ms total)
T544C 022:792 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1956ms total)
T544C 022:795 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 1957ms total)
T544C 022:796 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 1958ms total)
T544C 022:797 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 1959ms total)
T544C 022:798 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1960ms total)
T544C 022:799 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 1961ms total)
T544C 022:800 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 1962ms total)
T544C 022:801 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 1963ms total)
T544C 022:802 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1964ms total)
T544C 022:803 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0001ms, 1965ms total)
T544C 022:806 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 1966ms total)
T544C 022:807 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 1967ms total)
T544C 022:808 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 1968ms total)
T544C 022:809 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 1969ms total)
T544C 022:810 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 1970ms total)
T544C 022:811 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0000ms, 1970ms total)
T544C 022:811 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 1971ms total)
T544C 022:813 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 0C 00 00 00  returns 0x04 (0000ms, 1971ms total)
T544C 022:813 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 0C 00 00 00  returns 0x04 (0002ms, 1973ms total)
T544C 022:816 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 00  returns 0x01 (0001ms, 1974ms total)
T544C 022:817 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1975ms total)
T544C 022:818 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 1976ms total)
T544C 022:819 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0001ms, 1977ms total)
T544C 022:820 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0001ms, 1978ms total)
T544C 022:821 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 40 41  returns 0x04 (0001ms, 1979ms total)
T544C 022:822 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 1980ms total)
T544C 022:823 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 1981ms total)
T544C 022:825 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 1982ms total)
T544C 022:826 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 00 00  returns 0x02 (0001ms, 1983ms total)
T544C 022:828 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 1984ms total)
T544C 022:829 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 1985ms total)
T544C 022:830 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 1986ms total)
T544C 022:831 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 1987ms total)
T544C 022:832 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0001ms, 1988ms total)
T544C 022:833 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 1989ms total)
T4018 022:834 JLINK_IsHalted()  returns FALSE (0001ms, 1990ms total)
T4018 022:936 JLINK_IsHalted()  returns FALSE (0001ms, 1990ms total)
T4018 023:038 JLINK_IsHalted()  returns FALSE (0001ms, 1990ms total)
T4018 023:139 JLINK_IsHalted()  returns FALSE (0001ms, 1990ms total)
T4018 023:240 JLINK_IsHalted()  returns FALSE (0002ms, 1991ms total)
T544C 023:344 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1990ms total)
T544C 023:345 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1991ms total)
T544C 023:347 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 1992ms total)
T544C 023:349 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 03  returns 0x01 (0001ms, 1993ms total)
T544C 023:350 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0000ms, 1993ms total)
T544C 023:351 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 1995ms total)
T544C 023:352 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 1996ms total)
T544C 023:353 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 1997ms total)
T544C 023:354 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 1998ms total)
T544C 023:355 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 2000ms total)
T544C 023:359 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 2001ms total)
T544C 023:360 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0000ms, 2001ms total)
T544C 023:360 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0002ms, 2003ms total)
T544C 023:362 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2004ms total)
T544C 023:363 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 2005ms total)
T544C 023:364 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 2006ms total)
T544C 023:365 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 2007ms total)
T544C 023:366 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2008ms total)
T544C 023:367 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0001ms, 2009ms total)
T544C 023:370 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 2010ms total)
T544C 023:371 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 2011ms total)
T544C 023:372 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0002ms, 2013ms total)
T544C 023:374 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 2014ms total)
T544C 023:375 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2015ms total)
T544C 023:376 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0000ms, 2015ms total)
T544C 023:376 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 2016ms total)
T544C 023:377 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 0C 00 00 00  returns 0x04 (0001ms, 2017ms total)
T544C 023:379 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 0C 00 00 00  returns 0x04 (0001ms, 2018ms total)
T544C 023:381 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 00  returns 0x01 (0001ms, 2019ms total)
T544C 023:382 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2020ms total)
T544C 023:383 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 2021ms total)
T544C 023:384 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0001ms, 2022ms total)
T544C 023:385 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0001ms, 2023ms total)
T544C 023:386 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 40 41  returns 0x04 (0001ms, 2024ms total)
T544C 023:388 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 2025ms total)
T544C 023:389 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 2026ms total)
T544C 023:391 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 2027ms total)
T544C 023:392 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 00 00  returns 0x02 (0001ms, 2028ms total)
T544C 023:394 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 2029ms total)
T544C 023:395 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 2030ms total)
T544C 023:396 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 2031ms total)
T544C 023:397 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 2032ms total)
T544C 023:398 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0001ms, 2033ms total)
T544C 023:399 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 2034ms total)
T4018 023:400 JLINK_IsHalted()  returns FALSE (0001ms, 2035ms total)
T4018 023:502 JLINK_IsHalted()  returns FALSE (0001ms, 2035ms total)
T4018 023:603 JLINK_IsHalted()  returns FALSE (0001ms, 2035ms total)
T4018 023:706 JLINK_IsHalted()  returns FALSE (0001ms, 2035ms total)
T4018 023:807 JLINK_IsHalted()  returns FALSE (0001ms, 2035ms total)
T544C 023:909 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 2036ms total)
T544C 023:911 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2037ms total)
T544C 023:915 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 2038ms total)
T544C 023:916 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 03  returns 0x01 (0002ms, 2040ms total)
T544C 023:918 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0001ms, 2041ms total)
T544C 023:919 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 2042ms total)
T544C 023:921 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2044ms total)
T544C 023:922 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 2045ms total)
T544C 023:923 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 2046ms total)
T544C 023:924 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 24 47 4E 52 4D 43 2C 2C 56 2C 30 30 30 30 2E 30 ...  returns 0x20 (0001ms, 2047ms total)
T544C 023:926 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 2048ms total)
T544C 023:927 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 2049ms total)
T544C 023:928 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 2050ms total)
T544C 023:930 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2052ms total)
T544C 023:931 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 2053ms total)
T544C 023:932 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 2054ms total)
T544C 023:933 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 2055ms total)
T544C 023:934 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 24 47 4E 47 4C 4C 2C 30 30 30 30 2E 30 30 30 30 ...  returns 0x20 (0002ms, 2057ms total)
T544C 023:950 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0002ms, 2059ms total)
T544C 023:954 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 2060ms total)
T544C 023:955 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 2061ms total)
T544C 023:956 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0000ms, 2061ms total)
T544C 023:956 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0002ms, 2063ms total)
T544C 023:958 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2064ms total)
T544C 023:959 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 2065ms total)
T544C 023:960 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 2066ms total)
T544C 023:961 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 0D 00 00 00  returns 0x04 (0001ms, 2067ms total)
T544C 023:962 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 0D 00 00 00  returns 0x04 (0002ms, 2069ms total)
T544C 023:965 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 00  returns 0x01 (0001ms, 2070ms total)
T544C 023:966 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0002ms, 2072ms total)
T544C 023:968 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 2073ms total)
T544C 023:969 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0001ms, 2074ms total)
T544C 023:970 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0001ms, 2075ms total)
T544C 023:971 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 50 41  returns 0x04 (0001ms, 2076ms total)
T544C 023:972 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 2077ms total)
T544C 023:973 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 2078ms total)
T544C 023:975 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 2079ms total)
T544C 023:976 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 00 00  returns 0x02 (0001ms, 2080ms total)
T544C 023:978 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 2081ms total)
T544C 023:979 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 2082ms total)
T544C 023:980 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 2083ms total)
T544C 023:982 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 2084ms total)
T544C 023:983 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0001ms, 2085ms total)
T544C 023:984 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 2086ms total)
T4018 023:985 JLINK_IsHalted()  returns FALSE (0001ms, 2087ms total)
T4018 024:088 JLINK_IsHalted()  returns FALSE (0000ms, 2086ms total)
T4018 024:189 JLINK_IsHalted()  returns FALSE (0001ms, 2087ms total)
T4018 024:290 JLINK_IsHalted()  returns FALSE (0001ms, 2087ms total)
T4018 024:392 JLINK_IsHalted()  returns FALSE (0000ms, 2086ms total)
T544C 024:493 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 2088ms total)
T544C 024:495 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2089ms total)
T544C 024:498 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0002ms, 2091ms total)
T544C 024:500 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 02  returns 0x01 (0000ms, 2091ms total)
T544C 024:500 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0001ms, 2092ms total)
T544C 024:501 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 2093ms total)
T544C 024:502 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2094ms total)
T544C 024:503 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 2095ms total)
T544C 024:504 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 2096ms total)
T544C 024:505 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 2098ms total)
T544C 024:508 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 2099ms total)
T544C 024:509 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 2100ms total)
T544C 024:510 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0002ms, 2102ms total)
T544C 024:512 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2103ms total)
T544C 024:513 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 2104ms total)
T544C 024:514 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 2105ms total)
T544C 024:515 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 2106ms total)
T544C 024:516 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2107ms total)
T544C 024:531 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0002ms, 2109ms total)
T544C 024:534 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 2110ms total)
T544C 024:535 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 2111ms total)
T544C 024:536 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 2112ms total)
T544C 024:537 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 2113ms total)
T544C 024:538 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2114ms total)
T544C 024:539 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 2115ms total)
T544C 024:540 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 2116ms total)
T544C 024:541 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 0D 00 00 00  returns 0x04 (0001ms, 2117ms total)
T544C 024:543 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 0D 00 00 00  returns 0x04 (0001ms, 2118ms total)
T544C 024:544 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 00  returns 0x01 (0002ms, 2120ms total)
T544C 024:546 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2121ms total)
T544C 024:547 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 2122ms total)
T544C 024:548 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0001ms, 2123ms total)
T544C 024:549 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0002ms, 2125ms total)
T544C 024:551 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 50 41  returns 0x04 (0001ms, 2126ms total)
T544C 024:552 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 2127ms total)
T544C 024:553 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 2128ms total)
T544C 024:555 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 2129ms total)
T544C 024:556 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 00 00  returns 0x02 (0001ms, 2130ms total)
T544C 024:557 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 2131ms total)
T544C 024:558 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 2132ms total)
T544C 024:559 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 2133ms total)
T544C 024:561 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 2134ms total)
T544C 024:562 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0001ms, 2135ms total)
T544C 024:563 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 2136ms total)
T4018 024:564 JLINK_IsHalted()  returns FALSE (0001ms, 2137ms total)
T4018 024:665 JLINK_IsHalted()  returns FALSE (0001ms, 2137ms total)
T4018 024:767 JLINK_IsHalted()  returns FALSE (0001ms, 2137ms total)
T4018 024:868 JLINK_IsHalted()  returns FALSE (0001ms, 2137ms total)
T4018 024:969 JLINK_IsHalted()  returns FALSE (0000ms, 2136ms total)
T544C 025:071 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 2138ms total)
T544C 025:073 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2139ms total)
T544C 025:075 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 2140ms total)
T544C 025:076 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 03  returns 0x01 (0001ms, 2141ms total)
T544C 025:077 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0001ms, 2142ms total)
T544C 025:078 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 2143ms total)
T544C 025:079 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2144ms total)
T544C 025:080 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 2145ms total)
T544C 025:081 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0002ms, 2147ms total)
T544C 025:083 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2148ms total)
T544C 025:085 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 2149ms total)
T544C 025:087 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0000ms, 2149ms total)
T544C 025:088 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0000ms, 2149ms total)
T544C 025:088 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2150ms total)
T544C 025:089 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 2151ms total)
T544C 025:090 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 2152ms total)
T544C 025:091 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 2153ms total)
T544C 025:092 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 2155ms total)
T544C 025:094 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0000ms, 2155ms total)
T544C 025:096 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 2157ms total)
T544C 025:097 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 2158ms total)
T544C 025:098 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0002ms, 2160ms total)
T544C 025:100 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 2161ms total)
T544C 025:101 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2162ms total)
T544C 025:102 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 2163ms total)
T544C 025:103 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 2164ms total)
T544C 025:104 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 0E 00 00 00  returns 0x04 (0001ms, 2165ms total)
T544C 025:105 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 0E 00 00 00  returns 0x04 (0001ms, 2166ms total)
T544C 025:106 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 00  returns 0x01 (0001ms, 2167ms total)
T544C 025:107 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2168ms total)
T544C 025:108 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 2169ms total)
T544C 025:109 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0002ms, 2171ms total)
T544C 025:111 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0001ms, 2172ms total)
T544C 025:112 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 60 41  returns 0x04 (0001ms, 2173ms total)
T544C 025:113 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 2174ms total)
T544C 025:114 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 2175ms total)
T544C 025:115 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 2176ms total)
T544C 025:116 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 00 00  returns 0x02 (0001ms, 2177ms total)
T544C 025:117 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 2178ms total)
T544C 025:118 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0002ms, 2180ms total)
T544C 025:120 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 2181ms total)
T544C 025:122 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 2182ms total)
T544C 025:123 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0001ms, 2183ms total)
T544C 025:124 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 2184ms total)
T4018 025:125 JLINK_IsHalted()  returns FALSE (0001ms, 2185ms total)
T4018 025:227 JLINK_IsHalted()  returns FALSE (0001ms, 2185ms total)
T4018 025:329 JLINK_IsHalted()  returns FALSE (0001ms, 2185ms total)
T4018 025:430 JLINK_IsHalted()  returns FALSE (0001ms, 2185ms total)
T4018 025:532 JLINK_IsHalted()  returns FALSE (0001ms, 2185ms total)
T544C 025:633 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 2186ms total)
T544C 025:635 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2187ms total)
T544C 025:637 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 2188ms total)
T544C 025:638 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 01  returns 0x01 (0001ms, 2189ms total)
T544C 025:639 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0001ms, 2190ms total)
T544C 025:641 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 2191ms total)
T544C 025:642 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2192ms total)
T544C 025:643 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 2193ms total)
T544C 025:644 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 2194ms total)
T544C 025:645 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2195ms total)
T544C 025:647 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 2196ms total)
T544C 025:648 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 2197ms total)
T544C 025:649 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 2198ms total)
T544C 025:650 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2199ms total)
T544C 025:651 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 2200ms total)
T544C 025:652 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 2201ms total)
T544C 025:653 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 2202ms total)
T544C 025:654 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 2204ms total)
T544C 025:656 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0001ms, 2205ms total)
T544C 025:658 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 2206ms total)
T544C 025:659 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 2207ms total)
T544C 025:660 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 2208ms total)
T544C 025:661 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 2209ms total)
T544C 025:662 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2210ms total)
T544C 025:663 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 2211ms total)
T544C 025:664 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 2212ms total)
T544C 025:665 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 0F 00 00 00  returns 0x04 (0001ms, 2213ms total)
T544C 025:667 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 0F 00 00 00  returns 0x04 (0001ms, 2214ms total)
T544C 025:669 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 00  returns 0x01 (0002ms, 2216ms total)
T544C 025:671 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2217ms total)
T544C 025:672 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 2218ms total)
T544C 025:673 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0001ms, 2219ms total)
T544C 025:674 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0001ms, 2220ms total)
T544C 025:675 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 70 41  returns 0x04 (0001ms, 2221ms total)
T544C 025:677 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 2222ms total)
T544C 025:678 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 2223ms total)
T544C 025:679 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 2224ms total)
T544C 025:680 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 00 00  returns 0x02 (0001ms, 2225ms total)
T544C 025:682 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 2226ms total)
T544C 025:683 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 2227ms total)
T544C 025:684 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 2228ms total)
T544C 025:685 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 2229ms total)
T544C 025:686 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0001ms, 2230ms total)
T544C 025:687 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 2231ms total)
T4018 025:688 JLINK_IsHalted()  returns FALSE (0001ms, 2232ms total)
T4018 025:790 JLINK_IsHalted()  returns FALSE (0000ms, 2231ms total)
T4018 025:891 JLINK_IsHalted()  returns FALSE (0000ms, 2231ms total)
T4018 025:993 JLINK_IsHalted()  returns FALSE (0001ms, 2232ms total)
T4018 026:095 JLINK_IsHalted()  returns FALSE (0001ms, 2232ms total)
T544C 026:197 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 2233ms total)
T544C 026:199 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2234ms total)
T544C 026:201 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 2235ms total)
T544C 026:202 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 02  returns 0x01 (0001ms, 2236ms total)
T544C 026:204 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0000ms, 2236ms total)
T544C 026:205 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 2237ms total)
T544C 026:206 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2238ms total)
T544C 026:207 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 2239ms total)
T544C 026:208 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 2240ms total)
T544C 026:209 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2241ms total)
T544C 026:212 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 2242ms total)
T544C 026:213 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 2243ms total)
T544C 026:214 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 2244ms total)
T544C 026:215 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2245ms total)
T544C 026:216 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 2246ms total)
T544C 026:217 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 2247ms total)
T544C 026:218 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 2248ms total)
T544C 026:219 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 2250ms total)
T544C 026:221 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0001ms, 2251ms total)
T544C 026:224 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 2252ms total)
T544C 026:225 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 2253ms total)
T544C 026:226 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0002ms, 2255ms total)
T544C 026:228 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0000ms, 2255ms total)
T544C 026:229 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2256ms total)
T544C 026:230 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 2257ms total)
T544C 026:231 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 2258ms total)
T544C 026:232 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 0F 00 00 00  returns 0x04 (0001ms, 2259ms total)
T544C 026:234 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 0F 00 00 00  returns 0x04 (0001ms, 2260ms total)
T544C 026:235 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 01  returns 0x01 (0001ms, 2261ms total)
T544C 026:237 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2262ms total)
T544C 026:238 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 2263ms total)
T544C 026:239 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0001ms, 2264ms total)
T544C 026:240 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0001ms, 2265ms total)
T544C 026:241 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 70 41  returns 0x04 (0001ms, 2266ms total)
T544C 026:243 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 2267ms total)
T544C 026:244 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 2268ms total)
T544C 026:245 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 2269ms total)
T544C 026:246 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 28 00  returns 0x02 (0001ms, 2270ms total)
T544C 026:248 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 2271ms total)
T544C 026:249 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 2272ms total)
T544C 026:250 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 2273ms total)
T544C 026:251 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 2274ms total)
T544C 026:252 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0001ms, 2275ms total)
T544C 026:253 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 2276ms total)
T4018 026:254 JLINK_IsHalted()  returns FALSE (0001ms, 2277ms total)
T4018 026:356 JLINK_IsHalted()  returns FALSE (0001ms, 2277ms total)
T4018 026:458 JLINK_IsHalted()  returns FALSE (0001ms, 2277ms total)
T4018 026:559 JLINK_IsHalted()  returns FALSE (0001ms, 2277ms total)
T4018 026:661 JLINK_IsHalted()  returns FALSE (0001ms, 2277ms total)
T544C 026:763 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 2278ms total)
T544C 026:765 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2279ms total)
T544C 026:768 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 2280ms total)
T544C 026:769 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 02  returns 0x01 (0001ms, 2281ms total)
T544C 026:770 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 01 00  returns 0x02 (0001ms, 2282ms total)
T544C 026:771 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 2283ms total)
T544C 026:772 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2284ms total)
T544C 026:773 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 2285ms total)
T544C 026:774 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 2286ms total)
T544C 026:775 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 2288ms total)
T544C 026:778 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 2289ms total)
T544C 026:779 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0000ms, 2289ms total)
T544C 026:779 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 2290ms total)
T544C 026:780 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2291ms total)
T544C 026:782 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 2293ms total)
T544C 026:783 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 2294ms total)
T544C 026:784 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 2295ms total)
T544C 026:785 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2296ms total)
T544C 026:786 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0001ms, 2297ms total)
T544C 026:790 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 2298ms total)
T544C 026:791 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0000ms, 2298ms total)
T544C 026:791 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 2299ms total)
T544C 026:792 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 2300ms total)
T544C 026:793 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2301ms total)
T544C 026:794 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0002ms, 2303ms total)
T544C 026:796 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 2304ms total)
T544C 026:797 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 10 00 00 00  returns 0x04 (0001ms, 2305ms total)
T544C 026:798 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 10 00 00 00  returns 0x04 (0001ms, 2306ms total)
T544C 026:799 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 01  returns 0x01 (0001ms, 2307ms total)
T544C 026:801 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2308ms total)
T544C 026:802 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 2309ms total)
T544C 026:803 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0002ms, 2311ms total)
T544C 026:805 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 01 00  returns 0x02 (0001ms, 2312ms total)
T544C 026:806 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 80 41  returns 0x04 (0001ms, 2313ms total)
T544C 026:807 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 2314ms total)
T544C 026:808 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 2315ms total)
T544C 026:810 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 2316ms total)
T544C 026:811 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 28 00  returns 0x02 (0001ms, 2317ms total)
T544C 026:812 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 2318ms total)
T544C 026:814 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0000ms, 2318ms total)
T544C 026:815 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 2320ms total)
T544C 026:816 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 2321ms total)
T544C 026:817 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0001ms, 2322ms total)
T544C 026:818 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0002ms, 2324ms total)
T4018 026:820 JLINK_IsHalted()  returns FALSE (0001ms, 2325ms total)
T4018 026:921 JLINK_IsHalted()  returns FALSE (0002ms, 2326ms total)
T4018 027:024 JLINK_IsHalted()  returns FALSE (0001ms, 2325ms total)
T4018 027:125 JLINK_IsHalted()  returns FALSE (0001ms, 2325ms total)
T4018 027:227 JLINK_IsHalted()  returns FALSE (0001ms, 2325ms total)
T544C 027:329 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 2326ms total)
T544C 027:331 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2327ms total)
T544C 027:334 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 2328ms total)
T544C 027:335 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 01  returns 0x01 (0001ms, 2329ms total)
T544C 027:336 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 01 00  returns 0x02 (0001ms, 2330ms total)
T544C 027:337 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 2331ms total)
T544C 027:338 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0002ms, 2333ms total)
T544C 027:340 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0000ms, 2333ms total)
T544C 027:340 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 2334ms total)
T544C 027:341 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 2336ms total)
T544C 027:344 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 2337ms total)
T544C 027:345 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 2338ms total)
T544C 027:346 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 2339ms total)
T544C 027:347 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2340ms total)
T544C 027:348 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 2341ms total)
T544C 027:349 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 2342ms total)
T544C 027:350 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 2343ms total)
T544C 027:351 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 2345ms total)
T544C 027:353 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0001ms, 2346ms total)
T544C 027:355 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 2347ms total)
T544C 027:356 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0002ms, 2349ms total)
T544C 027:358 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 2350ms total)
T544C 027:359 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 2351ms total)
T544C 027:360 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2352ms total)
T544C 027:361 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0002ms, 2354ms total)
T544C 027:363 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 2355ms total)
T544C 027:364 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 10 00 00 00  returns 0x04 (0001ms, 2356ms total)
T544C 027:365 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 10 00 00 00  returns 0x04 (0001ms, 2357ms total)
T544C 027:367 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 01  returns 0x01 (0001ms, 2358ms total)
T544C 027:368 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2359ms total)
T544C 027:369 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 2360ms total)
T544C 027:370 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0001ms, 2361ms total)
T544C 027:371 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 01 00  returns 0x02 (0001ms, 2362ms total)
T544C 027:372 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 80 41  returns 0x04 (0001ms, 2363ms total)
T544C 027:373 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 2364ms total)
T544C 027:375 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0000ms, 2365ms total)
T544C 027:376 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 2367ms total)
T544C 027:377 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 28 00  returns 0x02 (0001ms, 2368ms total)
T544C 027:379 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 2369ms total)
T544C 027:380 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 2370ms total)
T544C 027:381 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 2371ms total)
T544C 027:383 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 2372ms total)
T544C 027:384 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0001ms, 2373ms total)
T544C 027:385 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 2374ms total)
T4018 027:386 JLINK_IsHalted()  returns FALSE (0000ms, 2374ms total)
T4018 027:488 JLINK_IsHalted()  returns FALSE (0001ms, 2375ms total)
T4018 027:590 JLINK_IsHalted()  returns FALSE (0000ms, 2374ms total)
T4018 027:691 JLINK_IsHalted()  returns FALSE (0000ms, 2374ms total)
T4018 027:792 JLINK_IsHalted()  returns FALSE (0001ms, 2375ms total)
T544C 027:895 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 2376ms total)
T544C 027:897 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2377ms total)
T544C 027:901 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 2378ms total)
T544C 027:902 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 00  returns 0x01 (0001ms, 2379ms total)
T544C 027:903 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 02 00  returns 0x02 (0001ms, 2380ms total)
T544C 027:904 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 2381ms total)
T544C 027:905 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2382ms total)
T544C 027:906 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 2383ms total)
T544C 027:907 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 2384ms total)
T544C 027:908 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2385ms total)
T544C 027:911 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 2387ms total)
T544C 027:912 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 2388ms total)
T544C 027:913 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 2389ms total)
T544C 027:914 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2390ms total)
T544C 027:915 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0002ms, 2392ms total)
T544C 027:917 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 2393ms total)
T544C 027:919 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 2395ms total)
T544C 027:920 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2396ms total)
T544C 027:921 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0001ms, 2397ms total)
T544C 027:924 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 2398ms total)
T544C 027:925 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 2399ms total)
T544C 027:926 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 2400ms total)
T544C 027:927 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 2401ms total)
T544C 027:928 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2402ms total)
T544C 027:929 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0002ms, 2404ms total)
T544C 027:931 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 2405ms total)
T544C 027:932 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 11 00 00 00  returns 0x04 (0001ms, 2406ms total)
T544C 027:933 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 11 00 00 00  returns 0x04 (0002ms, 2408ms total)
T544C 027:935 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 01  returns 0x01 (0001ms, 2409ms total)
T544C 027:936 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2410ms total)
T544C 027:937 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0000ms, 2410ms total)
T544C 027:937 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0002ms, 2412ms total)
T544C 027:939 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 02 00  returns 0x02 (0001ms, 2413ms total)
T544C 027:940 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 88 41  returns 0x04 (0001ms, 2414ms total)
T544C 027:942 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 2415ms total)
T544C 027:943 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0002ms, 2417ms total)
T544C 027:946 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 2418ms total)
T544C 027:947 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 28 00  returns 0x02 (0001ms, 2419ms total)
T544C 027:949 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 2420ms total)
T544C 027:950 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 2421ms total)
T544C 027:951 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 2422ms total)
T544C 027:953 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 2423ms total)
T544C 027:954 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0001ms, 2424ms total)
T544C 027:955 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 2425ms total)
T4018 027:956 JLINK_IsHalted()  returns FALSE (0001ms, 2426ms total)
T4018 028:058 JLINK_IsHalted()  returns FALSE (0001ms, 2426ms total)
T4018 028:160 JLINK_IsHalted()  returns FALSE (0001ms, 2426ms total)
T4018 028:261 JLINK_IsHalted()  returns FALSE (0001ms, 2426ms total)
T4018 028:363 JLINK_IsHalted()  returns FALSE (0001ms, 2426ms total)
T544C 028:465 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 2427ms total)
T544C 028:467 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2428ms total)
T544C 028:470 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 2429ms total)
T544C 028:471 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 00  returns 0x01 (0001ms, 2430ms total)
T544C 028:472 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 02 00  returns 0x02 (0001ms, 2431ms total)
T544C 028:473 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 2432ms total)
T544C 028:474 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2433ms total)
T544C 028:475 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 2434ms total)
T544C 028:476 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 2435ms total)
T544C 028:477 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 2435ms total)
T544C 028:479 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 2436ms total)
T544C 028:480 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 2437ms total)
T544C 028:481 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 2438ms total)
T544C 028:482 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0002ms, 2440ms total)
T544C 028:484 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0000ms, 2440ms total)
T544C 028:484 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0002ms, 2442ms total)
T544C 028:486 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 2443ms total)
T544C 028:487 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2444ms total)
T544C 028:488 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0001ms, 2445ms total)
T544C 028:491 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0002ms, 2447ms total)
T544C 028:493 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0000ms, 2447ms total)
T544C 028:493 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 2448ms total)
T544C 028:494 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 2449ms total)
T544C 028:495 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2450ms total)
T544C 028:496 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 2451ms total)
T544C 028:497 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 2452ms total)
T544C 028:498 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 11 00 00 00  returns 0x04 (0001ms, 2453ms total)
T544C 028:500 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 11 00 00 00  returns 0x04 (0001ms, 2454ms total)
T544C 028:501 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 01  returns 0x01 (0001ms, 2455ms total)
T544C 028:502 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2456ms total)
T544C 028:503 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 2457ms total)
T544C 028:504 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0001ms, 2458ms total)
T544C 028:505 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 02 00  returns 0x02 (0001ms, 2459ms total)
T544C 028:507 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 88 41  returns 0x04 (0001ms, 2460ms total)
T544C 028:508 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0002ms, 2462ms total)
T544C 028:510 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0000ms, 2462ms total)
T544C 028:511 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 2463ms total)
T544C 028:512 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 28 00  returns 0x02 (0001ms, 2464ms total)
T544C 028:513 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 2465ms total)
T544C 028:514 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 2466ms total)
T544C 028:515 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 2467ms total)
T544C 028:516 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 2468ms total)
T544C 028:517 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0001ms, 2469ms total)
T544C 028:518 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 2470ms total)
T4018 028:519 JLINK_IsHalted()  returns FALSE (0001ms, 2471ms total)
T4018 028:621 JLINK_IsHalted()  returns FALSE (0001ms, 2471ms total)
T4018 028:723 JLINK_IsHalted()  returns FALSE (0001ms, 2471ms total)
T4018 028:825 JLINK_IsHalted()  returns FALSE (0000ms, 2470ms total)
T4018 028:927 JLINK_IsHalted()  returns FALSE (0000ms, 2470ms total)
T544C 029:029 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2471ms total)
T544C 029:030 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0002ms, 2473ms total)
T544C 029:033 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 2474ms total)
T544C 029:034 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 00  returns 0x01 (0001ms, 2475ms total)
T544C 029:035 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 03 00  returns 0x02 (0001ms, 2476ms total)
T544C 029:036 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 2477ms total)
T544C 029:038 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2478ms total)
T544C 029:039 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 2479ms total)
T544C 029:040 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 2480ms total)
T544C 029:041 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2481ms total)
T544C 029:043 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 2482ms total)
T544C 029:044 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 2483ms total)
T544C 029:045 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 2484ms total)
T544C 029:046 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2485ms total)
T544C 029:047 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 2486ms total)
T544C 029:048 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 2487ms total)
T544C 029:049 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 2488ms total)
T544C 029:050 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 2490ms total)
T544C 029:052 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0001ms, 2491ms total)
T544C 029:056 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 2492ms total)
T544C 029:057 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 2493ms total)
T544C 029:058 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 2494ms total)
T544C 029:059 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 2495ms total)
T544C 029:060 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2496ms total)
T544C 029:061 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 2497ms total)
T544C 029:062 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 2498ms total)
T544C 029:063 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 12 00 00 00  returns 0x04 (0001ms, 2499ms total)
T544C 029:064 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 12 00 00 00  returns 0x04 (0001ms, 2500ms total)
T544C 029:066 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 01  returns 0x01 (0001ms, 2501ms total)
T544C 029:067 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2502ms total)
T544C 029:068 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 2503ms total)
T544C 029:069 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0001ms, 2504ms total)
T544C 029:070 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 03 00  returns 0x02 (0001ms, 2505ms total)
T544C 029:071 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 90 41  returns 0x04 (0001ms, 2506ms total)
T544C 029:073 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 2507ms total)
T544C 029:074 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 2508ms total)
T544C 029:075 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 2509ms total)
T544C 029:076 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 28 00  returns 0x02 (0001ms, 2510ms total)
T544C 029:078 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 2511ms total)
T544C 029:079 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 2512ms total)
T544C 029:080 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 2513ms total)
T544C 029:081 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 2514ms total)
T544C 029:082 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0001ms, 2515ms total)
T544C 029:083 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 2516ms total)
T4018 029:084 JLINK_IsHalted()  returns FALSE (0001ms, 2517ms total)
T4018 029:186 JLINK_IsHalted()  returns FALSE (0001ms, 2517ms total)
T4018 029:287 JLINK_IsHalted()  returns FALSE (0001ms, 2517ms total)
T4018 029:389 JLINK_IsHalted()  returns FALSE (0001ms, 2517ms total)
T4018 029:490 JLINK_IsHalted()  returns FALSE (0001ms, 2517ms total)
T544C 029:592 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 2518ms total)
T544C 029:594 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2519ms total)
T544C 029:596 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 2520ms total)
T544C 029:598 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 00  returns 0x01 (0001ms, 2521ms total)
T544C 029:599 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 03 00  returns 0x02 (0001ms, 2522ms total)
T544C 029:600 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 2523ms total)
T544C 029:601 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2524ms total)
T544C 029:602 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 2525ms total)
T544C 029:603 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 2526ms total)
T544C 029:604 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2527ms total)
T544C 029:606 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 2528ms total)
T544C 029:607 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 2529ms total)
T544C 029:609 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0000ms, 2529ms total)
T544C 029:609 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2530ms total)
T544C 029:610 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 2531ms total)
T544C 029:611 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 2532ms total)
T544C 029:613 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 2534ms total)
T544C 029:614 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2535ms total)
T544C 029:615 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0001ms, 2536ms total)
T544C 029:618 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 2537ms total)
T544C 029:619 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 2538ms total)
T544C 029:620 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 2539ms total)
T544C 029:621 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 2540ms total)
T544C 029:622 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2541ms total)
T544C 029:623 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 2542ms total)
T544C 029:624 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 2543ms total)
T544C 029:625 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 13 00 00 00  returns 0x04 (0001ms, 2544ms total)
T544C 029:627 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 13 00 00 00  returns 0x04 (0002ms, 2546ms total)
T544C 029:629 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 01  returns 0x01 (0001ms, 2547ms total)
T544C 029:630 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2548ms total)
T544C 029:631 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 2549ms total)
T544C 029:633 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0001ms, 2550ms total)
T544C 029:634 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 04 00  returns 0x02 (0001ms, 2551ms total)
T544C 029:635 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 98 41  returns 0x04 (0001ms, 2552ms total)
T544C 029:637 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 2553ms total)
T544C 029:638 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 2554ms total)
T544C 029:639 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 2555ms total)
T544C 029:640 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 28 00  returns 0x02 (0001ms, 2556ms total)
T544C 029:642 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 2557ms total)
T544C 029:643 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 2558ms total)
T544C 029:644 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 2559ms total)
T544C 029:645 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0002ms, 2561ms total)
T544C 029:647 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0001ms, 2562ms total)
T544C 029:648 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 2563ms total)
T4018 029:649 JLINK_IsHalted()  returns FALSE (0001ms, 2564ms total)
T4018 029:751 JLINK_IsHalted()  returns FALSE (0001ms, 2564ms total)
T4018 029:853 JLINK_IsHalted()  returns FALSE (0001ms, 2564ms total)
T4018 029:955 JLINK_IsHalted()  returns FALSE (0001ms, 2564ms total)
T4018 030:057 JLINK_IsHalted()  returns FALSE (0001ms, 2564ms total)
T544C 030:159 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 2565ms total)
T544C 030:161 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2566ms total)
T544C 030:163 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 2567ms total)
T544C 030:164 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 00  returns 0x01 (0001ms, 2568ms total)
T544C 030:165 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 04 00  returns 0x02 (0001ms, 2569ms total)
T544C 030:166 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 2570ms total)
T544C 030:167 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2571ms total)
T544C 030:168 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 2572ms total)
T544C 030:169 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0002ms, 2574ms total)
T544C 030:171 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2575ms total)
T544C 030:174 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 2576ms total)
T544C 030:175 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 2577ms total)
T544C 030:176 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 2578ms total)
T544C 030:177 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2579ms total)
T544C 030:178 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 2580ms total)
T544C 030:179 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 2581ms total)
T544C 030:180 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 2582ms total)
T544C 030:181 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2583ms total)
T544C 030:182 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0002ms, 2585ms total)
T544C 030:185 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 2586ms total)
T544C 030:186 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 2587ms total)
T544C 030:187 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0002ms, 2589ms total)
T544C 030:189 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 2590ms total)
T544C 030:190 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2591ms total)
T544C 030:191 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 2592ms total)
T544C 030:192 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 2593ms total)
T544C 030:193 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 13 00 00 00  returns 0x04 (0001ms, 2594ms total)
T544C 030:194 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 13 00 00 00  returns 0x04 (0001ms, 2595ms total)
T544C 030:195 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 01  returns 0x01 (0001ms, 2596ms total)
T544C 030:196 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2597ms total)
T544C 030:197 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 2598ms total)
T544C 030:198 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0002ms, 2600ms total)
T544C 030:200 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 04 00  returns 0x02 (0001ms, 2601ms total)
T544C 030:201 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 98 41  returns 0x04 (0001ms, 2602ms total)
T544C 030:202 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0002ms, 2604ms total)
T544C 030:204 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 2605ms total)
T544C 030:205 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 2606ms total)
T544C 030:206 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 28 00  returns 0x02 (0001ms, 2607ms total)
T544C 030:208 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 2608ms total)
T544C 030:209 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 2609ms total)
T544C 030:210 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 2610ms total)
T544C 030:211 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 2611ms total)
T544C 030:212 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0001ms, 2612ms total)
T544C 030:213 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 2613ms total)
T4018 030:214 JLINK_IsHalted()  returns FALSE (0001ms, 2614ms total)
T4018 030:317 JLINK_IsHalted()  returns FALSE (0001ms, 2614ms total)
T4018 030:418 JLINK_IsHalted()  returns FALSE (0001ms, 2614ms total)
T4018 030:519 JLINK_IsHalted()  returns FALSE (0001ms, 2614ms total)
T4018 030:621 JLINK_IsHalted()  returns FALSE (0001ms, 2614ms total)
T544C 030:723 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 2615ms total)
T544C 030:725 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2616ms total)
T544C 030:727 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 2617ms total)
T544C 030:728 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 00  returns 0x01 (0001ms, 2618ms total)
T544C 030:729 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 05 00  returns 0x02 (0001ms, 2619ms total)
T544C 030:730 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 2620ms total)
T544C 030:731 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2621ms total)
T544C 030:732 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 2622ms total)
T544C 030:733 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 2623ms total)
T544C 030:734 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 2625ms total)
T544C 030:737 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 2626ms total)
T544C 030:738 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 2627ms total)
T544C 030:739 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 2628ms total)
T544C 030:740 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2629ms total)
T544C 030:741 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 2630ms total)
T544C 030:742 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 2631ms total)
T544C 030:743 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 2632ms total)
T544C 030:744 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2633ms total)
T544C 030:745 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0001ms, 2634ms total)
T544C 030:747 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 2635ms total)
T544C 030:748 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 2636ms total)
T544C 030:749 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 2637ms total)
T544C 030:750 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 2638ms total)
T544C 030:752 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2640ms total)
T544C 030:753 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 2641ms total)
T544C 030:754 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 2642ms total)
T544C 030:755 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 14 00 00 00  returns 0x04 (0001ms, 2643ms total)
T544C 030:757 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 14 00 00 00  returns 0x04 (0001ms, 2644ms total)
T544C 030:758 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 01  returns 0x01 (0001ms, 2645ms total)
T544C 030:759 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2646ms total)
T544C 030:760 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 2647ms total)
T544C 030:761 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0001ms, 2648ms total)
T544C 030:762 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 05 00  returns 0x02 (0001ms, 2649ms total)
T544C 030:764 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 A0 41  returns 0x04 (0001ms, 2650ms total)
T544C 030:765 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 2651ms total)
T544C 030:766 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 2652ms total)
T544C 030:768 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 2653ms total)
T544C 030:769 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 28 00  returns 0x02 (0001ms, 2654ms total)
T544C 030:770 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 2655ms total)
T544C 030:771 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 2656ms total)
T544C 030:772 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 2657ms total)
T544C 030:774 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 2658ms total)
T544C 030:775 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0001ms, 2659ms total)
T544C 030:776 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 2660ms total)
T4018 030:777 JLINK_IsHalted()  returns FALSE (0000ms, 2660ms total)
T4018 030:879 JLINK_IsHalted()  returns FALSE (0001ms, 2661ms total)
T4018 030:980 JLINK_IsHalted()  returns FALSE (0001ms, 2661ms total)
T4018 031:082 JLINK_IsHalted()  returns FALSE (0001ms, 2661ms total)
T4018 031:184 JLINK_IsHalted()  returns FALSE (0000ms, 2660ms total)
T544C 031:286 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 2662ms total)
T544C 031:288 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2663ms total)
T544C 031:290 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 2664ms total)
T544C 031:291 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 00  returns 0x01 (0001ms, 2665ms total)
T544C 031:292 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 05 00  returns 0x02 (0001ms, 2666ms total)
T544C 031:293 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 2667ms total)
T544C 031:294 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2668ms total)
T544C 031:295 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0002ms, 2670ms total)
T544C 031:297 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 2671ms total)
T544C 031:298 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2672ms total)
T544C 031:300 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 2673ms total)
T544C 031:301 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 2674ms total)
T544C 031:302 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 2675ms total)
T544C 031:303 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2676ms total)
T544C 031:304 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 2677ms total)
T544C 031:305 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 2678ms total)
T544C 031:306 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 2679ms total)
T544C 031:307 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2680ms total)
T544C 031:308 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0001ms, 2681ms total)
T544C 031:313 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 2682ms total)
T544C 031:314 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 2683ms total)
T544C 031:315 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 2684ms total)
T544C 031:316 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 2685ms total)
T544C 031:317 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2686ms total)
T544C 031:318 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 2687ms total)
T544C 031:319 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 2688ms total)
T544C 031:320 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 14 00 00 00  returns 0x04 (0001ms, 2689ms total)
T544C 031:321 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 14 00 00 00  returns 0x04 (0001ms, 2690ms total)
T544C 031:323 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 01  returns 0x01 (0001ms, 2691ms total)
T544C 031:324 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2692ms total)
T544C 031:325 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 2693ms total)
T544C 031:326 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0001ms, 2694ms total)
T544C 031:327 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 05 00  returns 0x02 (0001ms, 2695ms total)
T544C 031:328 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 A0 41  returns 0x04 (0001ms, 2696ms total)
T544C 031:329 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 2697ms total)
T544C 031:330 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 2698ms total)
T544C 031:331 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 2699ms total)
T544C 031:332 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 28 00  returns 0x02 (0002ms, 2701ms total)
T544C 031:334 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 2702ms total)
T544C 031:335 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 2703ms total)
T544C 031:336 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 2704ms total)
T544C 031:337 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 2705ms total)
T544C 031:338 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0002ms, 2707ms total)
T544C 031:340 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 2708ms total)
T4018 031:341 JLINK_IsHalted()  returns FALSE (0001ms, 2709ms total)
T4018 031:442 JLINK_IsHalted()  returns FALSE (0001ms, 2709ms total)
T4018 031:544 JLINK_IsHalted()  returns FALSE (0001ms, 2709ms total)
T4018 031:645 JLINK_IsHalted()  returns FALSE (0000ms, 2708ms total)
T4018 031:747 JLINK_IsHalted()  returns FALSE (0001ms, 2709ms total)
T544C 031:848 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 2710ms total)
T544C 031:850 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2711ms total)
T544C 031:852 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 2712ms total)
T544C 031:853 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 00  returns 0x01 (0001ms, 2713ms total)
T544C 031:854 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 06 00  returns 0x02 (0002ms, 2715ms total)
T544C 031:856 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 2716ms total)
T544C 031:857 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2717ms total)
T544C 031:858 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 2718ms total)
T544C 031:859 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 2719ms total)
T544C 031:860 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2720ms total)
T544C 031:862 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 2721ms total)
T544C 031:863 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0002ms, 2723ms total)
T544C 031:865 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 2724ms total)
T544C 031:866 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0000ms, 2724ms total)
T544C 031:866 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0002ms, 2726ms total)
T544C 031:868 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0000ms, 2726ms total)
T544C 031:868 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 2727ms total)
T544C 031:869 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 2729ms total)
T544C 031:871 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0001ms, 2730ms total)
T544C 031:875 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 2731ms total)
T544C 031:876 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 2732ms total)
T544C 031:877 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 2733ms total)
T544C 031:878 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 2734ms total)
T544C 031:879 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2735ms total)
T544C 031:880 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 2736ms total)
T544C 031:881 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 2737ms total)
T544C 031:882 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 15 00 00 00  returns 0x04 (0001ms, 2738ms total)
T544C 031:883 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 15 00 00 00  returns 0x04 (0002ms, 2740ms total)
T544C 031:885 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 01  returns 0x01 (0001ms, 2741ms total)
T544C 031:886 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2742ms total)
T544C 031:887 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 2743ms total)
T544C 031:888 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0001ms, 2744ms total)
T544C 031:889 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 06 00  returns 0x02 (0001ms, 2745ms total)
T544C 031:890 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 A8 41  returns 0x04 (0001ms, 2746ms total)
T544C 031:891 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0002ms, 2748ms total)
T544C 031:893 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 2749ms total)
T544C 031:895 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 2750ms total)
T544C 031:896 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 28 00  returns 0x02 (0001ms, 2751ms total)
T544C 031:897 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 2752ms total)
T544C 031:898 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 2753ms total)
T544C 031:899 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 2754ms total)
T544C 031:901 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 2755ms total)
T544C 031:902 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0001ms, 2756ms total)
T544C 031:903 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 2757ms total)
T4018 031:904 JLINK_IsHalted()  returns FALSE (0001ms, 2758ms total)
T4018 032:006 JLINK_IsHalted()  returns FALSE (0001ms, 2758ms total)
T4018 032:108 JLINK_IsHalted()  returns FALSE (0000ms, 2757ms total)
T4018 032:210 JLINK_IsHalted()  returns FALSE (0001ms, 2758ms total)
T4018 032:312 JLINK_IsHalted()  returns FALSE (0001ms, 2758ms total)
T544C 032:413 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 2759ms total)
T544C 032:415 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2760ms total)
T544C 032:418 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0002ms, 2762ms total)
T544C 032:420 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 00  returns 0x01 (0000ms, 2762ms total)
T544C 032:420 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 06 00  returns 0x02 (0002ms, 2764ms total)
T544C 032:422 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 2765ms total)
T544C 032:423 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2766ms total)
T544C 032:424 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 2767ms total)
T544C 032:425 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 2768ms total)
T544C 032:426 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2769ms total)
T544C 032:428 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 2770ms total)
T544C 032:429 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 2771ms total)
T544C 032:430 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 2772ms total)
T544C 032:431 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2773ms total)
T544C 032:432 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 2774ms total)
T544C 032:433 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 2775ms total)
T544C 032:434 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 2776ms total)
T544C 032:435 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 2778ms total)
T544C 032:437 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0001ms, 2779ms total)
T544C 032:439 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 2780ms total)
T544C 032:441 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0000ms, 2780ms total)
T544C 032:441 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 2781ms total)
T544C 032:443 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 2782ms total)
T544C 032:444 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2783ms total)
T544C 032:445 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 2784ms total)
T544C 032:446 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 2785ms total)
T544C 032:447 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 15 00 00 00  returns 0x04 (0001ms, 2786ms total)
T544C 032:448 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 15 00 00 00  returns 0x04 (0001ms, 2787ms total)
T544C 032:450 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 01  returns 0x01 (0001ms, 2788ms total)
T544C 032:451 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2789ms total)
T544C 032:452 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 2790ms total)
T544C 032:453 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0001ms, 2791ms total)
T544C 032:454 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 06 00  returns 0x02 (0001ms, 2792ms total)
T544C 032:455 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 A8 41  returns 0x04 (0001ms, 2793ms total)
T544C 032:457 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 2794ms total)
T544C 032:458 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 2795ms total)
T544C 032:459 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0002ms, 2797ms total)
T544C 032:461 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 28 00  returns 0x02 (0000ms, 2797ms total)
T544C 032:462 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 2798ms total)
T544C 032:463 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 2799ms total)
T544C 032:464 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 2800ms total)
T544C 032:466 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 2801ms total)
T544C 032:467 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0001ms, 2802ms total)
T544C 032:468 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 2803ms total)
T4018 032:469 JLINK_IsHalted()  returns FALSE (0001ms, 2804ms total)
T4018 032:571 JLINK_IsHalted()  returns FALSE (0000ms, 2803ms total)
T4018 032:672 JLINK_IsHalted()  returns FALSE (0001ms, 2804ms total)
T4018 032:774 JLINK_IsHalted()  returns FALSE (0001ms, 2804ms total)
T4018 032:876 JLINK_IsHalted()  returns FALSE (0001ms, 2804ms total)
T544C 032:977 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 2805ms total)
T544C 032:979 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2806ms total)
T544C 032:981 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 2807ms total)
T544C 032:982 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 00  returns 0x01 (0001ms, 2808ms total)
T544C 032:984 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 07 00  returns 0x02 (0000ms, 2808ms total)
T544C 032:985 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 2809ms total)
T544C 032:986 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2810ms total)
T544C 032:987 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 2811ms total)
T544C 032:988 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 2812ms total)
T544C 032:989 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2813ms total)
T544C 032:991 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 2814ms total)
T544C 032:992 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 2815ms total)
T544C 032:993 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 2816ms total)
T544C 032:994 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0000ms, 2816ms total)
T544C 032:996 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0000ms, 2818ms total)
T544C 032:996 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 2819ms total)
T544C 032:997 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 2820ms total)
T544C 032:998 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 2822ms total)
T544C 033:000 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0001ms, 2823ms total)
T544C 033:003 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 2824ms total)
T544C 033:004 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 2825ms total)
T544C 033:005 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 2826ms total)
T544C 033:006 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 2827ms total)
T544C 033:007 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2828ms total)
T544C 033:008 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 2829ms total)
T544C 033:009 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 2830ms total)
T544C 033:010 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 16 00 00 00  returns 0x04 (0001ms, 2831ms total)
T544C 033:012 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 16 00 00 00  returns 0x04 (0000ms, 2831ms total)
T544C 033:013 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 01  returns 0x01 (0001ms, 2832ms total)
T544C 033:014 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2833ms total)
T544C 033:015 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 2834ms total)
T544C 033:016 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0001ms, 2835ms total)
T544C 033:017 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 07 00  returns 0x02 (0001ms, 2836ms total)
T544C 033:019 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 B0 41  returns 0x04 (0001ms, 2837ms total)
T544C 033:020 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 2838ms total)
T544C 033:021 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 2839ms total)
T544C 033:022 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0002ms, 2841ms total)
T544C 033:024 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 28 00  returns 0x02 (0001ms, 2842ms total)
T544C 033:025 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 2843ms total)
T544C 033:026 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0000ms, 2843ms total)
T544C 033:028 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 2846ms total)
T544C 033:029 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 2847ms total)
T544C 033:030 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0001ms, 2848ms total)
T544C 033:031 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 2849ms total)
T4018 033:032 JLINK_IsHalted()  returns FALSE (0001ms, 2850ms total)
T4018 033:133 JLINK_IsHalted()  returns FALSE (0001ms, 2850ms total)
T4018 033:235 JLINK_IsHalted()  returns FALSE (0001ms, 2850ms total)
T4018 033:337 JLINK_IsHalted()  returns FALSE (0000ms, 2849ms total)
T4018 033:439 JLINK_IsHalted()  returns FALSE (0001ms, 2850ms total)
T544C 033:540 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 2851ms total)
T544C 033:542 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2852ms total)
T544C 033:546 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0002ms, 2854ms total)
T544C 033:548 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 00  returns 0x01 (0001ms, 2855ms total)
T544C 033:549 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 07 00  returns 0x02 (0001ms, 2856ms total)
T544C 033:550 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 2857ms total)
T544C 033:551 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2858ms total)
T544C 033:552 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 2859ms total)
T544C 033:553 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 2860ms total)
T544C 033:554 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 2862ms total)
T544C 033:559 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0000ms, 2862ms total)
T544C 033:559 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 2863ms total)
T544C 033:560 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0002ms, 2865ms total)
T544C 033:562 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2866ms total)
T544C 033:563 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 2867ms total)
T544C 033:564 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 2868ms total)
T544C 033:565 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 2869ms total)
T544C 033:566 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 2871ms total)
T544C 033:568 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0001ms, 2872ms total)
T544C 033:570 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 2873ms total)
T544C 033:571 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 2874ms total)
T544C 033:572 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0002ms, 2876ms total)
T544C 033:574 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 2877ms total)
T544C 033:575 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2878ms total)
T544C 033:576 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 2879ms total)
T544C 033:577 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 2880ms total)
T544C 033:578 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 16 00 00 00  returns 0x04 (0001ms, 2881ms total)
T544C 033:579 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 16 00 00 00  returns 0x04 (0001ms, 2882ms total)
T544C 033:581 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 01  returns 0x01 (0001ms, 2884ms total)
T544C 033:582 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2885ms total)
T544C 033:583 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 2886ms total)
T544C 033:584 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0001ms, 2887ms total)
T544C 033:585 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 07 00  returns 0x02 (0001ms, 2888ms total)
T544C 033:586 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 B0 41  returns 0x04 (0001ms, 2889ms total)
T544C 033:588 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 2890ms total)
T544C 033:589 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 2891ms total)
T544C 033:590 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 2892ms total)
T544C 033:591 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 28 00  returns 0x02 (0001ms, 2893ms total)
T544C 033:593 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 2894ms total)
T544C 033:594 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 2895ms total)
T544C 033:595 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 2896ms total)
T544C 033:596 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 2897ms total)
T544C 033:597 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0002ms, 2899ms total)
T544C 033:599 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 2900ms total)
T4018 033:600 JLINK_IsHalted()  returns FALSE (0001ms, 2901ms total)
T4018 033:701 JLINK_IsHalted()  returns FALSE (0001ms, 2901ms total)
T4018 033:803 JLINK_IsHalted()  returns FALSE (0001ms, 2901ms total)
T4018 033:904 JLINK_IsHalted()  returns FALSE (0001ms, 2901ms total)
T4018 034:006 JLINK_IsHalted()  returns FALSE (0002ms, 2902ms total)
T544C 034:108 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 2902ms total)
T544C 034:110 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2903ms total)
T544C 034:112 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 2904ms total)
T544C 034:113 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 00  returns 0x01 (0001ms, 2905ms total)
T544C 034:114 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 08 00  returns 0x02 (0002ms, 2907ms total)
T544C 034:116 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 2908ms total)
T544C 034:117 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2909ms total)
T544C 034:118 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 2910ms total)
T544C 034:119 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 2911ms total)
T544C 034:120 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2912ms total)
T544C 034:122 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 2913ms total)
T544C 034:123 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 2914ms total)
T544C 034:124 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 2915ms total)
T544C 034:125 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2916ms total)
T544C 034:126 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 2917ms total)
T544C 034:127 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 2918ms total)
T544C 034:128 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 2919ms total)
T544C 034:129 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 2921ms total)
T544C 034:131 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0001ms, 2922ms total)
T544C 034:134 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 2923ms total)
T544C 034:135 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 2924ms total)
T544C 034:136 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 2925ms total)
T544C 034:137 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 2926ms total)
T544C 034:138 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2927ms total)
T544C 034:139 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 2928ms total)
T544C 034:140 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 2929ms total)
T544C 034:141 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 17 00 00 00  returns 0x04 (0001ms, 2930ms total)
T544C 034:142 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 17 00 00 00  returns 0x04 (0001ms, 2931ms total)
T544C 034:143 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 01  returns 0x01 (0001ms, 2932ms total)
T544C 034:144 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2933ms total)
T544C 034:145 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 2934ms total)
T544C 034:146 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0002ms, 2936ms total)
T544C 034:148 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 08 00  returns 0x02 (0001ms, 2937ms total)
T544C 034:149 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 B8 41  returns 0x04 (0001ms, 2938ms total)
T544C 034:150 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 2939ms total)
T544C 034:151 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 2940ms total)
T544C 034:153 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 2941ms total)
T544C 034:154 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 28 00  returns 0x02 (0001ms, 2942ms total)
T544C 034:155 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 2943ms total)
T544C 034:156 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 2944ms total)
T544C 034:157 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 2945ms total)
T544C 034:159 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 2946ms total)
T544C 034:160 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0001ms, 2947ms total)
T544C 034:161 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 2948ms total)
T4018 034:162 JLINK_IsHalted()  returns FALSE (0000ms, 2948ms total)
T4018 034:264 JLINK_IsHalted()  returns FALSE (0001ms, 2949ms total)
T4018 034:366 JLINK_IsHalted()  returns FALSE (0001ms, 2949ms total)
T4018 034:467 JLINK_IsHalted()  returns FALSE (0001ms, 2949ms total)
T4018 034:569 JLINK_IsHalted()  returns FALSE (0001ms, 2949ms total)
T544C 034:671 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 2950ms total)
T544C 034:673 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2951ms total)
T544C 034:676 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 2952ms total)
T544C 034:677 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 00  returns 0x01 (0001ms, 2953ms total)
T544C 034:678 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 09 00  returns 0x02 (0001ms, 2954ms total)
T544C 034:679 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0002ms, 2956ms total)
T544C 034:681 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2957ms total)
T544C 034:682 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 2958ms total)
T544C 034:683 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 2959ms total)
T544C 034:684 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2960ms total)
T544C 034:687 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 2961ms total)
T544C 034:688 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 2962ms total)
T544C 034:689 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 2963ms total)
T544C 034:690 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2964ms total)
T544C 034:691 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 2965ms total)
T544C 034:692 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0000ms, 2965ms total)
T544C 034:693 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 2966ms total)
T544C 034:694 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 2968ms total)
T544C 034:696 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0001ms, 2969ms total)
T544C 034:699 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 2970ms total)
T544C 034:700 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 2971ms total)
T544C 034:701 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 2972ms total)
T544C 034:702 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 2973ms total)
T544C 034:703 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2974ms total)
T544C 034:704 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0000ms, 2974ms total)
T544C 034:704 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0002ms, 2976ms total)
T544C 034:706 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 18 00 00 00  returns 0x04 (0001ms, 2977ms total)
T544C 034:708 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 18 00 00 00  returns 0x04 (0000ms, 2977ms total)
T544C 034:710 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 01  returns 0x01 (0000ms, 2977ms total)
T544C 034:710 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2978ms total)
T544C 034:711 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 2979ms total)
T544C 034:712 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0002ms, 2981ms total)
T544C 034:714 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 09 00  returns 0x02 (0001ms, 2982ms total)
T544C 034:716 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 C0 41  returns 0x04 (0001ms, 2983ms total)
T544C 034:718 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 2984ms total)
T544C 034:719 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 2985ms total)
T544C 034:720 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0002ms, 2987ms total)
T544C 034:722 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 28 00  returns 0x02 (0001ms, 2988ms total)
T544C 034:723 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 2989ms total)
T544C 034:724 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 2990ms total)
T544C 034:725 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 2991ms total)
T544C 034:727 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0000ms, 2991ms total)
T544C 034:727 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0001ms, 2992ms total)
T544C 034:728 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0002ms, 2994ms total)
T4018 034:730 JLINK_IsHalted()  returns FALSE (0000ms, 2994ms total)
T4018 034:832 JLINK_IsHalted()  returns FALSE (0001ms, 2995ms total)
T4018 034:933 JLINK_IsHalted()  returns FALSE (0001ms, 2995ms total)
T4018 035:035 JLINK_IsHalted()  returns FALSE (0001ms, 2995ms total)
T4018 035:137 JLINK_IsHalted()  returns FALSE (0001ms, 2995ms total)
T544C 035:239 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 2996ms total)
T544C 035:241 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 2997ms total)
T544C 035:244 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 2998ms total)
T544C 035:245 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 00  returns 0x01 (0002ms, 3000ms total)
T544C 035:247 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 09 00  returns 0x02 (0000ms, 3000ms total)
T544C 035:248 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 3002ms total)
T544C 035:249 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3003ms total)
T544C 035:250 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 3004ms total)
T544C 035:251 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 3005ms total)
T544C 035:252 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3006ms total)
T544C 035:254 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 3007ms total)
T544C 035:255 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 3008ms total)
T544C 035:256 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 3009ms total)
T544C 035:257 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3010ms total)
T544C 035:258 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 3011ms total)
T544C 035:259 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 3012ms total)
T544C 035:260 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 3013ms total)
T544C 035:261 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3014ms total)
T544C 035:262 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0001ms, 3015ms total)
T544C 035:265 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 3016ms total)
T544C 035:266 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 3017ms total)
T544C 035:267 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 3018ms total)
T544C 035:268 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 3019ms total)
T544C 035:269 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 3020ms total)
T544C 035:270 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 3021ms total)
T544C 035:271 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 3022ms total)
T544C 035:272 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 18 00 00 00  returns 0x04 (0001ms, 3023ms total)
T544C 035:274 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 18 00 00 00  returns 0x04 (0001ms, 3024ms total)
T544C 035:275 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 01  returns 0x01 (0001ms, 3025ms total)
T544C 035:276 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0002ms, 3027ms total)
T544C 035:278 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 3028ms total)
T544C 035:279 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0001ms, 3029ms total)
T544C 035:280 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 09 00  returns 0x02 (0001ms, 3030ms total)
T544C 035:281 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 C0 41  returns 0x04 (0001ms, 3031ms total)
T544C 035:283 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 3032ms total)
T544C 035:284 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 3033ms total)
T544C 035:285 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 3034ms total)
T544C 035:286 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 28 00  returns 0x02 (0001ms, 3035ms total)
T544C 035:287 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 3036ms total)
T544C 035:288 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 3037ms total)
T544C 035:289 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0002ms, 3039ms total)
T544C 035:292 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 3040ms total)
T544C 035:293 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0001ms, 3041ms total)
T544C 035:294 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 3042ms total)
T4018 035:295 JLINK_IsHalted()  returns FALSE (0001ms, 3043ms total)
T4018 035:396 JLINK_IsHalted()  returns FALSE (0001ms, 3043ms total)
T4018 035:498 JLINK_IsHalted()  returns FALSE (0001ms, 3043ms total)
T4018 035:600 JLINK_IsHalted()  returns FALSE (0001ms, 3043ms total)
T4018 035:702 JLINK_IsHalted()  returns FALSE (0001ms, 3043ms total)
T544C 035:807 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 3044ms total)
T544C 035:809 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3045ms total)
T544C 035:812 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 3047ms total)
T544C 035:813 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 00  returns 0x01 (0001ms, 3048ms total)
T544C 035:814 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 0A 00  returns 0x02 (0001ms, 3049ms total)
T544C 035:815 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 3050ms total)
T544C 035:817 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3051ms total)
T544C 035:818 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 3052ms total)
T544C 035:819 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 3053ms total)
T544C 035:820 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3054ms total)
T544C 035:822 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 3055ms total)
T544C 035:823 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 3056ms total)
T544C 035:825 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 3058ms total)
T544C 035:826 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3059ms total)
T544C 035:827 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 3060ms total)
T544C 035:828 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 3061ms total)
T544C 035:829 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 3062ms total)
T544C 035:830 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3063ms total)
T544C 035:831 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0001ms, 3064ms total)
T544C 035:835 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 3065ms total)
T544C 035:836 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 3066ms total)
T544C 035:837 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 3067ms total)
T544C 035:838 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 3068ms total)
T544C 035:839 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 3069ms total)
T544C 035:840 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 3070ms total)
T544C 035:841 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 3071ms total)
T544C 035:842 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 19 00 00 00  returns 0x04 (0001ms, 3072ms total)
T544C 035:843 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 19 00 00 00  returns 0x04 (0001ms, 3073ms total)
T544C 035:844 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 01  returns 0x01 (0002ms, 3075ms total)
T544C 035:846 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3076ms total)
T544C 035:847 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 3077ms total)
T544C 035:848 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0001ms, 3078ms total)
T544C 035:849 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 0A 00  returns 0x02 (0001ms, 3079ms total)
T544C 035:851 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 C8 41  returns 0x04 (0001ms, 3080ms total)
T544C 035:852 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 3081ms total)
T544C 035:853 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0002ms, 3083ms total)
T544C 035:856 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 3084ms total)
T544C 035:857 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 28 00  returns 0x02 (0001ms, 3085ms total)
T544C 035:858 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 3086ms total)
T544C 035:859 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 3087ms total)
T544C 035:860 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 3088ms total)
T544C 035:861 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 3089ms total)
T544C 035:862 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0001ms, 3090ms total)
T544C 035:863 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 3091ms total)
T4018 035:865 JLINK_IsHalted()  returns FALSE (0001ms, 3092ms total)
T4018 035:966 JLINK_IsHalted()  returns FALSE (0001ms, 3092ms total)
T4018 036:068 JLINK_IsHalted()  returns FALSE (0001ms, 3092ms total)
T4018 036:169 JLINK_IsHalted()  returns FALSE (0001ms, 3092ms total)
T4018 036:271 JLINK_IsHalted()  returns FALSE (0001ms, 3092ms total)
T544C 036:373 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 3093ms total)
T544C 036:375 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3094ms total)
T544C 036:377 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 3095ms total)
T544C 036:378 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 00  returns 0x01 (0002ms, 3097ms total)
T544C 036:381 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 0A 00  returns 0x02 (0001ms, 3098ms total)
T544C 036:382 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 3099ms total)
T544C 036:383 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3100ms total)
T544C 036:384 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 3101ms total)
T544C 036:385 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 3102ms total)
T544C 036:386 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3103ms total)
T544C 036:388 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 3104ms total)
T544C 036:389 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0002ms, 3106ms total)
T544C 036:391 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 3107ms total)
T544C 036:392 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3108ms total)
T544C 036:393 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 3109ms total)
T544C 036:394 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 3110ms total)
T544C 036:395 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 3111ms total)
T544C 036:396 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3112ms total)
T544C 036:397 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0001ms, 3113ms total)
T544C 036:401 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 3114ms total)
T544C 036:402 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 3115ms total)
T544C 036:404 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 3117ms total)
T544C 036:405 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 3118ms total)
T544C 036:406 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 3119ms total)
T544C 036:407 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0000ms, 3119ms total)
T544C 036:407 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 3120ms total)
T544C 036:408 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 19 00 00 00  returns 0x04 (0001ms, 3121ms total)
T544C 036:409 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 19 00 00 00  returns 0x04 (0001ms, 3122ms total)
T544C 036:412 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 01  returns 0x01 (0001ms, 3123ms total)
T544C 036:413 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3124ms total)
T544C 036:414 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 3125ms total)
T544C 036:415 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0001ms, 3126ms total)
T544C 036:416 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 0A 00  returns 0x02 (0001ms, 3127ms total)
T544C 036:417 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 C8 41  returns 0x04 (0001ms, 3128ms total)
T544C 036:418 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 3129ms total)
T544C 036:419 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 3130ms total)
T544C 036:420 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0002ms, 3132ms total)
T544C 036:422 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 28 00  returns 0x02 (0002ms, 3134ms total)
T544C 036:424 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0000ms, 3134ms total)
T544C 036:424 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 3135ms total)
T544C 036:425 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 3136ms total)
T544C 036:427 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 3137ms total)
T544C 036:428 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0001ms, 3138ms total)
T544C 036:429 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 3139ms total)
T4018 036:430 JLINK_IsHalted()  returns FALSE (0001ms, 3140ms total)
T4018 036:532 JLINK_IsHalted()  returns FALSE (0001ms, 3140ms total)
T4018 036:634 JLINK_IsHalted()  returns FALSE (0001ms, 3140ms total)
T4018 036:735 JLINK_IsHalted()  returns FALSE (0001ms, 3140ms total)
T4018 036:837 JLINK_IsHalted()  returns FALSE (0001ms, 3140ms total)
T544C 036:940 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 24 47 4E 47 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3140ms total)
T544C 036:941 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0002ms, 3142ms total)
T544C 036:944 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 3143ms total)
T544C 036:945 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 00  returns 0x01 (0001ms, 3144ms total)
T544C 036:946 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 0B 00  returns 0x02 (0001ms, 3145ms total)
T544C 036:947 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0002ms, 3147ms total)
T544C 036:949 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3148ms total)
T544C 036:950 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 3149ms total)
T544C 036:951 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 3150ms total)
T544C 036:952 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 24 47 50 47 53 56 2C 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3151ms total)
T544C 036:956 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 3152ms total)
T544C 036:957 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 3153ms total)
T544C 036:958 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0002ms, 3155ms total)
T544C 036:960 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3156ms total)
T544C 036:961 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 3157ms total)
T544C 036:962 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 3158ms total)
T544C 036:963 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 3159ms total)
T544C 036:964 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 24 4E 41 56 41 43 43 2C 30 30 30 30 30 30 2E 30 ...  returns 0x20 (0002ms, 3161ms total)
T544C 036:982 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0002ms, 3163ms total)
T544C 036:987 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0002ms, 3165ms total)
T544C 036:989 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 3166ms total)
T544C 036:990 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 3167ms total)
T544C 036:991 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 3168ms total)
T544C 036:992 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 3169ms total)
T544C 036:993 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 3170ms total)
T544C 036:994 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 3171ms total)
T544C 036:995 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 1A 00 00 00  returns 0x04 (0001ms, 3172ms total)
T544C 036:996 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 1A 00 00 00  returns 0x04 (0001ms, 3173ms total)
T544C 036:997 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 01  returns 0x01 (0001ms, 3174ms total)
T544C 036:998 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3175ms total)
T544C 036:999 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 3176ms total)
T544C 037:000 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0002ms, 3178ms total)
T544C 037:002 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 0B 00  returns 0x02 (0001ms, 3179ms total)
T544C 037:003 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 D0 41  returns 0x04 (0001ms, 3180ms total)
T544C 037:004 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 3181ms total)
T544C 037:005 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 3182ms total)
T544C 037:007 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0000ms, 3182ms total)
T544C 037:007 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 28 00  returns 0x02 (0001ms, 3183ms total)
T544C 037:009 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 3184ms total)
T544C 037:010 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 3185ms total)
T544C 037:011 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 3186ms total)
T544C 037:012 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 3187ms total)
T544C 037:013 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0001ms, 3188ms total)
T544C 037:014 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 3189ms total)
T4018 037:015 JLINK_IsHalted()  returns FALSE (0001ms, 3190ms total)
T4018 037:117 JLINK_IsHalted()  returns FALSE (0001ms, 3190ms total)
T4018 037:218 JLINK_IsHalted()  returns FALSE (0001ms, 3190ms total)
T4018 037:320 JLINK_IsHalted()  returns FALSE (0001ms, 3190ms total)
T4018 037:421 JLINK_IsHalted()  returns FALSE (0001ms, 3190ms total)
T544C 037:523 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 3191ms total)
T544C 037:525 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3192ms total)
T544C 037:527 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 3193ms total)
T544C 037:529 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 00  returns 0x01 (0001ms, 3194ms total)
T544C 037:530 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 0B 00  returns 0x02 (0001ms, 3195ms total)
T544C 037:531 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0002ms, 3197ms total)
T544C 037:533 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3198ms total)
T544C 037:534 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 3199ms total)
T544C 037:535 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 3200ms total)
T544C 037:536 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3201ms total)
T544C 037:538 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 3202ms total)
T544C 037:539 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 3203ms total)
T544C 037:540 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 3204ms total)
T544C 037:541 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3205ms total)
T544C 037:542 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 3206ms total)
T544C 037:543 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 3207ms total)
T544C 037:544 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0002ms, 3209ms total)
T544C 037:546 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3210ms total)
T544C 037:560 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0001ms, 3211ms total)
T544C 037:563 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 3212ms total)
T544C 037:564 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 3213ms total)
T544C 037:565 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 3214ms total)
T544C 037:566 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 3215ms total)
T544C 037:567 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 3216ms total)
T544C 037:568 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 3217ms total)
T544C 037:569 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 3218ms total)
T544C 037:570 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 1A 00 00 00  returns 0x04 (0001ms, 3219ms total)
T544C 037:571 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 1A 00 00 00  returns 0x04 (0002ms, 3221ms total)
T544C 037:573 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 01  returns 0x01 (0001ms, 3222ms total)
T544C 037:574 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3223ms total)
T544C 037:575 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 3224ms total)
T544C 037:576 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0001ms, 3225ms total)
T544C 037:577 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 0B 00  returns 0x02 (0001ms, 3226ms total)
T544C 037:578 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 D0 41  returns 0x04 (0001ms, 3227ms total)
T544C 037:580 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 3228ms total)
T544C 037:581 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 3229ms total)
T544C 037:583 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 3230ms total)
T544C 037:584 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 28 00  returns 0x02 (0001ms, 3231ms total)
T544C 037:585 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 3232ms total)
T544C 037:586 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 3233ms total)
T544C 037:587 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 3234ms total)
T544C 037:588 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 3235ms total)
T544C 037:589 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0001ms, 3236ms total)
T544C 037:590 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 3237ms total)
T4018 037:591 JLINK_IsHalted()  returns FALSE (0001ms, 3238ms total)
T4018 037:693 JLINK_IsHalted()  returns FALSE (0001ms, 3238ms total)
T4018 037:794 JLINK_IsHalted()  returns FALSE (0001ms, 3238ms total)
T4018 037:896 JLINK_IsHalted()  returns FALSE (0001ms, 3238ms total)
T4018 037:997 JLINK_IsHalted()  returns FALSE (0001ms, 3238ms total)
T544C 038:099 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3238ms total)
T544C 038:100 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0002ms, 3240ms total)
T544C 038:104 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 3241ms total)
T544C 038:105 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 00  returns 0x01 (0001ms, 3242ms total)
T544C 038:106 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 0C 00  returns 0x02 (0001ms, 3243ms total)
T544C 038:107 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 3244ms total)
T544C 038:108 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3245ms total)
T544C 038:109 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 3246ms total)
T544C 038:110 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 3247ms total)
T544C 038:111 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3248ms total)
T544C 038:113 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 3249ms total)
T544C 038:114 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 3250ms total)
T544C 038:115 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 3251ms total)
T544C 038:116 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3252ms total)
T544C 038:117 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0002ms, 3254ms total)
T544C 038:119 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 3255ms total)
T544C 038:120 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0000ms, 3255ms total)
T544C 038:120 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 3257ms total)
T544C 038:122 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0001ms, 3258ms total)
T544C 038:125 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 3259ms total)
T544C 038:126 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 3260ms total)
T544C 038:127 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 3261ms total)
T544C 038:128 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 3262ms total)
T544C 038:129 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 3263ms total)
T544C 038:130 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 3264ms total)
T544C 038:131 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0002ms, 3266ms total)
T544C 038:133 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 1B 00 00 00  returns 0x04 (0001ms, 3267ms total)
T544C 038:134 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 1B 00 00 00  returns 0x04 (0001ms, 3268ms total)
T544C 038:135 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 01  returns 0x01 (0001ms, 3269ms total)
T544C 038:136 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3270ms total)
T544C 038:137 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 3271ms total)
T544C 038:138 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0002ms, 3273ms total)
T544C 038:140 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 0C 00  returns 0x02 (0001ms, 3274ms total)
T544C 038:141 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 D8 41  returns 0x04 (0001ms, 3275ms total)
T544C 038:142 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0002ms, 3277ms total)
T544C 038:144 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 3278ms total)
T544C 038:145 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0002ms, 3280ms total)
T544C 038:147 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 28 00  returns 0x02 (0000ms, 3280ms total)
T544C 038:147 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 3281ms total)
T544C 038:148 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 3282ms total)
T544C 038:149 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 3283ms total)
T544C 038:151 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 3284ms total)
T544C 038:152 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0001ms, 3285ms total)
T544C 038:153 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 3286ms total)
T4018 038:154 JLINK_IsHalted()  returns FALSE (0002ms, 3288ms total)
T4018 038:256 JLINK_IsHalted()  returns FALSE (0001ms, 3287ms total)
T4018 038:358 JLINK_IsHalted()  returns FALSE (0001ms, 3287ms total)
T4018 038:460 JLINK_IsHalted()  returns FALSE (0000ms, 3286ms total)
T4018 038:562 JLINK_IsHalted()  returns FALSE (0001ms, 3287ms total)
T544C 038:665 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 3288ms total)
T544C 038:667 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3289ms total)
T544C 038:670 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 3290ms total)
T544C 038:671 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 00  returns 0x01 (0001ms, 3291ms total)
T544C 038:672 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 0D 00  returns 0x02 (0001ms, 3292ms total)
T544C 038:673 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 3293ms total)
T544C 038:674 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3294ms total)
T544C 038:675 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 3295ms total)
T544C 038:676 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 3296ms total)
T544C 038:677 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3297ms total)
T544C 038:680 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0000ms, 3298ms total)
T544C 038:680 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 3299ms total)
T544C 038:682 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0000ms, 3299ms total)
T544C 038:682 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3300ms total)
T544C 038:683 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 3301ms total)
T544C 038:684 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 3302ms total)
T544C 038:685 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 3303ms total)
T544C 038:686 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 3305ms total)
T544C 038:688 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0001ms, 3306ms total)
T544C 038:691 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 3307ms total)
T544C 038:692 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 3308ms total)
T544C 038:693 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0000ms, 3308ms total)
T544C 038:693 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 3309ms total)
T544C 038:694 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 3310ms total)
T544C 038:695 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 3311ms total)
T544C 038:696 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 3312ms total)
T544C 038:697 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 1C 00 00 00  returns 0x04 (0002ms, 3314ms total)
T544C 038:700 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 1C 00 00 00  returns 0x04 (0000ms, 3314ms total)
T544C 038:700 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 01  returns 0x01 (0001ms, 3315ms total)
T544C 038:701 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0002ms, 3317ms total)
T544C 038:703 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 3318ms total)
T544C 038:704 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0002ms, 3320ms total)
T544C 038:706 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 0D 00  returns 0x02 (0001ms, 3321ms total)
T544C 038:707 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 E0 41  returns 0x04 (0001ms, 3322ms total)
T544C 038:709 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 3323ms total)
T544C 038:710 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 3324ms total)
T544C 038:711 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 3325ms total)
T544C 038:712 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 28 00  returns 0x02 (0001ms, 3326ms total)
T544C 038:714 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0002ms, 3328ms total)
T544C 038:716 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 3329ms total)
T544C 038:717 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 3330ms total)
T544C 038:718 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 3331ms total)
T544C 038:719 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0001ms, 3332ms total)
T544C 038:720 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 3333ms total)
T4018 038:721 JLINK_IsHalted()  returns FALSE (0001ms, 3334ms total)
T4018 038:824 JLINK_IsHalted()  returns FALSE (0001ms, 3334ms total)
T4018 038:926 JLINK_IsHalted()  returns FALSE (0001ms, 3334ms total)
T4018 039:027 JLINK_IsHalted()  returns FALSE (0001ms, 3334ms total)
T4018 039:129 JLINK_IsHalted()  returns FALSE (0001ms, 3334ms total)
T544C 039:230 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 3335ms total)
T544C 039:232 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3336ms total)
T544C 039:234 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 3337ms total)
T544C 039:235 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 00  returns 0x01 (0001ms, 3338ms total)
T544C 039:236 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 0D 00  returns 0x02 (0001ms, 3339ms total)
T544C 039:237 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 3340ms total)
T544C 039:238 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3341ms total)
T544C 039:239 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 3342ms total)
T544C 039:240 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 3343ms total)
T544C 039:241 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3344ms total)
T544C 039:243 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 3345ms total)
T544C 039:244 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 3346ms total)
T544C 039:245 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 3347ms total)
T544C 039:246 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3348ms total)
T544C 039:247 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 3349ms total)
T544C 039:248 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 3350ms total)
T544C 039:249 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 3351ms total)
T544C 039:250 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3352ms total)
T544C 039:251 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0001ms, 3353ms total)
T544C 039:254 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 3354ms total)
T544C 039:255 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0002ms, 3356ms total)
T544C 039:257 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 3357ms total)
T544C 039:258 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 3358ms total)
T544C 039:259 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 3359ms total)
T544C 039:260 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 3360ms total)
T544C 039:261 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 3361ms total)
T544C 039:262 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 1C 00 00 00  returns 0x04 (0001ms, 3362ms total)
T544C 039:263 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 1C 00 00 00  returns 0x04 (0001ms, 3363ms total)
T544C 039:264 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 01  returns 0x01 (0001ms, 3364ms total)
T544C 039:265 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3365ms total)
T544C 039:266 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0002ms, 3367ms total)
T544C 039:268 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0000ms, 3367ms total)
T544C 039:268 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 0D 00  returns 0x02 (0001ms, 3368ms total)
T544C 039:270 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 E0 41  returns 0x04 (0001ms, 3369ms total)
T544C 039:271 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 3370ms total)
T544C 039:272 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0002ms, 3372ms total)
T544C 039:274 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 3373ms total)
T544C 039:275 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 28 00  returns 0x02 (0001ms, 3374ms total)
T544C 039:277 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 3375ms total)
T544C 039:278 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 3376ms total)
T544C 039:279 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 3377ms total)
T544C 039:281 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 3378ms total)
T544C 039:282 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0000ms, 3378ms total)
T544C 039:282 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0002ms, 3380ms total)
T4018 039:284 JLINK_IsHalted()  returns FALSE (0001ms, 3381ms total)
T4018 039:386 JLINK_IsHalted()  returns FALSE (0001ms, 3381ms total)
T4018 039:488 JLINK_IsHalted()  returns FALSE (0001ms, 3381ms total)
T4018 039:590 JLINK_IsHalted()  returns FALSE (0001ms, 3381ms total)
T4018 039:691 JLINK_IsHalted()  returns FALSE (0001ms, 3381ms total)
T544C 039:793 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3381ms total)
T544C 039:794 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3382ms total)
T544C 039:797 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 3383ms total)
T544C 039:798 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 00  returns 0x01 (0001ms, 3384ms total)
T544C 039:799 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 0E 00  returns 0x02 (0001ms, 3385ms total)
T544C 039:800 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 3386ms total)
T544C 039:801 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3387ms total)
T544C 039:802 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 3388ms total)
T544C 039:803 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 3389ms total)
T544C 039:804 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3390ms total)
T544C 039:806 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 3391ms total)
T544C 039:807 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 3392ms total)
T544C 039:808 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 3393ms total)
T544C 039:809 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3394ms total)
T544C 039:810 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 3395ms total)
T544C 039:811 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0002ms, 3397ms total)
T544C 039:813 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 3398ms total)
T544C 039:814 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3399ms total)
T544C 039:815 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0001ms, 3400ms total)
T544C 039:818 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 3401ms total)
T544C 039:820 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0000ms, 3401ms total)
T544C 039:820 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 3402ms total)
T544C 039:821 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0002ms, 3404ms total)
T544C 039:823 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0000ms, 3404ms total)
T544C 039:823 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0002ms, 3406ms total)
T544C 039:825 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 3407ms total)
T544C 039:826 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 1D 00 00 00  returns 0x04 (0001ms, 3408ms total)
T544C 039:828 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 1D 00 00 00  returns 0x04 (0001ms, 3409ms total)
T544C 039:829 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 01  returns 0x01 (0001ms, 3410ms total)
T544C 039:831 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3411ms total)
T544C 039:832 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 3412ms total)
T544C 039:833 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0001ms, 3413ms total)
T544C 039:834 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 0E 00  returns 0x02 (0001ms, 3414ms total)
T544C 039:836 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 E8 41  returns 0x04 (0001ms, 3415ms total)
T544C 039:837 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 3416ms total)
T544C 039:838 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 3417ms total)
T544C 039:840 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 3418ms total)
T544C 039:841 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 28 00  returns 0x02 (0001ms, 3419ms total)
T544C 039:842 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 3420ms total)
T544C 039:843 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 3421ms total)
T544C 039:844 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0000ms, 3421ms total)
T544C 039:845 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 3422ms total)
T544C 039:846 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0001ms, 3423ms total)
T544C 039:847 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 3424ms total)
T4018 039:848 JLINK_IsHalted()  returns FALSE (0001ms, 3425ms total)
T4018 039:951 JLINK_IsHalted()  returns FALSE (0001ms, 3425ms total)
T4018 040:052 JLINK_IsHalted()  returns FALSE (0001ms, 3425ms total)
T4018 040:154 JLINK_IsHalted()  returns FALSE (0001ms, 3425ms total)
T4018 040:255 JLINK_IsHalted()  returns FALSE (0001ms, 3425ms total)
T544C 040:358 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0003ms, 3427ms total)
T544C 040:361 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3428ms total)
T544C 040:367 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 3429ms total)
T544C 040:368 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 00  returns 0x01 (0001ms, 3430ms total)
T544C 040:369 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 0E 00  returns 0x02 (0001ms, 3431ms total)
T544C 040:370 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 3432ms total)
T544C 040:371 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3433ms total)
T544C 040:372 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0002ms, 3435ms total)
T544C 040:374 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 3436ms total)
T544C 040:375 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 3436ms total)
T544C 040:377 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 3437ms total)
T544C 040:378 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0002ms, 3439ms total)
T544C 040:380 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 3440ms total)
T544C 040:381 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3441ms total)
T544C 040:382 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 3442ms total)
T544C 040:383 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 3443ms total)
T544C 040:384 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 3444ms total)
T544C 040:385 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3445ms total)
T544C 040:386 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0001ms, 3446ms total)
T544C 040:389 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 3447ms total)
T544C 040:390 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 3448ms total)
T544C 040:391 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 3449ms total)
T544C 040:392 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 3450ms total)
T544C 040:393 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 3451ms total)
T544C 040:394 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 3452ms total)
T544C 040:395 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 3453ms total)
T544C 040:396 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 1D 00 00 00  returns 0x04 (0001ms, 3454ms total)
T544C 040:397 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 1D 00 00 00  returns 0x04 (0001ms, 3455ms total)
T544C 040:399 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 01  returns 0x01 (0001ms, 3456ms total)
T544C 040:400 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3457ms total)
T544C 040:401 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 3458ms total)
T544C 040:402 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0001ms, 3459ms total)
T544C 040:403 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 0E 00  returns 0x02 (0001ms, 3460ms total)
T544C 040:405 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 E8 41  returns 0x04 (0001ms, 3461ms total)
T544C 040:406 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 3462ms total)
T544C 040:407 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 3463ms total)
T544C 040:408 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0002ms, 3465ms total)
T544C 040:410 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 28 00  returns 0x02 (0001ms, 3466ms total)
T544C 040:411 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0002ms, 3468ms total)
T544C 040:413 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 3469ms total)
T544C 040:414 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 3470ms total)
T544C 040:415 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 3471ms total)
T544C 040:416 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0001ms, 3472ms total)
T544C 040:417 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 3473ms total)
T4018 040:418 JLINK_IsHalted()  returns FALSE (0001ms, 3474ms total)
T4018 040:521 JLINK_IsHalted()  returns FALSE (0001ms, 3474ms total)
T4018 040:622 JLINK_IsHalted()  returns FALSE (0001ms, 3474ms total)
T4018 040:725 JLINK_IsHalted()  returns FALSE (0001ms, 3474ms total)
T4018 040:827 JLINK_IsHalted()  returns FALSE (0001ms, 3474ms total)
T544C 040:929 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0001ms, 3474ms total)
T544C 040:930 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3475ms total)
T544C 040:933 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 3476ms total)
T544C 040:934 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 00  returns 0x01 (0002ms, 3478ms total)
T544C 040:936 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 0F 00  returns 0x02 (0001ms, 3479ms total)
T544C 040:937 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 3480ms total)
T544C 040:938 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3481ms total)
T544C 040:939 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0002ms, 3483ms total)
T544C 040:941 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 3484ms total)
T544C 040:942 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 24 47 4E 47 53 41 2C 41 2C 31 2C 2C 2C 2C 2C 2C ...  returns 0x20 (0002ms, 3486ms total)
T544C 040:945 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 3487ms total)
T544C 040:946 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0000ms, 3487ms total)
T544C 040:946 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0002ms, 3489ms total)
T544C 040:948 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3490ms total)
T544C 040:949 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 3491ms total)
T544C 040:950 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 3492ms total)
T544C 040:951 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0002ms, 3494ms total)
T544C 040:953 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 24 47 50 47 53 56 2C 31 2C 31 2C 00 00 00 00 00 ...  returns 0x20 (0001ms, 3495ms total)
T544C 040:970 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0001ms, 3496ms total)
T544C 040:973 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 3498ms total)
T544C 040:974 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 3499ms total)
T544C 040:975 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 3500ms total)
T544C 040:976 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 3501ms total)
T544C 040:977 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 3502ms total)
T544C 040:978 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 3503ms total)
T544C 040:979 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 3504ms total)
T544C 040:980 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 1E 00 00 00  returns 0x04 (0001ms, 3505ms total)
T544C 040:982 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 1E 00 00 00  returns 0x04 (0001ms, 3507ms total)
T544C 040:983 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 01  returns 0x01 (0001ms, 3508ms total)
T544C 040:984 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3509ms total)
T544C 040:986 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 3511ms total)
T544C 040:987 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0001ms, 3512ms total)
T544C 040:988 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 0F 00  returns 0x02 (0001ms, 3513ms total)
T544C 040:990 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 F0 41  returns 0x04 (0001ms, 3514ms total)
T544C 040:991 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 3515ms total)
T544C 040:992 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 3516ms total)
T544C 040:993 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 3517ms total)
T544C 040:994 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 28 00  returns 0x02 (0002ms, 3519ms total)
T544C 040:996 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 3520ms total)
T544C 040:997 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 3521ms total)
T544C 040:998 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 3522ms total)
T544C 041:000 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 3523ms total)
T544C 041:001 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0000ms, 3523ms total)
T544C 041:001 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0002ms, 3525ms total)
T4018 041:003 JLINK_IsHalted()  returns FALSE (0001ms, 3526ms total)
T4018 041:105 JLINK_IsHalted()  returns FALSE (0000ms, 3525ms total)
T4018 041:207 JLINK_IsHalted()  returns FALSE (0001ms, 3526ms total)
T4018 041:308 JLINK_IsHalted()  returns FALSE (0001ms, 3526ms total)
T4018 041:410 JLINK_IsHalted()  returns FALSE (0001ms, 3526ms total)
T544C 041:511 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 3527ms total)
T544C 041:513 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3528ms total)
T544C 041:515 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 3529ms total)
T544C 041:517 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 00  returns 0x01 (0001ms, 3530ms total)
T544C 041:518 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 0F 00  returns 0x02 (0001ms, 3531ms total)
T544C 041:519 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 3532ms total)
T544C 041:520 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3533ms total)
T544C 041:521 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 3534ms total)
T544C 041:522 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 3535ms total)
T544C 041:523 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3536ms total)
T544C 041:526 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 3537ms total)
T544C 041:527 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 3538ms total)
T544C 041:528 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 3539ms total)
T544C 041:529 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3540ms total)
T544C 041:530 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 3541ms total)
T544C 041:531 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 3542ms total)
T544C 041:532 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 3543ms total)
T544C 041:533 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3544ms total)
T544C 041:550 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0002ms, 3546ms total)
T544C 041:554 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 3547ms total)
T544C 041:555 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 3548ms total)
T544C 041:556 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 3549ms total)
T544C 041:557 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 3550ms total)
T544C 041:558 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 3551ms total)
T544C 041:559 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 3552ms total)
T544C 041:560 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 3553ms total)
T544C 041:561 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 1E 00 00 00  returns 0x04 (0001ms, 3554ms total)
T544C 041:562 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 1E 00 00 00  returns 0x04 (0001ms, 3555ms total)
T544C 041:564 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 01  returns 0x01 (0001ms, 3556ms total)
T544C 041:565 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3557ms total)
T544C 041:566 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 3558ms total)
T544C 041:567 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0001ms, 3559ms total)
T544C 041:568 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 0F 00  returns 0x02 (0001ms, 3560ms total)
T544C 041:570 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 F0 41  returns 0x04 (0001ms, 3561ms total)
T544C 041:571 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 3562ms total)
T544C 041:572 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 3563ms total)
T544C 041:574 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 3564ms total)
T544C 041:575 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 28 00  returns 0x02 (0001ms, 3565ms total)
T544C 041:576 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 3566ms total)
T544C 041:577 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 3567ms total)
T544C 041:578 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 3568ms total)
T544C 041:580 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 3569ms total)
T544C 041:581 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0001ms, 3570ms total)
T544C 041:582 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 3571ms total)
T4018 041:583 JLINK_IsHalted()  returns FALSE (0001ms, 3572ms total)
T4018 041:686 JLINK_IsHalted()  returns FALSE (0001ms, 3572ms total)
T4018 041:787 JLINK_IsHalted()  returns FALSE (0001ms, 3572ms total)
T4018 041:890 JLINK_IsHalted()  returns FALSE (0001ms, 3572ms total)
T4018 041:992 JLINK_IsHalted()  returns FALSE (0001ms, 3572ms total)
T544C 042:097 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3572ms total)
T544C 042:098 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3573ms total)
T544C 042:100 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 3574ms total)
T544C 042:101 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 00  returns 0x01 (0002ms, 3576ms total)
T544C 042:103 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 10 00  returns 0x02 (0001ms, 3577ms total)
T544C 042:104 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 3578ms total)
T544C 042:105 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3579ms total)
T544C 042:106 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 3580ms total)
T544C 042:107 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 3581ms total)
T544C 042:108 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3582ms total)
T544C 042:111 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 3583ms total)
T544C 042:112 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 3584ms total)
T544C 042:113 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 3585ms total)
T544C 042:114 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3586ms total)
T544C 042:115 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 3587ms total)
T544C 042:116 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0000ms, 3587ms total)
T544C 042:116 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0002ms, 3589ms total)
T544C 042:118 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3590ms total)
T544C 042:119 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0001ms, 3591ms total)
T544C 042:122 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 3592ms total)
T544C 042:123 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 3593ms total)
T544C 042:124 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 3594ms total)
T544C 042:125 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 3595ms total)
T544C 042:126 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 3596ms total)
T544C 042:127 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0002ms, 3598ms total)
T544C 042:129 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 3599ms total)
T544C 042:130 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 1F 00 00 00  returns 0x04 (0001ms, 3600ms total)
T544C 042:131 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 1F 00 00 00  returns 0x04 (0001ms, 3601ms total)
T544C 042:132 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 01  returns 0x01 (0001ms, 3602ms total)
T544C 042:133 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3603ms total)
T544C 042:134 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 3604ms total)
T544C 042:135 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0001ms, 3605ms total)
T544C 042:136 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 10 00  returns 0x02 (0001ms, 3606ms total)
T544C 042:138 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 F8 41  returns 0x04 (0001ms, 3607ms total)
T544C 042:140 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 3608ms total)
T544C 042:141 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 3609ms total)
T544C 042:142 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0002ms, 3611ms total)
T544C 042:144 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 28 00  returns 0x02 (0000ms, 3611ms total)
T544C 042:145 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 3613ms total)
T544C 042:146 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 3614ms total)
T544C 042:147 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 3615ms total)
T544C 042:148 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 3616ms total)
T544C 042:149 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0001ms, 3617ms total)
T544C 042:150 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 3618ms total)
T4018 042:152 JLINK_IsHalted()  returns FALSE (0001ms, 3619ms total)
T4018 042:254 JLINK_IsHalted()  returns FALSE (0000ms, 3619ms total)
T4018 042:356 JLINK_IsHalted()  returns FALSE (0001ms, 3620ms total)
T4018 042:458 JLINK_IsHalted()  returns FALSE (0001ms, 3620ms total)
T4018 042:559 JLINK_IsHalted()  returns FALSE (0000ms, 3619ms total)
T544C 042:661 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 3621ms total)
T544C 042:663 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0000ms, 3621ms total)
T544C 042:667 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 3622ms total)
T544C 042:668 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 00  returns 0x01 (0001ms, 3623ms total)
T544C 042:669 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 11 00  returns 0x02 (0001ms, 3624ms total)
T544C 042:670 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 3625ms total)
T544C 042:671 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3626ms total)
T544C 042:672 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 3627ms total)
T544C 042:673 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 3628ms total)
T544C 042:674 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3629ms total)
T544C 042:676 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 3630ms total)
T544C 042:677 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 3631ms total)
T544C 042:678 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 3632ms total)
T544C 042:679 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3633ms total)
T544C 042:680 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 3634ms total)
T544C 042:681 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 3635ms total)
T544C 042:682 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 3636ms total)
T544C 042:683 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 3638ms total)
T544C 042:685 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0001ms, 3639ms total)
T544C 042:688 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 3640ms total)
T544C 042:689 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 3641ms total)
T544C 042:690 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 3642ms total)
T544C 042:691 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 3643ms total)
T544C 042:692 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 3644ms total)
T544C 042:693 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 3645ms total)
T544C 042:694 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 3646ms total)
T544C 042:695 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 20 00 00 00  returns 0x04 (0001ms, 3647ms total)
T544C 042:698 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 20 00 00 00  returns 0x04 (0001ms, 3648ms total)
T544C 042:699 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 01  returns 0x01 (0001ms, 3649ms total)
T544C 042:700 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3650ms total)
T544C 042:701 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 3651ms total)
T544C 042:702 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0002ms, 3653ms total)
T544C 042:704 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 11 00  returns 0x02 (0001ms, 3654ms total)
T544C 042:705 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 00 42  returns 0x04 (0001ms, 3655ms total)
T544C 042:706 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0002ms, 3657ms total)
T544C 042:708 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 3658ms total)
T544C 042:709 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 3659ms total)
T544C 042:710 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 28 00  returns 0x02 (0001ms, 3660ms total)
T544C 042:711 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0002ms, 3662ms total)
T544C 042:713 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 3663ms total)
T544C 042:714 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 3664ms total)
T544C 042:716 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 3665ms total)
T544C 042:717 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0000ms, 3665ms total)
T544C 042:717 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 3666ms total)
T4018 042:718 JLINK_IsHalted()  returns FALSE (0001ms, 3667ms total)
T4018 042:820 JLINK_IsHalted()  returns FALSE (0001ms, 3667ms total)
T4018 042:921 JLINK_IsHalted()  returns FALSE (0001ms, 3667ms total)
T4018 043:024 JLINK_IsHalted()  returns FALSE (0001ms, 3667ms total)
T4018 043:126 JLINK_IsHalted()  returns FALSE (0001ms, 3667ms total)
T544C 043:229 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3667ms total)
T544C 043:230 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3668ms total)
T544C 043:232 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0002ms, 3670ms total)
T544C 043:234 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 00  returns 0x01 (0000ms, 3670ms total)
T544C 043:234 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 11 00  returns 0x02 (0002ms, 3672ms total)
T544C 043:236 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 3673ms total)
T544C 043:237 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3674ms total)
T544C 043:238 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 3675ms total)
T544C 043:239 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 3676ms total)
T544C 043:240 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3677ms total)
T544C 043:242 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 3678ms total)
T544C 043:243 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 3679ms total)
T544C 043:244 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 3680ms total)
T544C 043:245 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3681ms total)
T544C 043:246 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 3682ms total)
T544C 043:247 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 3683ms total)
T544C 043:248 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 3684ms total)
T544C 043:249 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 3686ms total)
T544C 043:251 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0001ms, 3687ms total)
T544C 043:253 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0002ms, 3689ms total)
T544C 043:255 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 3690ms total)
T544C 043:256 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 3691ms total)
T544C 043:257 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 3692ms total)
T544C 043:258 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 3693ms total)
T544C 043:259 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 3694ms total)
T544C 043:260 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 3695ms total)
T544C 043:261 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 20 00 00 00  returns 0x04 (0001ms, 3696ms total)
T544C 043:262 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 20 00 00 00  returns 0x04 (0001ms, 3697ms total)
T544C 043:264 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 01  returns 0x01 (0001ms, 3698ms total)
T544C 043:265 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3699ms total)
T544C 043:266 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 3700ms total)
T544C 043:267 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0001ms, 3701ms total)
T544C 043:268 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 11 00  returns 0x02 (0001ms, 3702ms total)
T544C 043:269 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 00 42  returns 0x04 (0001ms, 3703ms total)
T544C 043:271 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 3704ms total)
T544C 043:272 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 3705ms total)
T544C 043:273 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 3706ms total)
T544C 043:274 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 28 00  returns 0x02 (0001ms, 3707ms total)
T544C 043:275 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 3708ms total)
T544C 043:276 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 3709ms total)
T544C 043:277 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0002ms, 3711ms total)
T544C 043:279 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0000ms, 3711ms total)
T544C 043:280 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0000ms, 3711ms total)
T544C 043:281 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0000ms, 3711ms total)
T4018 043:282 JLINK_IsHalted()  returns FALSE (0000ms, 3711ms total)
T4018 043:384 JLINK_IsHalted()  returns FALSE (0001ms, 3712ms total)
T4018 043:486 JLINK_IsHalted()  returns FALSE (0002ms, 3713ms total)
T4018 043:589 JLINK_IsHalted()  returns FALSE (0000ms, 3711ms total)
T4018 043:690 JLINK_IsHalted()  returns FALSE (0001ms, 3712ms total)
T544C 043:792 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 3713ms total)
T544C 043:794 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3714ms total)
T544C 043:796 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 3715ms total)
T544C 043:797 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 00  returns 0x01 (0001ms, 3716ms total)
T544C 043:798 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 12 00  returns 0x02 (0001ms, 3717ms total)
T544C 043:799 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 3718ms total)
T544C 043:800 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3719ms total)
T544C 043:801 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0002ms, 3721ms total)
T544C 043:803 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 3722ms total)
T544C 043:804 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3723ms total)
T544C 043:807 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 3724ms total)
T544C 043:808 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 3725ms total)
T544C 043:809 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 3726ms total)
T544C 043:810 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3727ms total)
T544C 043:811 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 3728ms total)
T544C 043:812 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 3729ms total)
T544C 043:813 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 3730ms total)
T544C 043:814 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3731ms total)
T544C 043:815 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0002ms, 3733ms total)
T544C 043:821 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 3734ms total)
T544C 043:822 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 3735ms total)
T544C 043:823 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 3736ms total)
T544C 043:824 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 3737ms total)
T544C 043:825 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 3738ms total)
T544C 043:826 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 3739ms total)
T544C 043:827 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 3740ms total)
T544C 043:828 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 21 00 00 00  returns 0x04 (0001ms, 3741ms total)
T544C 043:830 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 21 00 00 00  returns 0x04 (0001ms, 3742ms total)
T544C 043:831 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 01  returns 0x01 (0001ms, 3743ms total)
T544C 043:832 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3744ms total)
T544C 043:833 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 3745ms total)
T544C 043:834 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0001ms, 3746ms total)
T544C 043:835 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 12 00  returns 0x02 (0001ms, 3747ms total)
T544C 043:836 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 04 42  returns 0x04 (0001ms, 3748ms total)
T544C 043:838 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 3749ms total)
T544C 043:839 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 3750ms total)
T544C 043:840 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 3751ms total)
T544C 043:841 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 28 00  returns 0x02 (0001ms, 3752ms total)
T544C 043:842 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 3753ms total)
T544C 043:843 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 3754ms total)
T544C 043:844 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 3755ms total)
T544C 043:846 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 3756ms total)
T544C 043:847 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0001ms, 3757ms total)
T544C 043:848 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 3758ms total)
T4018 043:849 JLINK_IsHalted()  returns FALSE (0001ms, 3759ms total)
T4018 043:951 JLINK_IsHalted()  returns FALSE (0001ms, 3759ms total)
T4018 044:053 JLINK_IsHalted()  returns FALSE (0001ms, 3759ms total)
T4018 044:154 JLINK_IsHalted()  returns FALSE (0001ms, 3759ms total)
T4018 044:256 JLINK_IsHalted()  returns FALSE (0001ms, 3759ms total)
T544C 044:357 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 3760ms total)
T544C 044:359 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0002ms, 3762ms total)
T544C 044:362 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 3763ms total)
T544C 044:363 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 00  returns 0x01 (0001ms, 3764ms total)
T544C 044:364 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 12 00  returns 0x02 (0001ms, 3765ms total)
T544C 044:365 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 3766ms total)
T544C 044:366 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3767ms total)
T544C 044:367 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 3768ms total)
T544C 044:368 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 3769ms total)
T544C 044:369 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 3771ms total)
T544C 044:372 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0000ms, 3771ms total)
T544C 044:372 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0002ms, 3773ms total)
T544C 044:374 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 3774ms total)
T544C 044:375 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3775ms total)
T544C 044:376 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 3776ms total)
T544C 044:377 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 3777ms total)
T544C 044:378 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 3778ms total)
T544C 044:379 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3779ms total)
T544C 044:380 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0001ms, 3780ms total)
T544C 044:384 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 3781ms total)
T544C 044:385 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 3782ms total)
T544C 044:386 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 3783ms total)
T544C 044:387 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0000ms, 3783ms total)
T544C 044:387 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0002ms, 3785ms total)
T544C 044:389 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0000ms, 3785ms total)
T544C 044:389 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 3786ms total)
T544C 044:390 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 21 00 00 00  returns 0x04 (0002ms, 3788ms total)
T544C 044:392 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 21 00 00 00  returns 0x04 (0001ms, 3789ms total)
T544C 044:393 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 01  returns 0x01 (0001ms, 3790ms total)
T544C 044:394 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3791ms total)
T544C 044:395 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 3792ms total)
T544C 044:396 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0001ms, 3793ms total)
T544C 044:397 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 12 00  returns 0x02 (0001ms, 3794ms total)
T544C 044:399 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 04 42  returns 0x04 (0001ms, 3795ms total)
T544C 044:400 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 3796ms total)
T544C 044:401 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 3797ms total)
T544C 044:403 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0002ms, 3799ms total)
T544C 044:405 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 28 00  returns 0x02 (0000ms, 3799ms total)
T544C 044:407 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 3800ms total)
T544C 044:408 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 3801ms total)
T544C 044:409 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 3802ms total)
T544C 044:410 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 3803ms total)
T544C 044:411 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0001ms, 3804ms total)
T544C 044:412 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 3805ms total)
T4018 044:413 JLINK_IsHalted()  returns FALSE (0001ms, 3806ms total)
T4018 044:516 JLINK_IsHalted()  returns FALSE (0001ms, 3806ms total)
T4018 044:618 JLINK_IsHalted()  returns FALSE (0001ms, 3806ms total)
T4018 044:720 JLINK_IsHalted()  returns FALSE (0001ms, 3806ms total)
T4018 044:821 JLINK_IsHalted()  returns FALSE (0001ms, 3806ms total)
T544C 044:922 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 24 47 4E 52 4D 43 2C 2C 56 2C 30 30 30 30 2E 30 ...  returns 0x20 (0002ms, 3807ms total)
T544C 044:925 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3808ms total)
T544C 044:927 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 3809ms total)
T544C 044:928 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 00  returns 0x01 (0001ms, 3810ms total)
T544C 044:929 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 13 00  returns 0x02 (0001ms, 3811ms total)
T544C 044:930 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 3812ms total)
T544C 044:931 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3813ms total)
T544C 044:932 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 3814ms total)
T544C 044:933 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0002ms, 3816ms total)
T544C 044:935 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 24 47 4E 47 4C 4C 2C 30 30 30 30 2E 30 30 30 30 ...  returns 0x20 (0001ms, 3817ms total)
T544C 044:937 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 3818ms total)
T544C 044:938 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 3819ms total)
T544C 044:939 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 3820ms total)
T544C 044:940 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0002ms, 3822ms total)
T544C 044:942 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 3823ms total)
T544C 044:943 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 3824ms total)
T544C 044:944 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 3825ms total)
T544C 044:945 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 24 47 4E 47 53 41 2C 41 2C 31 2C 2C 2C 2C 2C 2C ...  returns 0x20 (0001ms, 3826ms total)
T544C 044:963 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0001ms, 3827ms total)
T544C 044:965 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 3828ms total)
T544C 044:966 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 3829ms total)
T544C 044:968 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 3831ms total)
T544C 044:969 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 3832ms total)
T544C 044:970 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 3833ms total)
T544C 044:971 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 3834ms total)
T544C 044:972 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 3835ms total)
T544C 044:973 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 22 00 00 00  returns 0x04 (0002ms, 3837ms total)
T544C 044:975 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 22 00 00 00  returns 0x04 (0001ms, 3838ms total)
T544C 044:977 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 01  returns 0x01 (0002ms, 3840ms total)
T544C 044:979 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3841ms total)
T544C 044:980 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 3842ms total)
T544C 044:981 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0001ms, 3843ms total)
T544C 044:982 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 13 00  returns 0x02 (0001ms, 3844ms total)
T544C 044:984 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 08 42  returns 0x04 (0001ms, 3845ms total)
T544C 044:985 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 3846ms total)
T544C 044:986 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 3847ms total)
T544C 044:987 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 3848ms total)
T544C 044:988 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 28 00  returns 0x02 (0001ms, 3849ms total)
T544C 044:990 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0000ms, 3849ms total)
T544C 044:991 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0000ms, 3849ms total)
T544C 044:992 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0000ms, 3849ms total)
T544C 044:993 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 3850ms total)
T544C 044:994 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0001ms, 3851ms total)
T544C 044:995 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 3852ms total)
T4018 044:996 JLINK_IsHalted()  returns FALSE (0001ms, 3853ms total)
T4018 045:098 JLINK_IsHalted()  returns FALSE (0001ms, 3853ms total)
T4018 045:200 JLINK_IsHalted()  returns FALSE (0001ms, 3853ms total)
T4018 045:301 JLINK_IsHalted()  returns FALSE (0001ms, 3853ms total)
T4018 045:404 JLINK_IsHalted()  returns FALSE (0001ms, 3853ms total)
T544C 045:505 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 3854ms total)
T544C 045:507 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3855ms total)
T544C 045:511 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 3856ms total)
T544C 045:512 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 00  returns 0x01 (0001ms, 3857ms total)
T544C 045:513 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 13 00  returns 0x02 (0001ms, 3858ms total)
T544C 045:514 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 3859ms total)
T544C 045:515 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3860ms total)
T544C 045:516 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 3861ms total)
T544C 045:517 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 3862ms total)
T544C 045:518 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 3864ms total)
T544C 045:521 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 3865ms total)
T544C 045:522 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 3866ms total)
T544C 045:523 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 3867ms total)
T544C 045:524 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3868ms total)
T544C 045:525 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 3869ms total)
T544C 045:526 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 3870ms total)
T544C 045:527 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 3871ms total)
T544C 045:528 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3872ms total)
T544C 045:543 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0001ms, 3873ms total)
T544C 045:546 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0000ms, 3873ms total)
T544C 045:547 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 3874ms total)
T544C 045:548 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 3875ms total)
T544C 045:549 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 3876ms total)
T544C 045:550 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 3877ms total)
T544C 045:551 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 3878ms total)
T544C 045:552 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 3879ms total)
T544C 045:553 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 22 00 00 00  returns 0x04 (0001ms, 3880ms total)
T544C 045:554 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 22 00 00 00  returns 0x04 (0001ms, 3881ms total)
T544C 045:556 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 01  returns 0x01 (0001ms, 3882ms total)
T544C 045:557 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3883ms total)
T544C 045:558 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 3884ms total)
T544C 045:559 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0001ms, 3885ms total)
T544C 045:560 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 13 00  returns 0x02 (0001ms, 3886ms total)
T544C 045:561 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 08 42  returns 0x04 (0001ms, 3887ms total)
T544C 045:563 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 3888ms total)
T544C 045:564 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 3889ms total)
T544C 045:565 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 3890ms total)
T544C 045:566 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 28 00  returns 0x02 (0001ms, 3891ms total)
T544C 045:567 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 3892ms total)
T544C 045:568 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 3893ms total)
T544C 045:569 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 3894ms total)
T544C 045:571 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 3895ms total)
T544C 045:572 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0001ms, 3896ms total)
T544C 045:573 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 3897ms total)
T4018 045:574 JLINK_IsHalted()  returns FALSE (0001ms, 3898ms total)
T4018 045:676 JLINK_IsHalted()  returns FALSE (0001ms, 3898ms total)
T4018 045:777 JLINK_IsHalted()  returns FALSE (0000ms, 3897ms total)
T4018 045:879 JLINK_IsHalted()  returns FALSE (0000ms, 3897ms total)
T4018 045:980 JLINK_IsHalted()  returns FALSE (0001ms, 3898ms total)
T544C 046:082 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 3899ms total)
T544C 046:084 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3900ms total)
T544C 046:086 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 3901ms total)
T544C 046:087 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 00  returns 0x01 (0001ms, 3902ms total)
T544C 046:088 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 14 00  returns 0x02 (0001ms, 3903ms total)
T544C 046:089 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 3904ms total)
T544C 046:090 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3905ms total)
T544C 046:092 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0000ms, 3905ms total)
T544C 046:092 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 3906ms total)
T544C 046:093 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 3908ms total)
T544C 046:096 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 3909ms total)
T544C 046:097 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 3910ms total)
T544C 046:098 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 3911ms total)
T544C 046:099 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3912ms total)
T544C 046:100 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 3913ms total)
T544C 046:101 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 3914ms total)
T544C 046:103 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 3915ms total)
T544C 046:104 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3916ms total)
T544C 046:105 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0001ms, 3917ms total)
T544C 046:109 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 3918ms total)
T544C 046:110 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 3919ms total)
T544C 046:111 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 3920ms total)
T544C 046:112 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 3921ms total)
T544C 046:113 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 3922ms total)
T544C 046:114 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 3923ms total)
T544C 046:115 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 3924ms total)
T544C 046:116 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 23 00 00 00  returns 0x04 (0001ms, 3925ms total)
T544C 046:118 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 23 00 00 00  returns 0x04 (0001ms, 3926ms total)
T544C 046:119 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 01  returns 0x01 (0001ms, 3927ms total)
T544C 046:120 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3928ms total)
T544C 046:121 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 3929ms total)
T544C 046:122 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0002ms, 3931ms total)
T544C 046:124 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 14 00  returns 0x02 (0001ms, 3932ms total)
T544C 046:125 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 0C 42  returns 0x04 (0001ms, 3933ms total)
T544C 046:126 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 3934ms total)
T544C 046:127 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 3935ms total)
T544C 046:129 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 3936ms total)
T544C 046:130 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 28 00  returns 0x02 (0001ms, 3937ms total)
T544C 046:132 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 3938ms total)
T544C 046:133 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 3939ms total)
T544C 046:134 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0002ms, 3941ms total)
T544C 046:136 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 3942ms total)
T544C 046:137 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0001ms, 3943ms total)
T544C 046:138 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 3944ms total)
T4018 046:140 JLINK_IsHalted()  returns FALSE (0001ms, 3945ms total)
T4018 046:241 JLINK_IsHalted()  returns FALSE (0000ms, 3944ms total)
T4018 046:342 JLINK_IsHalted()  returns FALSE (0001ms, 3945ms total)
T4018 046:444 JLINK_IsHalted()  returns FALSE (0001ms, 3945ms total)
T4018 046:546 JLINK_IsHalted()  returns FALSE (0000ms, 3944ms total)
T544C 046:650 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3945ms total)
T544C 046:651 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0002ms, 3947ms total)
T544C 046:654 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0000ms, 3947ms total)
T544C 046:654 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 00  returns 0x01 (0002ms, 3949ms total)
T544C 046:656 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 15 00  returns 0x02 (0001ms, 3950ms total)
T544C 046:657 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 3951ms total)
T544C 046:658 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3952ms total)
T544C 046:659 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 3953ms total)
T544C 046:660 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 3954ms total)
T544C 046:661 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 3956ms total)
T544C 046:663 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 3957ms total)
T544C 046:664 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 3958ms total)
T544C 046:666 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0000ms, 3958ms total)
T544C 046:666 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3959ms total)
T544C 046:667 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0002ms, 3961ms total)
T544C 046:669 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 3962ms total)
T544C 046:670 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 3963ms total)
T544C 046:671 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3964ms total)
T544C 046:672 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0001ms, 3965ms total)
T544C 046:676 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 3966ms total)
T544C 046:677 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0000ms, 3966ms total)
T544C 046:678 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0000ms, 3966ms total)
T544C 046:679 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0000ms, 3966ms total)
T544C 046:679 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 3967ms total)
T544C 046:681 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0000ms, 3967ms total)
T544C 046:681 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 3968ms total)
T544C 046:683 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 24 00 00 00  returns 0x04 (0000ms, 3968ms total)
T544C 046:684 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 24 00 00 00  returns 0x04 (0001ms, 3969ms total)
T544C 046:686 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 01  returns 0x01 (0001ms, 3970ms total)
T544C 046:687 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3971ms total)
T544C 046:688 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 3972ms total)
T544C 046:689 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0001ms, 3973ms total)
T544C 046:690 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 15 00  returns 0x02 (0001ms, 3974ms total)
T544C 046:692 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 10 42  returns 0x04 (0002ms, 3976ms total)
T544C 046:694 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 3977ms total)
T544C 046:695 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 3978ms total)
T544C 046:696 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 3979ms total)
T544C 046:697 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 28 00  returns 0x02 (0001ms, 3980ms total)
T544C 046:699 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 3981ms total)
T544C 046:700 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 3982ms total)
T544C 046:701 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 3983ms total)
T544C 046:702 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 3984ms total)
T544C 046:703 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0001ms, 3985ms total)
T544C 046:704 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 3986ms total)
T4018 046:706 JLINK_IsHalted()  returns FALSE (0001ms, 3987ms total)
T4018 046:808 JLINK_IsHalted()  returns FALSE (0000ms, 3986ms total)
T4018 046:909 JLINK_IsHalted()  returns FALSE (0001ms, 3987ms total)
T4018 047:010 JLINK_IsHalted()  returns FALSE (0002ms, 3988ms total)
T4018 047:113 JLINK_IsHalted()  returns FALSE (0001ms, 3987ms total)
T544C 047:237 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3987ms total)
T544C 047:238 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3988ms total)
T544C 047:241 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 3989ms total)
T544C 047:242 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 00  returns 0x01 (0001ms, 3990ms total)
T544C 047:243 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 15 00  returns 0x02 (0001ms, 3991ms total)
T544C 047:245 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 3992ms total)
T544C 047:246 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 3993ms total)
T544C 047:247 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 3994ms total)
T544C 047:248 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 3995ms total)
T544C 047:249 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 3997ms total)
T544C 047:252 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 3998ms total)
T544C 047:254 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0000ms, 3999ms total)
T544C 047:259 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0000ms, 3999ms total)
T544C 047:259 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 4000ms total)
T544C 047:260 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 4001ms total)
T544C 047:262 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 4003ms total)
T544C 047:263 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0000ms, 4003ms total)
T544C 047:264 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4005ms total)
T544C 047:265 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0001ms, 4006ms total)
T544C 047:268 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 4007ms total)
T544C 047:269 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 4008ms total)
T544C 047:270 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0000ms, 4008ms total)
T544C 047:270 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0002ms, 4010ms total)
T544C 047:272 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 4011ms total)
T544C 047:273 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 4012ms total)
T544C 047:274 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 4013ms total)
T544C 047:275 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 24 00 00 00  returns 0x04 (0001ms, 4014ms total)
T544C 047:277 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 24 00 00 00  returns 0x04 (0000ms, 4014ms total)
T544C 047:278 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 01  returns 0x01 (0001ms, 4015ms total)
T544C 047:279 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 4016ms total)
T544C 047:280 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 4017ms total)
T544C 047:281 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0001ms, 4018ms total)
T544C 047:282 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 15 00  returns 0x02 (0001ms, 4019ms total)
T544C 047:284 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 10 42  returns 0x04 (0000ms, 4019ms total)
T544C 047:285 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 4020ms total)
T544C 047:286 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 4021ms total)
T544C 047:287 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 4022ms total)
T544C 047:288 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 28 00  returns 0x02 (0001ms, 4023ms total)
T544C 047:290 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0000ms, 4023ms total)
T544C 047:290 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 4024ms total)
T544C 047:291 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 4025ms total)
T544C 047:293 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 4026ms total)
T544C 047:294 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0002ms, 4028ms total)
T544C 047:296 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 4029ms total)
T4018 047:297 JLINK_IsHalted()  returns FALSE (0001ms, 4030ms total)
T4018 047:399 JLINK_Halt()  returns 0x00 (0004ms, 4033ms total)
T4018 047:403 JLINK_IsHalted()  returns TRUE (0000ms, 4033ms total)
T4018 047:403 JLINK_IsHalted()  returns TRUE (0000ms, 4033ms total)
T4018 047:403 JLINK_IsHalted()  returns TRUE (0000ms, 4033ms total)
T4018 047:403 JLINK_ReadReg(R15 (PC))  returns 0x000000E2 (0000ms, 4033ms total)
T4018 047:403 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 4033ms total)
T4018 047:403 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 01 00 00 00  returns 0x01 (0001ms, 4034ms total)
T4018 047:404 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 4035ms total)
T4018 047:405 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0001ms, 4036ms total)
T4018 047:406 JLINK_ReadReg(R0)  returns 0x00000000 (0001ms, 4037ms total)
T4018 047:407 JLINK_ReadReg(R1)  returns 0x0000029A (0000ms, 4037ms total)
T4018 047:407 JLINK_ReadReg(R2)  returns 0x00000000 (0000ms, 4037ms total)
T4018 047:407 JLINK_ReadReg(R3)  returns 0x00000400 (0000ms, 4037ms total)
T4018 047:407 JLINK_ReadReg(R4)  returns 0x00000001 (0000ms, 4037ms total)
T4018 047:407 JLINK_ReadReg(R5)  returns 0x00000001 (0000ms, 4037ms total)
T4018 047:407 JLINK_ReadReg(R6)  returns 0x0202F7D0 (0000ms, 4037ms total)
T4018 047:407 JLINK_ReadReg(R7)  returns 0xFFFFFFFF (0000ms, 4037ms total)
T4018 047:407 JLINK_ReadReg(R8)  returns 0xFFFDDBF7 (0000ms, 4037ms total)
T4018 047:407 JLINK_ReadReg(R9)  returns 0x3D7E17EC (0000ms, 4037ms total)
T4018 047:407 JLINK_ReadReg(R10)  returns 0x7EFBF7FF (0000ms, 4037ms total)
T4018 047:407 JLINK_ReadReg(R11)  returns 0xFDBFF7FE (0000ms, 4037ms total)
T4018 047:407 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 4037ms total)
T4018 047:407 JLINK_ReadReg(R13 (SP))  returns 0x0202F794 (0000ms, 4037ms total)
T4018 047:407 JLINK_ReadReg(R14)  returns 0x000035FF (0000ms, 4037ms total)
T4018 047:407 JLINK_ReadReg(R15 (PC))  returns 0x000000E2 (0000ms, 4037ms total)
T4018 047:407 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 4037ms total)
T4018 047:407 JLINK_ReadReg(MSP)  returns 0x0202F794 (0001ms, 4038ms total)
T4018 047:408 JLINK_ReadReg(PSP)  returns 0xBBFFFE98 (0000ms, 4038ms total)
T4018 047:408 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 4038ms total)
T544C 047:408 JLINK_ReadMemEx(0x0202F79C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F79C) - Data: FF 35 00 00  returns 0x04 (0001ms, 4039ms total)
T544C 047:409 JLINK_ReadMemEx(0x0202F794, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F794) - Data: F8 B2 01 02  returns 0x04 (0002ms, 4041ms total)
T544C 047:411 JLINK_ReadMemEx(0x0202F798, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F798) - Data: 64 BC 01 02  returns 0x04 (0001ms, 4042ms total)
T544C 047:412 JLINK_ReadMemEx(0x0202F79C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F79C) - Data: FF 35 00 00  returns 0x04 (0001ms, 4043ms total)
T544C 047:413 JLINK_ReadMemEx(0x0202F7AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7AC) - Data: 1F 61 00 00  returns 0x04 (0001ms, 4044ms total)
T544C 047:415 JLINK_ReadMemEx(0x0202F7A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7A0) - Data: 00 00 00 00  returns 0x04 (0001ms, 4045ms total)
T544C 047:416 JLINK_ReadMemEx(0x0202F7A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7A4) - Data: 64 BC 01 02  returns 0x04 (0001ms, 4046ms total)
T544C 047:417 JLINK_ReadMemEx(0x0202F7A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7A8) - Data: 54 BC 01 02  returns 0x04 (0001ms, 4047ms total)
T544C 047:418 JLINK_ReadMemEx(0x0202F7AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7AC) - Data: 1F 61 00 00  returns 0x04 (0001ms, 4048ms total)
T544C 047:419 JLINK_ReadMemEx(0x0202F7B4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7B4) - Data: B1 2C 00 00  returns 0x04 (0001ms, 4049ms total)
T544C 047:420 JLINK_ReadMemEx(0x0202F7B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7B0) - Data: FF FF FF FF  returns 0x04 (0001ms, 4050ms total)
T544C 047:421 JLINK_ReadMemEx(0x0202F7B4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7B4) - Data: B1 2C 00 00  returns 0x04 (0001ms, 4051ms total)
T544C 047:422 JLINK_ReadMemEx(0x0202F7BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7BC) - Data: 81 2D 00 00  returns 0x04 (0001ms, 4052ms total)
T544C 047:424 JLINK_ReadMemEx(0x0202F7B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7B8) - Data: FF FF FF FF  returns 0x04 (0001ms, 4053ms total)
T544C 047:425 JLINK_ReadMemEx(0x0202F7BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7BC) - Data: 81 2D 00 00  returns 0x04 (0001ms, 4054ms total)
T544C 047:426 JLINK_ReadMemEx(0x0202F7E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7E4) - Data: 31 35 00 00  returns 0x04 (0001ms, 4055ms total)
T544C 047:428 JLINK_ReadMemEx(0x0202F7D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7D4) - Data: 64 BC 01 02  returns 0x04 (0001ms, 4056ms total)
T544C 047:429 JLINK_ReadMemEx(0x0202F7D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7D8) - Data: 70 35 00 00  returns 0x04 (0001ms, 4057ms total)
T544C 047:430 JLINK_ReadMemEx(0x0202F7DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7DC) - Data: 54 BC 01 02  returns 0x04 (0001ms, 4058ms total)
T544C 047:431 JLINK_ReadMemEx(0x0202F7E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7E0) - Data: 01 00 00 00  returns 0x04 (0001ms, 4059ms total)
T544C 047:432 JLINK_ReadMemEx(0x0202F7E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7E4) - Data: 31 35 00 00  returns 0x04 (0001ms, 4060ms total)
T544C 047:433 JLINK_ReadMemEx(0x0202F7F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7F4) - Data: 61 9B 00 00  returns 0x04 (0001ms, 4061ms total)
T544C 047:434 JLINK_ReadMemEx(0x0202F7E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7E8) - Data: 10 97 01 02  returns 0x04 (0001ms, 4062ms total)
T544C 047:435 JLINK_ReadMemEx(0x0202F7EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7EC) - Data: 00 00 00 00  returns 0x04 (0001ms, 4063ms total)
T544C 047:436 JLINK_ReadMemEx(0x0202F7F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7F0) - Data: 9A 9C 01 02  returns 0x04 (0001ms, 4064ms total)
T544C 047:437 JLINK_ReadMemEx(0x0202F7F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7F4) - Data: 61 9B 00 00  returns 0x04 (0001ms, 4065ms total)
T544C 047:440 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4066ms total)
T544C 047:441 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 4067ms total)
T544C 047:444 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 4068ms total)
T544C 047:445 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 00  returns 0x01 (0001ms, 4069ms total)
T544C 047:446 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 15 00  returns 0x02 (0001ms, 4070ms total)
T544C 047:447 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 4071ms total)
T544C 047:448 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 4072ms total)
T544C 047:449 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 4073ms total)
T544C 047:450 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 4074ms total)
T544C 047:451 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 4076ms total)
T544C 047:455 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 4077ms total)
T544C 047:456 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0002ms, 4079ms total)
T544C 047:458 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0000ms, 4079ms total)
T544C 047:458 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 4080ms total)
T544C 047:459 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 4081ms total)
T544C 047:460 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 4082ms total)
T544C 047:461 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 4083ms total)
T544C 047:463 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4084ms total)
T544C 047:464 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0001ms, 4085ms total)
T544C 047:467 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 4086ms total)
T544C 047:468 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 4087ms total)
T544C 047:469 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 4088ms total)
T544C 047:470 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0000ms, 4088ms total)
T544C 047:470 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 4089ms total)
T544C 047:471 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 4090ms total)
T544C 047:472 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 4091ms total)
T544C 047:473 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 24 00 00 00  returns 0x04 (0001ms, 4092ms total)
T544C 047:474 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 24 00 00 00  returns 0x04 (0001ms, 4093ms total)
T544C 047:475 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 01  returns 0x01 (0001ms, 4094ms total)
T544C 047:476 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 4095ms total)
T544C 047:477 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 4096ms total)
T544C 047:478 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0002ms, 4098ms total)
T544C 047:480 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 15 00  returns 0x02 (0001ms, 4099ms total)
T544C 047:481 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 10 42  returns 0x04 (0001ms, 4100ms total)
T544C 047:482 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 4101ms total)
T544C 047:483 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 4102ms total)
T544C 047:485 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 4103ms total)
T544C 047:486 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 28 00  returns 0x02 (0001ms, 4104ms total)
T544C 047:487 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 4105ms total)
T544C 047:488 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 4106ms total)
T544C 047:489 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 4107ms total)
T544C 047:490 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0002ms, 4109ms total)
T544C 047:492 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0001ms, 4110ms total)
T544C 047:493 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0000ms, 4110ms total)
T544C 047:495 JLINK_ReadMemEx(0x000000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x000000C0) -- Updating C cache (64 bytes @ 0x000000C0) -- Read from C cache (2 bytes @ 0x000000E2) - Data: 0D 46  returns 0x02 (0002ms, 4112ms total)
T544C 047:497 JLINK_ReadMemEx(0x000000E4, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00000100) -- Updating C cache (64 bytes @ 0x00000100) -- Read from C cache (60 bytes @ 0x000000E4) - Data: D5 40 9D 42 05 D3 1D 46 95 40 49 1B 25 46 95 40 ...  returns 0x3C (0001ms, 4113ms total)
T544C 047:498 JLINK_ReadMemEx(0x000000E4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000000E4) - Data: D5 40  returns 0x02 (0001ms, 4114ms total)
T544C 047:499 JLINK_ReadMemEx(0x000000E4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000000E4) - Data: D5 40 9D 42 05 D3 1D 46 95 40 49 1B 25 46 95 40 ...  returns 0x3C (0000ms, 4114ms total)
T544C 047:499 JLINK_ReadMemEx(0x000000E4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000000E4) - Data: D5 40  returns 0x02 (0000ms, 4114ms total)
T544C 047:499 JLINK_ReadMemEx(0x000000E6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000000E6) - Data: 9D 42  returns 0x02 (0000ms, 4114ms total)
T544C 047:499 JLINK_ReadMemEx(0x000000E6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000000E6) - Data: 9D 42  returns 0x02 (0000ms, 4114ms total)
T544C 047:499 JLINK_ReadMemEx(0x000000E8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000000E8) - Data: 05 D3 1D 46 95 40 49 1B 25 46 95 40 40 19 15 46 ...  returns 0x3C (0000ms, 4114ms total)
T544C 047:499 JLINK_ReadMemEx(0x000000E8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000000E8) - Data: 05 D3  returns 0x02 (0000ms, 4114ms total)
T544C 047:499 JLINK_ReadMemEx(0x000000E8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000000E8) - Data: 05 D3 1D 46 95 40 49 1B 25 46 95 40 40 19 15 46 ...  returns 0x3C (0000ms, 4114ms total)
T544C 047:499 JLINK_ReadMemEx(0x000000E8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000000E8) - Data: 05 D3  returns 0x02 (0000ms, 4114ms total)
T544C 047:499 JLINK_ReadMemEx(0x000000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000000EA) - Data: 1D 46  returns 0x02 (0000ms, 4114ms total)
T544C 047:499 JLINK_ReadMemEx(0x000000EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000000EA) - Data: 1D 46  returns 0x02 (0001ms, 4115ms total)
T544C 047:500 JLINK_ReadMemEx(0x000000EC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000000EC) - Data: 95 40 49 1B 25 46 95 40 40 19 15 46 52 1E 00 2D ...  returns 0x3C (0000ms, 4115ms total)
T544C 047:500 JLINK_ReadMemEx(0x000000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000000EC) - Data: 95 40  returns 0x02 (0000ms, 4115ms total)
T544C 047:500 JLINK_ReadMemEx(0x000000EC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000000EC) - Data: 95 40 49 1B 25 46 95 40 40 19 15 46 52 1E 00 2D ...  returns 0x3C (0000ms, 4115ms total)
T544C 047:500 JLINK_ReadMemEx(0x000000EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000000EC) - Data: 95 40  returns 0x02 (0000ms, 4115ms total)
T544C 047:500 JLINK_ReadMemEx(0x000000EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000000EE) - Data: 49 1B  returns 0x02 (0000ms, 4115ms total)
T544C 047:500 JLINK_ReadMemEx(0x000000EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000000EE) - Data: 49 1B  returns 0x02 (0000ms, 4115ms total)
T544C 047:500 JLINK_ReadMemEx(0x000000F0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000000F0) - Data: 25 46 95 40 40 19 15 46 52 1E 00 2D F1 DC 30 BD ...  returns 0x3C (0000ms, 4115ms total)
T544C 047:500 JLINK_ReadMemEx(0x000000F0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000000F0) - Data: 25 46  returns 0x02 (0000ms, 4115ms total)
T544C 048:883 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 4115ms total)
T544C 048:883 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) (0076ms, 4191ms total)
T544C 048:959 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 4191ms total)
T544C 048:959 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 4191ms total)
T544C 048:962 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, 4193ms total)
T544C 048:964 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0001ms, 4194ms total)
T544C 048:965 JLINK_ReadMemEx(0x0300373A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373A) - Data: 4E F8  returns 0x02 (0001ms, 4195ms total)
T544C 048:966 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 (0002ms, 4197ms total)
T544C 048:968 JLINK_ReadMemEx(0x0300373C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373C) - Data: FC F7  returns 0x02 (0001ms, 4198ms total)
T544C 048:969 JLINK_ReadMemEx(0x0300373E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373E) - Data: C0 FC  returns 0x02 (0002ms, 4200ms total)
T544C 048:971 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, 4201ms total)
T544C 048:972 JLINK_ReadMemEx(0x03003740, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003740) - Data: 80 B5  returns 0x02 (0001ms, 4202ms total)
T544C 048:973 JLINK_ReadMemEx(0x03003742, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003742) - Data: 0D 49  returns 0x02 (0001ms, 4203ms total)
T544C 048:974 JLINK_ReadMemEx(0x03003742, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003742) - Data: 0D 49  returns 0x02 (0002ms, 4205ms total)
T544C 048:976 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, 4206ms total)
T544C 048:977 JLINK_ReadMemEx(0x03003744, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003744) - Data: 08 68  returns 0x02 (0001ms, 4207ms total)
T544C 048:978 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 (0002ms, 4209ms total)
T544C 048:980 JLINK_ReadMemEx(0x03003744, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003744) - Data: 08 68  returns 0x02 (0001ms, 4210ms total)
T544C 048:981 JLINK_ReadMemEx(0x03003746, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003746) - Data: 00 28  returns 0x02 (0001ms, 4211ms total)
T544C 048:982 JLINK_ReadMemEx(0x03003746, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003746) - Data: 00 28  returns 0x02 (0001ms, 4212ms total)
T544C 048:983 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 (0002ms, 4214ms total)
T544C 048:985 JLINK_ReadMemEx(0x03003748, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003748) - Data: 00 D4  returns 0x02 (0001ms, 4215ms total)
T544C 048:986 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 (0002ms, 4217ms total)
T544C 048:988 JLINK_ReadMemEx(0x03003748, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003748) - Data: 00 D4  returns 0x02 (0001ms, 4218ms total)
T544C 048:989 JLINK_ReadMemEx(0x0300374A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300374A) - Data: 80 BD  returns 0x02 (0001ms, 4219ms total)
T544C 049:108 JLINK_ReadReg(R0)  returns 0x00000000 (0000ms, 4219ms total)
T544C 049:108 JLINK_ReadReg(R1)  returns 0x0000029A (0000ms, 4219ms total)
T544C 049:108 JLINK_ReadReg(R2)  returns 0x00000000 (0000ms, 4219ms total)
T544C 049:108 JLINK_ReadReg(R3)  returns 0x00000400 (0000ms, 4219ms total)
T544C 049:108 JLINK_ReadReg(R4)  returns 0x00000001 (0000ms, 4219ms total)
T544C 049:108 JLINK_ReadReg(R5)  returns 0x00000001 (0000ms, 4219ms total)
T544C 049:108 JLINK_ReadReg(R6)  returns 0x0202F7D0 (0000ms, 4219ms total)
T544C 049:108 JLINK_ReadReg(R7)  returns 0xFFFFFFFF (0000ms, 4219ms total)
T544C 049:108 JLINK_ReadReg(R8)  returns 0xFFFDDBF7 (0000ms, 4219ms total)
T544C 049:108 JLINK_ReadReg(R9)  returns 0x3D7E17EC (0000ms, 4219ms total)
T544C 049:108 JLINK_ReadReg(R10)  returns 0x7EFBF7FF (0000ms, 4219ms total)
T544C 049:108 JLINK_ReadReg(R11)  returns 0xFDBFF7FE (0000ms, 4219ms total)
T544C 049:108 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 4219ms total)
T544C 049:108 JLINK_ReadReg(R13 (SP))  returns 0x0202F800 (0000ms, 4219ms total)
T544C 049:108 JLINK_ReadReg(R14)  returns 0x000035FF (0000ms, 4219ms total)
T544C 049:108 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 4219ms total)
T544C 049:108 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 4219ms total)
T544C 049:108 JLINK_ReadReg(MSP)  returns 0x0202F800 (0000ms, 4219ms total)
T544C 049:108 JLINK_ReadReg(PSP)  returns 0xBBFFFE98 (0000ms, 4219ms total)
T544C 049:108 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 4219ms total)
T544C 049:108 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0003ms, 4222ms total)
T544C 049:111 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 4223ms total)
T544C 049:113 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 4224ms total)
T544C 049:114 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 00  returns 0x01 (0001ms, 4225ms total)
T544C 049:115 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 15 00  returns 0x02 (0001ms, 4226ms total)
T544C 049:117 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 4227ms total)
T544C 049:118 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 4228ms total)
T544C 049:119 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 4229ms total)
T544C 049:120 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0000ms, 4229ms total)
T544C 049:120 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 4231ms total)
T544C 049:123 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 4232ms total)
T544C 049:124 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0002ms, 4234ms total)
T544C 049:126 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 4235ms total)
T544C 049:127 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 4236ms total)
T544C 049:128 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 4237ms total)
T544C 049:129 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 4238ms total)
T544C 049:130 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 4239ms total)
T544C 049:131 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4240ms total)
T544C 049:132 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0001ms, 4241ms total)
T544C 049:135 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 4242ms total)
T544C 049:136 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 4243ms total)
T544C 049:137 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 4244ms total)
T544C 049:138 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 4245ms total)
T544C 049:139 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 4246ms total)
T544C 049:140 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 4247ms total)
T544C 049:141 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 4248ms total)
T544C 049:142 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 24 00 00 00  returns 0x04 (0000ms, 4248ms total)
T544C 049:142 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 24 00 00 00  returns 0x04 (0002ms, 4250ms total)
T544C 049:144 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 01  returns 0x01 (0001ms, 4251ms total)
T544C 049:145 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 4252ms total)
T544C 049:146 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 4253ms total)
T544C 049:147 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0001ms, 4254ms total)
T544C 049:148 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 15 00  returns 0x02 (0001ms, 4255ms total)
T544C 049:149 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 10 42  returns 0x04 (0001ms, 4256ms total)
T544C 049:150 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 4257ms total)
T544C 049:151 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 4258ms total)
T544C 049:153 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 4259ms total)
T544C 049:154 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 28 00  returns 0x02 (0001ms, 4260ms total)
T544C 049:155 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 4261ms total)
T544C 049:156 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 4262ms total)
T544C 049:157 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 4263ms total)
T544C 049:159 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 4264ms total)
T544C 049:160 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0001ms, 4265ms total)
T544C 049:161 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 4266ms total)
T544C 059:420 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 4266ms total)
T544C 059:420 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) (0076ms, 4342ms total)
T544C 059:496 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 4342ms total)
T544C 059:496 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 4342ms total)
T544C 059:617 JLINK_ReadReg(R0)  returns 0x00000000 (0000ms, 4342ms total)
T544C 059:617 JLINK_ReadReg(R1)  returns 0x0000029A (0000ms, 4342ms total)
T544C 059:617 JLINK_ReadReg(R2)  returns 0x00000000 (0000ms, 4342ms total)
T544C 059:617 JLINK_ReadReg(R3)  returns 0x00000400 (0000ms, 4342ms total)
T544C 059:617 JLINK_ReadReg(R4)  returns 0x00000001 (0000ms, 4342ms total)
T544C 059:617 JLINK_ReadReg(R5)  returns 0x00000001 (0000ms, 4342ms total)
T544C 059:617 JLINK_ReadReg(R6)  returns 0x0202F7D0 (0000ms, 4342ms total)
T544C 059:617 JLINK_ReadReg(R7)  returns 0xFFFFFFFF (0000ms, 4342ms total)
T544C 059:617 JLINK_ReadReg(R8)  returns 0xFFFDDBF7 (0000ms, 4342ms total)
T544C 059:617 JLINK_ReadReg(R9)  returns 0x3D7E17EC (0000ms, 4342ms total)
T544C 059:617 JLINK_ReadReg(R10)  returns 0x7EFBF7FF (0000ms, 4342ms total)
T544C 059:617 JLINK_ReadReg(R11)  returns 0xFDBFF7FE (0000ms, 4342ms total)
T544C 059:617 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 4342ms total)
T544C 059:617 JLINK_ReadReg(R13 (SP))  returns 0x0202F800 (0000ms, 4342ms total)
T544C 059:617 JLINK_ReadReg(R14)  returns 0x000035FF (0000ms, 4342ms total)
T544C 059:617 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 4342ms total)
T544C 059:617 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 4342ms total)
T544C 059:617 JLINK_ReadReg(MSP)  returns 0x0202F800 (0000ms, 4342ms total)
T544C 059:617 JLINK_ReadReg(PSP)  returns 0xBBFFFE98 (0001ms, 4343ms total)
T544C 059:618 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 4343ms total)
T544C 059:618 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 4345ms total)
T544C 059:620 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0000ms, 4345ms total)
T544C 059:623 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 4346ms total)
T544C 059:624 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 00  returns 0x01 (0000ms, 4346ms total)
T544C 059:624 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 15 00  returns 0x02 (0002ms, 4348ms total)
T544C 059:626 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 4349ms total)
T544C 059:627 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 4350ms total)
T544C 059:628 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 4351ms total)
T544C 059:629 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 4352ms total)
T544C 059:630 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4353ms total)
T544C 059:632 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 4354ms total)
T544C 059:633 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 4355ms total)
T544C 059:634 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 4356ms total)
T544C 059:635 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0002ms, 4358ms total)
T544C 059:637 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 4359ms total)
T544C 059:638 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 4360ms total)
T544C 059:639 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 4361ms total)
T544C 059:640 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4362ms total)
T544C 059:641 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 01  returns 0x01 (0001ms, 4363ms total)
T544C 059:644 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 4364ms total)
T544C 059:645 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 4365ms total)
T544C 059:646 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 4366ms total)
T544C 059:647 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 4367ms total)
T544C 059:648 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0002ms, 4369ms total)
T544C 059:650 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 4370ms total)
T544C 059:651 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 4371ms total)
T544C 059:652 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 24 00 00 00  returns 0x04 (0001ms, 4372ms total)
T544C 059:653 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 24 00 00 00  returns 0x04 (0001ms, 4373ms total)
T544C 059:654 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 01  returns 0x01 (0001ms, 4374ms total)
T544C 059:655 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 4375ms total)
T544C 059:656 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 4376ms total)
T544C 059:657 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 24 47 4E 47 47 41 2C 2C 30 30 30 30 2E 30 30 30 ...  returns 0x20 (0001ms, 4377ms total)
T544C 059:658 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 15 00  returns 0x02 (0001ms, 4378ms total)
T544C 059:659 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 10 42  returns 0x04 (0001ms, 4379ms total)
T544C 059:660 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 4380ms total)
T544C 059:661 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 4381ms total)
T544C 059:662 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 4382ms total)
T544C 059:663 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 28 00  returns 0x02 (0001ms, 4383ms total)
T544C 059:665 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 4384ms total)
T544C 059:666 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 4385ms total)
T544C 059:667 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0000ms, 4385ms total)
T544C 059:670 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 4386ms total)
T544C 059:671 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0001ms, 4387ms total)
T544C 059:672 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 4388ms total)
T4018 060:120 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0001ms, 4389ms total)
T4018 060:121 JLINK_Go() -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU_WriteMem(4 bytes @ 0xE0002014) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0007ms, 4396ms total)
T4018 060:230 JLINK_IsHalted()  returns FALSE (0001ms, 4397ms total)
T4018 060:331 JLINK_IsHalted()  returns FALSE (0001ms, 4397ms total)
T4018 060:433 JLINK_IsHalted()  returns FALSE (0001ms, 4397ms total)
T4018 060:535 JLINK_IsHalted()  returns FALSE (0001ms, 4397ms total)
T544C 060:638 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 4398ms total)
T544C 060:640 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 00  returns 0x01 (0001ms, 4399ms total)
T544C 060:643 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 4400ms total)
T544C 060:644 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 00  returns 0x01 (0001ms, 4401ms total)
T544C 060:645 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0001ms, 4402ms total)
T544C 060:646 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 4403ms total)
T544C 060:647 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 00  returns 0x01 (0001ms, 4404ms total)
T544C 060:649 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0000ms, 4404ms total)
T544C 060:649 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0002ms, 4406ms total)
T544C 060:651 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4407ms total)
T544C 060:653 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 4408ms total)
T544C 060:654 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 4409ms total)
T544C 060:655 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 4410ms total)
T544C 060:656 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 00  returns 0x01 (0001ms, 4411ms total)
T544C 060:657 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 4412ms total)
T544C 060:658 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 4413ms total)
T544C 060:659 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 4414ms total)
T544C 060:660 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 4416ms total)
T544C 060:662 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 00  returns 0x01 (0001ms, 4417ms total)
T544C 060:665 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 4418ms total)
T544C 060:666 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 4419ms total)
T544C 060:667 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 4420ms total)
T544C 060:668 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 4421ms total)
T544C 060:669 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 4422ms total)
T544C 060:670 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 4423ms total)
T544C 060:671 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 4424ms total)
T544C 060:672 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 00 00 00 00  returns 0x04 (0001ms, 4425ms total)
T544C 060:673 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 00 00 00 00  returns 0x04 (0001ms, 4426ms total)
T544C 060:675 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 01  returns 0x01 (0001ms, 4427ms total)
T544C 060:676 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 00  returns 0x01 (0001ms, 4428ms total)
T544C 060:677 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 4429ms total)
T544C 060:678 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 4431ms total)
T544C 060:680 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 00 00  returns 0x02 (0001ms, 4432ms total)
T544C 060:682 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 00 00  returns 0x04 (0001ms, 4433ms total)
T544C 060:683 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 4434ms total)
T544C 060:684 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 4435ms total)
T544C 060:685 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 4436ms total)
T544C 060:686 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 28 00  returns 0x02 (0001ms, 4437ms total)
T544C 060:688 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 4438ms total)
T544C 060:689 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 4439ms total)
T544C 060:690 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 4440ms total)
T544C 060:691 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: A0  returns 0x01 (0001ms, 4441ms total)
T544C 060:693 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0001ms, 4442ms total)
T544C 060:694 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 4443ms total)
T4018 060:695 JLINK_IsHalted()  returns FALSE (0001ms, 4444ms total)
T4018 060:798 JLINK_IsHalted()  returns FALSE (0001ms, 4444ms total)
T4018 060:899 JLINK_IsHalted()  returns FALSE (0001ms, 4444ms total)
T4018 061:001 JLINK_IsHalted()  returns FALSE (0002ms, 4445ms total)
T4018 061:103 JLINK_IsHalted()  returns FALSE (0001ms, 4444ms total)
T544C 061:207 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4444ms total)
T544C 061:208 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 4445ms total)
T544C 061:212 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 4446ms total)
T544C 061:213 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 00  returns 0x01 (0001ms, 4447ms total)
T544C 061:214 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 01 00  returns 0x02 (0001ms, 4448ms total)
T544C 061:215 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 01  returns 0x01 (0001ms, 4449ms total)
T544C 061:216 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 4450ms total)
T544C 061:217 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 4451ms total)
T544C 061:218 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 4452ms total)
T544C 061:219 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 4454ms total)
T544C 061:222 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 4455ms total)
T544C 061:223 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 4456ms total)
T544C 061:224 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 4457ms total)
T544C 061:225 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 4458ms total)
T544C 061:226 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0002ms, 4460ms total)
T544C 061:228 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 4461ms total)
T544C 061:229 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0002ms, 4463ms total)
T544C 061:231 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4464ms total)
T544C 061:232 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 00  returns 0x01 (0001ms, 4465ms total)
T544C 061:236 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 4466ms total)
T544C 061:237 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 4467ms total)
T544C 061:238 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 4468ms total)
T544C 061:239 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 4469ms total)
T544C 061:240 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 4470ms total)
T544C 061:241 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 4471ms total)
T544C 061:242 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 4472ms total)
T544C 061:243 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 01 00 00 00  returns 0x04 (0001ms, 4473ms total)
T544C 061:244 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 01 00 00 00  returns 0x04 (0001ms, 4474ms total)
T544C 061:246 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 01  returns 0x01 (0001ms, 4475ms total)
T544C 061:247 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 4476ms total)
T544C 061:248 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 4477ms total)
T544C 061:249 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 4479ms total)
T544C 061:251 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 01 00  returns 0x02 (0001ms, 4480ms total)
T544C 061:252 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 80 3F  returns 0x04 (0001ms, 4481ms total)
T544C 061:254 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 4483ms total)
T544C 061:255 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 4484ms total)
T544C 061:258 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 4485ms total)
T544C 061:259 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 28 00  returns 0x02 (0001ms, 4486ms total)
T544C 061:260 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 4487ms total)
T544C 061:261 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 4488ms total)
T544C 061:262 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 4489ms total)
T544C 061:264 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: E0  returns 0x01 (0001ms, 4490ms total)
T544C 061:265 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 01  returns 0x01 (0001ms, 4491ms total)
T544C 061:266 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 4492ms total)
T4018 061:267 JLINK_IsHalted()  returns FALSE (0001ms, 4493ms total)
T4018 061:370 JLINK_IsHalted()  returns FALSE (0001ms, 4493ms total)
T4018 061:471 JLINK_IsHalted()  returns FALSE (0001ms, 4493ms total)
T4018 061:573 JLINK_IsHalted()  returns FALSE (0001ms, 4493ms total)
T4018 061:675 JLINK_IsHalted()  returns FALSE (0001ms, 4493ms total)
T544C 061:778 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4493ms total)
T544C 061:779 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 4494ms total)
T544C 061:781 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 4495ms total)
T544C 061:782 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 00  returns 0x01 (0001ms, 4496ms total)
T544C 061:784 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 02 00  returns 0x02 (0000ms, 4496ms total)
T544C 061:784 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 00  returns 0x01 (0001ms, 4497ms total)
T544C 061:785 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 4498ms total)
T544C 061:786 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 4499ms total)
T544C 061:787 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 4500ms total)
T544C 061:788 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 4502ms total)
T544C 061:791 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 4503ms total)
T544C 061:792 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 4504ms total)
T544C 061:793 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 4505ms total)
T544C 061:794 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 4506ms total)
T544C 061:795 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 4507ms total)
T544C 061:796 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 4508ms total)
T544C 061:797 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 4509ms total)
T544C 061:798 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 4511ms total)
T544C 061:800 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 00  returns 0x01 (0001ms, 4512ms total)
T544C 061:803 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 4513ms total)
T544C 061:804 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0002ms, 4515ms total)
T544C 061:806 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 4516ms total)
T544C 061:807 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 4517ms total)
T544C 061:808 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 4518ms total)
T544C 061:809 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 4519ms total)
T544C 061:810 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 4520ms total)
T544C 061:811 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 02 00 00 00  returns 0x04 (0001ms, 4521ms total)
T544C 061:812 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 02 00 00 00  returns 0x04 (0001ms, 4522ms total)
T544C 061:814 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 01  returns 0x01 (0001ms, 4523ms total)
T544C 061:815 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 4524ms total)
T544C 061:816 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 4525ms total)
T544C 061:817 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 4527ms total)
T544C 061:819 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 02 00  returns 0x02 (0001ms, 4528ms total)
T544C 061:820 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 00 40  returns 0x04 (0001ms, 4529ms total)
T544C 061:821 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 4530ms total)
T544C 061:822 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 4531ms total)
T544C 061:824 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 4532ms total)
T544C 061:825 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 28 00  returns 0x02 (0001ms, 4533ms total)
T544C 061:826 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 4534ms total)
T544C 061:827 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 4535ms total)
T544C 061:828 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 4536ms total)
T544C 061:829 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: 60  returns 0x01 (0001ms, 4537ms total)
T544C 061:831 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 00  returns 0x01 (0001ms, 4538ms total)
T544C 061:832 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 4539ms total)
T4018 061:833 JLINK_IsHalted()  returns FALSE (0001ms, 4540ms total)
T4018 061:936 JLINK_IsHalted()  returns FALSE (0001ms, 4540ms total)
T4018 062:039 JLINK_IsHalted()  returns FALSE (0001ms, 4540ms total)
T4018 062:141 JLINK_IsHalted()  returns FALSE (0000ms, 4539ms total)
T4018 062:243 JLINK_IsHalted()  returns FALSE (0001ms, 4540ms total)
T544C 062:345 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 4541ms total)
T544C 062:347 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 4542ms total)
T544C 062:349 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 4543ms total)
T544C 062:350 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 02  returns 0x01 (0001ms, 4544ms total)
T544C 062:351 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 02 00  returns 0x02 (0001ms, 4545ms total)
T544C 062:353 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 00  returns 0x01 (0001ms, 4546ms total)
T544C 062:354 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 4547ms total)
T544C 062:356 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 4548ms total)
T544C 062:357 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 4549ms total)
T544C 062:358 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4550ms total)
T544C 062:360 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 4551ms total)
T544C 062:361 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 4552ms total)
T544C 062:362 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 4553ms total)
T544C 062:363 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 4554ms total)
T544C 062:364 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 4555ms total)
T544C 062:365 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 4556ms total)
T544C 062:366 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 4557ms total)
T544C 062:367 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 4559ms total)
T544C 062:369 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 00  returns 0x01 (0001ms, 4560ms total)
T544C 062:372 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 4561ms total)
T544C 062:373 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 4562ms total)
T544C 062:374 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 00  returns 0x01 (0001ms, 4563ms total)
T544C 062:375 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 4564ms total)
T544C 062:376 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 4565ms total)
T544C 062:377 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 4566ms total)
T544C 062:378 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 4567ms total)
T544C 062:379 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 02 00 00 00  returns 0x04 (0001ms, 4568ms total)
T544C 062:381 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 02 00 00 00  returns 0x04 (0000ms, 4568ms total)
T544C 062:383 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 01  returns 0x01 (0001ms, 4569ms total)
T544C 062:384 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 4570ms total)
T544C 062:385 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 4571ms total)
T544C 062:386 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4572ms total)
T544C 062:387 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 02 00  returns 0x02 (0001ms, 4573ms total)
T544C 062:388 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 00 40  returns 0x04 (0001ms, 4574ms total)
T544C 062:390 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0001ms, 4575ms total)
T544C 062:391 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 4576ms total)
T544C 062:392 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0000ms, 4576ms total)
T544C 062:392 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 28 00  returns 0x02 (0001ms, 4577ms total)
T544C 062:393 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 4578ms total)
T544C 062:394 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 4579ms total)
T544C 062:396 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 4581ms total)
T544C 062:397 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: 60  returns 0x01 (0001ms, 4582ms total)
T544C 062:398 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 00  returns 0x01 (0001ms, 4583ms total)
T544C 062:399 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0002ms, 4585ms total)
T4018 062:402 JLINK_IsHalted()  returns FALSE (0001ms, 4586ms total)
T4018 062:503 JLINK_IsHalted()  returns FALSE (0001ms, 4586ms total)
T4018 062:605 JLINK_IsHalted()  returns FALSE (0001ms, 4586ms total)
T4018 062:707 JLINK_IsHalted()  returns FALSE (0001ms, 4586ms total)
T4018 062:808 JLINK_IsHalted()  returns FALSE (0000ms, 4585ms total)
T4018 062:909 JLINK_Halt()  returns 0x00 (0005ms, 4590ms total)
T4018 062:914 JLINK_IsHalted()  returns TRUE (0000ms, 4590ms total)
T4018 062:914 JLINK_IsHalted()  returns TRUE (0000ms, 4590ms total)
T4018 062:914 JLINK_IsHalted()  returns TRUE (0000ms, 4590ms total)
T4018 062:914 JLINK_ReadReg(R15 (PC))  returns 0x0000790C (0000ms, 4590ms total)
T4018 062:914 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 4590ms total)
T4018 062:914 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 01 00 00 00  returns 0x01 (0001ms, 4591ms total)
T4018 062:915 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 4592ms total)
T4018 062:916 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0002ms, 4594ms total)
T4018 062:918 JLINK_ReadReg(R0)  returns 0x01198CB9 (0000ms, 4594ms total)
T4018 062:918 JLINK_ReadReg(R1)  returns 0x00000080 (0000ms, 4594ms total)
T4018 062:918 JLINK_ReadReg(R2)  returns 0x00001010 (0000ms, 4594ms total)
T4018 062:918 JLINK_ReadReg(R3)  returns 0x000020E9 (0000ms, 4594ms total)
T4018 062:918 JLINK_ReadReg(R4)  returns 0x000007CD (0000ms, 4594ms total)
T4018 062:918 JLINK_ReadReg(R5)  returns 0x000000CD (0000ms, 4594ms total)
T4018 062:918 JLINK_ReadReg(R6)  returns 0x00000000 (0000ms, 4594ms total)
T4018 062:918 JLINK_ReadReg(R7)  returns 0x0201BC64 (0000ms, 4594ms total)
T4018 062:918 JLINK_ReadReg(R8)  returns 0xFFFDDBF7 (0000ms, 4594ms total)
T4018 062:918 JLINK_ReadReg(R9)  returns 0x3D7E17EC (0000ms, 4594ms total)
T4018 062:918 JLINK_ReadReg(R10)  returns 0x7EFBF7FF (0000ms, 4594ms total)
T4018 062:918 JLINK_ReadReg(R11)  returns 0xFDBFF7FE (0000ms, 4594ms total)
T4018 062:918 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 4594ms total)
T4018 062:918 JLINK_ReadReg(R13 (SP))  returns 0x0202F790 (0001ms, 4595ms total)
T4018 062:919 JLINK_ReadReg(R14)  returns 0x00002F37 (0000ms, 4595ms total)
T4018 062:919 JLINK_ReadReg(R15 (PC))  returns 0x0000790C (0000ms, 4595ms total)
T4018 062:919 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 4595ms total)
T4018 062:919 JLINK_ReadReg(MSP)  returns 0x0202F790 (0000ms, 4595ms total)
T4018 062:919 JLINK_ReadReg(PSP)  returns 0xBBFFFE98 (0000ms, 4595ms total)
T4018 062:919 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 4595ms total)
T544C 062:920 JLINK_ReadMemEx(0x0202F794, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F794) - Data: DC 96 01 02  returns 0x04 (0001ms, 4596ms total)
T544C 062:921 JLINK_ReadMemEx(0x0202F790, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F790) - Data: 7A 95 01 02  returns 0x04 (0001ms, 4597ms total)
T544C 062:922 JLINK_ReadMemEx(0x0202F794, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F794) - Data: DC 96 01 02  returns 0x04 (0001ms, 4598ms total)
T544C 062:925 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4599ms total)
T544C 062:926 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 4600ms total)
T544C 062:931 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0002ms, 4602ms total)
T544C 062:933 JLINK_ReadMemEx(0x02019719, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019719) - Data: 01  returns 0x01 (0001ms, 4603ms total)
T544C 062:934 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 02 00  returns 0x02 (0001ms, 4604ms total)
T544C 062:935 JLINK_ReadMemEx(0x02019C32, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C32) - Data: 00  returns 0x01 (0001ms, 4605ms total)
T544C 062:936 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0002ms, 4607ms total)
T544C 062:938 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 4608ms total)
T544C 062:939 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 4609ms total)
T544C 062:940 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 4611ms total)
T544C 062:943 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 4612ms total)
T544C 062:944 JLINK_ReadMemEx(0x02019712, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019712) - Data: 00  returns 0x01 (0001ms, 4613ms total)
T544C 062:946 JLINK_ReadMemEx(0x020193F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F9) - Data: 01  returns 0x01 (0001ms, 4614ms total)
T544C 062:947 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 4615ms total)
T544C 062:948 JLINK_ReadMemEx(0x02019579, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019579) - Data: 00  returns 0x01 (0001ms, 4616ms total)
T544C 062:949 JLINK_ReadMemEx(0x02019578, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019578) - Data: 00  returns 0x01 (0001ms, 4617ms total)
T544C 062:950 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0001ms, 4618ms total)
T544C 062:951 JLINK_ReadMemEx(0x0201BFEC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BFEC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4619ms total)
T544C 062:952 JLINK_ReadMemEx(0x0201957B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957B) - Data: 00  returns 0x01 (0002ms, 4621ms total)
T544C 062:956 JLINK_ReadMemEx(0x02019C33, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019C33) - Data: 00  returns 0x01 (0001ms, 4622ms total)
T544C 062:957 JLINK_ReadMemEx(0x02019734, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019734) - Data: 00 00 00 00  returns 0x04 (0001ms, 4623ms total)
T544C 062:958 JLINK_ReadMemEx(0x0201971D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971D) - Data: 01  returns 0x01 (0001ms, 4624ms total)
T544C 062:960 JLINK_ReadMemEx(0x02019CB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CB6) - Data: 00 00  returns 0x02 (0001ms, 4625ms total)
T544C 062:961 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 4626ms total)
T544C 062:962 JLINK_ReadMemEx(0x02019714, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019714) - Data: 00  returns 0x01 (0001ms, 4627ms total)
T544C 062:963 JLINK_ReadMemEx(0x0201974C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201974C) - Data: 01 00 00 00  returns 0x04 (0001ms, 4628ms total)
T544C 062:964 JLINK_ReadMemEx(0x0201973C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201973C) - Data: 02 00 00 00  returns 0x04 (0002ms, 4630ms total)
T544C 062:966 JLINK_ReadMemEx(0x02019740, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019740) - Data: 02 00 00 00  returns 0x04 (0001ms, 4631ms total)
T544C 062:967 JLINK_ReadMemEx(0x0201957C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957C) - Data: 01  returns 0x01 (0001ms, 4632ms total)
T544C 062:968 JLINK_ReadMemEx(0x0201957A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201957A) - Data: 01  returns 0x01 (0001ms, 4633ms total)
T544C 062:969 JLINK_ReadMemEx(0x020193F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020193F8) - Data: 01  returns 0x01 (0002ms, 4635ms total)
T544C 062:971 JLINK_ReadMemEx(0x0201979C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201979C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4636ms total)
T544C 062:972 JLINK_ReadMemEx(0x02019724, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019724) - Data: 02 00  returns 0x02 (0001ms, 4637ms total)
T544C 062:973 JLINK_ReadMemEx(0x02019730, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019730) - Data: 00 00 00 40  returns 0x04 (0001ms, 4638ms total)
T544C 062:974 JLINK_ReadMemEx(0x0201971E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201971E) - Data: 0C  returns 0x01 (0002ms, 4640ms total)
T544C 062:976 JLINK_ReadMemEx(0x0201972E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201972E) - Data: 44 0D  returns 0x02 (0001ms, 4641ms total)
T544C 062:977 JLINK_ReadMemEx(0x02019CD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD4) - Data: 30 00  returns 0x02 (0001ms, 4642ms total)
T544C 062:978 JLINK_ReadMemEx(0x02019CD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD0) - Data: 28 00  returns 0x02 (0001ms, 4643ms total)
T544C 062:980 JLINK_ReadMemEx(0x02019CD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019CD8) - Data: 00 00  returns 0x02 (0001ms, 4645ms total)
T544C 062:981 JLINK_ReadMemEx(0x02019716, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019716) - Data: 00  returns 0x01 (0001ms, 4646ms total)
T544C 062:982 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0002ms, 4648ms total)
T544C 062:984 JLINK_ReadMemEx(0x02019520, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019520) - Data: 60  returns 0x01 (0001ms, 4649ms total)
T544C 062:985 JLINK_ReadMemEx(0x02019521, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019521) - Data: 00  returns 0x01 (0001ms, 4650ms total)
T544C 062:986 JLINK_ReadMemEx(0x0201A0A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A0A8) - Data: 00  returns 0x01 (0001ms, 4651ms total)
T544C 062:990 JLINK_ReadMemEx(0x0000790C, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x00007900) -- Updating C cache (128 bytes @ 0x00007900) -- Read from C cache (60 bytes @ 0x0000790C) - Data: 00 1F FD D8 30 BC 70 47 F0 B5 81 B0 05 46 01 20 ...  returns 0x3C (0002ms, 4653ms total)
T544C 062:992 JLINK_ReadMemEx(0x0000790C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000790C) - Data: 00 1F  returns 0x02 (0000ms, 4653ms total)
T544C 062:992 JLINK_ReadMemEx(0x0000790E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000790E) - Data: FD D8  returns 0x02 (0000ms, 4653ms total)
T544C 062:992 JLINK_ReadMemEx(0x0000790E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000790E) - Data: FD D8  returns 0x02 (0000ms, 4653ms total)
T544C 062:992 JLINK_ReadMemEx(0x00007910, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007910) - Data: 30 BC 70 47 F0 B5 81 B0 05 46 01 20 07 2D 66 D8 ...  returns 0x3C (0000ms, 4653ms total)
T544C 062:992 JLINK_ReadMemEx(0x00007910, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007910) - Data: 30 BC  returns 0x02 (0000ms, 4653ms total)
T544C 062:992 JLINK_ReadMemEx(0x00007910, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007910) - Data: 30 BC 70 47 F0 B5 81 B0 05 46 01 20 07 2D 66 D8 ...  returns 0x3C (0001ms, 4654ms total)
T544C 062:993 JLINK_ReadMemEx(0x00007910, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007910) - Data: 30 BC  returns 0x02 (0000ms, 4654ms total)
T544C 062:993 JLINK_ReadMemEx(0x00007912, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007912) - Data: 70 47  returns 0x02 (0000ms, 4654ms total)
T544C 062:993 JLINK_ReadMemEx(0x00007912, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007912) - Data: 70 47  returns 0x02 (0000ms, 4654ms total)
T544C 062:993 JLINK_ReadMemEx(0x00007914, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007914) - Data: F0 B5 81 B0 05 46 01 20 07 2D 66 D8 0C 46 00 29 ...  returns 0x3C (0001ms, 4655ms total)
T544C 062:994 JLINK_ReadMemEx(0x00007914, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007914) - Data: F0 B5  returns 0x02 (0000ms, 4655ms total)
T544C 062:994 JLINK_ReadMemEx(0x00007914, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007914) - Data: F0 B5 81 B0 05 46 01 20 07 2D 66 D8 0C 46 00 29 ...  returns 0x3C (0000ms, 4655ms total)
T544C 062:994 JLINK_ReadMemEx(0x00007914, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007914) - Data: F0 B5  returns 0x02 (0000ms, 4655ms total)
T544C 062:994 JLINK_ReadMemEx(0x00007916, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007916) - Data: 81 B0  returns 0x02 (0000ms, 4655ms total)
T544C 065:206 JLINK_Close() -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> (0029ms, 4684ms total)
T544C 065:206  (0029ms, 4684ms total)
T544C 065:206 Closed (0029ms, 4684ms total)