WXK
6 天以前 6e2aa19146fd20603a9e811fddd0e0dd76871efb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
 
T226A8 000:088 SEGGER J-Link V6.30d Log File (0000ms, 0050ms total)
T226A8 000:088 DLL Compiled: Feb 16 2018 13:30:32 (0000ms, 0050ms total)
T226A8 000:088 Logging started @ 2025-08-25 15:13 (0000ms, 0050ms total)
T226A8 000:088 JLINK_SetWarnOutHandler(...) (0000ms, 0050ms total)
T226A8 000:088 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 (0033ms, 0083ms total)
T226A8 000:088 WEBSRV Webserver running on local port 19080 (0033ms, 0083ms total)
T226A8 000:088   returns O.K. (0033ms, 0083ms total)
T226A8 000:121 JLINK_GetEmuCaps()  returns 0x88EA5833 (0000ms, 0083ms total)
T226A8 000:121 JLINK_TIF_GetAvailable(...) (0000ms, 0083ms total)
T226A8 000:121 JLINK_SetErrorOutHandler(...) (0000ms, 0083ms total)
T226A8 000:121 JLINK_ExecCommand("ProjectFile = "C:\git-mk8000\ChinaUWBProject - ss¶¨Î»±êÇ©\keil\JLinkSettings.ini"", ...). C:\Keil_v5\ARM\Segger\JLinkDevices.xml evaluated successfully.  returns 0x00 (0095ms, 0178ms total)
T226A8 000:216 JLINK_ExecCommand("Device = MK8000", ...). Device "MK8000" selected.  returns 0x00 (0005ms, 0183ms total)
T226A8 000:221 JLINK_ExecCommand("DisableConnectionTimeout", ...).   returns 0x01 (0000ms, 0183ms total)
T226A8 000:221 JLINK_GetHardwareVersion()  returns 0x11170 (0000ms, 0183ms total)
T226A8 000:221 JLINK_GetDLLVersion()  returns 63004 (0000ms, 0183ms total)
T226A8 000:221 JLINK_GetFirmwareString(...) (0000ms, 0183ms total)
T226A8 000:221 JLINK_GetDLLVersion()  returns 63004 (0000ms, 0183ms total)
T226A8 000:221 JLINK_GetCompileDateTime() (0000ms, 0183ms total)
T226A8 000:221 JLINK_GetFirmwareString(...) (0000ms, 0183ms total)
T226A8 000:221 JLINK_GetHardwareVersion()  returns 0x11170 (0000ms, 0183ms total)
T226A8 000:221 JLINK_TIF_Select(JLINKARM_TIF_SWD)  returns 0x00 (0001ms, 0184ms total)
T226A8 000:222 JLINK_SetSpeed(10000) (0001ms, 0185ms total)
T226A8 000:223 JLINK_GetId() >0x10B TIF>Found SW-DP with ID 0x0BB11477 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF>Scanning AP map to find all available APs >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>AP[1]: Stopped AP scan as end of AP map has been reachedAP[0]: AHB-AP (IDR: 0x04770021)Iterating through AP map to find AHB-AP to use
 >0x42 TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x42 TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>AP[0]: Core foundAP[0]: AHB-AP ROM base: 0xE00FF000 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>CPUID register: 0x410CC200. Implementer code: 0x41 (ARM)Found Cortex-M0 r0p0, Little endian. -- CPU_ReadMem(4 bytes @ 0xE000EDF0)
 -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE0002000)FPUnit: 4 code (BP) slots and 0 literal slots -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_WriteMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000)CoreSight components:ROMTbl[0] @ E00FF000 -- CPU_ReadMem(16 bytes @ 0xE00FF000) -- CPU_ReadMem(16 bytes @ 0xE000EFF0) -- CPU_ReadMem(16 bytes @ 0xE000EFE0)ROMTbl[0][0]: E000E000, CID: B105E00D, PID: 000BB008 SCS
 -- CPU_ReadMem(16 bytes @ 0xE0001FF0) -- CPU_ReadMem(16 bytes @ 0xE0001FE0)ROMTbl[0][1]: E0001000, CID: B105E00D, PID: 000BB00A DWT -- CPU_ReadMem(16 bytes @ 0xE0002FF0) -- CPU_ReadMem(16 bytes @ 0xE0002FE0)ROMTbl[0][2]: E0002000, CID: B105E00D, PID: 000BB00B FPB >0x0D TIF> >0x21 TIF>  returns 0x0BB11477 (0133ms, 0318ms total)
T226A8 000:357 JLINK_GetDLLVersion()  returns 63004 (0000ms, 0318ms total)
T226A8 000:357 JLINK_CORE_GetFound()  returns 0x60000FF (0000ms, 0318ms total)
T226A8 000:357 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xE00FF000  returns 0x00 (0000ms, 0318ms total)
T226A8 000:357 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xE00FF000  returns 0x00 (0000ms, 0318ms total)
T226A8 000:357 JLINK_GetDebugInfo(0x101 = JLINKARM_DEBUG_INFO_ETM_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0318ms total)
T226A8 000:357 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, 0319ms total)
T226A8 000:358 JLINK_GetDebugInfo(0x102 = JLINKARM_DEBUG_INFO_MTB_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0319ms total)
T226A8 000:358 JLINK_GetDebugInfo(0x103 = JLINKARM_DEBUG_INFO_TPIU_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0319ms total)
T226A8 000:358 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, 0320ms total)
T226A8 000:359 JLINK_GetDebugInfo(0x104 = JLINKARM_DEBUG_INFO_ITM_ADDR_INDEX) -- Value=0xE0000000  returns 0x00 (0000ms, 0320ms total)
T226A8 000:359 JLINK_GetDebugInfo(0x105 = JLINKARM_DEBUG_INFO_DWT_ADDR_INDEX) -- Value=0xE0001000  returns 0x00 (0000ms, 0320ms total)
T226A8 000:359 JLINK_GetDebugInfo(0x106 = JLINKARM_DEBUG_INFO_FPB_ADDR_INDEX) -- Value=0xE0002000  returns 0x00 (0000ms, 0320ms total)
T226A8 000:359 JLINK_GetDebugInfo(0x107 = JLINKARM_DEBUG_INFO_NVIC_ADDR_INDEX) -- Value=0xE000E000  returns 0x00 (0000ms, 0320ms total)
T226A8 000:359 JLINK_GetDebugInfo(0x10C = JLINKARM_DEBUG_INFO_DBG_ADDR_INDEX) -- Value=0xE000EDF0  returns 0x00 (0000ms, 0320ms total)
T226A8 000:359 JLINK_GetDebugInfo(0x01 = Unknown) -- Value=0x00000000  returns 0x00 (0000ms, 0320ms total)
T226A8 000:359 JLINK_ReadMemU32(0xE000ED00, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED00) - Data: 00 C2 0C 41  returns 0x01 (0001ms, 0321ms total)
T226A8 000:360 JLINK_GetDebugInfo(0x10F = JLINKARM_DEBUG_INFO_HAS_CORTEX_M_SECURITY_EXT_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0321ms total)
T226A8 000:360 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 0321ms total)
T226A8 000:360 JLINK_Reset() -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDFC)Reset: Halt core after reset via DEMCR.VC_CORERESET. >0x35 TIF>Reset: Reset device via AIRCR.SYSRESETREQ. -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000ED0C) >0x0D TIF> >0x28 TIF> -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDFC)
 -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0069ms, 0390ms total)
T226A8 000:429 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0390ms total)
T226A8 000:429 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0390ms total)
T226A8 000:429 JLINK_Halt()  returns 0x00 (0000ms, 0390ms total)
T226A8 000:429 JLINK_ReadMemU32(0xE000EDF0, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) - Data: 03 00 03 00  returns 0x01 (0001ms, 0391ms total)
T226A8 000:430 JLINK_WriteU32(0xE000EDF0, 0xA05F0003) -- CPU_WriteMem(4 bytes @ 0xE000EDF0)  returns 0x00 (0001ms, 0392ms total)
T226A8 000:431 JLINK_WriteU32(0xE000EDFC, 0x01000000) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)  returns 0x00 (0000ms, 0392ms total)
T226A8 000:431 JLINK_GetHWStatus(...)  returns 0x00 (0001ms, 0393ms total)
T226A8 000:432 JLINK_GetNumBPUnits(Type = 0xFFFFFF00)  returns 0x04 (0000ms, 0393ms total)
T226A8 000:432 JLINK_GetNumBPUnits(Type = 0xF0)  returns 0x2000 (0000ms, 0393ms total)
T226A8 000:432 JLINK_GetNumWPUnits()  returns 0x02 (0000ms, 0393ms total)
T226A8 000:432 JLINK_GetSpeed()  returns 0xFA0 (0000ms, 0393ms total)
T226A8 000:432 JLINK_ReadMemU32(0xE000E004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000E004) - Data: 00 00 00 00  returns 0x01 (0001ms, 0394ms total)
T226A8 000:433 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0394ms total)
T226A8 000:433 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0394ms total)
T226A8 000:525 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 0394ms total)
T226A8 000:525 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) (0069ms, 0463ms total)
T226A8 000:594 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0463ms total)
T226A8 000:594 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0463ms total)
T226A8 000:594 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, 0465ms total)
T226A8 000:596 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0000ms, 0465ms total)
T226A8 000:596 JLINK_ReadMemEx(0x0300373A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373A) - Data: 4E F8  returns 0x02 (0001ms, 0466ms total)
T226A8 000:597 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, 0467ms total)
T226A8 000:598 JLINK_ReadMemEx(0x0300373C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373C) - Data: FC F7  returns 0x02 (0001ms, 0468ms total)
T226A8 000:599 JLINK_ReadMemEx(0x0300373E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373E) - Data: C0 FC  returns 0x02 (0001ms, 0469ms total)
T226A8 002:981 JLINK_ReadReg(R0)  returns 0x00000002 (0000ms, 0469ms total)
T226A8 002:981 JLINK_ReadReg(R1)  returns 0x00000002 (0000ms, 0469ms total)
T226A8 002:981 JLINK_ReadReg(R2)  returns 0x00001F00 (0000ms, 0469ms total)
T226A8 002:981 JLINK_ReadReg(R3)  returns 0x42000000 (0000ms, 0469ms total)
T226A8 002:981 JLINK_ReadReg(R4)  returns 0x00000002 (0000ms, 0469ms total)
T226A8 002:981 JLINK_ReadReg(R5)  returns 0x020199C8 (0000ms, 0469ms total)
T226A8 002:981 JLINK_ReadReg(R6)  returns 0x02019014 (0000ms, 0469ms total)
T226A8 002:982 JLINK_ReadReg(R7)  returns 0x00000000 (0000ms, 0470ms total)
T226A8 002:982 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 0470ms total)
T226A8 002:982 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 0470ms total)
T226A8 002:982 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 0470ms total)
T226A8 002:982 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 0470ms total)
T226A8 002:982 JLINK_ReadReg(R12)  returns 0x00000003 (0000ms, 0470ms total)
T226A8 002:982 JLINK_ReadReg(R13 (SP))  returns 0x0202F800 (0000ms, 0470ms total)
T226A8 002:982 JLINK_ReadReg(R14)  returns 0x00009D19 (0000ms, 0470ms total)
T226A8 002:982 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0470ms total)
T226A8 002:982 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0470ms total)
T226A8 002:982 JLINK_ReadReg(MSP)  returns 0x0202F800 (0000ms, 0470ms total)
T226A8 002:982 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 0470ms total)
T226A8 002:982 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0470ms total)
T226A8 002:982 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 0470ms total)
T226A8 002:982 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 0471ms total)
T226A8 002:983 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 0472ms total)
T226A8 002:996 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 01 00 00 00  returns 0x04 (0001ms, 0473ms total)
T226A8 002:997 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 01 00 00 00  returns 0x04 (0001ms, 0474ms total)
T226A8 002:998 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 01 00 00 00  returns 0x04 (0000ms, 0474ms total)
T226A8 003:005 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 0475ms total)
T226A8 003:006 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 0476ms total)
T226A8 003:007 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 0477ms total)
T226A8 003:013 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 00  returns 0x01 (0001ms, 0478ms total)
T226A8 003:014 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 00  returns 0x01 (0001ms, 0479ms total)
T226A8 003:015 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 00  returns 0x01 (0000ms, 0479ms total)
T226A8 003:022 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 00 00  returns 0x04 (0001ms, 0480ms total)
T226A8 003:023 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 00 00  returns 0x04 (0000ms, 0480ms total)
T226A8 003:023 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 00 00  returns 0x04 (0001ms, 0481ms total)
T226A8 003:040 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0000ms, 0481ms total)
T226A8 003:040 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 0482ms total)
T226A8 003:041 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 0483ms total)
T226A8 003:058 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 0484ms total)
T226A8 003:059 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0001ms, 0485ms total)
T226A8 003:060 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0000ms, 0485ms total)
T226A8 003:080 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 0486ms total)
T226A8 003:124 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0487ms total)
T226A8 003:125 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0488ms total)
T226A8 003:126 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0489ms total)
T226A8 003:137 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: B9 45 03 00  returns 0x04 (0000ms, 0489ms total)
T226A8 003:137 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: B9 45 03 00  returns 0x04 (0001ms, 0490ms total)
T226A8 003:138 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: B9 45 03 00  returns 0x04 (0001ms, 0491ms total)
T226A8 003:152 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 00 00 00 00  returns 0x04 (0001ms, 0492ms total)
T226A8 003:153 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 00 00 00 00  returns 0x04 (0000ms, 0492ms total)
T226A8 003:153 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 00 00 00 00  returns 0x04 (0001ms, 0493ms total)
T226A8 003:166 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: D5 46 03 00  returns 0x04 (0000ms, 0493ms total)
T226A8 003:166 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: D5 46 03 00  returns 0x04 (0001ms, 0494ms total)
T226A8 003:167 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: D5 46 03 00  returns 0x04 (0001ms, 0495ms total)
T226A8 003:205 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 31 DF 00 00  returns 0x04 (0000ms, 0495ms total)
T226A8 003:205 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 31 DF 00 00  returns 0x04 (0001ms, 0496ms total)
T226A8 003:206 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 31 DF 00 00  returns 0x04 (0001ms, 0497ms total)
T226A8 003:220 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 00 00  returns 0x02 (0001ms, 0498ms total)
T226A8 003:221 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 00 00  returns 0x02 (0001ms, 0499ms total)
T226A8 003:222 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 00 00  returns 0x02 (0001ms, 0500ms total)
T226A8 003:237 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 01 00  returns 0x02 (0001ms, 0501ms total)
T226A8 003:238 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 01 00  returns 0x02 (0000ms, 0501ms total)
T226A8 003:238 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 01 00  returns 0x02 (0001ms, 0502ms total)
T226A8 003:261 JLINK_ReadMemEx(0x020196F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F8) - Data: 00 00 00 00  returns 0x04 (0001ms, 0503ms total)
T226A8 003:262 JLINK_ReadMemEx(0x020196F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F8) - Data: 00 00 00 00  returns 0x04 (0001ms, 0504ms total)
T226A8 003:263 JLINK_ReadMemEx(0x020196F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F8) - Data: 00 00 00 00  returns 0x04 (0000ms, 0504ms total)
T226A8 003:267 JLINK_ReadMemEx(0x00000048, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00000040) -- Updating C cache (64 bytes @ 0x00000040) -- Read from C cache (4 bytes @ 0x00000048) - Data: F9 69 00 03  returns 0x04 (0001ms, 0505ms total)
T226A8 003:268 JLINK_ReadMemEx(0x00000048, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x00000048) - Data: F9 69 00 03  returns 0x04 (0000ms, 0505ms total)
T226A8 003:268 JLINK_ReadMemEx(0x00000048, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x00000048) - Data: F9 69 00 03  returns 0x04 (0000ms, 0505ms total)
T26738 003:319 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0001ms, 0506ms total)
T26738 003:320 JLINK_SetBPEx(Addr = 0x00009B58, Type = 0xFFFFFFF2)  returns 0x00000001 (0000ms, 0506ms total)
T26738 003:320 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU_WriteMem(4 bytes @ 0xE0002014) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0005ms, 0511ms total)
T26738 003:425 JLINK_IsHalted()  returns TRUE (0003ms, 0514ms total)
T26738 003:428 JLINK_Halt()  returns 0x00 (0000ms, 0511ms total)
T26738 003:428 JLINK_IsHalted()  returns TRUE (0000ms, 0511ms total)
T26738 003:428 JLINK_IsHalted()  returns TRUE (0000ms, 0511ms total)
T26738 003:428 JLINK_IsHalted()  returns TRUE (0000ms, 0511ms total)
T26738 003:428 JLINK_ReadReg(R15 (PC))  returns 0x00009B58 (0001ms, 0512ms total)
T26738 003:429 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 0512ms total)
T26738 003:429 JLINK_ClrBPEx(BPHandle = 0x00000001)  returns 0x00 (0000ms, 0512ms total)
T26738 003:429 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0001ms, 0513ms total)
T26738 003:430 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 0514ms total)
T26738 003:431 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0000ms, 0514ms total)
T26738 003:431 JLINK_ReadReg(R0)  returns 0x00009B59 (0000ms, 0514ms total)
T26738 003:431 JLINK_ReadReg(R1)  returns 0x0201CF68 (0000ms, 0514ms total)
T26738 003:431 JLINK_ReadReg(R2)  returns 0x00000000 (0000ms, 0514ms total)
T26738 003:431 JLINK_ReadReg(R3)  returns 0x0000E727 (0000ms, 0514ms total)
T26738 003:431 JLINK_ReadReg(R4)  returns 0x000102C4 (0000ms, 0514ms total)
T26738 003:431 JLINK_ReadReg(R5)  returns 0x00000001 (0000ms, 0514ms total)
T26738 003:431 JLINK_ReadReg(R6)  returns 0x000102C4 (0000ms, 0514ms total)
T26738 003:431 JLINK_ReadReg(R7)  returns 0x02000000 (0000ms, 0514ms total)
T26738 003:431 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 0514ms total)
T26738 003:431 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 0514ms total)
T26738 003:431 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 0514ms total)
T26738 003:431 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 0514ms total)
T26738 003:431 JLINK_ReadReg(R12)  returns 0x00000003 (0000ms, 0514ms total)
T26738 003:431 JLINK_ReadReg(R13 (SP))  returns 0x0202F800 (0000ms, 0514ms total)
T26738 003:431 JLINK_ReadReg(R14)  returns 0x00000B89 (0000ms, 0514ms total)
T26738 003:431 JLINK_ReadReg(R15 (PC))  returns 0x00009B58 (0000ms, 0514ms total)
T26738 003:431 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 0514ms total)
T26738 003:431 JLINK_ReadReg(MSP)  returns 0x0202F800 (0000ms, 0514ms total)
T26738 003:431 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 0514ms total)
T26738 003:431 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0514ms total)
T226A8 003:450 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 0515ms total)
T226A8 003:459 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 00 00 00 00  returns 0x04 (0001ms, 0516ms total)
T226A8 003:468 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 00 00 00 00  returns 0x04 (0001ms, 0517ms total)
T226A8 003:477 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 00  returns 0x01 (0001ms, 0518ms total)
T226A8 003:478 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 00 00  returns 0x04 (0001ms, 0519ms total)
T226A8 003:479 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 00  returns 0x01 (0000ms, 0519ms total)
T226A8 003:488 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 00  returns 0x01 (0000ms, 0519ms total)
T226A8 003:497 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 0519ms total)
T226A8 003:514 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0520ms total)
T226A8 003:515 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 00 00 00 00  returns 0x04 (0000ms, 0520ms total)
T226A8 003:524 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 00 00 00 00  returns 0x04 (0000ms, 0520ms total)
T226A8 003:524 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 00 00 00 00  returns 0x04 (0001ms, 0521ms total)
T226A8 003:551 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 00 00 00 00  returns 0x04 (0001ms, 0522ms total)
T226A8 003:560 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 00 00  returns 0x02 (0001ms, 0523ms total)
T226A8 003:561 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 00 00  returns 0x02 (0000ms, 0523ms total)
T226A8 003:573 JLINK_ReadMemEx(0x00009B58, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x00009B40) -- Updating C cache (128 bytes @ 0x00009B40) -- Read from C cache (60 bytes @ 0x00009B58) - Data: 86 B0 FC F7 CD FC 05 20 00 24 21 46 FF F7 30 F8 ...  returns 0x3C (0002ms, 0525ms total)
T226A8 003:575 JLINK_ReadMemEx(0x00009B58, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009B58) - Data: 86 B0  returns 0x02 (0000ms, 0525ms total)
T226A8 003:575 JLINK_ReadMemEx(0x00009B5A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009B5A) - Data: FC F7  returns 0x02 (0000ms, 0525ms total)
T26738 004:005 JLINK_ReadMemEx(0x00009B58, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009B58) - Data: 86 B0  returns 0x02 (0000ms, 0525ms total)
T26738 004:005 JLINK_Go() -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) (0004ms, 0529ms total)
T26738 004:111 JLINK_IsHalted()  returns FALSE (0000ms, 0529ms total)
T26738 004:212 JLINK_IsHalted()  returns FALSE (0000ms, 0529ms total)
T26738 004:313 JLINK_IsHalted()  returns FALSE (0000ms, 0529ms total)
T26738 004:414 JLINK_IsHalted()  returns FALSE (0000ms, 0529ms total)
T26738 004:516 JLINK_IsHalted()  returns FALSE (0000ms, 0529ms total)
T226A8 004:635 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 0530ms total)
T226A8 004:644 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 01 00 00 00  returns 0x04 (0001ms, 0531ms total)
T226A8 004:662 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 0532ms total)
T226A8 004:679 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 01  returns 0x01 (0001ms, 0533ms total)
T226A8 004:688 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 00 00  returns 0x04 (0001ms, 0534ms total)
T226A8 004:689 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 0535ms total)
T226A8 004:707 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 01  returns 0x01 (0000ms, 0535ms total)
T226A8 004:725 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 0535ms total)
T226A8 004:742 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0536ms total)
T226A8 004:743 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0537ms total)
T226A8 004:752 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 61 7F 02 00  returns 0x04 (0001ms, 0538ms total)
T226A8 004:761 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 7D 80 02 00  returns 0x04 (0001ms, 0539ms total)
T226A8 004:795 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 6F 7E 02 00  returns 0x04 (0001ms, 0540ms total)
T226A8 004:813 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 00 00  returns 0x02 (0001ms, 0541ms total)
T226A8 004:814 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 01 00  returns 0x02 (0000ms, 0541ms total)
T26738 004:832 JLINK_IsHalted()  returns FALSE (0000ms, 0541ms total)
T26738 004:933 JLINK_IsHalted()  returns FALSE (0000ms, 0541ms total)
T26738 005:035 JLINK_IsHalted()  returns FALSE (0000ms, 0541ms total)
T226A8 005:156 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 0541ms total)
T226A8 005:165 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 02 00 00 00  returns 0x04 (0001ms, 0542ms total)
T226A8 005:183 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 0543ms total)
T226A8 005:193 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 01  returns 0x01 (0001ms, 0544ms total)
T226A8 005:202 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 80 3F  returns 0x04 (0001ms, 0545ms total)
T226A8 005:212 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 0546ms total)
T226A8 005:222 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 02  returns 0x01 (0000ms, 0546ms total)
T226A8 005:240 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 0546ms total)
T226A8 005:258 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0547ms total)
T226A8 005:259 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 2B 1C 03 00  returns 0x04 (0000ms, 0547ms total)
T226A8 005:268 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 61 7F 02 00  returns 0x04 (0001ms, 0548ms total)
T226A8 005:278 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 47 1D 03 00  returns 0x04 (0000ms, 0548ms total)
T226A8 005:312 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 39 DF 00 00  returns 0x04 (0001ms, 0549ms total)
T226A8 005:331 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 00 00  returns 0x02 (0001ms, 0550ms total)
T226A8 005:332 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0000ms, 0550ms total)
T26738 005:349 JLINK_IsHalted()  returns FALSE (0001ms, 0551ms total)
T26738 005:451 JLINK_IsHalted()  returns FALSE (0000ms, 0550ms total)
T26738 005:552 JLINK_IsHalted()  returns FALSE (0000ms, 0550ms total)
T226A8 005:672 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 0551ms total)
T226A8 005:684 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 02 00 00 00  returns 0x04 (0001ms, 0552ms total)
T226A8 005:695 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 0553ms total)
T226A8 005:696 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 01  returns 0x01 (0001ms, 0554ms total)
T226A8 005:697 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 80 3F  returns 0x04 (0001ms, 0555ms total)
T226A8 005:709 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0000ms, 0555ms total)
T226A8 005:710 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 02  returns 0x01 (0000ms, 0555ms total)
T226A8 005:719 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 0555ms total)
T226A8 005:737 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 0555ms total)
T226A8 005:737 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 2B 1C 03 00  returns 0x04 (0001ms, 0556ms total)
T226A8 005:747 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 61 7F 02 00  returns 0x04 (0000ms, 0556ms total)
T226A8 005:747 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 47 1D 03 00  returns 0x04 (0001ms, 0557ms total)
T226A8 005:773 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 39 DF 00 00  returns 0x04 (0001ms, 0558ms total)
T226A8 005:783 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 00 00  returns 0x02 (0001ms, 0559ms total)
T226A8 005:784 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0000ms, 0559ms total)
T26738 005:793 JLINK_IsHalted()  returns FALSE (0001ms, 0560ms total)
T26738 005:894 JLINK_IsHalted()  returns FALSE (0000ms, 0559ms total)
T26738 005:995 JLINK_IsHalted()  returns FALSE (0000ms, 0559ms total)
T26738 006:097 JLINK_IsHalted()  returns FALSE (0000ms, 0559ms total)
T226A8 006:216 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 0560ms total)
T226A8 006:227 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 03 00 00 00  returns 0x04 (0001ms, 0561ms total)
T226A8 006:237 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 0562ms total)
T226A8 006:238 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 02  returns 0x01 (0001ms, 0563ms total)
T226A8 006:248 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 00 40  returns 0x04 (0001ms, 0564ms total)
T226A8 006:258 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 0565ms total)
T226A8 006:259 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 03  returns 0x01 (0000ms, 0565ms total)
T226A8 006:268 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 0566ms total)
T226A8 006:287 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 0566ms total)
T226A8 006:287 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 2B 1C 03 00  returns 0x04 (0001ms, 0567ms total)
T226A8 006:288 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 91 EB 03 00  returns 0x04 (0001ms, 0568ms total)
T226A8 006:297 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: AD EC 03 00  returns 0x04 (0001ms, 0569ms total)
T226A8 006:325 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 13 EA 03 00  returns 0x04 (0000ms, 0569ms total)
T226A8 006:334 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 00 00  returns 0x02 (0001ms, 0570ms total)
T226A8 006:335 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 03 00  returns 0x02 (0001ms, 0571ms total)
T26738 006:344 JLINK_IsHalted()  returns FALSE (0001ms, 0572ms total)
T26738 006:446 JLINK_IsHalted()  returns FALSE (0000ms, 0571ms total)
T26738 006:548 JLINK_IsHalted()  returns FALSE (0000ms, 0571ms total)
T26738 006:649 JLINK_IsHalted()  returns FALSE (0000ms, 0571ms total)
T226A8 006:769 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 0571ms total)
T226A8 006:778 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 03 00 00 00  returns 0x04 (0001ms, 0572ms total)
T226A8 006:788 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 0573ms total)
T226A8 006:789 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 02  returns 0x01 (0000ms, 0573ms total)
T226A8 006:798 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 00 40  returns 0x04 (0001ms, 0574ms total)
T226A8 006:807 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 0575ms total)
T226A8 006:808 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 03  returns 0x01 (0001ms, 0576ms total)
T226A8 006:818 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 0576ms total)
T226A8 006:836 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0577ms total)
T226A8 006:837 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 2B 1C 03 00  returns 0x04 (0000ms, 0577ms total)
T226A8 006:837 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 91 EB 03 00  returns 0x04 (0001ms, 0578ms total)
T226A8 006:848 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: AD EC 03 00  returns 0x04 (0000ms, 0578ms total)
T226A8 006:876 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 13 EA 03 00  returns 0x04 (0000ms, 0578ms total)
T226A8 006:885 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 00 00  returns 0x02 (0001ms, 0579ms total)
T226A8 006:886 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 03 00  returns 0x02 (0000ms, 0579ms total)
T26738 006:895 JLINK_IsHalted()  returns FALSE (0001ms, 0580ms total)
T26738 006:997 JLINK_IsHalted()  returns FALSE (0000ms, 0579ms total)
T26738 007:098 JLINK_IsHalted()  returns FALSE (0000ms, 0579ms total)
T26738 007:199 JLINK_IsHalted()  returns FALSE (0000ms, 0579ms total)
T226A8 007:319 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 0580ms total)
T226A8 007:329 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 04 00 00 00  returns 0x04 (0000ms, 0580ms total)
T226A8 007:338 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 0581ms total)
T226A8 007:339 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 03  returns 0x01 (0000ms, 0581ms total)
T226A8 007:348 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 40 40  returns 0x04 (0001ms, 0582ms total)
T226A8 007:357 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 0583ms total)
T226A8 007:358 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 04  returns 0x01 (0001ms, 0584ms total)
T226A8 007:367 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 0585ms total)
T226A8 007:387 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 0585ms total)
T226A8 007:387 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 2B 1C 03 00  returns 0x04 (0001ms, 0586ms total)
T226A8 007:388 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0001ms, 0587ms total)
T226A8 007:397 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0001ms, 0588ms total)
T226A8 007:424 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0000ms, 0588ms total)
T226A8 007:433 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 00 00  returns 0x02 (0000ms, 0588ms total)
T226A8 007:433 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 04 00  returns 0x02 (0001ms, 0589ms total)
T26738 007:442 JLINK_IsHalted()  returns FALSE (0002ms, 0591ms total)
T26738 007:544 JLINK_IsHalted()  returns FALSE (0000ms, 0589ms total)
T26738 007:646 JLINK_IsHalted()  returns FALSE (0001ms, 0590ms total)
T26738 007:747 JLINK_IsHalted()  returns FALSE (0000ms, 0589ms total)
T226A8 007:867 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 0589ms total)
T226A8 007:876 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 04 00 00 00  returns 0x04 (0001ms, 0590ms total)
T226A8 007:885 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 0591ms total)
T226A8 007:886 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 03  returns 0x01 (0000ms, 0591ms total)
T226A8 007:895 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 40 40  returns 0x04 (0000ms, 0591ms total)
T226A8 007:904 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0000ms, 0591ms total)
T226A8 007:904 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 04  returns 0x01 (0001ms, 0592ms total)
T226A8 007:914 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 0592ms total)
T226A8 007:931 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0593ms total)
T226A8 007:932 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 2B 1C 03 00  returns 0x04 (0001ms, 0594ms total)
T226A8 007:933 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0000ms, 0594ms total)
T226A8 007:942 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0001ms, 0595ms total)
T226A8 007:968 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0000ms, 0595ms total)
T226A8 007:977 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 00 00  returns 0x02 (0001ms, 0596ms total)
T226A8 007:978 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 04 00  returns 0x02 (0001ms, 0597ms total)
T26738 007:987 JLINK_IsHalted()  returns FALSE (0001ms, 0598ms total)
T26738 008:088 JLINK_IsHalted()  returns FALSE (0000ms, 0597ms total)
T26738 008:190 JLINK_IsHalted()  returns FALSE (0000ms, 0597ms total)
T26738 008:291 JLINK_IsHalted()  returns FALSE (0000ms, 0597ms total)
T226A8 008:410 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 0597ms total)
T226A8 008:419 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 05 00 00 00  returns 0x04 (0000ms, 0597ms total)
T226A8 008:428 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 0598ms total)
T226A8 008:429 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 04  returns 0x01 (0000ms, 0598ms total)
T226A8 008:438 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 80 40  returns 0x04 (0000ms, 0598ms total)
T226A8 008:447 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0000ms, 0598ms total)
T226A8 008:447 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 05  returns 0x01 (0001ms, 0599ms total)
T226A8 008:457 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 0599ms total)
T226A8 008:475 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 0599ms total)
T226A8 008:475 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 2B 1C 03 00  returns 0x04 (0001ms, 0600ms total)
T226A8 008:476 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0001ms, 0601ms total)
T226A8 008:485 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 91 EC 03 00  returns 0x04 (0001ms, 0602ms total)
T226A8 008:511 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: F7 E9 03 00  returns 0x04 (0001ms, 0603ms total)
T226A8 008:521 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 00 00  returns 0x02 (0001ms, 0604ms total)
T226A8 008:522 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 05 00  returns 0x02 (0001ms, 0605ms total)
T26738 008:532 JLINK_IsHalted()  returns FALSE (0000ms, 0605ms total)
T26738 008:634 JLINK_IsHalted()  returns FALSE (0000ms, 0605ms total)
T26738 008:735 JLINK_IsHalted()  returns FALSE (0000ms, 0605ms total)
T26738 008:836 JLINK_IsHalted()  returns FALSE (0000ms, 0605ms total)
T226A8 008:956 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 0606ms total)
T226A8 008:965 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 05 00 00 00  returns 0x04 (0001ms, 0607ms total)
T226A8 008:975 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 0607ms total)
T226A8 008:975 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 04  returns 0x01 (0001ms, 0608ms total)
T226A8 008:985 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 80 40  returns 0x04 (0000ms, 0608ms total)
T226A8 008:994 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 0609ms total)
T226A8 008:995 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 05  returns 0x01 (0000ms, 0609ms total)
T226A8 009:004 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 0610ms total)
T226A8 009:022 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0611ms total)
T226A8 009:023 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 2B 1C 03 00  returns 0x04 (0000ms, 0611ms total)
T226A8 009:023 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0001ms, 0612ms total)
T226A8 009:033 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 91 EC 03 00  returns 0x04 (0001ms, 0613ms total)
T226A8 009:060 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: F7 E9 03 00  returns 0x04 (0001ms, 0614ms total)
T226A8 009:069 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 00 00  returns 0x02 (0001ms, 0615ms total)
T226A8 009:070 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 05 00  returns 0x02 (0001ms, 0616ms total)
T26738 009:080 JLINK_IsHalted()  returns FALSE (0001ms, 0617ms total)
T26738 009:182 JLINK_IsHalted()  returns FALSE (0000ms, 0616ms total)
T26738 009:283 JLINK_IsHalted()  returns FALSE (0000ms, 0616ms total)
T26738 009:385 JLINK_IsHalted()  returns FALSE (0000ms, 0616ms total)
T226A8 009:504 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 0617ms total)
T226A8 009:513 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 06 00 00 00  returns 0x04 (0001ms, 0618ms total)
T226A8 009:522 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 0619ms total)
T226A8 009:523 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 05  returns 0x01 (0000ms, 0619ms total)
T226A8 009:531 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 A0 40  returns 0x04 (0001ms, 0620ms total)
T226A8 009:541 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0000ms, 0620ms total)
T226A8 009:541 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 06  returns 0x01 (0001ms, 0621ms total)
T226A8 009:550 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 0622ms total)
T226A8 009:568 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0623ms total)
T226A8 009:569 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 2B 1C 03 00  returns 0x04 (0000ms, 0623ms total)
T226A8 009:569 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: A1 EB 03 00  returns 0x04 (0001ms, 0624ms total)
T226A8 009:578 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: BD EC 03 00  returns 0x04 (0001ms, 0625ms total)
T226A8 009:605 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 23 EA 03 00  returns 0x04 (0001ms, 0626ms total)
T226A8 009:614 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: FE 0B  returns 0x02 (0001ms, 0627ms total)
T226A8 009:623 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 00 00  returns 0x02 (0001ms, 0628ms total)
T26738 009:632 JLINK_IsHalted()  returns FALSE (0001ms, 0629ms total)
T26738 009:734 JLINK_IsHalted()  returns FALSE (0000ms, 0628ms total)
T26738 009:835 JLINK_IsHalted()  returns FALSE (0000ms, 0628ms total)
T26738 009:937 JLINK_IsHalted()  returns FALSE (0000ms, 0628ms total)
T226A8 010:056 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 0628ms total)
T226A8 010:065 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 06 00 00 00  returns 0x04 (0001ms, 0629ms total)
T226A8 010:075 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 0629ms total)
T226A8 010:075 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 05  returns 0x01 (0001ms, 0630ms total)
T226A8 010:085 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 A0 40  returns 0x04 (0001ms, 0631ms total)
T226A8 010:094 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 0632ms total)
T226A8 010:095 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 06  returns 0x01 (0001ms, 0633ms total)
T226A8 010:105 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 0633ms total)
T226A8 010:122 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0634ms total)
T226A8 010:123 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 2B 1C 03 00  returns 0x04 (0001ms, 0635ms total)
T226A8 010:124 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: A1 EB 03 00  returns 0x04 (0000ms, 0635ms total)
T226A8 010:133 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: BD EC 03 00  returns 0x04 (0001ms, 0636ms total)
T226A8 010:159 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: F7 E9 03 00  returns 0x04 (0001ms, 0637ms total)
T226A8 010:177 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: FE 0B  returns 0x02 (0001ms, 0638ms total)
T226A8 010:186 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 01 00  returns 0x02 (0001ms, 0639ms total)
T26738 010:204 JLINK_IsHalted()  returns FALSE (0001ms, 0640ms total)
T26738 010:306 JLINK_IsHalted()  returns FALSE (0000ms, 0639ms total)
T26738 010:407 JLINK_IsHalted()  returns FALSE (0000ms, 0639ms total)
T26738 010:508 JLINK_IsHalted()  returns FALSE (0000ms, 0639ms total)
T226A8 010:627 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 0640ms total)
T226A8 010:637 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 07 00 00 00  returns 0x04 (0001ms, 0641ms total)
T226A8 010:647 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 0642ms total)
T226A8 010:648 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 06  returns 0x01 (0001ms, 0643ms total)
T226A8 010:658 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 C0 40  returns 0x04 (0000ms, 0643ms total)
T226A8 010:667 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 0644ms total)
T226A8 010:668 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 07  returns 0x01 (0001ms, 0645ms total)
T226A8 010:678 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 0645ms total)
T226A8 010:696 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0646ms total)
T226A8 010:697 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 2B 1C 03 00  returns 0x04 (0001ms, 0647ms total)
T226A8 010:698 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8B EB 03 00  returns 0x04 (0000ms, 0647ms total)
T226A8 010:708 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A7 EC 03 00  returns 0x04 (0001ms, 0648ms total)
T226A8 010:734 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: F7 E9 03 00  returns 0x04 (0001ms, 0649ms total)
T226A8 010:744 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: FE 0B  returns 0x02 (0001ms, 0650ms total)
T226A8 010:745 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 01 00  returns 0x02 (0001ms, 0651ms total)
T26738 010:755 JLINK_IsHalted()  returns FALSE (0001ms, 0652ms total)
T26738 010:858 JLINK_IsHalted()  returns FALSE (0000ms, 0651ms total)
T26738 010:959 JLINK_IsHalted()  returns FALSE (0000ms, 0651ms total)
T26738 011:060 JLINK_IsHalted()  returns FALSE (0000ms, 0651ms total)
T226A8 011:180 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 0652ms total)
T226A8 011:190 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 08 00 00 00  returns 0x04 (0000ms, 0652ms total)
T226A8 011:209 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 0652ms total)
T226A8 011:209 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 07  returns 0x01 (0001ms, 0653ms total)
T226A8 011:227 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 E0 40  returns 0x04 (0001ms, 0654ms total)
T226A8 011:245 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 0655ms total)
T226A8 011:246 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 08  returns 0x01 (0001ms, 0656ms total)
T226A8 011:265 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 0657ms total)
T226A8 011:284 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 0657ms total)
T226A8 011:284 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 2B 1C 03 00  returns 0x04 (0001ms, 0658ms total)
T226A8 011:285 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: A1 F4 03 00  returns 0x04 (0001ms, 0659ms total)
T226A8 011:303 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: BD F5 03 00  returns 0x04 (0001ms, 0660ms total)
T226A8 011:340 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0B F3 03 00  returns 0x04 (0001ms, 0661ms total)
T226A8 011:350 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: FE 0B  returns 0x02 (0001ms, 0662ms total)
T226A8 011:351 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0000ms, 0662ms total)
T26738 011:360 JLINK_IsHalted()  returns FALSE (0001ms, 0663ms total)
T26738 011:462 JLINK_IsHalted()  returns FALSE (0000ms, 0662ms total)
T26738 011:563 JLINK_IsHalted()  returns FALSE (0000ms, 0662ms total)
T26738 011:665 JLINK_IsHalted()  returns FALSE (0000ms, 0662ms total)
T226A8 011:785 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 0662ms total)
T226A8 011:794 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 08 00 00 00  returns 0x04 (0001ms, 0663ms total)
T226A8 011:804 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 0664ms total)
T226A8 011:805 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 07  returns 0x01 (0000ms, 0664ms total)
T226A8 011:814 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 E0 40  returns 0x04 (0001ms, 0665ms total)
T226A8 011:823 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 0666ms total)
T226A8 011:824 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 08  returns 0x01 (0001ms, 0667ms total)
T226A8 011:834 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 0667ms total)
T226A8 011:852 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0668ms total)
T226A8 011:853 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 2B 1C 03 00  returns 0x04 (0001ms, 0669ms total)
T226A8 011:854 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: A1 F4 03 00  returns 0x04 (0000ms, 0669ms total)
T226A8 011:863 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: BD F5 03 00  returns 0x04 (0001ms, 0670ms total)
T226A8 011:890 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0B F3 03 00  returns 0x04 (0001ms, 0671ms total)
T226A8 011:900 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: FE 0B  returns 0x02 (0000ms, 0671ms total)
T226A8 011:900 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0001ms, 0672ms total)
T26738 011:910 JLINK_IsHalted()  returns FALSE (0001ms, 0673ms total)
T26738 012:013 JLINK_IsHalted()  returns FALSE (0000ms, 0672ms total)
T26738 012:114 JLINK_IsHalted()  returns FALSE (0000ms, 0672ms total)
T26738 012:215 JLINK_IsHalted()  returns FALSE (0000ms, 0672ms total)
T226A8 012:334 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 0673ms total)
T226A8 012:343 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 09 00 00 00  returns 0x04 (0001ms, 0674ms total)
T226A8 012:352 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 0675ms total)
T226A8 012:353 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 07  returns 0x01 (0001ms, 0676ms total)
T226A8 012:354 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 00 41  returns 0x04 (0000ms, 0676ms total)
T226A8 012:364 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 0677ms total)
T226A8 012:365 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 09  returns 0x01 (0001ms, 0678ms total)
T226A8 012:374 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 0679ms total)
T226A8 012:392 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0680ms total)
T226A8 012:393 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: C1 E8 02 00  returns 0x04 (0001ms, 0681ms total)
T226A8 012:403 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: A1 F4 03 00  returns 0x04 (0000ms, 0681ms total)
T226A8 012:403 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: DD E9 02 00  returns 0x04 (0001ms, 0682ms total)
T226A8 012:430 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 39 DF 00 00  returns 0x04 (0000ms, 0682ms total)
T226A8 012:439 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: FE 0B  returns 0x02 (0000ms, 0682ms total)
T226A8 012:439 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 03 00  returns 0x02 (0001ms, 0683ms total)
T26738 012:448 JLINK_IsHalted()  returns FALSE (0002ms, 0685ms total)
T26738 012:550 JLINK_IsHalted()  returns FALSE (0000ms, 0683ms total)
T26738 012:651 JLINK_IsHalted()  returns FALSE (0000ms, 0683ms total)
T26738 012:753 JLINK_IsHalted()  returns FALSE (0000ms, 0683ms total)
T226A8 012:872 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 0684ms total)
T226A8 012:881 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 09 00 00 00  returns 0x04 (0001ms, 0685ms total)
T226A8 012:890 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 0686ms total)
T226A8 012:891 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 07  returns 0x01 (0000ms, 0686ms total)
T226A8 012:891 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 00 41  returns 0x04 (0001ms, 0687ms total)
T226A8 012:900 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 0688ms total)
T226A8 012:901 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 09  returns 0x01 (0001ms, 0689ms total)
T226A8 012:911 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 0690ms total)
T226A8 012:929 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 0690ms total)
T226A8 012:930 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: C1 E8 02 00  returns 0x04 (0000ms, 0690ms total)
T226A8 012:939 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: A1 F4 03 00  returns 0x04 (0000ms, 0690ms total)
T226A8 012:939 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: DD E9 02 00  returns 0x04 (0001ms, 0691ms total)
T226A8 012:966 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 39 DF 00 00  returns 0x04 (0000ms, 0691ms total)
T226A8 012:975 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: FE 0B  returns 0x02 (0000ms, 0691ms total)
T226A8 012:975 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 03 00  returns 0x02 (0001ms, 0692ms total)
T26738 012:984 JLINK_IsHalted()  returns FALSE (0001ms, 0693ms total)
T26738 013:086 JLINK_IsHalted()  returns FALSE (0000ms, 0692ms total)
T26738 013:188 JLINK_IsHalted()  returns FALSE (0000ms, 0692ms total)
T26738 013:289 JLINK_IsHalted()  returns FALSE (0000ms, 0692ms total)
T226A8 013:408 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 0692ms total)
T226A8 013:417 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 0A 00 00 00  returns 0x04 (0000ms, 0692ms total)
T226A8 013:426 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 0692ms total)
T226A8 013:426 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 07  returns 0x01 (0001ms, 0693ms total)
T226A8 013:427 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 10 41  returns 0x04 (0001ms, 0694ms total)
T226A8 013:437 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0000ms, 0694ms total)
T226A8 013:437 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 0A  returns 0x01 (0001ms, 0695ms total)
T226A8 013:446 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 0696ms total)
T226A8 013:464 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0697ms total)
T226A8 013:465 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 13 76 03 00  returns 0x04 (0000ms, 0697ms total)
T226A8 013:474 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: A1 F4 03 00  returns 0x04 (0000ms, 0697ms total)
T226A8 013:474 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 2F 77 03 00  returns 0x04 (0001ms, 0698ms total)
T226A8 013:500 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 39 DF 00 00  returns 0x04 (0001ms, 0699ms total)
T226A8 013:501 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: FE 0B  returns 0x02 (0001ms, 0700ms total)
T226A8 013:502 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 04 00  returns 0x02 (0000ms, 0700ms total)
T26738 013:512 JLINK_IsHalted()  returns FALSE (0000ms, 0700ms total)
T26738 013:613 JLINK_IsHalted()  returns FALSE (0000ms, 0700ms total)
T26738 013:714 JLINK_IsHalted()  returns FALSE (0001ms, 0701ms total)
T26738 013:816 JLINK_IsHalted()  returns FALSE (0000ms, 0700ms total)
T226A8 013:935 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 0701ms total)
T226A8 013:944 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 0A 00 00 00  returns 0x04 (0001ms, 0702ms total)
T226A8 013:953 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 0703ms total)
T226A8 013:954 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 07  returns 0x01 (0001ms, 0704ms total)
T226A8 013:955 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 10 41  returns 0x04 (0000ms, 0704ms total)
T226A8 013:964 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 0705ms total)
T226A8 013:965 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 0A  returns 0x01 (0001ms, 0706ms total)
T226A8 013:974 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 0707ms total)
T226A8 013:992 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 0707ms total)
T226A8 013:992 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 13 76 03 00  returns 0x04 (0001ms, 0708ms total)
T226A8 014:002 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: A1 F4 03 00  returns 0x04 (0001ms, 0709ms total)
T226A8 014:003 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 2F 77 03 00  returns 0x04 (0001ms, 0710ms total)
T226A8 014:029 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 39 DF 00 00  returns 0x04 (0001ms, 0711ms total)
T226A8 014:030 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: FE 0B  returns 0x02 (0001ms, 0712ms total)
T226A8 014:031 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 04 00  returns 0x02 (0000ms, 0712ms total)
T26738 014:040 JLINK_IsHalted()  returns FALSE (0001ms, 0713ms total)
T26738 014:142 JLINK_IsHalted()  returns FALSE (0000ms, 0712ms total)
T26738 014:243 JLINK_IsHalted()  returns FALSE (0000ms, 0712ms total)
T26738 014:344 JLINK_IsHalted()  returns FALSE (0000ms, 0712ms total)
T226A8 014:464 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 0712ms total)
T226A8 014:473 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 0A 00 00 00  returns 0x04 (0000ms, 0712ms total)
T226A8 014:473 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 0713ms total)
T226A8 014:474 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 07  returns 0x01 (0001ms, 0714ms total)
T226A8 014:475 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 10 41  returns 0x04 (0000ms, 0714ms total)
T226A8 014:475 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 0715ms total)
T226A8 014:476 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 0A  returns 0x01 (0001ms, 0716ms total)
T226A8 014:477 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 0716ms total)
T226A8 014:494 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0717ms total)
T226A8 014:495 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 13 76 03 00  returns 0x04 (0001ms, 0718ms total)
T226A8 014:496 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: A1 F4 03 00  returns 0x04 (0001ms, 0719ms total)
T226A8 014:497 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 2F 77 03 00  returns 0x04 (0000ms, 0719ms total)
T226A8 014:516 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 39 DF 00 00  returns 0x04 (0000ms, 0719ms total)
T226A8 014:517 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: FE 0B  returns 0x02 (0000ms, 0719ms total)
T226A8 014:517 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 04 00  returns 0x02 (0001ms, 0720ms total)
T26738 014:518 JLINK_IsHalted()  returns FALSE (0001ms, 0721ms total)
T26738 014:619 JLINK_IsHalted()  returns FALSE (0000ms, 0720ms total)
T26738 014:720 JLINK_IsHalted()  returns FALSE (0000ms, 0720ms total)
T26738 014:822 JLINK_IsHalted()  returns FALSE (0000ms, 0720ms total)
T26738 014:923 JLINK_IsHalted()  returns FALSE (0000ms, 0720ms total)
T226A8 015:042 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 0721ms total)
T226A8 015:051 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 0A 00 00 00  returns 0x04 (0001ms, 0722ms total)
T226A8 015:052 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 0722ms total)
T226A8 015:052 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 07  returns 0x01 (0001ms, 0723ms total)
T226A8 015:053 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 10 41  returns 0x04 (0000ms, 0723ms total)
T226A8 015:054 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0000ms, 0723ms total)
T226A8 015:054 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 0A  returns 0x01 (0001ms, 0724ms total)
T226A8 015:055 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 0725ms total)
T226A8 015:073 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0726ms total)
T226A8 015:074 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 13 76 03 00  returns 0x04 (0000ms, 0726ms total)
T226A8 015:074 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: A1 F4 03 00  returns 0x04 (0001ms, 0727ms total)
T226A8 015:075 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 2F 77 03 00  returns 0x04 (0001ms, 0728ms total)
T226A8 015:093 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 39 DF 00 00  returns 0x04 (0001ms, 0729ms total)
T226A8 015:094 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: FE 0B  returns 0x02 (0001ms, 0730ms total)
T226A8 015:095 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 04 00  returns 0x02 (0000ms, 0730ms total)
T26738 015:095 JLINK_IsHalted()  returns FALSE (0002ms, 0732ms total)
T26738 015:198 JLINK_IsHalted()  returns FALSE (0000ms, 0730ms total)
T26738 015:299 JLINK_IsHalted()  returns FALSE (0000ms, 0730ms total)
T26738 015:400 JLINK_IsHalted()  returns FALSE (0000ms, 0730ms total)
T26738 015:501 JLINK_IsHalted()  returns FALSE (0000ms, 0730ms total)
T226A8 015:622 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 0731ms total)
T226A8 015:631 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 0B 00 00 00  returns 0x04 (0001ms, 0732ms total)
T226A8 015:641 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 0732ms total)
T226A8 015:641 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 07  returns 0x01 (0001ms, 0733ms total)
T226A8 015:642 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 20 41  returns 0x04 (0001ms, 0734ms total)
T226A8 015:652 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0000ms, 0734ms total)
T226A8 015:652 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 0B  returns 0x01 (0001ms, 0735ms total)
T226A8 015:662 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 0736ms total)
T226A8 015:681 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 0736ms total)
T226A8 015:681 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: E5 18 04 00  returns 0x04 (0001ms, 0737ms total)
T226A8 015:691 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: A1 F4 03 00  returns 0x04 (0001ms, 0738ms total)
T226A8 015:692 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 01 1A 04 00  returns 0x04 (0001ms, 0739ms total)
T226A8 015:719 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 21 DF 00 00  returns 0x04 (0001ms, 0740ms total)
T226A8 015:729 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: FE 0B  returns 0x02 (0000ms, 0740ms total)
T226A8 015:729 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 05 00  returns 0x02 (0001ms, 0741ms total)
T26738 015:739 JLINK_IsHalted()  returns FALSE (0001ms, 0742ms total)
T26738 015:840 JLINK_IsHalted()  returns FALSE (0000ms, 0741ms total)
T26738 015:942 JLINK_IsHalted()  returns FALSE (0000ms, 0741ms total)
T26738 016:043 JLINK_IsHalted()  returns FALSE (0000ms, 0741ms total)
T226A8 016:163 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 0741ms total)
T226A8 016:172 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 0C 00 00 00  returns 0x04 (0001ms, 0742ms total)
T226A8 016:191 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 0743ms total)
T226A8 016:192 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 08  returns 0x01 (0000ms, 0743ms total)
T226A8 016:201 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 30 41  returns 0x04 (0001ms, 0744ms total)
T226A8 016:219 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 0745ms total)
T226A8 016:220 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 0C  returns 0x01 (0001ms, 0746ms total)
T226A8 016:238 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 0747ms total)
T226A8 016:257 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0748ms total)
T226A8 016:258 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: E5 18 04 00  returns 0x04 (0001ms, 0749ms total)
T226A8 016:268 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8F 5D 03 00  returns 0x04 (0001ms, 0750ms total)
T226A8 016:278 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: AB 5E 03 00  returns 0x04 (0000ms, 0750ms total)
T226A8 016:316 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: A9 5C 03 00  returns 0x04 (0001ms, 0751ms total)
T226A8 016:334 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 18 0C  returns 0x02 (0001ms, 0752ms total)
T226A8 016:344 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 00 00  returns 0x02 (0001ms, 0753ms total)
T26738 016:363 JLINK_IsHalted()  returns FALSE (0001ms, 0754ms total)
T26738 016:464 JLINK_IsHalted()  returns FALSE (0000ms, 0753ms total)
T26738 016:565 JLINK_IsHalted()  returns FALSE (0001ms, 0754ms total)
T226A8 016:687 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 0754ms total)
T226A8 016:697 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 0C 00 00 00  returns 0x04 (0001ms, 0755ms total)
T226A8 016:706 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 0756ms total)
T226A8 016:707 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 08  returns 0x01 (0001ms, 0757ms total)
T226A8 016:716 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 30 41  returns 0x04 (0001ms, 0758ms total)
T226A8 016:726 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 0759ms total)
T226A8 016:727 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 0C  returns 0x01 (0000ms, 0759ms total)
T226A8 016:736 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 0760ms total)
T226A8 016:755 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0761ms total)
T226A8 016:756 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: E5 18 04 00  returns 0x04 (0000ms, 0761ms total)
T226A8 016:756 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8F 5D 03 00  returns 0x04 (0001ms, 0762ms total)
T226A8 016:766 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: AB 5E 03 00  returns 0x04 (0001ms, 0763ms total)
T226A8 016:793 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: A9 5C 03 00  returns 0x04 (0001ms, 0764ms total)
T226A8 016:803 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 18 0C  returns 0x02 (0001ms, 0765ms total)
T226A8 016:813 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 00 00  returns 0x02 (0000ms, 0765ms total)
T26738 016:822 JLINK_IsHalted()  returns FALSE (0001ms, 0766ms total)
T26738 016:925 JLINK_IsHalted()  returns FALSE (0000ms, 0765ms total)
T26738 017:026 JLINK_IsHalted()  returns FALSE (0000ms, 0765ms total)
T26738 017:127 JLINK_IsHalted()  returns FALSE (0000ms, 0765ms total)
T226A8 017:248 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 0765ms total)
T226A8 017:257 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 0D 00 00 00  returns 0x04 (0001ms, 0766ms total)
T226A8 017:266 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 0767ms total)
T226A8 017:267 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 08  returns 0x01 (0001ms, 0768ms total)
T226A8 017:268 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 40 41  returns 0x04 (0000ms, 0768ms total)
T226A8 017:277 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 0769ms total)
T226A8 017:278 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 0D  returns 0x01 (0000ms, 0769ms total)
T226A8 017:287 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 0770ms total)
T226A8 017:305 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0771ms total)
T226A8 017:306 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: C1 99 03 00  returns 0x04 (0000ms, 0771ms total)
T226A8 017:315 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8F 5D 03 00  returns 0x04 (0001ms, 0772ms total)
T226A8 017:316 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: DD 9A 03 00  returns 0x04 (0000ms, 0772ms total)
T226A8 017:342 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 21 DF 00 00  returns 0x04 (0001ms, 0773ms total)
T226A8 017:352 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 18 0C  returns 0x02 (0000ms, 0773ms total)
T226A8 017:352 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 01 00  returns 0x02 (0001ms, 0774ms total)
T26738 017:361 JLINK_IsHalted()  returns FALSE (0001ms, 0775ms total)
T26738 017:463 JLINK_IsHalted()  returns FALSE (0000ms, 0774ms total)
T26738 017:564 JLINK_IsHalted()  returns FALSE (0000ms, 0774ms total)
T26738 017:666 JLINK_IsHalted()  returns FALSE (0000ms, 0774ms total)
T226A8 017:786 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 0774ms total)
T226A8 017:795 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 0D 00 00 00  returns 0x04 (0001ms, 0775ms total)
T226A8 017:805 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 0776ms total)
T226A8 017:806 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 08  returns 0x01 (0000ms, 0776ms total)
T226A8 017:806 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 40 41  returns 0x04 (0001ms, 0777ms total)
T226A8 017:816 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 0778ms total)
T226A8 017:817 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 0D  returns 0x01 (0001ms, 0779ms total)
T226A8 017:827 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 0779ms total)
T226A8 017:845 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0780ms total)
T226A8 017:846 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: C1 99 03 00  returns 0x04 (0001ms, 0781ms total)
T226A8 017:856 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8F 5D 03 00  returns 0x04 (0000ms, 0781ms total)
T226A8 017:856 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: DD 9A 03 00  returns 0x04 (0001ms, 0782ms total)
T226A8 017:884 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 21 DF 00 00  returns 0x04 (0001ms, 0783ms total)
T226A8 017:894 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 18 0C  returns 0x02 (0000ms, 0783ms total)
T226A8 017:894 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 01 00  returns 0x02 (0001ms, 0784ms total)
T26738 017:904 JLINK_IsHalted()  returns FALSE (0001ms, 0785ms total)
T26738 018:006 JLINK_IsHalted()  returns FALSE (0000ms, 0784ms total)
T26738 018:107 JLINK_IsHalted()  returns FALSE (0000ms, 0784ms total)
T26738 018:208 JLINK_IsHalted()  returns FALSE (0000ms, 0784ms total)
T226A8 018:251 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 62  returns 0x01 (0001ms, 0785ms total)
T226A8 018:328 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 0785ms total)
T226A8 018:338 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 0E 00 00 00  returns 0x04 (0000ms, 0785ms total)
T226A8 018:347 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 0786ms total)
T226A8 018:348 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 08  returns 0x01 (0001ms, 0787ms total)
T226A8 018:349 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 50 41  returns 0x04 (0000ms, 0787ms total)
T226A8 018:358 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 0788ms total)
T226A8 018:359 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 0E  returns 0x01 (0001ms, 0789ms total)
T226A8 018:369 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 0790ms total)
T226A8 018:388 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0791ms total)
T226A8 018:389 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 93 1D 03 00  returns 0x04 (0001ms, 0792ms total)
T226A8 018:399 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8F 5D 03 00  returns 0x04 (0001ms, 0793ms total)
T226A8 018:400 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: AF 1E 03 00  returns 0x04 (0000ms, 0793ms total)
T226A8 018:427 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 39 DF 00 00  returns 0x04 (0001ms, 0794ms total)
T226A8 018:436 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 18 0C  returns 0x02 (0001ms, 0795ms total)
T226A8 018:437 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0000ms, 0795ms total)
T26738 018:446 JLINK_IsHalted()  returns FALSE (0001ms, 0796ms total)
T26738 018:547 JLINK_IsHalted()  returns FALSE (0000ms, 0795ms total)
T26738 018:648 JLINK_IsHalted()  returns FALSE (0000ms, 0795ms total)
T26738 018:749 JLINK_IsHalted()  returns FALSE (0000ms, 0795ms total)
T226A8 018:869 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 0796ms total)
T226A8 018:879 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 0E 00 00 00  returns 0x04 (0001ms, 0797ms total)
T226A8 018:888 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 0798ms total)
T226A8 018:889 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 08  returns 0x01 (0001ms, 0799ms total)
T226A8 018:890 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 50 41  returns 0x04 (0000ms, 0799ms total)
T226A8 018:899 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 0800ms total)
T226A8 018:900 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 0E  returns 0x01 (0000ms, 0800ms total)
T226A8 018:909 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 0801ms total)
T226A8 018:926 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0802ms total)
T226A8 018:927 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 93 1D 03 00  returns 0x04 (0001ms, 0803ms total)
T226A8 018:936 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8F 5D 03 00  returns 0x04 (0001ms, 0804ms total)
T226A8 018:937 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: AF 1E 03 00  returns 0x04 (0000ms, 0804ms total)
T226A8 018:962 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 39 DF 00 00  returns 0x04 (0001ms, 0805ms total)
T226A8 018:972 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 18 0C  returns 0x02 (0000ms, 0805ms total)
T226A8 018:972 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0001ms, 0806ms total)
T26738 018:981 JLINK_IsHalted()  returns FALSE (0001ms, 0807ms total)
T226A8 018:982 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 62  returns 0x01 (0001ms, 0807ms total)
T26738 019:083 JLINK_IsHalted()  returns FALSE (0000ms, 0807ms total)
T26738 019:185 JLINK_IsHalted()  returns FALSE (0000ms, 0807ms total)
T26738 019:286 JLINK_IsHalted()  returns FALSE (0000ms, 0807ms total)
T226A8 019:406 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 0807ms total)
T226A8 019:415 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 0F 00 00 00  returns 0x04 (0001ms, 0808ms total)
T226A8 019:424 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 0808ms total)
T226A8 019:424 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 09  returns 0x01 (0001ms, 0809ms total)
T226A8 019:434 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 60 41  returns 0x04 (0000ms, 0809ms total)
T226A8 019:443 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 0810ms total)
T226A8 019:444 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 0F  returns 0x01 (0001ms, 0811ms total)
T226A8 019:453 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 0812ms total)
T226A8 019:471 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0813ms total)
T226A8 019:472 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 93 1D 03 00  returns 0x04 (0001ms, 0814ms total)
T226A8 019:473 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: DF 59 02 00  returns 0x04 (0000ms, 0814ms total)
T226A8 019:482 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: FB 5A 02 00  returns 0x04 (0000ms, 0814ms total)
T226A8 019:508 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: F9 58 02 00  returns 0x04 (0000ms, 0814ms total)
T226A8 019:517 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 18 0C  returns 0x02 (0000ms, 0814ms total)
T226A8 019:518 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 03 00  returns 0x02 (0000ms, 0814ms total)
T26738 019:527 JLINK_IsHalted()  returns FALSE (0002ms, 0816ms total)
T26738 019:629 JLINK_IsHalted()  returns FALSE (0000ms, 0814ms total)
T26738 019:730 JLINK_IsHalted()  returns FALSE (0000ms, 0814ms total)
T26738 019:831 JLINK_IsHalted()  returns FALSE (0000ms, 0814ms total)
T226A8 019:951 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 0815ms total)
T226A8 019:961 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 0F 00 00 00  returns 0x04 (0000ms, 0815ms total)
T226A8 019:970 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 0815ms total)
T226A8 019:970 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 09  returns 0x01 (0001ms, 0816ms total)
T226A8 019:979 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 60 41  returns 0x04 (0001ms, 0817ms total)
T226A8 019:988 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 0818ms total)
T226A8 019:989 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 0F  returns 0x01 (0000ms, 0818ms total)
T226A8 019:998 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 0819ms total)
T226A8 020:016 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0820ms total)
T226A8 020:017 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 93 1D 03 00  returns 0x04 (0001ms, 0821ms total)
T226A8 020:018 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: DF 59 02 00  returns 0x04 (0000ms, 0821ms total)
T226A8 020:027 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: FB 5A 02 00  returns 0x04 (0001ms, 0822ms total)
T226A8 020:053 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: F9 58 02 00  returns 0x04 (0001ms, 0823ms total)
T226A8 020:063 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 18 0C  returns 0x02 (0000ms, 0823ms total)
T226A8 020:063 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 03 00  returns 0x02 (0001ms, 0824ms total)
T26738 020:072 JLINK_IsHalted()  returns FALSE (0002ms, 0826ms total)
T26738 020:175 JLINK_IsHalted()  returns FALSE (0000ms, 0824ms total)
T26738 020:276 JLINK_IsHalted()  returns FALSE (0000ms, 0824ms total)
T26738 020:377 JLINK_IsHalted()  returns FALSE (0000ms, 0824ms total)
T226A8 020:497 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 0825ms total)
T226A8 020:507 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 10 00 00 00  returns 0x04 (0001ms, 0826ms total)
T226A8 020:516 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 0827ms total)
T226A8 020:517 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 0A  returns 0x01 (0001ms, 0828ms total)
T226A8 020:526 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 70 41  returns 0x04 (0001ms, 0829ms total)
T226A8 020:535 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 0830ms total)
T226A8 020:536 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 10  returns 0x01 (0001ms, 0831ms total)
T226A8 020:546 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 0831ms total)
T226A8 020:564 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0832ms total)
T226A8 020:565 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 93 1D 03 00  returns 0x04 (0000ms, 0832ms total)
T226A8 020:565 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 19 AF 02 00  returns 0x04 (0001ms, 0833ms total)
T226A8 020:575 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 35 B0 02 00  returns 0x04 (0000ms, 0833ms total)
T226A8 020:601 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 1F AE 02 00  returns 0x04 (0001ms, 0834ms total)
T226A8 020:611 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 18 0C  returns 0x02 (0000ms, 0834ms total)
T226A8 020:611 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 04 00  returns 0x02 (0001ms, 0835ms total)
T26738 020:621 JLINK_IsHalted()  returns FALSE (0001ms, 0836ms total)
T26738 020:722 JLINK_IsHalted()  returns FALSE (0000ms, 0835ms total)
T26738 020:823 JLINK_IsHalted()  returns FALSE (0000ms, 0835ms total)
T26738 020:925 JLINK_IsHalted()  returns FALSE (0000ms, 0835ms total)
T226A8 021:045 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 0836ms total)
T226A8 021:054 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 10 00 00 00  returns 0x04 (0001ms, 0837ms total)
T226A8 021:064 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 0837ms total)
T226A8 021:064 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 0A  returns 0x01 (0001ms, 0838ms total)
T226A8 021:074 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 70 41  returns 0x04 (0001ms, 0839ms total)
T226A8 021:084 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0000ms, 0839ms total)
T226A8 021:085 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 10  returns 0x01 (0000ms, 0839ms total)
T226A8 021:094 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 0840ms total)
T226A8 021:112 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0841ms total)
T226A8 021:113 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 93 1D 03 00  returns 0x04 (0000ms, 0841ms total)
T226A8 021:113 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 19 AF 02 00  returns 0x04 (0001ms, 0842ms total)
T226A8 021:123 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 35 B0 02 00  returns 0x04 (0001ms, 0843ms total)
T226A8 021:150 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 21 DF 00 00  returns 0x04 (0001ms, 0844ms total)
T226A8 021:169 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 18 0C  returns 0x02 (0000ms, 0844ms total)
T226A8 021:169 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 05 00  returns 0x02 (0001ms, 0845ms total)
T26738 021:188 JLINK_IsHalted()  returns FALSE (0001ms, 0846ms total)
T26738 021:289 JLINK_IsHalted()  returns FALSE (0000ms, 0845ms total)
T26738 021:390 JLINK_IsHalted()  returns FALSE (0000ms, 0845ms total)
T26738 021:491 JLINK_IsHalted()  returns FALSE (0000ms, 0845ms total)
T226A8 021:612 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 0845ms total)
T226A8 021:621 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 11 00 00 00  returns 0x04 (0001ms, 0846ms total)
T226A8 021:631 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 0847ms total)
T226A8 021:632 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 0A  returns 0x01 (0001ms, 0848ms total)
T226A8 021:633 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 80 41  returns 0x04 (0001ms, 0849ms total)
T226A8 021:642 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 0850ms total)
T226A8 021:643 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 11  returns 0x01 (0001ms, 0851ms total)
T226A8 021:653 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 0851ms total)
T226A8 021:671 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0852ms total)
T226A8 021:672 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: B7 C9 03 00  returns 0x04 (0001ms, 0853ms total)
T226A8 021:682 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 19 AF 02 00  returns 0x04 (0001ms, 0854ms total)
T226A8 021:683 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: D3 CA 03 00  returns 0x04 (0001ms, 0855ms total)
T226A8 021:710 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 21 DF 00 00  returns 0x04 (0001ms, 0856ms total)
T226A8 021:719 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 18 0C  returns 0x02 (0001ms, 0857ms total)
T226A8 021:720 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 05 00  returns 0x02 (0001ms, 0858ms total)
T26738 021:730 JLINK_IsHalted()  returns FALSE (0000ms, 0858ms total)
T26738 021:831 JLINK_IsHalted()  returns FALSE (0000ms, 0858ms total)
T26738 021:932 JLINK_IsHalted()  returns FALSE (0000ms, 0858ms total)
T26738 022:034 JLINK_IsHalted()  returns FALSE (0000ms, 0858ms total)
T226A8 022:153 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 0859ms total)
T226A8 022:163 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 12 00 00 00  returns 0x04 (0001ms, 0860ms total)
T226A8 022:181 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 0861ms total)
T226A8 022:182 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 0B  returns 0x01 (0000ms, 0861ms total)
T226A8 022:191 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 88 41  returns 0x04 (0001ms, 0862ms total)
T226A8 022:210 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 0863ms total)
T226A8 022:211 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 12  returns 0x01 (0001ms, 0864ms total)
T226A8 022:229 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 0865ms total)
T226A8 022:250 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0866ms total)
T226A8 022:251 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: B7 C9 03 00  returns 0x04 (0001ms, 0867ms total)
T226A8 022:261 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: A1 EB 03 00  returns 0x04 (0001ms, 0868ms total)
T226A8 022:270 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: BD EC 03 00  returns 0x04 (0001ms, 0869ms total)
T226A8 022:306 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 23 EA 03 00  returns 0x04 (0000ms, 0869ms total)
T226A8 022:315 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 1C 0C  returns 0x02 (0001ms, 0870ms total)
T226A8 022:324 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 00 00  returns 0x02 (0001ms, 0871ms total)
T26738 022:333 JLINK_IsHalted()  returns FALSE (0001ms, 0872ms total)
T26738 022:435 JLINK_IsHalted()  returns FALSE (0000ms, 0871ms total)
T26738 022:536 JLINK_IsHalted()  returns FALSE (0000ms, 0871ms total)
T26738 022:638 JLINK_IsHalted()  returns FALSE (0000ms, 0871ms total)
T226A8 022:756 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 0872ms total)
T226A8 022:765 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 12 00 00 00  returns 0x04 (0001ms, 0873ms total)
T226A8 022:775 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 0874ms total)
T226A8 022:776 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 0B  returns 0x01 (0001ms, 0875ms total)
T226A8 022:785 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 88 41  returns 0x04 (0001ms, 0876ms total)
T226A8 022:795 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 0877ms total)
T226A8 022:796 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 12  returns 0x01 (0000ms, 0877ms total)
T226A8 022:805 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 0878ms total)
T226A8 022:825 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 0878ms total)
T226A8 022:825 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: B7 C9 03 00  returns 0x04 (0001ms, 0879ms total)
T226A8 022:826 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: A1 EB 03 00  returns 0x04 (0001ms, 0880ms total)
T226A8 022:835 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: BD EC 03 00  returns 0x04 (0001ms, 0881ms total)
T226A8 022:861 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 23 EA 03 00  returns 0x04 (0001ms, 0882ms total)
T226A8 022:871 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 1C 0C  returns 0x02 (0000ms, 0882ms total)
T226A8 022:880 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 00 00  returns 0x02 (0000ms, 0882ms total)
T26738 022:889 JLINK_IsHalted()  returns FALSE (0000ms, 0882ms total)
T26738 022:990 JLINK_IsHalted()  returns FALSE (0000ms, 0882ms total)
T26738 023:091 JLINK_IsHalted()  returns FALSE (0000ms, 0882ms total)
T26738 023:193 JLINK_IsHalted()  returns FALSE (0000ms, 0882ms total)
T226A8 023:352 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 0882ms total)
T226A8 023:361 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 13 00 00 00  returns 0x04 (0001ms, 0883ms total)
T226A8 023:371 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 0884ms total)
T226A8 023:372 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 0C  returns 0x01 (0001ms, 0885ms total)
T226A8 023:381 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 90 41  returns 0x04 (0001ms, 0886ms total)
T226A8 023:390 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 0887ms total)
T226A8 023:391 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 13  returns 0x01 (0000ms, 0887ms total)
T226A8 023:400 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 0888ms total)
T226A8 023:418 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0889ms total)
T226A8 023:419 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: B7 C9 03 00  returns 0x04 (0000ms, 0889ms total)
T226A8 023:420 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0000ms, 0890ms total)
T226A8 023:429 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 91 EC 03 00  returns 0x04 (0000ms, 0890ms total)
T226A8 023:455 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: F7 E9 03 00  returns 0x04 (0000ms, 0890ms total)
T226A8 023:464 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 1C 0C  returns 0x02 (0001ms, 0891ms total)
T226A8 023:465 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 01 00  returns 0x02 (0000ms, 0891ms total)
T26738 023:474 JLINK_IsHalted()  returns FALSE (0000ms, 0891ms total)
T26738 023:576 JLINK_IsHalted()  returns FALSE (0000ms, 0891ms total)
T26738 023:677 JLINK_IsHalted()  returns FALSE (0000ms, 0891ms total)
T26738 023:778 JLINK_IsHalted()  returns FALSE (0000ms, 0891ms total)
T226A8 023:896 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 0892ms total)
T226A8 023:905 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 13 00 00 00  returns 0x04 (0001ms, 0893ms total)
T226A8 023:915 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 0893ms total)
T226A8 023:915 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 0C  returns 0x01 (0001ms, 0894ms total)
T226A8 023:924 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 90 41  returns 0x04 (0001ms, 0895ms total)
T226A8 023:933 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 0896ms total)
T226A8 023:934 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 13  returns 0x01 (0001ms, 0897ms total)
T226A8 023:943 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 0898ms total)
T226A8 023:961 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0899ms total)
T226A8 023:962 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: B7 C9 03 00  returns 0x04 (0001ms, 0900ms total)
T226A8 023:963 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0000ms, 0900ms total)
T226A8 023:972 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 91 EC 03 00  returns 0x04 (0001ms, 0901ms total)
T226A8 023:998 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: F7 E9 03 00  returns 0x04 (0001ms, 0902ms total)
T226A8 024:008 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 1C 0C  returns 0x02 (0000ms, 0902ms total)
T226A8 024:008 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 01 00  returns 0x02 (0001ms, 0903ms total)
T26738 024:017 JLINK_IsHalted()  returns FALSE (0001ms, 0904ms total)
T226A8 024:027 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 64  returns 0x01 (0000ms, 0903ms total)
T226A8 024:027 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 64  returns 0x01 (0001ms, 0904ms total)
T226A8 024:028 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 64  returns 0x01 (0001ms, 0905ms total)
T26738 024:119 JLINK_IsHalted()  returns FALSE (0000ms, 0905ms total)
T26738 024:220 JLINK_IsHalted()  returns FALSE (0000ms, 0905ms total)
T26738 024:321 JLINK_IsHalted()  returns FALSE (0000ms, 0905ms total)
T226A8 024:441 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 0906ms total)
T226A8 024:452 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 14 00 00 00  returns 0x04 (0000ms, 0906ms total)
T226A8 024:461 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 0907ms total)
T226A8 024:462 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 0D  returns 0x01 (0000ms, 0907ms total)
T226A8 024:471 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 98 41  returns 0x04 (0001ms, 0908ms total)
T226A8 024:481 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0000ms, 0908ms total)
T226A8 024:481 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 14  returns 0x01 (0001ms, 0909ms total)
T226A8 024:491 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 0910ms total)
T226A8 024:509 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0911ms total)
T226A8 024:510 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: B7 C9 03 00  returns 0x04 (0000ms, 0911ms total)
T226A8 024:510 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0001ms, 0912ms total)
T226A8 024:520 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0001ms, 0913ms total)
T226A8 024:548 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0000ms, 0913ms total)
T226A8 024:557 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 1C 0C  returns 0x02 (0001ms, 0914ms total)
T226A8 024:558 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0001ms, 0915ms total)
T226A8 024:567 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 64  returns 0x01 (0001ms, 0916ms total)
T26738 024:568 JLINK_IsHalted()  returns FALSE (0001ms, 0917ms total)
T26738 024:669 JLINK_IsHalted()  returns FALSE (0000ms, 0916ms total)
T26738 024:771 JLINK_IsHalted()  returns FALSE (0000ms, 0916ms total)
T26738 024:872 JLINK_IsHalted()  returns FALSE (0000ms, 0916ms total)
T226A8 025:042 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 0917ms total)
T226A8 025:051 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 14 00 00 00  returns 0x04 (0001ms, 0918ms total)
T226A8 025:061 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 0918ms total)
T226A8 025:061 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 0D  returns 0x01 (0001ms, 0919ms total)
T226A8 025:071 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 98 41  returns 0x04 (0001ms, 0920ms total)
T226A8 025:081 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 0921ms total)
T226A8 025:082 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 14  returns 0x01 (0000ms, 0921ms total)
T226A8 025:091 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 0922ms total)
T226A8 025:111 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 0922ms total)
T226A8 025:111 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: B7 C9 03 00  returns 0x04 (0001ms, 0923ms total)
T226A8 025:112 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0001ms, 0924ms total)
T226A8 025:122 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0000ms, 0924ms total)
T226A8 025:150 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 21 DF 00 00  returns 0x04 (0000ms, 0924ms total)
T226A8 025:169 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 1C 0C  returns 0x02 (0000ms, 0924ms total)
T226A8 025:169 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 03 00  returns 0x02 (0001ms, 0925ms total)
T226A8 025:188 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 64  returns 0x01 (0001ms, 0926ms total)
T26738 025:189 JLINK_IsHalted()  returns FALSE (0001ms, 0927ms total)
T26738 025:291 JLINK_IsHalted()  returns FALSE (0000ms, 0926ms total)
T26738 025:392 JLINK_IsHalted()  returns FALSE (0000ms, 0926ms total)
T226A8 025:513 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 0927ms total)
T226A8 025:523 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 15 00 00 00  returns 0x04 (0001ms, 0928ms total)
T226A8 025:532 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 0929ms total)
T226A8 025:533 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 0D  returns 0x01 (0001ms, 0930ms total)
T226A8 025:534 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 A0 41  returns 0x04 (0000ms, 0930ms total)
T226A8 025:543 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 0931ms total)
T226A8 025:544 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 15  returns 0x01 (0001ms, 0932ms total)
T226A8 025:554 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 0932ms total)
T226A8 025:572 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0934ms total)
T226A8 025:573 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 29 64 03 00  returns 0x04 (0001ms, 0935ms total)
T226A8 025:582 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0001ms, 0936ms total)
T226A8 025:583 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 45 65 03 00  returns 0x04 (0001ms, 0937ms total)
T226A8 025:610 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 21 DF 00 00  returns 0x04 (0001ms, 0938ms total)
T226A8 025:620 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 1C 0C  returns 0x02 (0001ms, 0939ms total)
T226A8 025:621 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 03 00  returns 0x02 (0000ms, 0939ms total)
T226A8 025:630 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 64  returns 0x01 (0001ms, 0940ms total)
T26738 025:631 JLINK_IsHalted()  returns FALSE (0001ms, 0941ms total)
T26738 025:732 JLINK_IsHalted()  returns FALSE (0000ms, 0940ms total)
T226A8 025:749 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 0940ms total)
T226A8 025:758 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 15 00 00 00  returns 0x04 (0001ms, 0941ms total)
T226A8 025:768 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 0942ms total)
T226A8 025:769 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 0D  returns 0x01 (0001ms, 0943ms total)
T226A8 025:770 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 A0 41  returns 0x04 (0000ms, 0943ms total)
T226A8 025:780 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0000ms, 0943ms total)
T226A8 025:780 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 15  returns 0x01 (0001ms, 0944ms total)
T226A8 025:791 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 0944ms total)
T226A8 025:809 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0945ms total)
T226A8 025:810 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 29 64 03 00  returns 0x04 (0001ms, 0946ms total)
T226A8 025:820 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0001ms, 0947ms total)
T226A8 025:821 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 45 65 03 00  returns 0x04 (0000ms, 0947ms total)
T26738 025:833 JLINK_IsHalted()  returns FALSE (0000ms, 0947ms total)
T226A8 025:848 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 21 DF 00 00  returns 0x04 (0001ms, 0948ms total)
T226A8 025:849 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 1C 0C  returns 0x02 (0000ms, 0948ms total)
T226A8 025:849 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 03 00  returns 0x02 (0001ms, 0949ms total)
T226A8 025:850 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 64  returns 0x01 (0002ms, 0951ms total)
T26738 025:935 JLINK_IsHalted()  returns FALSE (0000ms, 0951ms total)
T226A8 026:054 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 0952ms total)
T226A8 026:064 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 15 00 00 00  returns 0x04 (0001ms, 0953ms total)
T226A8 026:065 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 0954ms total)
T226A8 026:066 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 0D  returns 0x01 (0000ms, 0954ms total)
T226A8 026:066 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 A0 41  returns 0x04 (0001ms, 0955ms total)
T226A8 026:067 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 0956ms total)
T226A8 026:068 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 15  returns 0x01 (0000ms, 0956ms total)
T226A8 026:068 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 0957ms total)
T226A8 026:087 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0958ms total)
T226A8 026:088 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 29 64 03 00  returns 0x04 (0000ms, 0958ms total)
T226A8 026:088 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0001ms, 0959ms total)
T226A8 026:089 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 45 65 03 00  returns 0x04 (0001ms, 0960ms total)
T226A8 026:108 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 21 DF 00 00  returns 0x04 (0001ms, 0961ms total)
T226A8 026:109 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 1C 0C  returns 0x02 (0000ms, 0961ms total)
T226A8 026:109 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 03 00  returns 0x02 (0001ms, 0962ms total)
T226A8 026:110 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 64  returns 0x01 (0001ms, 0963ms total)
T26738 026:111 JLINK_IsHalted()  returns FALSE (0000ms, 0963ms total)
T26738 026:212 JLINK_IsHalted()  returns FALSE (0000ms, 0963ms total)
T26738 026:314 JLINK_IsHalted()  returns FALSE (0000ms, 0963ms total)
T26738 026:415 JLINK_IsHalted()  returns FALSE (0000ms, 0963ms total)
T26738 026:516 JLINK_IsHalted()  returns FALSE (0000ms, 0963ms total)
T226A8 026:638 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 0964ms total)
T226A8 026:648 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 16 00 00 00  returns 0x04 (0001ms, 0965ms total)
T226A8 026:658 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 0965ms total)
T226A8 026:658 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 0E  returns 0x01 (0001ms, 0966ms total)
T226A8 026:668 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 A8 41  returns 0x04 (0001ms, 0967ms total)
T226A8 026:678 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 0968ms total)
T226A8 026:679 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 16  returns 0x01 (0001ms, 0969ms total)
T226A8 026:689 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 0969ms total)
T226A8 026:708 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0970ms total)
T226A8 026:709 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 29 64 03 00  returns 0x04 (0001ms, 0971ms total)
T226A8 026:710 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0000ms, 0971ms total)
T226A8 026:710 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0001ms, 0972ms total)
T226A8 026:739 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0001ms, 0973ms total)
T226A8 026:749 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 1C 0C  returns 0x02 (0000ms, 0973ms total)
T226A8 026:749 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 04 00  returns 0x02 (0001ms, 0974ms total)
T226A8 026:760 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 64  returns 0x01 (0001ms, 0975ms total)
T26738 026:761 JLINK_IsHalted()  returns FALSE (0000ms, 0975ms total)
T26738 026:862 JLINK_IsHalted()  returns FALSE (0000ms, 0975ms total)
T26738 026:963 JLINK_IsHalted()  returns FALSE (0000ms, 0975ms total)
T26738 027:065 JLINK_IsHalted()  returns FALSE (0000ms, 0975ms total)
T226A8 027:185 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 0976ms total)
T226A8 027:195 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 17 00 00 00  returns 0x04 (0000ms, 0976ms total)
T226A8 027:213 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 0976ms total)
T226A8 027:213 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 0F  returns 0x01 (0001ms, 0977ms total)
T226A8 027:232 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 B0 41  returns 0x04 (0001ms, 0978ms total)
T226A8 027:251 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0000ms, 0978ms total)
T226A8 027:251 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 17  returns 0x01 (0001ms, 0979ms total)
T226A8 027:270 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 0979ms total)
T226A8 027:289 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0980ms total)
T226A8 027:290 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 29 64 03 00  returns 0x04 (0000ms, 0980ms total)
T226A8 027:290 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0001ms, 0981ms total)
T226A8 027:300 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 91 EC 03 00  returns 0x04 (0001ms, 0982ms total)
T226A8 027:336 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: F7 E9 03 00  returns 0x04 (0001ms, 0983ms total)
T226A8 027:354 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 1C 0C  returns 0x02 (0001ms, 0984ms total)
T226A8 027:355 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 05 00  returns 0x02 (0000ms, 0984ms total)
T226A8 027:374 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 64  returns 0x01 (0000ms, 0984ms total)
T26738 027:375 JLINK_IsHalted()  returns FALSE (0000ms, 0984ms total)
T26738 027:477 JLINK_IsHalted()  returns FALSE (0000ms, 0984ms total)
T26738 027:578 JLINK_IsHalted()  returns FALSE (0000ms, 0984ms total)
T226A8 027:698 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 0985ms total)
T226A8 027:708 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 17 00 00 00  returns 0x04 (0001ms, 0986ms total)
T226A8 027:717 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 0987ms total)
T226A8 027:718 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 0F  returns 0x01 (0000ms, 0987ms total)
T226A8 027:727 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 B0 41  returns 0x04 (0001ms, 0988ms total)
T226A8 027:736 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 0989ms total)
T226A8 027:737 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 17  returns 0x01 (0001ms, 0990ms total)
T226A8 027:746 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 0991ms total)
T226A8 027:766 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 0991ms total)
T226A8 027:766 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 29 64 03 00  returns 0x04 (0001ms, 0992ms total)
T226A8 027:767 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0001ms, 0993ms total)
T226A8 027:777 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 91 EC 03 00  returns 0x04 (0001ms, 0994ms total)
T226A8 027:804 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: F7 E9 03 00  returns 0x04 (0001ms, 0995ms total)
T226A8 027:814 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 1C 0C  returns 0x02 (0000ms, 0995ms total)
T226A8 027:814 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 05 00  returns 0x02 (0001ms, 0996ms total)
T226A8 027:824 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 64  returns 0x01 (0001ms, 0997ms total)
T26738 027:825 JLINK_IsHalted()  returns FALSE (0000ms, 0997ms total)
T26738 027:926 JLINK_IsHalted()  returns FALSE (0000ms, 0997ms total)
T26738 028:027 JLINK_IsHalted()  returns FALSE (0000ms, 0997ms total)
T26738 028:128 JLINK_IsHalted()  returns FALSE (0000ms, 0997ms total)
T226A8 028:248 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 0998ms total)
T226A8 028:258 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 18 00 00 00  returns 0x04 (0001ms, 0999ms total)
T226A8 028:267 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1000ms total)
T226A8 028:268 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 10  returns 0x01 (0001ms, 1001ms total)
T226A8 028:278 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 B8 41  returns 0x04 (0001ms, 1002ms total)
T226A8 028:287 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1003ms total)
T226A8 028:288 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 18  returns 0x01 (0001ms, 1004ms total)
T226A8 028:298 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1005ms total)
T226A8 028:317 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 1005ms total)
T226A8 028:317 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 29 64 03 00  returns 0x04 (0001ms, 1006ms total)
T226A8 028:318 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 6B D6 03 00  returns 0x04 (0001ms, 1007ms total)
T226A8 028:328 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 87 D7 03 00  returns 0x04 (0000ms, 1007ms total)
T226A8 028:355 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 67 D5 03 00  returns 0x04 (0000ms, 1007ms total)
T226A8 028:364 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 1C 0C  returns 0x02 (0001ms, 1008ms total)
T226A8 028:365 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 00 00  returns 0x02 (0001ms, 1009ms total)
T226A8 028:374 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 64  returns 0x01 (0001ms, 1010ms total)
T26738 028:375 JLINK_IsHalted()  returns FALSE (0001ms, 1011ms total)
T26738 028:477 JLINK_IsHalted()  returns FALSE (0000ms, 1010ms total)
T26738 028:579 JLINK_IsHalted()  returns FALSE (0000ms, 1010ms total)
T26738 028:680 JLINK_IsHalted()  returns FALSE (0000ms, 1010ms total)
T226A8 028:801 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 1010ms total)
T226A8 028:810 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 18 00 00 00  returns 0x04 (0001ms, 1011ms total)
T226A8 028:820 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1012ms total)
T226A8 028:821 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 10  returns 0x01 (0000ms, 1012ms total)
T226A8 028:830 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 B8 41  returns 0x04 (0001ms, 1013ms total)
T226A8 028:840 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1014ms total)
T226A8 028:841 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 18  returns 0x01 (0000ms, 1014ms total)
T226A8 028:851 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 1014ms total)
T226A8 028:870 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 1014ms total)
T226A8 028:870 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 29 64 03 00  returns 0x04 (0001ms, 1015ms total)
T226A8 028:871 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 6B D6 03 00  returns 0x04 (0001ms, 1016ms total)
T226A8 028:881 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 87 D7 03 00  returns 0x04 (0000ms, 1016ms total)
T226A8 028:908 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 67 D5 03 00  returns 0x04 (0001ms, 1017ms total)
T226A8 028:918 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 1C 0C  returns 0x02 (0001ms, 1018ms total)
T226A8 028:919 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 00 00  returns 0x02 (0000ms, 1018ms total)
T226A8 028:929 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 64  returns 0x01 (0000ms, 1018ms total)
T26738 028:929 JLINK_IsHalted()  returns FALSE (0001ms, 1019ms total)
T26738 029:031 JLINK_IsHalted()  returns FALSE (0000ms, 1018ms total)
T26738 029:133 JLINK_IsHalted()  returns FALSE (0000ms, 1018ms total)
T26738 029:234 JLINK_IsHalted()  returns FALSE (0000ms, 1018ms total)
T226A8 029:354 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1019ms total)
T226A8 029:363 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 19 00 00 00  returns 0x04 (0001ms, 1020ms total)
T226A8 029:373 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1021ms total)
T226A8 029:374 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 11  returns 0x01 (0000ms, 1021ms total)
T226A8 029:383 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 C0 41  returns 0x04 (0001ms, 1022ms total)
T226A8 029:392 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1023ms total)
T226A8 029:393 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 19  returns 0x01 (0001ms, 1024ms total)
T226A8 029:403 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1025ms total)
T226A8 029:421 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1026ms total)
T226A8 029:422 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 29 64 03 00  returns 0x04 (0001ms, 1027ms total)
T226A8 029:423 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0001ms, 1028ms total)
T226A8 029:432 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 91 EC 03 00  returns 0x04 (0001ms, 1029ms total)
T226A8 029:459 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: F7 E9 03 00  returns 0x04 (0001ms, 1030ms total)
T226A8 029:470 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 1C 0C  returns 0x02 (0001ms, 1031ms total)
T226A8 029:471 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 01 00  returns 0x02 (0000ms, 1031ms total)
T226A8 029:480 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 64  returns 0x01 (0001ms, 1032ms total)
T26738 029:481 JLINK_IsHalted()  returns FALSE (0001ms, 1033ms total)
T26738 029:583 JLINK_IsHalted()  returns FALSE (0000ms, 1032ms total)
T26738 029:685 JLINK_IsHalted()  returns FALSE (0000ms, 1032ms total)
T26738 029:786 JLINK_IsHalted()  returns FALSE (0000ms, 1032ms total)
T226A8 029:905 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1033ms total)
T226A8 029:915 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 19 00 00 00  returns 0x04 (0000ms, 1033ms total)
T226A8 029:924 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1034ms total)
T226A8 029:925 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 11  returns 0x01 (0000ms, 1034ms total)
T226A8 029:934 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 C0 41  returns 0x04 (0001ms, 1035ms total)
T226A8 029:944 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1036ms total)
T226A8 029:945 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 19  returns 0x01 (0000ms, 1036ms total)
T226A8 029:954 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 1036ms total)
T226A8 029:972 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1037ms total)
T226A8 029:973 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 29 64 03 00  returns 0x04 (0000ms, 1037ms total)
T226A8 029:973 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0001ms, 1038ms total)
T226A8 029:983 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 91 EC 03 00  returns 0x04 (0001ms, 1039ms total)
T226A8 030:010 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: F7 E9 03 00  returns 0x04 (0001ms, 1040ms total)
T226A8 030:020 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 1C 0C  returns 0x02 (0000ms, 1040ms total)
T226A8 030:021 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 01 00  returns 0x02 (0000ms, 1040ms total)
T226A8 030:031 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 64  returns 0x01 (0000ms, 1040ms total)
T26738 030:032 JLINK_IsHalted()  returns FALSE (0001ms, 1041ms total)
T26738 030:134 JLINK_IsHalted()  returns FALSE (0000ms, 1040ms total)
T26738 030:235 JLINK_IsHalted()  returns FALSE (0000ms, 1040ms total)
T26738 030:336 JLINK_IsHalted()  returns FALSE (0000ms, 1040ms total)
T226A8 030:457 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1041ms total)
T226A8 030:467 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 1A 00 00 00  returns 0x04 (0000ms, 1041ms total)
T226A8 030:477 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 1041ms total)
T226A8 030:477 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 12  returns 0x01 (0001ms, 1042ms total)
T226A8 030:487 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 C8 41  returns 0x04 (0001ms, 1043ms total)
T226A8 030:497 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0000ms, 1043ms total)
T226A8 030:497 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 1A  returns 0x01 (0001ms, 1044ms total)
T226A8 030:507 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1045ms total)
T226A8 030:526 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1046ms total)
T226A8 030:527 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 29 64 03 00  returns 0x04 (0000ms, 1046ms total)
T226A8 030:527 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0001ms, 1047ms total)
T226A8 030:538 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0000ms, 1047ms total)
T226A8 030:566 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0000ms, 1047ms total)
T226A8 030:575 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 1C 0C  returns 0x02 (0001ms, 1048ms total)
T226A8 030:576 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0001ms, 1049ms total)
T226A8 030:586 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 64  returns 0x01 (0001ms, 1050ms total)
T26738 030:587 JLINK_IsHalted()  returns FALSE (0000ms, 1050ms total)
T26738 030:688 JLINK_IsHalted()  returns FALSE (0000ms, 1050ms total)
T26738 030:790 JLINK_IsHalted()  returns FALSE (0000ms, 1050ms total)
T26738 030:891 JLINK_IsHalted()  returns FALSE (0000ms, 1050ms total)
T226A8 031:011 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1051ms total)
T226A8 031:021 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 1A 00 00 00  returns 0x04 (0001ms, 1052ms total)
T226A8 031:031 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 1052ms total)
T226A8 031:031 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 12  returns 0x01 (0001ms, 1053ms total)
T226A8 031:041 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 C8 41  returns 0x04 (0001ms, 1054ms total)
T226A8 031:050 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1055ms total)
T226A8 031:051 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 1A  returns 0x01 (0001ms, 1056ms total)
T226A8 031:061 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1057ms total)
T226A8 031:080 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 1057ms total)
T226A8 031:080 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 29 64 03 00  returns 0x04 (0001ms, 1058ms total)
T226A8 031:081 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0001ms, 1059ms total)
T226A8 031:091 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0000ms, 1059ms total)
T226A8 031:118 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0000ms, 1059ms total)
T226A8 031:128 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 1C 0C  returns 0x02 (0001ms, 1060ms total)
T226A8 031:129 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0001ms, 1061ms total)
T226A8 031:139 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 64  returns 0x01 (0000ms, 1061ms total)
T26738 031:139 JLINK_IsHalted()  returns FALSE (0001ms, 1062ms total)
T26738 031:241 JLINK_IsHalted()  returns FALSE (0001ms, 1062ms total)
T26738 031:342 JLINK_IsHalted()  returns FALSE (0000ms, 1061ms total)
T26738 031:444 JLINK_IsHalted()  returns FALSE (0000ms, 1061ms total)
T226A8 031:564 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1062ms total)
T226A8 031:574 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 1B 00 00 00  returns 0x04 (0001ms, 1063ms total)
T226A8 031:584 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 1063ms total)
T226A8 031:585 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 13  returns 0x01 (0000ms, 1063ms total)
T226A8 031:594 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 D0 41  returns 0x04 (0001ms, 1064ms total)
T226A8 031:604 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1065ms total)
T226A8 031:605 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 1B  returns 0x01 (0000ms, 1065ms total)
T226A8 031:615 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 1065ms total)
T226A8 031:634 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1066ms total)
T226A8 031:635 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 29 64 03 00  returns 0x04 (0001ms, 1067ms total)
T226A8 031:636 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0000ms, 1067ms total)
T226A8 031:645 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 91 EC 03 00  returns 0x04 (0001ms, 1068ms total)
T226A8 031:673 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: F7 E9 03 00  returns 0x04 (0001ms, 1069ms total)
T226A8 031:683 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 1C 0C  returns 0x02 (0001ms, 1070ms total)
T226A8 031:684 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 03 00  returns 0x02 (0001ms, 1071ms total)
T226A8 031:694 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 64  returns 0x01 (0000ms, 1071ms total)
T26738 031:694 JLINK_IsHalted()  returns FALSE (0001ms, 1072ms total)
T26738 031:796 JLINK_IsHalted()  returns FALSE (0000ms, 1071ms total)
T26738 031:897 JLINK_IsHalted()  returns FALSE (0000ms, 1071ms total)
T26738 031:999 JLINK_IsHalted()  returns FALSE (0000ms, 1071ms total)
T226A8 032:119 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1072ms total)
T226A8 032:129 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 1B 00 00 00  returns 0x04 (0000ms, 1072ms total)
T226A8 032:138 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1073ms total)
T226A8 032:139 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 14  returns 0x01 (0001ms, 1074ms total)
T226A8 032:157 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 D8 41  returns 0x04 (0001ms, 1075ms total)
T226A8 032:176 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0000ms, 1075ms total)
T226A8 032:176 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 1C  returns 0x01 (0001ms, 1076ms total)
T226A8 032:195 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 1076ms total)
T226A8 032:213 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1077ms total)
T226A8 032:214 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 29 64 03 00  returns 0x04 (0001ms, 1078ms total)
T226A8 032:215 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0000ms, 1078ms total)
T226A8 032:233 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0001ms, 1079ms total)
T226A8 032:271 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0000ms, 1079ms total)
T226A8 032:289 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 1C 0C  returns 0x02 (0000ms, 1079ms total)
T226A8 032:289 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 04 00  returns 0x02 (0001ms, 1080ms total)
T226A8 032:308 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 64  returns 0x01 (0001ms, 1081ms total)
T26738 032:309 JLINK_IsHalted()  returns FALSE (0001ms, 1082ms total)
T26738 032:411 JLINK_IsHalted()  returns FALSE (0000ms, 1081ms total)
T26738 032:512 JLINK_IsHalted()  returns FALSE (0000ms, 1081ms total)
T226A8 032:631 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1082ms total)
T226A8 032:641 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 1C 00 00 00  returns 0x04 (0000ms, 1082ms total)
T226A8 032:650 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1083ms total)
T226A8 032:651 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 14  returns 0x01 (0001ms, 1084ms total)
T226A8 032:661 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 D8 41  returns 0x04 (0000ms, 1084ms total)
T226A8 032:670 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1085ms total)
T226A8 032:671 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 1C  returns 0x01 (0001ms, 1086ms total)
T226A8 032:681 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1087ms total)
T226A8 032:699 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1088ms total)
T226A8 032:700 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 29 64 03 00  returns 0x04 (0001ms, 1089ms total)
T226A8 032:701 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0000ms, 1089ms total)
T226A8 032:711 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0000ms, 1089ms total)
T226A8 032:737 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0001ms, 1090ms total)
T226A8 032:747 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 1C 0C  returns 0x02 (0000ms, 1090ms total)
T226A8 032:747 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 04 00  returns 0x02 (0001ms, 1091ms total)
T226A8 032:757 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 64  returns 0x01 (0001ms, 1092ms total)
T26738 032:758 JLINK_IsHalted()  returns FALSE (0000ms, 1092ms total)
T26738 032:859 JLINK_IsHalted()  returns FALSE (0000ms, 1092ms total)
T26738 032:960 JLINK_IsHalted()  returns FALSE (0000ms, 1092ms total)
T26738 033:062 JLINK_IsHalted()  returns FALSE (0000ms, 1092ms total)
T226A8 033:182 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1093ms total)
T226A8 033:192 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 1D 00 00 00  returns 0x04 (0001ms, 1094ms total)
T226A8 033:210 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1095ms total)
T226A8 033:211 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 15  returns 0x01 (0001ms, 1096ms total)
T226A8 033:220 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 E0 41  returns 0x04 (0001ms, 1097ms total)
T226A8 033:230 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1098ms total)
T226A8 033:231 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 1D  returns 0x01 (0001ms, 1099ms total)
T226A8 033:240 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1100ms total)
T226A8 033:259 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1101ms total)
T226A8 033:260 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 29 64 03 00  returns 0x04 (0001ms, 1102ms total)
T226A8 033:261 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0000ms, 1102ms total)
T226A8 033:271 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 91 EC 03 00  returns 0x04 (0000ms, 1102ms total)
T226A8 033:298 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: F7 E9 03 00  returns 0x04 (0001ms, 1103ms total)
T226A8 033:308 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 1C 0C  returns 0x02 (0001ms, 1104ms total)
T226A8 033:309 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 05 00  returns 0x02 (0000ms, 1104ms total)
T226A8 033:318 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 64  returns 0x01 (0000ms, 1104ms total)
T26738 033:318 JLINK_IsHalted()  returns FALSE (0001ms, 1105ms total)
T26738 033:420 JLINK_IsHalted()  returns FALSE (0000ms, 1104ms total)
T26738 033:522 JLINK_IsHalted()  returns FALSE (0000ms, 1104ms total)
T26738 033:623 JLINK_IsHalted()  returns FALSE (0000ms, 1104ms total)
T226A8 033:742 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1105ms total)
T226A8 033:751 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 1D 00 00 00  returns 0x04 (0001ms, 1106ms total)
T226A8 033:761 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 1106ms total)
T226A8 033:761 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 15  returns 0x01 (0001ms, 1107ms total)
T226A8 033:771 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 E0 41  returns 0x04 (0000ms, 1107ms total)
T226A8 033:780 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1108ms total)
T226A8 033:781 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 1D  returns 0x01 (0000ms, 1108ms total)
T226A8 033:790 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1109ms total)
T226A8 033:808 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1110ms total)
T226A8 033:809 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 29 64 03 00  returns 0x04 (0001ms, 1111ms total)
T226A8 033:810 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0001ms, 1112ms total)
T226A8 033:820 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 91 EC 03 00  returns 0x04 (0000ms, 1112ms total)
T226A8 033:848 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: F7 E9 03 00  returns 0x04 (0000ms, 1112ms total)
T226A8 033:857 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 1C 0C  returns 0x02 (0001ms, 1113ms total)
T226A8 033:858 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 05 00  returns 0x02 (0000ms, 1113ms total)
T226A8 033:867 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 64  returns 0x01 (0001ms, 1114ms total)
T26738 033:868 JLINK_IsHalted()  returns FALSE (0000ms, 1114ms total)
T26738 033:969 JLINK_IsHalted()  returns FALSE (0000ms, 1114ms total)
T26738 034:070 JLINK_IsHalted()  returns FALSE (0000ms, 1114ms total)
T26738 034:171 JLINK_IsHalted()  returns FALSE (0000ms, 1114ms total)
T226A8 034:293 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1115ms total)
T226A8 034:303 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 1E 00 00 00  returns 0x04 (0000ms, 1115ms total)
T226A8 034:312 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1116ms total)
T226A8 034:313 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 16  returns 0x01 (0000ms, 1116ms total)
T226A8 034:322 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 E8 41  returns 0x04 (0001ms, 1117ms total)
T226A8 034:332 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0000ms, 1117ms total)
T226A8 034:332 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 1E  returns 0x01 (0001ms, 1118ms total)
T226A8 034:342 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1119ms total)
T226A8 034:360 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1120ms total)
T226A8 034:361 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 29 64 03 00  returns 0x04 (0000ms, 1120ms total)
T226A8 034:361 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 9D EB 03 00  returns 0x04 (0001ms, 1121ms total)
T226A8 034:371 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: B9 EC 03 00  returns 0x04 (0000ms, 1121ms total)
T226A8 034:398 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 1F EA 03 00  returns 0x04 (0000ms, 1121ms total)
T226A8 034:407 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 20 0C  returns 0x02 (0001ms, 1122ms total)
T226A8 034:416 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 00 00  returns 0x02 (0001ms, 1123ms total)
T226A8 034:426 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 64  returns 0x01 (0000ms, 1123ms total)
T26738 034:426 JLINK_IsHalted()  returns FALSE (0001ms, 1124ms total)
T26738 034:528 JLINK_IsHalted()  returns FALSE (0000ms, 1123ms total)
T26738 034:630 JLINK_IsHalted()  returns FALSE (0000ms, 1123ms total)
T26738 034:731 JLINK_IsHalted()  returns FALSE (0000ms, 1123ms total)
T226A8 034:850 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1124ms total)
T226A8 034:860 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 1E 00 00 00  returns 0x04 (0000ms, 1124ms total)
T226A8 034:869 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 1124ms total)
T226A8 034:870 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 16  returns 0x01 (0000ms, 1124ms total)
T226A8 034:881 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 E8 41  returns 0x04 (0000ms, 1124ms total)
T226A8 034:890 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0000ms, 1124ms total)
T226A8 034:890 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 1E  returns 0x01 (0001ms, 1125ms total)
T226A8 034:900 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 1125ms total)
T226A8 034:918 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 1125ms total)
T226A8 034:918 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 29 64 03 00  returns 0x04 (0001ms, 1126ms total)
T226A8 034:919 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 9D EB 03 00  returns 0x04 (0001ms, 1127ms total)
T226A8 034:929 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: B9 EC 03 00  returns 0x04 (0001ms, 1128ms total)
T226A8 034:958 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 1F EA 03 00  returns 0x04 (0000ms, 1128ms total)
T226A8 034:967 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 20 0C  returns 0x02 (0001ms, 1129ms total)
T226A8 034:977 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 00 00  returns 0x02 (0000ms, 1129ms total)
T226A8 034:986 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 64  returns 0x01 (0001ms, 1130ms total)
T26738 034:987 JLINK_IsHalted()  returns FALSE (0001ms, 1131ms total)
T26738 035:088 JLINK_IsHalted()  returns FALSE (0000ms, 1130ms total)
T26738 035:189 JLINK_IsHalted()  returns FALSE (0000ms, 1130ms total)
T26738 035:290 JLINK_IsHalted()  returns FALSE (0000ms, 1130ms total)
T226A8 035:446 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1131ms total)
T226A8 035:457 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 1F 00 00 00  returns 0x04 (0001ms, 1132ms total)
T226A8 035:467 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 1132ms total)
T226A8 035:467 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 16  returns 0x01 (0001ms, 1133ms total)
T226A8 035:468 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 F0 41  returns 0x04 (0001ms, 1134ms total)
T226A8 035:478 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1135ms total)
T226A8 035:479 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 1F  returns 0x01 (0000ms, 1135ms total)
T226A8 035:489 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1136ms total)
T226A8 035:508 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1137ms total)
T226A8 035:509 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 15 1D 03 00  returns 0x04 (0000ms, 1137ms total)
T226A8 035:518 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 9D EB 03 00  returns 0x04 (0001ms, 1138ms total)
T226A8 035:519 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 31 1E 03 00  returns 0x04 (0001ms, 1139ms total)
T226A8 035:548 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 21 DF 00 00  returns 0x04 (0000ms, 1139ms total)
T226A8 035:557 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 20 0C  returns 0x02 (0001ms, 1140ms total)
T226A8 035:558 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 01 00  returns 0x02 (0001ms, 1141ms total)
T226A8 035:568 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 64  returns 0x01 (0001ms, 1142ms total)
T26738 035:569 JLINK_IsHalted()  returns FALSE (0000ms, 1142ms total)
T26738 035:670 JLINK_IsHalted()  returns FALSE (0000ms, 1142ms total)
T26738 035:772 JLINK_IsHalted()  returns FALSE (0000ms, 1142ms total)
T26738 035:873 JLINK_IsHalted()  returns FALSE (0000ms, 1142ms total)
T226A8 035:994 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1143ms total)
T226A8 036:004 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 1F 00 00 00  returns 0x04 (0000ms, 1143ms total)
T226A8 036:013 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1144ms total)
T226A8 036:014 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 16  returns 0x01 (0001ms, 1145ms total)
T226A8 036:015 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 F0 41  returns 0x04 (0000ms, 1145ms total)
T226A8 036:025 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0000ms, 1145ms total)
T226A8 036:025 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 1F  returns 0x01 (0001ms, 1146ms total)
T226A8 036:035 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1147ms total)
T226A8 036:054 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1148ms total)
T226A8 036:055 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 15 1D 03 00  returns 0x04 (0000ms, 1148ms total)
T226A8 036:064 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 9D EB 03 00  returns 0x04 (0001ms, 1149ms total)
T226A8 036:065 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 31 1E 03 00  returns 0x04 (0001ms, 1150ms total)
T226A8 036:093 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 21 DF 00 00  returns 0x04 (0001ms, 1151ms total)
T226A8 036:104 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 20 0C  returns 0x02 (0001ms, 1152ms total)
T226A8 036:105 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 01 00  returns 0x02 (0001ms, 1153ms total)
T226A8 036:115 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 64  returns 0x01 (0001ms, 1154ms total)
T26738 036:116 JLINK_IsHalted()  returns FALSE (0001ms, 1155ms total)
T26738 036:217 JLINK_IsHalted()  returns FALSE (0000ms, 1154ms total)
T26738 036:318 JLINK_IsHalted()  returns FALSE (0000ms, 1154ms total)
T26738 036:419 JLINK_IsHalted()  returns FALSE (0000ms, 1154ms total)
T226A8 036:541 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 1154ms total)
T226A8 036:551 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 20 00 00 00  returns 0x04 (0000ms, 1154ms total)
T226A8 036:560 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1155ms total)
T226A8 036:561 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 17  returns 0x01 (0000ms, 1155ms total)
T226A8 036:571 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 F8 41  returns 0x04 (0001ms, 1156ms total)
T226A8 036:581 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1157ms total)
T226A8 036:582 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 20  returns 0x01 (0000ms, 1157ms total)
T226A8 036:591 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1158ms total)
T226A8 036:610 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1159ms total)
T226A8 036:611 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 15 1D 03 00  returns 0x04 (0001ms, 1160ms total)
T226A8 036:612 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0000ms, 1160ms total)
T226A8 036:622 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0000ms, 1160ms total)
T226A8 036:650 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0000ms, 1160ms total)
T226A8 036:659 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 20 0C  returns 0x02 (0001ms, 1161ms total)
T226A8 036:660 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0001ms, 1162ms total)
T226A8 036:670 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 64  returns 0x01 (0000ms, 1162ms total)
T26738 036:670 JLINK_IsHalted()  returns FALSE (0001ms, 1163ms total)
T26738 036:772 JLINK_IsHalted()  returns FALSE (0000ms, 1162ms total)
T26738 036:873 JLINK_IsHalted()  returns FALSE (0000ms, 1162ms total)
T26738 036:975 JLINK_IsHalted()  returns FALSE (0000ms, 1162ms total)
T226A8 037:095 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1163ms total)
T226A8 037:105 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 20 00 00 00  returns 0x04 (0001ms, 1164ms total)
T226A8 037:115 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1165ms total)
T226A8 037:116 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 17  returns 0x01 (0001ms, 1166ms total)
T226A8 037:125 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 F8 41  returns 0x04 (0001ms, 1167ms total)
T226A8 037:135 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0000ms, 1167ms total)
T226A8 037:135 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 20  returns 0x01 (0001ms, 1168ms total)
T226A8 037:145 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1169ms total)
T226A8 037:166 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1170ms total)
T226A8 037:167 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: FB BC 03 00  returns 0x04 (0000ms, 1170ms total)
T226A8 037:176 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0001ms, 1171ms total)
T226A8 037:186 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 17 BE 03 00  returns 0x04 (0000ms, 1171ms total)
T226A8 037:221 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 21 DF 00 00  returns 0x04 (0001ms, 1172ms total)
T226A8 037:240 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 20 0C  returns 0x02 (0001ms, 1173ms total)
T226A8 037:241 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 03 00  returns 0x02 (0000ms, 1173ms total)
T226A8 037:259 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 64  returns 0x01 (0001ms, 1174ms total)
T26738 037:260 JLINK_IsHalted()  returns FALSE (0000ms, 1174ms total)
T26738 037:362 JLINK_IsHalted()  returns FALSE (0000ms, 1174ms total)
T26738 037:463 JLINK_IsHalted()  returns FALSE (0000ms, 1174ms total)
T26738 037:564 JLINK_IsHalted()  returns FALSE (0000ms, 1174ms total)
T226A8 037:685 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 1174ms total)
T226A8 037:694 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 21 00 00 00  returns 0x04 (0001ms, 1175ms total)
T226A8 037:703 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1176ms total)
T226A8 037:704 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 17  returns 0x01 (0001ms, 1177ms total)
T226A8 037:705 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 00 42  returns 0x04 (0000ms, 1177ms total)
T226A8 037:714 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0000ms, 1177ms total)
T226A8 037:714 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 21  returns 0x01 (0001ms, 1178ms total)
T226A8 037:724 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1179ms total)
T226A8 037:742 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1180ms total)
T226A8 037:743 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: FB BC 03 00  returns 0x04 (0000ms, 1180ms total)
T226A8 037:752 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0001ms, 1181ms total)
T226A8 037:753 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 17 BE 03 00  returns 0x04 (0000ms, 1181ms total)
T226A8 037:780 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 21 DF 00 00  returns 0x04 (0000ms, 1181ms total)
T226A8 037:789 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 20 0C  returns 0x02 (0001ms, 1182ms total)
T226A8 037:790 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 03 00  returns 0x02 (0000ms, 1182ms total)
T226A8 037:799 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 64  returns 0x01 (0001ms, 1183ms total)
T26738 037:800 JLINK_IsHalted()  returns FALSE (0000ms, 1183ms total)
T26738 037:902 JLINK_IsHalted()  returns FALSE (0000ms, 1183ms total)
T26738 038:004 JLINK_IsHalted()  returns FALSE (0000ms, 1183ms total)
T26738 038:105 JLINK_IsHalted()  returns FALSE (0000ms, 1183ms total)
T226A8 038:226 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 1183ms total)
T226A8 038:235 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 22 00 00 00  returns 0x04 (0001ms, 1184ms total)
T226A8 038:254 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1185ms total)
T226A8 038:255 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 17  returns 0x01 (0000ms, 1185ms total)
T226A8 038:255 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 04 42  returns 0x04 (0001ms, 1186ms total)
T226A8 038:274 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1187ms total)
T226A8 038:275 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 22  returns 0x01 (0000ms, 1187ms total)
T226A8 038:293 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1188ms total)
T226A8 038:312 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 1188ms total)
T226A8 038:312 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: CB F3 03 00  returns 0x04 (0001ms, 1189ms total)
T226A8 038:322 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0000ms, 1189ms total)
T226A8 038:322 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: E7 F4 03 00  returns 0x04 (0001ms, 1190ms total)
T226A8 038:350 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 39 DF 00 00  returns 0x04 (0001ms, 1191ms total)
T226A8 038:360 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 20 0C  returns 0x02 (0000ms, 1191ms total)
T226A8 038:360 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 04 00  returns 0x02 (0001ms, 1192ms total)
T226A8 038:370 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 64  returns 0x01 (0000ms, 1192ms total)
T26738 038:370 JLINK_IsHalted()  returns FALSE (0001ms, 1193ms total)
T26738 038:472 JLINK_IsHalted()  returns FALSE (0000ms, 1192ms total)
T26738 038:573 JLINK_IsHalted()  returns FALSE (0000ms, 1192ms total)
T26738 038:675 JLINK_IsHalted()  returns FALSE (0000ms, 1192ms total)
T226A8 038:794 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1193ms total)
T226A8 038:804 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 22 00 00 00  returns 0x04 (0000ms, 1193ms total)
T226A8 038:813 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 1193ms total)
T226A8 038:813 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 17  returns 0x01 (0001ms, 1194ms total)
T226A8 038:814 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 04 42  returns 0x04 (0001ms, 1195ms total)
T226A8 038:823 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1196ms total)
T226A8 038:824 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 22  returns 0x01 (0001ms, 1197ms total)
T226A8 038:833 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1198ms total)
T226A8 038:852 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1199ms total)
T226A8 038:853 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: CB F3 03 00  returns 0x04 (0000ms, 1199ms total)
T226A8 038:862 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0001ms, 1200ms total)
T226A8 038:863 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: E7 F4 03 00  returns 0x04 (0000ms, 1200ms total)
T226A8 038:890 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 39 DF 00 00  returns 0x04 (0000ms, 1200ms total)
T226A8 038:899 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 20 0C  returns 0x02 (0001ms, 1201ms total)
T226A8 038:900 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 04 00  returns 0x02 (0000ms, 1201ms total)
T226A8 038:909 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 64  returns 0x01 (0001ms, 1202ms total)
T26738 038:910 JLINK_IsHalted()  returns FALSE (0000ms, 1202ms total)
T26738 039:012 JLINK_IsHalted()  returns FALSE (0000ms, 1202ms total)
T26738 039:113 JLINK_IsHalted()  returns FALSE (0000ms, 1202ms total)
T26738 039:214 JLINK_IsHalted()  returns FALSE (0000ms, 1202ms total)
T226A8 039:333 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1203ms total)
T226A8 039:343 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 23 00 00 00  returns 0x04 (0001ms, 1204ms total)
T226A8 039:353 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1205ms total)
T226A8 039:354 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 18  returns 0x01 (0000ms, 1205ms total)
T226A8 039:363 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 08 42  returns 0x04 (0000ms, 1205ms total)
T226A8 039:373 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1206ms total)
T226A8 039:374 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 23  returns 0x01 (0000ms, 1206ms total)
T226A8 039:386 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1207ms total)
T226A8 039:408 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1208ms total)
T226A8 039:409 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: CB F3 03 00  returns 0x04 (0001ms, 1209ms total)
T226A8 039:410 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0000ms, 1209ms total)
T226A8 039:420 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 91 EC 03 00  returns 0x04 (0000ms, 1209ms total)
T226A8 039:447 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: F7 E9 03 00  returns 0x04 (0001ms, 1210ms total)
T226A8 039:457 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 20 0C  returns 0x02 (0001ms, 1211ms total)
T226A8 039:458 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 05 00  returns 0x02 (0001ms, 1212ms total)
T226A8 039:467 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 64  returns 0x01 (0001ms, 1213ms total)
T26738 039:468 JLINK_IsHalted()  returns FALSE (0001ms, 1214ms total)
T26738 039:569 JLINK_IsHalted()  returns FALSE (0000ms, 1213ms total)
T26738 039:670 JLINK_IsHalted()  returns FALSE (0001ms, 1214ms total)
T26738 039:772 JLINK_IsHalted()  returns FALSE (0000ms, 1213ms total)
T226A8 039:891 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1214ms total)
T226A8 039:901 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 23 00 00 00  returns 0x04 (0000ms, 1214ms total)
T226A8 039:910 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1215ms total)
T226A8 039:911 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 18  returns 0x01 (0000ms, 1215ms total)
T226A8 039:920 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 08 42  returns 0x04 (0001ms, 1216ms total)
T226A8 039:930 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0000ms, 1216ms total)
T226A8 039:930 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 23  returns 0x01 (0001ms, 1217ms total)
T226A8 039:940 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1218ms total)
T226A8 039:959 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1219ms total)
T226A8 039:960 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: CB F3 03 00  returns 0x04 (0001ms, 1220ms total)
T226A8 039:961 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0000ms, 1220ms total)
T226A8 039:970 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 91 EC 03 00  returns 0x04 (0001ms, 1221ms total)
T226A8 039:997 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: F7 E9 03 00  returns 0x04 (0001ms, 1222ms total)
T226A8 040:006 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 20 0C  returns 0x02 (0001ms, 1223ms total)
T226A8 040:007 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 05 00  returns 0x02 (0001ms, 1224ms total)
T226A8 040:016 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 64  returns 0x01 (0001ms, 1225ms total)
T26738 040:017 JLINK_IsHalted()  returns FALSE (0001ms, 1226ms total)
T26738 040:119 JLINK_IsHalted()  returns FALSE (0000ms, 1225ms total)
T26738 040:221 JLINK_IsHalted()  returns FALSE (0000ms, 1225ms total)
T26738 040:322 JLINK_IsHalted()  returns FALSE (0000ms, 1225ms total)
T226A8 040:442 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1226ms total)
T226A8 040:452 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 24 00 00 00  returns 0x04 (0001ms, 1227ms total)
T226A8 040:463 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1228ms total)
T226A8 040:464 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 18  returns 0x01 (0000ms, 1228ms total)
T226A8 040:464 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 0C 42  returns 0x04 (0001ms, 1229ms total)
T226A8 040:475 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0000ms, 1229ms total)
T226A8 040:475 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 24  returns 0x01 (0001ms, 1230ms total)
T226A8 040:485 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1231ms total)
T226A8 040:504 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1232ms total)
T226A8 040:505 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 15 6B 03 00  returns 0x04 (0000ms, 1232ms total)
T226A8 040:516 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0001ms, 1233ms total)
T226A8 040:517 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 31 6C 03 00  returns 0x04 (0000ms, 1233ms total)
T226A8 040:544 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 49 DF 00 00  returns 0x04 (0001ms, 1234ms total)
T226A8 040:554 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 1E 0C  returns 0x02 (0001ms, 1235ms total)
T226A8 040:564 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 00 00  returns 0x02 (0001ms, 1236ms total)
T226A8 040:574 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 64  returns 0x01 (0001ms, 1237ms total)
T26738 040:575 JLINK_IsHalted()  returns FALSE (0000ms, 1237ms total)
T26738 040:676 JLINK_IsHalted()  returns FALSE (0000ms, 1237ms total)
T26738 040:778 JLINK_IsHalted()  returns FALSE (0000ms, 1237ms total)
T26738 040:879 JLINK_IsHalted()  returns FALSE (0000ms, 1237ms total)
T226A8 040:999 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1238ms total)
T226A8 041:008 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 24 00 00 00  returns 0x04 (0001ms, 1239ms total)
T226A8 041:018 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1240ms total)
T226A8 041:019 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 18  returns 0x01 (0001ms, 1241ms total)
T226A8 041:020 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 0C 42  returns 0x04 (0000ms, 1241ms total)
T226A8 041:029 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1242ms total)
T226A8 041:030 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 24  returns 0x01 (0001ms, 1243ms total)
T226A8 041:039 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1244ms total)
T226A8 041:058 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1245ms total)
T226A8 041:059 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 15 6B 03 00  returns 0x04 (0000ms, 1245ms total)
T226A8 041:068 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0001ms, 1246ms total)
T226A8 041:069 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 31 6C 03 00  returns 0x04 (0000ms, 1246ms total)
T226A8 041:096 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 49 DF 00 00  returns 0x04 (0001ms, 1247ms total)
T226A8 041:106 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 1E 0C  returns 0x02 (0000ms, 1247ms total)
T226A8 041:115 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 00 00  returns 0x02 (0001ms, 1249ms total)
T226A8 041:125 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 64  returns 0x01 (0001ms, 1250ms total)
T26738 041:126 JLINK_IsHalted()  returns FALSE (0000ms, 1250ms total)
T26738 041:227 JLINK_IsHalted()  returns FALSE (0000ms, 1250ms total)
T26738 041:329 JLINK_IsHalted()  returns FALSE (0000ms, 1250ms total)
T26738 041:430 JLINK_IsHalted()  returns FALSE (0000ms, 1250ms total)
T226A8 041:550 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1251ms total)
T226A8 041:561 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 25 00 00 00  returns 0x04 (0000ms, 1251ms total)
T226A8 041:570 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1252ms total)
T226A8 041:571 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 19  returns 0x01 (0001ms, 1253ms total)
T226A8 041:581 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 10 42  returns 0x04 (0001ms, 1254ms total)
T226A8 041:591 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1255ms total)
T226A8 041:592 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 25  returns 0x01 (0000ms, 1255ms total)
T226A8 041:601 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1256ms total)
T226A8 041:620 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1257ms total)
T226A8 041:621 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 15 6B 03 00  returns 0x04 (0001ms, 1258ms total)
T226A8 041:622 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0000ms, 1258ms total)
T226A8 041:622 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 91 EC 03 00  returns 0x04 (0001ms, 1259ms total)
T226A8 041:651 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: F7 E9 03 00  returns 0x04 (0001ms, 1260ms total)
T226A8 041:661 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 1E 0C  returns 0x02 (0001ms, 1261ms total)
T226A8 041:662 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 01 00  returns 0x02 (0000ms, 1261ms total)
T226A8 041:671 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 64  returns 0x01 (0001ms, 1262ms total)
T26738 041:672 JLINK_IsHalted()  returns FALSE (0001ms, 1263ms total)
T26738 041:774 JLINK_IsHalted()  returns FALSE (0000ms, 1262ms total)
T26738 041:875 JLINK_IsHalted()  returns FALSE (0000ms, 1262ms total)
T26738 041:976 JLINK_IsHalted()  returns FALSE (0000ms, 1262ms total)
T226A8 042:097 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 1262ms total)
T226A8 042:106 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 25 00 00 00  returns 0x04 (0001ms, 1263ms total)
T226A8 042:116 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1264ms total)
T226A8 042:117 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 19  returns 0x01 (0000ms, 1264ms total)
T226A8 042:127 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 10 42  returns 0x04 (0000ms, 1264ms total)
T226A8 042:136 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1265ms total)
T226A8 042:137 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 25  returns 0x01 (0000ms, 1265ms total)
T226A8 042:146 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1266ms total)
T226A8 042:165 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1267ms total)
T226A8 042:166 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 15 6B 03 00  returns 0x04 (0000ms, 1267ms total)
T226A8 042:166 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0001ms, 1268ms total)
T226A8 042:176 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0001ms, 1269ms total)
T226A8 042:212 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0001ms, 1270ms total)
T226A8 042:230 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 1E 0C  returns 0x02 (0001ms, 1271ms total)
T226A8 042:231 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0001ms, 1272ms total)
T226A8 042:249 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 64  returns 0x01 (0001ms, 1273ms total)
T26738 042:250 JLINK_IsHalted()  returns FALSE (0001ms, 1274ms total)
T26738 042:351 JLINK_IsHalted()  returns FALSE (0000ms, 1273ms total)
T26738 042:452 JLINK_IsHalted()  returns FALSE (0000ms, 1273ms total)
T26738 042:554 JLINK_IsHalted()  returns FALSE (0000ms, 1273ms total)
T226A8 042:673 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1274ms total)
T226A8 042:683 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 26 00 00 00  returns 0x04 (0000ms, 1274ms total)
T226A8 042:692 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1275ms total)
T226A8 042:693 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 1A  returns 0x01 (0000ms, 1275ms total)
T226A8 042:702 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 14 42  returns 0x04 (0001ms, 1276ms total)
T226A8 042:711 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1277ms total)
T226A8 042:712 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 26  returns 0x01 (0000ms, 1277ms total)
T226A8 042:721 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1278ms total)
T226A8 042:739 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1279ms total)
T226A8 042:740 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 15 6B 03 00  returns 0x04 (0001ms, 1280ms total)
T226A8 042:741 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0000ms, 1280ms total)
T226A8 042:750 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0001ms, 1281ms total)
T226A8 042:777 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0001ms, 1282ms total)
T226A8 042:787 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 1E 0C  returns 0x02 (0000ms, 1282ms total)
T226A8 042:787 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0001ms, 1283ms total)
T226A8 042:797 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 64  returns 0x01 (0000ms, 1283ms total)
T26738 042:797 JLINK_IsHalted()  returns FALSE (0001ms, 1284ms total)
T26738 042:900 JLINK_IsHalted()  returns FALSE (0000ms, 1283ms total)
T26738 043:001 JLINK_IsHalted()  returns FALSE (0001ms, 1284ms total)
T26738 043:103 JLINK_IsHalted()  returns FALSE (0000ms, 1283ms total)
T226A8 043:224 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1284ms total)
T226A8 043:233 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 27 00 00 00  returns 0x04 (0001ms, 1285ms total)
T226A8 043:252 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 1285ms total)
T226A8 043:252 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 1B  returns 0x01 (0001ms, 1286ms total)
T226A8 043:271 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 18 42  returns 0x04 (0000ms, 1286ms total)
T226A8 043:289 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1287ms total)
T226A8 043:290 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 27  returns 0x01 (0000ms, 1287ms total)
T226A8 043:308 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 1287ms total)
T226A8 043:326 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1288ms total)
T226A8 043:327 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 15 6B 03 00  returns 0x04 (0000ms, 1288ms total)
T226A8 043:327 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: F9 F8 03 00  returns 0x04 (0001ms, 1289ms total)
T226A8 043:337 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 15 FA 03 00  returns 0x04 (0001ms, 1290ms total)
T226A8 043:364 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 79 F7 03 00  returns 0x04 (0001ms, 1291ms total)
T226A8 043:373 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 1E 0C  returns 0x02 (0001ms, 1292ms total)
T226A8 043:374 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 03 00  returns 0x02 (0001ms, 1293ms total)
T226A8 043:384 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 64  returns 0x01 (0001ms, 1294ms total)
T26738 043:385 JLINK_IsHalted()  returns FALSE (0000ms, 1294ms total)
T26738 043:486 JLINK_IsHalted()  returns FALSE (0000ms, 1294ms total)
T26738 043:587 JLINK_IsHalted()  returns FALSE (0000ms, 1294ms total)
T26738 043:689 JLINK_IsHalted()  returns FALSE (0000ms, 1294ms total)
T226A8 043:808 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1295ms total)
T226A8 043:818 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 27 00 00 00  returns 0x04 (0001ms, 1296ms total)
T226A8 043:827 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1297ms total)
T226A8 043:828 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 1B  returns 0x01 (0000ms, 1297ms total)
T226A8 043:838 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 18 42  returns 0x04 (0001ms, 1298ms total)
T226A8 043:848 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0000ms, 1298ms total)
T226A8 043:848 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 27  returns 0x01 (0001ms, 1299ms total)
T226A8 043:858 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1300ms total)
T226A8 043:876 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1301ms total)
T226A8 043:877 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 15 6B 03 00  returns 0x04 (0000ms, 1301ms total)
T226A8 043:877 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: F9 F8 03 00  returns 0x04 (0001ms, 1302ms total)
T226A8 043:887 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 15 FA 03 00  returns 0x04 (0000ms, 1302ms total)
T226A8 043:913 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 79 F7 03 00  returns 0x04 (0001ms, 1303ms total)
T226A8 043:922 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 1E 0C  returns 0x02 (0001ms, 1304ms total)
T226A8 043:923 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 03 00  returns 0x02 (0001ms, 1305ms total)
T226A8 043:932 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 64  returns 0x01 (0001ms, 1306ms total)
T26738 043:933 JLINK_IsHalted()  returns FALSE (0001ms, 1307ms total)
T26738 044:035 JLINK_IsHalted()  returns FALSE (0000ms, 1306ms total)
T26738 044:136 JLINK_IsHalted()  returns FALSE (0000ms, 1306ms total)
T26738 044:238 JLINK_IsHalted()  returns FALSE (0000ms, 1306ms total)
T226A8 044:373 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1307ms total)
T226A8 044:384 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 28 00 00 00  returns 0x04 (0000ms, 1307ms total)
T226A8 044:394 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 1307ms total)
T226A8 044:394 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 1C  returns 0x01 (0001ms, 1308ms total)
T226A8 044:405 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 1C 42  returns 0x04 (0000ms, 1308ms total)
T226A8 044:414 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1309ms total)
T226A8 044:415 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 28  returns 0x01 (0001ms, 1310ms total)
T226A8 044:426 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 1310ms total)
T226A8 044:444 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1311ms total)
T226A8 044:445 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 15 6B 03 00  returns 0x04 (0001ms, 1312ms total)
T226A8 044:446 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0000ms, 1312ms total)
T226A8 044:456 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0000ms, 1312ms total)
T226A8 044:483 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0001ms, 1313ms total)
T226A8 044:493 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 1E 0C  returns 0x02 (0001ms, 1314ms total)
T226A8 044:494 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 04 00  returns 0x02 (0000ms, 1314ms total)
T226A8 044:503 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 64  returns 0x01 (0001ms, 1315ms total)
T26738 044:504 JLINK_IsHalted()  returns FALSE (0001ms, 1316ms total)
T26738 044:607 JLINK_IsHalted()  returns FALSE (0000ms, 1315ms total)
T26738 044:708 JLINK_IsHalted()  returns FALSE (0000ms, 1315ms total)
T26738 044:809 JLINK_IsHalted()  returns FALSE (0000ms, 1315ms total)
T226A8 044:929 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1316ms total)
T226A8 044:939 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 28 00 00 00  returns 0x04 (0001ms, 1317ms total)
T226A8 044:949 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1318ms total)
T226A8 044:950 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 1C  returns 0x01 (0000ms, 1318ms total)
T226A8 044:959 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 1C 42  returns 0x04 (0001ms, 1319ms total)
T226A8 044:969 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1320ms total)
T226A8 044:970 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 28  returns 0x01 (0000ms, 1320ms total)
T226A8 044:979 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1321ms total)
T226A8 044:998 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1322ms total)
T226A8 044:999 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 15 6B 03 00  returns 0x04 (0001ms, 1323ms total)
T226A8 045:000 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0000ms, 1323ms total)
T226A8 045:010 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0000ms, 1323ms total)
T226A8 045:038 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0000ms, 1323ms total)
T226A8 045:047 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 1E 0C  returns 0x02 (0001ms, 1324ms total)
T226A8 045:048 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 04 00  returns 0x02 (0000ms, 1324ms total)
T226A8 045:058 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 64  returns 0x01 (0000ms, 1324ms total)
T26738 045:058 JLINK_IsHalted()  returns FALSE (0001ms, 1325ms total)
T26738 045:160 JLINK_IsHalted()  returns FALSE (0000ms, 1324ms total)
T26738 045:261 JLINK_IsHalted()  returns FALSE (0000ms, 1324ms total)
T26738 045:363 JLINK_IsHalted()  returns FALSE (0000ms, 1324ms total)
T226A8 045:483 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 1324ms total)
T226A8 045:493 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 29 00 00 00  returns 0x04 (0000ms, 1324ms total)
T226A8 045:502 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1325ms total)
T226A8 045:503 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 1D  returns 0x01 (0001ms, 1326ms total)
T226A8 045:512 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 20 42  returns 0x04 (0001ms, 1327ms total)
T226A8 045:522 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1328ms total)
T226A8 045:523 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 29  returns 0x01 (0001ms, 1329ms total)
T226A8 045:533 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1330ms total)
T226A8 045:553 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1331ms total)
T226A8 045:554 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 15 6B 03 00  returns 0x04 (0000ms, 1331ms total)
T226A8 045:554 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0001ms, 1332ms total)
T226A8 045:564 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 91 EC 03 00  returns 0x04 (0001ms, 1333ms total)
T226A8 045:592 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: F7 E9 03 00  returns 0x04 (0001ms, 1334ms total)
T226A8 045:602 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 1E 0C  returns 0x02 (0001ms, 1335ms total)
T226A8 045:603 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 05 00  returns 0x02 (0000ms, 1335ms total)
T226A8 045:613 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 64  returns 0x01 (0000ms, 1335ms total)
T26738 045:613 JLINK_IsHalted()  returns FALSE (0001ms, 1336ms total)
T26738 045:716 JLINK_IsHalted()  returns FALSE (0000ms, 1335ms total)
T26738 045:817 JLINK_IsHalted()  returns FALSE (0000ms, 1335ms total)
T26738 045:918 JLINK_IsHalted()  returns FALSE (0000ms, 1335ms total)
T226A8 046:038 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 1335ms total)
T226A8 046:047 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 29 00 00 00  returns 0x04 (0001ms, 1336ms total)
T226A8 046:057 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1337ms total)
T226A8 046:058 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 1D  returns 0x01 (0001ms, 1338ms total)
T226A8 046:067 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 20 42  returns 0x04 (0001ms, 1339ms total)
T226A8 046:077 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1340ms total)
T226A8 046:078 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 29  returns 0x01 (0001ms, 1341ms total)
T226A8 046:088 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1342ms total)
T226A8 046:107 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1343ms total)
T226A8 046:108 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 15 6B 03 00  returns 0x04 (0000ms, 1343ms total)
T226A8 046:108 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0001ms, 1344ms total)
T226A8 046:118 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 91 EC 03 00  returns 0x04 (0001ms, 1345ms total)
T226A8 046:147 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 39 DF 00 00  returns 0x04 (0001ms, 1346ms total)
T226A8 046:167 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: B2 0B  returns 0x02 (0000ms, 1346ms total)
T226A8 046:177 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 00 00  returns 0x02 (0000ms, 1346ms total)
T226A8 046:196 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 40  returns 0x01 (0000ms, 1346ms total)
T26738 046:206 JLINK_IsHalted()  returns FALSE (0000ms, 1346ms total)
T26738 046:307 JLINK_IsHalted()  returns FALSE (0000ms, 1346ms total)
T26738 046:409 JLINK_IsHalted()  returns FALSE (0000ms, 1346ms total)
T26738 046:510 JLINK_IsHalted()  returns FALSE (0000ms, 1346ms total)
T226A8 046:630 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 1346ms total)
T226A8 046:640 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 2A 00 00 00  returns 0x04 (0000ms, 1346ms total)
T226A8 046:649 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1347ms total)
T226A8 046:650 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 1D  returns 0x01 (0001ms, 1348ms total)
T226A8 046:651 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 24 42  returns 0x04 (0000ms, 1348ms total)
T226A8 046:662 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0000ms, 1348ms total)
T226A8 046:662 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 2A  returns 0x01 (0001ms, 1349ms total)
T226A8 046:672 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1350ms total)
T226A8 046:691 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1351ms total)
T226A8 046:692 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 6D 3B 04 00  returns 0x04 (0001ms, 1352ms total)
T226A8 046:702 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0001ms, 1353ms total)
T226A8 046:703 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 89 3C 04 00  returns 0x04 (0000ms, 1353ms total)
T226A8 046:731 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 39 DF 00 00  returns 0x04 (0000ms, 1353ms total)
T226A8 046:740 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: B2 0B  returns 0x02 (0001ms, 1354ms total)
T226A8 046:751 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 00 00  returns 0x02 (0001ms, 1355ms total)
T226A8 046:761 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 40  returns 0x01 (0001ms, 1356ms total)
T26738 046:771 JLINK_IsHalted()  returns FALSE (0000ms, 1356ms total)
T26738 046:872 JLINK_IsHalted()  returns FALSE (0000ms, 1356ms total)
T26738 046:973 JLINK_IsHalted()  returns FALSE (0000ms, 1356ms total)
T26738 047:074 JLINK_IsHalted()  returns FALSE (0000ms, 1356ms total)
T226A8 047:195 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1357ms total)
T226A8 047:205 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 2B 00 00 00  returns 0x04 (0001ms, 1358ms total)
T226A8 047:223 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1359ms total)
T226A8 047:224 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 1E  returns 0x01 (0000ms, 1359ms total)
T226A8 047:233 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 28 42  returns 0x04 (0001ms, 1360ms total)
T226A8 047:251 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1361ms total)
T226A8 047:252 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 2B  returns 0x01 (0001ms, 1362ms total)
T226A8 047:271 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1363ms total)
T226A8 047:290 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1364ms total)
T226A8 047:291 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 6D 3B 04 00  returns 0x04 (0001ms, 1365ms total)
T226A8 047:301 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0000ms, 1365ms total)
T226A8 047:301 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 91 EC 03 00  returns 0x04 (0001ms, 1366ms total)
T226A8 047:337 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: F7 E9 03 00  returns 0x04 (0001ms, 1367ms total)
T226A8 047:347 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: B2 0B  returns 0x02 (0000ms, 1367ms total)
T226A8 047:347 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 01 00  returns 0x02 (0001ms, 1368ms total)
T226A8 047:357 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 40  returns 0x01 (0000ms, 1368ms total)
T26738 047:357 JLINK_IsHalted()  returns FALSE (0001ms, 1369ms total)
T26738 047:460 JLINK_IsHalted()  returns FALSE (0000ms, 1368ms total)
T26738 047:561 JLINK_IsHalted()  returns FALSE (0000ms, 1368ms total)
T26738 047:662 JLINK_IsHalted()  returns FALSE (0001ms, 1369ms total)
T226A8 047:784 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1369ms total)
T226A8 047:794 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 2B 00 00 00  returns 0x04 (0001ms, 1370ms total)
T226A8 047:804 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 1370ms total)
T226A8 047:804 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 1E  returns 0x01 (0001ms, 1371ms total)
T226A8 047:814 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 28 42  returns 0x04 (0000ms, 1371ms total)
T226A8 047:823 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1372ms total)
T226A8 047:824 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 2B  returns 0x01 (0001ms, 1373ms total)
T226A8 047:833 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1374ms total)
T226A8 047:852 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 1374ms total)
T226A8 047:852 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 6D 3B 04 00  returns 0x04 (0001ms, 1375ms total)
T226A8 047:853 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0001ms, 1376ms total)
T226A8 047:854 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 91 EC 03 00  returns 0x04 (0000ms, 1376ms total)
T226A8 047:882 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: F7 E9 03 00  returns 0x04 (0001ms, 1377ms total)
T226A8 047:891 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: B2 0B  returns 0x02 (0001ms, 1378ms total)
T226A8 047:892 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 01 00  returns 0x02 (0001ms, 1379ms total)
T226A8 047:901 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 40  returns 0x01 (0001ms, 1380ms total)
T26738 047:902 JLINK_IsHalted()  returns FALSE (0001ms, 1381ms total)
T26738 048:004 JLINK_IsHalted()  returns FALSE (0000ms, 1380ms total)
T26738 048:105 JLINK_IsHalted()  returns FALSE (0000ms, 1380ms total)
T26738 048:207 JLINK_IsHalted()  returns FALSE (0000ms, 1380ms total)
T226A8 048:326 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1381ms total)
T226A8 048:336 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 2C 00 00 00  returns 0x04 (0001ms, 1382ms total)
T226A8 048:346 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1383ms total)
T226A8 048:347 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 1F  returns 0x01 (0000ms, 1383ms total)
T226A8 048:356 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 2C 42  returns 0x04 (0001ms, 1384ms total)
T226A8 048:365 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1385ms total)
T226A8 048:366 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 2C  returns 0x01 (0000ms, 1385ms total)
T226A8 048:375 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1386ms total)
T226A8 048:393 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1387ms total)
T226A8 048:394 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 6D 3B 04 00  returns 0x04 (0001ms, 1388ms total)
T226A8 048:395 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0000ms, 1388ms total)
T226A8 048:404 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0001ms, 1389ms total)
T226A8 048:431 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0001ms, 1390ms total)
T226A8 048:441 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: B2 0B  returns 0x02 (0000ms, 1390ms total)
T226A8 048:441 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0001ms, 1391ms total)
T226A8 048:451 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 40  returns 0x01 (0000ms, 1391ms total)
T26738 048:451 JLINK_IsHalted()  returns FALSE (0001ms, 1392ms total)
T26738 048:554 JLINK_IsHalted()  returns FALSE (0000ms, 1391ms total)
T26738 048:655 JLINK_IsHalted()  returns FALSE (0000ms, 1391ms total)
T26738 048:756 JLINK_IsHalted()  returns FALSE (0000ms, 1391ms total)
T226A8 048:876 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 1391ms total)
T226A8 048:885 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 2C 00 00 00  returns 0x04 (0001ms, 1392ms total)
T226A8 048:894 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1393ms total)
T226A8 048:895 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 1F  returns 0x01 (0001ms, 1394ms total)
T226A8 048:906 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 2C 42  returns 0x04 (0000ms, 1394ms total)
T226A8 048:915 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1395ms total)
T226A8 048:916 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 2C  returns 0x01 (0000ms, 1395ms total)
T226A8 048:925 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1396ms total)
T226A8 048:944 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 1396ms total)
T226A8 048:944 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 6D 3B 04 00  returns 0x04 (0001ms, 1397ms total)
T226A8 048:945 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0001ms, 1398ms total)
T226A8 048:954 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0001ms, 1399ms total)
T226A8 048:981 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0001ms, 1400ms total)
T226A8 048:991 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: B2 0B  returns 0x02 (0000ms, 1400ms total)
T226A8 048:991 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0001ms, 1401ms total)
T226A8 049:001 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 40  returns 0x01 (0000ms, 1401ms total)
T26738 049:001 JLINK_IsHalted()  returns FALSE (0001ms, 1402ms total)
T26738 049:103 JLINK_IsHalted()  returns FALSE (0000ms, 1401ms total)
T26738 049:204 JLINK_IsHalted()  returns FALSE (0000ms, 1401ms total)
T26738 049:306 JLINK_IsHalted()  returns FALSE (0000ms, 1401ms total)
T226A8 049:426 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 1401ms total)
T226A8 049:435 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 2D 00 00 00  returns 0x04 (0001ms, 1402ms total)
T226A8 049:445 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1403ms total)
T226A8 049:446 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 20  returns 0x01 (0000ms, 1403ms total)
T226A8 049:455 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 30 42  returns 0x04 (0001ms, 1404ms total)
T226A8 049:467 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1405ms total)
T226A8 049:468 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 2D  returns 0x01 (0001ms, 1406ms total)
T226A8 049:478 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 1406ms total)
T226A8 049:497 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 1406ms total)
T226A8 049:497 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 6D 3B 04 00  returns 0x04 (0001ms, 1407ms total)
T226A8 049:498 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 7F 46 02 00  returns 0x04 (0001ms, 1408ms total)
T226A8 049:508 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 9B 47 02 00  returns 0x04 (0001ms, 1409ms total)
T226A8 049:535 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 85 45 02 00  returns 0x04 (0001ms, 1410ms total)
T226A8 049:544 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: B2 0B  returns 0x02 (0001ms, 1411ms total)
T226A8 049:545 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 03 00  returns 0x02 (0001ms, 1412ms total)
T226A8 049:555 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 40  returns 0x01 (0001ms, 1413ms total)
T26738 049:556 JLINK_IsHalted()  returns FALSE (0000ms, 1413ms total)
T26738 049:657 JLINK_IsHalted()  returns FALSE (0000ms, 1413ms total)
T26738 049:759 JLINK_IsHalted()  returns FALSE (0000ms, 1413ms total)
T26738 049:860 JLINK_IsHalted()  returns FALSE (0000ms, 1413ms total)
T226A8 049:979 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1414ms total)
T226A8 049:989 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 2D 00 00 00  returns 0x04 (0000ms, 1414ms total)
T226A8 049:998 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1415ms total)
T226A8 049:999 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 20  returns 0x01 (0000ms, 1415ms total)
T226A8 050:008 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 30 42  returns 0x04 (0001ms, 1416ms total)
T226A8 050:017 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1417ms total)
T226A8 050:018 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 2D  returns 0x01 (0001ms, 1418ms total)
T226A8 050:027 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1419ms total)
T226A8 050:046 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1420ms total)
T226A8 050:047 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 6D 3B 04 00  returns 0x04 (0000ms, 1420ms total)
T226A8 050:047 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 7F 46 02 00  returns 0x04 (0001ms, 1421ms total)
T226A8 050:057 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 9B 47 02 00  returns 0x04 (0001ms, 1422ms total)
T226A8 050:084 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 85 45 02 00  returns 0x04 (0001ms, 1423ms total)
T226A8 050:094 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: B2 0B  returns 0x02 (0000ms, 1423ms total)
T226A8 050:094 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 03 00  returns 0x02 (0001ms, 1424ms total)
T226A8 050:104 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 40  returns 0x01 (0000ms, 1424ms total)
T26738 050:104 JLINK_IsHalted()  returns FALSE (0001ms, 1425ms total)
T26738 050:206 JLINK_IsHalted()  returns FALSE (0000ms, 1424ms total)
T26738 050:307 JLINK_IsHalted()  returns FALSE (0000ms, 1424ms total)
T26738 050:408 JLINK_IsHalted()  returns FALSE (0000ms, 1424ms total)
T226A8 050:529 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1425ms total)
T226A8 050:539 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 2E 00 00 00  returns 0x04 (0001ms, 1426ms total)
T226A8 050:549 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 1426ms total)
T226A8 050:549 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 20  returns 0x01 (0001ms, 1427ms total)
T226A8 050:550 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 34 42  returns 0x04 (0001ms, 1428ms total)
T226A8 050:560 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1429ms total)
T226A8 050:561 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 2E  returns 0x01 (0001ms, 1430ms total)
T226A8 050:571 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 1430ms total)
T226A8 050:590 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 1430ms total)
T226A8 050:590 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 8B A5 03 00  returns 0x04 (0001ms, 1431ms total)
T226A8 050:600 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 7F 46 02 00  returns 0x04 (0001ms, 1432ms total)
T226A8 050:601 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A7 A6 03 00  returns 0x04 (0001ms, 1433ms total)
T226A8 050:629 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 39 DF 00 00  returns 0x04 (0001ms, 1434ms total)
T226A8 050:639 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: B2 0B  returns 0x02 (0001ms, 1435ms total)
T226A8 050:640 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 04 00  returns 0x02 (0000ms, 1435ms total)
T226A8 050:650 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 40  returns 0x01 (0000ms, 1435ms total)
T26738 050:650 JLINK_IsHalted()  returns FALSE (0001ms, 1436ms total)
T26738 050:752 JLINK_IsHalted()  returns FALSE (0000ms, 1435ms total)
T26738 050:854 JLINK_IsHalted()  returns FALSE (0000ms, 1435ms total)
T26738 050:955 JLINK_IsHalted()  returns FALSE (0000ms, 1435ms total)
T226A8 051:075 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1436ms total)
T226A8 051:085 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 2E 00 00 00  returns 0x04 (0000ms, 1436ms total)
T226A8 051:094 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1437ms total)
T226A8 051:095 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 20  returns 0x01 (0001ms, 1438ms total)
T226A8 051:096 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 34 42  returns 0x04 (0000ms, 1438ms total)
T226A8 051:105 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1439ms total)
T226A8 051:106 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 2E  returns 0x01 (0001ms, 1440ms total)
T226A8 051:116 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1441ms total)
T226A8 051:136 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1442ms total)
T226A8 051:137 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 8B A5 03 00  returns 0x04 (0000ms, 1442ms total)
T226A8 051:147 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0001ms, 1443ms total)
T226A8 051:157 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 91 EC 03 00  returns 0x04 (0001ms, 1444ms total)
T226A8 051:194 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: F7 E9 03 00  returns 0x04 (0001ms, 1445ms total)
T226A8 051:213 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: B2 0B  returns 0x02 (0001ms, 1446ms total)
T226A8 051:214 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 05 00  returns 0x02 (0000ms, 1446ms total)
T226A8 051:232 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 40  returns 0x01 (0001ms, 1447ms total)
T26738 051:233 JLINK_IsHalted()  returns FALSE (0001ms, 1448ms total)
T26738 051:334 JLINK_IsHalted()  returns FALSE (0000ms, 1447ms total)
T26738 051:435 JLINK_IsHalted()  returns FALSE (0000ms, 1447ms total)
T26738 051:537 JLINK_IsHalted()  returns FALSE (0000ms, 1447ms total)
T226A8 051:657 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1448ms total)
T226A8 051:667 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 2F 00 00 00  returns 0x04 (0001ms, 1449ms total)
T226A8 051:677 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1450ms total)
T226A8 051:678 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 21  returns 0x01 (0000ms, 1450ms total)
T226A8 051:688 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 38 42  returns 0x04 (0001ms, 1451ms total)
T226A8 051:698 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1452ms total)
T226A8 051:699 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 2F  returns 0x01 (0001ms, 1453ms total)
T226A8 051:709 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1454ms total)
T226A8 051:729 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1455ms total)
T226A8 051:730 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 8B A5 03 00  returns 0x04 (0000ms, 1455ms total)
T226A8 051:730 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0001ms, 1456ms total)
T226A8 051:741 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 91 EC 03 00  returns 0x04 (0001ms, 1457ms total)
T226A8 051:769 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: F7 E9 03 00  returns 0x04 (0001ms, 1458ms total)
T226A8 051:779 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: B2 0B  returns 0x02 (0000ms, 1458ms total)
T226A8 051:780 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 05 00  returns 0x02 (0000ms, 1458ms total)
T226A8 051:790 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 40  returns 0x01 (0000ms, 1458ms total)
T26738 051:790 JLINK_IsHalted()  returns FALSE (0001ms, 1459ms total)
T26738 051:893 JLINK_IsHalted()  returns FALSE (0000ms, 1458ms total)
T26738 051:994 JLINK_IsHalted()  returns FALSE (0000ms, 1458ms total)
T26738 052:095 JLINK_IsHalted()  returns FALSE (0000ms, 1458ms total)
T226A8 052:214 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1459ms total)
T226A8 052:224 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 30 00 00 00  returns 0x04 (0001ms, 1460ms total)
T226A8 052:243 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1461ms total)
T226A8 052:244 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 22  returns 0x01 (0001ms, 1462ms total)
T226A8 052:263 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 3C 42  returns 0x04 (0001ms, 1463ms total)
T226A8 052:282 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0000ms, 1463ms total)
T226A8 052:282 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 30  returns 0x01 (0001ms, 1464ms total)
T226A8 052:301 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1465ms total)
T226A8 052:320 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 1465ms total)
T226A8 052:321 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 8B A5 03 00  returns 0x04 (0000ms, 1465ms total)
T226A8 052:321 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 83 F4 03 00  returns 0x04 (0001ms, 1466ms total)
T226A8 052:331 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 9F F5 03 00  returns 0x04 (0000ms, 1466ms total)
T226A8 052:358 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 03 F3 03 00  returns 0x04 (0001ms, 1467ms total)
T226A8 052:367 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 48 0B  returns 0x02 (0001ms, 1468ms total)
T226A8 052:377 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 00 00  returns 0x02 (0000ms, 1468ms total)
T226A8 052:386 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 1D  returns 0x01 (0001ms, 1469ms total)
T26738 052:396 JLINK_IsHalted()  returns FALSE (0000ms, 1469ms total)
T26738 052:497 JLINK_IsHalted()  returns FALSE (0000ms, 1469ms total)
T26738 052:598 JLINK_IsHalted()  returns FALSE (0001ms, 1470ms total)
T26738 052:700 JLINK_IsHalted()  returns FALSE (0000ms, 1469ms total)
T226A8 052:819 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1470ms total)
T226A8 052:829 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 30 00 00 00  returns 0x04 (0001ms, 1471ms total)
T226A8 052:839 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1472ms total)
T226A8 052:840 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 22  returns 0x01 (0000ms, 1472ms total)
T226A8 052:849 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 3C 42  returns 0x04 (0001ms, 1473ms total)
T226A8 052:858 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1474ms total)
T226A8 052:859 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 30  returns 0x01 (0001ms, 1475ms total)
T226A8 052:869 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 1475ms total)
T226A8 052:887 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1476ms total)
T226A8 052:888 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 8B A5 03 00  returns 0x04 (0000ms, 1476ms total)
T226A8 052:888 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 83 F4 03 00  returns 0x04 (0001ms, 1477ms total)
T226A8 052:898 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 9F F5 03 00  returns 0x04 (0000ms, 1477ms total)
T226A8 052:925 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 03 F3 03 00  returns 0x04 (0000ms, 1477ms total)
T226A8 052:934 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 48 0B  returns 0x02 (0001ms, 1478ms total)
T226A8 052:944 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 00 00  returns 0x02 (0000ms, 1478ms total)
T226A8 052:954 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 1D  returns 0x01 (0000ms, 1478ms total)
T26738 052:964 JLINK_IsHalted()  returns FALSE (0001ms, 1479ms total)
T26738 053:065 JLINK_IsHalted()  returns FALSE (0000ms, 1478ms total)
T26738 053:166 JLINK_IsHalted()  returns FALSE (0000ms, 1478ms total)
T26738 053:268 JLINK_IsHalted()  returns FALSE (0000ms, 1478ms total)
T226A8 053:389 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 1478ms total)
T226A8 053:398 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 31 00 00 00  returns 0x04 (0001ms, 1479ms total)
T226A8 053:407 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1480ms total)
T226A8 053:408 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 23  returns 0x01 (0001ms, 1481ms total)
T226A8 053:418 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 40 42  returns 0x04 (0001ms, 1482ms total)
T226A8 053:427 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1483ms total)
T226A8 053:428 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 31  returns 0x01 (0001ms, 1484ms total)
T226A8 053:438 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1485ms total)
T226A8 053:457 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1486ms total)
T226A8 053:458 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 8B A5 03 00  returns 0x04 (0000ms, 1486ms total)
T226A8 053:458 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0001ms, 1487ms total)
T226A8 053:468 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 91 EC 03 00  returns 0x04 (0000ms, 1487ms total)
T226A8 053:494 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: F7 E9 03 00  returns 0x04 (0001ms, 1488ms total)
T226A8 053:504 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 48 0B  returns 0x02 (0001ms, 1489ms total)
T226A8 053:505 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 01 00  returns 0x02 (0001ms, 1490ms total)
T226A8 053:515 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 1D  returns 0x01 (0001ms, 1491ms total)
T26738 053:516 JLINK_IsHalted()  returns FALSE (0000ms, 1491ms total)
T26738 053:618 JLINK_IsHalted()  returns FALSE (0000ms, 1491ms total)
T26738 053:719 JLINK_IsHalted()  returns FALSE (0000ms, 1491ms total)
T26738 053:820 JLINK_IsHalted()  returns FALSE (0000ms, 1491ms total)
T226A8 053:939 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1492ms total)
T226A8 053:949 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 31 00 00 00  returns 0x04 (0000ms, 1492ms total)
T226A8 053:958 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1493ms total)
T226A8 053:959 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 23  returns 0x01 (0000ms, 1493ms total)
T226A8 053:969 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 40 42  returns 0x04 (0000ms, 1493ms total)
T226A8 053:978 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1494ms total)
T226A8 053:979 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 31  returns 0x01 (0001ms, 1495ms total)
T226A8 053:988 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1496ms total)
T226A8 054:007 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1497ms total)
T226A8 054:008 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 8B A5 03 00  returns 0x04 (0000ms, 1497ms total)
T226A8 054:008 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0001ms, 1498ms total)
T226A8 054:017 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 91 EC 03 00  returns 0x04 (0001ms, 1499ms total)
T226A8 054:044 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: F7 E9 03 00  returns 0x04 (0001ms, 1500ms total)
T226A8 054:053 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 48 0B  returns 0x02 (0001ms, 1501ms total)
T226A8 054:054 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 01 00  returns 0x02 (0001ms, 1502ms total)
T226A8 054:063 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 1D  returns 0x01 (0001ms, 1503ms total)
T26738 054:064 JLINK_IsHalted()  returns FALSE (0001ms, 1504ms total)
T26738 054:165 JLINK_IsHalted()  returns FALSE (0000ms, 1503ms total)
T26738 054:266 JLINK_IsHalted()  returns FALSE (0000ms, 1503ms total)
T26738 054:368 JLINK_IsHalted()  returns FALSE (0001ms, 1504ms total)
T226A8 054:487 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1504ms total)
T226A8 054:497 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 32 00 00 00  returns 0x04 (0000ms, 1504ms total)
T226A8 054:506 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1505ms total)
T226A8 054:507 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 24  returns 0x01 (0000ms, 1505ms total)
T226A8 054:517 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 44 42  returns 0x04 (0000ms, 1505ms total)
T226A8 054:526 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1506ms total)
T226A8 054:527 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 32  returns 0x01 (0000ms, 1506ms total)
T226A8 054:536 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1507ms total)
T226A8 054:554 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1508ms total)
T226A8 054:555 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 8B A5 03 00  returns 0x04 (0000ms, 1508ms total)
T226A8 054:555 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: D9 A0 03 00  returns 0x04 (0001ms, 1509ms total)
T226A8 054:565 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: F5 A1 03 00  returns 0x04 (0001ms, 1510ms total)
T226A8 054:592 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: F3 9F 03 00  returns 0x04 (0001ms, 1511ms total)
T226A8 054:602 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 48 0B  returns 0x02 (0000ms, 1511ms total)
T226A8 054:602 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0001ms, 1512ms total)
T226A8 054:612 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 1D  returns 0x01 (0001ms, 1513ms total)
T26738 054:613 JLINK_IsHalted()  returns FALSE (0000ms, 1513ms total)
T26738 054:714 JLINK_IsHalted()  returns FALSE (0000ms, 1513ms total)
T26738 054:816 JLINK_IsHalted()  returns FALSE (0000ms, 1513ms total)
T26738 054:917 JLINK_IsHalted()  returns FALSE (0000ms, 1513ms total)
T226A8 055:037 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 1513ms total)
T226A8 055:046 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 32 00 00 00  returns 0x04 (0001ms, 1514ms total)
T226A8 055:056 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1515ms total)
T226A8 055:057 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 24  returns 0x01 (0000ms, 1515ms total)
T226A8 055:066 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 44 42  returns 0x04 (0001ms, 1516ms total)
T226A8 055:075 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1517ms total)
T226A8 055:076 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 32  returns 0x01 (0001ms, 1518ms total)
T226A8 055:086 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 1518ms total)
T226A8 055:105 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1519ms total)
T226A8 055:106 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 8B A5 03 00  returns 0x04 (0000ms, 1519ms total)
T226A8 055:106 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: D9 A0 03 00  returns 0x04 (0001ms, 1520ms total)
T226A8 055:117 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: F5 A1 03 00  returns 0x04 (0001ms, 1521ms total)
T226A8 055:146 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: F7 E9 03 00  returns 0x04 (0001ms, 1522ms total)
T226A8 055:166 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 48 0B  returns 0x02 (0001ms, 1523ms total)
T226A8 055:167 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 03 00  returns 0x02 (0001ms, 1524ms total)
T226A8 055:186 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 1D  returns 0x01 (0001ms, 1525ms total)
T26738 055:187 JLINK_IsHalted()  returns FALSE (0001ms, 1526ms total)
T26738 055:288 JLINK_IsHalted()  returns FALSE (0000ms, 1525ms total)
T26738 055:389 JLINK_IsHalted()  returns FALSE (0000ms, 1525ms total)
T26738 055:490 JLINK_IsHalted()  returns FALSE (0000ms, 1525ms total)
T226A8 055:612 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 1525ms total)
T226A8 055:621 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 33 00 00 00  returns 0x04 (0001ms, 1526ms total)
T226A8 055:631 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1527ms total)
T226A8 055:632 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 25  returns 0x01 (0000ms, 1527ms total)
T226A8 055:641 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 48 42  returns 0x04 (0001ms, 1528ms total)
T226A8 055:651 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0000ms, 1528ms total)
T226A8 055:651 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 33  returns 0x01 (0001ms, 1529ms total)
T226A8 055:661 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1530ms total)
T226A8 055:680 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1531ms total)
T226A8 055:681 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 8B A5 03 00  returns 0x04 (0000ms, 1531ms total)
T226A8 055:681 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0001ms, 1532ms total)
T226A8 055:691 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 91 EC 03 00  returns 0x04 (0001ms, 1533ms total)
T226A8 055:719 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: F7 E9 03 00  returns 0x04 (0001ms, 1534ms total)
T226A8 055:729 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 48 0B  returns 0x02 (0001ms, 1535ms total)
T226A8 055:730 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 03 00  returns 0x02 (0000ms, 1535ms total)
T226A8 055:739 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 1D  returns 0x01 (0001ms, 1536ms total)
T26738 055:740 JLINK_IsHalted()  returns FALSE (0001ms, 1537ms total)
T26738 055:841 JLINK_IsHalted()  returns FALSE (0000ms, 1536ms total)
T26738 055:942 JLINK_IsHalted()  returns FALSE (0000ms, 1536ms total)
T26738 056:043 JLINK_IsHalted()  returns FALSE (0000ms, 1536ms total)
T226A8 056:164 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1537ms total)
T226A8 056:174 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 34 00 00 00  returns 0x04 (0001ms, 1538ms total)
T226A8 056:193 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0002ms, 1540ms total)
T226A8 056:195 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 26  returns 0x01 (0000ms, 1540ms total)
T226A8 056:214 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 4C 42  returns 0x04 (0001ms, 1541ms total)
T226A8 056:233 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1542ms total)
T226A8 056:234 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 34  returns 0x01 (0001ms, 1543ms total)
T226A8 056:253 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1544ms total)
T226A8 056:273 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1545ms total)
T226A8 056:274 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 8B A5 03 00  returns 0x04 (0000ms, 1545ms total)
T226A8 056:274 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: F1 25 03 00  returns 0x04 (0001ms, 1546ms total)
T226A8 056:293 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 0D 27 03 00  returns 0x04 (0001ms, 1547ms total)
T226A8 056:331 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F 25 03 00  returns 0x04 (0000ms, 1547ms total)
T226A8 056:341 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 48 0B  returns 0x02 (0000ms, 1547ms total)
T226A8 056:341 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 04 00  returns 0x02 (0001ms, 1548ms total)
T226A8 056:351 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 1D  returns 0x01 (0001ms, 1549ms total)
T26738 056:352 JLINK_IsHalted()  returns FALSE (0001ms, 1550ms total)
T26738 056:453 JLINK_IsHalted()  returns FALSE (0000ms, 1549ms total)
T26738 056:554 JLINK_IsHalted()  returns FALSE (0000ms, 1549ms total)
T26738 056:656 JLINK_IsHalted()  returns FALSE (0000ms, 1549ms total)
T226A8 056:776 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1550ms total)
T226A8 056:786 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 34 00 00 00  returns 0x04 (0000ms, 1550ms total)
T226A8 056:795 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1551ms total)
T226A8 056:796 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 26  returns 0x01 (0001ms, 1552ms total)
T226A8 056:805 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 4C 42  returns 0x04 (0001ms, 1553ms total)
T226A8 056:815 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0000ms, 1553ms total)
T226A8 056:816 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 34  returns 0x01 (0000ms, 1553ms total)
T226A8 056:826 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1554ms total)
T226A8 056:845 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 1554ms total)
T226A8 056:845 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 8B A5 03 00  returns 0x04 (0001ms, 1555ms total)
T226A8 056:846 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: F1 25 03 00  returns 0x04 (0001ms, 1556ms total)
T226A8 056:856 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 0D 27 03 00  returns 0x04 (0001ms, 1557ms total)
T226A8 056:883 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F 25 03 00  returns 0x04 (0001ms, 1558ms total)
T226A8 056:893 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 48 0B  returns 0x02 (0001ms, 1559ms total)
T226A8 056:894 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 04 00  returns 0x02 (0000ms, 1559ms total)
T226A8 056:904 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 1D  returns 0x01 (0001ms, 1560ms total)
T26738 056:905 JLINK_IsHalted()  returns FALSE (0000ms, 1560ms total)
T26738 057:007 JLINK_IsHalted()  returns FALSE (0000ms, 1560ms total)
T26738 057:108 JLINK_IsHalted()  returns FALSE (0000ms, 1560ms total)
T26738 057:209 JLINK_IsHalted()  returns FALSE (0000ms, 1560ms total)
T226A8 057:328 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1561ms total)
T226A8 057:338 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 35 00 00 00  returns 0x04 (0002ms, 1563ms total)
T226A8 057:348 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1564ms total)
T226A8 057:349 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 27  returns 0x01 (0001ms, 1565ms total)
T226A8 057:358 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 50 42  returns 0x04 (0001ms, 1566ms total)
T226A8 057:368 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1567ms total)
T226A8 057:369 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 35  returns 0x01 (0000ms, 1567ms total)
T226A8 057:378 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1568ms total)
T226A8 057:397 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1569ms total)
T226A8 057:398 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 8B A5 03 00  returns 0x04 (0000ms, 1569ms total)
T226A8 057:398 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0001ms, 1570ms total)
T226A8 057:408 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 91 EC 03 00  returns 0x04 (0001ms, 1571ms total)
T226A8 057:435 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: F7 E9 03 00  returns 0x04 (0001ms, 1572ms total)
T226A8 057:445 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 48 0B  returns 0x02 (0000ms, 1572ms total)
T226A8 057:446 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 05 00  returns 0x02 (0000ms, 1572ms total)
T226A8 057:455 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 1D  returns 0x01 (0001ms, 1573ms total)
T26738 057:456 JLINK_IsHalted()  returns FALSE (0000ms, 1573ms total)
T26738 057:557 JLINK_IsHalted()  returns FALSE (0000ms, 1573ms total)
T26738 057:658 JLINK_IsHalted()  returns FALSE (0000ms, 1573ms total)
T26738 057:760 JLINK_IsHalted()  returns FALSE (0000ms, 1573ms total)
T226A8 057:879 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1574ms total)
T226A8 057:889 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 35 00 00 00  returns 0x04 (0001ms, 1575ms total)
T226A8 057:898 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1576ms total)
T226A8 057:899 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 27  returns 0x01 (0001ms, 1577ms total)
T226A8 057:908 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 50 42  returns 0x04 (0001ms, 1578ms total)
T226A8 057:918 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0000ms, 1578ms total)
T226A8 057:918 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 35  returns 0x01 (0001ms, 1579ms total)
T226A8 057:928 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1580ms total)
T226A8 057:946 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1581ms total)
T226A8 057:947 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 8B A5 03 00  returns 0x04 (0000ms, 1581ms total)
T226A8 057:947 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0001ms, 1582ms total)
T226A8 057:957 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 91 EC 03 00  returns 0x04 (0000ms, 1582ms total)
T226A8 057:983 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: F7 E9 03 00  returns 0x04 (0001ms, 1583ms total)
T226A8 057:993 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 48 0B  returns 0x02 (0001ms, 1584ms total)
T226A8 057:994 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 05 00  returns 0x02 (0000ms, 1584ms total)
T226A8 058:003 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 1D  returns 0x01 (0001ms, 1585ms total)
T26738 058:004 JLINK_IsHalted()  returns FALSE (0001ms, 1586ms total)
T26738 058:106 JLINK_IsHalted()  returns FALSE (0000ms, 1585ms total)
T26738 058:207 JLINK_IsHalted()  returns FALSE (0000ms, 1585ms total)
T26738 058:308 JLINK_IsHalted()  returns FALSE (0000ms, 1585ms total)
T226A8 058:427 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1586ms total)
T226A8 058:437 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 36 00 00 00  returns 0x04 (0001ms, 1587ms total)
T226A8 058:448 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1588ms total)
T226A8 058:449 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 28  returns 0x01 (0001ms, 1589ms total)
T226A8 058:459 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 54 42  returns 0x04 (0000ms, 1589ms total)
T226A8 058:468 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1590ms total)
T226A8 058:469 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 36  returns 0x01 (0000ms, 1590ms total)
T226A8 058:478 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1591ms total)
T226A8 058:498 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 1591ms total)
T226A8 058:498 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 8B A5 03 00  returns 0x04 (0001ms, 1592ms total)
T226A8 058:499 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 0F 4F 02 00  returns 0x04 (0000ms, 1592ms total)
T226A8 058:509 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 2B 50 02 00  returns 0x04 (0000ms, 1592ms total)
T226A8 058:536 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 1D 4E 02 00  returns 0x04 (0000ms, 1592ms total)
T226A8 058:545 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: D8 0A  returns 0x02 (0001ms, 1593ms total)
T226A8 058:554 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 00 00  returns 0x02 (0001ms, 1594ms total)
T226A8 058:564 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 00  returns 0x01 (0001ms, 1595ms total)
T26738 058:573 JLINK_IsHalted()  returns FALSE (0002ms, 1597ms total)
T26738 058:675 JLINK_IsHalted()  returns FALSE (0000ms, 1595ms total)
T26738 058:777 JLINK_IsHalted()  returns FALSE (0000ms, 1595ms total)
T26738 058:878 JLINK_IsHalted()  returns FALSE (0000ms, 1595ms total)
T226A8 058:997 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1596ms total)
T226A8 059:007 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 36 00 00 00  returns 0x04 (0000ms, 1596ms total)
T226A8 059:016 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1597ms total)
T226A8 059:017 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 28  returns 0x01 (0000ms, 1597ms total)
T226A8 059:026 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 54 42  returns 0x04 (0001ms, 1598ms total)
T226A8 059:036 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0000ms, 1598ms total)
T226A8 059:036 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 36  returns 0x01 (0001ms, 1599ms total)
T226A8 059:046 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 1599ms total)
T226A8 059:065 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1600ms total)
T226A8 059:066 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 8B A5 03 00  returns 0x04 (0001ms, 1601ms total)
T226A8 059:067 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 0F 4F 02 00  returns 0x04 (0000ms, 1601ms total)
T226A8 059:076 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 2B 50 02 00  returns 0x04 (0001ms, 1602ms total)
T226A8 059:103 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 1D 4E 02 00  returns 0x04 (0000ms, 1602ms total)
T226A8 059:112 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: D8 0A  returns 0x02 (0001ms, 1603ms total)
T226A8 059:122 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 00 00  returns 0x02 (0000ms, 1603ms total)
T226A8 059:131 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 00  returns 0x01 (0001ms, 1604ms total)
T26738 059:140 JLINK_IsHalted()  returns FALSE (0001ms, 1605ms total)
T26738 059:242 JLINK_IsHalted()  returns FALSE (0000ms, 1604ms total)
T26738 059:343 JLINK_IsHalted()  returns FALSE (0000ms, 1604ms total)
T26738 059:445 JLINK_IsHalted()  returns FALSE (0000ms, 1604ms total)
T226A8 059:565 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 1604ms total)
T226A8 059:574 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 37 00 00 00  returns 0x04 (0001ms, 1605ms total)
T226A8 059:584 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 1605ms total)
T226A8 059:584 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 29  returns 0x01 (0001ms, 1606ms total)
T226A8 059:593 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 58 42  returns 0x04 (0001ms, 1607ms total)
T226A8 059:603 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0000ms, 1607ms total)
T226A8 059:603 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 37  returns 0x01 (0001ms, 1608ms total)
T226A8 059:613 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 1608ms total)
T226A8 059:632 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 1608ms total)
T226A8 059:632 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 8B A5 03 00  returns 0x04 (0001ms, 1609ms total)
T226A8 059:633 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 85 B0 02 00  returns 0x04 (0001ms, 1610ms total)
T226A8 059:643 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A1 B1 02 00  returns 0x04 (0000ms, 1610ms total)
T226A8 059:670 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: AB AF 02 00  returns 0x04 (0001ms, 1611ms total)
T226A8 059:680 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: D8 0A  returns 0x02 (0000ms, 1611ms total)
T226A8 059:680 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 01 00  returns 0x02 (0001ms, 1612ms total)
T226A8 059:690 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 00  returns 0x01 (0000ms, 1612ms total)
T26738 059:690 JLINK_IsHalted()  returns FALSE (0002ms, 1614ms total)
T26738 059:792 JLINK_IsHalted()  returns FALSE (0000ms, 1612ms total)
T26738 059:894 JLINK_IsHalted()  returns FALSE (0000ms, 1612ms total)
T26738 059:995 JLINK_IsHalted()  returns FALSE (0000ms, 1612ms total)
T226A8 060:115 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 1612ms total)
T226A8 060:124 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 37 00 00 00  returns 0x04 (0001ms, 1613ms total)
T226A8 060:134 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1614ms total)
T226A8 060:135 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 29  returns 0x01 (0000ms, 1614ms total)
T226A8 060:144 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 5C 42  returns 0x04 (0001ms, 1615ms total)
T226A8 060:162 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1616ms total)
T226A8 060:163 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 38  returns 0x01 (0001ms, 1617ms total)
T226A8 060:182 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1618ms total)
T226A8 060:202 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1619ms total)
T226A8 060:203 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 8B A5 03 00  returns 0x04 (0000ms, 1619ms total)
T226A8 060:203 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0001ms, 1620ms total)
T226A8 060:223 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0000ms, 1620ms total)
T226A8 060:260 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0001ms, 1621ms total)
T226A8 060:280 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: D8 0A  returns 0x02 (0000ms, 1621ms total)
T226A8 060:280 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0001ms, 1622ms total)
T226A8 060:299 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 00  returns 0x01 (0001ms, 1623ms total)
T26738 060:300 JLINK_IsHalted()  returns FALSE (0000ms, 1623ms total)
T26738 060:401 JLINK_IsHalted()  returns FALSE (0000ms, 1623ms total)
T26738 060:502 JLINK_IsHalted()  returns FALSE (0000ms, 1623ms total)
T26738 060:604 JLINK_IsHalted()  returns FALSE (0000ms, 1623ms total)
T226A8 060:724 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 1623ms total)
T226A8 060:733 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 38 00 00 00  returns 0x04 (0001ms, 1624ms total)
T226A8 060:743 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1625ms total)
T226A8 060:744 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 2A  returns 0x01 (0000ms, 1625ms total)
T226A8 060:754 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 5C 42  returns 0x04 (0000ms, 1625ms total)
T226A8 060:764 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0000ms, 1625ms total)
T226A8 060:764 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 38  returns 0x01 (0001ms, 1626ms total)
T226A8 060:774 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1627ms total)
T226A8 060:793 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1628ms total)
T226A8 060:794 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 8B A5 03 00  returns 0x04 (0000ms, 1628ms total)
T226A8 060:794 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0001ms, 1629ms total)
T226A8 060:804 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0001ms, 1630ms total)
T226A8 060:833 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0001ms, 1631ms total)
T226A8 060:843 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: D8 0A  returns 0x02 (0000ms, 1631ms total)
T226A8 060:843 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0001ms, 1632ms total)
T226A8 060:853 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 00  returns 0x01 (0001ms, 1633ms total)
T26738 060:854 JLINK_IsHalted()  returns FALSE (0000ms, 1633ms total)
T26738 060:955 JLINK_IsHalted()  returns FALSE (0000ms, 1633ms total)
T26738 061:057 JLINK_IsHalted()  returns FALSE (0000ms, 1633ms total)
T26738 061:159 JLINK_IsHalted()  returns FALSE (0000ms, 1633ms total)
T226A8 061:279 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1634ms total)
T226A8 061:290 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 39 00 00 00  returns 0x04 (0000ms, 1634ms total)
T226A8 061:308 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1635ms total)
T226A8 061:309 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 2A  returns 0x01 (0001ms, 1636ms total)
T226A8 061:319 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 60 42  returns 0x04 (0001ms, 1637ms total)
T226A8 061:329 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1638ms total)
T226A8 061:330 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 39  returns 0x01 (0000ms, 1638ms total)
T226A8 061:340 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 1638ms total)
T226A8 061:359 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 1638ms total)
T226A8 061:359 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 41 17 04 00  returns 0x04 (0001ms, 1639ms total)
T226A8 061:369 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0001ms, 1640ms total)
T226A8 061:370 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 5D 18 04 00  returns 0x04 (0001ms, 1641ms total)
T226A8 061:399 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 21 DF 00 00  returns 0x04 (0000ms, 1641ms total)
T226A8 061:410 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: D8 0A  returns 0x02 (0001ms, 1642ms total)
T226A8 061:411 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 03 00  returns 0x02 (0000ms, 1642ms total)
T226A8 061:421 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 00  returns 0x01 (0000ms, 1642ms total)
T26738 061:421 JLINK_IsHalted()  returns FALSE (0001ms, 1643ms total)
T26738 061:523 JLINK_IsHalted()  returns FALSE (0000ms, 1642ms total)
T26738 061:625 JLINK_IsHalted()  returns FALSE (0000ms, 1642ms total)
T26738 061:726 JLINK_IsHalted()  returns FALSE (0000ms, 1642ms total)
T226A8 061:845 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1643ms total)
T226A8 061:855 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 39 00 00 00  returns 0x04 (0001ms, 1644ms total)
T226A8 061:865 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 1644ms total)
T226A8 061:865 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 2A  returns 0x01 (0001ms, 1645ms total)
T226A8 061:866 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 60 42  returns 0x04 (0001ms, 1646ms total)
T226A8 061:876 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0000ms, 1646ms total)
T226A8 061:876 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 39  returns 0x01 (0001ms, 1647ms total)
T226A8 061:886 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1648ms total)
T226A8 061:905 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 1648ms total)
T226A8 061:905 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 41 17 04 00  returns 0x04 (0001ms, 1649ms total)
T226A8 061:915 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0001ms, 1650ms total)
T226A8 061:916 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 5D 18 04 00  returns 0x04 (0000ms, 1650ms total)
T226A8 061:943 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 21 DF 00 00  returns 0x04 (0001ms, 1651ms total)
T226A8 061:952 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: D8 0A  returns 0x02 (0001ms, 1652ms total)
T226A8 061:953 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 03 00  returns 0x02 (0001ms, 1653ms total)
T226A8 061:963 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 00  returns 0x01 (0000ms, 1653ms total)
T26738 061:963 JLINK_IsHalted()  returns FALSE (0001ms, 1654ms total)
T26738 062:065 JLINK_IsHalted()  returns FALSE (0000ms, 1653ms total)
T26738 062:167 JLINK_IsHalted()  returns FALSE (0000ms, 1653ms total)
T26738 062:268 JLINK_IsHalted()  returns FALSE (0000ms, 1653ms total)
T226A8 062:387 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1654ms total)
T226A8 062:397 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 3A 00 00 00  returns 0x04 (0000ms, 1654ms total)
T226A8 062:406 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1655ms total)
T226A8 062:407 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 2B  returns 0x01 (0000ms, 1655ms total)
T226A8 062:416 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 64 42  returns 0x04 (0001ms, 1656ms total)
T226A8 062:425 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1657ms total)
T226A8 062:426 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 3A  returns 0x01 (0001ms, 1658ms total)
T226A8 062:436 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 1658ms total)
T226A8 062:454 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1659ms total)
T226A8 062:455 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 41 17 04 00  returns 0x04 (0001ms, 1660ms total)
T226A8 062:456 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0000ms, 1660ms total)
T226A8 062:456 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0001ms, 1661ms total)
T226A8 062:484 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0001ms, 1662ms total)
T226A8 062:494 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: D8 0A  returns 0x02 (0000ms, 1662ms total)
T226A8 062:494 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 04 00  returns 0x02 (0001ms, 1663ms total)
T226A8 062:504 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 00  returns 0x01 (0001ms, 1664ms total)
T26738 062:505 JLINK_IsHalted()  returns FALSE (0002ms, 1666ms total)
T26738 062:608 JLINK_IsHalted()  returns FALSE (0000ms, 1664ms total)
T26738 062:709 JLINK_IsHalted()  returns FALSE (0000ms, 1664ms total)
T26738 062:810 JLINK_IsHalted()  returns FALSE (0000ms, 1664ms total)
T226A8 062:930 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1665ms total)
T226A8 062:939 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 3A 00 00 00  returns 0x04 (0001ms, 1666ms total)
T226A8 062:949 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 1666ms total)
T226A8 062:949 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 2B  returns 0x01 (0001ms, 1667ms total)
T226A8 062:959 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 64 42  returns 0x04 (0001ms, 1668ms total)
T226A8 062:969 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1669ms total)
T226A8 062:970 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 3A  returns 0x01 (0000ms, 1669ms total)
T226A8 062:979 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1670ms total)
T226A8 062:997 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1671ms total)
T226A8 062:998 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 41 17 04 00  returns 0x04 (0000ms, 1671ms total)
T226A8 062:998 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0001ms, 1672ms total)
T226A8 062:999 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0001ms, 1673ms total)
T226A8 063:026 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0001ms, 1674ms total)
T226A8 063:035 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: D8 0A  returns 0x02 (0001ms, 1675ms total)
T226A8 063:036 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 04 00  returns 0x02 (0000ms, 1675ms total)
T226A8 063:045 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 00  returns 0x01 (0001ms, 1676ms total)
T26738 063:046 JLINK_IsHalted()  returns FALSE (0001ms, 1677ms total)
T26738 063:148 JLINK_IsHalted()  returns FALSE (0000ms, 1676ms total)
T26738 063:249 JLINK_IsHalted()  returns FALSE (0000ms, 1676ms total)
T26738 063:351 JLINK_IsHalted()  returns FALSE (0000ms, 1676ms total)
T226A8 063:472 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1677ms total)
T226A8 063:481 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 3B 00 00 00  returns 0x04 (0001ms, 1678ms total)
T226A8 063:490 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1679ms total)
T226A8 063:491 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 2C  returns 0x01 (0001ms, 1680ms total)
T226A8 063:500 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 68 42  returns 0x04 (0001ms, 1681ms total)
T226A8 063:510 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1682ms total)
T226A8 063:511 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 3B  returns 0x01 (0000ms, 1682ms total)
T226A8 063:520 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1683ms total)
T226A8 063:538 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1684ms total)
T226A8 063:539 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 41 17 04 00  returns 0x04 (0001ms, 1685ms total)
T226A8 063:540 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0000ms, 1685ms total)
T226A8 063:550 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 91 EC 03 00  returns 0x04 (0001ms, 1686ms total)
T226A8 063:577 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: F7 E9 03 00  returns 0x04 (0001ms, 1687ms total)
T226A8 063:587 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: D8 0A  returns 0x02 (0000ms, 1687ms total)
T226A8 063:587 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 05 00  returns 0x02 (0001ms, 1688ms total)
T226A8 063:596 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 00  returns 0x01 (0001ms, 1689ms total)
T26738 063:597 JLINK_IsHalted()  returns FALSE (0001ms, 1690ms total)
T26738 063:700 JLINK_IsHalted()  returns FALSE (0000ms, 1689ms total)
T26738 063:801 JLINK_IsHalted()  returns FALSE (0000ms, 1689ms total)
T26738 063:902 JLINK_IsHalted()  returns FALSE (0000ms, 1689ms total)
T226A8 064:022 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1690ms total)
T226A8 064:031 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 3B 00 00 00  returns 0x04 (0001ms, 1691ms total)
T226A8 064:041 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1692ms total)
T226A8 064:042 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 2C  returns 0x01 (0001ms, 1693ms total)
T226A8 064:051 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 68 42  returns 0x04 (0001ms, 1694ms total)
T226A8 064:061 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0000ms, 1694ms total)
T226A8 064:061 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 3B  returns 0x01 (0001ms, 1695ms total)
T226A8 064:071 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 1695ms total)
T226A8 064:090 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1696ms total)
T226A8 064:091 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 41 17 04 00  returns 0x04 (0000ms, 1696ms total)
T226A8 064:091 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0001ms, 1697ms total)
T226A8 064:101 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 91 EC 03 00  returns 0x04 (0001ms, 1698ms total)
T226A8 064:129 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: F7 E9 03 00  returns 0x04 (0000ms, 1698ms total)
T226A8 064:138 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: D8 0A  returns 0x02 (0001ms, 1699ms total)
T226A8 064:139 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 05 00  returns 0x02 (0000ms, 1699ms total)
T226A8 064:148 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 00  returns 0x01 (0001ms, 1700ms total)
T26738 064:149 JLINK_IsHalted()  returns FALSE (0000ms, 1700ms total)
T26738 064:250 JLINK_IsHalted()  returns FALSE (0000ms, 1700ms total)
T26738 064:351 JLINK_IsHalted()  returns FALSE (0000ms, 1700ms total)
T26738 064:453 JLINK_IsHalted()  returns FALSE (0000ms, 1700ms total)
T226A8 064:572 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1701ms total)
T226A8 064:582 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 3C 00 00 00  returns 0x04 (0000ms, 1701ms total)
T226A8 064:591 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1702ms total)
T226A8 064:592 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 2D  returns 0x01 (0000ms, 1702ms total)
T226A8 064:601 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 6C 42  returns 0x04 (0001ms, 1703ms total)
T226A8 064:611 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1704ms total)
T226A8 064:612 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 3C  returns 0x01 (0000ms, 1704ms total)
T226A8 064:621 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1705ms total)
T226A8 064:639 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1706ms total)
T226A8 064:640 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 41 17 04 00  returns 0x04 (0001ms, 1707ms total)
T226A8 064:641 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 2D 4A 02 00  returns 0x04 (0000ms, 1707ms total)
T226A8 064:650 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 49 4B 02 00  returns 0x04 (0001ms, 1708ms total)
T226A8 064:678 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 47 49 02 00  returns 0x04 (0001ms, 1709ms total)
T226A8 064:687 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: E2 0A  returns 0x02 (0001ms, 1710ms total)
T226A8 064:697 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 00 00  returns 0x02 (0000ms, 1710ms total)
T226A8 064:706 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 00  returns 0x01 (0001ms, 1711ms total)
T26738 064:707 JLINK_IsHalted()  returns FALSE (0001ms, 1712ms total)
T26738 064:809 JLINK_IsHalted()  returns FALSE (0001ms, 1712ms total)
T26738 064:910 JLINK_IsHalted()  returns FALSE (0000ms, 1711ms total)
T26738 065:012 JLINK_IsHalted()  returns FALSE (0000ms, 1711ms total)
T226A8 065:132 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1712ms total)
T226A8 065:142 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 3D 00 00 00  returns 0x04 (0000ms, 1712ms total)
T226A8 065:161 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1713ms total)
T226A8 065:162 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 2E  returns 0x01 (0001ms, 1714ms total)
T226A8 065:181 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 70 42  returns 0x04 (0001ms, 1715ms total)
T226A8 065:200 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1716ms total)
T226A8 065:201 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 3D  returns 0x01 (0001ms, 1717ms total)
T226A8 065:220 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1718ms total)
T226A8 065:240 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 1718ms total)
T226A8 065:240 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 41 17 04 00  returns 0x04 (0001ms, 1719ms total)
T226A8 065:241 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0001ms, 1720ms total)
T226A8 065:260 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 91 EC 03 00  returns 0x04 (0001ms, 1721ms total)
T226A8 065:298 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: F7 E9 03 00  returns 0x04 (0001ms, 1722ms total)
T226A8 065:317 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: E2 0A  returns 0x02 (0000ms, 1722ms total)
T226A8 065:326 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 01 00  returns 0x02 (0001ms, 1723ms total)
T226A8 065:345 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 00  returns 0x01 (0001ms, 1724ms total)
T26738 065:346 JLINK_IsHalted()  returns FALSE (0001ms, 1725ms total)
T26738 065:447 JLINK_IsHalted()  returns FALSE (0000ms, 1724ms total)
T26738 065:548 JLINK_IsHalted()  returns FALSE (0000ms, 1724ms total)
T226A8 065:669 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1725ms total)
T226A8 065:679 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 3D 00 00 00  returns 0x04 (0001ms, 1726ms total)
T226A8 065:689 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1727ms total)
T226A8 065:690 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 2E  returns 0x01 (0000ms, 1727ms total)
T226A8 065:699 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 70 42  returns 0x04 (0001ms, 1728ms total)
T226A8 065:710 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0000ms, 1728ms total)
T226A8 065:710 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 3D  returns 0x01 (0001ms, 1729ms total)
T226A8 065:720 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1730ms total)
T226A8 065:739 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 1730ms total)
T226A8 065:739 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 41 17 04 00  returns 0x04 (0001ms, 1731ms total)
T226A8 065:740 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0001ms, 1732ms total)
T226A8 065:750 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 91 EC 03 00  returns 0x04 (0000ms, 1732ms total)
T226A8 065:778 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: F7 E9 03 00  returns 0x04 (0001ms, 1733ms total)
T226A8 065:787 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: E2 0A  returns 0x02 (0001ms, 1734ms total)
T226A8 065:788 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 01 00  returns 0x02 (0001ms, 1735ms total)
T226A8 065:798 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 00  returns 0x01 (0000ms, 1735ms total)
T26738 065:798 JLINK_IsHalted()  returns FALSE (0001ms, 1736ms total)
T26738 065:900 JLINK_IsHalted()  returns FALSE (0000ms, 1735ms total)
T26738 066:001 JLINK_IsHalted()  returns FALSE (0000ms, 1735ms total)
T26738 066:103 JLINK_IsHalted()  returns FALSE (0000ms, 1735ms total)
T226A8 066:223 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1736ms total)
T226A8 066:233 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 3E 00 00 00  returns 0x04 (0001ms, 1737ms total)
T226A8 066:243 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 1737ms total)
T226A8 066:243 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 2F  returns 0x01 (0001ms, 1738ms total)
T226A8 066:253 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 74 42  returns 0x04 (0001ms, 1739ms total)
T226A8 066:263 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1740ms total)
T226A8 066:264 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 3E  returns 0x01 (0000ms, 1740ms total)
T226A8 066:274 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 1740ms total)
T226A8 066:293 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 1740ms total)
T226A8 066:294 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 41 17 04 00  returns 0x04 (0000ms, 1740ms total)
T226A8 066:294 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 09 FB 03 00  returns 0x04 (0001ms, 1741ms total)
T226A8 066:304 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 25 FC 03 00  returns 0x04 (0001ms, 1742ms total)
T226A8 066:332 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 89 F9 03 00  returns 0x04 (0001ms, 1743ms total)
T226A8 066:343 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: E2 0A  returns 0x02 (0000ms, 1743ms total)
T226A8 066:343 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0001ms, 1744ms total)
T226A8 066:353 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 00  returns 0x01 (0001ms, 1745ms total)
T26738 066:354 JLINK_IsHalted()  returns FALSE (0000ms, 1745ms total)
T26738 066:455 JLINK_IsHalted()  returns FALSE (0000ms, 1745ms total)
T26738 066:556 JLINK_IsHalted()  returns FALSE (0000ms, 1745ms total)
T26738 066:657 JLINK_IsHalted()  returns FALSE (0000ms, 1745ms total)
T226A8 066:778 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1746ms total)
T226A8 066:788 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 3E 00 00 00  returns 0x04 (0001ms, 1747ms total)
T226A8 066:797 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1748ms total)
T226A8 066:798 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 2F  returns 0x01 (0001ms, 1749ms total)
T226A8 066:807 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 74 42  returns 0x04 (0001ms, 1750ms total)
T226A8 066:817 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1751ms total)
T226A8 066:818 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 3E  returns 0x01 (0000ms, 1751ms total)
T226A8 066:827 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1752ms total)
T226A8 066:846 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 1752ms total)
T226A8 066:846 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 41 17 04 00  returns 0x04 (0001ms, 1753ms total)
T226A8 066:847 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 09 FB 03 00  returns 0x04 (0001ms, 1754ms total)
T226A8 066:857 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 25 FC 03 00  returns 0x04 (0000ms, 1754ms total)
T226A8 066:884 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 89 F9 03 00  returns 0x04 (0001ms, 1755ms total)
T226A8 066:894 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: E2 0A  returns 0x02 (0001ms, 1756ms total)
T226A8 066:895 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0000ms, 1756ms total)
T226A8 066:904 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 00  returns 0x01 (0001ms, 1757ms total)
T26738 066:905 JLINK_IsHalted()  returns FALSE (0000ms, 1757ms total)
T26738 067:006 JLINK_IsHalted()  returns FALSE (0000ms, 1757ms total)
T26738 067:108 JLINK_IsHalted()  returns FALSE (0000ms, 1757ms total)
T26738 067:209 JLINK_IsHalted()  returns FALSE (0000ms, 1757ms total)
T226A8 067:328 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1758ms total)
T226A8 067:338 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 3F 00 00 00  returns 0x04 (0001ms, 1759ms total)
T226A8 067:348 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 1759ms total)
T226A8 067:348 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 2F  returns 0x01 (0001ms, 1760ms total)
T226A8 067:349 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 78 42  returns 0x04 (0001ms, 1761ms total)
T226A8 067:359 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1762ms total)
T226A8 067:360 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 3F  returns 0x01 (0000ms, 1762ms total)
T226A8 067:369 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1763ms total)
T226A8 067:388 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1764ms total)
T226A8 067:389 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 3F D3 03 00  returns 0x04 (0001ms, 1765ms total)
T226A8 067:399 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 09 FB 03 00  returns 0x04 (0000ms, 1765ms total)
T226A8 067:399 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 5B D4 03 00  returns 0x04 (0001ms, 1766ms total)
T226A8 067:427 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 21 DF 00 00  returns 0x04 (0001ms, 1767ms total)
T226A8 067:437 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: E2 0A  returns 0x02 (0000ms, 1767ms total)
T226A8 067:437 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 03 00  returns 0x02 (0001ms, 1768ms total)
T226A8 067:447 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 00  returns 0x01 (0000ms, 1768ms total)
T26738 067:447 JLINK_IsHalted()  returns FALSE (0001ms, 1769ms total)
T26738 067:549 JLINK_IsHalted()  returns FALSE (0001ms, 1769ms total)
T26738 067:650 JLINK_IsHalted()  returns FALSE (0000ms, 1768ms total)
T26738 067:751 JLINK_IsHalted()  returns FALSE (0000ms, 1768ms total)
T226A8 067:872 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1769ms total)
T226A8 067:882 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 3F 00 00 00  returns 0x04 (0000ms, 1769ms total)
T226A8 067:891 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1770ms total)
T226A8 067:892 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 2F  returns 0x01 (0000ms, 1770ms total)
T226A8 067:892 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 78 42  returns 0x04 (0001ms, 1771ms total)
T226A8 067:902 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0000ms, 1771ms total)
T226A8 067:902 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 3F  returns 0x01 (0001ms, 1772ms total)
T226A8 067:912 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1773ms total)
T226A8 067:930 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1774ms total)
T226A8 067:931 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 3F D3 03 00  returns 0x04 (0001ms, 1775ms total)
T226A8 067:941 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 09 FB 03 00  returns 0x04 (0000ms, 1775ms total)
T226A8 067:941 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 5B D4 03 00  returns 0x04 (0001ms, 1776ms total)
T226A8 067:968 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 21 DF 00 00  returns 0x04 (0001ms, 1777ms total)
T226A8 067:978 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: E2 0A  returns 0x02 (0000ms, 1777ms total)
T226A8 067:978 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 03 00  returns 0x02 (0001ms, 1778ms total)
T226A8 067:988 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 00  returns 0x01 (0001ms, 1779ms total)
T26738 067:989 JLINK_IsHalted()  returns FALSE (0000ms, 1779ms total)
T26738 068:090 JLINK_IsHalted()  returns FALSE (0000ms, 1779ms total)
T26738 068:192 JLINK_IsHalted()  returns FALSE (0000ms, 1779ms total)
T26738 068:293 JLINK_IsHalted()  returns FALSE (0000ms, 1779ms total)
T226A8 068:413 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1780ms total)
T226A8 068:422 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 40 00 00 00  returns 0x04 (0001ms, 1781ms total)
T226A8 068:432 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 1781ms total)
T226A8 068:432 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 30  returns 0x01 (0001ms, 1782ms total)
T226A8 068:442 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 7C 42  returns 0x04 (0001ms, 1783ms total)
T226A8 068:451 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1784ms total)
T226A8 068:452 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 40  returns 0x01 (0001ms, 1785ms total)
T226A8 068:462 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 1785ms total)
T226A8 068:480 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1786ms total)
T226A8 068:481 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 3F D3 03 00  returns 0x04 (0000ms, 1786ms total)
T226A8 068:481 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0001ms, 1787ms total)
T226A8 068:491 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0001ms, 1788ms total)
T226A8 068:520 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0000ms, 1788ms total)
T226A8 068:529 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: E2 0A  returns 0x02 (0001ms, 1789ms total)
T226A8 068:530 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 04 00  returns 0x02 (0000ms, 1789ms total)
T226A8 068:539 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 00  returns 0x01 (0001ms, 1790ms total)
T26738 068:540 JLINK_IsHalted()  returns FALSE (0001ms, 1791ms total)
T26738 068:643 JLINK_IsHalted()  returns FALSE (0000ms, 1790ms total)
T26738 068:744 JLINK_IsHalted()  returns FALSE (0000ms, 1790ms total)
T26738 068:845 JLINK_IsHalted()  returns FALSE (0000ms, 1790ms total)
T226A8 068:966 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 1790ms total)
T226A8 068:975 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 40 00 00 00  returns 0x04 (0001ms, 1791ms total)
T226A8 068:984 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1792ms total)
T226A8 068:985 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 30  returns 0x01 (0000ms, 1792ms total)
T226A8 068:994 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 7C 42  returns 0x04 (0001ms, 1793ms total)
T226A8 069:004 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1794ms total)
T226A8 069:005 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 40  returns 0x01 (0000ms, 1794ms total)
T226A8 069:014 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1795ms total)
T226A8 069:032 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1796ms total)
T226A8 069:033 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 3F D3 03 00  returns 0x04 (0001ms, 1797ms total)
T226A8 069:034 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0000ms, 1797ms total)
T226A8 069:043 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0001ms, 1798ms total)
T226A8 069:070 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0000ms, 1798ms total)
T226A8 069:079 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: E2 0A  returns 0x02 (0001ms, 1799ms total)
T226A8 069:080 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 04 00  returns 0x02 (0000ms, 1799ms total)
T226A8 069:089 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 00  returns 0x01 (0001ms, 1800ms total)
T26738 069:090 JLINK_IsHalted()  returns FALSE (0001ms, 1801ms total)
T26738 069:191 JLINK_IsHalted()  returns FALSE (0000ms, 1800ms total)
T26738 069:292 JLINK_IsHalted()  returns FALSE (0001ms, 1801ms total)
T26738 069:394 JLINK_IsHalted()  returns FALSE (0000ms, 1800ms total)
T226A8 069:515 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 1800ms total)
T226A8 069:524 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 41 00 00 00  returns 0x04 (0001ms, 1801ms total)
T226A8 069:534 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1802ms total)
T226A8 069:535 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 31  returns 0x01 (0000ms, 1802ms total)
T226A8 069:544 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 80 42  returns 0x04 (0001ms, 1803ms total)
T226A8 069:554 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1804ms total)
T226A8 069:555 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 41  returns 0x01 (0000ms, 1804ms total)
T226A8 069:564 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1805ms total)
T226A8 069:583 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1806ms total)
T226A8 069:584 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 3F D3 03 00  returns 0x04 (0000ms, 1806ms total)
T226A8 069:584 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: B7 FA 03 00  returns 0x04 (0001ms, 1807ms total)
T226A8 069:594 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: D3 FB 03 00  returns 0x04 (0000ms, 1807ms total)
T226A8 069:621 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 37 F9 03 00  returns 0x04 (0001ms, 1809ms total)
T226A8 069:632 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: E2 0A  returns 0x02 (0001ms, 1810ms total)
T226A8 069:633 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 05 00  returns 0x02 (0001ms, 1811ms total)
T226A8 069:643 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 00  returns 0x01 (0000ms, 1811ms total)
T26738 069:643 JLINK_IsHalted()  returns FALSE (0001ms, 1812ms total)
T26738 069:745 JLINK_IsHalted()  returns FALSE (0000ms, 1811ms total)
T26738 069:846 JLINK_IsHalted()  returns FALSE (0000ms, 1811ms total)
T26738 069:948 JLINK_IsHalted()  returns FALSE (0000ms, 1811ms total)
T226A8 070:068 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1812ms total)
T226A8 070:078 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 41 00 00 00  returns 0x04 (0001ms, 1813ms total)
T226A8 070:088 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1814ms total)
T226A8 070:089 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 31  returns 0x01 (0000ms, 1814ms total)
T226A8 070:099 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 80 42  returns 0x04 (0000ms, 1814ms total)
T226A8 070:108 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1815ms total)
T226A8 070:109 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 41  returns 0x01 (0001ms, 1816ms total)
T226A8 070:119 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 1816ms total)
T226A8 070:137 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1817ms total)
T226A8 070:138 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 3F D3 03 00  returns 0x04 (0001ms, 1818ms total)
T226A8 070:139 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: B7 FA 03 00  returns 0x04 (0001ms, 1819ms total)
T226A8 070:149 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0001ms, 1820ms total)
T226A8 070:186 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0001ms, 1821ms total)
T226A8 070:205 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: E6 0A  returns 0x02 (0000ms, 1821ms total)
T226A8 070:214 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 00 00  returns 0x02 (0001ms, 1822ms total)
T226A8 070:234 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 00  returns 0x01 (0001ms, 1823ms total)
T26738 070:235 JLINK_IsHalted()  returns FALSE (0001ms, 1824ms total)
T26738 070:337 JLINK_IsHalted()  returns FALSE (0000ms, 1823ms total)
T26738 070:438 JLINK_IsHalted()  returns FALSE (0000ms, 1823ms total)
T26738 070:539 JLINK_IsHalted()  returns FALSE (0000ms, 1823ms total)
T226A8 070:660 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1824ms total)
T226A8 070:670 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 42 00 00 00  returns 0x04 (0001ms, 1825ms total)
T226A8 070:681 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1826ms total)
T226A8 070:682 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 32  returns 0x01 (0000ms, 1826ms total)
T226A8 070:691 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 82 42  returns 0x04 (0001ms, 1827ms total)
T226A8 070:701 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1828ms total)
T226A8 070:702 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 42  returns 0x01 (0001ms, 1829ms total)
T226A8 070:712 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1830ms total)
T226A8 070:732 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 1830ms total)
T226A8 070:732 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 3F D3 03 00  returns 0x04 (0001ms, 1831ms total)
T226A8 070:733 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0001ms, 1832ms total)
T226A8 070:743 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0001ms, 1833ms total)
T226A8 070:771 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0001ms, 1834ms total)
T226A8 070:781 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: E6 0A  returns 0x02 (0000ms, 1834ms total)
T226A8 070:790 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 00 00  returns 0x02 (0001ms, 1835ms total)
T226A8 070:800 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 00  returns 0x01 (0000ms, 1835ms total)
T26738 070:801 JLINK_IsHalted()  returns FALSE (0000ms, 1835ms total)
T26738 070:902 JLINK_IsHalted()  returns FALSE (0000ms, 1835ms total)
T26738 071:003 JLINK_IsHalted()  returns FALSE (0000ms, 1835ms total)
T26738 071:105 JLINK_IsHalted()  returns FALSE (0000ms, 1835ms total)
T226A8 071:226 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1836ms total)
T226A8 071:237 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 43 00 00 00  returns 0x04 (0001ms, 1837ms total)
T226A8 071:257 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1838ms total)
T226A8 071:258 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 33  returns 0x01 (0001ms, 1839ms total)
T226A8 071:277 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 84 42  returns 0x04 (0001ms, 1840ms total)
T226A8 071:296 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1841ms total)
T226A8 071:297 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 43  returns 0x01 (0001ms, 1842ms total)
T226A8 071:316 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1843ms total)
T226A8 071:335 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1844ms total)
T226A8 071:336 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 3F D3 03 00  returns 0x04 (0000ms, 1844ms total)
T226A8 071:336 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0001ms, 1845ms total)
T226A8 071:355 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 91 EC 03 00  returns 0x04 (0001ms, 1846ms total)
T226A8 071:383 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: F7 E9 03 00  returns 0x04 (0001ms, 1847ms total)
T226A8 071:393 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: E6 0A  returns 0x02 (0001ms, 1848ms total)
T226A8 071:394 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 01 00  returns 0x02 (0001ms, 1849ms total)
T226A8 071:404 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 00  returns 0x01 (0001ms, 1850ms total)
T26738 071:405 JLINK_IsHalted()  returns FALSE (0000ms, 1850ms total)
T26738 071:506 JLINK_IsHalted()  returns FALSE (0000ms, 1850ms total)
T26738 071:607 JLINK_IsHalted()  returns FALSE (0000ms, 1850ms total)
T26738 071:709 JLINK_IsHalted()  returns FALSE (0000ms, 1850ms total)
T226A8 071:829 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 1850ms total)
T226A8 071:838 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 43 00 00 00  returns 0x04 (0001ms, 1851ms total)
T226A8 071:848 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1852ms total)
T226A8 071:849 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 33  returns 0x01 (0000ms, 1852ms total)
T226A8 071:858 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 84 42  returns 0x04 (0001ms, 1853ms total)
T226A8 071:868 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0000ms, 1853ms total)
T226A8 071:869 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 43  returns 0x01 (0000ms, 1853ms total)
T226A8 071:878 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1854ms total)
T226A8 071:897 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 1854ms total)
T226A8 071:897 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 3F D3 03 00  returns 0x04 (0001ms, 1855ms total)
T226A8 071:898 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0001ms, 1856ms total)
T226A8 071:908 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 91 EC 03 00  returns 0x04 (0000ms, 1856ms total)
T226A8 071:935 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: F7 E9 03 00  returns 0x04 (0001ms, 1857ms total)
T226A8 071:945 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: E6 0A  returns 0x02 (0000ms, 1857ms total)
T226A8 071:945 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 01 00  returns 0x02 (0001ms, 1858ms total)
T226A8 071:955 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 00  returns 0x01 (0000ms, 1858ms total)
T26738 071:955 JLINK_IsHalted()  returns FALSE (0001ms, 1859ms total)
T26738 072:058 JLINK_IsHalted()  returns FALSE (0000ms, 1858ms total)
T26738 072:159 JLINK_IsHalted()  returns FALSE (0000ms, 1858ms total)
T26738 072:260 JLINK_IsHalted()  returns FALSE (0000ms, 1858ms total)
T226A8 072:379 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1859ms total)
T226A8 072:390 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 44 00 00 00  returns 0x04 (0000ms, 1859ms total)
T226A8 072:399 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1860ms total)
T226A8 072:400 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 34  returns 0x01 (0000ms, 1860ms total)
T226A8 072:409 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 86 42  returns 0x04 (0000ms, 1860ms total)
T226A8 072:418 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1861ms total)
T226A8 072:419 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 44  returns 0x01 (0001ms, 1862ms total)
T226A8 072:428 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1863ms total)
T226A8 072:446 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1864ms total)
T226A8 072:447 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 3F D3 03 00  returns 0x04 (0001ms, 1865ms total)
T226A8 072:448 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0000ms, 1865ms total)
T226A8 072:458 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0000ms, 1865ms total)
T226A8 072:485 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0000ms, 1865ms total)
T226A8 072:494 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: E6 0A  returns 0x02 (0001ms, 1866ms total)
T226A8 072:495 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0000ms, 1866ms total)
T226A8 072:504 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 00  returns 0x01 (0001ms, 1867ms total)
T26738 072:505 JLINK_IsHalted()  returns FALSE (0001ms, 1868ms total)
T26738 072:606 JLINK_IsHalted()  returns FALSE (0000ms, 1867ms total)
T26738 072:707 JLINK_IsHalted()  returns FALSE (0000ms, 1867ms total)
T26738 072:809 JLINK_IsHalted()  returns FALSE (0000ms, 1867ms total)
T226A8 072:929 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 1867ms total)
T226A8 072:938 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 44 00 00 00  returns 0x04 (0001ms, 1868ms total)
T226A8 072:947 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1869ms total)
T226A8 072:948 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 34  returns 0x01 (0000ms, 1869ms total)
T226A8 072:957 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 86 42  returns 0x04 (0001ms, 1870ms total)
T226A8 072:967 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1871ms total)
T226A8 072:968 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 44  returns 0x01 (0001ms, 1872ms total)
T226A8 072:977 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1873ms total)
T226A8 072:996 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 1873ms total)
T226A8 072:996 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 3F D3 03 00  returns 0x04 (0001ms, 1874ms total)
T226A8 072:997 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0001ms, 1875ms total)
T226A8 073:006 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0001ms, 1876ms total)
T226A8 073:034 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0000ms, 1876ms total)
T226A8 073:043 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: E6 0A  returns 0x02 (0001ms, 1877ms total)
T226A8 073:044 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0000ms, 1877ms total)
T226A8 073:053 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 00  returns 0x01 (0000ms, 1877ms total)
T26738 073:053 JLINK_IsHalted()  returns FALSE (0001ms, 1878ms total)
T26738 073:156 JLINK_IsHalted()  returns FALSE (0000ms, 1877ms total)
T26738 073:257 JLINK_IsHalted()  returns FALSE (0000ms, 1877ms total)
T26738 073:358 JLINK_IsHalted()  returns FALSE (0000ms, 1877ms total)
T226A8 073:478 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 1877ms total)
T226A8 073:487 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 45 00 00 00  returns 0x04 (0001ms, 1878ms total)
T226A8 073:496 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1879ms total)
T226A8 073:497 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 35  returns 0x01 (0001ms, 1880ms total)
T226A8 073:506 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 88 42  returns 0x04 (0001ms, 1881ms total)
T226A8 073:516 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1882ms total)
T226A8 073:517 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 45  returns 0x01 (0000ms, 1882ms total)
T226A8 073:526 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1883ms total)
T226A8 073:545 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1884ms total)
T226A8 073:546 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 3F D3 03 00  returns 0x04 (0000ms, 1884ms total)
T226A8 073:546 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0001ms, 1885ms total)
T226A8 073:556 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 91 EC 03 00  returns 0x04 (0001ms, 1886ms total)
T226A8 073:583 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: F7 E9 03 00  returns 0x04 (0001ms, 1887ms total)
T226A8 073:592 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: E6 0A  returns 0x02 (0001ms, 1888ms total)
T226A8 073:593 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 03 00  returns 0x02 (0001ms, 1889ms total)
T226A8 073:603 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 00  returns 0x01 (0000ms, 1889ms total)
T26738 073:603 JLINK_IsHalted()  returns FALSE (0001ms, 1890ms total)
T26738 073:705 JLINK_IsHalted()  returns FALSE (0000ms, 1889ms total)
T26738 073:806 JLINK_IsHalted()  returns FALSE (0000ms, 1889ms total)
T26738 073:907 JLINK_IsHalted()  returns FALSE (0000ms, 1889ms total)
T226A8 074:026 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1890ms total)
T226A8 074:036 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 45 00 00 00  returns 0x04 (0000ms, 1890ms total)
T226A8 074:045 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 1890ms total)
T226A8 074:045 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 35  returns 0x01 (0001ms, 1891ms total)
T226A8 074:055 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 88 42  returns 0x04 (0000ms, 1891ms total)
T226A8 074:064 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1892ms total)
T226A8 074:065 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 45  returns 0x01 (0001ms, 1893ms total)
T226A8 074:075 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 1893ms total)
T226A8 074:094 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1894ms total)
T226A8 074:095 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 3F D3 03 00  returns 0x04 (0001ms, 1895ms total)
T226A8 074:096 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0000ms, 1895ms total)
T226A8 074:105 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 91 EC 03 00  returns 0x04 (0001ms, 1896ms total)
T226A8 074:132 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: F7 E9 03 00  returns 0x04 (0001ms, 1897ms total)
T226A8 074:141 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: E6 0A  returns 0x02 (0001ms, 1898ms total)
T226A8 074:142 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 04 00  returns 0x02 (0001ms, 1899ms total)
T226A8 074:160 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 00  returns 0x01 (0001ms, 1900ms total)
T26738 074:161 JLINK_IsHalted()  returns FALSE (0000ms, 1900ms total)
T26738 074:262 JLINK_IsHalted()  returns FALSE (0000ms, 1900ms total)
T26738 074:363 JLINK_IsHalted()  returns FALSE (0000ms, 1900ms total)
T26738 074:464 JLINK_IsHalted()  returns FALSE (0000ms, 1900ms total)
T226A8 074:584 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1901ms total)
T226A8 074:594 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 46 00 00 00  returns 0x04 (0001ms, 1902ms total)
T226A8 074:603 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1903ms total)
T226A8 074:604 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 36  returns 0x01 (0001ms, 1904ms total)
T226A8 074:613 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 8A 42  returns 0x04 (0001ms, 1905ms total)
T226A8 074:623 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0000ms, 1905ms total)
T226A8 074:623 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 46  returns 0x01 (0001ms, 1906ms total)
T226A8 074:633 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1907ms total)
T226A8 074:651 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1908ms total)
T226A8 074:652 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 3F D3 03 00  returns 0x04 (0000ms, 1908ms total)
T226A8 074:652 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0001ms, 1909ms total)
T226A8 074:662 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0001ms, 1910ms total)
T226A8 074:690 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0000ms, 1910ms total)
T226A8 074:699 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: E6 0A  returns 0x02 (0001ms, 1911ms total)
T226A8 074:700 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 04 00  returns 0x02 (0001ms, 1912ms total)
T226A8 074:710 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 00  returns 0x01 (0000ms, 1912ms total)
T26738 074:711 JLINK_IsHalted()  returns FALSE (0000ms, 1912ms total)
T26738 074:812 JLINK_IsHalted()  returns FALSE (0001ms, 1913ms total)
T26738 074:914 JLINK_IsHalted()  returns FALSE (0000ms, 1912ms total)
T26738 075:015 JLINK_IsHalted()  returns FALSE (0000ms, 1912ms total)
T226A8 075:134 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1913ms total)
T226A8 075:144 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 47 00 00 00  returns 0x04 (0001ms, 1914ms total)
T226A8 075:163 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1915ms total)
T226A8 075:164 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 37  returns 0x01 (0001ms, 1916ms total)
T226A8 075:183 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 8C 42  returns 0x04 (0001ms, 1917ms total)
T226A8 075:202 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0000ms, 1917ms total)
T226A8 075:202 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 47  returns 0x01 (0001ms, 1918ms total)
T226A8 075:221 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1919ms total)
T226A8 075:241 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1920ms total)
T226A8 075:242 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 3F D3 03 00  returns 0x04 (0001ms, 1921ms total)
T226A8 075:243 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: F9 F8 03 00  returns 0x04 (0000ms, 1921ms total)
T226A8 075:263 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 15 FA 03 00  returns 0x04 (0000ms, 1921ms total)
T226A8 075:299 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 79 F7 03 00  returns 0x04 (0001ms, 1922ms total)
T226A8 075:318 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: E6 0A  returns 0x02 (0000ms, 1922ms total)
T226A8 075:318 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 05 00  returns 0x02 (0001ms, 1923ms total)
T226A8 075:328 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 00  returns 0x01 (0001ms, 1924ms total)
T26738 075:329 JLINK_IsHalted()  returns FALSE (0000ms, 1924ms total)
T26738 075:430 JLINK_IsHalted()  returns FALSE (0000ms, 1924ms total)
T26738 075:531 JLINK_IsHalted()  returns FALSE (0000ms, 1924ms total)
T226A8 075:652 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 1924ms total)
T226A8 075:663 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 47 00 00 00  returns 0x04 (0001ms, 1925ms total)
T226A8 075:672 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1926ms total)
T226A8 075:673 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 37  returns 0x01 (0001ms, 1927ms total)
T226A8 075:683 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 8C 42  returns 0x04 (0000ms, 1927ms total)
T226A8 075:692 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1928ms total)
T226A8 075:693 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 47  returns 0x01 (0000ms, 1928ms total)
T226A8 075:702 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1929ms total)
T226A8 075:722 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1930ms total)
T226A8 075:723 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 3F D3 03 00  returns 0x04 (0001ms, 1931ms total)
T226A8 075:724 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: F9 F8 03 00  returns 0x04 (0000ms, 1931ms total)
T226A8 075:733 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 15 FA 03 00  returns 0x04 (0001ms, 1932ms total)
T226A8 075:761 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 79 F7 03 00  returns 0x04 (0000ms, 1932ms total)
T226A8 075:771 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: E6 0A  returns 0x02 (0000ms, 1932ms total)
T226A8 075:771 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 05 00  returns 0x02 (0001ms, 1933ms total)
T226A8 075:781 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 00  returns 0x01 (0001ms, 1934ms total)
T26738 075:782 JLINK_IsHalted()  returns FALSE (0000ms, 1934ms total)
T26738 075:883 JLINK_IsHalted()  returns FALSE (0000ms, 1934ms total)
T26738 075:984 JLINK_IsHalted()  returns FALSE (0000ms, 1934ms total)
T26738 076:086 JLINK_IsHalted()  returns FALSE (0000ms, 1934ms total)
T226A8 076:206 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1935ms total)
T226A8 076:216 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 48 00 00 00  returns 0x04 (0000ms, 1935ms total)
T226A8 076:226 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1936ms total)
T226A8 076:227 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 38  returns 0x01 (0000ms, 1936ms total)
T226A8 076:236 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 8E 42  returns 0x04 (0001ms, 1937ms total)
T226A8 076:246 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1938ms total)
T226A8 076:247 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 48  returns 0x01 (0001ms, 1939ms total)
T226A8 076:258 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 1939ms total)
T226A8 076:277 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1940ms total)
T226A8 076:278 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 3F D3 03 00  returns 0x04 (0000ms, 1940ms total)
T226A8 076:278 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0001ms, 1941ms total)
T226A8 076:288 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0001ms, 1942ms total)
T226A8 076:316 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0000ms, 1942ms total)
T226A8 076:325 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: EE 0A  returns 0x02 (0001ms, 1943ms total)
T226A8 076:335 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 00 00  returns 0x02 (0001ms, 1944ms total)
T226A8 076:344 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 00  returns 0x01 (0001ms, 1945ms total)
T26738 076:345 JLINK_IsHalted()  returns FALSE (0001ms, 1946ms total)
T26738 076:448 JLINK_IsHalted()  returns FALSE (0000ms, 1945ms total)
T26738 076:549 JLINK_IsHalted()  returns FALSE (0000ms, 1945ms total)
T26738 076:650 JLINK_IsHalted()  returns FALSE (0000ms, 1945ms total)
T226A8 076:771 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1946ms total)
T226A8 076:781 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 48 00 00 00  returns 0x04 (0000ms, 1946ms total)
T226A8 076:790 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1947ms total)
T226A8 076:791 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 38  returns 0x01 (0001ms, 1948ms total)
T226A8 076:800 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 8E 42  returns 0x04 (0001ms, 1949ms total)
T226A8 076:810 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1950ms total)
T226A8 076:811 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 48  returns 0x01 (0000ms, 1950ms total)
T226A8 076:820 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1951ms total)
T226A8 076:839 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 1951ms total)
T226A8 076:839 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 3F D3 03 00  returns 0x04 (0001ms, 1952ms total)
T226A8 076:840 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0001ms, 1953ms total)
T226A8 076:850 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0001ms, 1954ms total)
T226A8 076:878 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0001ms, 1955ms total)
T226A8 076:888 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: EE 0A  returns 0x02 (0001ms, 1956ms total)
T226A8 076:898 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 00 00  returns 0x02 (0000ms, 1956ms total)
T226A8 076:907 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 00  returns 0x01 (0001ms, 1957ms total)
T26738 076:908 JLINK_IsHalted()  returns FALSE (0000ms, 1957ms total)
T26738 077:010 JLINK_IsHalted()  returns FALSE (0000ms, 1957ms total)
T26738 077:111 JLINK_IsHalted()  returns FALSE (0000ms, 1957ms total)
T26738 077:212 JLINK_IsHalted()  returns FALSE (0000ms, 1957ms total)
T226A8 077:333 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 1957ms total)
T226A8 077:342 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 49 00 00 00  returns 0x04 (0001ms, 1958ms total)
T226A8 077:352 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 1958ms total)
T226A8 077:352 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 38  returns 0x01 (0001ms, 1959ms total)
T226A8 077:353 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 90 42  returns 0x04 (0001ms, 1960ms total)
T226A8 077:362 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1961ms total)
T226A8 077:363 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 49  returns 0x01 (0001ms, 1962ms total)
T226A8 077:372 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1963ms total)
T226A8 077:391 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 1963ms total)
T226A8 077:391 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 59 7D 03 00  returns 0x04 (0001ms, 1964ms total)
T226A8 077:401 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0000ms, 1964ms total)
T226A8 077:401 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 75 7E 03 00  returns 0x04 (0001ms, 1965ms total)
T226A8 077:428 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 21 DF 00 00  returns 0x04 (0001ms, 1966ms total)
T226A8 077:438 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: EE 0A  returns 0x02 (0000ms, 1966ms total)
T226A8 077:438 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 01 00  returns 0x02 (0001ms, 1967ms total)
T226A8 077:448 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 00  returns 0x01 (0001ms, 1968ms total)
T26738 077:449 JLINK_IsHalted()  returns FALSE (0001ms, 1969ms total)
T26738 077:551 JLINK_IsHalted()  returns FALSE (0000ms, 1968ms total)
T26738 077:652 JLINK_IsHalted()  returns FALSE (0000ms, 1968ms total)
T26738 077:754 JLINK_IsHalted()  returns FALSE (0000ms, 1968ms total)
T226A8 077:874 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1969ms total)
T226A8 077:883 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 49 00 00 00  returns 0x04 (0001ms, 1970ms total)
T226A8 077:893 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 1970ms total)
T226A8 077:893 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 38  returns 0x01 (0001ms, 1971ms total)
T226A8 077:894 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 90 42  returns 0x04 (0001ms, 1972ms total)
T226A8 077:904 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0000ms, 1972ms total)
T226A8 077:905 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 49  returns 0x01 (0000ms, 1972ms total)
T226A8 077:914 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1973ms total)
T226A8 077:933 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1974ms total)
T226A8 077:934 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 59 7D 03 00  returns 0x04 (0000ms, 1974ms total)
T226A8 077:943 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0001ms, 1975ms total)
T226A8 077:944 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 75 7E 03 00  returns 0x04 (0001ms, 1976ms total)
T226A8 077:971 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 21 DF 00 00  returns 0x04 (0001ms, 1977ms total)
T226A8 077:981 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: EE 0A  returns 0x02 (0000ms, 1977ms total)
T226A8 077:981 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 01 00  returns 0x02 (0001ms, 1978ms total)
T226A8 077:991 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 00  returns 0x01 (0000ms, 1978ms total)
T26738 077:991 JLINK_IsHalted()  returns FALSE (0001ms, 1979ms total)
T26738 078:094 JLINK_IsHalted()  returns FALSE (0000ms, 1978ms total)
T26738 078:195 JLINK_IsHalted()  returns FALSE (0000ms, 1978ms total)
T26738 078:296 JLINK_IsHalted()  returns FALSE (0000ms, 1978ms total)
T226A8 078:416 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1979ms total)
T226A8 078:426 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 4A 00 00 00  returns 0x04 (0000ms, 1979ms total)
T226A8 078:435 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1980ms total)
T226A8 078:436 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 39  returns 0x01 (0000ms, 1980ms total)
T226A8 078:445 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 92 42  returns 0x04 (0001ms, 1981ms total)
T226A8 078:455 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0000ms, 1981ms total)
T226A8 078:455 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 4A  returns 0x01 (0001ms, 1982ms total)
T226A8 078:465 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 1982ms total)
T226A8 078:484 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1983ms total)
T226A8 078:485 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 59 7D 03 00  returns 0x04 (0000ms, 1983ms total)
T226A8 078:485 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0001ms, 1984ms total)
T226A8 078:486 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0001ms, 1985ms total)
T226A8 078:513 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0001ms, 1986ms total)
T226A8 078:522 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: EE 0A  returns 0x02 (0001ms, 1987ms total)
T226A8 078:523 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0001ms, 1988ms total)
T226A8 078:533 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 00  returns 0x01 (0000ms, 1988ms total)
T26738 078:533 JLINK_IsHalted()  returns FALSE (0001ms, 1989ms total)
T26738 078:635 JLINK_IsHalted()  returns FALSE (0000ms, 1988ms total)
T26738 078:736 JLINK_IsHalted()  returns FALSE (0000ms, 1988ms total)
T26738 078:838 JLINK_IsHalted()  returns FALSE (0000ms, 1988ms total)
T226A8 078:959 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 1988ms total)
T226A8 078:969 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 4A 00 00 00  returns 0x04 (0000ms, 1988ms total)
T226A8 078:978 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 1989ms total)
T226A8 078:979 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 39  returns 0x01 (0000ms, 1989ms total)
T226A8 078:988 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 92 42  returns 0x04 (0001ms, 1990ms total)
T226A8 078:997 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 1991ms total)
T226A8 078:998 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 4A  returns 0x01 (0000ms, 1991ms total)
T226A8 079:007 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 1992ms total)
T226A8 079:025 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 1993ms total)
T226A8 079:026 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 59 7D 03 00  returns 0x04 (0000ms, 1993ms total)
T226A8 079:026 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0001ms, 1994ms total)
T226A8 079:027 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0001ms, 1995ms total)
T226A8 079:054 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0001ms, 1996ms total)
T226A8 079:063 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: EE 0A  returns 0x02 (0001ms, 1997ms total)
T226A8 079:064 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0001ms, 1998ms total)
T226A8 079:074 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 00  returns 0x01 (0000ms, 1998ms total)
T26738 079:074 JLINK_IsHalted()  returns FALSE (0001ms, 1999ms total)
T26738 079:176 JLINK_IsHalted()  returns FALSE (0000ms, 1998ms total)
T26738 079:278 JLINK_IsHalted()  returns FALSE (0000ms, 1998ms total)
T26738 079:379 JLINK_IsHalted()  returns FALSE (0000ms, 1998ms total)
T226A8 079:498 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1999ms total)
T226A8 079:508 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 4B 00 00 00  returns 0x04 (0001ms, 2000ms total)
T226A8 079:518 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 2000ms total)
T226A8 079:518 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 39  returns 0x01 (0001ms, 2001ms total)
T226A8 079:519 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 94 42  returns 0x04 (0001ms, 2002ms total)
T226A8 079:529 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0000ms, 2002ms total)
T226A8 079:529 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 4B  returns 0x01 (0001ms, 2003ms total)
T226A8 079:539 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2004ms total)
T226A8 079:558 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 2004ms total)
T226A8 079:558 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: B3 74 03 00  returns 0x04 (0001ms, 2005ms total)
T226A8 079:568 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0001ms, 2006ms total)
T226A8 079:569 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: CF 75 03 00  returns 0x04 (0000ms, 2006ms total)
T226A8 079:596 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 21 DF 00 00  returns 0x04 (0000ms, 2006ms total)
T226A8 079:605 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: EE 0A  returns 0x02 (0001ms, 2007ms total)
T226A8 079:606 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 03 00  returns 0x02 (0000ms, 2007ms total)
T226A8 079:615 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 00  returns 0x01 (0001ms, 2008ms total)
T26738 079:616 JLINK_IsHalted()  returns FALSE (0002ms, 2010ms total)
T26738 079:718 JLINK_IsHalted()  returns FALSE (0000ms, 2008ms total)
T26738 079:820 JLINK_IsHalted()  returns FALSE (0000ms, 2008ms total)
T26738 079:921 JLINK_IsHalted()  returns FALSE (0000ms, 2008ms total)
T226A8 080:042 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 2008ms total)
T226A8 080:052 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 4B 00 00 00  returns 0x04 (0001ms, 2010ms total)
T226A8 080:062 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 2010ms total)
T226A8 080:062 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 39  returns 0x01 (0001ms, 2011ms total)
T226A8 080:063 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 94 42  returns 0x04 (0001ms, 2012ms total)
T226A8 080:073 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2013ms total)
T226A8 080:074 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 4B  returns 0x01 (0001ms, 2014ms total)
T226A8 080:084 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2015ms total)
T226A8 080:103 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2016ms total)
T226A8 080:104 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: B3 74 03 00  returns 0x04 (0000ms, 2016ms total)
T226A8 080:113 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0001ms, 2017ms total)
T226A8 080:114 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: CF 75 03 00  returns 0x04 (0001ms, 2018ms total)
T226A8 080:142 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0B F3 03 00  returns 0x04 (0000ms, 2018ms total)
T226A8 080:160 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: EE 0A  returns 0x02 (0001ms, 2019ms total)
T226A8 080:161 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 04 00  returns 0x02 (0001ms, 2020ms total)
T226A8 080:181 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 00  returns 0x01 (0000ms, 2020ms total)
T26738 080:181 JLINK_IsHalted()  returns FALSE (0001ms, 2021ms total)
T26738 080:284 JLINK_IsHalted()  returns FALSE (0000ms, 2020ms total)
T26738 080:385 JLINK_IsHalted()  returns FALSE (0000ms, 2020ms total)
T26738 080:486 JLINK_IsHalted()  returns FALSE (0000ms, 2020ms total)
T226A8 080:607 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 2020ms total)
T226A8 080:616 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 4C 00 00 00  returns 0x04 (0001ms, 2021ms total)
T226A8 080:626 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2022ms total)
T226A8 080:627 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 3A  returns 0x01 (0000ms, 2022ms total)
T226A8 080:636 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 96 42  returns 0x04 (0001ms, 2023ms total)
T226A8 080:646 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2024ms total)
T226A8 080:647 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 4C  returns 0x01 (0000ms, 2024ms total)
T226A8 080:656 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2025ms total)
T226A8 080:676 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2026ms total)
T226A8 080:677 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: B3 74 03 00  returns 0x04 (0000ms, 2026ms total)
T226A8 080:677 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8B F4 03 00  returns 0x04 (0001ms, 2027ms total)
T226A8 080:687 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A7 F5 03 00  returns 0x04 (0001ms, 2028ms total)
T226A8 080:714 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0B F3 03 00  returns 0x04 (0001ms, 2029ms total)
T226A8 080:724 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: EE 0A  returns 0x02 (0000ms, 2029ms total)
T226A8 080:724 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 04 00  returns 0x02 (0001ms, 2030ms total)
T226A8 080:734 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 00  returns 0x01 (0001ms, 2031ms total)
T26738 080:735 JLINK_IsHalted()  returns FALSE (0000ms, 2031ms total)
T26738 080:836 JLINK_IsHalted()  returns FALSE (0000ms, 2031ms total)
T26738 080:937 JLINK_IsHalted()  returns FALSE (0000ms, 2031ms total)
T26738 081:039 JLINK_IsHalted()  returns FALSE (0000ms, 2031ms total)
T226A8 081:161 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 2031ms total)
T226A8 081:171 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 4D 00 00 00  returns 0x04 (0001ms, 2032ms total)
T226A8 081:190 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 2032ms total)
T226A8 081:190 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 3B  returns 0x01 (0001ms, 2033ms total)
T226A8 081:210 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 98 42  returns 0x04 (0000ms, 2033ms total)
T226A8 081:229 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2034ms total)
T226A8 081:230 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 4D  returns 0x01 (0000ms, 2034ms total)
T226A8 081:249 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2035ms total)
T226A8 081:269 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2036ms total)
T226A8 081:270 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: B3 74 03 00  returns 0x04 (0000ms, 2036ms total)
T226A8 081:270 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 1B D6 02 00  returns 0x04 (0001ms, 2037ms total)
T226A8 081:290 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 37 D7 02 00  returns 0x04 (0000ms, 2037ms total)
T226A8 081:327 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 29 D5 02 00  returns 0x04 (0001ms, 2038ms total)
T226A8 081:337 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: EE 0A  returns 0x02 (0001ms, 2039ms total)
T226A8 081:338 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 05 00  returns 0x02 (0000ms, 2039ms total)
T226A8 081:347 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 00  returns 0x01 (0001ms, 2040ms total)
T26738 081:348 JLINK_IsHalted()  returns FALSE (0001ms, 2041ms total)
T26738 081:450 JLINK_IsHalted()  returns FALSE (0000ms, 2040ms total)
T26738 081:552 JLINK_IsHalted()  returns FALSE (0000ms, 2040ms total)
T226A8 081:672 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2041ms total)
T226A8 081:682 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 4D 00 00 00  returns 0x04 (0001ms, 2042ms total)
T226A8 081:692 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2043ms total)
T226A8 081:693 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 3B  returns 0x01 (0001ms, 2044ms total)
T226A8 081:703 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 98 42  returns 0x04 (0000ms, 2044ms total)
T226A8 081:712 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2045ms total)
T226A8 081:713 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 4D  returns 0x01 (0001ms, 2046ms total)
T226A8 081:723 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2047ms total)
T226A8 081:742 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2048ms total)
T226A8 081:743 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: B3 74 03 00  returns 0x04 (0001ms, 2049ms total)
T226A8 081:744 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 1B D6 02 00  returns 0x04 (0000ms, 2049ms total)
T226A8 081:753 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 37 D7 02 00  returns 0x04 (0001ms, 2050ms total)
T226A8 081:781 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 29 D5 02 00  returns 0x04 (0000ms, 2050ms total)
T226A8 081:790 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: EE 0A  returns 0x02 (0001ms, 2051ms total)
T226A8 081:791 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 05 00  returns 0x02 (0001ms, 2052ms total)
T226A8 081:801 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 00  returns 0x01 (0001ms, 2053ms total)
T26738 081:802 JLINK_IsHalted()  returns FALSE (0000ms, 2053ms total)
T26738 081:904 JLINK_IsHalted()  returns FALSE (0000ms, 2053ms total)
T26738 082:004 JLINK_IsHalted()  returns FALSE (0000ms, 2053ms total)
T26738 082:106 JLINK_IsHalted()  returns FALSE (0000ms, 2053ms total)
T226A8 082:226 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2054ms total)
T226A8 082:236 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 4E 00 00 00  returns 0x04 (0001ms, 2055ms total)
T226A8 082:245 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2056ms total)
T226A8 082:246 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 3B  returns 0x01 (0001ms, 2057ms total)
T226A8 082:247 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 9A 42  returns 0x04 (0000ms, 2057ms total)
T226A8 082:256 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2058ms total)
T226A8 082:257 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 4E  returns 0x01 (0000ms, 2058ms total)
T226A8 082:267 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 2058ms total)
T226A8 082:285 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2059ms total)
T226A8 082:286 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 3D C5 03 00  returns 0x04 (0001ms, 2060ms total)
T226A8 082:295 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 1B D6 02 00  returns 0x04 (0001ms, 2061ms total)
T226A8 082:296 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 59 C6 03 00  returns 0x04 (0000ms, 2061ms total)
T226A8 082:322 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 31 DF 00 00  returns 0x04 (0001ms, 2062ms total)
T226A8 082:332 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: F2 0A  returns 0x02 (0000ms, 2062ms total)
T226A8 082:341 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 00 00  returns 0x02 (0001ms, 2063ms total)
T226A8 082:350 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 00  returns 0x01 (0001ms, 2064ms total)
T26738 082:351 JLINK_IsHalted()  returns FALSE (0001ms, 2065ms total)
T26738 082:454 JLINK_IsHalted()  returns FALSE (0000ms, 2064ms total)
T26738 082:555 JLINK_IsHalted()  returns FALSE (0000ms, 2064ms total)
T26738 082:656 JLINK_IsHalted()  returns FALSE (0000ms, 2064ms total)
T226A8 082:777 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 2064ms total)
T226A8 082:787 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 4E 00 00 00  returns 0x04 (0000ms, 2064ms total)
T226A8 082:796 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2065ms total)
T226A8 082:797 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 3B  returns 0x01 (0000ms, 2065ms total)
T226A8 082:797 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 9A 42  returns 0x04 (0001ms, 2066ms total)
T226A8 082:807 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2067ms total)
T226A8 082:808 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 4E  returns 0x01 (0000ms, 2067ms total)
T226A8 082:818 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2068ms total)
T226A8 082:836 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2069ms total)
T226A8 082:837 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 3D C5 03 00  returns 0x04 (0001ms, 2070ms total)
T226A8 082:846 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 1B D6 02 00  returns 0x04 (0001ms, 2071ms total)
T226A8 082:847 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 59 C6 03 00  returns 0x04 (0001ms, 2072ms total)
T226A8 082:874 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 31 DF 00 00  returns 0x04 (0001ms, 2073ms total)
T226A8 082:883 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: F2 0A  returns 0x02 (0001ms, 2074ms total)
T226A8 082:893 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 00 00  returns 0x02 (0001ms, 2075ms total)
T226A8 082:902 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 00  returns 0x01 (0001ms, 2076ms total)
T26738 082:903 JLINK_IsHalted()  returns FALSE (0001ms, 2077ms total)
T26738 083:005 JLINK_IsHalted()  returns FALSE (0000ms, 2076ms total)
T26738 083:106 JLINK_IsHalted()  returns FALSE (0000ms, 2076ms total)
T26738 083:207 JLINK_IsHalted()  returns FALSE (0000ms, 2076ms total)
T226A8 083:326 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2077ms total)
T226A8 083:337 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 4F 00 00 00  returns 0x04 (0000ms, 2077ms total)
T226A8 083:346 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2078ms total)
T226A8 083:347 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 3C  returns 0x01 (0001ms, 2079ms total)
T226A8 083:357 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 9C 42  returns 0x04 (0001ms, 2080ms total)
T226A8 083:367 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0000ms, 2080ms total)
T226A8 083:367 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 4F  returns 0x01 (0001ms, 2081ms total)
T226A8 083:378 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2082ms total)
T226A8 083:397 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2083ms total)
T226A8 083:398 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 3D C5 03 00  returns 0x04 (0001ms, 2084ms total)
T226A8 083:399 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0000ms, 2084ms total)
T226A8 083:408 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 91 EC 03 00  returns 0x04 (0001ms, 2085ms total)
T226A8 083:435 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: F7 E9 03 00  returns 0x04 (0001ms, 2086ms total)
T226A8 083:445 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: F2 0A  returns 0x02 (0000ms, 2086ms total)
T226A8 083:445 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 01 00  returns 0x02 (0001ms, 2087ms total)
T226A8 083:455 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 00  returns 0x01 (0000ms, 2087ms total)
T26738 083:455 JLINK_IsHalted()  returns FALSE (0001ms, 2088ms total)
T26738 083:557 JLINK_IsHalted()  returns FALSE (0000ms, 2087ms total)
T26738 083:658 JLINK_IsHalted()  returns FALSE (0000ms, 2087ms total)
T26738 083:760 JLINK_IsHalted()  returns FALSE (0000ms, 2087ms total)
T226A8 083:880 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 2087ms total)
T226A8 083:889 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 4F 00 00 00  returns 0x04 (0001ms, 2088ms total)
T226A8 083:898 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2089ms total)
T226A8 083:899 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 3C  returns 0x01 (0001ms, 2090ms total)
T226A8 083:909 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 9C 42  returns 0x04 (0000ms, 2090ms total)
T226A8 083:918 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2091ms total)
T226A8 083:919 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 4F  returns 0x01 (0000ms, 2091ms total)
T226A8 083:929 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 2091ms total)
T226A8 083:947 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2092ms total)
T226A8 083:948 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 3D C5 03 00  returns 0x04 (0001ms, 2093ms total)
T226A8 083:949 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0001ms, 2094ms total)
T226A8 083:959 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 91 EC 03 00  returns 0x04 (0000ms, 2094ms total)
T226A8 083:986 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: F7 E9 03 00  returns 0x04 (0001ms, 2095ms total)
T226A8 083:996 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: F2 0A  returns 0x02 (0000ms, 2095ms total)
T226A8 083:996 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 01 00  returns 0x02 (0001ms, 2096ms total)
T226A8 084:006 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 00  returns 0x01 (0000ms, 2096ms total)
T26738 084:006 JLINK_IsHalted()  returns FALSE (0001ms, 2097ms total)
T26738 084:109 JLINK_IsHalted()  returns FALSE (0000ms, 2096ms total)
T26738 084:210 JLINK_IsHalted()  returns FALSE (0000ms, 2096ms total)
T26738 084:311 JLINK_IsHalted()  returns FALSE (0000ms, 2096ms total)
T226A8 084:430 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2097ms total)
T226A8 084:440 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 50 00 00 00  returns 0x04 (0001ms, 2098ms total)
T226A8 084:450 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 2098ms total)
T226A8 084:450 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 3D  returns 0x01 (0001ms, 2099ms total)
T226A8 084:460 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 9E 42  returns 0x04 (0000ms, 2099ms total)
T226A8 084:469 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2100ms total)
T226A8 084:470 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 50  returns 0x01 (0001ms, 2101ms total)
T226A8 084:479 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2102ms total)
T226A8 084:498 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2103ms total)
T226A8 084:499 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 3D C5 03 00  returns 0x04 (0001ms, 2104ms total)
T226A8 084:500 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0000ms, 2104ms total)
T226A8 084:509 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0001ms, 2105ms total)
T226A8 084:536 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0001ms, 2106ms total)
T226A8 084:546 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: F2 0A  returns 0x02 (0001ms, 2107ms total)
T226A8 084:547 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0000ms, 2107ms total)
T226A8 084:556 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 00  returns 0x01 (0001ms, 2108ms total)
T26738 084:557 JLINK_IsHalted()  returns FALSE (0000ms, 2108ms total)
T26738 084:658 JLINK_IsHalted()  returns FALSE (0000ms, 2108ms total)
T26738 084:759 JLINK_IsHalted()  returns FALSE (0000ms, 2108ms total)
T26738 084:860 JLINK_IsHalted()  returns FALSE (0000ms, 2108ms total)
T226A8 084:982 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 2108ms total)
T226A8 084:991 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 50 00 00 00  returns 0x04 (0001ms, 2109ms total)
T226A8 085:001 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2110ms total)
T226A8 085:002 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 3D  returns 0x01 (0000ms, 2110ms total)
T226A8 085:011 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 9E 42  returns 0x04 (0001ms, 2111ms total)
T226A8 085:021 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2112ms total)
T226A8 085:022 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 50  returns 0x01 (0000ms, 2112ms total)
T226A8 085:031 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2113ms total)
T226A8 085:050 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2114ms total)
T226A8 085:051 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 3D C5 03 00  returns 0x04 (0001ms, 2115ms total)
T226A8 085:052 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0000ms, 2115ms total)
T226A8 085:062 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0000ms, 2115ms total)
T226A8 085:090 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0000ms, 2115ms total)
T226A8 085:099 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: F2 0A  returns 0x02 (0001ms, 2116ms total)
T226A8 085:100 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0000ms, 2116ms total)
T226A8 085:110 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 00  returns 0x01 (0000ms, 2116ms total)
T26738 085:110 JLINK_IsHalted()  returns FALSE (0001ms, 2117ms total)
T26738 085:212 JLINK_IsHalted()  returns FALSE (0000ms, 2116ms total)
T26738 085:314 JLINK_IsHalted()  returns FALSE (0000ms, 2116ms total)
T26738 085:415 JLINK_IsHalted()  returns FALSE (0000ms, 2116ms total)
T226A8 085:535 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2117ms total)
T226A8 085:545 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 51 00 00 00  returns 0x04 (0001ms, 2118ms total)
T226A8 085:556 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2119ms total)
T226A8 085:557 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 3E  returns 0x01 (0000ms, 2119ms total)
T226A8 085:566 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 A0 42  returns 0x04 (0001ms, 2120ms total)
T226A8 085:576 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0000ms, 2120ms total)
T226A8 085:577 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 51  returns 0x01 (0000ms, 2121ms total)
T226A8 085:586 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2122ms total)
T226A8 085:605 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2123ms total)
T226A8 085:606 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 3D C5 03 00  returns 0x04 (0000ms, 2123ms total)
T226A8 085:606 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0001ms, 2124ms total)
T226A8 085:616 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 91 EC 03 00  returns 0x04 (0001ms, 2125ms total)
T226A8 085:646 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: F7 E9 03 00  returns 0x04 (0000ms, 2125ms total)
T226A8 085:655 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: F2 0A  returns 0x02 (0001ms, 2126ms total)
T226A8 085:656 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 03 00  returns 0x02 (0001ms, 2127ms total)
T226A8 085:666 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 00  returns 0x01 (0001ms, 2128ms total)
T26738 085:667 JLINK_IsHalted()  returns FALSE (0001ms, 2129ms total)
T26738 085:768 JLINK_IsHalted()  returns FALSE (0000ms, 2128ms total)
T26738 085:870 JLINK_IsHalted()  returns FALSE (0000ms, 2128ms total)
T26738 085:971 JLINK_IsHalted()  returns FALSE (0000ms, 2128ms total)
T226A8 086:091 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2129ms total)
T226A8 086:101 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 51 00 00 00  returns 0x04 (0000ms, 2129ms total)
T226A8 086:110 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2130ms total)
T226A8 086:111 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 3E  returns 0x01 (0001ms, 2131ms total)
T226A8 086:121 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 A0 42  returns 0x04 (0000ms, 2131ms total)
T226A8 086:130 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2132ms total)
T226A8 086:131 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 51  returns 0x01 (0001ms, 2133ms total)
T226A8 086:141 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 2133ms total)
T226A8 086:160 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 2133ms total)
T226A8 086:160 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 3D C5 03 00  returns 0x04 (0001ms, 2134ms total)
T226A8 086:161 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0001ms, 2135ms total)
T226A8 086:180 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0001ms, 2136ms total)
T226A8 086:218 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0000ms, 2136ms total)
T226A8 086:236 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: F2 0A  returns 0x02 (0001ms, 2137ms total)
T226A8 086:237 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 04 00  returns 0x02 (0001ms, 2138ms total)
T226A8 086:256 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 00  returns 0x01 (0001ms, 2139ms total)
T26738 086:257 JLINK_IsHalted()  returns FALSE (0001ms, 2140ms total)
T26738 086:359 JLINK_IsHalted()  returns FALSE (0000ms, 2139ms total)
T26738 086:460 JLINK_IsHalted()  returns FALSE (0000ms, 2139ms total)
T26738 086:561 JLINK_IsHalted()  returns FALSE (0000ms, 2139ms total)
T226A8 086:682 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2140ms total)
T226A8 086:692 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 52 00 00 00  returns 0x04 (0001ms, 2141ms total)
T226A8 086:701 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2142ms total)
T226A8 086:702 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 3F  returns 0x01 (0001ms, 2143ms total)
T226A8 086:712 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 A2 42  returns 0x04 (0000ms, 2143ms total)
T226A8 086:721 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2144ms total)
T226A8 086:722 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 52  returns 0x01 (0000ms, 2144ms total)
T226A8 086:731 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2145ms total)
T226A8 086:750 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2146ms total)
T226A8 086:751 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 3D C5 03 00  returns 0x04 (0000ms, 2146ms total)
T226A8 086:751 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0001ms, 2147ms total)
T226A8 086:761 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0000ms, 2147ms total)
T226A8 086:788 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0001ms, 2148ms total)
T226A8 086:798 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: F2 0A  returns 0x02 (0000ms, 2148ms total)
T226A8 086:798 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 04 00  returns 0x02 (0001ms, 2149ms total)
T226A8 086:808 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 00  returns 0x01 (0000ms, 2149ms total)
T26738 086:809 JLINK_IsHalted()  returns FALSE (0000ms, 2150ms total)
T26738 086:910 JLINK_IsHalted()  returns FALSE (0000ms, 2150ms total)
T26738 087:012 JLINK_IsHalted()  returns FALSE (0000ms, 2150ms total)
T26738 087:113 JLINK_IsHalted()  returns FALSE (0001ms, 2151ms total)
T226A8 087:234 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2151ms total)
T226A8 087:244 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 53 00 00 00  returns 0x04 (0000ms, 2151ms total)
T226A8 087:262 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 2151ms total)
T226A8 087:263 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 40  returns 0x01 (0000ms, 2151ms total)
T226A8 087:281 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 A4 42  returns 0x04 (0000ms, 2151ms total)
T226A8 087:299 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2152ms total)
T226A8 087:300 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 53  returns 0x01 (0001ms, 2153ms total)
T226A8 087:318 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2154ms total)
T226A8 087:337 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 2154ms total)
T226A8 087:337 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 3D C5 03 00  returns 0x04 (0001ms, 2155ms total)
T226A8 087:338 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 45 F9 02 00  returns 0x04 (0001ms, 2156ms total)
T226A8 087:348 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 61 FA 02 00  returns 0x04 (0000ms, 2156ms total)
T226A8 087:375 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 5B F8 02 00  returns 0x04 (0000ms, 2156ms total)
T226A8 087:384 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: F2 0A  returns 0x02 (0001ms, 2157ms total)
T226A8 087:385 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 05 00  returns 0x02 (0001ms, 2158ms total)
T226A8 087:395 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 00  returns 0x01 (0001ms, 2159ms total)
T26738 087:396 JLINK_IsHalted()  returns FALSE (0000ms, 2159ms total)
T26738 087:497 JLINK_IsHalted()  returns FALSE (0000ms, 2159ms total)
T26738 087:598 JLINK_IsHalted()  returns FALSE (0000ms, 2159ms total)
T26738 087:700 JLINK_IsHalted()  returns FALSE (0000ms, 2159ms total)
T226A8 087:822 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2160ms total)
T226A8 087:832 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 53 00 00 00  returns 0x04 (0001ms, 2161ms total)
T226A8 087:842 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 2161ms total)
T226A8 087:843 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 40  returns 0x01 (0000ms, 2161ms total)
T226A8 087:852 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 A4 42  returns 0x04 (0001ms, 2162ms total)
T226A8 087:862 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0000ms, 2162ms total)
T226A8 087:862 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 53  returns 0x01 (0001ms, 2163ms total)
T226A8 087:872 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2164ms total)
T226A8 087:891 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2165ms total)
T226A8 087:892 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 3D C5 03 00  returns 0x04 (0001ms, 2166ms total)
T226A8 087:893 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 45 F9 02 00  returns 0x04 (0000ms, 2166ms total)
T226A8 087:903 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 61 FA 02 00  returns 0x04 (0001ms, 2167ms total)
T226A8 087:931 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 5B F8 02 00  returns 0x04 (0001ms, 2168ms total)
T226A8 087:941 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: F2 0A  returns 0x02 (0001ms, 2169ms total)
T226A8 087:942 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 05 00  returns 0x02 (0000ms, 2169ms total)
T226A8 087:951 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 00  returns 0x01 (0001ms, 2170ms total)
T26738 087:952 JLINK_IsHalted()  returns FALSE (0001ms, 2171ms total)
T26738 088:054 JLINK_IsHalted()  returns FALSE (0000ms, 2170ms total)
T26738 088:155 JLINK_IsHalted()  returns FALSE (0000ms, 2170ms total)
T26738 088:256 JLINK_IsHalted()  returns FALSE (0000ms, 2170ms total)
T226A8 088:377 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 2170ms total)
T226A8 088:386 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 54 00 00 00  returns 0x04 (0001ms, 2171ms total)
T226A8 088:395 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2172ms total)
T226A8 088:396 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 41  returns 0x01 (0001ms, 2173ms total)
T226A8 088:405 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 A6 42  returns 0x04 (0001ms, 2174ms total)
T226A8 088:415 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0000ms, 2174ms total)
T226A8 088:415 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 54  returns 0x01 (0001ms, 2175ms total)
T226A8 088:425 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 2175ms total)
T226A8 088:443 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2176ms total)
T226A8 088:444 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 3D C5 03 00  returns 0x04 (0000ms, 2176ms total)
T226A8 088:444 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 99 EB 03 00  returns 0x04 (0001ms, 2177ms total)
T226A8 088:453 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: B5 EC 03 00  returns 0x04 (0001ms, 2178ms total)
T226A8 088:480 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 1B EA 03 00  returns 0x04 (0001ms, 2179ms total)
T226A8 088:490 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 02 0B  returns 0x02 (0001ms, 2180ms total)
T226A8 088:500 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 00 00  returns 0x02 (0001ms, 2181ms total)
T226A8 088:510 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 06  returns 0x01 (0000ms, 2181ms total)
T26738 088:519 JLINK_IsHalted()  returns FALSE (0001ms, 2182ms total)
T26738 088:621 JLINK_IsHalted()  returns FALSE (0000ms, 2181ms total)
T26738 088:722 JLINK_IsHalted()  returns FALSE (0000ms, 2181ms total)
T26738 088:823 JLINK_IsHalted()  returns FALSE (0000ms, 2181ms total)
T226A8 088:943 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2182ms total)
T226A8 088:953 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 54 00 00 00  returns 0x04 (0000ms, 2182ms total)
T226A8 088:962 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2183ms total)
T226A8 088:963 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 41  returns 0x01 (0000ms, 2183ms total)
T226A8 088:972 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 A6 42  returns 0x04 (0001ms, 2184ms total)
T226A8 088:982 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0000ms, 2184ms total)
T226A8 088:982 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 54  returns 0x01 (0001ms, 2185ms total)
T226A8 088:992 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2186ms total)
T226A8 089:010 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2187ms total)
T226A8 089:011 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 3D C5 03 00  returns 0x04 (0001ms, 2188ms total)
T226A8 089:012 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 99 EB 03 00  returns 0x04 (0000ms, 2188ms total)
T226A8 089:021 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: B5 EC 03 00  returns 0x04 (0001ms, 2189ms total)
T226A8 089:048 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 1B EA 03 00  returns 0x04 (0001ms, 2190ms total)
T226A8 089:058 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 02 0B  returns 0x02 (0000ms, 2190ms total)
T226A8 089:067 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 00 00  returns 0x02 (0001ms, 2191ms total)
T226A8 089:076 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 06  returns 0x01 (0001ms, 2192ms total)
T26738 089:086 JLINK_IsHalted()  returns FALSE (0000ms, 2192ms total)
T26738 089:187 JLINK_IsHalted()  returns FALSE (0000ms, 2192ms total)
T26738 089:288 JLINK_IsHalted()  returns FALSE (0000ms, 2192ms total)
T26738 089:390 JLINK_IsHalted()  returns FALSE (0000ms, 2192ms total)
T226A8 089:510 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2193ms total)
T226A8 089:519 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 55 00 00 00  returns 0x04 (0001ms, 2194ms total)
T226A8 089:529 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2195ms total)
T226A8 089:530 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 42  returns 0x01 (0000ms, 2195ms total)
T226A8 089:539 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 A8 42  returns 0x04 (0001ms, 2196ms total)
T226A8 089:548 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2197ms total)
T226A8 089:549 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 55  returns 0x01 (0000ms, 2197ms total)
T226A8 089:558 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2198ms total)
T226A8 089:576 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2199ms total)
T226A8 089:577 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 3D C5 03 00  returns 0x04 (0001ms, 2200ms total)
T226A8 089:578 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0000ms, 2200ms total)
T226A8 089:587 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 91 EC 03 00  returns 0x04 (0001ms, 2201ms total)
T226A8 089:614 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: F7 E9 03 00  returns 0x04 (0001ms, 2202ms total)
T226A8 089:623 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 02 0B  returns 0x02 (0001ms, 2203ms total)
T226A8 089:624 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 01 00  returns 0x02 (0001ms, 2204ms total)
T226A8 089:634 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 06  returns 0x01 (0001ms, 2205ms total)
T26738 089:635 JLINK_IsHalted()  returns FALSE (0000ms, 2205ms total)
T26738 089:736 JLINK_IsHalted()  returns FALSE (0000ms, 2205ms total)
T26738 089:837 JLINK_IsHalted()  returns FALSE (0001ms, 2206ms total)
T26738 089:939 JLINK_IsHalted()  returns FALSE (0000ms, 2205ms total)
T226A8 090:059 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2206ms total)
T226A8 090:069 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 55 00 00 00  returns 0x04 (0001ms, 2207ms total)
T226A8 090:079 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 2207ms total)
T226A8 090:079 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 42  returns 0x01 (0001ms, 2208ms total)
T226A8 090:089 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 A8 42  returns 0x04 (0001ms, 2209ms total)
T226A8 090:099 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2210ms total)
T226A8 090:100 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 55  returns 0x01 (0001ms, 2211ms total)
T226A8 090:110 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2212ms total)
T226A8 090:129 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2213ms total)
T226A8 090:130 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 3D C5 03 00  returns 0x04 (0000ms, 2213ms total)
T226A8 090:130 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0001ms, 2214ms total)
T226A8 090:140 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 91 EC 03 00  returns 0x04 (0001ms, 2215ms total)
T226A8 090:169 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 39 DF 00 00  returns 0x04 (0000ms, 2215ms total)
T226A8 090:188 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 02 0B  returns 0x02 (0000ms, 2215ms total)
T226A8 090:188 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0001ms, 2216ms total)
T226A8 090:207 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 06  returns 0x01 (0001ms, 2217ms total)
T26738 090:208 JLINK_IsHalted()  returns FALSE (0001ms, 2218ms total)
T26738 090:311 JLINK_IsHalted()  returns FALSE (0000ms, 2217ms total)
T26738 090:412 JLINK_IsHalted()  returns FALSE (0000ms, 2217ms total)
T26738 090:513 JLINK_IsHalted()  returns FALSE (0000ms, 2217ms total)
T226A8 090:634 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 2217ms total)
T226A8 090:643 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 56 00 00 00  returns 0x04 (0001ms, 2218ms total)
T226A8 090:653 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 2218ms total)
T226A8 090:653 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 42  returns 0x01 (0001ms, 2219ms total)
T226A8 090:654 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 AA 42  returns 0x04 (0001ms, 2220ms total)
T226A8 090:664 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2221ms total)
T226A8 090:665 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 56  returns 0x01 (0001ms, 2222ms total)
T226A8 090:674 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2223ms total)
T226A8 090:693 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2224ms total)
T226A8 090:694 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: C7 59 03 00  returns 0x04 (0000ms, 2224ms total)
T226A8 090:704 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0000ms, 2224ms total)
T226A8 090:704 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: E3 5A 03 00  returns 0x04 (0001ms, 2225ms total)
T226A8 090:732 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 39 DF 00 00  returns 0x04 (0001ms, 2226ms total)
T226A8 090:742 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 02 0B  returns 0x02 (0001ms, 2227ms total)
T226A8 090:743 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0000ms, 2227ms total)
T226A8 090:753 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 06  returns 0x01 (0001ms, 2228ms total)
T26738 090:754 JLINK_IsHalted()  returns FALSE (0000ms, 2228ms total)
T26738 090:855 JLINK_IsHalted()  returns FALSE (0000ms, 2228ms total)
T26738 090:956 JLINK_IsHalted()  returns FALSE (0000ms, 2228ms total)
T26738 091:057 JLINK_IsHalted()  returns FALSE (0000ms, 2228ms total)
T226A8 091:178 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2229ms total)
T226A8 091:189 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 57 00 00 00  returns 0x04 (0001ms, 2230ms total)
T226A8 091:208 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 2230ms total)
T226A8 091:208 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 43  returns 0x01 (0001ms, 2231ms total)
T226A8 091:218 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 AC 42  returns 0x04 (0001ms, 2232ms total)
T226A8 091:237 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2233ms total)
T226A8 091:238 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 57  returns 0x01 (0000ms, 2233ms total)
T226A8 091:257 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 2233ms total)
T226A8 091:276 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 2233ms total)
T226A8 091:277 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: C7 59 03 00  returns 0x04 (0000ms, 2233ms total)
T226A8 091:286 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0001ms, 2234ms total)
T226A8 091:287 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 91 EC 03 00  returns 0x04 (0001ms, 2235ms total)
T226A8 091:326 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: F7 E9 03 00  returns 0x04 (0001ms, 2236ms total)
T226A8 091:336 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 02 0B  returns 0x02 (0000ms, 2236ms total)
T226A8 091:336 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 03 00  returns 0x02 (0001ms, 2237ms total)
T226A8 091:346 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 06  returns 0x01 (0001ms, 2238ms total)
T26738 091:347 JLINK_IsHalted()  returns FALSE (0000ms, 2238ms total)
T26738 091:448 JLINK_IsHalted()  returns FALSE (0000ms, 2238ms total)
T26738 091:549 JLINK_IsHalted()  returns FALSE (0000ms, 2238ms total)
T26738 091:650 JLINK_IsHalted()  returns FALSE (0000ms, 2238ms total)
T226A8 091:770 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2239ms total)
T226A8 091:780 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 57 00 00 00  returns 0x04 (0000ms, 2239ms total)
T226A8 091:789 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2240ms total)
T226A8 091:790 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 43  returns 0x01 (0001ms, 2241ms total)
T226A8 091:800 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 AC 42  returns 0x04 (0000ms, 2241ms total)
T226A8 091:809 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2242ms total)
T226A8 091:810 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 57  returns 0x01 (0001ms, 2243ms total)
T226A8 091:820 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 2243ms total)
T226A8 091:838 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2244ms total)
T226A8 091:839 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: C7 59 03 00  returns 0x04 (0000ms, 2244ms total)
T226A8 091:839 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0001ms, 2245ms total)
T226A8 091:840 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 91 EC 03 00  returns 0x04 (0001ms, 2246ms total)
T226A8 091:868 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: F7 E9 03 00  returns 0x04 (0001ms, 2247ms total)
T226A8 091:879 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 02 0B  returns 0x02 (0001ms, 2248ms total)
T226A8 091:880 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 03 00  returns 0x02 (0000ms, 2248ms total)
T226A8 091:890 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 06  returns 0x01 (0000ms, 2248ms total)
T26738 091:891 JLINK_IsHalted()  returns FALSE (0000ms, 2248ms total)
T26738 091:992 JLINK_IsHalted()  returns FALSE (0000ms, 2248ms total)
T26738 092:093 JLINK_IsHalted()  returns FALSE (0000ms, 2248ms total)
T26738 092:194 JLINK_IsHalted()  returns FALSE (0000ms, 2248ms total)
T226A8 092:315 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2249ms total)
T226A8 092:325 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 58 00 00 00  returns 0x04 (0001ms, 2250ms total)
T226A8 092:335 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 2250ms total)
T226A8 092:335 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 44  returns 0x01 (0001ms, 2251ms total)
T226A8 092:345 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 AE 42  returns 0x04 (0000ms, 2251ms total)
T226A8 092:354 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2252ms total)
T226A8 092:355 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 58  returns 0x01 (0000ms, 2252ms total)
T226A8 092:366 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 2252ms total)
T226A8 092:384 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2253ms total)
T226A8 092:385 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: C7 59 03 00  returns 0x04 (0000ms, 2253ms total)
T226A8 092:385 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0001ms, 2254ms total)
T226A8 092:396 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0000ms, 2254ms total)
T226A8 092:423 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0000ms, 2254ms total)
T226A8 092:432 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 02 0B  returns 0x02 (0001ms, 2255ms total)
T226A8 092:433 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 04 00  returns 0x02 (0000ms, 2255ms total)
T226A8 092:442 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 06  returns 0x01 (0001ms, 2256ms total)
T26738 092:443 JLINK_IsHalted()  returns FALSE (0000ms, 2256ms total)
T26738 092:544 JLINK_IsHalted()  returns FALSE (0000ms, 2256ms total)
T26738 092:646 JLINK_IsHalted()  returns FALSE (0000ms, 2256ms total)
T26738 092:747 JLINK_IsHalted()  returns FALSE (0000ms, 2256ms total)
T226A8 092:866 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 2256ms total)
T226A8 092:875 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 58 00 00 00  returns 0x04 (0001ms, 2257ms total)
T226A8 092:885 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2258ms total)
T226A8 092:886 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 44  returns 0x01 (0001ms, 2259ms total)
T226A8 092:895 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 AE 42  returns 0x04 (0001ms, 2260ms total)
T226A8 092:905 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2261ms total)
T226A8 092:906 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 58  returns 0x01 (0000ms, 2261ms total)
T226A8 092:915 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2262ms total)
T226A8 092:933 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2263ms total)
T226A8 092:934 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: C7 59 03 00  returns 0x04 (0001ms, 2264ms total)
T226A8 092:935 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0000ms, 2264ms total)
T226A8 092:945 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0000ms, 2264ms total)
T226A8 092:972 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0001ms, 2265ms total)
T226A8 092:981 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 02 0B  returns 0x02 (0001ms, 2266ms total)
T226A8 092:982 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 04 00  returns 0x02 (0001ms, 2267ms total)
T226A8 092:991 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 06  returns 0x01 (0001ms, 2268ms total)
T26738 092:992 JLINK_IsHalted()  returns FALSE (0001ms, 2269ms total)
T26738 093:095 JLINK_IsHalted()  returns FALSE (0000ms, 2268ms total)
T26738 093:196 JLINK_IsHalted()  returns FALSE (0000ms, 2268ms total)
T26738 093:297 JLINK_IsHalted()  returns FALSE (0000ms, 2268ms total)
T226A8 093:417 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2269ms total)
T226A8 093:426 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 59 00 00 00  returns 0x04 (0001ms, 2270ms total)
T226A8 093:436 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2271ms total)
T226A8 093:437 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 44  returns 0x01 (0000ms, 2271ms total)
T226A8 093:437 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 B0 42  returns 0x04 (0001ms, 2272ms total)
T226A8 093:447 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2273ms total)
T226A8 093:448 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 59  returns 0x01 (0000ms, 2273ms total)
T226A8 093:457 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2274ms total)
T226A8 093:476 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2275ms total)
T226A8 093:477 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 6F 97 03 00  returns 0x04 (0000ms, 2275ms total)
T226A8 093:486 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0001ms, 2276ms total)
T226A8 093:487 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 8B 98 03 00  returns 0x04 (0000ms, 2276ms total)
T226A8 093:513 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 21 DF 00 00  returns 0x04 (0001ms, 2277ms total)
T226A8 093:523 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 02 0B  returns 0x02 (0001ms, 2278ms total)
T226A8 093:524 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 05 00  returns 0x02 (0000ms, 2278ms total)
T226A8 093:533 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 06  returns 0x01 (0001ms, 2279ms total)
T26738 093:534 JLINK_IsHalted()  returns FALSE (0000ms, 2279ms total)
T26738 093:635 JLINK_IsHalted()  returns FALSE (0000ms, 2279ms total)
T26738 093:736 JLINK_IsHalted()  returns FALSE (0000ms, 2279ms total)
T26738 093:838 JLINK_IsHalted()  returns FALSE (0000ms, 2279ms total)
T226A8 093:957 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2280ms total)
T226A8 093:967 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 59 00 00 00  returns 0x04 (0000ms, 2280ms total)
T226A8 093:976 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2281ms total)
T226A8 093:977 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 44  returns 0x01 (0000ms, 2281ms total)
T226A8 093:977 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 B0 42  returns 0x04 (0001ms, 2282ms total)
T226A8 093:987 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0000ms, 2282ms total)
T226A8 093:987 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 59  returns 0x01 (0001ms, 2283ms total)
T226A8 093:997 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2284ms total)
T226A8 094:015 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2285ms total)
T226A8 094:016 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 6F 97 03 00  returns 0x04 (0001ms, 2286ms total)
T226A8 094:026 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0000ms, 2286ms total)
T226A8 094:026 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 8B 98 03 00  returns 0x04 (0001ms, 2287ms total)
T226A8 094:053 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 21 DF 00 00  returns 0x04 (0001ms, 2288ms total)
T226A8 094:063 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 02 0B  returns 0x02 (0001ms, 2289ms total)
T226A8 094:064 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 05 00  returns 0x02 (0000ms, 2289ms total)
T226A8 094:073 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 06  returns 0x01 (0001ms, 2290ms total)
T26738 094:074 JLINK_IsHalted()  returns FALSE (0000ms, 2290ms total)
T26738 094:177 JLINK_IsHalted()  returns FALSE (0000ms, 2290ms total)
T26738 094:278 JLINK_IsHalted()  returns FALSE (0000ms, 2290ms total)
T26738 094:379 JLINK_IsHalted()  returns FALSE (0000ms, 2290ms total)
T226A8 094:498 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2291ms total)
T226A8 094:508 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 5A 00 00 00  returns 0x04 (0000ms, 2291ms total)
T226A8 094:517 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2292ms total)
T226A8 094:518 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 45  returns 0x01 (0000ms, 2292ms total)
T226A8 094:527 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 B2 42  returns 0x04 (0001ms, 2293ms total)
T226A8 094:536 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2294ms total)
T226A8 094:537 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 5A  returns 0x01 (0001ms, 2295ms total)
T226A8 094:547 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2296ms total)
T226A8 094:565 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2297ms total)
T226A8 094:566 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 6F 97 03 00  returns 0x04 (0001ms, 2298ms total)
T226A8 094:567 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: A1 EB 03 00  returns 0x04 (0000ms, 2298ms total)
T226A8 094:576 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: BD EC 03 00  returns 0x04 (0001ms, 2299ms total)
T226A8 094:604 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 23 EA 03 00  returns 0x04 (0000ms, 2299ms total)
T226A8 094:613 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 06 0B  returns 0x02 (0001ms, 2300ms total)
T226A8 094:622 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 00 00  returns 0x02 (0001ms, 2301ms total)
T226A8 094:632 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 07  returns 0x01 (0001ms, 2302ms total)
T26738 094:641 JLINK_IsHalted()  returns FALSE (0001ms, 2303ms total)
T26738 094:743 JLINK_IsHalted()  returns FALSE (0000ms, 2302ms total)
T26738 094:844 JLINK_IsHalted()  returns FALSE (0000ms, 2302ms total)
T26738 094:945 JLINK_IsHalted()  returns FALSE (0000ms, 2302ms total)
T226A8 095:066 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 2302ms total)
T226A8 095:076 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 5A 00 00 00  returns 0x04 (0000ms, 2302ms total)
T226A8 095:086 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 2302ms total)
T226A8 095:086 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 45  returns 0x01 (0001ms, 2303ms total)
T226A8 095:096 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 B2 42  returns 0x04 (0001ms, 2304ms total)
T226A8 095:106 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0002ms, 2306ms total)
T226A8 095:108 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 5A  returns 0x01 (0000ms, 2306ms total)
T226A8 095:117 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2307ms total)
T226A8 095:136 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2308ms total)
T226A8 095:137 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 6F 97 03 00  returns 0x04 (0001ms, 2309ms total)
T226A8 095:138 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: A1 EB 03 00  returns 0x04 (0000ms, 2309ms total)
T226A8 095:148 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: B3 F8 02 00  returns 0x04 (0001ms, 2310ms total)
T226A8 095:186 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 21 DF 00 00  returns 0x04 (0001ms, 2311ms total)
T226A8 095:205 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 06 0B  returns 0x02 (0001ms, 2312ms total)
T226A8 095:216 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 01 00  returns 0x02 (0000ms, 2312ms total)
T226A8 095:235 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 07  returns 0x01 (0001ms, 2313ms total)
T26738 095:245 JLINK_IsHalted()  returns FALSE (0000ms, 2313ms total)
T26738 095:346 JLINK_IsHalted()  returns FALSE (0000ms, 2313ms total)
T26738 095:447 JLINK_IsHalted()  returns FALSE (0000ms, 2313ms total)
T226A8 095:569 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 2313ms total)
T226A8 095:579 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 5B 00 00 00  returns 0x04 (0000ms, 2313ms total)
T226A8 095:588 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2314ms total)
T226A8 095:589 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 45  returns 0x01 (0001ms, 2315ms total)
T226A8 095:590 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 B4 42  returns 0x04 (0000ms, 2315ms total)
T226A8 095:599 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2316ms total)
T226A8 095:600 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 5B  returns 0x01 (0001ms, 2317ms total)
T226A8 095:610 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 2317ms total)
T226A8 095:630 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2318ms total)
T226A8 095:631 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 97 F7 02 00  returns 0x04 (0000ms, 2318ms total)
T226A8 095:640 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: A1 EB 03 00  returns 0x04 (0001ms, 2319ms total)
T226A8 095:641 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: B3 F8 02 00  returns 0x04 (0001ms, 2320ms total)
T226A8 095:669 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 21 DF 00 00  returns 0x04 (0001ms, 2321ms total)
T226A8 095:679 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 06 0B  returns 0x02 (0000ms, 2321ms total)
T226A8 095:679 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 01 00  returns 0x02 (0001ms, 2322ms total)
T226A8 095:689 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 07  returns 0x01 (0001ms, 2323ms total)
T26738 095:690 JLINK_IsHalted()  returns FALSE (0001ms, 2324ms total)
T26738 095:792 JLINK_IsHalted()  returns FALSE (0000ms, 2323ms total)
T26738 095:894 JLINK_IsHalted()  returns FALSE (0000ms, 2323ms total)
T26738 095:995 JLINK_IsHalted()  returns FALSE (0000ms, 2323ms total)
T226A8 096:115 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2324ms total)
T226A8 096:125 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 5B 00 00 00  returns 0x04 (0001ms, 2325ms total)
T226A8 096:135 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 2325ms total)
T226A8 096:135 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 45  returns 0x01 (0001ms, 2326ms total)
T226A8 096:136 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 B4 42  returns 0x04 (0001ms, 2327ms total)
T226A8 096:146 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2328ms total)
T226A8 096:147 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 5C  returns 0x01 (0000ms, 2328ms total)
T226A8 096:167 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 2329ms total)
T226A8 096:186 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2330ms total)
T226A8 096:187 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 95 A6 03 00  returns 0x04 (0001ms, 2331ms total)
T226A8 096:206 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: A1 EB 03 00  returns 0x04 (0001ms, 2332ms total)
T226A8 096:207 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: B1 A7 03 00  returns 0x04 (0001ms, 2333ms total)
T226A8 096:236 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 39 DF 00 00  returns 0x04 (0001ms, 2334ms total)
T226A8 096:246 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 06 0B  returns 0x02 (0001ms, 2335ms total)
T226A8 096:247 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0000ms, 2335ms total)
T226A8 096:258 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 07  returns 0x01 (0001ms, 2336ms total)
T26738 096:259 JLINK_IsHalted()  returns FALSE (0000ms, 2336ms total)
T26738 096:360 JLINK_IsHalted()  returns FALSE (0000ms, 2336ms total)
T26738 096:461 JLINK_IsHalted()  returns FALSE (0000ms, 2336ms total)
T26738 096:562 JLINK_IsHalted()  returns FALSE (0000ms, 2336ms total)
T226A8 096:683 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2337ms total)
T226A8 096:694 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 5C 00 00 00  returns 0x04 (0000ms, 2337ms total)
T226A8 096:704 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 2337ms total)
T226A8 096:704 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 45  returns 0x01 (0001ms, 2338ms total)
T226A8 096:705 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 B6 42  returns 0x04 (0001ms, 2339ms total)
T226A8 096:715 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2340ms total)
T226A8 096:716 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 5C  returns 0x01 (0001ms, 2341ms total)
T226A8 096:726 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 2341ms total)
T226A8 096:745 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 2341ms total)
T226A8 096:745 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 95 A6 03 00  returns 0x04 (0001ms, 2342ms total)
T226A8 096:755 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: A1 EB 03 00  returns 0x04 (0001ms, 2343ms total)
T226A8 096:756 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: B1 A7 03 00  returns 0x04 (0001ms, 2344ms total)
T226A8 096:784 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 39 DF 00 00  returns 0x04 (0001ms, 2345ms total)
T226A8 096:794 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 06 0B  returns 0x02 (0001ms, 2346ms total)
T226A8 096:795 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0001ms, 2347ms total)
T226A8 096:805 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 07  returns 0x01 (0000ms, 2347ms total)
T26738 096:805 JLINK_IsHalted()  returns FALSE (0001ms, 2348ms total)
T26738 096:907 JLINK_IsHalted()  returns FALSE (0000ms, 2347ms total)
T26738 097:008 JLINK_IsHalted()  returns FALSE (0000ms, 2347ms total)
T26738 097:110 JLINK_IsHalted()  returns FALSE (0000ms, 2347ms total)
T226A8 097:229 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2348ms total)
T226A8 097:240 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 5D 00 00 00  returns 0x04 (0000ms, 2348ms total)
T226A8 097:258 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2349ms total)
T226A8 097:259 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 46  returns 0x01 (0000ms, 2349ms total)
T226A8 097:269 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 B8 42  returns 0x04 (0000ms, 2349ms total)
T226A8 097:287 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2350ms total)
T226A8 097:288 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 5D  returns 0x01 (0000ms, 2350ms total)
T226A8 097:297 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2351ms total)
T226A8 097:316 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2352ms total)
T226A8 097:317 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 95 A6 03 00  returns 0x04 (0001ms, 2353ms total)
T226A8 097:318 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0000ms, 2353ms total)
T226A8 097:327 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 91 EC 03 00  returns 0x04 (0001ms, 2354ms total)
T226A8 097:355 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: F7 E9 03 00  returns 0x04 (0000ms, 2354ms total)
T226A8 097:364 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 06 0B  returns 0x02 (0001ms, 2355ms total)
T226A8 097:365 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 03 00  returns 0x02 (0000ms, 2355ms total)
T226A8 097:374 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 07  returns 0x01 (0001ms, 2356ms total)
T26738 097:375 JLINK_IsHalted()  returns FALSE (0000ms, 2356ms total)
T26738 097:477 JLINK_IsHalted()  returns FALSE (0000ms, 2356ms total)
T26738 097:578 JLINK_IsHalted()  returns FALSE (0000ms, 2356ms total)
T26738 097:679 JLINK_IsHalted()  returns FALSE (0000ms, 2356ms total)
T226A8 097:799 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2357ms total)
T226A8 097:809 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 5D 00 00 00  returns 0x04 (0000ms, 2357ms total)
T226A8 097:818 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2358ms total)
T226A8 097:819 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 46  returns 0x01 (0000ms, 2358ms total)
T226A8 097:828 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 B8 42  returns 0x04 (0001ms, 2359ms total)
T226A8 097:837 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2360ms total)
T226A8 097:838 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 5D  returns 0x01 (0001ms, 2361ms total)
T226A8 097:848 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2362ms total)
T226A8 097:867 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 2362ms total)
T226A8 097:867 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 95 A6 03 00  returns 0x04 (0001ms, 2363ms total)
T226A8 097:868 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0001ms, 2364ms total)
T226A8 097:878 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 91 EC 03 00  returns 0x04 (0001ms, 2365ms total)
T226A8 097:905 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: F7 E9 03 00  returns 0x04 (0000ms, 2365ms total)
T226A8 097:914 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 06 0B  returns 0x02 (0001ms, 2366ms total)
T226A8 097:915 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 03 00  returns 0x02 (0000ms, 2366ms total)
T226A8 097:924 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 07  returns 0x01 (0001ms, 2367ms total)
T26738 097:925 JLINK_IsHalted()  returns FALSE (0001ms, 2368ms total)
T26738 098:028 JLINK_IsHalted()  returns FALSE (0000ms, 2367ms total)
T26738 098:129 JLINK_IsHalted()  returns FALSE (0000ms, 2367ms total)
T26738 098:230 JLINK_IsHalted()  returns FALSE (0000ms, 2367ms total)
T226A8 098:350 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2368ms total)
T226A8 098:360 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 5E 00 00 00  returns 0x04 (0001ms, 2369ms total)
T226A8 098:369 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2370ms total)
T226A8 098:370 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 46  returns 0x01 (0001ms, 2371ms total)
T226A8 098:371 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 BA 42  returns 0x04 (0000ms, 2371ms total)
T226A8 098:380 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2372ms total)
T226A8 098:381 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 5E  returns 0x01 (0001ms, 2373ms total)
T226A8 098:392 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 2373ms total)
T226A8 098:410 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2374ms total)
T226A8 098:411 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 31 70 03 00  returns 0x04 (0001ms, 2375ms total)
T226A8 098:421 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0000ms, 2375ms total)
T226A8 098:421 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 4D 71 03 00  returns 0x04 (0001ms, 2376ms total)
T226A8 098:448 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 39 DF 00 00  returns 0x04 (0001ms, 2377ms total)
T226A8 098:458 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 06 0B  returns 0x02 (0001ms, 2378ms total)
T226A8 098:459 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 04 00  returns 0x02 (0000ms, 2378ms total)
T226A8 098:468 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 07  returns 0x01 (0001ms, 2379ms total)
T26738 098:470 JLINK_IsHalted()  returns FALSE (0001ms, 2380ms total)
T26738 098:571 JLINK_IsHalted()  returns FALSE (0000ms, 2379ms total)
T26738 098:672 JLINK_IsHalted()  returns FALSE (0000ms, 2379ms total)
T26738 098:774 JLINK_IsHalted()  returns FALSE (0000ms, 2379ms total)
T226A8 098:893 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2380ms total)
T226A8 098:903 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 5E 00 00 00  returns 0x04 (0001ms, 2381ms total)
T226A8 098:912 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2382ms total)
T226A8 098:913 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 46  returns 0x01 (0000ms, 2382ms total)
T226A8 098:913 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 BA 42  returns 0x04 (0001ms, 2383ms total)
T226A8 098:923 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2384ms total)
T226A8 098:924 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 5E  returns 0x01 (0001ms, 2385ms total)
T226A8 098:934 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2386ms total)
T226A8 098:952 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2387ms total)
T226A8 098:953 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 31 70 03 00  returns 0x04 (0000ms, 2387ms total)
T226A8 098:962 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0000ms, 2387ms total)
T226A8 098:962 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 4D 71 03 00  returns 0x04 (0001ms, 2388ms total)
T226A8 098:990 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 39 DF 00 00  returns 0x04 (0000ms, 2388ms total)
T226A8 098:999 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 06 0B  returns 0x02 (0001ms, 2389ms total)
T226A8 099:000 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 04 00  returns 0x02 (0000ms, 2389ms total)
T226A8 099:009 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 07  returns 0x01 (0001ms, 2390ms total)
T26738 099:010 JLINK_IsHalted()  returns FALSE (0001ms, 2391ms total)
T26738 099:113 JLINK_IsHalted()  returns FALSE (0000ms, 2390ms total)
T26738 099:214 JLINK_IsHalted()  returns FALSE (0000ms, 2390ms total)
T26738 099:315 JLINK_IsHalted()  returns FALSE (0000ms, 2390ms total)
T226A8 099:435 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2391ms total)
T226A8 099:445 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 5F 00 00 00  returns 0x04 (0000ms, 2391ms total)
T226A8 099:454 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 2391ms total)
T226A8 099:454 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 47  returns 0x01 (0001ms, 2392ms total)
T226A8 099:464 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 BC 42  returns 0x04 (0000ms, 2392ms total)
T226A8 099:474 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0000ms, 2392ms total)
T226A8 099:474 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 5F  returns 0x01 (0001ms, 2393ms total)
T226A8 099:484 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2394ms total)
T226A8 099:504 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2395ms total)
T226A8 099:505 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 31 70 03 00  returns 0x04 (0000ms, 2395ms total)
T226A8 099:505 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0001ms, 2396ms total)
T226A8 099:506 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 91 EC 03 00  returns 0x04 (0001ms, 2397ms total)
T226A8 099:533 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: F7 E9 03 00  returns 0x04 (0001ms, 2398ms total)
T226A8 099:542 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 06 0B  returns 0x02 (0001ms, 2399ms total)
T226A8 099:543 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 05 00  returns 0x02 (0001ms, 2400ms total)
T226A8 099:553 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 07  returns 0x01 (0000ms, 2400ms total)
T26738 099:553 JLINK_IsHalted()  returns FALSE (0001ms, 2401ms total)
T26738 099:655 JLINK_IsHalted()  returns FALSE (0000ms, 2400ms total)
T26738 099:756 JLINK_IsHalted()  returns FALSE (0000ms, 2400ms total)
T26738 099:857 JLINK_IsHalted()  returns FALSE (0000ms, 2400ms total)
T226A8 099:978 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2401ms total)
T226A8 099:988 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 5F 00 00 00  returns 0x04 (0001ms, 2402ms total)
T226A8 099:998 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2403ms total)
T226A8 099:999 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 47  returns 0x01 (0001ms, 2404ms total)
T226A8 100:009 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 BC 42  returns 0x04 (0001ms, 2405ms total)
T226A8 100:019 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0000ms, 2405ms total)
T226A8 100:020 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 5F  returns 0x01 (0000ms, 2405ms total)
T226A8 100:029 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2406ms total)
T226A8 100:048 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2407ms total)
T226A8 100:049 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 31 70 03 00  returns 0x04 (0001ms, 2408ms total)
T226A8 100:050 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0000ms, 2408ms total)
T226A8 100:050 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 91 EC 03 00  returns 0x04 (0001ms, 2409ms total)
T226A8 100:079 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: F7 E9 03 00  returns 0x04 (0000ms, 2409ms total)
T226A8 100:090 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 06 0B  returns 0x02 (0000ms, 2409ms total)
T226A8 100:090 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 05 00  returns 0x02 (0001ms, 2410ms total)
T226A8 100:101 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 07  returns 0x01 (0000ms, 2410ms total)
T26738 100:102 JLINK_IsHalted()  returns FALSE (0000ms, 2410ms total)
T26738 100:203 JLINK_IsHalted()  returns FALSE (0000ms, 2410ms total)
T26738 100:305 JLINK_IsHalted()  returns FALSE (0000ms, 2410ms total)
T26738 100:406 JLINK_IsHalted()  returns FALSE (0000ms, 2410ms total)
T226A8 100:526 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 2410ms total)
T226A8 100:535 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 60 00 00 00  returns 0x04 (0001ms, 2411ms total)
T226A8 100:545 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 2411ms total)
T226A8 100:545 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 48  returns 0x01 (0001ms, 2412ms total)
T226A8 100:555 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 BE 42  returns 0x04 (0001ms, 2413ms total)
T226A8 100:564 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2414ms total)
T226A8 100:565 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 60  returns 0x01 (0001ms, 2415ms total)
T226A8 100:574 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2416ms total)
T226A8 100:593 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2417ms total)
T226A8 100:594 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 31 70 03 00  returns 0x04 (0001ms, 2418ms total)
T226A8 100:595 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 97 F4 03 00  returns 0x04 (0000ms, 2418ms total)
T226A8 100:605 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: B3 F5 03 00  returns 0x04 (0001ms, 2419ms total)
T226A8 100:633 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 17 F3 03 00  returns 0x04 (0001ms, 2420ms total)
T226A8 100:643 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 02 0B  returns 0x02 (0000ms, 2420ms total)
T226A8 100:652 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 00 00  returns 0x02 (0001ms, 2421ms total)
T226A8 100:661 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 06  returns 0x01 (0001ms, 2422ms total)
T26738 100:671 JLINK_IsHalted()  returns FALSE (0001ms, 2423ms total)
T26738 100:772 JLINK_IsHalted()  returns FALSE (0000ms, 2422ms total)
T26738 100:874 JLINK_IsHalted()  returns FALSE (0000ms, 2422ms total)
T26738 100:975 JLINK_IsHalted()  returns FALSE (0000ms, 2422ms total)
T226A8 101:097 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2423ms total)
T226A8 101:107 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 60 00 00 00  returns 0x04 (0000ms, 2423ms total)
T226A8 101:116 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2424ms total)
T226A8 101:117 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 48  returns 0x01 (0000ms, 2424ms total)
T226A8 101:126 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 BE 42  returns 0x04 (0001ms, 2425ms total)
T226A8 101:136 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0000ms, 2425ms total)
T226A8 101:136 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 60  returns 0x01 (0001ms, 2426ms total)
T226A8 101:146 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2427ms total)
T226A8 101:166 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2428ms total)
T226A8 101:167 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 83 92 03 00  returns 0x04 (0000ms, 2428ms total)
T226A8 101:176 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 97 F4 03 00  returns 0x04 (0001ms, 2429ms total)
T226A8 101:186 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 9F 93 03 00  returns 0x04 (0001ms, 2430ms total)
T226A8 101:224 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 21 DF 00 00  returns 0x04 (0000ms, 2430ms total)
T226A8 101:244 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 02 0B  returns 0x02 (0000ms, 2430ms total)
T226A8 101:254 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 01 00  returns 0x02 (0001ms, 2431ms total)
T226A8 101:273 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 06  returns 0x01 (0001ms, 2432ms total)
T26738 101:283 JLINK_IsHalted()  returns FALSE (0000ms, 2432ms total)
T26738 101:384 JLINK_IsHalted()  returns FALSE (0000ms, 2432ms total)
T26738 101:485 JLINK_IsHalted()  returns FALSE (0000ms, 2432ms total)
T226A8 101:605 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2433ms total)
T226A8 101:615 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 61 00 00 00  returns 0x04 (0000ms, 2433ms total)
T226A8 101:625 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2434ms total)
T226A8 101:626 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 48  returns 0x01 (0000ms, 2434ms total)
T226A8 101:626 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 C0 42  returns 0x04 (0001ms, 2435ms total)
T226A8 101:636 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2436ms total)
T226A8 101:637 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 61  returns 0x01 (0001ms, 2437ms total)
T226A8 101:647 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2438ms total)
T226A8 101:667 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2439ms total)
T226A8 101:668 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 83 92 03 00  returns 0x04 (0000ms, 2439ms total)
T226A8 101:678 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 97 F4 03 00  returns 0x04 (0000ms, 2439ms total)
T226A8 101:678 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 9F 93 03 00  returns 0x04 (0001ms, 2440ms total)
T226A8 101:706 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 21 DF 00 00  returns 0x04 (0001ms, 2441ms total)
T226A8 101:716 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 02 0B  returns 0x02 (0001ms, 2442ms total)
T226A8 101:717 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 01 00  returns 0x02 (0001ms, 2443ms total)
T226A8 101:726 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 06  returns 0x01 (0001ms, 2444ms total)
T26738 101:727 JLINK_IsHalted()  returns FALSE (0001ms, 2445ms total)
T26738 101:828 JLINK_IsHalted()  returns FALSE (0000ms, 2444ms total)
T26738 101:929 JLINK_IsHalted()  returns FALSE (0000ms, 2444ms total)
T26738 102:031 JLINK_IsHalted()  returns FALSE (0000ms, 2444ms total)
T226A8 102:150 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2445ms total)
T226A8 102:160 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 62 00 00 00  returns 0x04 (0001ms, 2446ms total)
T226A8 102:178 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2447ms total)
T226A8 102:179 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 49  returns 0x01 (0001ms, 2448ms total)
T226A8 102:189 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 C2 42  returns 0x04 (0000ms, 2448ms total)
T226A8 102:207 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2449ms total)
T226A8 102:208 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 62  returns 0x01 (0000ms, 2449ms total)
T226A8 102:226 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2450ms total)
T226A8 102:245 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2451ms total)
T226A8 102:246 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 83 92 03 00  returns 0x04 (0000ms, 2451ms total)
T226A8 102:246 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0001ms, 2452ms total)
T226A8 102:256 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0001ms, 2453ms total)
T226A8 102:284 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0000ms, 2453ms total)
T226A8 102:293 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 02 0B  returns 0x02 (0001ms, 2454ms total)
T226A8 102:294 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0000ms, 2454ms total)
T226A8 102:303 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 06  returns 0x01 (0001ms, 2455ms total)
T26738 102:304 JLINK_IsHalted()  returns FALSE (0001ms, 2456ms total)
T26738 102:407 JLINK_IsHalted()  returns FALSE (0000ms, 2455ms total)
T26738 102:508 JLINK_IsHalted()  returns FALSE (0000ms, 2455ms total)
T26738 102:609 JLINK_IsHalted()  returns FALSE (0000ms, 2455ms total)
T226A8 102:729 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2456ms total)
T226A8 102:738 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 62 00 00 00  returns 0x04 (0001ms, 2457ms total)
T226A8 102:748 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 2457ms total)
T226A8 102:748 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 49  returns 0x01 (0001ms, 2458ms total)
T226A8 102:757 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 C2 42  returns 0x04 (0001ms, 2459ms total)
T226A8 102:768 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0000ms, 2459ms total)
T226A8 102:769 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 62  returns 0x01 (0000ms, 2459ms total)
T226A8 102:778 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2460ms total)
T226A8 102:796 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2461ms total)
T226A8 102:797 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 83 92 03 00  returns 0x04 (0000ms, 2461ms total)
T226A8 102:797 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0001ms, 2462ms total)
T226A8 102:807 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0000ms, 2462ms total)
T226A8 102:834 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0000ms, 2462ms total)
T226A8 102:844 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 02 0B  returns 0x02 (0001ms, 2463ms total)
T226A8 102:845 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0000ms, 2463ms total)
T226A8 102:854 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 06  returns 0x01 (0001ms, 2464ms total)
T26738 102:855 JLINK_IsHalted()  returns FALSE (0001ms, 2465ms total)
T226A8 102:943 JLINK_ReadMemEx(0x00005F4E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00005F4E) - Data: 40 00  returns 0x02 (0001ms, 2465ms total)
T226A8 102:944 JLINK_ReadMemEx(0x00005F50, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00005F50) - Data: 07 49  returns 0x02 (0001ms, 2466ms total)
T26738 102:957 JLINK_IsHalted()  returns FALSE (0000ms, 2466ms total)
T26738 103:058 JLINK_IsHalted()  returns FALSE (0000ms, 2466ms total)
T26738 103:160 JLINK_IsHalted()  returns FALSE (0000ms, 2466ms total)
T226A8 103:280 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 2466ms total)
T226A8 103:289 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 63 00 00 00  returns 0x04 (0001ms, 2467ms total)
T226A8 103:298 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2468ms total)
T226A8 103:299 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 49  returns 0x01 (0000ms, 2468ms total)
T226A8 103:299 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 C4 42  returns 0x04 (0001ms, 2469ms total)
T226A8 103:309 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2470ms total)
T226A8 103:310 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 63  returns 0x01 (0000ms, 2470ms total)
T226A8 103:319 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2471ms total)
T226A8 103:338 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 2471ms total)
T226A8 103:338 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: B9 1A 03 00  returns 0x04 (0001ms, 2472ms total)
T226A8 103:348 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0000ms, 2472ms total)
T226A8 103:348 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: D5 1B 03 00  returns 0x04 (0001ms, 2473ms total)
T226A8 103:375 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 21 DF 00 00  returns 0x04 (0001ms, 2474ms total)
T226A8 103:385 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 02 0B  returns 0x02 (0000ms, 2474ms total)
T226A8 103:385 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 03 00  returns 0x02 (0001ms, 2475ms total)
T226A8 103:395 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 06  returns 0x01 (0000ms, 2475ms total)
T26738 103:396 JLINK_IsHalted()  returns FALSE (0001ms, 2476ms total)
T26738 103:497 JLINK_IsHalted()  returns FALSE (0000ms, 2475ms total)
T26738 103:599 JLINK_IsHalted()  returns FALSE (0000ms, 2475ms total)
T26738 103:700 JLINK_IsHalted()  returns FALSE (0000ms, 2475ms total)
T226A8 103:820 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2476ms total)
T226A8 103:830 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 63 00 00 00  returns 0x04 (0001ms, 2477ms total)
T226A8 103:839 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2478ms total)
T226A8 103:840 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 49  returns 0x01 (0000ms, 2478ms total)
T226A8 103:840 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 C4 42  returns 0x04 (0001ms, 2479ms total)
T226A8 103:850 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2480ms total)
T226A8 103:851 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 63  returns 0x01 (0000ms, 2480ms total)
T226A8 103:860 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2481ms total)
T226A8 103:878 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2482ms total)
T226A8 103:879 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: B9 1A 03 00  returns 0x04 (0001ms, 2483ms total)
T226A8 103:888 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0001ms, 2484ms total)
T226A8 103:889 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: D5 1B 03 00  returns 0x04 (0001ms, 2485ms total)
T226A8 103:916 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 21 DF 00 00  returns 0x04 (0001ms, 2486ms total)
T226A8 103:925 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 02 0B  returns 0x02 (0001ms, 2487ms total)
T226A8 103:926 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 03 00  returns 0x02 (0001ms, 2488ms total)
T226A8 103:935 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 06  returns 0x01 (0001ms, 2489ms total)
T26738 103:936 JLINK_IsHalted()  returns FALSE (0001ms, 2490ms total)
T26738 104:038 JLINK_IsHalted()  returns FALSE (0000ms, 2489ms total)
T26738 104:140 JLINK_IsHalted()  returns FALSE (0000ms, 2489ms total)
T26738 104:241 JLINK_IsHalted()  returns FALSE (0000ms, 2489ms total)
T226A8 104:362 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 2489ms total)
T226A8 104:372 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 64 00 00 00  returns 0x04 (0000ms, 2489ms total)
T226A8 104:381 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2490ms total)
T226A8 104:382 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 49  returns 0x01 (0000ms, 2490ms total)
T226A8 104:382 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 C6 42  returns 0x04 (0001ms, 2491ms total)
T226A8 104:392 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2492ms total)
T226A8 104:393 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 64  returns 0x01 (0001ms, 2493ms total)
T226A8 104:402 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2494ms total)
T226A8 104:421 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 2494ms total)
T226A8 104:421 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 31 0B 03 00  returns 0x04 (0001ms, 2495ms total)
T226A8 104:431 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0000ms, 2495ms total)
T226A8 104:431 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 4D 0C 03 00  returns 0x04 (0001ms, 2496ms total)
T226A8 104:458 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 39 DF 00 00  returns 0x04 (0001ms, 2497ms total)
T226A8 104:467 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 02 0B  returns 0x02 (0001ms, 2498ms total)
T226A8 104:468 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 04 00  returns 0x02 (0001ms, 2499ms total)
T226A8 104:479 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 06  returns 0x01 (0000ms, 2499ms total)
T26738 104:479 JLINK_IsHalted()  returns FALSE (0001ms, 2500ms total)
T26738 104:581 JLINK_IsHalted()  returns FALSE (0000ms, 2499ms total)
T26738 104:682 JLINK_IsHalted()  returns FALSE (0000ms, 2499ms total)
T26738 104:783 JLINK_IsHalted()  returns FALSE (0000ms, 2499ms total)
T226A8 104:904 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2500ms total)
T226A8 104:914 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 64 00 00 00  returns 0x04 (0000ms, 2500ms total)
T226A8 104:923 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2501ms total)
T226A8 104:924 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 49  returns 0x01 (0001ms, 2502ms total)
T226A8 104:925 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 C6 42  returns 0x04 (0000ms, 2502ms total)
T226A8 104:935 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2503ms total)
T226A8 104:936 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 64  returns 0x01 (0000ms, 2503ms total)
T226A8 104:946 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 2503ms total)
T226A8 104:965 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2504ms total)
T226A8 104:966 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 31 0B 03 00  returns 0x04 (0000ms, 2504ms total)
T226A8 104:975 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0001ms, 2505ms total)
T226A8 104:976 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 4D 0C 03 00  returns 0x04 (0001ms, 2506ms total)
T226A8 105:004 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 39 DF 00 00  returns 0x04 (0000ms, 2506ms total)
T226A8 105:014 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 02 0B  returns 0x02 (0000ms, 2506ms total)
T226A8 105:014 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 04 00  returns 0x02 (0001ms, 2507ms total)
T226A8 105:024 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 06  returns 0x01 (0001ms, 2508ms total)
T26738 105:025 JLINK_IsHalted()  returns FALSE (0001ms, 2509ms total)
T26738 105:126 JLINK_IsHalted()  returns FALSE (0000ms, 2508ms total)
T26738 105:227 JLINK_IsHalted()  returns FALSE (0000ms, 2508ms total)
T26738 105:329 JLINK_IsHalted()  returns FALSE (0000ms, 2508ms total)
T226A8 105:449 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2509ms total)
T226A8 105:459 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 65 00 00 00  returns 0x04 (0001ms, 2510ms total)
T226A8 105:469 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2511ms total)
T226A8 105:470 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 4A  returns 0x01 (0001ms, 2512ms total)
T226A8 105:480 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 C8 42  returns 0x04 (0000ms, 2512ms total)
T226A8 105:489 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2513ms total)
T226A8 105:490 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 65  returns 0x01 (0001ms, 2514ms total)
T226A8 105:500 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2515ms total)
T226A8 105:519 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 2515ms total)
T226A8 105:519 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 31 0B 03 00  returns 0x04 (0001ms, 2516ms total)
T226A8 105:520 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0001ms, 2517ms total)
T226A8 105:530 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 91 EC 03 00  returns 0x04 (0000ms, 2517ms total)
T226A8 105:557 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: F7 E9 03 00  returns 0x04 (0001ms, 2518ms total)
T226A8 105:567 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 02 0B  returns 0x02 (0001ms, 2519ms total)
T226A8 105:568 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 05 00  returns 0x02 (0000ms, 2519ms total)
T226A8 105:577 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 06  returns 0x01 (0001ms, 2520ms total)
T26738 105:578 JLINK_IsHalted()  returns FALSE (0001ms, 2521ms total)
T26738 105:680 JLINK_IsHalted()  returns FALSE (0000ms, 2520ms total)
T26738 105:781 JLINK_IsHalted()  returns FALSE (0000ms, 2520ms total)
T26738 105:882 JLINK_IsHalted()  returns FALSE (0000ms, 2520ms total)
T226A8 106:002 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2521ms total)
T226A8 106:013 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 65 00 00 00  returns 0x04 (0000ms, 2521ms total)
T226A8 106:022 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2522ms total)
T226A8 106:023 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 4A  returns 0x01 (0001ms, 2523ms total)
T226A8 106:032 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 C8 42  returns 0x04 (0001ms, 2524ms total)
T226A8 106:042 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2525ms total)
T226A8 106:043 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 65  returns 0x01 (0001ms, 2526ms total)
T226A8 106:053 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 2526ms total)
T226A8 106:071 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2527ms total)
T226A8 106:072 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 31 0B 03 00  returns 0x04 (0001ms, 2528ms total)
T226A8 106:073 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0001ms, 2529ms total)
T226A8 106:083 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 91 EC 03 00  returns 0x04 (0000ms, 2529ms total)
T226A8 106:110 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: F7 E9 03 00  returns 0x04 (0001ms, 2530ms total)
T226A8 106:120 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 02 0B  returns 0x02 (0001ms, 2531ms total)
T226A8 106:121 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 05 00  returns 0x02 (0000ms, 2531ms total)
T226A8 106:131 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 06  returns 0x01 (0000ms, 2531ms total)
T26738 106:131 JLINK_IsHalted()  returns FALSE (0001ms, 2532ms total)
T26738 106:233 JLINK_IsHalted()  returns FALSE (0000ms, 2531ms total)
T26738 106:334 JLINK_IsHalted()  returns FALSE (0000ms, 2531ms total)
T26738 106:436 JLINK_IsHalted()  returns FALSE (0000ms, 2531ms total)
T226A8 106:556 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2532ms total)
T226A8 106:566 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 66 00 00 00  returns 0x04 (0001ms, 2533ms total)
T226A8 106:575 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2534ms total)
T226A8 106:576 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 4B  returns 0x01 (0001ms, 2535ms total)
T226A8 106:586 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 CA 42  returns 0x04 (0001ms, 2536ms total)
T226A8 106:596 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2537ms total)
T226A8 106:597 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 66  returns 0x01 (0001ms, 2538ms total)
T226A8 106:607 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 2538ms total)
T226A8 106:625 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2539ms total)
T226A8 106:626 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 31 0B 03 00  returns 0x04 (0000ms, 2539ms total)
T226A8 106:626 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 99 EB 03 00  returns 0x04 (0001ms, 2540ms total)
T226A8 106:636 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: B5 EC 03 00  returns 0x04 (0001ms, 2541ms total)
T226A8 106:664 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 1B EA 03 00  returns 0x04 (0001ms, 2542ms total)
T226A8 106:674 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 02 0B  returns 0x02 (0001ms, 2543ms total)
T226A8 106:675 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 00 00  returns 0x02 (0000ms, 2543ms total)
T226A8 106:684 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 06  returns 0x01 (0001ms, 2544ms total)
T26738 106:685 JLINK_IsHalted()  returns FALSE (0000ms, 2544ms total)
T26738 106:787 JLINK_IsHalted()  returns FALSE (0000ms, 2544ms total)
T26738 106:888 JLINK_IsHalted()  returns FALSE (0000ms, 2544ms total)
T26738 106:990 JLINK_IsHalted()  returns FALSE (0000ms, 2544ms total)
T226A8 107:109 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2545ms total)
T226A8 107:119 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 66 00 00 00  returns 0x04 (0000ms, 2545ms total)
T226A8 107:129 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 2545ms total)
T226A8 107:129 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 4B  returns 0x01 (0001ms, 2546ms total)
T226A8 107:139 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 CA 42  returns 0x04 (0000ms, 2546ms total)
T226A8 107:148 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2547ms total)
T226A8 107:149 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 67  returns 0x01 (0001ms, 2548ms total)
T226A8 107:168 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2549ms total)
T226A8 107:187 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 2549ms total)
T226A8 107:188 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 31 0B 03 00  returns 0x04 (0000ms, 2549ms total)
T226A8 107:188 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0001ms, 2550ms total)
T226A8 107:207 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 91 EC 03 00  returns 0x04 (0001ms, 2551ms total)
T226A8 107:243 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: F7 E9 03 00  returns 0x04 (0001ms, 2552ms total)
T226A8 107:261 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 02 0B  returns 0x02 (0001ms, 2553ms total)
T226A8 107:262 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 01 00  returns 0x02 (0001ms, 2554ms total)
T226A8 107:280 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 06  returns 0x01 (0001ms, 2555ms total)
T26738 107:281 JLINK_IsHalted()  returns FALSE (0001ms, 2556ms total)
T26738 107:383 JLINK_IsHalted()  returns FALSE (0000ms, 2555ms total)
T26738 107:484 JLINK_IsHalted()  returns FALSE (0000ms, 2555ms total)
T26738 107:585 JLINK_IsHalted()  returns FALSE (0000ms, 2555ms total)
T226A8 107:705 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2556ms total)
T226A8 107:717 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 67 00 00 00  returns 0x04 (0001ms, 2557ms total)
T226A8 107:728 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2558ms total)
T226A8 107:729 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 4C  returns 0x01 (0001ms, 2559ms total)
T226A8 107:740 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 CC 42  returns 0x04 (0000ms, 2559ms total)
T226A8 107:749 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2560ms total)
T226A8 107:750 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 67  returns 0x01 (0001ms, 2561ms total)
T226A8 107:760 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2562ms total)
T226A8 107:780 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2563ms total)
T226A8 107:781 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 31 0B 03 00  returns 0x04 (0000ms, 2563ms total)
T226A8 107:781 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0001ms, 2564ms total)
T226A8 107:792 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 91 EC 03 00  returns 0x04 (0001ms, 2565ms total)
T226A8 107:821 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: F7 E9 03 00  returns 0x04 (0001ms, 2566ms total)
T226A8 107:831 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 02 0B  returns 0x02 (0000ms, 2566ms total)
T226A8 107:831 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 01 00  returns 0x02 (0001ms, 2567ms total)
T226A8 107:841 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 06  returns 0x01 (0000ms, 2567ms total)
T26738 107:842 JLINK_IsHalted()  returns FALSE (0000ms, 2567ms total)
T26738 107:943 JLINK_IsHalted()  returns FALSE (0000ms, 2567ms total)
T26738 108:044 JLINK_IsHalted()  returns FALSE (0000ms, 2567ms total)
T26738 108:146 JLINK_IsHalted()  returns FALSE (0000ms, 2567ms total)
T226A8 108:266 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 2567ms total)
T226A8 108:275 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 68 00 00 00  returns 0x04 (0001ms, 2568ms total)
T226A8 108:294 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 2568ms total)
T226A8 108:294 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 4C  returns 0x01 (0001ms, 2569ms total)
T226A8 108:304 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 CE 42  returns 0x04 (0001ms, 2570ms total)
T226A8 108:324 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0000ms, 2570ms total)
T226A8 108:324 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 68  returns 0x01 (0001ms, 2571ms total)
T226A8 108:334 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2572ms total)
T226A8 108:352 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2573ms total)
T226A8 108:353 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: A3 13 03 00  returns 0x04 (0001ms, 2574ms total)
T226A8 108:362 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0001ms, 2575ms total)
T226A8 108:363 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: BF 14 03 00  returns 0x04 (0001ms, 2576ms total)
T226A8 108:390 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 39 DF 00 00  returns 0x04 (0001ms, 2577ms total)
T226A8 108:399 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 02 0B  returns 0x02 (0001ms, 2578ms total)
T226A8 108:400 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0001ms, 2579ms total)
T226A8 108:411 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 06  returns 0x01 (0000ms, 2579ms total)
T26738 108:411 JLINK_IsHalted()  returns FALSE (0001ms, 2580ms total)
T26738 108:514 JLINK_IsHalted()  returns FALSE (0000ms, 2579ms total)
T26738 108:615 JLINK_IsHalted()  returns FALSE (0000ms, 2579ms total)
T26738 108:716 JLINK_IsHalted()  returns FALSE (0000ms, 2579ms total)
T226A8 108:835 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2580ms total)
T226A8 108:844 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 68 00 00 00  returns 0x04 (0001ms, 2581ms total)
T226A8 108:853 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2582ms total)
T226A8 108:854 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 4C  returns 0x01 (0001ms, 2583ms total)
T226A8 108:855 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 CE 42  returns 0x04 (0000ms, 2583ms total)
T226A8 108:865 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2584ms total)
T226A8 108:866 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 68  returns 0x01 (0001ms, 2585ms total)
T226A8 108:876 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 2585ms total)
T226A8 108:894 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 2585ms total)
T226A8 108:894 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: A3 13 03 00  returns 0x04 (0001ms, 2586ms total)
T226A8 108:904 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0000ms, 2586ms total)
T226A8 108:904 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: BF 14 03 00  returns 0x04 (0001ms, 2587ms total)
T226A8 108:932 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 39 DF 00 00  returns 0x04 (0001ms, 2588ms total)
T226A8 108:941 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 02 0B  returns 0x02 (0001ms, 2589ms total)
T226A8 108:942 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0001ms, 2590ms total)
T226A8 108:951 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 06  returns 0x01 (0001ms, 2591ms total)
T26738 108:952 JLINK_IsHalted()  returns FALSE (0001ms, 2592ms total)
T26738 109:054 JLINK_IsHalted()  returns FALSE (0000ms, 2591ms total)
T26738 109:155 JLINK_IsHalted()  returns FALSE (0000ms, 2591ms total)
T26738 109:257 JLINK_IsHalted()  returns FALSE (0000ms, 2591ms total)
T226A8 109:376 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2592ms total)
T226A8 109:386 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 69 00 00 00  returns 0x04 (0000ms, 2592ms total)
T226A8 109:395 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2593ms total)
T226A8 109:396 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 4C  returns 0x01 (0000ms, 2593ms total)
T226A8 109:396 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 D0 42  returns 0x04 (0001ms, 2594ms total)
T226A8 109:406 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2595ms total)
T226A8 109:407 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 69  returns 0x01 (0001ms, 2596ms total)
T226A8 109:417 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 2596ms total)
T226A8 109:436 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 2596ms total)
T226A8 109:436 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 37 35 03 00  returns 0x04 (0001ms, 2597ms total)
T226A8 109:446 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0000ms, 2597ms total)
T226A8 109:446 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 53 36 03 00  returns 0x04 (0001ms, 2598ms total)
T226A8 109:473 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 21 DF 00 00  returns 0x04 (0001ms, 2599ms total)
T226A8 109:484 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 02 0B  returns 0x02 (0000ms, 2599ms total)
T226A8 109:484 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 03 00  returns 0x02 (0001ms, 2600ms total)
T226A8 109:494 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 06  returns 0x01 (0001ms, 2601ms total)
T26738 109:495 JLINK_IsHalted()  returns FALSE (0001ms, 2602ms total)
T26738 109:597 JLINK_IsHalted()  returns FALSE (0000ms, 2601ms total)
T26738 109:698 JLINK_IsHalted()  returns FALSE (0000ms, 2601ms total)
T26738 109:800 JLINK_IsHalted()  returns FALSE (0000ms, 2601ms total)
T226A8 109:920 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2602ms total)
T226A8 109:930 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 69 00 00 00  returns 0x04 (0000ms, 2602ms total)
T226A8 109:939 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2603ms total)
T226A8 109:940 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 4C  returns 0x01 (0001ms, 2604ms total)
T226A8 109:941 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 D0 42  returns 0x04 (0000ms, 2604ms total)
T226A8 109:950 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2605ms total)
T226A8 109:951 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 69  returns 0x01 (0001ms, 2606ms total)
T226A8 109:961 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 2606ms total)
T226A8 109:980 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 2606ms total)
T226A8 109:980 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 37 35 03 00  returns 0x04 (0001ms, 2607ms total)
T226A8 109:991 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0001ms, 2608ms total)
T226A8 109:992 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 53 36 03 00  returns 0x04 (0000ms, 2608ms total)
T226A8 110:019 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 21 DF 00 00  returns 0x04 (0001ms, 2609ms total)
T226A8 110:029 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 02 0B  returns 0x02 (0001ms, 2610ms total)
T226A8 110:030 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 03 00  returns 0x02 (0000ms, 2610ms total)
T226A8 110:040 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 06  returns 0x01 (0001ms, 2611ms total)
T26738 110:041 JLINK_IsHalted()  returns FALSE (0000ms, 2611ms total)
T26738 110:142 JLINK_IsHalted()  returns FALSE (0000ms, 2611ms total)
T26738 110:243 JLINK_IsHalted()  returns FALSE (0000ms, 2611ms total)
T26738 110:344 JLINK_IsHalted()  returns FALSE (0000ms, 2611ms total)
T226A8 110:465 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 2611ms total)
T226A8 110:475 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 6A 00 00 00  returns 0x04 (0000ms, 2611ms total)
T226A8 110:484 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2612ms total)
T226A8 110:485 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 4D  returns 0x01 (0000ms, 2612ms total)
T226A8 110:494 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 D2 42  returns 0x04 (0001ms, 2613ms total)
T226A8 110:504 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0000ms, 2613ms total)
T226A8 110:504 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 6A  returns 0x01 (0001ms, 2614ms total)
T226A8 110:514 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 2614ms total)
T226A8 110:532 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2615ms total)
T226A8 110:533 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 37 35 03 00  returns 0x04 (0001ms, 2616ms total)
T226A8 110:534 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0000ms, 2616ms total)
T226A8 110:543 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0001ms, 2617ms total)
T226A8 110:571 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0000ms, 2617ms total)
T226A8 110:580 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 02 0B  returns 0x02 (0001ms, 2618ms total)
T226A8 110:581 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 04 00  returns 0x02 (0000ms, 2618ms total)
T226A8 110:590 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 06  returns 0x01 (0001ms, 2619ms total)
T26738 110:591 JLINK_IsHalted()  returns FALSE (0001ms, 2620ms total)
T26738 110:692 JLINK_IsHalted()  returns FALSE (0000ms, 2619ms total)
T26738 110:794 JLINK_IsHalted()  returns FALSE (0000ms, 2619ms total)
T26738 110:895 JLINK_IsHalted()  returns FALSE (0000ms, 2619ms total)
T226A8 111:015 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2620ms total)
T226A8 111:025 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 6A 00 00 00  returns 0x04 (0001ms, 2621ms total)
T226A8 111:035 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2622ms total)
T226A8 111:036 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 4D  returns 0x01 (0000ms, 2622ms total)
T226A8 111:045 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 D2 42  returns 0x04 (0001ms, 2623ms total)
T226A8 111:055 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2624ms total)
T226A8 111:056 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 6A  returns 0x01 (0001ms, 2625ms total)
T226A8 111:066 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2626ms total)
T226A8 111:085 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 2626ms total)
T226A8 111:085 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 37 35 03 00  returns 0x04 (0001ms, 2627ms total)
T226A8 111:086 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0001ms, 2628ms total)
T226A8 111:096 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0001ms, 2629ms total)
T226A8 111:124 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0001ms, 2630ms total)
T226A8 111:134 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 02 0B  returns 0x02 (0001ms, 2631ms total)
T226A8 111:135 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 04 00  returns 0x02 (0000ms, 2631ms total)
T226A8 111:145 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 06  returns 0x01 (0000ms, 2631ms total)
T26738 111:146 JLINK_IsHalted()  returns FALSE (0000ms, 2631ms total)
T26738 111:247 JLINK_IsHalted()  returns FALSE (0000ms, 2631ms total)
T26738 111:349 JLINK_IsHalted()  returns FALSE (0000ms, 2631ms total)
T26738 111:450 JLINK_IsHalted()  returns FALSE (0000ms, 2631ms total)
T226A8 111:569 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2632ms total)
T226A8 111:579 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 6B 00 00 00  returns 0x04 (0001ms, 2633ms total)
T226A8 111:588 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2634ms total)
T226A8 111:589 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 4E  returns 0x01 (0001ms, 2635ms total)
T226A8 111:599 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 D4 42  returns 0x04 (0000ms, 2635ms total)
T226A8 111:608 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2636ms total)
T226A8 111:609 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 6B  returns 0x01 (0000ms, 2636ms total)
T226A8 111:618 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2637ms total)
T226A8 111:637 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2638ms total)
T226A8 111:638 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 37 35 03 00  returns 0x04 (0000ms, 2638ms total)
T226A8 111:638 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0001ms, 2639ms total)
T226A8 111:648 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 91 EC 03 00  returns 0x04 (0000ms, 2639ms total)
T226A8 111:675 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: F7 E9 03 00  returns 0x04 (0001ms, 2640ms total)
T226A8 111:685 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 02 0B  returns 0x02 (0001ms, 2641ms total)
T226A8 111:686 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 05 00  returns 0x02 (0000ms, 2641ms total)
T226A8 111:695 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 06  returns 0x01 (0001ms, 2642ms total)
T26738 111:696 JLINK_IsHalted()  returns FALSE (0001ms, 2643ms total)
T26738 111:798 JLINK_IsHalted()  returns FALSE (0000ms, 2642ms total)
T26738 111:899 JLINK_IsHalted()  returns FALSE (0000ms, 2642ms total)
T26738 112:000 JLINK_IsHalted()  returns FALSE (0000ms, 2642ms total)
T226A8 112:120 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2643ms total)
T226A8 112:130 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 6B 00 00 00  returns 0x04 (0000ms, 2643ms total)
T226A8 112:139 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2644ms total)
T226A8 112:140 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 4E  returns 0x01 (0000ms, 2644ms total)
T226A8 112:149 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 D6 42  returns 0x04 (0001ms, 2645ms total)
T226A8 112:167 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2646ms total)
T226A8 112:168 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 6C  returns 0x01 (0001ms, 2647ms total)
T226A8 112:186 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2648ms total)
T226A8 112:205 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2649ms total)
T226A8 112:206 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 37 35 03 00  returns 0x04 (0000ms, 2649ms total)
T226A8 112:206 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: A1 EB 03 00  returns 0x04 (0001ms, 2650ms total)
T226A8 112:225 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: BD EC 03 00  returns 0x04 (0001ms, 2651ms total)
T226A8 112:264 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 23 EA 03 00  returns 0x04 (0000ms, 2651ms total)
T226A8 112:283 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 06 0B  returns 0x02 (0001ms, 2652ms total)
T226A8 112:292 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 00 00  returns 0x02 (0001ms, 2653ms total)
T226A8 112:310 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 07  returns 0x01 (0001ms, 2654ms total)
T26738 112:320 JLINK_IsHalted()  returns FALSE (0000ms, 2654ms total)
T26738 112:421 JLINK_IsHalted()  returns FALSE (0000ms, 2654ms total)
T26738 112:523 JLINK_IsHalted()  returns FALSE (0000ms, 2654ms total)
T226A8 112:643 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2655ms total)
T226A8 112:653 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 6C 00 00 00  returns 0x04 (0000ms, 2655ms total)
T226A8 112:662 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2656ms total)
T226A8 112:663 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 4F  returns 0x01 (0001ms, 2657ms total)
T226A8 112:672 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 D6 42  returns 0x04 (0001ms, 2658ms total)
T226A8 112:682 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2659ms total)
T226A8 112:683 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 6C  returns 0x01 (0001ms, 2660ms total)
T226A8 112:692 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2661ms total)
T226A8 112:711 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 2661ms total)
T226A8 112:711 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 37 35 03 00  returns 0x04 (0001ms, 2662ms total)
T226A8 112:712 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: A1 EB 03 00  returns 0x04 (0001ms, 2663ms total)
T226A8 112:722 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: BD EC 03 00  returns 0x04 (0000ms, 2663ms total)
T226A8 112:749 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 23 EA 03 00  returns 0x04 (0001ms, 2664ms total)
T226A8 112:758 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 06 0B  returns 0x02 (0001ms, 2665ms total)
T226A8 112:768 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 00 00  returns 0x02 (0000ms, 2665ms total)
T226A8 112:777 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 07  returns 0x01 (0001ms, 2666ms total)
T26738 112:787 JLINK_IsHalted()  returns FALSE (0000ms, 2666ms total)
T26738 112:888 JLINK_IsHalted()  returns FALSE (0000ms, 2666ms total)
T26738 112:989 JLINK_IsHalted()  returns FALSE (0000ms, 2666ms total)
T26738 113:091 JLINK_IsHalted()  returns FALSE (0000ms, 2666ms total)
T226A8 113:210 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2667ms total)
T226A8 113:220 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 6D 00 00 00  returns 0x04 (0001ms, 2668ms total)
T226A8 113:238 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2669ms total)
T226A8 113:239 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 50  returns 0x01 (0001ms, 2670ms total)
T226A8 113:257 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 D8 42  returns 0x04 (0001ms, 2671ms total)
T226A8 113:267 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2672ms total)
T226A8 113:268 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 6D  returns 0x01 (0000ms, 2672ms total)
T226A8 113:277 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2673ms total)
T226A8 113:296 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2674ms total)
T226A8 113:297 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 37 35 03 00  returns 0x04 (0001ms, 2675ms total)
T226A8 113:298 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0000ms, 2675ms total)
T226A8 113:307 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 91 EC 03 00  returns 0x04 (0001ms, 2676ms total)
T226A8 113:334 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: F7 E9 03 00  returns 0x04 (0001ms, 2677ms total)
T226A8 113:344 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 06 0B  returns 0x02 (0001ms, 2678ms total)
T226A8 113:345 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 01 00  returns 0x02 (0000ms, 2678ms total)
T226A8 113:354 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 07  returns 0x01 (0000ms, 2678ms total)
T26738 113:354 JLINK_IsHalted()  returns FALSE (0002ms, 2680ms total)
T26738 113:458 JLINK_IsHalted()  returns FALSE (0000ms, 2678ms total)
T26738 113:559 JLINK_IsHalted()  returns FALSE (0000ms, 2678ms total)
T26738 113:660 JLINK_IsHalted()  returns FALSE (0000ms, 2678ms total)
T226A8 113:779 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2679ms total)
T226A8 113:789 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 6D 00 00 00  returns 0x04 (0000ms, 2679ms total)
T226A8 113:799 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2680ms total)
T226A8 113:800 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 50  returns 0x01 (0000ms, 2680ms total)
T226A8 113:809 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 D8 42  returns 0x04 (0001ms, 2681ms total)
T226A8 113:819 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2682ms total)
T226A8 113:820 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 6D  returns 0x01 (0000ms, 2682ms total)
T226A8 113:829 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2683ms total)
T226A8 113:848 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 2683ms total)
T226A8 113:848 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 37 35 03 00  returns 0x04 (0001ms, 2684ms total)
T226A8 113:849 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0001ms, 2685ms total)
T226A8 113:859 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 91 EC 03 00  returns 0x04 (0000ms, 2685ms total)
T226A8 113:886 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: F7 E9 03 00  returns 0x04 (0000ms, 2685ms total)
T226A8 113:895 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 06 0B  returns 0x02 (0001ms, 2686ms total)
T226A8 113:896 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 01 00  returns 0x02 (0001ms, 2687ms total)
T226A8 113:905 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 07  returns 0x01 (0001ms, 2688ms total)
T26738 113:906 JLINK_IsHalted()  returns FALSE (0001ms, 2689ms total)
T26738 114:008 JLINK_IsHalted()  returns FALSE (0000ms, 2688ms total)
T26738 114:109 JLINK_IsHalted()  returns FALSE (0000ms, 2688ms total)
T26738 114:211 JLINK_IsHalted()  returns FALSE (0000ms, 2688ms total)
T226A8 114:332 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2689ms total)
T226A8 114:342 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 6E 00 00 00  returns 0x04 (0000ms, 2689ms total)
T226A8 114:351 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2690ms total)
T226A8 114:352 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 51  returns 0x01 (0001ms, 2691ms total)
T226A8 114:361 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 DA 42  returns 0x04 (0001ms, 2692ms total)
T226A8 114:371 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2693ms total)
T226A8 114:372 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 6E  returns 0x01 (0000ms, 2693ms total)
T226A8 114:381 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2694ms total)
T226A8 114:400 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2695ms total)
T226A8 114:401 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 37 35 03 00  returns 0x04 (0000ms, 2695ms total)
T226A8 114:401 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0001ms, 2696ms total)
T226A8 114:411 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0000ms, 2696ms total)
T226A8 114:438 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0000ms, 2696ms total)
T226A8 114:447 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 06 0B  returns 0x02 (0001ms, 2697ms total)
T226A8 114:448 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0000ms, 2697ms total)
T226A8 114:457 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 07  returns 0x01 (0001ms, 2698ms total)
T26738 114:458 JLINK_IsHalted()  returns FALSE (0001ms, 2699ms total)
T26738 114:560 JLINK_IsHalted()  returns FALSE (0000ms, 2698ms total)
T26738 114:661 JLINK_IsHalted()  returns FALSE (0000ms, 2698ms total)
T26738 114:762 JLINK_IsHalted()  returns FALSE (0000ms, 2698ms total)
T226A8 114:882 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2699ms total)
T226A8 114:892 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 6E 00 00 00  returns 0x04 (0001ms, 2700ms total)
T226A8 114:902 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2701ms total)
T226A8 114:903 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 51  returns 0x01 (0000ms, 2701ms total)
T226A8 114:913 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 DA 42  returns 0x04 (0000ms, 2701ms total)
T226A8 114:922 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2702ms total)
T226A8 114:923 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 6E  returns 0x01 (0001ms, 2703ms total)
T226A8 114:933 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 2703ms total)
T226A8 114:952 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2704ms total)
T226A8 114:953 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 37 35 03 00  returns 0x04 (0001ms, 2705ms total)
T226A8 114:954 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0000ms, 2705ms total)
T226A8 114:964 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0000ms, 2705ms total)
T226A8 114:991 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0001ms, 2706ms total)
T226A8 115:001 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 06 0B  returns 0x02 (0000ms, 2706ms total)
T226A8 115:001 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0001ms, 2707ms total)
T226A8 115:011 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 07  returns 0x01 (0001ms, 2708ms total)
T26738 115:012 JLINK_IsHalted()  returns FALSE (0000ms, 2708ms total)
T26738 115:113 JLINK_IsHalted()  returns FALSE (0000ms, 2708ms total)
T26738 115:214 JLINK_IsHalted()  returns FALSE (0000ms, 2708ms total)
T26738 115:315 JLINK_IsHalted()  returns FALSE (0000ms, 2708ms total)
T226A8 115:436 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 2708ms total)
T226A8 115:446 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 6F 00 00 00  returns 0x04 (0001ms, 2709ms total)
T226A8 115:456 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2710ms total)
T226A8 115:457 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 52  returns 0x01 (0000ms, 2710ms total)
T226A8 115:466 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 DC 42  returns 0x04 (0001ms, 2712ms total)
T226A8 115:476 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2713ms total)
T226A8 115:477 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 6F  returns 0x01 (0001ms, 2714ms total)
T226A8 115:487 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 2714ms total)
T226A8 115:505 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2715ms total)
T226A8 115:506 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 37 35 03 00  returns 0x04 (0001ms, 2716ms total)
T226A8 115:507 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0000ms, 2716ms total)
T226A8 115:516 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 91 EC 03 00  returns 0x04 (0001ms, 2717ms total)
T226A8 115:544 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: F7 E9 03 00  returns 0x04 (0000ms, 2717ms total)
T226A8 115:553 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 06 0B  returns 0x02 (0001ms, 2718ms total)
T226A8 115:554 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 03 00  returns 0x02 (0000ms, 2718ms total)
T226A8 115:563 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 07  returns 0x01 (0001ms, 2719ms total)
T26738 115:564 JLINK_IsHalted()  returns FALSE (0001ms, 2720ms total)
T26738 115:666 JLINK_IsHalted()  returns FALSE (0000ms, 2719ms total)
T26738 115:767 JLINK_IsHalted()  returns FALSE (0000ms, 2719ms total)
T26738 115:869 JLINK_IsHalted()  returns FALSE (0000ms, 2719ms total)
T226A8 115:989 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 2719ms total)
T226A8 115:998 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 6F 00 00 00  returns 0x04 (0001ms, 2720ms total)
T226A8 116:008 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2721ms total)
T226A8 116:009 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 52  returns 0x01 (0001ms, 2722ms total)
T226A8 116:019 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 DC 42  returns 0x04 (0000ms, 2722ms total)
T226A8 116:028 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2723ms total)
T226A8 116:029 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 6F  returns 0x01 (0001ms, 2724ms total)
T226A8 116:039 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2725ms total)
T226A8 116:058 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2726ms total)
T226A8 116:059 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 37 35 03 00  returns 0x04 (0000ms, 2726ms total)
T226A8 116:059 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0001ms, 2727ms total)
T226A8 116:069 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 91 EC 03 00  returns 0x04 (0001ms, 2728ms total)
T226A8 116:097 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: F7 E9 03 00  returns 0x04 (0001ms, 2729ms total)
T226A8 116:107 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 06 0B  returns 0x02 (0000ms, 2729ms total)
T226A8 116:107 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 03 00  returns 0x02 (0001ms, 2730ms total)
T226A8 116:117 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 07  returns 0x01 (0001ms, 2731ms total)
T26738 116:118 JLINK_IsHalted()  returns FALSE (0001ms, 2732ms total)
T26738 116:221 JLINK_IsHalted()  returns FALSE (0000ms, 2731ms total)
T26738 116:322 JLINK_IsHalted()  returns FALSE (0000ms, 2731ms total)
T26738 116:423 JLINK_IsHalted()  returns FALSE (0000ms, 2731ms total)
T226A8 116:544 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2732ms total)
T226A8 116:553 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 70 00 00 00  returns 0x04 (0001ms, 2733ms total)
T226A8 116:563 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 2733ms total)
T226A8 116:563 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 52  returns 0x01 (0001ms, 2734ms total)
T226A8 116:564 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 DE 42  returns 0x04 (0001ms, 2735ms total)
T226A8 116:574 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2736ms total)
T226A8 116:575 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 70  returns 0x01 (0000ms, 2736ms total)
T226A8 116:584 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2737ms total)
T226A8 116:604 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2738ms total)
T226A8 116:605 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: E9 E7 02 00  returns 0x04 (0000ms, 2738ms total)
T226A8 116:614 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0001ms, 2739ms total)
T226A8 116:615 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 05 E9 02 00  returns 0x04 (0000ms, 2739ms total)
T226A8 116:643 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 39 DF 00 00  returns 0x04 (0000ms, 2739ms total)
T226A8 116:652 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 06 0B  returns 0x02 (0001ms, 2741ms total)
T226A8 116:653 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 04 00  returns 0x02 (0001ms, 2742ms total)
T226A8 116:663 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 07  returns 0x01 (0001ms, 2743ms total)
T26738 116:664 JLINK_IsHalted()  returns FALSE (0000ms, 2743ms total)
T26738 116:765 JLINK_IsHalted()  returns FALSE (0000ms, 2743ms total)
T26738 116:866 JLINK_IsHalted()  returns FALSE (0000ms, 2743ms total)
T26738 116:967 JLINK_IsHalted()  returns FALSE (0001ms, 2744ms total)
T226A8 117:087 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2744ms total)
T226A8 117:097 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 70 00 00 00  returns 0x04 (0001ms, 2745ms total)
T226A8 117:107 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2746ms total)
T226A8 117:108 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 52  returns 0x01 (0000ms, 2746ms total)
T226A8 117:108 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 DE 42  returns 0x04 (0001ms, 2747ms total)
T226A8 117:118 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0000ms, 2747ms total)
T226A8 117:119 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 70  returns 0x01 (0000ms, 2747ms total)
T226A8 117:128 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2748ms total)
T226A8 117:147 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2749ms total)
T226A8 117:148 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: C9 2D 03 00  returns 0x04 (0000ms, 2749ms total)
T226A8 117:166 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0001ms, 2750ms total)
T226A8 117:167 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: E5 2E 03 00  returns 0x04 (0001ms, 2751ms total)
T226A8 117:204 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 21 DF 00 00  returns 0x04 (0001ms, 2752ms total)
T226A8 117:223 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 06 0B  returns 0x02 (0001ms, 2753ms total)
T226A8 117:224 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 05 00  returns 0x02 (0000ms, 2753ms total)
T226A8 117:243 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 07  returns 0x01 (0000ms, 2753ms total)
T26738 117:243 JLINK_IsHalted()  returns FALSE (0001ms, 2754ms total)
T26738 117:345 JLINK_IsHalted()  returns FALSE (0000ms, 2753ms total)
T26738 117:447 JLINK_IsHalted()  returns FALSE (0000ms, 2753ms total)
T26738 117:548 JLINK_IsHalted()  returns FALSE (0000ms, 2753ms total)
T226A8 117:667 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2754ms total)
T226A8 117:676 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 71 00 00 00  returns 0x04 (0001ms, 2755ms total)
T226A8 117:686 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 2755ms total)
T226A8 117:686 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 52  returns 0x01 (0001ms, 2756ms total)
T226A8 117:687 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 E0 42  returns 0x04 (0001ms, 2757ms total)
T226A8 117:697 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0000ms, 2757ms total)
T226A8 117:698 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 71  returns 0x01 (0000ms, 2757ms total)
T226A8 117:707 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2758ms total)
T226A8 117:726 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 2758ms total)
T226A8 117:726 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: C9 2D 03 00  returns 0x04 (0001ms, 2759ms total)
T226A8 117:736 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0001ms, 2760ms total)
T226A8 117:737 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: E5 2E 03 00  returns 0x04 (0000ms, 2760ms total)
T226A8 117:765 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 21 DF 00 00  returns 0x04 (0001ms, 2761ms total)
T226A8 117:774 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 06 0B  returns 0x02 (0001ms, 2762ms total)
T226A8 117:775 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 05 00  returns 0x02 (0001ms, 2763ms total)
T226A8 117:784 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 07  returns 0x01 (0001ms, 2764ms total)
T26738 117:785 JLINK_IsHalted()  returns FALSE (0001ms, 2765ms total)
T26738 117:886 JLINK_IsHalted()  returns FALSE (0000ms, 2764ms total)
T26738 117:987 JLINK_IsHalted()  returns FALSE (0000ms, 2764ms total)
T26738 118:088 JLINK_IsHalted()  returns FALSE (0000ms, 2764ms total)
T226A8 118:209 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 2764ms total)
T226A8 118:219 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 72 00 00 00  returns 0x04 (0000ms, 2764ms total)
T226A8 118:237 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 2764ms total)
T226A8 118:237 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 53  returns 0x01 (0001ms, 2765ms total)
T226A8 118:246 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 E2 42  returns 0x04 (0001ms, 2766ms total)
T226A8 118:265 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2767ms total)
T226A8 118:266 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 72  returns 0x01 (0001ms, 2768ms total)
T226A8 118:285 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2769ms total)
T226A8 118:303 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2770ms total)
T226A8 118:304 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: C9 2D 03 00  returns 0x04 (0000ms, 2770ms total)
T226A8 118:305 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: A1 EB 03 00  returns 0x04 (0000ms, 2770ms total)
T226A8 118:314 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: BD EC 03 00  returns 0x04 (0000ms, 2770ms total)
T226A8 118:341 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 23 EA 03 00  returns 0x04 (0000ms, 2771ms total)
T226A8 118:350 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 06 0B  returns 0x02 (0001ms, 2772ms total)
T226A8 118:351 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 00 00  returns 0x02 (0000ms, 2772ms total)
T226A8 118:360 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 07  returns 0x01 (0001ms, 2773ms total)
T26738 118:361 JLINK_IsHalted()  returns FALSE (0001ms, 2774ms total)
T26738 118:462 JLINK_IsHalted()  returns FALSE (0000ms, 2773ms total)
T26738 118:564 JLINK_IsHalted()  returns FALSE (0000ms, 2773ms total)
T26738 118:665 JLINK_IsHalted()  returns FALSE (0000ms, 2773ms total)
T226A8 118:786 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2774ms total)
T226A8 118:795 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 72 00 00 00  returns 0x04 (0001ms, 2775ms total)
T226A8 118:805 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 2775ms total)
T226A8 118:805 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 53  returns 0x01 (0001ms, 2776ms total)
T226A8 118:815 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 E2 42  returns 0x04 (0001ms, 2777ms total)
T226A8 118:825 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2778ms total)
T226A8 118:826 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 72  returns 0x01 (0001ms, 2779ms total)
T226A8 118:836 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2780ms total)
T226A8 118:855 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 2780ms total)
T226A8 118:855 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: C9 2D 03 00  returns 0x04 (0001ms, 2781ms total)
T226A8 118:856 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: A1 EB 03 00  returns 0x04 (0001ms, 2782ms total)
T226A8 118:866 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: BD EC 03 00  returns 0x04 (0000ms, 2782ms total)
T226A8 118:892 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 23 EA 03 00  returns 0x04 (0001ms, 2783ms total)
T226A8 118:902 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 06 0B  returns 0x02 (0000ms, 2783ms total)
T226A8 118:902 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 00 00  returns 0x02 (0001ms, 2784ms total)
T226A8 118:912 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 07  returns 0x01 (0001ms, 2785ms total)
T26738 118:913 JLINK_IsHalted()  returns FALSE (0000ms, 2785ms total)
T26738 119:014 JLINK_IsHalted()  returns FALSE (0001ms, 2786ms total)
T26738 119:117 JLINK_IsHalted()  returns FALSE (0000ms, 2785ms total)
T26738 119:218 JLINK_IsHalted()  returns FALSE (0000ms, 2785ms total)
T226A8 119:337 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2786ms total)
T226A8 119:346 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 73 00 00 00  returns 0x04 (0001ms, 2787ms total)
T226A8 119:356 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 2787ms total)
T226A8 119:356 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 54  returns 0x01 (0001ms, 2788ms total)
T226A8 119:366 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 E4 42  returns 0x04 (0000ms, 2788ms total)
T226A8 119:375 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2789ms total)
T226A8 119:376 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 73  returns 0x01 (0000ms, 2789ms total)
T226A8 119:386 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 2789ms total)
T226A8 119:404 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2790ms total)
T226A8 119:405 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: C9 2D 03 00  returns 0x04 (0001ms, 2791ms total)
T226A8 119:406 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0000ms, 2791ms total)
T226A8 119:415 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 91 EC 03 00  returns 0x04 (0001ms, 2792ms total)
T226A8 119:442 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: F7 E9 03 00  returns 0x04 (0001ms, 2793ms total)
T226A8 119:453 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 06 0B  returns 0x02 (0000ms, 2793ms total)
T226A8 119:453 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 01 00  returns 0x02 (0001ms, 2794ms total)
T226A8 119:463 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 07  returns 0x01 (0000ms, 2794ms total)
T26738 119:463 JLINK_IsHalted()  returns FALSE (0001ms, 2795ms total)
T26738 119:565 JLINK_IsHalted()  returns FALSE (0000ms, 2794ms total)
T26738 119:666 JLINK_IsHalted()  returns FALSE (0000ms, 2794ms total)
T26738 119:767 JLINK_IsHalted()  returns FALSE (0000ms, 2794ms total)
T226A8 119:888 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2795ms total)
T226A8 119:898 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 73 00 00 00  returns 0x04 (0001ms, 2796ms total)
T226A8 119:907 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2797ms total)
T226A8 119:908 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 54  returns 0x01 (0001ms, 2798ms total)
T226A8 119:917 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 E4 42  returns 0x04 (0001ms, 2799ms total)
T226A8 119:927 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2800ms total)
T226A8 119:928 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 73  returns 0x01 (0001ms, 2801ms total)
T226A8 119:938 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 2801ms total)
T226A8 119:956 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2802ms total)
T226A8 119:957 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: C9 2D 03 00  returns 0x04 (0001ms, 2803ms total)
T226A8 119:958 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0000ms, 2803ms total)
T226A8 119:968 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 91 EC 03 00  returns 0x04 (0000ms, 2803ms total)
T226A8 119:996 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: F7 E9 03 00  returns 0x04 (0000ms, 2803ms total)
T226A8 120:005 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 06 0B  returns 0x02 (0001ms, 2804ms total)
T226A8 120:006 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 01 00  returns 0x02 (0001ms, 2805ms total)
T226A8 120:016 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 07  returns 0x01 (0000ms, 2805ms total)
T26738 120:016 JLINK_IsHalted()  returns FALSE (0001ms, 2806ms total)
T26738 120:118 JLINK_IsHalted()  returns FALSE (0000ms, 2805ms total)
T26738 120:220 JLINK_IsHalted()  returns FALSE (0000ms, 2805ms total)
T26738 120:321 JLINK_IsHalted()  returns FALSE (0000ms, 2805ms total)
T226A8 120:440 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2806ms total)
T226A8 120:450 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 74 00 00 00  returns 0x04 (0001ms, 2807ms total)
T226A8 120:459 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2808ms total)
T226A8 120:460 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 55  returns 0x01 (0001ms, 2809ms total)
T226A8 120:470 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 E6 42  returns 0x04 (0000ms, 2809ms total)
T226A8 120:480 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2810ms total)
T226A8 120:481 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 74  returns 0x01 (0001ms, 2811ms total)
T226A8 120:490 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2812ms total)
T226A8 120:509 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2813ms total)
T226A8 120:510 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: C9 2D 03 00  returns 0x04 (0000ms, 2813ms total)
T226A8 120:510 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0001ms, 2814ms total)
T226A8 120:520 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0001ms, 2815ms total)
T226A8 120:548 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0000ms, 2815ms total)
T226A8 120:558 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 06 0B  returns 0x02 (0000ms, 2815ms total)
T226A8 120:558 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0001ms, 2816ms total)
T226A8 120:568 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 07  returns 0x01 (0001ms, 2817ms total)
T26738 120:569 JLINK_IsHalted()  returns FALSE (0000ms, 2817ms total)
T26738 120:671 JLINK_IsHalted()  returns FALSE (0000ms, 2817ms total)
T26738 120:772 JLINK_IsHalted()  returns FALSE (0000ms, 2817ms total)
T26738 120:873 JLINK_IsHalted()  returns FALSE (0000ms, 2817ms total)
T226A8 120:994 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2818ms total)
T226A8 121:004 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 74 00 00 00  returns 0x04 (0001ms, 2819ms total)
T226A8 121:014 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2820ms total)
T226A8 121:015 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 55  returns 0x01 (0001ms, 2821ms total)
T226A8 121:025 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 E6 42  returns 0x04 (0000ms, 2821ms total)
T226A8 121:035 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0000ms, 2821ms total)
T226A8 121:035 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 74  returns 0x01 (0001ms, 2822ms total)
T226A8 121:045 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2823ms total)
T226A8 121:064 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2824ms total)
T226A8 121:065 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: C9 2D 03 00  returns 0x04 (0001ms, 2825ms total)
T226A8 121:066 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0000ms, 2825ms total)
T226A8 121:076 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0001ms, 2826ms total)
T226A8 121:104 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0001ms, 2827ms total)
T226A8 121:114 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 06 0B  returns 0x02 (0000ms, 2827ms total)
T226A8 121:114 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0001ms, 2828ms total)
T226A8 121:124 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 07  returns 0x01 (0001ms, 2829ms total)
T26738 121:125 JLINK_IsHalted()  returns FALSE (0001ms, 2830ms total)
T26738 121:227 JLINK_IsHalted()  returns FALSE (0000ms, 2829ms total)
T26738 121:328 JLINK_IsHalted()  returns FALSE (0000ms, 2829ms total)
T26738 121:430 JLINK_IsHalted()  returns FALSE (0000ms, 2829ms total)
T226A8 121:550 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2830ms total)
T226A8 121:560 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 75 00 00 00  returns 0x04 (0000ms, 2830ms total)
T226A8 121:569 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2831ms total)
T226A8 121:570 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 56  returns 0x01 (0001ms, 2832ms total)
T226A8 121:580 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 E8 42  returns 0x04 (0000ms, 2832ms total)
T226A8 121:589 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2833ms total)
T226A8 121:590 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 75  returns 0x01 (0001ms, 2834ms total)
T226A8 121:600 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 2834ms total)
T226A8 121:619 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2835ms total)
T226A8 121:620 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: C9 2D 03 00  returns 0x04 (0000ms, 2835ms total)
T226A8 121:620 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0001ms, 2836ms total)
T226A8 121:630 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 91 EC 03 00  returns 0x04 (0000ms, 2836ms total)
T226A8 121:658 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: F7 E9 03 00  returns 0x04 (0000ms, 2836ms total)
T226A8 121:667 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 06 0B  returns 0x02 (0001ms, 2837ms total)
T226A8 121:668 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 03 00  returns 0x02 (0000ms, 2837ms total)
T226A8 121:677 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 07  returns 0x01 (0001ms, 2838ms total)
T26738 121:678 JLINK_IsHalted()  returns FALSE (0001ms, 2839ms total)
T26738 121:780 JLINK_IsHalted()  returns FALSE (0000ms, 2838ms total)
T26738 121:881 JLINK_IsHalted()  returns FALSE (0000ms, 2838ms total)
T26738 121:983 JLINK_IsHalted()  returns FALSE (0001ms, 2839ms total)
T226A8 122:104 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2839ms total)
T226A8 122:114 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 75 00 00 00  returns 0x04 (0001ms, 2840ms total)
T226A8 122:124 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 2840ms total)
T226A8 122:124 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 56  returns 0x01 (0001ms, 2841ms total)
T226A8 122:134 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 E8 42  returns 0x04 (0001ms, 2842ms total)
T226A8 122:143 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2843ms total)
T226A8 122:144 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 76  returns 0x01 (0001ms, 2844ms total)
T226A8 122:162 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2845ms total)
T226A8 122:181 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2846ms total)
T226A8 122:182 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 2F A1 03 00  returns 0x04 (0000ms, 2846ms total)
T226A8 122:191 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0001ms, 2847ms total)
T226A8 122:200 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 4B A2 03 00  returns 0x04 (0001ms, 2848ms total)
T226A8 122:237 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 39 DF 00 00  returns 0x04 (0001ms, 2849ms total)
T226A8 122:255 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 06 0B  returns 0x02 (0001ms, 2850ms total)
T226A8 122:256 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 04 00  returns 0x02 (0001ms, 2851ms total)
T226A8 122:275 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 07  returns 0x01 (0001ms, 2852ms total)
T26738 122:276 JLINK_IsHalted()  returns FALSE (0001ms, 2853ms total)
T26738 122:379 JLINK_IsHalted()  returns FALSE (0000ms, 2852ms total)
T26738 122:480 JLINK_IsHalted()  returns FALSE (0000ms, 2852ms total)
T26738 122:581 JLINK_IsHalted()  returns FALSE (0000ms, 2852ms total)
T226A8 122:702 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2853ms total)
T226A8 122:712 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 76 00 00 00  returns 0x04 (0000ms, 2853ms total)
T226A8 122:722 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 2853ms total)
T226A8 122:722 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 56  returns 0x01 (0001ms, 2854ms total)
T226A8 122:723 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 EA 42  returns 0x04 (0001ms, 2855ms total)
T226A8 122:733 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0000ms, 2855ms total)
T226A8 122:733 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 76  returns 0x01 (0001ms, 2856ms total)
T226A8 122:743 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2857ms total)
T226A8 122:761 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2858ms total)
T226A8 122:762 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 2F A1 03 00  returns 0x04 (0001ms, 2859ms total)
T226A8 122:771 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0001ms, 2860ms total)
T226A8 122:772 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 4B A2 03 00  returns 0x04 (0001ms, 2861ms total)
T226A8 122:799 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 39 DF 00 00  returns 0x04 (0001ms, 2862ms total)
T226A8 122:808 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 06 0B  returns 0x02 (0001ms, 2863ms total)
T226A8 122:809 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 04 00  returns 0x02 (0001ms, 2864ms total)
T226A8 122:819 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 07  returns 0x01 (0000ms, 2864ms total)
T26738 122:819 JLINK_IsHalted()  returns FALSE (0001ms, 2865ms total)
T26738 122:921 JLINK_IsHalted()  returns FALSE (0000ms, 2864ms total)
T26738 123:022 JLINK_IsHalted()  returns FALSE (0000ms, 2864ms total)
T26738 123:124 JLINK_IsHalted()  returns FALSE (0000ms, 2864ms total)
T226A8 123:245 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2865ms total)
T226A8 123:255 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 77 00 00 00  returns 0x04 (0001ms, 2866ms total)
T226A8 123:274 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2867ms total)
T226A8 123:275 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 56  returns 0x01 (0001ms, 2868ms total)
T226A8 123:276 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 EC 42  returns 0x04 (0000ms, 2868ms total)
T226A8 123:295 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2869ms total)
T226A8 123:296 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 77  returns 0x01 (0000ms, 2869ms total)
T226A8 123:306 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 2869ms total)
T226A8 123:324 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2870ms total)
T226A8 123:325 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 43 68 03 00  returns 0x04 (0001ms, 2871ms total)
T226A8 123:334 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0001ms, 2872ms total)
T226A8 123:335 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 5F 69 03 00  returns 0x04 (0000ms, 2872ms total)
T226A8 123:362 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 21 DF 00 00  returns 0x04 (0000ms, 2872ms total)
T226A8 123:371 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 06 0B  returns 0x02 (0001ms, 2873ms total)
T226A8 123:372 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 05 00  returns 0x02 (0000ms, 2873ms total)
T226A8 123:381 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 07  returns 0x01 (0001ms, 2874ms total)
T26738 123:382 JLINK_IsHalted()  returns FALSE (0001ms, 2875ms total)
T26738 123:484 JLINK_IsHalted()  returns FALSE (0000ms, 2874ms total)
T26738 123:585 JLINK_IsHalted()  returns FALSE (0000ms, 2874ms total)
T26738 123:686 JLINK_IsHalted()  returns FALSE (0000ms, 2874ms total)
T226A8 123:806 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2875ms total)
T226A8 123:817 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 77 00 00 00  returns 0x04 (0000ms, 2875ms total)
T226A8 123:826 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2876ms total)
T226A8 123:827 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 56  returns 0x01 (0000ms, 2876ms total)
T226A8 123:827 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 EC 42  returns 0x04 (0001ms, 2877ms total)
T226A8 123:837 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2878ms total)
T226A8 123:838 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 77  returns 0x01 (0001ms, 2879ms total)
T226A8 123:848 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 2879ms total)
T226A8 123:866 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2880ms total)
T226A8 123:867 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: 43 68 03 00  returns 0x04 (0000ms, 2880ms total)
T226A8 123:876 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0001ms, 2881ms total)
T226A8 123:877 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 5F 69 03 00  returns 0x04 (0000ms, 2881ms total)
T226A8 123:904 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 21 DF 00 00  returns 0x04 (0001ms, 2882ms total)
T226A8 123:913 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 06 0B  returns 0x02 (0001ms, 2883ms total)
T226A8 123:914 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 05 00  returns 0x02 (0001ms, 2884ms total)
T226A8 123:923 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 07  returns 0x01 (0001ms, 2885ms total)
T26738 123:924 JLINK_IsHalted()  returns FALSE (0001ms, 2886ms total)
T26738 124:025 JLINK_IsHalted()  returns FALSE (0000ms, 2885ms total)
T26738 124:126 JLINK_IsHalted()  returns FALSE (0000ms, 2885ms total)
T26738 124:228 JLINK_IsHalted()  returns FALSE (0000ms, 2885ms total)
T226A8 124:348 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2886ms total)
T226A8 124:357 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 78 00 00 00  returns 0x04 (0001ms, 2887ms total)
T226A8 124:367 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2888ms total)
T226A8 124:368 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 56  returns 0x01 (0000ms, 2888ms total)
T226A8 124:368 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 EE 42  returns 0x04 (0001ms, 2889ms total)
T226A8 124:378 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2890ms total)
T226A8 124:379 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 78  returns 0x01 (0000ms, 2890ms total)
T226A8 124:388 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2891ms total)
T226A8 124:407 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2892ms total)
T226A8 124:408 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: E9 88 03 00  returns 0x04 (0000ms, 2892ms total)
T226A8 124:417 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0001ms, 2893ms total)
T226A8 124:418 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 05 8A 03 00  returns 0x04 (0001ms, 2894ms total)
T226A8 124:445 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 39 DF 00 00  returns 0x04 (0001ms, 2895ms total)
T226A8 124:455 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 08 0B  returns 0x02 (0000ms, 2895ms total)
T226A8 124:464 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 00 00  returns 0x02 (0001ms, 2896ms total)
T226A8 124:474 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 08  returns 0x01 (0001ms, 2897ms total)
T26738 124:483 JLINK_IsHalted()  returns FALSE (0002ms, 2899ms total)
T26738 124:586 JLINK_IsHalted()  returns FALSE (0000ms, 2897ms total)
T26738 124:687 JLINK_IsHalted()  returns FALSE (0000ms, 2897ms total)
T26738 124:788 JLINK_IsHalted()  returns FALSE (0000ms, 2897ms total)
T226A8 124:918 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2898ms total)
T226A8 124:928 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 78 00 00 00  returns 0x04 (0001ms, 2899ms total)
T226A8 124:940 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2900ms total)
T226A8 124:941 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 56  returns 0x01 (0001ms, 2901ms total)
T226A8 124:942 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 EE 42  returns 0x04 (0000ms, 2901ms total)
T226A8 124:954 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0000ms, 2901ms total)
T226A8 124:954 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 78  returns 0x01 (0001ms, 2902ms total)
T226A8 124:965 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2903ms total)
T226A8 124:985 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2904ms total)
T226A8 124:986 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: E9 88 03 00  returns 0x04 (0000ms, 2904ms total)
T226A8 124:996 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 75 EB 03 00  returns 0x04 (0000ms, 2904ms total)
T226A8 124:996 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: 05 8A 03 00  returns 0x04 (0001ms, 2905ms total)
T226A8 125:026 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 39 DF 00 00  returns 0x04 (0000ms, 2905ms total)
T226A8 125:036 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 08 0B  returns 0x02 (0001ms, 2906ms total)
T226A8 125:046 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 00 00  returns 0x02 (0001ms, 2907ms total)
T226A8 125:056 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 08  returns 0x01 (0001ms, 2908ms total)
T26738 125:066 JLINK_IsHalted()  returns FALSE (0001ms, 2909ms total)
T26738 125:169 JLINK_IsHalted()  returns FALSE (0000ms, 2908ms total)
T26738 125:270 JLINK_IsHalted()  returns FALSE (0000ms, 2908ms total)
T26738 125:371 JLINK_IsHalted()  returns FALSE (0000ms, 2908ms total)
T226A8 125:491 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2909ms total)
T226A8 125:501 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 79 00 00 00  returns 0x04 (0001ms, 2910ms total)
T226A8 125:511 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 2910ms total)
T226A8 125:511 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 57  returns 0x01 (0001ms, 2911ms total)
T226A8 125:521 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 F0 42  returns 0x04 (0001ms, 2912ms total)
T226A8 125:532 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2913ms total)
T226A8 125:533 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 79  returns 0x01 (0001ms, 2914ms total)
T226A8 125:543 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2915ms total)
T226A8 125:562 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2916ms total)
T226A8 125:563 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: E9 88 03 00  returns 0x04 (0001ms, 2917ms total)
T226A8 125:564 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: C9 3C 02 00  returns 0x04 (0000ms, 2917ms total)
T226A8 125:573 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: E5 3D 02 00  returns 0x04 (0001ms, 2918ms total)
T226A8 125:601 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: EF 3B 02 00  returns 0x04 (0001ms, 2919ms total)
T226A8 125:611 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 08 0B  returns 0x02 (0000ms, 2919ms total)
T226A8 125:611 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 01 00  returns 0x02 (0001ms, 2920ms total)
T226A8 125:621 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 08  returns 0x01 (0001ms, 2921ms total)
T26738 125:622 JLINK_IsHalted()  returns FALSE (0001ms, 2922ms total)
T26738 125:724 JLINK_IsHalted()  returns FALSE (0000ms, 2921ms total)
T26738 125:825 JLINK_IsHalted()  returns FALSE (0000ms, 2921ms total)
T26738 125:926 JLINK_IsHalted()  returns FALSE (0000ms, 2921ms total)
T226A8 126:047 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 2921ms total)
T226A8 126:058 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 79 00 00 00  returns 0x04 (0000ms, 2921ms total)
T226A8 126:067 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2922ms total)
T226A8 126:068 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 57  returns 0x01 (0001ms, 2923ms total)
T226A8 126:078 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 F0 42  returns 0x04 (0000ms, 2923ms total)
T226A8 126:088 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2924ms total)
T226A8 126:089 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 79  returns 0x01 (0000ms, 2924ms total)
T226A8 126:099 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2925ms total)
T226A8 126:119 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2926ms total)
T226A8 126:120 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: E9 88 03 00  returns 0x04 (0000ms, 2926ms total)
T226A8 126:120 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: C9 3C 02 00  returns 0x04 (0001ms, 2927ms total)
T226A8 126:131 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: E5 3D 02 00  returns 0x04 (0001ms, 2928ms total)
T226A8 126:159 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0001ms, 2929ms total)
T226A8 126:179 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 08 0B  returns 0x02 (0001ms, 2930ms total)
T226A8 126:180 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0001ms, 2931ms total)
T226A8 126:199 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 08  returns 0x01 (0001ms, 2932ms total)
T26738 126:200 JLINK_IsHalted()  returns FALSE (0001ms, 2933ms total)
T26738 126:302 JLINK_IsHalted()  returns FALSE (0000ms, 2932ms total)
T26738 126:403 JLINK_IsHalted()  returns FALSE (0000ms, 2932ms total)
T26738 126:505 JLINK_IsHalted()  returns FALSE (0000ms, 2932ms total)
T226A8 126:627 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2933ms total)
T226A8 126:637 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 7A 00 00 00  returns 0x04 (0001ms, 2934ms total)
T226A8 126:647 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2935ms total)
T226A8 126:648 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 58  returns 0x01 (0000ms, 2935ms total)
T226A8 126:657 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 F2 42  returns 0x04 (0001ms, 2936ms total)
T226A8 126:667 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0000ms, 2936ms total)
T226A8 126:667 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 7A  returns 0x01 (0001ms, 2937ms total)
T226A8 126:677 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2938ms total)
T226A8 126:696 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2939ms total)
T226A8 126:697 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: E9 88 03 00  returns 0x04 (0001ms, 2940ms total)
T226A8 126:698 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0000ms, 2940ms total)
T226A8 126:707 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0001ms, 2941ms total)
T226A8 126:735 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0001ms, 2942ms total)
T226A8 126:745 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 08 0B  returns 0x02 (0000ms, 2942ms total)
T226A8 126:745 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0001ms, 2943ms total)
T226A8 126:755 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 08  returns 0x01 (0000ms, 2943ms total)
T26738 126:755 JLINK_IsHalted()  returns FALSE (0001ms, 2944ms total)
T26738 126:858 JLINK_IsHalted()  returns FALSE (0000ms, 2943ms total)
T26738 126:959 JLINK_IsHalted()  returns FALSE (0000ms, 2943ms total)
T26738 127:060 JLINK_IsHalted()  returns FALSE (0001ms, 2944ms total)
T226A8 127:179 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2944ms total)
T226A8 127:189 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 7A 00 00 00  returns 0x04 (0001ms, 2945ms total)
T226A8 127:200 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2946ms total)
T226A8 127:201 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 58  returns 0x01 (0000ms, 2946ms total)
T226A8 127:210 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 F2 42  returns 0x04 (0001ms, 2947ms total)
T226A8 127:219 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2948ms total)
T226A8 127:220 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 7A  returns 0x01 (0001ms, 2949ms total)
T226A8 127:230 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 2949ms total)
T226A8 127:248 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2950ms total)
T226A8 127:249 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: E9 88 03 00  returns 0x04 (0000ms, 2950ms total)
T226A8 127:249 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0001ms, 2951ms total)
T226A8 127:259 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0001ms, 2952ms total)
T226A8 127:286 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0001ms, 2953ms total)
T226A8 127:287 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 08 0B  returns 0x02 (0001ms, 2954ms total)
T226A8 127:288 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0000ms, 2954ms total)
T226A8 127:288 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 08  returns 0x01 (0001ms, 2955ms total)
T26738 127:289 JLINK_IsHalted()  returns FALSE (0001ms, 2956ms total)
T26738 127:390 JLINK_IsHalted()  returns FALSE (0000ms, 2955ms total)
T26738 127:491 JLINK_IsHalted()  returns FALSE (0000ms, 2955ms total)
T26738 127:593 JLINK_IsHalted()  returns FALSE (0000ms, 2955ms total)
T226A8 127:713 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 2955ms total)
T226A8 127:722 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 7A 00 00 00  returns 0x04 (0001ms, 2956ms total)
T226A8 127:723 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2957ms total)
T226A8 127:724 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 58  returns 0x01 (0000ms, 2957ms total)
T226A8 127:724 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 F2 42  returns 0x04 (0001ms, 2958ms total)
T226A8 127:725 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2959ms total)
T226A8 127:726 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 7A  returns 0x01 (0000ms, 2959ms total)
T226A8 127:726 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2960ms total)
T226A8 127:745 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 2960ms total)
T226A8 127:745 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: E9 88 03 00  returns 0x04 (0001ms, 2961ms total)
T226A8 127:746 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0001ms, 2962ms total)
T226A8 127:747 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0000ms, 2962ms total)
T226A8 127:766 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0001ms, 2963ms total)
T226A8 127:767 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 08 0B  returns 0x02 (0001ms, 2964ms total)
T226A8 127:768 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0000ms, 2964ms total)
T226A8 127:768 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 08  returns 0x01 (0001ms, 2965ms total)
T26738 127:769 JLINK_IsHalted()  returns FALSE (0001ms, 2966ms total)
T26738 127:870 JLINK_IsHalted()  returns FALSE (0000ms, 2965ms total)
T26738 127:971 JLINK_IsHalted()  returns FALSE (0000ms, 2965ms total)
T26738 128:072 JLINK_IsHalted()  returns FALSE (0000ms, 2965ms total)
T26738 128:174 JLINK_IsHalted()  returns FALSE (0000ms, 2965ms total)
T226A8 128:294 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2966ms total)
T226A8 128:303 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 7A 00 00 00  returns 0x04 (0001ms, 2967ms total)
T226A8 128:304 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2968ms total)
T226A8 128:305 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 58  returns 0x01 (0000ms, 2968ms total)
T226A8 128:305 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 F2 42  returns 0x04 (0001ms, 2969ms total)
T226A8 128:306 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2970ms total)
T226A8 128:307 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 7A  returns 0x01 (0000ms, 2970ms total)
T226A8 128:307 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2971ms total)
T226A8 128:326 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2972ms total)
T226A8 128:327 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: E9 88 03 00  returns 0x04 (0000ms, 2972ms total)
T226A8 128:327 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0001ms, 2973ms total)
T226A8 128:328 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0001ms, 2974ms total)
T226A8 128:347 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0000ms, 2974ms total)
T226A8 128:347 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 08 0B  returns 0x02 (0001ms, 2975ms total)
T226A8 128:348 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0001ms, 2976ms total)
T226A8 128:349 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 08  returns 0x01 (0000ms, 2976ms total)
T26738 128:349 JLINK_IsHalted()  returns FALSE (0001ms, 2977ms total)
T26738 128:451 JLINK_IsHalted()  returns FALSE (0000ms, 2976ms total)
T26738 128:553 JLINK_IsHalted()  returns FALSE (0000ms, 2976ms total)
T26738 128:654 JLINK_IsHalted()  returns FALSE (0000ms, 2976ms total)
T26738 128:755 JLINK_IsHalted()  returns FALSE (0000ms, 2976ms total)
T226A8 128:874 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2977ms total)
T226A8 128:884 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 7A 00 00 00  returns 0x04 (0001ms, 2978ms total)
T226A8 128:885 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2979ms total)
T226A8 128:886 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 58  returns 0x01 (0000ms, 2979ms total)
T226A8 128:886 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 F2 42  returns 0x04 (0001ms, 2980ms total)
T226A8 128:887 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2981ms total)
T226A8 128:888 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 7A  returns 0x01 (0000ms, 2981ms total)
T226A8 128:888 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2982ms total)
T226A8 128:908 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2983ms total)
T226A8 128:909 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: E9 88 03 00  returns 0x04 (0001ms, 2984ms total)
T226A8 128:910 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0000ms, 2984ms total)
T226A8 128:910 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0001ms, 2985ms total)
T226A8 128:929 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0001ms, 2986ms total)
T226A8 128:930 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 08 0B  returns 0x02 (0000ms, 2986ms total)
T226A8 128:930 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0001ms, 2987ms total)
T226A8 128:931 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 08  returns 0x01 (0001ms, 2988ms total)
T26738 128:932 JLINK_IsHalted()  returns FALSE (0001ms, 2989ms total)
T26738 129:033 JLINK_IsHalted()  returns FALSE (0000ms, 2988ms total)
T26738 129:134 JLINK_IsHalted()  returns FALSE (0000ms, 2988ms total)
T26738 129:235 JLINK_IsHalted()  returns FALSE (0000ms, 2988ms total)
T26738 129:337 JLINK_IsHalted()  returns FALSE (0000ms, 2988ms total)
T226A8 129:461 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2989ms total)
T226A8 129:470 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 7A 00 00 00  returns 0x04 (0001ms, 2990ms total)
T226A8 129:471 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 2991ms total)
T226A8 129:472 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 58  returns 0x01 (0000ms, 2991ms total)
T226A8 129:472 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 F2 42  returns 0x04 (0001ms, 2992ms total)
T226A8 129:473 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 2993ms total)
T226A8 129:474 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 7A  returns 0x01 (0000ms, 2993ms total)
T226A8 129:474 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 2994ms total)
T226A8 129:494 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2995ms total)
T226A8 129:495 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: E9 88 03 00  returns 0x04 (0000ms, 2995ms total)
T226A8 129:495 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0001ms, 2996ms total)
T226A8 129:496 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0000ms, 2996ms total)
T226A8 129:514 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0001ms, 2997ms total)
T226A8 129:515 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 08 0B  returns 0x02 (0000ms, 2997ms total)
T226A8 129:515 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0001ms, 2998ms total)
T226A8 129:516 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 08  returns 0x01 (0001ms, 2999ms total)
T26738 129:517 JLINK_IsHalted()  returns FALSE (0000ms, 2999ms total)
T26738 129:618 JLINK_IsHalted()  returns FALSE (0000ms, 2999ms total)
T26738 129:719 JLINK_IsHalted()  returns FALSE (0000ms, 2999ms total)
T26738 129:820 JLINK_IsHalted()  returns FALSE (0000ms, 2999ms total)
T26738 129:922 JLINK_IsHalted()  returns FALSE (0000ms, 2999ms total)
T226A8 130:042 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 3000ms total)
T226A8 130:052 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 7A 00 00 00  returns 0x04 (0001ms, 3001ms total)
T226A8 130:053 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 3001ms total)
T226A8 130:053 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 58  returns 0x01 (0001ms, 3002ms total)
T226A8 130:054 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 F2 42  returns 0x04 (0001ms, 3003ms total)
T226A8 130:055 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0000ms, 3003ms total)
T226A8 130:055 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 7A  returns 0x01 (0001ms, 3004ms total)
T226A8 130:056 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 3005ms total)
T226A8 130:075 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 3006ms total)
T226A8 130:076 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: E9 88 03 00  returns 0x04 (0000ms, 3006ms total)
T226A8 130:076 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0001ms, 3007ms total)
T226A8 130:077 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0001ms, 3008ms total)
T226A8 130:096 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0001ms, 3009ms total)
T226A8 130:097 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 08 0B  returns 0x02 (0000ms, 3009ms total)
T226A8 130:097 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0001ms, 3010ms total)
T226A8 130:098 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 08  returns 0x01 (0001ms, 3011ms total)
T26738 130:099 JLINK_IsHalted()  returns FALSE (0000ms, 3011ms total)
T26738 130:200 JLINK_IsHalted()  returns FALSE (0000ms, 3011ms total)
T26738 130:302 JLINK_IsHalted()  returns FALSE (0000ms, 3011ms total)
T26738 130:403 JLINK_IsHalted()  returns FALSE (0000ms, 3011ms total)
T26738 130:504 JLINK_IsHalted()  returns FALSE (0000ms, 3011ms total)
T226A8 130:625 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 3012ms total)
T226A8 130:635 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 7A 00 00 00  returns 0x04 (0000ms, 3012ms total)
T226A8 130:635 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 3013ms total)
T226A8 130:636 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 58  returns 0x01 (0001ms, 3014ms total)
T226A8 130:637 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 F2 42  returns 0x04 (0000ms, 3014ms total)
T226A8 130:637 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 3015ms total)
T226A8 130:638 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 7A  returns 0x01 (0001ms, 3016ms total)
T226A8 130:639 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 3017ms total)
T226A8 130:658 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 3017ms total)
T226A8 130:659 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: E9 88 03 00  returns 0x04 (0000ms, 3017ms total)
T226A8 130:659 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0001ms, 3018ms total)
T226A8 130:660 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0000ms, 3018ms total)
T226A8 130:679 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0000ms, 3018ms total)
T226A8 130:679 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 08 0B  returns 0x02 (0001ms, 3019ms total)
T226A8 130:680 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0001ms, 3020ms total)
T226A8 130:681 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 08  returns 0x01 (0000ms, 3020ms total)
T26738 130:681 JLINK_IsHalted()  returns FALSE (0001ms, 3021ms total)
T26738 130:782 JLINK_IsHalted()  returns FALSE (0000ms, 3020ms total)
T26738 130:884 JLINK_IsHalted()  returns FALSE (0000ms, 3020ms total)
T26738 130:985 JLINK_IsHalted()  returns FALSE (0000ms, 3020ms total)
T26738 131:086 JLINK_IsHalted()  returns FALSE (0000ms, 3020ms total)
T226A8 131:207 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 3021ms total)
T226A8 131:217 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 7A 00 00 00  returns 0x04 (0001ms, 3022ms total)
T226A8 131:218 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 3023ms total)
T226A8 131:219 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 58  returns 0x01 (0000ms, 3023ms total)
T226A8 131:219 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 F2 42  returns 0x04 (0001ms, 3024ms total)
T226A8 131:220 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 3025ms total)
T226A8 131:221 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 7A  returns 0x01 (0000ms, 3025ms total)
T226A8 131:221 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 3026ms total)
T226A8 131:241 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 3026ms total)
T226A8 131:241 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: E9 88 03 00  returns 0x04 (0001ms, 3027ms total)
T226A8 131:242 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0001ms, 3028ms total)
T226A8 131:243 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0000ms, 3028ms total)
T226A8 131:263 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0001ms, 3029ms total)
T226A8 131:264 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 08 0B  returns 0x02 (0001ms, 3030ms total)
T226A8 131:265 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0001ms, 3031ms total)
T226A8 131:266 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 08  returns 0x01 (0000ms, 3031ms total)
T26738 131:266 JLINK_IsHalted()  returns FALSE (0001ms, 3032ms total)
T26738 131:368 JLINK_IsHalted()  returns FALSE (0000ms, 3031ms total)
T26738 131:469 JLINK_IsHalted()  returns FALSE (0000ms, 3031ms total)
T26738 131:571 JLINK_IsHalted()  returns FALSE (0000ms, 3031ms total)
T26738 131:672 JLINK_IsHalted()  returns FALSE (0000ms, 3031ms total)
T226A8 131:792 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 3032ms total)
T226A8 131:802 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 7A 00 00 00  returns 0x04 (0001ms, 3033ms total)
T226A8 131:803 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 3033ms total)
T226A8 131:803 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 58  returns 0x01 (0001ms, 3034ms total)
T226A8 131:804 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 F2 42  returns 0x04 (0000ms, 3034ms total)
T226A8 131:804 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 3035ms total)
T226A8 131:805 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 7A  returns 0x01 (0001ms, 3036ms total)
T226A8 131:806 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 3037ms total)
T226A8 131:824 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 3038ms total)
T226A8 131:825 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: E9 88 03 00  returns 0x04 (0001ms, 3039ms total)
T226A8 131:826 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0000ms, 3039ms total)
T226A8 131:826 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0001ms, 3040ms total)
T226A8 131:845 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0001ms, 3041ms total)
T226A8 131:846 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 08 0B  returns 0x02 (0001ms, 3042ms total)
T226A8 131:847 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0000ms, 3042ms total)
T226A8 131:847 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 08  returns 0x01 (0001ms, 3043ms total)
T26738 131:848 JLINK_IsHalted()  returns FALSE (0001ms, 3044ms total)
T26738 131:950 JLINK_IsHalted()  returns FALSE (0000ms, 3043ms total)
T26738 132:051 JLINK_IsHalted()  returns FALSE (0000ms, 3043ms total)
T26738 132:153 JLINK_IsHalted()  returns FALSE (0000ms, 3043ms total)
T26738 132:254 JLINK_IsHalted()  returns FALSE (0000ms, 3043ms total)
T226A8 132:374 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 3044ms total)
T226A8 132:385 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 7A 00 00 00  returns 0x04 (0001ms, 3045ms total)
T226A8 132:386 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 3045ms total)
T226A8 132:386 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 58  returns 0x01 (0001ms, 3046ms total)
T226A8 132:387 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 F2 42  returns 0x04 (0000ms, 3046ms total)
T226A8 132:388 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 3047ms total)
T226A8 132:389 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 7A  returns 0x01 (0000ms, 3047ms total)
T226A8 132:389 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 3048ms total)
T226A8 132:408 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 3049ms total)
T226A8 132:409 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: E9 88 03 00  returns 0x04 (0000ms, 3049ms total)
T226A8 132:409 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0001ms, 3050ms total)
T226A8 132:410 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0000ms, 3050ms total)
T226A8 132:428 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0001ms, 3051ms total)
T226A8 132:429 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 08 0B  returns 0x02 (0001ms, 3052ms total)
T226A8 132:430 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0000ms, 3052ms total)
T226A8 132:430 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 08  returns 0x01 (0001ms, 3053ms total)
T26738 132:431 JLINK_IsHalted()  returns FALSE (0001ms, 3054ms total)
T26738 132:533 JLINK_IsHalted()  returns FALSE (0000ms, 3053ms total)
T26738 132:634 JLINK_IsHalted()  returns FALSE (0000ms, 3053ms total)
T26738 132:735 JLINK_IsHalted()  returns FALSE (0000ms, 3053ms total)
T26738 132:837 JLINK_IsHalted()  returns FALSE (0000ms, 3053ms total)
T226A8 132:956 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 3054ms total)
T226A8 132:965 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 7A 00 00 00  returns 0x04 (0001ms, 3055ms total)
T226A8 132:966 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 3056ms total)
T226A8 132:967 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 58  returns 0x01 (0000ms, 3056ms total)
T226A8 132:967 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 F2 42  returns 0x04 (0001ms, 3057ms total)
T226A8 132:968 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 3058ms total)
T226A8 132:969 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 7A  returns 0x01 (0000ms, 3058ms total)
T226A8 132:969 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 3059ms total)
T226A8 132:988 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 3060ms total)
T226A8 132:989 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: E9 88 03 00  returns 0x04 (0000ms, 3060ms total)
T226A8 132:989 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0001ms, 3061ms total)
T226A8 132:990 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0001ms, 3062ms total)
T226A8 133:009 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0001ms, 3063ms total)
T226A8 133:010 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 08 0B  returns 0x02 (0000ms, 3063ms total)
T226A8 133:010 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0001ms, 3064ms total)
T226A8 133:011 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 08  returns 0x01 (0001ms, 3065ms total)
T26738 133:012 JLINK_IsHalted()  returns FALSE (0000ms, 3065ms total)
T26738 133:113 JLINK_IsHalted()  returns FALSE (0000ms, 3065ms total)
T26738 133:215 JLINK_IsHalted()  returns FALSE (0000ms, 3065ms total)
T26738 133:316 JLINK_IsHalted()  returns FALSE (0000ms, 3065ms total)
T26738 133:417 JLINK_IsHalted()  returns FALSE (0000ms, 3065ms total)
T226A8 133:536 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 3066ms total)
T226A8 133:546 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 7A 00 00 00  returns 0x04 (0000ms, 3066ms total)
T226A8 133:546 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 3067ms total)
T226A8 133:547 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 58  returns 0x01 (0001ms, 3068ms total)
T226A8 133:548 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 F2 42  returns 0x04 (0000ms, 3068ms total)
T226A8 133:548 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 3069ms total)
T226A8 133:549 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 7A  returns 0x01 (0001ms, 3070ms total)
T226A8 133:550 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 3070ms total)
T226A8 133:568 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 3070ms total)
T226A8 133:568 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: E9 88 03 00  returns 0x04 (0001ms, 3071ms total)
T226A8 133:569 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0001ms, 3072ms total)
T226A8 133:570 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0001ms, 3073ms total)
T226A8 133:589 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0001ms, 3074ms total)
T226A8 133:590 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 08 0B  returns 0x02 (0001ms, 3075ms total)
T226A8 133:591 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0000ms, 3075ms total)
T226A8 133:591 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 08  returns 0x01 (0001ms, 3076ms total)
T26738 133:592 JLINK_IsHalted()  returns FALSE (0001ms, 3077ms total)
T26738 133:693 JLINK_IsHalted()  returns FALSE (0000ms, 3076ms total)
T26738 133:794 JLINK_IsHalted()  returns FALSE (0000ms, 3076ms total)
T26738 133:895 JLINK_IsHalted()  returns FALSE (0000ms, 3076ms total)
T26738 133:996 JLINK_IsHalted()  returns FALSE (0000ms, 3076ms total)
T226A8 134:116 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 3076ms total)
T226A8 134:125 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 7A 00 00 00  returns 0x04 (0001ms, 3077ms total)
T226A8 134:126 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 3078ms total)
T226A8 134:127 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 58  returns 0x01 (0000ms, 3078ms total)
T226A8 134:127 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 F2 42  returns 0x04 (0001ms, 3079ms total)
T226A8 134:128 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 3080ms total)
T226A8 134:129 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 7A  returns 0x01 (0000ms, 3080ms total)
T226A8 134:129 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 3081ms total)
T226A8 134:148 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 3082ms total)
T226A8 134:149 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: E9 88 03 00  returns 0x04 (0000ms, 3082ms total)
T226A8 134:150 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0000ms, 3083ms total)
T226A8 134:150 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0001ms, 3084ms total)
T226A8 134:170 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0001ms, 3085ms total)
T226A8 134:171 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 08 0B  returns 0x02 (0000ms, 3085ms total)
T226A8 134:171 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0001ms, 3086ms total)
T226A8 134:172 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 08  returns 0x01 (0001ms, 3087ms total)
T26738 134:173 JLINK_IsHalted()  returns FALSE (0000ms, 3087ms total)
T26738 134:274 JLINK_IsHalted()  returns FALSE (0000ms, 3087ms total)
T26738 134:375 JLINK_IsHalted()  returns FALSE (0000ms, 3087ms total)
T26738 134:476 JLINK_IsHalted()  returns FALSE (0000ms, 3087ms total)
T26738 134:578 JLINK_IsHalted()  returns FALSE (0000ms, 3087ms total)
T226A8 134:698 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 3088ms total)
T226A8 134:708 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 7A 00 00 00  returns 0x04 (0000ms, 3088ms total)
T226A8 134:708 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 3089ms total)
T226A8 134:709 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 58  returns 0x01 (0001ms, 3090ms total)
T226A8 134:710 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 F2 42  returns 0x04 (0000ms, 3090ms total)
T226A8 134:710 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 3091ms total)
T226A8 134:711 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 7A  returns 0x01 (0001ms, 3092ms total)
T226A8 134:712 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 3092ms total)
T226A8 134:731 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 3093ms total)
T226A8 134:732 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: E9 88 03 00  returns 0x04 (0000ms, 3093ms total)
T226A8 134:732 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0001ms, 3094ms total)
T226A8 134:733 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0001ms, 3095ms total)
T226A8 134:752 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0001ms, 3096ms total)
T226A8 134:753 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 08 0B  returns 0x02 (0000ms, 3096ms total)
T226A8 134:753 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0001ms, 3097ms total)
T226A8 134:754 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 08  returns 0x01 (0001ms, 3098ms total)
T26738 134:755 JLINK_IsHalted()  returns FALSE (0000ms, 3098ms total)
T26738 134:856 JLINK_IsHalted()  returns FALSE (0000ms, 3098ms total)
T26738 134:958 JLINK_IsHalted()  returns FALSE (0000ms, 3098ms total)
T26738 135:059 JLINK_IsHalted()  returns FALSE (0000ms, 3098ms total)
T26738 135:160 JLINK_IsHalted()  returns FALSE (0000ms, 3098ms total)
T226A8 135:280 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 3099ms total)
T226A8 135:290 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 7A 00 00 00  returns 0x04 (0001ms, 3100ms total)
T226A8 135:291 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 3101ms total)
T226A8 135:292 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 58  returns 0x01 (0001ms, 3102ms total)
T226A8 135:293 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 F2 42  returns 0x04 (0000ms, 3102ms total)
T226A8 135:293 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 3103ms total)
T226A8 135:294 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 7A  returns 0x01 (0001ms, 3104ms total)
T226A8 135:295 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 3104ms total)
T226A8 135:315 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 3105ms total)
T226A8 135:316 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: E9 88 03 00  returns 0x04 (0000ms, 3105ms total)
T226A8 135:316 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0001ms, 3106ms total)
T226A8 135:317 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0001ms, 3107ms total)
T226A8 135:336 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0001ms, 3108ms total)
T226A8 135:337 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 08 0B  returns 0x02 (0001ms, 3109ms total)
T226A8 135:338 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0000ms, 3109ms total)
T226A8 135:338 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 08  returns 0x01 (0001ms, 3110ms total)
T26738 135:339 JLINK_IsHalted()  returns FALSE (0001ms, 3111ms total)
T26738 135:440 JLINK_IsHalted()  returns FALSE (0000ms, 3110ms total)
T26738 135:541 JLINK_IsHalted()  returns FALSE (0000ms, 3110ms total)
T26738 135:642 JLINK_IsHalted()  returns FALSE (0000ms, 3110ms total)
T26738 135:743 JLINK_IsHalted()  returns FALSE (0000ms, 3110ms total)
T226A8 135:864 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 3111ms total)
T226A8 135:874 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 7A 00 00 00  returns 0x04 (0001ms, 3112ms total)
T226A8 135:875 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 3113ms total)
T226A8 135:876 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 58  returns 0x01 (0000ms, 3113ms total)
T226A8 135:876 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 F2 42  returns 0x04 (0001ms, 3114ms total)
T226A8 135:877 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 3115ms total)
T226A8 135:878 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 7A  returns 0x01 (0001ms, 3116ms total)
T226A8 135:879 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 3116ms total)
T226A8 135:898 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 3117ms total)
T226A8 135:899 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: E9 88 03 00  returns 0x04 (0001ms, 3118ms total)
T226A8 135:900 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0000ms, 3118ms total)
T226A8 135:900 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0001ms, 3119ms total)
T226A8 135:919 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0001ms, 3120ms total)
T226A8 135:920 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 08 0B  returns 0x02 (0001ms, 3121ms total)
T226A8 135:921 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0000ms, 3121ms total)
T226A8 135:921 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 08  returns 0x01 (0001ms, 3122ms total)
T26738 135:922 JLINK_IsHalted()  returns FALSE (0001ms, 3123ms total)
T26738 136:023 JLINK_IsHalted()  returns FALSE (0000ms, 3122ms total)
T26738 136:124 JLINK_IsHalted()  returns FALSE (0000ms, 3122ms total)
T26738 136:226 JLINK_IsHalted()  returns FALSE (0000ms, 3122ms total)
T26738 136:327 JLINK_IsHalted()  returns FALSE (0000ms, 3122ms total)
T226A8 136:447 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 3123ms total)
T226A8 136:457 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 7A 00 00 00  returns 0x04 (0001ms, 3124ms total)
T226A8 136:458 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 3125ms total)
T226A8 136:459 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 58  returns 0x01 (0000ms, 3125ms total)
T226A8 136:459 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 F2 42  returns 0x04 (0001ms, 3126ms total)
T226A8 136:460 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 3127ms total)
T226A8 136:461 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 7A  returns 0x01 (0000ms, 3127ms total)
T226A8 136:461 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 3128ms total)
T226A8 136:480 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 3129ms total)
T226A8 136:481 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: E9 88 03 00  returns 0x04 (0001ms, 3130ms total)
T226A8 136:482 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0000ms, 3130ms total)
T226A8 136:482 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0001ms, 3131ms total)
T226A8 136:501 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0001ms, 3132ms total)
T226A8 136:502 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 08 0B  returns 0x02 (0001ms, 3133ms total)
T226A8 136:503 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0000ms, 3133ms total)
T226A8 136:503 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 08  returns 0x01 (0001ms, 3134ms total)
T26738 136:504 JLINK_IsHalted()  returns FALSE (0001ms, 3135ms total)
T26738 136:606 JLINK_IsHalted()  returns FALSE (0000ms, 3134ms total)
T26738 136:707 JLINK_IsHalted()  returns FALSE (0000ms, 3134ms total)
T26738 136:808 JLINK_IsHalted()  returns FALSE (0000ms, 3134ms total)
T26738 136:909 JLINK_IsHalted()  returns FALSE (0000ms, 3134ms total)
T226A8 137:029 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 3135ms total)
T226A8 137:039 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 7A 00 00 00  returns 0x04 (0000ms, 3135ms total)
T226A8 137:039 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 3136ms total)
T226A8 137:040 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 58  returns 0x01 (0001ms, 3137ms total)
T226A8 137:041 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 F2 42  returns 0x04 (0000ms, 3137ms total)
T226A8 137:041 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 3138ms total)
T226A8 137:042 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 7A  returns 0x01 (0000ms, 3138ms total)
T226A8 137:043 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0000ms, 3138ms total)
T226A8 137:062 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 3139ms total)
T226A8 137:063 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: E9 88 03 00  returns 0x04 (0000ms, 3139ms total)
T226A8 137:063 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0001ms, 3140ms total)
T226A8 137:064 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0001ms, 3141ms total)
T226A8 137:083 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0001ms, 3142ms total)
T226A8 137:084 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 08 0B  returns 0x02 (0000ms, 3142ms total)
T226A8 137:084 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0001ms, 3143ms total)
T226A8 137:085 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 08  returns 0x01 (0001ms, 3144ms total)
T26738 137:086 JLINK_IsHalted()  returns FALSE (0000ms, 3144ms total)
T26738 137:187 JLINK_IsHalted()  returns FALSE (0000ms, 3144ms total)
T26738 137:288 JLINK_IsHalted()  returns FALSE (0000ms, 3144ms total)
T26738 137:390 JLINK_IsHalted()  returns FALSE (0000ms, 3144ms total)
T26738 137:491 JLINK_IsHalted()  returns FALSE (0000ms, 3144ms total)
T226A8 137:610 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 3145ms total)
T226A8 137:620 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 7A 00 00 00  returns 0x04 (0001ms, 3146ms total)
T226A8 137:621 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 3146ms total)
T226A8 137:621 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 58  returns 0x01 (0001ms, 3147ms total)
T226A8 137:622 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 F2 42  returns 0x04 (0001ms, 3148ms total)
T226A8 137:623 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0000ms, 3148ms total)
T226A8 137:623 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 7A  returns 0x01 (0001ms, 3149ms total)
T226A8 137:624 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 3150ms total)
T226A8 137:642 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 3151ms total)
T226A8 137:643 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: E9 88 03 00  returns 0x04 (0001ms, 3152ms total)
T226A8 137:644 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0000ms, 3152ms total)
T226A8 137:644 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0001ms, 3153ms total)
T226A8 137:663 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0001ms, 3154ms total)
T226A8 137:664 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 08 0B  returns 0x02 (0001ms, 3155ms total)
T226A8 137:665 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0000ms, 3155ms total)
T226A8 137:665 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 08  returns 0x01 (0001ms, 3156ms total)
T26738 137:666 JLINK_IsHalted()  returns FALSE (0001ms, 3157ms total)
T26738 137:768 JLINK_IsHalted()  returns FALSE (0000ms, 3156ms total)
T26738 137:869 JLINK_IsHalted()  returns FALSE (0000ms, 3156ms total)
T26738 137:970 JLINK_IsHalted()  returns FALSE (0000ms, 3156ms total)
T26738 138:071 JLINK_IsHalted()  returns FALSE (0000ms, 3156ms total)
T226A8 138:193 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 3157ms total)
T226A8 138:203 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 7A 00 00 00  returns 0x04 (0001ms, 3158ms total)
T226A8 138:204 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 3159ms total)
T226A8 138:205 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 58  returns 0x01 (0000ms, 3159ms total)
T226A8 138:205 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 F2 42  returns 0x04 (0001ms, 3160ms total)
T226A8 138:206 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 3161ms total)
T226A8 138:207 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 7A  returns 0x01 (0000ms, 3161ms total)
T226A8 138:207 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 3162ms total)
T226A8 138:226 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 3163ms total)
T226A8 138:227 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: E9 88 03 00  returns 0x04 (0000ms, 3163ms total)
T226A8 138:227 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0001ms, 3164ms total)
T226A8 138:228 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0001ms, 3165ms total)
T226A8 138:246 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0001ms, 3166ms total)
T226A8 138:247 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 08 0B  returns 0x02 (0001ms, 3167ms total)
T226A8 138:248 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0000ms, 3167ms total)
T226A8 138:248 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 08  returns 0x01 (0001ms, 3168ms total)
T26738 138:249 JLINK_IsHalted()  returns FALSE (0001ms, 3169ms total)
T26738 138:350 JLINK_IsHalted()  returns FALSE (0000ms, 3168ms total)
T26738 138:451 JLINK_IsHalted()  returns FALSE (0000ms, 3168ms total)
T26738 138:553 JLINK_IsHalted()  returns FALSE (0000ms, 3168ms total)
T26738 138:654 JLINK_IsHalted()  returns FALSE (0000ms, 3168ms total)
T226A8 138:775 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 3168ms total)
T226A8 138:784 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 7A 00 00 00  returns 0x04 (0001ms, 3169ms total)
T226A8 138:785 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 3170ms total)
T226A8 138:786 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 58  returns 0x01 (0000ms, 3170ms total)
T226A8 138:786 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 F2 42  returns 0x04 (0001ms, 3171ms total)
T226A8 138:787 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 3172ms total)
T226A8 138:788 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 7A  returns 0x01 (0000ms, 3172ms total)
T226A8 138:788 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 3173ms total)
T226A8 138:807 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 3173ms total)
T226A8 138:808 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: E9 88 03 00  returns 0x04 (0000ms, 3174ms total)
T226A8 138:808 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0001ms, 3175ms total)
T226A8 138:809 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0000ms, 3175ms total)
T226A8 138:828 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0000ms, 3175ms total)
T226A8 138:828 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 08 0B  returns 0x02 (0001ms, 3176ms total)
T226A8 138:829 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0001ms, 3177ms total)
T226A8 138:830 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 08  returns 0x01 (0000ms, 3177ms total)
T26738 138:831 JLINK_IsHalted()  returns FALSE (0000ms, 3177ms total)
T26738 138:933 JLINK_IsHalted()  returns FALSE (0000ms, 3177ms total)
T26738 139:034 JLINK_IsHalted()  returns FALSE (0000ms, 3177ms total)
T26738 139:135 JLINK_IsHalted()  returns FALSE (0000ms, 3177ms total)
T26738 139:236 JLINK_IsHalted()  returns FALSE (0000ms, 3177ms total)
T226A8 139:357 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 3177ms total)
T226A8 139:366 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 7A 00 00 00  returns 0x04 (0001ms, 3178ms total)
T226A8 139:367 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 3179ms total)
T226A8 139:368 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 58  returns 0x01 (0000ms, 3179ms total)
T226A8 139:368 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 F2 42  returns 0x04 (0001ms, 3180ms total)
T226A8 139:369 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 3181ms total)
T226A8 139:370 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 7A  returns 0x01 (0000ms, 3181ms total)
T226A8 139:370 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 3182ms total)
T226A8 139:389 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 3182ms total)
T226A8 139:389 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: E9 88 03 00  returns 0x04 (0001ms, 3183ms total)
T226A8 139:390 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0001ms, 3184ms total)
T226A8 139:391 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0000ms, 3184ms total)
T226A8 139:409 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0001ms, 3185ms total)
T226A8 139:410 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 08 0B  returns 0x02 (0000ms, 3185ms total)
T226A8 139:410 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0001ms, 3186ms total)
T226A8 139:411 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 08  returns 0x01 (0001ms, 3187ms total)
T26738 139:412 JLINK_IsHalted()  returns FALSE (0000ms, 3187ms total)
T26738 139:513 JLINK_IsHalted()  returns FALSE (0000ms, 3187ms total)
T26738 139:614 JLINK_IsHalted()  returns FALSE (0000ms, 3187ms total)
T26738 139:715 JLINK_IsHalted()  returns FALSE (0000ms, 3187ms total)
T26738 139:816 JLINK_IsHalted()  returns FALSE (0000ms, 3187ms total)
T226A8 139:937 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 3188ms total)
T226A8 139:947 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 7A 00 00 00  returns 0x04 (0001ms, 3189ms total)
T226A8 139:948 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 3190ms total)
T226A8 139:949 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 58  returns 0x01 (0000ms, 3190ms total)
T226A8 139:949 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 F2 42  returns 0x04 (0001ms, 3191ms total)
T226A8 139:950 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 3192ms total)
T226A8 139:951 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 7A  returns 0x01 (0000ms, 3192ms total)
T226A8 139:951 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 3193ms total)
T226A8 139:971 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0000ms, 3193ms total)
T226A8 139:972 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: E9 88 03 00  returns 0x04 (0000ms, 3193ms total)
T226A8 139:972 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0001ms, 3194ms total)
T226A8 139:973 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0001ms, 3195ms total)
T226A8 139:992 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0001ms, 3196ms total)
T226A8 139:993 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 08 0B  returns 0x02 (0000ms, 3196ms total)
T226A8 139:993 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0001ms, 3197ms total)
T226A8 139:994 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 08  returns 0x01 (0001ms, 3198ms total)
T26738 139:995 JLINK_IsHalted()  returns FALSE (0000ms, 3198ms total)
T26738 140:096 JLINK_IsHalted()  returns FALSE (0000ms, 3198ms total)
T26738 140:197 JLINK_IsHalted()  returns FALSE (0000ms, 3198ms total)
T26738 140:299 JLINK_IsHalted()  returns FALSE (0000ms, 3198ms total)
T26738 140:400 JLINK_IsHalted()  returns FALSE (0000ms, 3198ms total)
T226A8 140:521 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 3198ms total)
T226A8 140:531 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 7A 00 00 00  returns 0x04 (0001ms, 3199ms total)
T226A8 140:532 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 3199ms total)
T226A8 140:532 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 58  returns 0x01 (0001ms, 3200ms total)
T226A8 140:533 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 F2 42  returns 0x04 (0001ms, 3201ms total)
T226A8 140:534 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0000ms, 3201ms total)
T226A8 140:534 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 7A  returns 0x01 (0001ms, 3202ms total)
T226A8 140:535 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 3203ms total)
T226A8 140:554 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 3204ms total)
T226A8 140:555 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: E9 88 03 00  returns 0x04 (0001ms, 3205ms total)
T226A8 140:556 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0000ms, 3205ms total)
T226A8 140:556 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0001ms, 3206ms total)
T226A8 140:575 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0001ms, 3207ms total)
T226A8 140:576 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 08 0B  returns 0x02 (0001ms, 3208ms total)
T226A8 140:577 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0000ms, 3208ms total)
T226A8 140:577 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 08  returns 0x01 (0001ms, 3209ms total)
T26738 140:578 JLINK_IsHalted()  returns FALSE (0001ms, 3210ms total)
T26738 140:680 JLINK_IsHalted()  returns FALSE (0000ms, 3209ms total)
T26738 140:781 JLINK_IsHalted()  returns FALSE (0000ms, 3209ms total)
T26738 140:882 JLINK_IsHalted()  returns FALSE (0000ms, 3209ms total)
T26738 140:984 JLINK_IsHalted()  returns FALSE (0000ms, 3209ms total)
T226A8 141:104 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 3210ms total)
T226A8 141:115 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 7A 00 00 00  returns 0x04 (0001ms, 3211ms total)
T226A8 141:116 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0000ms, 3211ms total)
T226A8 141:116 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 58  returns 0x01 (0001ms, 3212ms total)
T226A8 141:117 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 F2 42  returns 0x04 (0000ms, 3212ms total)
T226A8 141:117 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 3213ms total)
T226A8 141:118 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 7A  returns 0x01 (0001ms, 3214ms total)
T226A8 141:119 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 3215ms total)
T226A8 141:138 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 3216ms total)
T226A8 141:139 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: E9 88 03 00  returns 0x04 (0000ms, 3216ms total)
T226A8 141:139 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0001ms, 3217ms total)
T226A8 141:140 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0001ms, 3218ms total)
T226A8 141:160 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0000ms, 3218ms total)
T226A8 141:160 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 08 0B  returns 0x02 (0001ms, 3219ms total)
T226A8 141:161 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0001ms, 3220ms total)
T226A8 141:162 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 08  returns 0x01 (0000ms, 3220ms total)
T26738 141:162 JLINK_IsHalted()  returns FALSE (0001ms, 3221ms total)
T26738 141:264 JLINK_IsHalted()  returns FALSE (0000ms, 3220ms total)
T26738 141:365 JLINK_IsHalted()  returns FALSE (0000ms, 3220ms total)
T26738 141:466 JLINK_IsHalted()  returns FALSE (0000ms, 3220ms total)
T26738 141:568 JLINK_IsHalted()  returns FALSE (0000ms, 3220ms total)
T226A8 141:687 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 3221ms total)
T226A8 141:697 JLINK_ReadMemEx(0x02019904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019904) - Data: 7A 00 00 00  returns 0x04 (0000ms, 3221ms total)
T226A8 141:697 JLINK_ReadMemEx(0x02019778, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019778) - Data: 01 00 00 00  returns 0x04 (0001ms, 3222ms total)
T226A8 141:698 JLINK_ReadMemEx(0x02019735, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019735) - Data: 58  returns 0x01 (0001ms, 3223ms total)
T226A8 141:699 JLINK_ReadMemEx(0x020199DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199DC) - Data: 00 00 F2 42  returns 0x04 (0000ms, 3223ms total)
T226A8 141:699 JLINK_ReadMemEx(0x02019721, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019721) - Data: 0A  returns 0x01 (0001ms, 3224ms total)
T226A8 141:700 JLINK_ReadMemEx(0x02019720, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019720) - Data: 7A  returns 0x01 (0001ms, 3225ms total)
T226A8 141:701 JLINK_ReadMemEx(0x02019928, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x02019928) - Data: 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x0C (0001ms, 3226ms total)
T226A8 141:719 JLINK_ReadMemEx(0x020198E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 3227ms total)
T226A8 141:720 JLINK_ReadMemEx(0x020198E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E4) - Data: E9 88 03 00  returns 0x04 (0001ms, 3228ms total)
T226A8 141:721 JLINK_ReadMemEx(0x020198E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198E8) - Data: 8D EB 03 00  returns 0x04 (0000ms, 3228ms total)
T226A8 141:721 JLINK_ReadMemEx(0x020198EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020198EC) - Data: A9 EC 03 00  returns 0x04 (0001ms, 3229ms total)
T226A8 141:740 JLINK_ReadMemEx(0x0201976C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201976C) - Data: 0F EA 03 00  returns 0x04 (0000ms, 3229ms total)
T226A8 141:740 JLINK_ReadMemEx(0x020199D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199D8) - Data: 08 0B  returns 0x02 (0001ms, 3230ms total)
T226A8 141:741 JLINK_ReadMemEx(0x02019758, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019758) - Data: 02 00  returns 0x02 (0000ms, 3230ms total)
T226A8 141:741 JLINK_ReadMemEx(0x020199D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020199D1) - Data: 08  returns 0x01 (0001ms, 3231ms total)
T26738 141:742 JLINK_IsHalted()  returns FALSE (0001ms, 3232ms total)
T26738 141:844 JLINK_Halt()  returns 0x00 (0004ms, 3235ms total)
T26738 141:848 JLINK_IsHalted()  returns TRUE (0000ms, 3235ms total)
T26738 141:848 JLINK_IsHalted()  returns TRUE (0000ms, 3235ms total)
T26738 141:848 JLINK_IsHalted()  returns TRUE (0000ms, 3235ms total)
T26738 141:848 JLINK_ReadReg(R15 (PC))  returns 0x00007168 (0000ms, 3235ms total)
T26738 141:848 JLINK_ReadReg(XPSR)  returns 0x01000000 (0000ms, 3235ms total)
T26738 141:848 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 01 00 00 00  returns 0x01 (0000ms, 3235ms total)
T26738 141:848 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 3236ms total)
T26738 141:849 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0001ms, 3237ms total)
T226A8 142:472 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> (0022ms, 3259ms total)
T226A8 142:472  (0022ms, 3259ms total)
T226A8 142:472 Closed (0022ms, 3259ms total)