chen
2024-12-16 e9628df331488a100bb4134469a3a0ce7f321625
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
 
T7F1C 000:134 SEGGER J-Link V6.30d Log File (0001ms, 0039ms total)
T7F1C 000:134 DLL Compiled: Feb 16 2018 13:30:32 (0001ms, 0039ms total)
T7F1C 000:134 Logging started @ 2024-12-16 14:26 (0001ms, 0039ms total)
T7F1C 000:135 JLINK_SetWarnOutHandler(...) (0000ms, 0039ms total)
T7F1C 000:135 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 (0023ms, 0062ms total)
T7F1C 000:135 WEBSRV Webserver running on local port 19080 (0023ms, 0062ms total)
T7F1C 000:135   returns O.K. (0023ms, 0062ms total)
T7F1C 000:158 JLINK_GetEmuCaps()  returns 0x88EA5833 (0000ms, 0062ms total)
T7F1C 000:159 JLINK_TIF_GetAvailable(...) (0000ms, 0062ms total)
T7F1C 000:159 JLINK_SetErrorOutHandler(...) (0000ms, 0062ms total)
T7F1C 000:159 JLINK_ExecCommand("ProjectFile = "D:\project chen\ChinaUWBProject_URT no UWB\ChinaUWBProject\keil\JLinkSettings.ini"", ...). d:\Keil_v5\ARM\Segger\JLinkDevices.xml evaluated successfully.  returns 0x00 (0148ms, 0210ms total)
T7F1C 000:308 JLINK_ExecCommand("Device = MK8000", ...). Device "MK8000" selected.  returns 0x00 (0006ms, 0217ms total)
T7F1C 000:314 JLINK_ExecCommand("DisableConnectionTimeout", ...).   returns 0x01 (0000ms, 0217ms total)
T7F1C 000:314 JLINK_GetHardwareVersion()  returns 0x11170 (0000ms, 0217ms total)
T7F1C 000:314 JLINK_GetDLLVersion()  returns 63004 (0000ms, 0217ms total)
T7F1C 000:314 JLINK_GetFirmwareString(...) (0000ms, 0217ms total)
T7F1C 000:314 JLINK_GetDLLVersion()  returns 63004 (0000ms, 0217ms total)
T7F1C 000:314 JLINK_GetCompileDateTime() (0000ms, 0217ms total)
T7F1C 000:314 JLINK_GetFirmwareString(...) (0000ms, 0217ms total)
T7F1C 000:314 JLINK_GetHardwareVersion()  returns 0x11170 (0001ms, 0218ms total)
T7F1C 000:315 JLINK_TIF_Select(JLINKARM_TIF_SWD)  returns 0x00 (0002ms, 0220ms total)
T7F1C 000:317 JLINK_SetSpeed(10000) (0001ms, 0221ms total)
T7F1C 000:318 JLINK_GetId() >0x10B TIF>Found SW-DP with ID 0x0BB11477 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF>Scanning AP map to find all available APs >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>AP[1]: Stopped AP scan as end of AP map has been reachedAP[0]: AHB-AP (IDR: 0x04770021)Iterating through AP map to find AHB-AP to use
 >0x42 TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x42 TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>AP[0]: Core foundAP[0]: AHB-AP ROM base: 0xE00FF000 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>CPUID register: 0x410CC200. Implementer code: 0x41 (ARM)Found Cortex-M0 r0p0, Little endian. -- CPU_ReadMem(4 bytes @ 0xE000EDF0)
 -- CPU_ReadMem(4 bytes @ 0xE0002000)FPUnit: 4 code (BP) slots and 0 literal slots -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000)CoreSight components:ROMTbl[0] @ E00FF000 -- CPU_ReadMem(16 bytes @ 0xE00FF000) -- CPU_ReadMem(16 bytes @ 0xE000EFF0) -- CPU_ReadMem(16 bytes @ 0xE000EFE0)ROMTbl[0][0]: E000E000, CID: B105E00D, PID: 000BB008 SCS -- CPU_ReadMem(16 bytes @ 0xE0001FF0) -- CPU_ReadMem(16 bytes @ 0xE0001FE0)
ROMTbl[0][1]: E0001000, CID: B105E00D, PID: 000BB00A DWT -- CPU_ReadMem(16 bytes @ 0xE0002FF0) -- CPU_ReadMem(16 bytes @ 0xE0002FE0)ROMTbl[0][2]: E0002000, CID: B105E00D, PID: 000BB00B FPB >0x0D TIF> >0x21 TIF>  returns 0x0BB11477 (0152ms, 0373ms total)
T7F1C 000:470 JLINK_GetDLLVersion()  returns 63004 (0000ms, 0373ms total)
T7F1C 000:470 JLINK_CORE_GetFound()  returns 0x60000FF (0000ms, 0373ms total)
T7F1C 000:470 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xE00FF000  returns 0x00 (0000ms, 0373ms total)
T7F1C 000:470 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xE00FF000  returns 0x00 (0000ms, 0373ms total)
T7F1C 000:470 JLINK_GetDebugInfo(0x101 = JLINKARM_DEBUG_INFO_ETM_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0373ms total)
T7F1C 000:470 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, 0374ms total)
T7F1C 000:471 JLINK_GetDebugInfo(0x102 = JLINKARM_DEBUG_INFO_MTB_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0374ms total)
T7F1C 000:471 JLINK_GetDebugInfo(0x103 = JLINKARM_DEBUG_INFO_TPIU_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0374ms total)
T7F1C 000:471 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, 0375ms total)
T7F1C 000:472 JLINK_GetDebugInfo(0x104 = JLINKARM_DEBUG_INFO_ITM_ADDR_INDEX) -- Value=0xE0000000  returns 0x00 (0000ms, 0375ms total)
T7F1C 000:472 JLINK_GetDebugInfo(0x105 = JLINKARM_DEBUG_INFO_DWT_ADDR_INDEX) -- Value=0xE0001000  returns 0x00 (0000ms, 0375ms total)
T7F1C 000:472 JLINK_GetDebugInfo(0x106 = JLINKARM_DEBUG_INFO_FPB_ADDR_INDEX) -- Value=0xE0002000  returns 0x00 (0000ms, 0375ms total)
T7F1C 000:472 JLINK_GetDebugInfo(0x107 = JLINKARM_DEBUG_INFO_NVIC_ADDR_INDEX) -- Value=0xE000E000  returns 0x00 (0001ms, 0376ms total)
T7F1C 000:473 JLINK_GetDebugInfo(0x10C = JLINKARM_DEBUG_INFO_DBG_ADDR_INDEX) -- Value=0xE000EDF0  returns 0x00 (0000ms, 0376ms total)
T7F1C 000:473 JLINK_GetDebugInfo(0x01 = Unknown) -- Value=0x00000000  returns 0x00 (0000ms, 0376ms total)
T7F1C 000:473 JLINK_ReadMemU32(0xE000ED00, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED00) - Data: 00 C2 0C 41  returns 0x01 (0001ms, 0377ms total)
T7F1C 000:474 JLINK_GetDebugInfo(0x10F = JLINKARM_DEBUG_INFO_HAS_CORTEX_M_SECURITY_EXT_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0377ms total)
T7F1C 000:474 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 0377ms total)
T7F1C 000:474 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) (0075ms, 0452ms total)
T7F1C 000:549 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0452ms total)
T7F1C 000:549 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0452ms total)
T7F1C 000:549 JLINK_Halt()  returns 0x00 (0000ms, 0452ms total)
T7F1C 000:549 JLINK_ReadMemU32(0xE000EDF0, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) - Data: 03 00 03 00  returns 0x01 (0001ms, 0453ms total)
T7F1C 000:550 JLINK_WriteU32(0xE000EDF0, 0xA05F0003) -- CPU_WriteMem(4 bytes @ 0xE000EDF0)  returns 0x00 (0001ms, 0454ms total)
T7F1C 000:551 JLINK_WriteU32(0xE000EDFC, 0x01000000) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)  returns 0x00 (0002ms, 0456ms total)
T7F1C 000:553 JLINK_GetHWStatus(...)  returns 0x00 (0000ms, 0456ms total)
T7F1C 000:553 JLINK_GetNumBPUnits(Type = 0xFFFFFF00)  returns 0x04 (0000ms, 0456ms total)
T7F1C 000:553 JLINK_GetNumBPUnits(Type = 0xF0)  returns 0x2000 (0001ms, 0457ms total)
T7F1C 000:554 JLINK_GetNumWPUnits()  returns 0x02 (0000ms, 0457ms total)
T7F1C 000:554 JLINK_GetSpeed()  returns 0xFA0 (0000ms, 0457ms total)
T7F1C 000:554 JLINK_ReadMemU32(0xE000E004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000E004) - Data: 00 00 00 00  returns 0x01 (0001ms, 0458ms total)
T7F1C 000:555 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0458ms total)
T7F1C 000:555 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0458ms total)
T7F1C 000:664 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0001ms, 0459ms total)
T7F1C 000:665 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) (0074ms, 0533ms total)
T7F1C 000:739 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0533ms total)
T7F1C 000:739 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0533ms total)
T7F1C 000:739 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, 0535ms total)
T7F1C 000:741 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0001ms, 0536ms total)
T7F1C 000:742 JLINK_ReadMemEx(0x0300373A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373A) - Data: 4E F8  returns 0x02 (0001ms, 0537ms total)
T7F1C 000:743 JLINK_ReadMemEx(0x0300373C, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x0300373C) - Data: FC F7 C0 FC 80 B5 0D 49 08 68 00 28 00 D4 80 BD ...  returns 0x3C (0002ms, 0539ms total)
T7F1C 000:745 JLINK_ReadMemEx(0x0300373C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373C) - Data: FC F7  returns 0x02 (0001ms, 0540ms total)
T7F1C 000:746 JLINK_ReadMemEx(0x0300373E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373E) - Data: C0 FC  returns 0x02 (0001ms, 0541ms total)
T7F1C 000:747 JLINK_ReadMemEx(0x03003740, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003740) - Data: 80 B5 0D 49 08 68 00 28 00 D4 80 BD 0B 48 02 68 ...  returns 0x3C (0001ms, 0542ms total)
T7F1C 000:748 JLINK_ReadMemEx(0x03003740, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003740) - Data: 80 B5  returns 0x02 (0001ms, 0543ms total)
T7F1C 000:749 JLINK_ReadMemEx(0x03003742, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003742) - Data: 0D 49  returns 0x02 (0001ms, 0544ms total)
T7F1C 000:750 JLINK_ReadMemEx(0x03003742, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003742) - Data: 0D 49  returns 0x02 (0001ms, 0545ms total)
T7F1C 000:751 JLINK_ReadMemEx(0x03003744, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003744) - Data: 08 68 00 28 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 ...  returns 0x3C (0002ms, 0547ms total)
T7F1C 000:753 JLINK_ReadMemEx(0x03003744, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003744) - Data: 08 68  returns 0x02 (0000ms, 0547ms total)
T7F1C 000:753 JLINK_ReadMemEx(0x03003744, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003744) - Data: 08 68 00 28 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 ...  returns 0x3C (0002ms, 0549ms total)
T7F1C 000:755 JLINK_ReadMemEx(0x03003744, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003744) - Data: 08 68  returns 0x02 (0001ms, 0550ms total)
T7F1C 000:756 JLINK_ReadMemEx(0x03003746, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003746) - Data: 00 28  returns 0x02 (0000ms, 0550ms total)
T7F1C 000:756 JLINK_ReadMemEx(0x03003746, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003746) - Data: 00 28  returns 0x02 (0003ms, 0553ms total)
T7F1C 000:759 JLINK_ReadMemEx(0x03003748, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003748) - Data: 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 04 22 0A 60 ...  returns 0x3C (0001ms, 0554ms total)
T7F1C 000:760 JLINK_ReadMemEx(0x03003748, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003748) - Data: 00 D4  returns 0x02 (0000ms, 0554ms total)
T7F1C 000:760 JLINK_ReadMemEx(0x03003748, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003748) - Data: 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 04 22 0A 60 ...  returns 0x3C (0002ms, 0556ms total)
T7F1C 000:762 JLINK_ReadMemEx(0x03003748, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003748) - Data: 00 D4  returns 0x02 (0001ms, 0557ms total)
T7F1C 000:763 JLINK_ReadMemEx(0x0300374A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300374A) - Data: 80 BD  returns 0x02 (0001ms, 0558ms total)
T7F1C 004:651 JLINK_ReadReg(R0)  returns 0x000001CE (0001ms, 0559ms total)
T7F1C 004:652 JLINK_ReadReg(R1)  returns 0x00000008 (0000ms, 0559ms total)
T7F1C 004:652 JLINK_ReadReg(R2)  returns 0x00000000 (0000ms, 0559ms total)
T7F1C 004:652 JLINK_ReadReg(R3)  returns 0x00000002 (0000ms, 0559ms total)
T7F1C 004:652 JLINK_ReadReg(R4)  returns 0x000007CD (0000ms, 0559ms total)
T7F1C 004:652 JLINK_ReadReg(R5)  returns 0x000000CD (0000ms, 0559ms total)
T7F1C 004:652 JLINK_ReadReg(R6)  returns 0x00000004 (0000ms, 0559ms total)
T7F1C 004:652 JLINK_ReadReg(R7)  returns 0x00000004 (0000ms, 0559ms total)
T7F1C 004:652 JLINK_ReadReg(R8)  returns 0xFBEAB6D7 (0000ms, 0559ms total)
T7F1C 004:652 JLINK_ReadReg(R9)  returns 0x164B985F (0000ms, 0559ms total)
T7F1C 004:652 JLINK_ReadReg(R10)  returns 0x9F53C30D (0000ms, 0559ms total)
T7F1C 004:652 JLINK_ReadReg(R11)  returns 0x1FCB9C8A (0000ms, 0559ms total)
T7F1C 004:652 JLINK_ReadReg(R12)  returns 0x00000003 (0000ms, 0559ms total)
T7F1C 004:652 JLINK_ReadReg(R13 (SP))  returns 0x0202F800 (0000ms, 0559ms total)
T7F1C 004:652 JLINK_ReadReg(R14)  returns 0x00002575 (0000ms, 0559ms total)
T7F1C 004:652 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0001ms, 0560ms total)
T7F1C 004:653 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0560ms total)
T7F1C 004:653 JLINK_ReadReg(MSP)  returns 0x0202F800 (0000ms, 0560ms total)
T7F1C 004:653 JLINK_ReadReg(PSP)  returns 0x7D9496A8 (0000ms, 0560ms total)
T7F1C 004:653 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0560ms total)
T7F1C 004:653 JLINK_ReadMemEx(0x0201BDF8, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BDF8) - Data: 24 47 4E 52 4D 43 2C 2C 56 2C 2C 2C 2C 2C 2C 2C ...  returns 0x5B0 (0016ms, 0576ms total)
T7F1C 004:676 JLINK_ReadMemEx(0x0201BDF8, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BDF8) - Data: 24 47 4E 52 4D 43 2C 2C 56 2C 2C 2C 2C 2C 2C 2C ...  returns 0x5B0 (0016ms, 0592ms total)
T7F1C 004:693 JLINK_ReadMemEx(0x0201BDF8, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BDF8) - Data: 24 47 4E 52 4D 43 2C 2C 56 2C 2C 2C 2C 2C 2C 2C ...  returns 0x5B0 (0016ms, 0608ms total)
T7F1C 005:776 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, 0610ms total)
T7F1C 005:778 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0001ms, 0611ms total)
T7F1C 005:779 JLINK_ReadMemEx(0x0300373A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373A) - Data: 4E F8  returns 0x02 (0001ms, 0612ms total)
T7F1C 005:780 JLINK_ReadMemEx(0x0300373C, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x0300373C) - Data: FC F7 C0 FC 80 B5 0D 49 08 68 00 28 00 D4 80 BD ...  returns 0x3C (0002ms, 0614ms total)
T7F1C 005:782 JLINK_ReadMemEx(0x0300373C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373C) - Data: FC F7  returns 0x02 (0001ms, 0615ms total)
T7F1C 005:783 JLINK_ReadMemEx(0x0300373E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373E) - Data: C0 FC  returns 0x02 (0001ms, 0616ms total)
T7F1C 005:784 JLINK_ReadMemEx(0x03003740, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003740) - Data: 80 B5 0D 49 08 68 00 28 00 D4 80 BD 0B 48 02 68 ...  returns 0x3C (0001ms, 0617ms total)
T7F1C 005:785 JLINK_ReadMemEx(0x03003740, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003740) - Data: 80 B5  returns 0x02 (0001ms, 0618ms total)
T7F1C 005:786 JLINK_ReadMemEx(0x03003742, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003742) - Data: 0D 49  returns 0x02 (0001ms, 0619ms total)
T7F1C 005:787 JLINK_ReadMemEx(0x03003742, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003742) - Data: 0D 49  returns 0x02 (0001ms, 0620ms total)
T7F1C 005:788 JLINK_ReadMemEx(0x03003744, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003744) - Data: 08 68 00 28 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 ...  returns 0x3C (0002ms, 0622ms total)
T7F1C 005:790 JLINK_ReadMemEx(0x03003744, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003744) - Data: 08 68  returns 0x02 (0001ms, 0623ms total)
T7F1C 005:791 JLINK_ReadMemEx(0x03003744, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003744) - Data: 08 68 00 28 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 ...  returns 0x3C (0001ms, 0624ms total)
T7F1C 005:792 JLINK_ReadMemEx(0x03003744, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003744) - Data: 08 68  returns 0x02 (0001ms, 0625ms total)
T7F1C 005:793 JLINK_ReadMemEx(0x03003746, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003746) - Data: 00 28  returns 0x02 (0001ms, 0626ms total)
T7F1C 005:794 JLINK_ReadMemEx(0x03003746, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003746) - Data: 00 28  returns 0x02 (0001ms, 0627ms total)
T7F1C 005:795 JLINK_ReadMemEx(0x03003748, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003748) - Data: 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 04 22 0A 60 ...  returns 0x3C (0002ms, 0629ms total)
T7F1C 005:797 JLINK_ReadMemEx(0x03003748, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003748) - Data: 00 D4  returns 0x02 (0001ms, 0630ms total)
T7F1C 005:798 JLINK_ReadMemEx(0x03003748, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003748) - Data: 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 04 22 0A 60 ...  returns 0x3C (0001ms, 0631ms total)
T7F1C 005:799 JLINK_ReadMemEx(0x03003748, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003748) - Data: 00 D4  returns 0x02 (0001ms, 0632ms total)
T7F1C 005:800 JLINK_ReadMemEx(0x0300374A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300374A) - Data: 80 BD  returns 0x02 (0001ms, 0633ms total)
T7F1C 007:236 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0001ms, 0634ms total)
T7F1C 007:237 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0002ms, 0636ms total)
T7F1C 007:239 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0001ms, 0637ms total)
T7F1C 007:241 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 0638ms total)
T7F1C 007:242 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 0639ms total)
T7F1C 007:243 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 0640ms total)
T7F1C 007:251 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 0641ms total)
T7F1C 007:252 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 0642ms total)
T7F1C 007:253 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 0643ms total)
T7F1C 007:258 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 0644ms total)
T7F1C 007:259 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 0645ms total)
T7F1C 007:260 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0000ms, 0645ms total)
T7F1C 007:271 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 0646ms total)
T7F1C 007:272 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 0647ms total)
T7F1C 007:273 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 0648ms total)
T7F1C 007:282 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0001ms, 0649ms total)
T7F1C 007:283 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0001ms, 0650ms total)
T7F1C 007:284 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0001ms, 0651ms total)
T7F1C 007:286 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 40 40  returns 0x04 (0001ms, 0652ms total)
T7F1C 007:287 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 40 40  returns 0x04 (0001ms, 0653ms total)
T7F1C 007:288 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 40 40  returns 0x04 (0001ms, 0654ms total)
T7F1C 007:292 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 11  returns 0x01 (0002ms, 0656ms total)
T7F1C 007:294 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 11  returns 0x01 (0002ms, 0658ms total)
T7F1C 007:296 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 11  returns 0x01 (0000ms, 0658ms total)
T7F1C 007:298 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 0659ms total)
T7F1C 007:300 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0001ms, 0660ms total)
T7F1C 007:301 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0001ms, 0661ms total)
T7F1C 007:302 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0001ms, 0662ms total)
T7F1C 007:304 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0663ms total)
T7F1C 007:305 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0664ms total)
T7F1C 007:306 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0665ms total)
T7F1C 007:315 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: FD DF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 0666ms total)
T7F1C 007:318 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 25 00 00 00  returns 0x04 (0001ms, 0667ms total)
T7F1C 007:319 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 25 00 00 00  returns 0x04 (0001ms, 0668ms total)
T7F1C 007:320 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 25 00 00 00  returns 0x04 (0001ms, 0669ms total)
T7F1C 007:325 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 0670ms total)
T7F1C 007:326 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 0671ms total)
T7F1C 007:327 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 0672ms total)
T7F1C 007:329 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 0673ms total)
T7F1C 007:330 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 0674ms total)
T7F1C 007:331 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 0675ms total)
T7F1C 007:334 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 25 00  returns 0x02 (0001ms, 0676ms total)
T7F1C 007:335 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 25 00  returns 0x02 (0001ms, 0677ms total)
T7F1C 007:336 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 25 00  returns 0x02 (0001ms, 0678ms total)
T7F1C 007:340 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 0679ms total)
T7F1C 007:341 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 0680ms total)
T7F1C 007:342 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 0681ms total)
T7F1C 007:345 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0000ms, 0681ms total)
T7F1C 007:346 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0000ms, 0681ms total)
T7F1C 007:347 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0000ms, 0681ms total)
T7F1C 007:349 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 0682ms total)
T7F1C 007:350 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 0683ms total)
T7F1C 007:351 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 0684ms total)
T7F1C 007:353 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 00  returns 0x01 (0001ms, 0685ms total)
T7F1C 007:354 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 00  returns 0x01 (0001ms, 0686ms total)
T7F1C 007:355 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 00  returns 0x01 (0001ms, 0687ms total)
T7F1C 007:358 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 24 47 4E 52 4D 43 2C 2C 56 2C 2C 2C 2C 2C 2C 2C ...  returns 0x20 (0001ms, 0688ms total)
T7F1C 007:360 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: CE 0C  returns 0x02 (0001ms, 0689ms total)
T7F1C 007:361 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: CE 0C  returns 0x02 (0001ms, 0690ms total)
T7F1C 007:362 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: CE 0C  returns 0x02 (0001ms, 0691ms total)
T7F1C 007:364 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 01  returns 0x01 (0001ms, 0692ms total)
T7F1C 007:365 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 01  returns 0x01 (0001ms, 0693ms total)
T7F1C 007:366 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 01  returns 0x01 (0001ms, 0694ms total)
T7F1C 007:374 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 01  returns 0x01 (0001ms, 0695ms total)
T7F1C 007:375 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 01  returns 0x01 (0001ms, 0696ms total)
T7F1C 007:376 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 01  returns 0x01 (0001ms, 0697ms total)
T7F1C 007:382 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 0698ms total)
T7F1C 007:383 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 0699ms total)
T7F1C 007:384 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 0700ms total)
T7F1C 007:386 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 0701ms total)
T7F1C 007:387 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 0702ms total)
T7F1C 007:388 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 0703ms total)
T7F1C 007:392 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 0704ms total)
T7F1C 007:393 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 0705ms total)
T7F1C 007:394 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 0706ms total)
T7F1C 007:399 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 0707ms total)
T7F1C 007:400 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 0708ms total)
T7F1C 007:401 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 0709ms total)
T7F1C 007:403 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 0710ms total)
T7F1C 007:404 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 0711ms total)
T7F1C 007:405 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 0712ms total)
T7F1C 007:616 JLINK_ReadMemEx(0x0201BDF8, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BDF8) - Data: 24 47 4E 52 4D 43 2C 2C 56 2C 2C 2C 2C 2C 2C 2C ...  returns 0x5B0 (0017ms, 0729ms total)
T7F1C 007:637 JLINK_ReadMemEx(0x0201BDF8, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BDF8) - Data: 24 47 4E 52 4D 43 2C 2C 56 2C 2C 2C 2C 2C 2C 2C ...  returns 0x5B0 (0016ms, 0745ms total)
T4308 007:699 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0001ms, 0746ms total)
T4308 007:700 JLINK_SetBPEx(Addr = 0x00009838, Type = 0xFFFFFFF2)  returns 0x00000001 (0000ms, 0746ms total)
T4308 007:701 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) (0006ms, 0752ms total)
T4308 007:808 JLINK_IsHalted()  returns TRUE (0004ms, 0756ms total)
T4308 007:812 JLINK_Halt()  returns 0x00 (0000ms, 0752ms total)
T4308 007:812 JLINK_IsHalted()  returns TRUE (0000ms, 0752ms total)
T4308 007:812 JLINK_IsHalted()  returns TRUE (0000ms, 0752ms total)
T4308 007:812 JLINK_IsHalted()  returns TRUE (0000ms, 0752ms total)
T4308 007:812 JLINK_ReadReg(R15 (PC))  returns 0x00009838 (0000ms, 0752ms total)
T4308 007:812 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 0752ms total)
T4308 007:812 JLINK_ClrBPEx(BPHandle = 0x00000001)  returns 0x00 (0000ms, 0752ms total)
T4308 007:812 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0001ms, 0753ms total)
T4308 007:813 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 0754ms total)
T4308 007:814 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0001ms, 0755ms total)
T4308 007:815 JLINK_ReadReg(R0)  returns 0x00009839 (0000ms, 0755ms total)
T4308 007:815 JLINK_ReadReg(R1)  returns 0x0201D764 (0000ms, 0755ms total)
T4308 007:815 JLINK_ReadReg(R2)  returns 0x00000000 (0000ms, 0755ms total)
T4308 007:815 JLINK_ReadReg(R3)  returns 0x0000E291 (0000ms, 0755ms total)
T4308 007:815 JLINK_ReadReg(R4)  returns 0x000107AC (0000ms, 0755ms total)
T4308 007:815 JLINK_ReadReg(R5)  returns 0x00000001 (0000ms, 0755ms total)
T4308 007:815 JLINK_ReadReg(R6)  returns 0x000107AC (0000ms, 0755ms total)
T4308 007:815 JLINK_ReadReg(R7)  returns 0x02000000 (0000ms, 0755ms total)
T4308 007:815 JLINK_ReadReg(R8)  returns 0xFBEAB6D7 (0001ms, 0756ms total)
T4308 007:816 JLINK_ReadReg(R9)  returns 0x164B985F (0000ms, 0756ms total)
T4308 007:816 JLINK_ReadReg(R10)  returns 0x9F53C30D (0000ms, 0756ms total)
T4308 007:816 JLINK_ReadReg(R11)  returns 0x1FCB9C8A (0000ms, 0756ms total)
T4308 007:816 JLINK_ReadReg(R12)  returns 0x00000003 (0000ms, 0756ms total)
T4308 007:816 JLINK_ReadReg(R13 (SP))  returns 0x0202F800 (0000ms, 0756ms total)
T4308 007:816 JLINK_ReadReg(R14)  returns 0x00000DED (0000ms, 0756ms total)
T4308 007:816 JLINK_ReadReg(R15 (PC))  returns 0x00009838 (0000ms, 0756ms total)
T4308 007:816 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 0756ms total)
T4308 007:816 JLINK_ReadReg(MSP)  returns 0x0202F800 (0000ms, 0756ms total)
T4308 007:816 JLINK_ReadReg(PSP)  returns 0x7D9496A8 (0000ms, 0756ms total)
T4308 007:816 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0756ms total)
T7F1C 007:818 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0001ms, 0757ms total)
T7F1C 007:819 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 0758ms total)
T7F1C 007:820 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 0759ms total)
T7F1C 007:821 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 0760ms total)
T7F1C 007:824 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 0761ms total)
T7F1C 007:825 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0001ms, 0762ms total)
T7F1C 007:826 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 0763ms total)
T7F1C 007:827 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 00  returns 0x01 (0001ms, 0764ms total)
T7F1C 007:828 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: 00 00 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 0765ms total)
T7F1C 007:830 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 00  returns 0x01 (0000ms, 0766ms total)
T7F1C 007:831 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0768ms total)
T7F1C 007:832 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: 00 00 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 0769ms total)
T7F1C 007:833 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 00 00 00 00  returns 0x04 (0001ms, 0770ms total)
T7F1C 007:834 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 0771ms total)
T7F1C 007:835 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 0772ms total)
T7F1C 007:836 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 00 00  returns 0x02 (0001ms, 0773ms total)
T7F1C 007:837 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 00  returns 0x01 (0001ms, 0774ms total)
T7F1C 007:839 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: 00 00  returns 0x02 (0001ms, 0775ms total)
T7F1C 007:840 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: 00 00  returns 0x02 (0001ms, 0776ms total)
T7F1C 007:841 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 00  returns 0x01 (0001ms, 0777ms total)
T7F1C 007:842 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0779ms total)
T7F1C 007:844 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 00 00  returns 0x02 (0001ms, 0780ms total)
T7F1C 007:845 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 01  returns 0x01 (0001ms, 0781ms total)
T7F1C 007:846 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 01  returns 0x01 (0001ms, 0782ms total)
T7F1C 007:847 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 0783ms total)
T7F1C 007:848 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 0784ms total)
T7F1C 007:849 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 0785ms total)
T7F1C 007:850 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 0786ms total)
T7F1C 007:851 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 0787ms total)
T7F1C 007:852 JLINK_ReadMemEx(0x0201BDF8, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BDF8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x5B0 (0017ms, 0804ms total)
T7F1C 007:874 JLINK_ReadMemEx(0x00009738, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x00009700) -- Updating C cache (128 bytes @ 0x00009700) -- Read from C cache (60 bytes @ 0x00009738) - Data: 51 18 1D 46 03 98 19 50 00 F0 A8 FA 01 46 70 7A ...  returns 0x3C (0002ms, 0806ms total)
T7F1C 007:876 JLINK_ReadMemEx(0x00009738, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009738) - Data: 51 18  returns 0x02 (0000ms, 0806ms total)
T7F1C 007:876 JLINK_ReadMemEx(0x0000973A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000973A) - Data: 1D 46  returns 0x02 (0000ms, 0806ms total)
T7F1C 007:876 JLINK_ReadMemEx(0x0000973A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000973A) - Data: 1D 46  returns 0x02 (0001ms, 0807ms total)
T7F1C 007:877 JLINK_ReadMemEx(0x0000973C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000973C) - Data: 03 98 19 50 00 F0 A8 FA 01 46 70 7A 00 19 02 04 ...  returns 0x3C (0000ms, 0807ms total)
T7F1C 007:877 JLINK_ReadMemEx(0x0000973C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000973C) - Data: 03 98  returns 0x02 (0000ms, 0807ms total)
T7F1C 007:877 JLINK_ReadMemEx(0x0000973C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000973C) - Data: 03 98 19 50 00 F0 A8 FA 01 46 70 7A 00 19 02 04 ...  returns 0x3C (0000ms, 0807ms total)
T7F1C 007:877 JLINK_ReadMemEx(0x0000973C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000973C) - Data: 03 98  returns 0x02 (0000ms, 0807ms total)
T7F1C 007:877 JLINK_ReadMemEx(0x0000973E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000973E) - Data: 19 50  returns 0x02 (0000ms, 0807ms total)
T7F1C 007:877 JLINK_ReadMemEx(0x0000973E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000973E) - Data: 19 50  returns 0x02 (0000ms, 0807ms total)
T7F1C 007:877 JLINK_ReadMemEx(0x00009740, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009740) - Data: 00 F0 A8 FA 01 46 70 7A 00 19 02 04 3E 46 0C D0 ...  returns 0x3C (0000ms, 0807ms total)
T7F1C 007:877 JLINK_ReadMemEx(0x00009740, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009740) - Data: 00 F0  returns 0x02 (0000ms, 0807ms total)
T7F1C 007:877 JLINK_ReadMemEx(0x00009740, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009740) - Data: 00 F0 A8 FA 01 46 70 7A 00 19 02 04 3E 46 0C D0 ...  returns 0x3C (0000ms, 0807ms total)
T7F1C 007:877 JLINK_ReadMemEx(0x00009740, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009740) - Data: 00 F0  returns 0x02 (0001ms, 0808ms total)
T7F1C 007:878 JLINK_ReadMemEx(0x00009742, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009742) - Data: A8 FA  returns 0x02 (0000ms, 0808ms total)
T7F1C 007:878 JLINK_ReadMemEx(0x00009744, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009744) - Data: 01 46 70 7A 00 19 02 04 3E 46 0C D0 80 B2 C0 00 ...  returns 0x3C (0000ms, 0808ms total)
T7F1C 007:878 JLINK_ReadMemEx(0x00009744, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009744) - Data: 01 46  returns 0x02 (0000ms, 0808ms total)
T7F1C 007:878 JLINK_ReadMemEx(0x00009746, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009746) - Data: 70 7A  returns 0x02 (0000ms, 0808ms total)
T7F1C 007:878 JLINK_ReadMemEx(0x00009746, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009746) - Data: 70 7A  returns 0x02 (0000ms, 0808ms total)
T7F1C 007:878 JLINK_ReadMemEx(0x00009748, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00009780) -- Updating C cache (64 bytes @ 0x00009780) -- Read from C cache (60 bytes @ 0x00009748) - Data: 00 19 02 04 3E 46 0C D0 80 B2 C0 00 00 29 00 D1 ...  returns 0x3C (0001ms, 0809ms total)
T7F1C 007:880 JLINK_ReadMemEx(0x00009748, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009748) - Data: 00 19  returns 0x02 (0000ms, 0810ms total)
T7F1C 007:880 JLINK_ReadMemEx(0x00009748, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009748) - Data: 00 19 02 04 3E 46 0C D0 80 B2 C0 00 00 29 00 D1 ...  returns 0x3C (0000ms, 0810ms total)
T7F1C 007:880 JLINK_ReadMemEx(0x00009748, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009748) - Data: 00 19  returns 0x02 (0000ms, 0810ms total)
T7F1C 007:880 JLINK_ReadMemEx(0x0000974A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000974A) - Data: 02 04  returns 0x02 (0000ms, 0810ms total)
T7F1C 007:880 JLINK_ReadMemEx(0x0000974A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000974A) - Data: 02 04  returns 0x02 (0000ms, 0810ms total)
T7F1C 007:880 JLINK_ReadMemEx(0x0000974C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000974C) - Data: 3E 46 0C D0 80 B2 C0 00 00 29 00 D1 80 1E 02 9F ...  returns 0x3C (0000ms, 0810ms total)
T7F1C 007:880 JLINK_ReadMemEx(0x0000974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000974C) - Data: 3E 46  returns 0x02 (0000ms, 0810ms total)
T7F1C 007:880 JLINK_ReadMemEx(0x0000974C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000974C) - Data: 3E 46 0C D0 80 B2 C0 00 00 29 00 D1 80 1E 02 9F ...  returns 0x3C (0000ms, 0810ms total)
T7F1C 007:880 JLINK_ReadMemEx(0x0000974C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000974C) - Data: 3E 46  returns 0x02 (0000ms, 0810ms total)
T7F1C 007:880 JLINK_ReadMemEx(0x0000974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000974E) - Data: 0C D0  returns 0x02 (0001ms, 0811ms total)
T7F1C 007:881 JLINK_ReadMemEx(0x0000974E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000974E) - Data: 0C D0  returns 0x02 (0000ms, 0811ms total)
T7F1C 007:881 JLINK_ReadMemEx(0x00009750, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009750) - Data: 80 B2 C0 00 00 29 00 D1 80 1E 02 9F A5 21 49 00 ...  returns 0x3C (0000ms, 0811ms total)
T7F1C 007:881 JLINK_ReadMemEx(0x00009750, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009750) - Data: 80 B2  returns 0x02 (0000ms, 0811ms total)
T7F1C 007:881 JLINK_ReadMemEx(0x00009750, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009750) - Data: 80 B2 C0 00 00 29 00 D1 80 1E 02 9F A5 21 49 00 ...  returns 0x3C (0000ms, 0811ms total)
T7F1C 007:881 JLINK_ReadMemEx(0x00009750, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009750) - Data: 80 B2  returns 0x02 (0000ms, 0811ms total)
T7F1C 007:881 JLINK_ReadMemEx(0x00009752, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009752) - Data: C0 00  returns 0x02 (0000ms, 0811ms total)
T7F1C 007:881 JLINK_ReadMemEx(0x00009752, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009752) - Data: C0 00  returns 0x02 (0000ms, 0811ms total)
T7F1C 007:881 JLINK_ReadMemEx(0x00009754, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009754) - Data: 00 29 00 D1 80 1E 02 9F A5 21 49 00 F6 F7 B8 FC ...  returns 0x3C (0000ms, 0811ms total)
T7F1C 007:881 JLINK_ReadMemEx(0x00009754, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009754) - Data: 00 29  returns 0x02 (0000ms, 0811ms total)
T7F1C 007:881 JLINK_ReadMemEx(0x00009754, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009754) - Data: 00 29 00 D1 80 1E 02 9F A5 21 49 00 F6 F7 B8 FC ...  returns 0x3C (0000ms, 0811ms total)
T7F1C 007:881 JLINK_ReadMemEx(0x00009754, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009754) - Data: 00 29  returns 0x02 (0000ms, 0811ms total)
T7F1C 007:881 JLINK_ReadMemEx(0x00009756, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009756) - Data: 00 D1  returns 0x02 (0000ms, 0811ms total)
T7F1C 007:881 JLINK_ReadMemEx(0x00009756, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009756) - Data: 00 D1  returns 0x02 (0000ms, 0811ms total)
T7F1C 007:881 JLINK_ReadMemEx(0x00009758, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009758) - Data: 80 1E 02 9F A5 21 49 00 F6 F7 B8 FC 1F 21 01 40 ...  returns 0x3C (0000ms, 0811ms total)
T7F1C 007:881 JLINK_ReadMemEx(0x00009758, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009758) - Data: 80 1E  returns 0x02 (0000ms, 0811ms total)
T7F1C 007:881 JLINK_ReadMemEx(0x00009758, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009758) - Data: 80 1E 02 9F A5 21 49 00 F6 F7 B8 FC 1F 21 01 40 ...  returns 0x3C (0000ms, 0811ms total)
T7F1C 007:881 JLINK_ReadMemEx(0x00009758, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009758) - Data: 80 1E  returns 0x02 (0000ms, 0811ms total)
T7F1C 007:881 JLINK_ReadMemEx(0x0000975A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000975A) - Data: 02 9F  returns 0x02 (0000ms, 0811ms total)
T7F1C 007:881 JLINK_ReadMemEx(0x0000975A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000975A) - Data: 02 9F  returns 0x02 (0000ms, 0811ms total)
T7F1C 007:881 JLINK_ReadMemEx(0x0000975C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000975C) - Data: A5 21 49 00 F6 F7 B8 FC 1F 21 01 40 01 E0 00 21 ...  returns 0x3C (0001ms, 0812ms total)
T7F1C 007:882 JLINK_ReadMemEx(0x0000975C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000975C) - Data: A5 21  returns 0x02 (0000ms, 0812ms total)
T7F1C 007:882 JLINK_ReadMemEx(0x0000975C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000975C) - Data: A5 21 49 00 F6 F7 B8 FC 1F 21 01 40 01 E0 00 21 ...  returns 0x3C (0000ms, 0812ms total)
T7F1C 007:882 JLINK_ReadMemEx(0x0000975C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000975C) - Data: A5 21  returns 0x02 (0000ms, 0812ms total)
T7F1C 007:882 JLINK_ReadMemEx(0x0000975E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000975E) - Data: 49 00  returns 0x02 (0000ms, 0812ms total)
T7F1C 007:882 JLINK_ReadMemEx(0x0000975E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000975E) - Data: 49 00  returns 0x02 (0000ms, 0812ms total)
T7F1C 007:882 JLINK_ReadMemEx(0x00009760, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009760) - Data: F6 F7 B8 FC 1F 21 01 40 01 E0 00 21 02 9F 38 01 ...  returns 0x3C (0000ms, 0812ms total)
T7F1C 007:882 JLINK_ReadMemEx(0x00009760, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009760) - Data: F6 F7  returns 0x02 (0000ms, 0812ms total)
T7F1C 007:882 JLINK_ReadMemEx(0x00009760, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009760) - Data: F6 F7 B8 FC 1F 21 01 40 01 E0 00 21 02 9F 38 01 ...  returns 0x3C (0000ms, 0812ms total)
T7F1C 007:882 JLINK_ReadMemEx(0x00009760, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009760) - Data: F6 F7  returns 0x02 (0000ms, 0812ms total)
T7F1C 007:882 JLINK_ReadMemEx(0x00009762, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009762) - Data: B8 FC  returns 0x02 (0000ms, 0812ms total)
T7F1C 007:882 JLINK_ReadMemEx(0x00009764, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009764) - Data: 1F 21 01 40 01 E0 00 21 02 9F 38 01 28 18 42 79 ...  returns 0x3C (0000ms, 0812ms total)
T7F1C 007:882 JLINK_ReadMemEx(0x00009764, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009764) - Data: 1F 21  returns 0x02 (0000ms, 0812ms total)
T7F1C 007:882 JLINK_ReadMemEx(0x00009766, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009766) - Data: 01 40  returns 0x02 (0000ms, 0812ms total)
T7F1C 007:882 JLINK_ReadMemEx(0x00009766, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009766) - Data: 01 40  returns 0x02 (0000ms, 0812ms total)
T7F1C 007:882 JLINK_ReadMemEx(0x00009768, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009768) - Data: 01 E0 00 21 02 9F 38 01 28 18 42 79 83 79 1B 02 ...  returns 0x3C (0001ms, 0813ms total)
T7F1C 007:883 JLINK_ReadMemEx(0x00009768, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009768) - Data: 01 E0  returns 0x02 (0000ms, 0813ms total)
T7F1C 007:883 JLINK_ReadMemEx(0x00009768, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009768) - Data: 01 E0 00 21 02 9F 38 01 28 18 42 79 83 79 1B 02 ...  returns 0x3C (0000ms, 0813ms total)
T7F1C 007:883 JLINK_ReadMemEx(0x00009768, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009768) - Data: 01 E0  returns 0x02 (0000ms, 0813ms total)
T7F1C 007:883 JLINK_ReadMemEx(0x0000976A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000976A) - Data: 00 21  returns 0x02 (0000ms, 0813ms total)
T7F1C 007:883 JLINK_ReadMemEx(0x0000976A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000976A) - Data: 00 21  returns 0x02 (0000ms, 0813ms total)
T7F1C 007:883 JLINK_ReadMemEx(0x0000976C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000976C) - Data: 02 9F 38 01 28 18 42 79 83 79 1B 02 9A 18 C3 79 ...  returns 0x3C (0000ms, 0813ms total)
T7F1C 007:883 JLINK_ReadMemEx(0x0000976C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000976C) - Data: 02 9F  returns 0x02 (0000ms, 0813ms total)
T7F1C 007:883 JLINK_ReadMemEx(0x0000976C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000976C) - Data: 02 9F 38 01 28 18 42 79 83 79 1B 02 9A 18 C3 79 ...  returns 0x3C (0000ms, 0813ms total)
T7F1C 007:883 JLINK_ReadMemEx(0x0000976C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000976C) - Data: 02 9F  returns 0x02 (0000ms, 0813ms total)
T7F1C 007:883 JLINK_ReadMemEx(0x0000976E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000976E) - Data: 38 01  returns 0x02 (0000ms, 0813ms total)
T7F1C 007:883 JLINK_ReadMemEx(0x0000976E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000976E) - Data: 38 01  returns 0x02 (0000ms, 0813ms total)
T7F1C 007:883 JLINK_ReadMemEx(0x00009770, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009770) - Data: 28 18 42 79 83 79 1B 02 9A 18 C3 79 1B 04 D2 18 ...  returns 0x3C (0000ms, 0813ms total)
T7F1C 007:883 JLINK_ReadMemEx(0x00009770, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009770) - Data: 28 18  returns 0x02 (0000ms, 0813ms total)
T7F1C 007:883 JLINK_ReadMemEx(0x00009770, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009770) - Data: 28 18 42 79 83 79 1B 02 9A 18 C3 79 1B 04 D2 18 ...  returns 0x3C (0001ms, 0814ms total)
T7F1C 007:884 JLINK_ReadMemEx(0x00009770, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009770) - Data: 28 18  returns 0x02 (0000ms, 0814ms total)
T7F1C 007:884 JLINK_ReadMemEx(0x00009772, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009772) - Data: 42 79  returns 0x02 (0000ms, 0814ms total)
T7F1C 007:884 JLINK_ReadMemEx(0x00009772, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009772) - Data: 42 79  returns 0x02 (0000ms, 0814ms total)
T7F1C 007:884 JLINK_ReadMemEx(0x00009774, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009774) - Data: 83 79 1B 02 9A 18 C3 79 1B 04 D2 18 2C 4B 13 40 ...  returns 0x3C (0000ms, 0814ms total)
T7F1C 007:884 JLINK_ReadMemEx(0x00009774, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009774) - Data: 83 79  returns 0x02 (0000ms, 0814ms total)
T7F1C 007:884 JLINK_ReadMemEx(0x00009774, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009774) - Data: 83 79 1B 02 9A 18 C3 79 1B 04 D2 18 2C 4B 13 40 ...  returns 0x3C (0000ms, 0814ms total)
T7F1C 007:884 JLINK_ReadMemEx(0x00009774, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009774) - Data: 83 79  returns 0x02 (0000ms, 0814ms total)
T7F1C 007:884 JLINK_ReadMemEx(0x00009776, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009776) - Data: 1B 02  returns 0x02 (0000ms, 0814ms total)
T7F1C 007:884 JLINK_ReadMemEx(0x00009776, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009776) - Data: 1B 02  returns 0x02 (0000ms, 0814ms total)
T7F1C 007:884 JLINK_ReadMemEx(0x00009778, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009778) - Data: 9A 18 C3 79 1B 04 D2 18 2C 4B 13 40 43 71 09 04 ...  returns 0x3C (0000ms, 0814ms total)
T7F1C 007:884 JLINK_ReadMemEx(0x00009778, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009778) - Data: 9A 18  returns 0x02 (0000ms, 0814ms total)
T7F1C 007:884 JLINK_ReadMemEx(0x00009778, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009778) - Data: 9A 18 C3 79 1B 04 D2 18 2C 4B 13 40 43 71 09 04 ...  returns 0x3C (0000ms, 0814ms total)
T7F1C 007:884 JLINK_ReadMemEx(0x00009778, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009778) - Data: 9A 18  returns 0x02 (0000ms, 0814ms total)
T7F1C 007:884 JLINK_ReadMemEx(0x0000977A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000977A) - Data: C3 79  returns 0x02 (0000ms, 0814ms total)
T7F1C 007:884 JLINK_ReadMemEx(0x0000977A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000977A) - Data: C3 79  returns 0x02 (0001ms, 0815ms total)
T7F1C 007:885 JLINK_ReadMemEx(0x0000977C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000977C) - Data: 1B 04 D2 18 2C 4B 13 40 43 71 09 04 59 18 09 0C ...  returns 0x3C (0000ms, 0815ms total)
T7F1C 007:885 JLINK_ReadMemEx(0x0000977C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000977C) - Data: 1B 04  returns 0x02 (0000ms, 0815ms total)
T7F1C 007:885 JLINK_ReadMemEx(0x0000977C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000977C) - Data: 1B 04 D2 18 2C 4B 13 40 43 71 09 04 59 18 09 0C ...  returns 0x3C (0000ms, 0815ms total)
T7F1C 007:885 JLINK_ReadMemEx(0x0000977C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000977C) - Data: 1B 04  returns 0x02 (0000ms, 0815ms total)
T7F1C 007:885 JLINK_ReadMemEx(0x0000977E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000977E) - Data: D2 18  returns 0x02 (0000ms, 0815ms total)
T7F1C 007:885 JLINK_ReadMemEx(0x0000977E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000977E) - Data: D2 18  returns 0x02 (0000ms, 0815ms total)
T7F1C 007:885 JLINK_ReadMemEx(0x00009780, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009780) - Data: 2C 4B 13 40 43 71 09 04 59 18 09 0C C1 71 00 2C ...  returns 0x3C (0000ms, 0815ms total)
T7F1C 007:885 JLINK_ReadMemEx(0x00009780, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009780) - Data: 2C 4B  returns 0x02 (0000ms, 0815ms total)
T7F1C 007:885 JLINK_ReadMemEx(0x00009780, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009780) - Data: 2C 4B 13 40 43 71 09 04 59 18 09 0C C1 71 00 2C ...  returns 0x3C (0000ms, 0815ms total)
T7F1C 007:885 JLINK_ReadMemEx(0x00009780, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009780) - Data: 2C 4B  returns 0x02 (0000ms, 0815ms total)
T7F1C 007:885 JLINK_ReadMemEx(0x00009782, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009782) - Data: 13 40  returns 0x02 (0000ms, 0815ms total)
T7F1C 007:885 JLINK_ReadMemEx(0x00009782, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009782) - Data: 13 40  returns 0x02 (0000ms, 0815ms total)
T7F1C 007:885 JLINK_ReadMemEx(0x00009784, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009784) - Data: 43 71 09 04 59 18 09 0C C1 71 00 2C 20 D0 15 48 ...  returns 0x3C (0000ms, 0815ms total)
T7F1C 007:885 JLINK_ReadMemEx(0x00009784, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009784) - Data: 43 71  returns 0x02 (0000ms, 0815ms total)
T7F1C 007:885 JLINK_ReadMemEx(0x00009784, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009784) - Data: 43 71 09 04 59 18 09 0C C1 71 00 2C 20 D0 15 48 ...  returns 0x3C (0001ms, 0816ms total)
T7F1C 007:886 JLINK_ReadMemEx(0x00009784, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009784) - Data: 43 71  returns 0x02 (0000ms, 0816ms total)
T7F1C 007:886 JLINK_ReadMemEx(0x00009786, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009786) - Data: 09 04  returns 0x02 (0000ms, 0816ms total)
T7F1C 007:886 JLINK_ReadMemEx(0x00009786, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009786) - Data: 09 04  returns 0x02 (0000ms, 0816ms total)
T7F1C 007:886 JLINK_ReadMemEx(0x00009788, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x000097C0) -- Updating C cache (64 bytes @ 0x000097C0) -- Read from C cache (60 bytes @ 0x00009788) - Data: 59 18 09 0C C1 71 00 2C 20 D0 15 48 35 46 06 46 ...  returns 0x3C (0001ms, 0817ms total)
T7F1C 007:887 JLINK_ReadMemEx(0x00009788, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009788) - Data: 59 18  returns 0x02 (0000ms, 0817ms total)
T7F1C 007:887 JLINK_ReadMemEx(0x00009788, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009788) - Data: 59 18 09 0C C1 71 00 2C 20 D0 15 48 35 46 06 46 ...  returns 0x3C (0000ms, 0817ms total)
T7F1C 007:887 JLINK_ReadMemEx(0x00009788, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009788) - Data: 59 18  returns 0x02 (0001ms, 0818ms total)
T7F1C 007:888 JLINK_ReadMemEx(0x0000978A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000978A) - Data: 09 0C  returns 0x02 (0000ms, 0818ms total)
T7F1C 007:888 JLINK_ReadMemEx(0x0000978A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000978A) - Data: 09 0C  returns 0x02 (0000ms, 0818ms total)
T7F1C 007:888 JLINK_ReadMemEx(0x0000978C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000978C) - Data: C1 71 00 2C 20 D0 15 48 35 46 06 46 00 7B 00 9B ...  returns 0x3C (0000ms, 0818ms total)
T7F1C 007:888 JLINK_ReadMemEx(0x0000978C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000978C) - Data: C1 71  returns 0x02 (0000ms, 0818ms total)
T7F1C 007:888 JLINK_ReadMemEx(0x0000978C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000978C) - Data: C1 71 00 2C 20 D0 15 48 35 46 06 46 00 7B 00 9B ...  returns 0x3C (0000ms, 0818ms total)
T7F1C 007:888 JLINK_ReadMemEx(0x0000978C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000978C) - Data: C1 71  returns 0x02 (0000ms, 0818ms total)
T7F1C 007:888 JLINK_ReadMemEx(0x0000978E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000978E) - Data: 00 2C  returns 0x02 (0000ms, 0818ms total)
T7F1C 007:888 JLINK_ReadMemEx(0x0000978E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000978E) - Data: 00 2C  returns 0x02 (0000ms, 0818ms total)
T7F1C 007:888 JLINK_ReadMemEx(0x00009790, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009790) - Data: 20 D0 15 48 35 46 06 46 00 7B 00 9B 43 43 F1 7A ...  returns 0x3C (0000ms, 0818ms total)
T7F1C 007:888 JLINK_ReadMemEx(0x00009790, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009790) - Data: 20 D0  returns 0x02 (0000ms, 0818ms total)
T7F1C 007:888 JLINK_ReadMemEx(0x00009790, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009790) - Data: 20 D0 15 48 35 46 06 46 00 7B 00 9B 43 43 F1 7A ...  returns 0x3C (0000ms, 0818ms total)
T7F1C 007:888 JLINK_ReadMemEx(0x00009790, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009790) - Data: 20 D0  returns 0x02 (0000ms, 0818ms total)
T7F1C 007:888 JLINK_ReadMemEx(0x00009792, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009792) - Data: 15 48  returns 0x02 (0000ms, 0818ms total)
T7F1C 007:888 JLINK_ReadMemEx(0x00009792, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009792) - Data: 15 48  returns 0x02 (0001ms, 0819ms total)
T7F1C 007:889 JLINK_ReadMemEx(0x00009794, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009794) - Data: 35 46 06 46 00 7B 00 9B 43 43 F1 7A 0A 01 06 9F ...  returns 0x3C (0000ms, 0819ms total)
T7F1C 007:889 JLINK_ReadMemEx(0x00009794, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009794) - Data: 35 46  returns 0x02 (0000ms, 0819ms total)
T7F1C 007:889 JLINK_ReadMemEx(0x00009794, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009794) - Data: 35 46 06 46 00 7B 00 9B 43 43 F1 7A 0A 01 06 9F ...  returns 0x3C (0000ms, 0819ms total)
T7F1C 007:889 JLINK_ReadMemEx(0x00009794, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009794) - Data: 35 46  returns 0x02 (0000ms, 0819ms total)
T7F1C 007:889 JLINK_ReadMemEx(0x00009796, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009796) - Data: 06 46  returns 0x02 (0000ms, 0819ms total)
T7F1C 007:889 JLINK_ReadMemEx(0x00009796, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009796) - Data: 06 46  returns 0x02 (0000ms, 0819ms total)
T7F1C 007:889 JLINK_ReadMemEx(0x00009798, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009798) - Data: 00 7B 00 9B 43 43 F1 7A 0A 01 06 9F 3A 43 D2 18 ...  returns 0x3C (0000ms, 0819ms total)
T7F1C 007:889 JLINK_ReadMemEx(0x00009798, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009798) - Data: 00 7B  returns 0x02 (0000ms, 0819ms total)
T7F1C 007:889 JLINK_ReadMemEx(0x00009798, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009798) - Data: 00 7B 00 9B 43 43 F1 7A 0A 01 06 9F 3A 43 D2 18 ...  returns 0x3C (0000ms, 0819ms total)
T7F1C 007:889 JLINK_ReadMemEx(0x00009798, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009798) - Data: 00 7B  returns 0x02 (0000ms, 0819ms total)
T7F1C 007:889 JLINK_ReadMemEx(0x0000979A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000979A) - Data: 00 9B  returns 0x02 (0000ms, 0819ms total)
T7F1C 007:889 JLINK_ReadMemEx(0x0000979A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000979A) - Data: 00 9B  returns 0x02 (0000ms, 0819ms total)
T7F1C 007:889 JLINK_ReadMemEx(0x0000979C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000979C) - Data: 43 43 F1 7A 0A 01 06 9F 3A 43 D2 18 41 18 8B 00 ...  returns 0x3C (0000ms, 0819ms total)
T7F1C 007:889 JLINK_ReadMemEx(0x0000979C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000979C) - Data: 43 43  returns 0x02 (0000ms, 0819ms total)
T7F1C 007:890 JLINK_ReadMemEx(0x0000979C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000979C) - Data: 43 43 F1 7A 0A 01 06 9F 3A 43 D2 18 41 18 8B 00 ...  returns 0x3C (0000ms, 0820ms total)
T7F1C 007:890 JLINK_ReadMemEx(0x0000979C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000979C) - Data: 43 43  returns 0x02 (0000ms, 0820ms total)
T7F1C 007:890 JLINK_ReadMemEx(0x0000979E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000979E) - Data: F1 7A  returns 0x02 (0000ms, 0820ms total)
T7F1C 007:890 JLINK_ReadMemEx(0x0000979E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000979E) - Data: F1 7A  returns 0x02 (0000ms, 0820ms total)
T7F1C 007:890 JLINK_ReadMemEx(0x000097A0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000097A0) - Data: 0A 01 06 9F 3A 43 D2 18 41 18 8B 00 D2 18 05 9B ...  returns 0x3C (0000ms, 0820ms total)
T7F1C 007:890 JLINK_ReadMemEx(0x000097A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097A0) - Data: 0A 01  returns 0x02 (0000ms, 0820ms total)
T7F1C 007:890 JLINK_ReadMemEx(0x000097A0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000097A0) - Data: 0A 01 06 9F 3A 43 D2 18 41 18 8B 00 D2 18 05 9B ...  returns 0x3C (0000ms, 0820ms total)
T7F1C 007:890 JLINK_ReadMemEx(0x000097A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097A0) - Data: 0A 01  returns 0x02 (0000ms, 0820ms total)
T7F1C 007:890 JLINK_ReadMemEx(0x000097A2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097A2) - Data: 06 9F  returns 0x02 (0000ms, 0820ms total)
T7F1C 007:890 JLINK_ReadMemEx(0x000097A2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097A2) - Data: 06 9F  returns 0x02 (0000ms, 0820ms total)
T7F1C 007:890 JLINK_ReadMemEx(0x000097A4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000097A4) - Data: 3A 43 D2 18 41 18 8B 00 D2 18 05 9B 4B 43 D1 18 ...  returns 0x3C (0000ms, 0820ms total)
T7F1C 007:890 JLINK_ReadMemEx(0x000097A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097A4) - Data: 3A 43  returns 0x02 (0000ms, 0820ms total)
T7F1C 007:890 JLINK_ReadMemEx(0x000097A4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000097A4) - Data: 3A 43 D2 18 41 18 8B 00 D2 18 05 9B 4B 43 D1 18 ...  returns 0x3C (0000ms, 0820ms total)
T7F1C 007:890 JLINK_ReadMemEx(0x000097A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097A4) - Data: 3A 43  returns 0x02 (0000ms, 0820ms total)
T7F1C 007:890 JLINK_ReadMemEx(0x000097A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097A6) - Data: D2 18  returns 0x02 (0001ms, 0821ms total)
T7F1C 007:891 JLINK_ReadMemEx(0x000097A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097A6) - Data: D2 18  returns 0x02 (0000ms, 0821ms total)
T7F1C 007:891 JLINK_ReadMemEx(0x000097A8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000097A8) - Data: 41 18 8B 00 D2 18 05 9B 4B 43 D1 18 72 7B 07 9B ...  returns 0x3C (0000ms, 0821ms total)
T7F1C 007:891 JLINK_ReadMemEx(0x000097A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097A8) - Data: 41 18  returns 0x02 (0000ms, 0821ms total)
T7F1C 007:891 JLINK_ReadMemEx(0x000097A8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000097A8) - Data: 41 18 8B 00 D2 18 05 9B 4B 43 D1 18 72 7B 07 9B ...  returns 0x3C (0000ms, 0821ms total)
T7F1C 007:891 JLINK_ReadMemEx(0x000097A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097A8) - Data: 41 18  returns 0x02 (0000ms, 0821ms total)
T7F1C 007:891 JLINK_ReadMemEx(0x000097AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097AA) - Data: 8B 00  returns 0x02 (0000ms, 0821ms total)
T7F1C 007:891 JLINK_ReadMemEx(0x000097AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097AA) - Data: 8B 00  returns 0x02 (0000ms, 0821ms total)
T7F1C 007:891 JLINK_ReadMemEx(0x000097AC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000097AC) - Data: D2 18 05 9B 4B 43 D1 18 72 7B 07 9B 53 43 C9 18 ...  returns 0x3C (0000ms, 0821ms total)
T7F1C 007:891 JLINK_ReadMemEx(0x000097AC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097AC) - Data: D2 18  returns 0x02 (0000ms, 0821ms total)
T7F1C 007:891 JLINK_ReadMemEx(0x000097AC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000097AC) - Data: D2 18 05 9B 4B 43 D1 18 72 7B 07 9B 53 43 C9 18 ...  returns 0x3C (0000ms, 0821ms total)
T7F1C 007:891 JLINK_ReadMemEx(0x000097AC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097AC) - Data: D2 18  returns 0x02 (0000ms, 0821ms total)
T7F1C 007:891 JLINK_ReadMemEx(0x000097AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097AE) - Data: 05 9B  returns 0x02 (0000ms, 0821ms total)
T7F1C 007:891 JLINK_ReadMemEx(0x000097AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097AE) - Data: 05 9B  returns 0x02 (0000ms, 0821ms total)
T7F1C 007:891 JLINK_ReadMemEx(0x000097B0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000097B0) - Data: 4B 43 D1 18 72 7B 07 9B 53 43 C9 18 40 19 1C 4A ...  returns 0x3C (0000ms, 0821ms total)
T7F1C 007:891 JLINK_ReadMemEx(0x000097B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097B0) - Data: 4B 43  returns 0x02 (0001ms, 0822ms total)
T7F1C 007:892 JLINK_ReadMemEx(0x000097B0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000097B0) - Data: 4B 43 D1 18 72 7B 07 9B 53 43 C9 18 40 19 1C 4A ...  returns 0x3C (0000ms, 0822ms total)
T7F1C 007:892 JLINK_ReadMemEx(0x000097B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097B0) - Data: 4B 43  returns 0x02 (0000ms, 0822ms total)
T7F1C 007:892 JLINK_ReadMemEx(0x000097B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097B2) - Data: D1 18  returns 0x02 (0000ms, 0822ms total)
T7F1C 007:892 JLINK_ReadMemEx(0x000097B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097B2) - Data: D1 18  returns 0x02 (0000ms, 0822ms total)
T7F1C 007:892 JLINK_ReadMemEx(0x000097B4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000097B4) - Data: 72 7B 07 9B 53 43 C9 18 40 19 1C 4A 12 88 42 43 ...  returns 0x3C (0000ms, 0822ms total)
T7F1C 007:892 JLINK_ReadMemEx(0x000097B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097B4) - Data: 72 7B  returns 0x02 (0000ms, 0822ms total)
T7F1C 007:892 JLINK_ReadMemEx(0x000097B4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000097B4) - Data: 72 7B 07 9B 53 43 C9 18 40 19 1C 4A 12 88 42 43 ...  returns 0x3C (0000ms, 0822ms total)
T7F1C 007:892 JLINK_ReadMemEx(0x000097B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097B4) - Data: 72 7B  returns 0x02 (0000ms, 0822ms total)
T7F1C 007:892 JLINK_ReadMemEx(0x000097B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097B6) - Data: 07 9B  returns 0x02 (0000ms, 0822ms total)
T7F1C 007:892 JLINK_ReadMemEx(0x000097B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097B6) - Data: 07 9B  returns 0x02 (0000ms, 0822ms total)
T7F1C 007:892 JLINK_ReadMemEx(0x000097B8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000097B8) - Data: 53 43 C9 18 40 19 1C 4A 12 88 42 43 88 18 01 99 ...  returns 0x3C (0000ms, 0822ms total)
T7F1C 007:892 JLINK_ReadMemEx(0x000097B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097B8) - Data: 53 43  returns 0x02 (0000ms, 0822ms total)
T7F1C 007:892 JLINK_ReadMemEx(0x000097B8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000097B8) - Data: 53 43 C9 18 40 19 1C 4A 12 88 42 43 88 18 01 99 ...  returns 0x3C (0000ms, 0822ms total)
T7F1C 007:892 JLINK_ReadMemEx(0x000097B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097B8) - Data: 53 43  returns 0x02 (0000ms, 0822ms total)
T7F1C 007:892 JLINK_ReadMemEx(0x000097BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097BA) - Data: C9 18  returns 0x02 (0001ms, 0823ms total)
T7F1C 007:893 JLINK_ReadMemEx(0x000097BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097BA) - Data: C9 18  returns 0x02 (0000ms, 0823ms total)
T7F1C 007:893 JLINK_ReadMemEx(0x000097BC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000097BC) - Data: 40 19 1C 4A 12 88 42 43 88 18 01 99 88 42 03 D0 ...  returns 0x3C (0000ms, 0823ms total)
T7F1C 007:893 JLINK_ReadMemEx(0x000097BC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097BC) - Data: 40 19  returns 0x02 (0000ms, 0823ms total)
T7F1C 007:893 JLINK_ReadMemEx(0x000097BC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000097BC) - Data: 40 19 1C 4A 12 88 42 43 88 18 01 99 88 42 03 D0 ...  returns 0x3C (0000ms, 0823ms total)
T7F1C 007:893 JLINK_ReadMemEx(0x000097BC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097BC) - Data: 40 19  returns 0x02 (0000ms, 0823ms total)
T7F1C 007:893 JLINK_ReadMemEx(0x000097BE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097BE) - Data: 1C 4A  returns 0x02 (0000ms, 0823ms total)
T7F1C 007:893 JLINK_ReadMemEx(0x000097BE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097BE) - Data: 1C 4A  returns 0x02 (0000ms, 0823ms total)
T7F1C 007:893 JLINK_ReadMemEx(0x000097C0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000097C0) - Data: 12 88 42 43 88 18 01 99 88 42 03 D0 01 99 22 46 ...  returns 0x3C (0000ms, 0823ms total)
T7F1C 007:893 JLINK_ReadMemEx(0x000097C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097C0) - Data: 12 88  returns 0x02 (0000ms, 0823ms total)
T7F1C 007:893 JLINK_ReadMemEx(0x000097C0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000097C0) - Data: 12 88 42 43 88 18 01 99 88 42 03 D0 01 99 22 46 ...  returns 0x3C (0000ms, 0823ms total)
T7F1C 007:893 JLINK_ReadMemEx(0x000097C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097C0) - Data: 12 88  returns 0x02 (0000ms, 0823ms total)
T7F1C 007:893 JLINK_ReadMemEx(0x000097C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097C2) - Data: 42 43  returns 0x02 (0000ms, 0823ms total)
T7F1C 007:893 JLINK_ReadMemEx(0x000097C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097C2) - Data: 42 43  returns 0x02 (0000ms, 0823ms total)
T7F1C 007:893 JLINK_ReadMemEx(0x000097C4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000097C4) - Data: 88 18 01 99 88 42 03 D0 01 99 22 46 F6 F7 AA FC ...  returns 0x3C (0000ms, 0823ms total)
T7F1C 007:893 JLINK_ReadMemEx(0x000097C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097C4) - Data: 88 18  returns 0x02 (0001ms, 0824ms total)
T7F1C 007:894 JLINK_ReadMemEx(0x000097C4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000097C4) - Data: 88 18 01 99 88 42 03 D0 01 99 22 46 F6 F7 AA FC ...  returns 0x3C (0000ms, 0824ms total)
T7F1C 007:894 JLINK_ReadMemEx(0x000097C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097C4) - Data: 88 18  returns 0x02 (0000ms, 0824ms total)
T7F1C 007:894 JLINK_ReadMemEx(0x000097C6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097C6) - Data: 01 99  returns 0x02 (0000ms, 0824ms total)
T7F1C 007:894 JLINK_ReadMemEx(0x000097C6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097C6) - Data: 01 99  returns 0x02 (0000ms, 0824ms total)
T7F1C 007:894 JLINK_ReadMemEx(0x000097C8, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00009800) -- Updating C cache (64 bytes @ 0x00009800) -- Read from C cache (60 bytes @ 0x000097C8) - Data: 88 42 03 D0 01 99 22 46 F6 F7 AA FC 09 B0 F0 BD ...  returns 0x3C (0001ms, 0825ms total)
T7F1C 007:895 JLINK_ReadMemEx(0x000097C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097C8) - Data: 88 42  returns 0x02 (0001ms, 0826ms total)
T7F1C 007:896 JLINK_ReadMemEx(0x000097C8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000097C8) - Data: 88 42 03 D0 01 99 22 46 F6 F7 AA FC 09 B0 F0 BD ...  returns 0x3C (0000ms, 0826ms total)
T7F1C 007:896 JLINK_ReadMemEx(0x000097C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097C8) - Data: 88 42  returns 0x02 (0000ms, 0826ms total)
T7F1C 007:896 JLINK_ReadMemEx(0x000097CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097CA) - Data: 03 D0  returns 0x02 (0000ms, 0826ms total)
T7F1C 007:896 JLINK_ReadMemEx(0x000097CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097CA) - Data: 03 D0  returns 0x02 (0000ms, 0826ms total)
T7F1C 007:896 JLINK_ReadMemEx(0x000097CC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000097CC) - Data: 01 99 22 46 F6 F7 AA FC 09 B0 F0 BD FF 22 5C 32 ...  returns 0x3C (0000ms, 0826ms total)
T7F1C 007:896 JLINK_ReadMemEx(0x000097CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097CC) - Data: 01 99  returns 0x02 (0000ms, 0826ms total)
T7F1C 007:896 JLINK_ReadMemEx(0x000097CC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000097CC) - Data: 01 99 22 46 F6 F7 AA FC 09 B0 F0 BD FF 22 5C 32 ...  returns 0x3C (0000ms, 0826ms total)
T7F1C 007:896 JLINK_ReadMemEx(0x000097CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097CC) - Data: 01 99  returns 0x02 (0000ms, 0826ms total)
T7F1C 007:896 JLINK_ReadMemEx(0x000097CE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097CE) - Data: 22 46  returns 0x02 (0000ms, 0826ms total)
T7F1C 007:896 JLINK_ReadMemEx(0x000097CE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097CE) - Data: 22 46  returns 0x02 (0000ms, 0826ms total)
T7F1C 007:896 JLINK_ReadMemEx(0x000097D0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000097D0) - Data: F6 F7 AA FC 09 B0 F0 BD FF 22 5C 32 03 48 04 A1 ...  returns 0x3C (0000ms, 0826ms total)
T7F1C 007:896 JLINK_ReadMemEx(0x000097D0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097D0) - Data: F6 F7  returns 0x02 (0000ms, 0826ms total)
T7F1C 007:896 JLINK_ReadMemEx(0x000097D0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000097D0) - Data: F6 F7 AA FC 09 B0 F0 BD FF 22 5C 32 03 48 04 A1 ...  returns 0x3C (0000ms, 0826ms total)
T7F1C 007:896 JLINK_ReadMemEx(0x000097D0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097D0) - Data: F6 F7  returns 0x02 (0000ms, 0826ms total)
T7F1C 007:896 JLINK_ReadMemEx(0x000097D2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097D2) - Data: AA FC  returns 0x02 (0001ms, 0827ms total)
T7F1C 007:897 JLINK_ReadMemEx(0x000097D4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000097D4) - Data: 09 B0 F0 BD FF 22 5C 32 03 48 04 A1 09 A3 02 F0 ...  returns 0x3C (0000ms, 0827ms total)
T7F1C 007:897 JLINK_ReadMemEx(0x000097D4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097D4) - Data: 09 B0  returns 0x02 (0000ms, 0827ms total)
T7F1C 007:897 JLINK_ReadMemEx(0x000097D6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097D6) - Data: F0 BD  returns 0x02 (0000ms, 0827ms total)
T7F1C 007:897 JLINK_ReadMemEx(0x000097D6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097D6) - Data: F0 BD  returns 0x02 (0000ms, 0827ms total)
T7F1C 007:897 JLINK_ReadMemEx(0x000097D8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000097D8) - Data: FF 22 5C 32 03 48 04 A1 09 A3 02 F0 1F FA C0 46 ...  returns 0x3C (0000ms, 0827ms total)
T7F1C 007:897 JLINK_ReadMemEx(0x000097D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097D8) - Data: FF 22  returns 0x02 (0000ms, 0827ms total)
T7F1C 007:897 JLINK_ReadMemEx(0x000097D8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000097D8) - Data: FF 22 5C 32 03 48 04 A1 09 A3 02 F0 1F FA C0 46 ...  returns 0x3C (0000ms, 0827ms total)
T7F1C 007:897 JLINK_ReadMemEx(0x000097D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097D8) - Data: FF 22  returns 0x02 (0000ms, 0827ms total)
T7F1C 007:897 JLINK_ReadMemEx(0x000097DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097DA) - Data: 5C 32  returns 0x02 (0000ms, 0827ms total)
T7F1C 007:897 JLINK_ReadMemEx(0x000097DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097DA) - Data: 5C 32  returns 0x02 (0000ms, 0827ms total)
T7F1C 007:897 JLINK_ReadMemEx(0x000097DC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000097DC) - Data: 03 48 04 A1 09 A3 02 F0 1F FA C0 46 FC C1 01 02 ...  returns 0x3C (0000ms, 0827ms total)
T7F1C 007:897 JLINK_ReadMemEx(0x000097DC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097DC) - Data: 03 48  returns 0x02 (0000ms, 0827ms total)
T7F1C 007:897 JLINK_ReadMemEx(0x000097DC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000097DC) - Data: 03 48 04 A1 09 A3 02 F0 1F FA C0 46 FC C1 01 02 ...  returns 0x3C (0000ms, 0827ms total)
T7F1C 007:897 JLINK_ReadMemEx(0x000097DC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097DC) - Data: 03 48  returns 0x02 (0000ms, 0827ms total)
T7F1C 007:897 JLINK_ReadMemEx(0x000097DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097DE) - Data: 04 A1  returns 0x02 (0001ms, 0828ms total)
T7F1C 007:898 JLINK_ReadMemEx(0x000097DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097DE) - Data: 04 A1  returns 0x02 (0000ms, 0828ms total)
T7F1C 007:898 JLINK_ReadMemEx(0x000097E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000097E0) - Data: 09 A3 02 F0 1F FA C0 46 FC C1 01 02 E8 FA 00 00 ...  returns 0x3C (0000ms, 0828ms total)
T7F1C 007:898 JLINK_ReadMemEx(0x000097E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097E0) - Data: 09 A3  returns 0x02 (0000ms, 0828ms total)
T7F1C 007:898 JLINK_ReadMemEx(0x000097E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000097E0) - Data: 09 A3 02 F0 1F FA C0 46 FC C1 01 02 E8 FA 00 00 ...  returns 0x3C (0000ms, 0828ms total)
T7F1C 007:898 JLINK_ReadMemEx(0x000097E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097E0) - Data: 09 A3  returns 0x02 (0000ms, 0828ms total)
T7F1C 007:898 JLINK_ReadMemEx(0x000097E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097E2) - Data: 02 F0  returns 0x02 (0000ms, 0828ms total)
T7F1C 007:898 JLINK_ReadMemEx(0x000097E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097E2) - Data: 02 F0  returns 0x02 (0000ms, 0828ms total)
T7F1C 007:898 JLINK_ReadMemEx(0x000097E4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000097E4) - Data: 1F FA C0 46 FC C1 01 02 E8 FA 00 00 6D 61 63 5F ...  returns 0x3C (0000ms, 0828ms total)
T7F1C 007:898 JLINK_ReadMemEx(0x000097E4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097E4) - Data: 1F FA  returns 0x02 (0000ms, 0828ms total)
T7F1C 007:898 JLINK_ReadMemEx(0x000097E6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097E6) - Data: C0 46  returns 0x02 (0000ms, 0828ms total)
T7F1C 007:898 JLINK_ReadMemEx(0x000097E8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000097E8) - Data: FC C1 01 02 E8 FA 00 00 6D 61 63 5F 74 78 5F 64 ...  returns 0x3C (0000ms, 0828ms total)
T7F1C 007:898 JLINK_ReadMemEx(0x000097E8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000097E8) - Data: FC C1  returns 0x02 (0000ms, 0828ms total)
T7F1C 007:898 JLINK_ReadMemEx(0x00009836, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009836) - Data: E0 00  returns 0x02 (0000ms, 0828ms total)
T7F1C 007:898 JLINK_ReadMemEx(0x00009838, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00009840) -- Updating C cache (64 bytes @ 0x00009840) -- Read from C cache (60 bytes @ 0x00009838) - Data: 84 B0 FC F7 E5 FD 05 20 00 25 29 46 FF F7 74 F8 ...  returns 0x3C (0002ms, 0830ms total)
T7F1C 007:900 JLINK_ReadMemEx(0x00009838, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009838) - Data: 84 B0  returns 0x02 (0000ms, 0830ms total)
T7F1C 007:900 JLINK_ReadMemEx(0x00009838, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009838) - Data: 84 B0 FC F7 E5 FD 05 20 00 25 29 46 FF F7 74 F8 ...  returns 0x3C (0000ms, 0830ms total)
T7F1C 007:900 JLINK_ReadMemEx(0x00009838, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009838) - Data: 84 B0  returns 0x02 (0000ms, 0830ms total)
T7F1C 007:900 JLINK_ReadMemEx(0x0000983A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000983A) - Data: FC F7  returns 0x02 (0000ms, 0830ms total)
T7F1C 007:900 JLINK_ReadMemEx(0x0000983A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000983A) - Data: FC F7  returns 0x02 (0001ms, 0831ms total)
T7F1C 007:901 JLINK_ReadMemEx(0x0000983C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000983C) - Data: E5 FD 05 20 00 25 29 46 FF F7 74 F8 06 20 29 46 ...  returns 0x3C (0000ms, 0831ms total)
T7F1C 007:901 JLINK_ReadMemEx(0x0000983C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000983C) - Data: E5 FD  returns 0x02 (0000ms, 0831ms total)
T7F1C 007:901 JLINK_ReadMemEx(0x0000983E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000983E) - Data: 05 20  returns 0x02 (0000ms, 0831ms total)
T7F1C 007:901 JLINK_ReadMemEx(0x00009840, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009840) - Data: 00 25 29 46 FF F7 74 F8 06 20 29 46 FF F7 70 F8 ...  returns 0x3C (0000ms, 0831ms total)
T7F1C 007:901 JLINK_ReadMemEx(0x00009840, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009840) - Data: 00 25  returns 0x02 (0000ms, 0831ms total)
T7F1C 010:741 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0001ms, 0832ms total)
T7F1C 010:742 JLINK_Reset() -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)Reset: Halt core after reset via DEMCR.VC_CORERESET. >0x35 TIF>Reset: Reset device via AIRCR.SYSRESETREQ. -- CPU_WriteMem(4 bytes @ 0xE000ED0C) >0x0D TIF> >0x28 TIF> -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE0002000)
 -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0075ms, 0907ms total)
T7F1C 010:817 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0907ms total)
T7F1C 010:817 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0907ms total)
T7F1C 010:817 JLINK_ReadReg(R0)  returns 0x00009839 (0000ms, 0907ms total)
T7F1C 010:818 JLINK_ReadReg(R1)  returns 0x0201D764 (0000ms, 0908ms total)
T7F1C 010:818 JLINK_ReadReg(R2)  returns 0x00000000 (0000ms, 0908ms total)
T7F1C 010:818 JLINK_ReadReg(R3)  returns 0x0000E291 (0000ms, 0908ms total)
T7F1C 010:818 JLINK_ReadReg(R4)  returns 0x000107AC (0000ms, 0908ms total)
T7F1C 010:818 JLINK_ReadReg(R5)  returns 0x00000001 (0000ms, 0908ms total)
T7F1C 010:818 JLINK_ReadReg(R6)  returns 0x000107AC (0000ms, 0908ms total)
T7F1C 010:818 JLINK_ReadReg(R7)  returns 0x02000000 (0000ms, 0908ms total)
T7F1C 010:818 JLINK_ReadReg(R8)  returns 0xFBEAB6D7 (0000ms, 0908ms total)
T7F1C 010:818 JLINK_ReadReg(R9)  returns 0x164B985F (0000ms, 0908ms total)
T7F1C 010:818 JLINK_ReadReg(R10)  returns 0x9F53C30D (0000ms, 0908ms total)
T7F1C 010:818 JLINK_ReadReg(R11)  returns 0x1FCB9C8A (0000ms, 0908ms total)
T7F1C 010:818 JLINK_ReadReg(R12)  returns 0x00000003 (0000ms, 0908ms total)
T7F1C 010:818 JLINK_ReadReg(R13 (SP))  returns 0x0202F800 (0000ms, 0908ms total)
T7F1C 010:818 JLINK_ReadReg(R14)  returns 0x00000DED (0000ms, 0908ms total)
T7F1C 010:818 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0908ms total)
T7F1C 010:818 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0908ms total)
T7F1C 010:819 JLINK_ReadReg(MSP)  returns 0x0202F800 (0000ms, 0909ms total)
T7F1C 010:819 JLINK_ReadReg(PSP)  returns 0x7D9496A8 (0000ms, 0909ms total)
T7F1C 010:819 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0909ms total)
T7F1C 010:819 JLINK_ReadMemEx(0x0201BDF8, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BDF8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x5B0 (0015ms, 0924ms total)
T7F1C 010:840 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, 0926ms total)
T7F1C 010:842 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0001ms, 0927ms total)
T7F1C 010:843 JLINK_ReadMemEx(0x0300373A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373A) - Data: 4E F8  returns 0x02 (0001ms, 0928ms total)
T7F1C 010:844 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, 0929ms total)
T7F1C 010:845 JLINK_ReadMemEx(0x0300373C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373C) - Data: FC F7  returns 0x02 (0001ms, 0930ms total)
T7F1C 010:846 JLINK_ReadMemEx(0x0300373E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373E) - Data: C0 FC  returns 0x02 (0001ms, 0931ms total)
T7F1C 010:847 JLINK_ReadMemEx(0x03003740, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003740) - Data: 80 B5 0D 49 08 68 00 28 00 D4 80 BD 0B 48 02 68 ...  returns 0x3C (0002ms, 0933ms total)
T7F1C 010:849 JLINK_ReadMemEx(0x03003740, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003740) - Data: 80 B5  returns 0x02 (0001ms, 0934ms total)
T7F1C 010:850 JLINK_ReadMemEx(0x03003742, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003742) - Data: 0D 49  returns 0x02 (0001ms, 0935ms total)
T7F1C 010:851 JLINK_ReadMemEx(0x03003742, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003742) - Data: 0D 49  returns 0x02 (0001ms, 0936ms total)
T7F1C 010:852 JLINK_ReadMemEx(0x03003744, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003744) - Data: 08 68 00 28 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 ...  returns 0x3C (0001ms, 0937ms total)
T7F1C 010:853 JLINK_ReadMemEx(0x03003744, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003744) - Data: 08 68  returns 0x02 (0001ms, 0938ms total)
T7F1C 010:854 JLINK_ReadMemEx(0x03003744, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003744) - Data: 08 68 00 28 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 ...  returns 0x3C (0002ms, 0940ms total)
T7F1C 010:856 JLINK_ReadMemEx(0x03003744, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003744) - Data: 08 68  returns 0x02 (0001ms, 0941ms total)
T7F1C 010:857 JLINK_ReadMemEx(0x03003746, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003746) - Data: 00 28  returns 0x02 (0001ms, 0942ms total)
T7F1C 010:858 JLINK_ReadMemEx(0x03003746, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003746) - Data: 00 28  returns 0x02 (0001ms, 0943ms total)
T7F1C 010:859 JLINK_ReadMemEx(0x03003748, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003748) - Data: 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 04 22 0A 60 ...  returns 0x3C (0001ms, 0944ms total)
T7F1C 010:860 JLINK_ReadMemEx(0x03003748, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003748) - Data: 00 D4  returns 0x02 (0001ms, 0945ms total)
T7F1C 010:861 JLINK_ReadMemEx(0x03003748, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003748) - Data: 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 04 22 0A 60 ...  returns 0x3C (0001ms, 0946ms total)
T7F1C 010:862 JLINK_ReadMemEx(0x03003748, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003748) - Data: 00 D4  returns 0x02 (0001ms, 0947ms total)
T7F1C 010:863 JLINK_ReadMemEx(0x0300374A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300374A) - Data: 80 BD  returns 0x02 (0001ms, 0948ms total)
T7F1C 011:071 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0001ms, 0949ms total)
T7F1C 011:072 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 0950ms total)
T7F1C 011:073 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 0951ms total)
T7F1C 011:074 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 0952ms total)
T7F1C 011:076 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 0953ms total)
T7F1C 011:077 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0000ms, 0953ms total)
T7F1C 011:078 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0000ms, 0953ms total)
T7F1C 011:078 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 00  returns 0x01 (0002ms, 0955ms total)
T7F1C 011:081 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: 00 00 00 00 00 00 00 00 00 00  returns 0x0A (0000ms, 0955ms total)
T7F1C 011:082 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 00  returns 0x01 (0000ms, 0955ms total)
T7F1C 011:083 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0956ms total)
T7F1C 011:084 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: 00 00 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 0957ms total)
T7F1C 011:085 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 00 00 00 00  returns 0x04 (0001ms, 0958ms total)
T7F1C 011:086 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 0959ms total)
T7F1C 011:087 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 0960ms total)
T7F1C 011:088 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 00 00  returns 0x02 (0001ms, 0961ms total)
T7F1C 011:089 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 00  returns 0x01 (0001ms, 0962ms total)
T7F1C 011:090 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: 00 00  returns 0x02 (0001ms, 0963ms total)
T7F1C 011:091 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: 00 00  returns 0x02 (0001ms, 0964ms total)
T7F1C 011:092 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 00  returns 0x01 (0001ms, 0965ms total)
T7F1C 011:093 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0966ms total)
T7F1C 011:094 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 00 00  returns 0x02 (0001ms, 0967ms total)
T7F1C 011:096 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 01  returns 0x01 (0000ms, 0967ms total)
T7F1C 011:096 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 01  returns 0x01 (0001ms, 0968ms total)
T7F1C 011:098 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 0969ms total)
T7F1C 011:099 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0000ms, 0969ms total)
T7F1C 011:101 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 0970ms total)
T7F1C 011:102 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 0971ms total)
T7F1C 011:103 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 0972ms total)
T4308 011:420 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0001ms, 0973ms total)
T4308 011:421 JLINK_Go() -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU_WriteMem(4 bytes @ 0xE0002014) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0007ms, 0980ms total)
T4308 011:529 JLINK_IsHalted()  returns FALSE (0001ms, 0981ms total)
T4308 011:631 JLINK_IsHalted()  returns FALSE (0001ms, 0981ms total)
T4308 011:733 JLINK_IsHalted()  returns FALSE (0001ms, 0981ms total)
T4308 011:835 JLINK_IsHalted()  returns FALSE (0001ms, 0981ms total)
T7F1C 011:940 JLINK_ReadMemEx(0x0201BDF8, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BDF8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x5B0 (0016ms, 0996ms total)
T7F1C 011:956 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0001ms, 0997ms total)
T7F1C 011:957 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 0998ms total)
T7F1C 011:958 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 0999ms total)
T7F1C 011:959 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0002ms, 1001ms total)
T7F1C 011:961 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 1002ms total)
T7F1C 011:962 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0001ms, 1003ms total)
T7F1C 011:963 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 1004ms total)
T7F1C 011:964 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 11  returns 0x01 (0001ms, 1005ms total)
T7F1C 011:965 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1006ms total)
T7F1C 011:966 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0001ms, 1007ms total)
T7F1C 011:968 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1008ms total)
T7F1C 011:969 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: FD DF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1009ms total)
T7F1C 011:970 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 00 00 00 00  returns 0x04 (0001ms, 1010ms total)
T7F1C 011:971 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 1011ms total)
T7F1C 011:972 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 1012ms total)
T7F1C 011:973 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 00 00  returns 0x02 (0001ms, 1013ms total)
T7F1C 011:974 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 1014ms total)
T7F1C 011:975 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0001ms, 1015ms total)
T7F1C 011:976 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 1016ms total)
T7F1C 011:977 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 01  returns 0x01 (0001ms, 1017ms total)
T7F1C 011:978 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1019ms total)
T7F1C 011:980 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0000ms, 1019ms total)
T7F1C 011:980 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 01  returns 0x01 (0001ms, 1020ms total)
T7F1C 011:982 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 01  returns 0x01 (0000ms, 1020ms total)
T7F1C 011:983 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 1022ms total)
T7F1C 011:984 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 1023ms total)
T7F1C 011:985 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 1024ms total)
T7F1C 011:986 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 1025ms total)
T7F1C 011:987 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 1026ms total)
T4308 011:989 JLINK_IsHalted()  returns FALSE (0001ms, 1027ms total)
T4308 012:091 JLINK_IsHalted()  returns FALSE (0001ms, 1027ms total)
T4308 012:193 JLINK_IsHalted()  returns FALSE (0001ms, 1027ms total)
T4308 012:294 JLINK_IsHalted()  returns FALSE (0000ms, 1026ms total)
T4308 012:396 JLINK_IsHalted()  returns FALSE (0001ms, 1027ms total)
T7F1C 012:497 JLINK_ReadMemEx(0x0201BDF8, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BDF8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x5B0 (0016ms, 1042ms total)
T7F1C 012:514 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0001ms, 1043ms total)
T7F1C 012:515 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1044ms total)
T7F1C 012:516 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 1045ms total)
T7F1C 012:517 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 1046ms total)
T7F1C 012:519 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0000ms, 1046ms total)
T7F1C 012:520 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0000ms, 1046ms total)
T7F1C 012:521 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 80 3F  returns 0x04 (0000ms, 1046ms total)
T7F1C 012:522 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 11  returns 0x01 (0001ms, 1047ms total)
T7F1C 012:523 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1048ms total)
T7F1C 012:524 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0001ms, 1049ms total)
T7F1C 012:525 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1050ms total)
T7F1C 012:526 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: FD DF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1051ms total)
T7F1C 012:527 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 00 00 00 00  returns 0x04 (0001ms, 1052ms total)
T7F1C 012:528 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0002ms, 1054ms total)
T7F1C 012:530 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 1055ms total)
T7F1C 012:531 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 01 00  returns 0x02 (0001ms, 1056ms total)
T7F1C 012:532 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 1057ms total)
T7F1C 012:533 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0001ms, 1058ms total)
T7F1C 012:534 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 1059ms total)
T7F1C 012:535 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 01  returns 0x01 (0001ms, 1060ms total)
T7F1C 012:536 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1061ms total)
T7F1C 012:537 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0001ms, 1062ms total)
T7F1C 012:538 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 01  returns 0x01 (0001ms, 1063ms total)
T7F1C 012:539 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 01  returns 0x01 (0001ms, 1064ms total)
T7F1C 012:540 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 1065ms total)
T7F1C 012:541 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 1066ms total)
T7F1C 012:542 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 1067ms total)
T7F1C 012:543 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 1068ms total)
T7F1C 012:544 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 1069ms total)
T4308 012:545 JLINK_IsHalted()  returns FALSE (0001ms, 1070ms total)
T4308 012:647 JLINK_IsHalted()  returns FALSE (0000ms, 1069ms total)
T4308 012:749 JLINK_IsHalted()  returns FALSE (0001ms, 1070ms total)
T4308 012:850 JLINK_IsHalted()  returns FALSE (0001ms, 1070ms total)
T4308 012:951 JLINK_IsHalted()  returns FALSE (0001ms, 1070ms total)
T7F1C 013:053 JLINK_ReadMemEx(0x0201BDF8, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BDF8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x5B0 (0017ms, 1086ms total)
T7F1C 013:070 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0001ms, 1087ms total)
T7F1C 013:071 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1088ms total)
T7F1C 013:072 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 1089ms total)
T7F1C 013:073 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 1090ms total)
T7F1C 013:076 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0000ms, 1090ms total)
T7F1C 013:077 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0000ms, 1090ms total)
T7F1C 013:077 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 40  returns 0x04 (0001ms, 1091ms total)
T7F1C 013:079 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 11  returns 0x01 (0001ms, 1092ms total)
T7F1C 013:080 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1093ms total)
T7F1C 013:081 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0001ms, 1094ms total)
T7F1C 013:082 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1095ms total)
T7F1C 013:083 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: FD DF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1096ms total)
T7F1C 013:084 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 02 00 00 00  returns 0x04 (0001ms, 1097ms total)
T7F1C 013:085 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 1098ms total)
T7F1C 013:086 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 1099ms total)
T7F1C 013:087 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 02 00  returns 0x02 (0001ms, 1100ms total)
T7F1C 013:089 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0000ms, 1100ms total)
T7F1C 013:091 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0000ms, 1102ms total)
T7F1C 013:091 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 1103ms total)
T7F1C 013:092 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 00  returns 0x01 (0001ms, 1104ms total)
T7F1C 013:093 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1106ms total)
T7F1C 013:095 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0001ms, 1107ms total)
T7F1C 013:096 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 01  returns 0x01 (0001ms, 1108ms total)
T7F1C 013:097 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 01  returns 0x01 (0001ms, 1109ms total)
T7F1C 013:098 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 1110ms total)
T7F1C 013:099 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 1111ms total)
T7F1C 013:100 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 1112ms total)
T7F1C 013:101 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 1113ms total)
T7F1C 013:102 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 1114ms total)
T4308 013:104 JLINK_IsHalted()  returns FALSE (0001ms, 1115ms total)
T4308 013:206 JLINK_IsHalted()  returns FALSE (0001ms, 1115ms total)
T4308 013:308 JLINK_IsHalted()  returns FALSE (0000ms, 1114ms total)
T4308 013:409 JLINK_IsHalted()  returns FALSE (0000ms, 1114ms total)
T4308 013:511 JLINK_IsHalted()  returns FALSE (0001ms, 1115ms total)
T7F1C 013:551 JLINK_ReadMemEx(0x0201BE14, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BE14) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x5B0 (0016ms, 1130ms total)
T7F1C 013:567 JLINK_ReadMemEx(0x0201BE30, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BE30) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x5B0 (0015ms, 1145ms total)
T7F1C 013:594 JLINK_ReadMemEx(0x0201BE4C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BE4C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x5B0 (0017ms, 1163ms total)
T7F1C 013:612 JLINK_ReadMemEx(0x0201BE68, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BE68) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x5B0 (0016ms, 1179ms total)
T7F1C 013:628 JLINK_ReadMemEx(0x0201BE68, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BE68) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x5B0 (0016ms, 1195ms total)
T7F1C 013:645 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0001ms, 1196ms total)
T7F1C 013:646 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1197ms total)
T7F1C 013:647 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 1198ms total)
T7F1C 013:648 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 1199ms total)
T7F1C 013:649 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 1200ms total)
T7F1C 013:650 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0001ms, 1201ms total)
T7F1C 013:651 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 40  returns 0x04 (0001ms, 1202ms total)
T7F1C 013:652 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 11  returns 0x01 (0001ms, 1203ms total)
T7F1C 013:653 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1204ms total)
T7F1C 013:655 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0001ms, 1205ms total)
T7F1C 013:656 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1206ms total)
T7F1C 013:657 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: FD DF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1207ms total)
T7F1C 013:658 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 02 00 00 00  returns 0x04 (0001ms, 1208ms total)
T7F1C 013:659 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 1209ms total)
T7F1C 013:660 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 1210ms total)
T7F1C 013:661 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 02 00  returns 0x02 (0001ms, 1211ms total)
T7F1C 013:662 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0000ms, 1211ms total)
T7F1C 013:663 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0001ms, 1212ms total)
T7F1C 013:664 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0000ms, 1212ms total)
T7F1C 013:665 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 00  returns 0x01 (0000ms, 1212ms total)
T7F1C 013:666 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1214ms total)
T7F1C 013:667 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0001ms, 1215ms total)
T7F1C 013:668 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 01  returns 0x01 (0001ms, 1216ms total)
T7F1C 013:669 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 01  returns 0x01 (0002ms, 1218ms total)
T7F1C 013:671 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 1219ms total)
T7F1C 013:672 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 1220ms total)
T7F1C 013:673 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 1221ms total)
T7F1C 013:674 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 1222ms total)
T7F1C 013:675 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 1223ms total)
T4308 013:677 JLINK_IsHalted()  returns FALSE (0000ms, 1223ms total)
T7F1C 013:678 JLINK_ReadMemEx(0x0201BE84, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BE84) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x5B0 (0016ms, 1239ms total)
T4308 013:778 JLINK_IsHalted()  returns FALSE (0001ms, 1240ms total)
T7F1C 013:865 JLINK_ReadMemEx(0x0201BEA0, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BEA0) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x5B0 (0017ms, 1256ms total)
T4308 013:882 JLINK_IsHalted()  returns FALSE (0001ms, 1257ms total)
T7F1C 013:883 JLINK_ReadMemEx(0x0201BEBC, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BEBC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x5B0 (0015ms, 1271ms total)
T7F1C 013:899 JLINK_ReadMemEx(0x0201BED8, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BED8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x5B0 (0016ms, 1287ms total)
T7F1C 013:916 JLINK_ReadMemEx(0x0201BEF4, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BEF4) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x5B0 (0017ms, 1304ms total)
T7F1C 013:934 JLINK_ReadMemEx(0x0201BF10, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF10) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x5B0 (0015ms, 1319ms total)
T7F1C 013:950 JLINK_ReadMemEx(0x0201BF2C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF2C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x5B0 (0016ms, 1335ms total)
T4308 013:983 JLINK_IsHalted()  returns FALSE (0001ms, 1336ms total)
T4308 014:084 JLINK_IsHalted()  returns FALSE (0001ms, 1336ms total)
T7F1C 014:186 JLINK_ReadMemEx(0x0201BF2C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF2C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x5B0 (0016ms, 1351ms total)
T7F1C 014:202 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0001ms, 1352ms total)
T7F1C 014:203 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1353ms total)
T7F1C 014:205 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 1354ms total)
T7F1C 014:206 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 1355ms total)
T7F1C 014:207 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 1356ms total)
T7F1C 014:208 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0001ms, 1357ms total)
T7F1C 014:209 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 40 40  returns 0x04 (0001ms, 1358ms total)
T7F1C 014:211 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 11  returns 0x01 (0000ms, 1358ms total)
T7F1C 014:212 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0000ms, 1358ms total)
T7F1C 014:212 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0002ms, 1360ms total)
T7F1C 014:214 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1361ms total)
T7F1C 014:215 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: FD DF 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 1363ms total)
T7F1C 014:217 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 02 00 00 00  returns 0x04 (0001ms, 1364ms total)
T7F1C 014:218 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 1365ms total)
T7F1C 014:219 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 1366ms total)
T7F1C 014:220 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 03 00  returns 0x02 (0001ms, 1367ms total)
T7F1C 014:221 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 1368ms total)
T7F1C 014:222 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0001ms, 1369ms total)
T7F1C 014:223 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 1370ms total)
T7F1C 014:224 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 00  returns 0x01 (0001ms, 1371ms total)
T7F1C 014:225 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1372ms total)
T7F1C 014:226 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0001ms, 1373ms total)
T7F1C 014:227 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 01  returns 0x01 (0001ms, 1374ms total)
T7F1C 014:228 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 01  returns 0x01 (0001ms, 1375ms total)
T7F1C 014:229 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 1376ms total)
T7F1C 014:230 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 1377ms total)
T7F1C 014:232 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 1378ms total)
T7F1C 014:233 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 1379ms total)
T7F1C 014:234 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0000ms, 1379ms total)
T4308 014:235 JLINK_IsHalted()  returns FALSE (0001ms, 1380ms total)
T4308 014:337 JLINK_IsHalted()  returns FALSE (0001ms, 1380ms total)
T4308 014:439 JLINK_IsHalted()  returns FALSE (0000ms, 1379ms total)
T4308 014:540 JLINK_IsHalted()  returns FALSE (0001ms, 1380ms total)
T4308 014:641 JLINK_IsHalted()  returns FALSE (0001ms, 1380ms total)
T7F1C 014:742 JLINK_ReadMemEx(0x0201BF2C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF2C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x5B0 (0017ms, 1396ms total)
T7F1C 014:760 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0001ms, 1397ms total)
T7F1C 014:761 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1398ms total)
T7F1C 014:762 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0002ms, 1400ms total)
T7F1C 014:764 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 1401ms total)
T7F1C 014:765 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 1402ms total)
T7F1C 014:767 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0001ms, 1403ms total)
T7F1C 014:768 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 40 40  returns 0x04 (0001ms, 1404ms total)
T7F1C 014:769 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 11  returns 0x01 (0001ms, 1405ms total)
T7F1C 014:770 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1406ms total)
T7F1C 014:771 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0001ms, 1407ms total)
T7F1C 014:772 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1408ms total)
T7F1C 014:773 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: FD DF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1409ms total)
T7F1C 014:774 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 02 00 00 00  returns 0x04 (0001ms, 1410ms total)
T7F1C 014:775 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0002ms, 1412ms total)
T7F1C 014:777 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 1413ms total)
T7F1C 014:778 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 03 00  returns 0x02 (0001ms, 1414ms total)
T7F1C 014:779 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 1415ms total)
T7F1C 014:780 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0001ms, 1416ms total)
T7F1C 014:781 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 1417ms total)
T7F1C 014:782 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 00  returns 0x01 (0001ms, 1418ms total)
T7F1C 014:783 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1419ms total)
T7F1C 014:784 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0001ms, 1420ms total)
T7F1C 014:785 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 01  returns 0x01 (0001ms, 1421ms total)
T7F1C 014:786 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 01  returns 0x01 (0001ms, 1422ms total)
T7F1C 014:787 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 1423ms total)
T7F1C 014:788 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 1424ms total)
T7F1C 014:789 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 1425ms total)
T7F1C 014:790 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 1426ms total)
T7F1C 014:791 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 1427ms total)
T4308 014:793 JLINK_IsHalted()  returns FALSE (0001ms, 1428ms total)
T4308 014:894 JLINK_IsHalted()  returns FALSE (0000ms, 1427ms total)
T4308 014:995 JLINK_IsHalted()  returns FALSE (0001ms, 1428ms total)
T4308 015:098 JLINK_IsHalted()  returns FALSE (0001ms, 1428ms total)
T4308 015:199 JLINK_IsHalted()  returns FALSE (0001ms, 1428ms total)
T7F1C 015:301 JLINK_ReadMemEx(0x0201BF2C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF2C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x5B0 (0016ms, 1443ms total)
T7F1C 015:318 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0001ms, 1444ms total)
T7F1C 015:319 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1445ms total)
T7F1C 015:320 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 1446ms total)
T7F1C 015:321 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 1447ms total)
T7F1C 015:322 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 1448ms total)
T7F1C 015:323 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0001ms, 1449ms total)
T7F1C 015:324 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 80 40  returns 0x04 (0001ms, 1450ms total)
T7F1C 015:325 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 11  returns 0x01 (0001ms, 1451ms total)
T7F1C 015:326 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1452ms total)
T7F1C 015:327 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0001ms, 1453ms total)
T7F1C 015:328 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1454ms total)
T7F1C 015:329 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: FD DF 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 1456ms total)
T7F1C 015:331 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 02 00 00 00  returns 0x04 (0001ms, 1457ms total)
T7F1C 015:332 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 1458ms total)
T7F1C 015:333 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 1459ms total)
T7F1C 015:334 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 04 00  returns 0x02 (0001ms, 1460ms total)
T7F1C 015:335 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 1461ms total)
T7F1C 015:336 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0001ms, 1462ms total)
T7F1C 015:337 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 1463ms total)
T7F1C 015:338 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 00  returns 0x01 (0001ms, 1464ms total)
T7F1C 015:339 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1465ms total)
T7F1C 015:340 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0001ms, 1466ms total)
T7F1C 015:341 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 01  returns 0x01 (0001ms, 1467ms total)
T7F1C 015:342 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 01  returns 0x01 (0001ms, 1468ms total)
T7F1C 015:343 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 1469ms total)
T7F1C 015:344 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 1470ms total)
T7F1C 015:346 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 1471ms total)
T7F1C 015:347 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 1472ms total)
T7F1C 015:348 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 1473ms total)
T4308 015:350 JLINK_IsHalted()  returns FALSE (0001ms, 1474ms total)
T4308 015:452 JLINK_IsHalted()  returns FALSE (0001ms, 1474ms total)
T4308 015:553 JLINK_IsHalted()  returns FALSE (0001ms, 1474ms total)
T4308 015:654 JLINK_IsHalted()  returns FALSE (0001ms, 1474ms total)
T4308 015:755 JLINK_IsHalted()  returns FALSE (0001ms, 1474ms total)
T7F1C 015:857 JLINK_ReadMemEx(0x0201BF2C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF2C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x5B0 (0015ms, 1488ms total)
T7F1C 015:873 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0001ms, 1489ms total)
T7F1C 015:874 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1490ms total)
T7F1C 015:875 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 1491ms total)
T7F1C 015:876 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 1492ms total)
T7F1C 015:878 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 1493ms total)
T7F1C 015:879 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0001ms, 1494ms total)
T7F1C 015:880 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 80 40  returns 0x04 (0001ms, 1495ms total)
T7F1C 015:881 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 11  returns 0x01 (0001ms, 1496ms total)
T7F1C 015:882 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 1498ms total)
T7F1C 015:884 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0001ms, 1499ms total)
T7F1C 015:885 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1500ms total)
T7F1C 015:886 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: FD DF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1501ms total)
T7F1C 015:887 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 02 00 00 00  returns 0x04 (0001ms, 1502ms total)
T7F1C 015:888 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 1503ms total)
T7F1C 015:889 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 1504ms total)
T7F1C 015:890 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 04 00  returns 0x02 (0001ms, 1505ms total)
T7F1C 015:891 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 1506ms total)
T7F1C 015:892 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0001ms, 1507ms total)
T7F1C 015:893 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 1508ms total)
T7F1C 015:894 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 00  returns 0x01 (0001ms, 1509ms total)
T7F1C 015:895 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1511ms total)
T7F1C 015:897 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0000ms, 1511ms total)
T7F1C 015:897 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 01  returns 0x01 (0001ms, 1512ms total)
T7F1C 015:898 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 01  returns 0x01 (0001ms, 1513ms total)
T7F1C 015:900 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 1514ms total)
T7F1C 015:901 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 1515ms total)
T7F1C 015:902 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 1516ms total)
T7F1C 015:903 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 1517ms total)
T7F1C 015:904 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 1518ms total)
T4308 015:905 JLINK_IsHalted()  returns FALSE (0001ms, 1519ms total)
T4308 016:007 JLINK_IsHalted()  returns FALSE (0001ms, 1519ms total)
T4308 016:108 JLINK_IsHalted()  returns FALSE (0001ms, 1519ms total)
T4308 016:209 JLINK_IsHalted()  returns FALSE (0001ms, 1519ms total)
T4308 016:311 JLINK_IsHalted()  returns FALSE (0001ms, 1519ms total)
T7F1C 016:414 JLINK_ReadMemEx(0x0201BF2C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF2C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x5B0 (0015ms, 1533ms total)
T7F1C 016:430 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0001ms, 1534ms total)
T7F1C 016:431 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1535ms total)
T7F1C 016:432 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 1536ms total)
T7F1C 016:433 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 1537ms total)
T7F1C 016:434 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 1538ms total)
T7F1C 016:435 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0001ms, 1539ms total)
T7F1C 016:436 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 A0 40  returns 0x04 (0001ms, 1540ms total)
T7F1C 016:437 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 11  returns 0x01 (0001ms, 1541ms total)
T7F1C 016:438 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 1543ms total)
T7F1C 016:440 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0001ms, 1544ms total)
T7F1C 016:441 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1545ms total)
T7F1C 016:442 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: FD DF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1546ms total)
T7F1C 016:443 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 05 00 00 00  returns 0x04 (0001ms, 1547ms total)
T7F1C 016:444 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 1548ms total)
T7F1C 016:445 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 1549ms total)
T7F1C 016:446 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 05 00  returns 0x02 (0001ms, 1550ms total)
T7F1C 016:447 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 1551ms total)
T7F1C 016:448 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0001ms, 1552ms total)
T7F1C 016:449 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 1553ms total)
T7F1C 016:450 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 01  returns 0x01 (0001ms, 1554ms total)
T7F1C 016:452 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1556ms total)
T7F1C 016:454 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0001ms, 1557ms total)
T7F1C 016:455 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 01  returns 0x01 (0001ms, 1558ms total)
T7F1C 016:456 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 01  returns 0x01 (0000ms, 1558ms total)
T7F1C 016:456 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 1559ms total)
T7F1C 016:457 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0002ms, 1561ms total)
T7F1C 016:459 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 1562ms total)
T7F1C 016:460 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 1563ms total)
T7F1C 016:461 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 1564ms total)
T4308 016:462 JLINK_IsHalted()  returns FALSE (0001ms, 1565ms total)
T4308 016:564 JLINK_IsHalted()  returns FALSE (0001ms, 1565ms total)
T4308 016:666 JLINK_IsHalted()  returns FALSE (0000ms, 1564ms total)
T4308 016:768 JLINK_IsHalted()  returns FALSE (0001ms, 1565ms total)
T4308 016:870 JLINK_IsHalted()  returns FALSE (0001ms, 1565ms total)
T7F1C 016:974 JLINK_ReadMemEx(0x0201BF2C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF2C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x5B0 (0015ms, 1579ms total)
T7F1C 016:990 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0001ms, 1580ms total)
T7F1C 016:991 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1581ms total)
T7F1C 016:992 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 1582ms total)
T7F1C 016:993 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 1583ms total)
T7F1C 016:994 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 1584ms total)
T7F1C 016:996 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0000ms, 1584ms total)
T7F1C 016:996 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 A0 40  returns 0x04 (0001ms, 1585ms total)
T7F1C 016:997 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 11  returns 0x01 (0002ms, 1587ms total)
T7F1C 016:999 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1588ms total)
T7F1C 017:001 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0001ms, 1590ms total)
T7F1C 017:002 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1591ms total)
T7F1C 017:003 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: FD DF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1592ms total)
T7F1C 017:004 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 05 00 00 00  returns 0x04 (0001ms, 1593ms total)
T7F1C 017:005 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 1594ms total)
T7F1C 017:006 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 1595ms total)
T7F1C 017:007 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 05 00  returns 0x02 (0001ms, 1596ms total)
T7F1C 017:008 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 1597ms total)
T7F1C 017:009 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0001ms, 1598ms total)
T7F1C 017:010 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 1599ms total)
T7F1C 017:011 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 01  returns 0x01 (0001ms, 1600ms total)
T7F1C 017:012 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1601ms total)
T7F1C 017:013 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0001ms, 1602ms total)
T7F1C 017:014 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 01  returns 0x01 (0001ms, 1603ms total)
T7F1C 017:015 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 01  returns 0x01 (0001ms, 1604ms total)
T7F1C 017:016 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 1605ms total)
T7F1C 017:017 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 1606ms total)
T7F1C 017:018 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 1607ms total)
T7F1C 017:019 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 1608ms total)
T7F1C 017:020 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 1609ms total)
T4308 017:022 JLINK_IsHalted()  returns FALSE (0000ms, 1609ms total)
T4308 017:124 JLINK_IsHalted()  returns FALSE (0001ms, 1610ms total)
T4308 017:225 JLINK_IsHalted()  returns FALSE (0000ms, 1609ms total)
T4308 017:327 JLINK_IsHalted()  returns FALSE (0001ms, 1610ms total)
T4308 017:429 JLINK_IsHalted()  returns FALSE (0001ms, 1610ms total)
T7F1C 017:533 JLINK_ReadMemEx(0x0201BF2C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF2C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x5B0 (0016ms, 1625ms total)
T7F1C 017:549 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0001ms, 1626ms total)
T7F1C 017:550 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1627ms total)
T7F1C 017:551 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 1628ms total)
T7F1C 017:553 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 1629ms total)
T7F1C 017:554 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 1630ms total)
T7F1C 017:555 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0001ms, 1631ms total)
T7F1C 017:556 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 C0 40  returns 0x04 (0001ms, 1632ms total)
T7F1C 017:557 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 11  returns 0x01 (0001ms, 1633ms total)
T7F1C 017:558 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 1635ms total)
T7F1C 017:560 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0001ms, 1636ms total)
T7F1C 017:561 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1637ms total)
T7F1C 017:562 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: FD DF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1638ms total)
T7F1C 017:563 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 05 00 00 00  returns 0x04 (0002ms, 1640ms total)
T7F1C 017:565 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 1641ms total)
T7F1C 017:566 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 1642ms total)
T7F1C 017:567 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 06 00  returns 0x02 (0001ms, 1643ms total)
T7F1C 017:568 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 1644ms total)
T7F1C 017:569 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0001ms, 1645ms total)
T7F1C 017:570 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 1646ms total)
T7F1C 017:571 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 01  returns 0x01 (0001ms, 1647ms total)
T7F1C 017:572 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1648ms total)
T7F1C 017:573 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0001ms, 1649ms total)
T7F1C 017:574 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 01  returns 0x01 (0001ms, 1650ms total)
T7F1C 017:575 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 01  returns 0x01 (0001ms, 1651ms total)
T7F1C 017:576 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 1652ms total)
T7F1C 017:577 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 1653ms total)
T7F1C 017:578 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 1654ms total)
T7F1C 017:579 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 1655ms total)
T7F1C 017:580 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 1656ms total)
T4308 017:581 JLINK_IsHalted()  returns FALSE (0001ms, 1657ms total)
T4308 017:684 JLINK_IsHalted()  returns FALSE (0000ms, 1656ms total)
T4308 017:786 JLINK_IsHalted()  returns FALSE (0000ms, 1656ms total)
T4308 017:887 JLINK_IsHalted()  returns FALSE (0000ms, 1656ms total)
T4308 017:989 JLINK_IsHalted()  returns FALSE (0001ms, 1657ms total)
T7F1C 018:090 JLINK_ReadMemEx(0x0201BF2C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF2C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x5B0 (0016ms, 1672ms total)
T7F1C 018:108 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0001ms, 1673ms total)
T7F1C 018:109 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1674ms total)
T7F1C 018:110 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 1675ms total)
T7F1C 018:111 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 1676ms total)
T7F1C 018:112 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 1677ms total)
T7F1C 018:113 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0001ms, 1678ms total)
T7F1C 018:114 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 E0 40  returns 0x04 (0001ms, 1679ms total)
T7F1C 018:115 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 11  returns 0x01 (0001ms, 1680ms total)
T7F1C 018:116 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 1682ms total)
T7F1C 018:118 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0000ms, 1682ms total)
T7F1C 018:118 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1683ms total)
T7F1C 018:119 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: FD DF 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 1685ms total)
T7F1C 018:121 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 07 00 00 00  returns 0x04 (0001ms, 1686ms total)
T7F1C 018:122 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 1687ms total)
T7F1C 018:123 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 1688ms total)
T7F1C 018:124 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 07 00  returns 0x02 (0001ms, 1689ms total)
T7F1C 018:125 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 1690ms total)
T7F1C 018:126 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0001ms, 1691ms total)
T7F1C 018:127 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 1692ms total)
T7F1C 018:128 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 00  returns 0x01 (0001ms, 1693ms total)
T7F1C 018:129 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1694ms total)
T7F1C 018:130 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0001ms, 1695ms total)
T7F1C 018:131 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 01  returns 0x01 (0001ms, 1696ms total)
T7F1C 018:132 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 01  returns 0x01 (0001ms, 1697ms total)
T7F1C 018:133 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 1698ms total)
T7F1C 018:134 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 1699ms total)
T7F1C 018:136 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 1700ms total)
T7F1C 018:137 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0002ms, 1702ms total)
T7F1C 018:139 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 1703ms total)
T4308 018:140 JLINK_IsHalted()  returns FALSE (0001ms, 1704ms total)
T4308 018:242 JLINK_IsHalted()  returns FALSE (0001ms, 1704ms total)
T4308 018:344 JLINK_IsHalted()  returns FALSE (0000ms, 1703ms total)
T4308 018:445 JLINK_IsHalted()  returns FALSE (0001ms, 1704ms total)
T4308 018:546 JLINK_IsHalted()  returns FALSE (0001ms, 1704ms total)
T7F1C 018:648 JLINK_ReadMemEx(0x0201BF2C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF2C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x5B0 (0015ms, 1718ms total)
T7F1C 018:663 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0002ms, 1720ms total)
T7F1C 018:665 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1721ms total)
T7F1C 018:666 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 1722ms total)
T7F1C 018:668 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 1723ms total)
T7F1C 018:669 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 1724ms total)
T7F1C 018:670 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0001ms, 1725ms total)
T7F1C 018:671 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 E0 40  returns 0x04 (0001ms, 1726ms total)
T7F1C 018:672 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 11  returns 0x01 (0001ms, 1727ms total)
T7F1C 018:673 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 1729ms total)
T7F1C 018:675 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0001ms, 1730ms total)
T7F1C 018:676 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1731ms total)
T7F1C 018:677 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: FD DF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1732ms total)
T7F1C 018:678 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 07 00 00 00  returns 0x04 (0001ms, 1733ms total)
T7F1C 018:679 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 1734ms total)
T7F1C 018:680 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 1735ms total)
T7F1C 018:681 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 07 00  returns 0x02 (0001ms, 1736ms total)
T7F1C 018:682 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 1737ms total)
T7F1C 018:683 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0001ms, 1738ms total)
T7F1C 018:684 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0000ms, 1738ms total)
T7F1C 018:684 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 00  returns 0x01 (0002ms, 1740ms total)
T7F1C 018:686 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1742ms total)
T7F1C 018:688 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0001ms, 1743ms total)
T7F1C 018:689 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 01  returns 0x01 (0001ms, 1744ms total)
T7F1C 018:690 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 01  returns 0x01 (0001ms, 1745ms total)
T7F1C 018:691 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 1746ms total)
T7F1C 018:692 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 1747ms total)
T7F1C 018:693 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 1748ms total)
T7F1C 018:694 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 1749ms total)
T7F1C 018:695 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 1750ms total)
T4308 018:697 JLINK_IsHalted()  returns FALSE (0001ms, 1751ms total)
T4308 018:799 JLINK_IsHalted()  returns FALSE (0001ms, 1751ms total)
T4308 018:901 JLINK_IsHalted()  returns FALSE (0001ms, 1751ms total)
T4308 019:002 JLINK_IsHalted()  returns FALSE (0001ms, 1751ms total)
T4308 019:104 JLINK_IsHalted()  returns FALSE (0001ms, 1751ms total)
T7F1C 019:205 JLINK_ReadMemEx(0x0201BF2C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF2C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x5B0 (0016ms, 1766ms total)
T7F1C 019:221 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0001ms, 1767ms total)
T7F1C 019:222 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1768ms total)
T7F1C 019:223 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 1769ms total)
T7F1C 019:225 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0000ms, 1769ms total)
T7F1C 019:226 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 1771ms total)
T7F1C 019:227 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0001ms, 1772ms total)
T7F1C 019:228 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 41  returns 0x04 (0001ms, 1773ms total)
T7F1C 019:229 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 11  returns 0x01 (0001ms, 1774ms total)
T7F1C 019:230 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1775ms total)
T7F1C 019:231 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0002ms, 1777ms total)
T7F1C 019:233 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1778ms total)
T7F1C 019:234 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: FD DF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1779ms total)
T7F1C 019:235 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 07 00 00 00  returns 0x04 (0001ms, 1780ms total)
T7F1C 019:236 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 1781ms total)
T7F1C 019:237 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 1782ms total)
T7F1C 019:238 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 08 00  returns 0x02 (0001ms, 1783ms total)
T7F1C 019:239 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 1784ms total)
T7F1C 019:240 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0001ms, 1785ms total)
T7F1C 019:241 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 1786ms total)
T7F1C 019:242 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 00  returns 0x01 (0001ms, 1787ms total)
T7F1C 019:243 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1788ms total)
T7F1C 019:244 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0001ms, 1789ms total)
T7F1C 019:245 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 01  returns 0x01 (0001ms, 1790ms total)
T7F1C 019:246 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 01  returns 0x01 (0001ms, 1791ms total)
T7F1C 019:247 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 1792ms total)
T7F1C 019:248 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 1793ms total)
T7F1C 019:249 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 1794ms total)
T7F1C 019:250 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 1795ms total)
T7F1C 019:251 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 1796ms total)
T4308 019:253 JLINK_IsHalted()  returns FALSE (0000ms, 1796ms total)
T4308 019:354 JLINK_IsHalted()  returns FALSE (0001ms, 1797ms total)
T4308 019:456 JLINK_IsHalted()  returns FALSE (0001ms, 1797ms total)
T4308 019:557 JLINK_IsHalted()  returns FALSE (0000ms, 1796ms total)
T4308 019:658 JLINK_IsHalted()  returns FALSE (0001ms, 1797ms total)
T7F1C 019:760 JLINK_ReadMemEx(0x0201BF2C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF2C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x5B0 (0016ms, 1812ms total)
T7F1C 019:777 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0001ms, 1813ms total)
T7F1C 019:778 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1814ms total)
T7F1C 019:779 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 1815ms total)
T7F1C 019:781 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 1816ms total)
T7F1C 019:782 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 1817ms total)
T7F1C 019:783 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0001ms, 1818ms total)
T7F1C 019:784 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 41  returns 0x04 (0001ms, 1819ms total)
T7F1C 019:785 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 11  returns 0x01 (0001ms, 1820ms total)
T7F1C 019:786 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1821ms total)
T7F1C 019:787 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0001ms, 1822ms total)
T7F1C 019:788 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1823ms total)
T7F1C 019:789 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: FD DF 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 1825ms total)
T7F1C 019:791 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 07 00 00 00  returns 0x04 (0001ms, 1826ms total)
T7F1C 019:792 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 1827ms total)
T7F1C 019:793 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 1828ms total)
T7F1C 019:794 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 08 00  returns 0x02 (0001ms, 1829ms total)
T7F1C 019:795 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 1830ms total)
T7F1C 019:796 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0001ms, 1831ms total)
T7F1C 019:797 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 1832ms total)
T7F1C 019:798 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 00  returns 0x01 (0001ms, 1833ms total)
T7F1C 019:799 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1834ms total)
T7F1C 019:800 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0001ms, 1835ms total)
T7F1C 019:801 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 01  returns 0x01 (0001ms, 1836ms total)
T7F1C 019:802 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 01  returns 0x01 (0001ms, 1837ms total)
T7F1C 019:803 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 1838ms total)
T7F1C 019:804 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 1839ms total)
T7F1C 019:805 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 1840ms total)
T7F1C 019:806 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 1841ms total)
T7F1C 019:807 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0002ms, 1843ms total)
T4308 019:809 JLINK_IsHalted()  returns FALSE (0001ms, 1844ms total)
T4308 019:910 JLINK_IsHalted()  returns FALSE (0000ms, 1843ms total)
T4308 020:011 JLINK_IsHalted()  returns FALSE (0001ms, 1844ms total)
T4308 020:113 JLINK_IsHalted()  returns FALSE (0001ms, 1844ms total)
T4308 020:214 JLINK_IsHalted()  returns FALSE (0000ms, 1843ms total)
T7F1C 020:316 JLINK_ReadMemEx(0x0201BF2C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF2C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x5B0 (0016ms, 1859ms total)
T7F1C 020:333 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0001ms, 1860ms total)
T7F1C 020:334 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1861ms total)
T7F1C 020:335 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 1862ms total)
T7F1C 020:337 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 1863ms total)
T7F1C 020:338 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 1864ms total)
T7F1C 020:339 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0001ms, 1865ms total)
T7F1C 020:340 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 10 41  returns 0x04 (0001ms, 1866ms total)
T7F1C 020:341 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 11  returns 0x01 (0001ms, 1867ms total)
T7F1C 020:342 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 1869ms total)
T7F1C 020:344 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0001ms, 1870ms total)
T7F1C 020:345 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1870ms total)
T7F1C 020:346 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: FD DF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1872ms total)
T7F1C 020:347 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 07 00 00 00  returns 0x04 (0001ms, 1873ms total)
T7F1C 020:348 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 1874ms total)
T7F1C 020:349 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 1875ms total)
T7F1C 020:350 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 09 00  returns 0x02 (0001ms, 1876ms total)
T7F1C 020:351 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 1877ms total)
T7F1C 020:352 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0001ms, 1878ms total)
T7F1C 020:353 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 1879ms total)
T7F1C 020:354 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 00  returns 0x01 (0001ms, 1880ms total)
T7F1C 020:355 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1881ms total)
T7F1C 020:356 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0001ms, 1882ms total)
T7F1C 020:357 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 01  returns 0x01 (0001ms, 1883ms total)
T7F1C 020:358 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 01  returns 0x01 (0001ms, 1884ms total)
T7F1C 020:360 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 1885ms total)
T7F1C 020:361 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 1886ms total)
T7F1C 020:362 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 1887ms total)
T7F1C 020:363 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 1888ms total)
T7F1C 020:364 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 1889ms total)
T4308 020:365 JLINK_IsHalted()  returns FALSE (0001ms, 1890ms total)
T4308 020:468 JLINK_IsHalted()  returns FALSE (0001ms, 1890ms total)
T4308 020:569 JLINK_IsHalted()  returns FALSE (0001ms, 1890ms total)
T4308 020:671 JLINK_IsHalted()  returns FALSE (0000ms, 1889ms total)
T4308 020:773 JLINK_IsHalted()  returns FALSE (0000ms, 1889ms total)
T7F1C 020:874 JLINK_ReadMemEx(0x0201BF2C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF2C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x5B0 (0017ms, 1906ms total)
T7F1C 020:891 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0001ms, 1907ms total)
T7F1C 020:892 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1908ms total)
T7F1C 020:894 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 1909ms total)
T7F1C 020:895 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 1910ms total)
T7F1C 020:896 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 1911ms total)
T7F1C 020:897 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0001ms, 1912ms total)
T7F1C 020:898 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 10 41  returns 0x04 (0001ms, 1913ms total)
T7F1C 020:899 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 11  returns 0x01 (0001ms, 1914ms total)
T7F1C 020:900 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1915ms total)
T7F1C 020:901 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0001ms, 1916ms total)
T7F1C 020:902 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1917ms total)
T7F1C 020:903 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: FD DF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1918ms total)
T7F1C 020:904 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 07 00 00 00  returns 0x04 (0001ms, 1919ms total)
T7F1C 020:905 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 1920ms total)
T7F1C 020:906 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 1921ms total)
T7F1C 020:907 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 09 00  returns 0x02 (0001ms, 1922ms total)
T7F1C 020:909 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0000ms, 1922ms total)
T7F1C 020:909 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0001ms, 1923ms total)
T7F1C 020:910 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 1924ms total)
T7F1C 020:911 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 00  returns 0x01 (0002ms, 1926ms total)
T7F1C 020:913 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1927ms total)
T7F1C 020:914 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0001ms, 1928ms total)
T7F1C 020:915 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 01  returns 0x01 (0001ms, 1929ms total)
T7F1C 020:916 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 01  returns 0x01 (0001ms, 1930ms total)
T7F1C 020:918 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 1931ms total)
T7F1C 020:919 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 1932ms total)
T7F1C 020:920 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 1933ms total)
T7F1C 020:921 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 1934ms total)
T7F1C 020:922 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 1935ms total)
T4308 020:923 JLINK_IsHalted()  returns FALSE (0001ms, 1936ms total)
T4308 021:025 JLINK_IsHalted()  returns FALSE (0001ms, 1936ms total)
T4308 021:127 JLINK_IsHalted()  returns FALSE (0000ms, 1935ms total)
T4308 021:228 JLINK_IsHalted()  returns FALSE (0001ms, 1936ms total)
T4308 021:330 JLINK_IsHalted()  returns FALSE (0001ms, 1936ms total)
T7F1C 021:432 JLINK_ReadMemEx(0x0201BF2C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF2C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x5B0 (0016ms, 1951ms total)
T7F1C 021:448 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0001ms, 1952ms total)
T7F1C 021:449 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1953ms total)
T7F1C 021:450 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 1954ms total)
T7F1C 021:451 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 1955ms total)
T7F1C 021:452 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 1956ms total)
T7F1C 021:454 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0001ms, 1957ms total)
T7F1C 021:455 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 20 41  returns 0x04 (0001ms, 1958ms total)
T7F1C 021:456 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 11  returns 0x01 (0001ms, 1959ms total)
T7F1C 021:457 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 1961ms total)
T7F1C 021:459 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0001ms, 1962ms total)
T7F1C 021:460 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1963ms total)
T7F1C 021:461 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: FD DF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1964ms total)
T7F1C 021:462 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 0A 00 00 00  returns 0x04 (0001ms, 1965ms total)
T7F1C 021:463 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 1966ms total)
T7F1C 021:464 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 1967ms total)
T7F1C 021:465 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 0A 00  returns 0x02 (0001ms, 1968ms total)
T7F1C 021:466 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 1969ms total)
T7F1C 021:467 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0000ms, 1969ms total)
T7F1C 021:467 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 1970ms total)
T7F1C 021:468 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 01  returns 0x01 (0001ms, 1971ms total)
T7F1C 021:470 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1973ms total)
T7F1C 021:471 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0001ms, 1974ms total)
T7F1C 021:472 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 01  returns 0x01 (0002ms, 1976ms total)
T7F1C 021:474 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 01  returns 0x01 (0001ms, 1977ms total)
T7F1C 021:475 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 1978ms total)
T7F1C 021:476 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 1979ms total)
T7F1C 021:477 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 1980ms total)
T7F1C 021:478 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 1981ms total)
T7F1C 021:479 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 1982ms total)
T4308 021:480 JLINK_IsHalted()  returns FALSE (0001ms, 1983ms total)
T4308 021:583 JLINK_IsHalted()  returns FALSE (0001ms, 1983ms total)
T4308 021:684 JLINK_IsHalted()  returns FALSE (0001ms, 1983ms total)
T4308 021:786 JLINK_IsHalted()  returns FALSE (0001ms, 1983ms total)
T4308 021:887 JLINK_IsHalted()  returns FALSE (0001ms, 1983ms total)
T7F1C 021:988 JLINK_ReadMemEx(0x0201BF2C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF2C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x5B0 (0016ms, 1998ms total)
T7F1C 022:005 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0001ms, 1999ms total)
T7F1C 022:006 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 2000ms total)
T7F1C 022:007 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2001ms total)
T7F1C 022:008 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 2002ms total)
T7F1C 022:009 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2003ms total)
T7F1C 022:011 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0001ms, 2004ms total)
T7F1C 022:012 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 20 41  returns 0x04 (0001ms, 2005ms total)
T7F1C 022:013 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 11  returns 0x01 (0001ms, 2006ms total)
T7F1C 022:014 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 2007ms total)
T7F1C 022:015 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0001ms, 2008ms total)
T7F1C 022:016 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2009ms total)
T7F1C 022:017 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: FD DF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 2010ms total)
T7F1C 022:018 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 0A 00 00 00  returns 0x04 (0001ms, 2011ms total)
T7F1C 022:019 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 2012ms total)
T7F1C 022:020 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 2013ms total)
T7F1C 022:021 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 0B 00  returns 0x02 (0001ms, 2014ms total)
T7F1C 022:022 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 2015ms total)
T7F1C 022:023 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0001ms, 2016ms total)
T7F1C 022:024 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 2017ms total)
T7F1C 022:025 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 01  returns 0x01 (0001ms, 2018ms total)
T7F1C 022:026 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 2020ms total)
T7F1C 022:028 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0001ms, 2021ms total)
T7F1C 022:029 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 01  returns 0x01 (0001ms, 2022ms total)
T7F1C 022:030 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 01  returns 0x01 (0001ms, 2023ms total)
T7F1C 022:031 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 2024ms total)
T7F1C 022:032 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 2025ms total)
T7F1C 022:034 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 2026ms total)
T7F1C 022:035 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 2027ms total)
T7F1C 022:036 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 2028ms total)
T4308 022:037 JLINK_IsHalted()  returns FALSE (0001ms, 2029ms total)
T4308 022:140 JLINK_IsHalted()  returns FALSE (0000ms, 2028ms total)
T4308 022:242 JLINK_IsHalted()  returns FALSE (0001ms, 2029ms total)
T4308 022:344 JLINK_IsHalted()  returns FALSE (0001ms, 2029ms total)
T4308 022:446 JLINK_IsHalted()  returns FALSE (0001ms, 2029ms total)
T7F1C 022:547 JLINK_ReadMemEx(0x0201BF2C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF2C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x5B0 (0015ms, 2043ms total)
T7F1C 022:563 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0001ms, 2044ms total)
T7F1C 022:564 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 2045ms total)
T7F1C 022:565 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2046ms total)
T7F1C 022:566 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 2047ms total)
T7F1C 022:567 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2048ms total)
T7F1C 022:568 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0001ms, 2049ms total)
T7F1C 022:569 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 30 41  returns 0x04 (0002ms, 2051ms total)
T7F1C 022:571 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 11  returns 0x01 (0001ms, 2052ms total)
T7F1C 022:572 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 2053ms total)
T7F1C 022:573 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0001ms, 2054ms total)
T7F1C 022:574 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2055ms total)
T7F1C 022:575 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: FD DF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 2056ms total)
T7F1C 022:576 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 0A 00 00 00  returns 0x04 (0001ms, 2057ms total)
T7F1C 022:577 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 2058ms total)
T7F1C 022:578 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0002ms, 2060ms total)
T7F1C 022:580 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 0B 00  returns 0x02 (0001ms, 2061ms total)
T7F1C 022:581 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 2062ms total)
T7F1C 022:582 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0001ms, 2063ms total)
T7F1C 022:583 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 2064ms total)
T7F1C 022:584 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 01  returns 0x01 (0001ms, 2065ms total)
T7F1C 022:585 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2066ms total)
T7F1C 022:586 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0001ms, 2067ms total)
T7F1C 022:587 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 01  returns 0x01 (0001ms, 2068ms total)
T7F1C 022:588 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 01  returns 0x01 (0001ms, 2069ms total)
T7F1C 022:589 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 2070ms total)
T7F1C 022:590 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 2071ms total)
T7F1C 022:593 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 2072ms total)
T7F1C 022:594 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 2073ms total)
T7F1C 022:595 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 2074ms total)
T4308 022:596 JLINK_IsHalted()  returns FALSE (0001ms, 2075ms total)
T4308 022:698 JLINK_IsHalted()  returns FALSE (0001ms, 2075ms total)
T7F1C 022:766 JLINK_SetBPEx(Addr = 0x000099B6, Type = 0xFFFFFFF2) -- CPU is running -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002008)  returns 0x00000002 (0002ms, 2076ms total)
T4308 022:799 JLINK_IsHalted()  returns FALSE (0001ms, 2077ms total)
T4308 022:901 JLINK_IsHalted()  returns FALSE (0001ms, 2077ms total)
T4308 023:003 JLINK_IsHalted()  returns FALSE (0000ms, 2076ms total)
T7F1C 023:104 JLINK_ReadMemEx(0x0201BF2C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF2C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x5B0 (0015ms, 2091ms total)
T7F1C 023:122 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0001ms, 2092ms total)
T7F1C 023:123 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 2093ms total)
T7F1C 023:124 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2094ms total)
T7F1C 023:125 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 2095ms total)
T7F1C 023:126 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2096ms total)
T7F1C 023:127 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0001ms, 2097ms total)
T7F1C 023:128 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 40 41  returns 0x04 (0001ms, 2098ms total)
T7F1C 023:129 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 11  returns 0x01 (0001ms, 2099ms total)
T7F1C 023:130 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 2100ms total)
T7F1C 023:131 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0001ms, 2101ms total)
T7F1C 023:132 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2102ms total)
T7F1C 023:133 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: FD DF 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 2104ms total)
T7F1C 023:135 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 0C 00 00 00  returns 0x04 (0001ms, 2105ms total)
T7F1C 023:136 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 2106ms total)
T7F1C 023:137 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 2107ms total)
T7F1C 023:138 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 0C 00  returns 0x02 (0001ms, 2108ms total)
T7F1C 023:139 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 2109ms total)
T7F1C 023:140 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0001ms, 2110ms total)
T7F1C 023:141 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 2111ms total)
T7F1C 023:142 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 00  returns 0x01 (0001ms, 2112ms total)
T7F1C 023:143 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2113ms total)
T7F1C 023:144 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0001ms, 2114ms total)
T7F1C 023:145 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 01  returns 0x01 (0001ms, 2115ms total)
T7F1C 023:146 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 01  returns 0x01 (0001ms, 2116ms total)
T7F1C 023:148 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 2117ms total)
T7F1C 023:149 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 2118ms total)
T7F1C 023:152 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 2119ms total)
T7F1C 023:153 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0002ms, 2121ms total)
T7F1C 023:155 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0000ms, 2121ms total)
T4308 023:155 JLINK_IsHalted()  returns FALSE (0001ms, 2122ms total)
T4308 023:258 JLINK_IsHalted()  returns FALSE (0001ms, 2122ms total)
T4308 023:359 JLINK_IsHalted()  returns FALSE (0001ms, 2122ms total)
T4308 023:461 JLINK_IsHalted()  returns FALSE (0001ms, 2122ms total)
T4308 023:563 JLINK_IsHalted()  returns FALSE (0001ms, 2122ms total)
T7F1C 023:666 JLINK_ReadMemEx(0x0201BF2C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF2C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x5B0 (0016ms, 2137ms total)
T7F1C 023:683 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0001ms, 2138ms total)
T7F1C 023:684 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 2139ms total)
T7F1C 023:685 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2140ms total)
T7F1C 023:686 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 2141ms total)
T7F1C 023:687 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2142ms total)
T7F1C 023:688 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0001ms, 2143ms total)
T7F1C 023:689 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 40 41  returns 0x04 (0001ms, 2144ms total)
T7F1C 023:690 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 11  returns 0x01 (0001ms, 2145ms total)
T7F1C 023:691 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 2146ms total)
T7F1C 023:692 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0001ms, 2147ms total)
T7F1C 023:693 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2148ms total)
T7F1C 023:694 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: FD DF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 2149ms total)
T7F1C 023:695 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 0C 00 00 00  returns 0x04 (0001ms, 2150ms total)
T7F1C 023:696 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 2151ms total)
T7F1C 023:697 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 2152ms total)
T7F1C 023:698 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 0C 00  returns 0x02 (0001ms, 2153ms total)
T7F1C 023:699 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 2154ms total)
T7F1C 023:700 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0001ms, 2155ms total)
T7F1C 023:701 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 2156ms total)
T7F1C 023:702 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 00  returns 0x01 (0001ms, 2157ms total)
T7F1C 023:703 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 2159ms total)
T7F1C 023:705 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0001ms, 2160ms total)
T7F1C 023:706 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 01  returns 0x01 (0001ms, 2161ms total)
T7F1C 023:707 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 01  returns 0x01 (0001ms, 2162ms total)
T7F1C 023:708 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 2163ms total)
T7F1C 023:709 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 2164ms total)
T7F1C 023:710 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 2165ms total)
T7F1C 023:711 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 2166ms total)
T7F1C 023:712 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 2167ms total)
T4308 023:713 JLINK_IsHalted()  returns FALSE (0001ms, 2168ms total)
T4308 023:816 JLINK_IsHalted()  returns FALSE (0001ms, 2168ms total)
T4308 023:918 JLINK_IsHalted()  returns FALSE (0001ms, 2168ms total)
T4308 024:020 JLINK_IsHalted()  returns FALSE (0001ms, 2168ms total)
T4308 024:122 JLINK_IsHalted()  returns FALSE (0001ms, 2168ms total)
T7F1C 024:223 JLINK_ReadMemEx(0x0201BF2C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF2C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x5B0 (0016ms, 2183ms total)
T7F1C 024:242 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0001ms, 2184ms total)
T7F1C 024:243 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 2185ms total)
T7F1C 024:244 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2186ms total)
T7F1C 024:245 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0002ms, 2188ms total)
T7F1C 024:247 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2189ms total)
T7F1C 024:248 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0001ms, 2190ms total)
T7F1C 024:249 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 50 41  returns 0x04 (0001ms, 2191ms total)
T7F1C 024:250 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 11  returns 0x01 (0001ms, 2192ms total)
T7F1C 024:251 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 2193ms total)
T7F1C 024:252 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0001ms, 2194ms total)
T7F1C 024:253 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2195ms total)
T7F1C 024:254 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: FD DF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 2196ms total)
T7F1C 024:255 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 0C 00 00 00  returns 0x04 (0001ms, 2197ms total)
T7F1C 024:256 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 2198ms total)
T7F1C 024:257 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 2199ms total)
T7F1C 024:258 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 0D 00  returns 0x02 (0001ms, 2200ms total)
T7F1C 024:259 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 2201ms total)
T7F1C 024:260 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0001ms, 2202ms total)
T7F1C 024:261 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 2203ms total)
T7F1C 024:262 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 00  returns 0x01 (0001ms, 2204ms total)
T7F1C 024:263 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2205ms total)
T7F1C 024:264 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0001ms, 2206ms total)
T7F1C 024:265 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 01  returns 0x01 (0001ms, 2207ms total)
T7F1C 024:266 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 01  returns 0x01 (0001ms, 2208ms total)
T7F1C 024:267 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 2209ms total)
T7F1C 024:268 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0002ms, 2211ms total)
T7F1C 024:270 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 2212ms total)
T7F1C 024:271 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 2213ms total)
T7F1C 024:273 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0000ms, 2214ms total)
T4308 024:274 JLINK_IsHalted()  returns FALSE (0001ms, 2216ms total)
T4308 024:375 JLINK_IsHalted()  returns FALSE (0001ms, 2216ms total)
T4308 024:477 JLINK_IsHalted()  returns FALSE (0001ms, 2216ms total)
T7F1C 024:532 JLINK_ClrBPEx(BPHandle = 0x00000002) -- CPU is running -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002014)  returns 0x00 (0005ms, 2220ms total)
T4308 024:579 JLINK_IsHalted()  returns FALSE (0000ms, 2220ms total)
T4308 024:681 JLINK_IsHalted()  returns FALSE (0001ms, 2221ms total)
T7F1C 024:783 JLINK_ReadMemEx(0x0201BF2C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF2C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x5B0 (0016ms, 2236ms total)
T7F1C 024:801 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0001ms, 2237ms total)
T7F1C 024:802 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 2238ms total)
T7F1C 024:803 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2239ms total)
T7F1C 024:804 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 2240ms total)
T7F1C 024:806 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0002ms, 2243ms total)
T7F1C 024:808 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0001ms, 2244ms total)
T7F1C 024:809 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 50 41  returns 0x04 (0001ms, 2245ms total)
T7F1C 024:810 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 11  returns 0x01 (0001ms, 2246ms total)
T7F1C 024:811 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 2247ms total)
T7F1C 024:812 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0001ms, 2248ms total)
T7F1C 024:813 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2249ms total)
T7F1C 024:814 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: FD DF 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 2251ms total)
T7F1C 024:816 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 0C 00 00 00  returns 0x04 (0001ms, 2252ms total)
T7F1C 024:817 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 2253ms total)
T7F1C 024:818 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 2254ms total)
T7F1C 024:819 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 0D 00  returns 0x02 (0001ms, 2255ms total)
T7F1C 024:820 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 2256ms total)
T7F1C 024:821 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0001ms, 2257ms total)
T7F1C 024:822 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 2258ms total)
T7F1C 024:823 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 00  returns 0x01 (0001ms, 2259ms total)
T7F1C 024:824 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2260ms total)
T7F1C 024:825 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0001ms, 2261ms total)
T7F1C 024:826 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 01  returns 0x01 (0001ms, 2262ms total)
T7F1C 024:827 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 01  returns 0x01 (0001ms, 2263ms total)
T7F1C 024:829 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 2264ms total)
T7F1C 024:830 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 2265ms total)
T7F1C 024:831 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 2266ms total)
T7F1C 024:832 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 2267ms total)
T7F1C 024:833 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 2268ms total)
T4308 024:834 JLINK_IsHalted()  returns FALSE (0001ms, 2269ms total)
T4308 024:936 JLINK_IsHalted()  returns FALSE (0001ms, 2269ms total)
T4308 025:038 JLINK_IsHalted()  returns FALSE (0001ms, 2269ms total)
T4308 025:139 JLINK_IsHalted()  returns FALSE (0000ms, 2268ms total)
T4308 025:241 JLINK_IsHalted()  returns FALSE (0001ms, 2269ms total)
T7F1C 025:342 JLINK_ReadMemEx(0x0201BF2C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF2C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x5B0 (0017ms, 2285ms total)
T7F1C 025:359 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0001ms, 2286ms total)
T7F1C 025:360 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 2287ms total)
T7F1C 025:361 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2288ms total)
T7F1C 025:364 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 2289ms total)
T7F1C 025:365 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2290ms total)
T7F1C 025:366 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0001ms, 2291ms total)
T7F1C 025:367 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 60 41  returns 0x04 (0001ms, 2292ms total)
T7F1C 025:368 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 11  returns 0x01 (0001ms, 2293ms total)
T7F1C 025:369 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 2294ms total)
T7F1C 025:370 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0001ms, 2295ms total)
T7F1C 025:371 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2296ms total)
T7F1C 025:372 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: FD DF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 2297ms total)
T7F1C 025:373 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 0C 00 00 00  returns 0x04 (0001ms, 2298ms total)
T7F1C 025:374 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 2299ms total)
T7F1C 025:375 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 2300ms total)
T7F1C 025:376 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 0E 00  returns 0x02 (0001ms, 2301ms total)
T7F1C 025:378 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 2302ms total)
T7F1C 025:379 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0001ms, 2303ms total)
T7F1C 025:380 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 2304ms total)
T7F1C 025:381 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 00  returns 0x01 (0001ms, 2305ms total)
T7F1C 025:382 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2306ms total)
T7F1C 025:383 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0001ms, 2307ms total)
T7F1C 025:384 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 01  returns 0x01 (0001ms, 2308ms total)
T7F1C 025:385 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 01  returns 0x01 (0001ms, 2309ms total)
T7F1C 025:386 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 2310ms total)
T7F1C 025:387 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 2311ms total)
T7F1C 025:388 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 2312ms total)
T7F1C 025:389 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 2313ms total)
T7F1C 025:390 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 2314ms total)
T4308 025:392 JLINK_IsHalted()  returns FALSE (0000ms, 2314ms total)
T4308 025:494 JLINK_IsHalted()  returns FALSE (0001ms, 2315ms total)
T4308 025:596 JLINK_IsHalted()  returns FALSE (0001ms, 2315ms total)
T4308 025:698 JLINK_IsHalted()  returns FALSE (0001ms, 2315ms total)
T4308 025:799 JLINK_IsHalted()  returns FALSE (0001ms, 2315ms total)
T7F1C 025:901 JLINK_ReadMemEx(0x0201BF2C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF2C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x5B0 (0015ms, 2329ms total)
T7F1C 025:917 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0001ms, 2330ms total)
T7F1C 025:918 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 2331ms total)
T7F1C 025:919 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2332ms total)
T7F1C 025:920 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 2333ms total)
T7F1C 025:922 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0000ms, 2333ms total)
T7F1C 025:922 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0002ms, 2335ms total)
T7F1C 025:924 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 60 41  returns 0x04 (0001ms, 2336ms total)
T7F1C 025:925 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 11  returns 0x01 (0001ms, 2337ms total)
T7F1C 025:926 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 2338ms total)
T7F1C 025:927 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0001ms, 2339ms total)
T7F1C 025:928 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2340ms total)
T7F1C 025:929 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: FD DF 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 2342ms total)
T7F1C 025:931 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 0C 00 00 00  returns 0x04 (0001ms, 2343ms total)
T7F1C 025:932 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 2344ms total)
T7F1C 025:933 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 2345ms total)
T7F1C 025:934 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 0E 00  returns 0x02 (0001ms, 2346ms total)
T7F1C 025:935 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 2347ms total)
T7F1C 025:936 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0001ms, 2348ms total)
T7F1C 025:937 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 2349ms total)
T7F1C 025:938 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 00  returns 0x01 (0001ms, 2350ms total)
T7F1C 025:939 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2351ms total)
T7F1C 025:940 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0001ms, 2352ms total)
T7F1C 025:941 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 01  returns 0x01 (0001ms, 2353ms total)
T7F1C 025:942 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 01  returns 0x01 (0001ms, 2354ms total)
T7F1C 025:943 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 2355ms total)
T7F1C 025:944 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 2356ms total)
T7F1C 025:945 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 2357ms total)
T7F1C 025:946 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 2358ms total)
T7F1C 025:947 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 2359ms total)
T4308 025:948 JLINK_IsHalted()  returns FALSE (0001ms, 2360ms total)
T7F1C 025:991 JLINK_SetBPEx(Addr = 0x00009A30, Type = 0xFFFFFFF2) -- CPU is running -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002008)  returns 0x00000003 (0002ms, 2361ms total)
T4308 026:051 JLINK_IsHalted()  returns TRUE (0004ms, 2365ms total)
T4308 026:055 JLINK_Halt()  returns 0x00 (0000ms, 2361ms total)
T4308 026:055 JLINK_IsHalted()  returns TRUE (0000ms, 2361ms total)
T4308 026:055 JLINK_IsHalted()  returns TRUE (0000ms, 2361ms total)
T4308 026:055 JLINK_IsHalted()  returns TRUE (0000ms, 2361ms total)
T4308 026:055 JLINK_ReadReg(R15 (PC))  returns 0x00009A30 (0000ms, 2361ms total)
T4308 026:055 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 2361ms total)
T4308 026:055 JLINK_ClrBPEx(BPHandle = 0x00000003)  returns 0x00 (0000ms, 2361ms total)
T4308 026:055 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0001ms, 2362ms total)
T4308 026:056 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 2363ms total)
T4308 026:057 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0001ms, 2364ms total)
T4308 026:058 JLINK_ReadReg(R0)  returns 0x00000001 (0000ms, 2364ms total)
T4308 026:058 JLINK_ReadReg(R1)  returns 0x00000001 (0000ms, 2364ms total)
T4308 026:058 JLINK_ReadReg(R2)  returns 0x00000018 (0000ms, 2364ms total)
T4308 026:058 JLINK_ReadReg(R3)  returns 0x00000008 (0000ms, 2364ms total)
T4308 026:058 JLINK_ReadReg(R4)  returns 0x02019748 (0000ms, 2364ms total)
T4308 026:058 JLINK_ReadReg(R5)  returns 0x00000000 (0001ms, 2365ms total)
T4308 026:059 JLINK_ReadReg(R6)  returns 0x0201901C (0000ms, 2365ms total)
T4308 026:059 JLINK_ReadReg(R7)  returns 0x00000000 (0000ms, 2365ms total)
T4308 026:059 JLINK_ReadReg(R8)  returns 0xFBEAB6D7 (0000ms, 2365ms total)
T4308 026:059 JLINK_ReadReg(R9)  returns 0x164B985F (0000ms, 2365ms total)
T4308 026:059 JLINK_ReadReg(R10)  returns 0x9F53C30D (0000ms, 2365ms total)
T4308 026:059 JLINK_ReadReg(R11)  returns 0x1FCB9C8A (0000ms, 2365ms total)
T4308 026:059 JLINK_ReadReg(R12)  returns 0x00000003 (0000ms, 2365ms total)
T4308 026:059 JLINK_ReadReg(R13 (SP))  returns 0x0202F7F0 (0000ms, 2365ms total)
T4308 026:059 JLINK_ReadReg(R14)  returns 0x00002867 (0000ms, 2365ms total)
T4308 026:059 JLINK_ReadReg(R15 (PC))  returns 0x00009A30 (0000ms, 2365ms total)
T4308 026:059 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 2365ms total)
T4308 026:059 JLINK_ReadReg(MSP)  returns 0x0202F7F0 (0000ms, 2365ms total)
T4308 026:059 JLINK_ReadReg(PSP)  returns 0x7D9496A8 (0000ms, 2365ms total)
T4308 026:059 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 2365ms total)
T7F1C 026:065 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0002ms, 2367ms total)
T7F1C 026:067 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 2368ms total)
T7F1C 026:068 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2369ms total)
T7F1C 026:069 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 2370ms total)
T7F1C 026:070 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2371ms total)
T7F1C 026:071 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0001ms, 2372ms total)
T7F1C 026:072 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 60 41  returns 0x04 (0001ms, 2373ms total)
T7F1C 026:073 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 11  returns 0x01 (0001ms, 2374ms total)
T7F1C 026:074 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 2375ms total)
T7F1C 026:075 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0001ms, 2376ms total)
T7F1C 026:076 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0002ms, 2378ms total)
T7F1C 026:078 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: FD DF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 2379ms total)
T7F1C 026:079 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 0C 00 00 00  returns 0x04 (0001ms, 2380ms total)
T7F1C 026:080 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 2381ms total)
T7F1C 026:081 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 2382ms total)
T7F1C 026:082 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 0E 00  returns 0x02 (0001ms, 2383ms total)
T7F1C 026:083 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 2384ms total)
T7F1C 026:084 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0001ms, 2385ms total)
T7F1C 026:085 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 2386ms total)
T7F1C 026:086 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 00  returns 0x01 (0001ms, 2387ms total)
T7F1C 026:087 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2388ms total)
T7F1C 026:088 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0001ms, 2389ms total)
T7F1C 026:089 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 01  returns 0x01 (0001ms, 2390ms total)
T7F1C 026:090 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 01  returns 0x01 (0001ms, 2391ms total)
T7F1C 026:093 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0000ms, 2391ms total)
T7F1C 026:093 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 2392ms total)
T7F1C 026:095 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 2393ms total)
T7F1C 026:096 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 2394ms total)
T7F1C 026:097 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 2395ms total)
T7F1C 026:098 JLINK_ReadMemEx(0x0201BF2C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF2C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x5B0 (0016ms, 2411ms total)
T7F1C 026:116 JLINK_ReadMemEx(0x00009A26, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00009A00) -- Updating C cache (64 bytes @ 0x00009A00) -- Read from C cache (2 bytes @ 0x00009A26) - Data: 01 F0  returns 0x02 (0002ms, 2413ms total)
T7F1C 026:118 JLINK_ReadMemEx(0x00009A28, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00009A40) -- Updating C cache (64 bytes @ 0x00009A40) -- Read from C cache (60 bytes @ 0x00009A28) - Data: 81 FD 31 78 00 28 02 D0 00 29 C5 D1 B7 E7 01 29 ...  returns 0x3C (0001ms, 2414ms total)
T7F1C 026:119 JLINK_ReadMemEx(0x00009A28, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009A28) - Data: 81 FD  returns 0x02 (0000ms, 2414ms total)
T7F1C 026:119 JLINK_ReadMemEx(0x00009A2A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009A2A) - Data: 31 78  returns 0x02 (0000ms, 2414ms total)
T7F1C 026:119 JLINK_ReadMemEx(0x00009A2C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009A2C) - Data: 00 28 02 D0 00 29 C5 D1 B7 E7 01 29 C2 D1 37 70 ...  returns 0x3C (0000ms, 2414ms total)
T7F1C 026:119 JLINK_ReadMemEx(0x00009A2C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009A2C) - Data: 00 28  returns 0x02 (0001ms, 2415ms total)
T7F1C 026:120 JLINK_ReadMemEx(0x00009A2C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009A2C) - Data: 00 28 02 D0 00 29 C5 D1 B7 E7 01 29 C2 D1 37 70 ...  returns 0x3C (0000ms, 2415ms total)
T7F1C 026:120 JLINK_ReadMemEx(0x00009A2C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009A2C) - Data: 00 28  returns 0x02 (0000ms, 2415ms total)
T7F1C 026:120 JLINK_ReadMemEx(0x00009A2E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009A2E) - Data: 02 D0  returns 0x02 (0000ms, 2415ms total)
T7F1C 026:120 JLINK_ReadMemEx(0x00009A2E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009A2E) - Data: 02 D0  returns 0x02 (0000ms, 2415ms total)
T7F1C 026:120 JLINK_ReadMemEx(0x00009A30, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009A30) - Data: 00 29 C5 D1 B7 E7 01 29 C2 D1 37 70 51 48 C7 83 ...  returns 0x3C (0000ms, 2415ms total)
T7F1C 026:120 JLINK_ReadMemEx(0x00009A30, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009A30) - Data: 00 29  returns 0x02 (0000ms, 2415ms total)
T4308 028:446 JLINK_ReadMemEx(0x00009A30, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009A30) - Data: 00 29  returns 0x02 (0000ms, 2415ms total)
T4308 028:446 JLINK_Go() -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) (0004ms, 2419ms total)
T4308 028:550 JLINK_IsHalted()  returns FALSE (0000ms, 2419ms total)
T4308 028:653 JLINK_IsHalted()  returns FALSE (0000ms, 2419ms total)
T4308 028:755 JLINK_IsHalted()  returns FALSE (0001ms, 2420ms total)
T4308 028:856 JLINK_IsHalted()  returns FALSE (0000ms, 2419ms total)
T4308 028:958 JLINK_IsHalted()  returns FALSE (0001ms, 2420ms total)
T7F1C 029:060 JLINK_ReadMemEx(0x0201BF2C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF2C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x5B0 (0016ms, 2435ms total)
T7F1C 029:077 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0001ms, 2436ms total)
T7F1C 029:078 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 2437ms total)
T7F1C 029:079 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2438ms total)
T7F1C 029:080 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 2439ms total)
T7F1C 029:082 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2441ms total)
T7F1C 029:084 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0001ms, 2442ms total)
T7F1C 029:085 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 80 41  returns 0x04 (0001ms, 2443ms total)
T7F1C 029:086 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 11  returns 0x01 (0001ms, 2444ms total)
T7F1C 029:087 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 2445ms total)
T7F1C 029:088 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0001ms, 2446ms total)
T7F1C 029:089 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2447ms total)
T7F1C 029:091 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: FD DF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 2448ms total)
T7F1C 029:092 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 0F 00 00 00  returns 0x04 (0001ms, 2449ms total)
T7F1C 029:093 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 2450ms total)
T7F1C 029:094 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 2451ms total)
T7F1C 029:095 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 10 00  returns 0x02 (0001ms, 2452ms total)
T7F1C 029:096 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 2453ms total)
T7F1C 029:097 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0000ms, 2453ms total)
T7F1C 029:097 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 2454ms total)
T7F1C 029:098 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 01  returns 0x01 (0002ms, 2456ms total)
T7F1C 029:100 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2457ms total)
T7F1C 029:101 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0001ms, 2458ms total)
T7F1C 029:102 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 01  returns 0x01 (0001ms, 2459ms total)
T7F1C 029:103 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 01  returns 0x01 (0001ms, 2460ms total)
T7F1C 029:104 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 2461ms total)
T7F1C 029:105 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 2462ms total)
T7F1C 029:106 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 2463ms total)
T7F1C 029:107 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 2464ms total)
T7F1C 029:108 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 2465ms total)
T4308 029:110 JLINK_IsHalted()  returns FALSE (0001ms, 2466ms total)
T4308 029:212 JLINK_IsHalted()  returns FALSE (0000ms, 2465ms total)
T4308 029:313 JLINK_IsHalted()  returns FALSE (0001ms, 2466ms total)
T4308 029:415 JLINK_IsHalted()  returns FALSE (0001ms, 2466ms total)
T4308 029:516 JLINK_IsHalted()  returns FALSE (0000ms, 2465ms total)
T7F1C 029:618 JLINK_ReadMemEx(0x0201BF2C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF2C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x5B0 (0016ms, 2481ms total)
T7F1C 029:635 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0001ms, 2482ms total)
T7F1C 029:636 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0000ms, 2482ms total)
T7F1C 029:636 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2483ms total)
T7F1C 029:637 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 2484ms total)
T7F1C 029:639 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2485ms total)
T7F1C 029:640 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0001ms, 2486ms total)
T7F1C 029:641 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 80 41  returns 0x04 (0001ms, 2487ms total)
T7F1C 029:642 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 11  returns 0x01 (0001ms, 2488ms total)
T7F1C 029:643 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 2489ms total)
T7F1C 029:644 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0001ms, 2490ms total)
T7F1C 029:645 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2491ms total)
T7F1C 029:646 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: FD DF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 2492ms total)
T7F1C 029:648 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 0F 00 00 00  returns 0x04 (0000ms, 2493ms total)
T7F1C 029:649 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 2494ms total)
T7F1C 029:650 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 2495ms total)
T7F1C 029:651 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 10 00  returns 0x02 (0001ms, 2496ms total)
T7F1C 029:652 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 2497ms total)
T7F1C 029:653 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0001ms, 2498ms total)
T7F1C 029:654 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0000ms, 2498ms total)
T7F1C 029:654 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 01  returns 0x01 (0002ms, 2500ms total)
T7F1C 029:656 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2501ms total)
T7F1C 029:657 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0001ms, 2502ms total)
T7F1C 029:658 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 01  returns 0x01 (0001ms, 2503ms total)
T7F1C 029:659 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 01  returns 0x01 (0002ms, 2505ms total)
T7F1C 029:662 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 2506ms total)
T7F1C 029:663 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 2507ms total)
T7F1C 029:665 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 2508ms total)
T7F1C 029:667 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 2509ms total)
T7F1C 029:668 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 2510ms total)
T4308 029:669 JLINK_IsHalted()  returns FALSE (0000ms, 2510ms total)
T4308 029:770 JLINK_IsHalted()  returns FALSE (0001ms, 2511ms total)
T4308 029:872 JLINK_IsHalted()  returns FALSE (0001ms, 2511ms total)
T4308 029:974 JLINK_IsHalted()  returns FALSE (0001ms, 2511ms total)
T4308 030:076 JLINK_IsHalted()  returns FALSE (0001ms, 2511ms total)
T7F1C 030:177 JLINK_ReadMemEx(0x0201BF2C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF2C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x5B0 (0015ms, 2525ms total)
T7F1C 030:193 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0002ms, 2527ms total)
T7F1C 030:195 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 2528ms total)
T7F1C 030:196 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2529ms total)
T7F1C 030:197 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 2530ms total)
T7F1C 030:198 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2531ms total)
T7F1C 030:200 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0001ms, 2533ms total)
T7F1C 030:201 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 88 41  returns 0x04 (0001ms, 2534ms total)
T7F1C 030:202 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 11  returns 0x01 (0001ms, 2535ms total)
T7F1C 030:203 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 2536ms total)
T7F1C 030:204 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0001ms, 2537ms total)
T7F1C 030:205 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2538ms total)
T7F1C 030:206 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: FD DF 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 2540ms total)
T7F1C 030:208 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 11 00 00 00  returns 0x04 (0001ms, 2541ms total)
T7F1C 030:209 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 2542ms total)
T7F1C 030:210 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 2543ms total)
T7F1C 030:211 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 11 00  returns 0x02 (0001ms, 2544ms total)
T7F1C 030:212 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 2545ms total)
T7F1C 030:213 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0001ms, 2546ms total)
T7F1C 030:214 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 2547ms total)
T7F1C 030:215 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 00  returns 0x01 (0001ms, 2548ms total)
T7F1C 030:216 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2549ms total)
T7F1C 030:217 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0001ms, 2550ms total)
T7F1C 030:218 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 01  returns 0x01 (0001ms, 2551ms total)
T7F1C 030:219 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 01  returns 0x01 (0001ms, 2552ms total)
T7F1C 030:221 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 2553ms total)
T7F1C 030:222 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 2554ms total)
T7F1C 030:223 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 2555ms total)
T7F1C 030:224 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 2556ms total)
T7F1C 030:225 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 2557ms total)
T4308 030:227 JLINK_IsHalted()  returns FALSE (0001ms, 2558ms total)
T4308 030:329 JLINK_IsHalted()  returns FALSE (0001ms, 2558ms total)
T4308 030:431 JLINK_IsHalted()  returns FALSE (0001ms, 2558ms total)
T4308 030:532 JLINK_IsHalted()  returns FALSE (0000ms, 2557ms total)
T4308 030:634 JLINK_IsHalted()  returns FALSE (0000ms, 2557ms total)
T7F1C 030:736 JLINK_ReadMemEx(0x0201BF2C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF2C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x5B0 (0015ms, 2572ms total)
T7F1C 030:752 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0001ms, 2573ms total)
T7F1C 030:753 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 2574ms total)
T7F1C 030:754 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2575ms total)
T7F1C 030:756 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 2576ms total)
T7F1C 030:757 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2577ms total)
T7F1C 030:758 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0001ms, 2578ms total)
T7F1C 030:759 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 88 41  returns 0x04 (0001ms, 2579ms total)
T7F1C 030:760 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 11  returns 0x01 (0001ms, 2580ms total)
T7F1C 030:761 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 2582ms total)
T7F1C 030:763 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0001ms, 2583ms total)
T7F1C 030:764 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2584ms total)
T7F1C 030:765 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: FD DF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 2585ms total)
T7F1C 030:766 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 11 00 00 00  returns 0x04 (0001ms, 2586ms total)
T7F1C 030:767 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 2587ms total)
T7F1C 030:768 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 2588ms total)
T7F1C 030:769 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 11 00  returns 0x02 (0001ms, 2589ms total)
T7F1C 030:770 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 2590ms total)
T7F1C 030:771 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0001ms, 2591ms total)
T7F1C 030:772 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 2592ms total)
T7F1C 030:773 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 00  returns 0x01 (0001ms, 2593ms total)
T7F1C 030:774 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2594ms total)
T7F1C 030:775 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0001ms, 2595ms total)
T7F1C 030:776 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 01  returns 0x01 (0001ms, 2596ms total)
T7F1C 030:777 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 01  returns 0x01 (0001ms, 2597ms total)
T7F1C 030:778 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 2598ms total)
T7F1C 030:779 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 2599ms total)
T7F1C 030:780 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 2600ms total)
T7F1C 030:781 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 2601ms total)
T7F1C 030:782 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 2602ms total)
T4308 030:784 JLINK_IsHalted()  returns FALSE (0001ms, 2603ms total)
T4308 030:886 JLINK_IsHalted()  returns FALSE (0001ms, 2603ms total)
T4308 030:988 JLINK_IsHalted()  returns FALSE (0000ms, 2602ms total)
T4308 031:089 JLINK_IsHalted()  returns FALSE (0001ms, 2603ms total)
T4308 031:191 JLINK_IsHalted()  returns FALSE (0001ms, 2603ms total)
T7F1C 031:293 JLINK_ReadMemEx(0x0201BF2C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF2C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x5B0 (0016ms, 2618ms total)
T7F1C 031:310 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0001ms, 2620ms total)
T7F1C 031:311 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 2621ms total)
T7F1C 031:312 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2622ms total)
T7F1C 031:314 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 2623ms total)
T7F1C 031:316 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2624ms total)
T7F1C 031:317 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0001ms, 2625ms total)
T7F1C 031:318 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 90 41  returns 0x04 (0001ms, 2626ms total)
T7F1C 031:319 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 11  returns 0x01 (0001ms, 2627ms total)
T7F1C 031:320 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 2629ms total)
T7F1C 031:322 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0001ms, 2630ms total)
T7F1C 031:323 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2631ms total)
T7F1C 031:324 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: FD DF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 2632ms total)
T7F1C 031:325 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 11 00 00 00  returns 0x04 (0001ms, 2633ms total)
T7F1C 031:326 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 2634ms total)
T7F1C 031:327 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 2635ms total)
T7F1C 031:328 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 12 00  returns 0x02 (0001ms, 2636ms total)
T7F1C 031:329 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 2637ms total)
T7F1C 031:330 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0001ms, 2638ms total)
T7F1C 031:331 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 2639ms total)
T7F1C 031:332 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 00  returns 0x01 (0001ms, 2640ms total)
T7F1C 031:333 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2641ms total)
T7F1C 031:334 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0001ms, 2642ms total)
T7F1C 031:335 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 01  returns 0x01 (0001ms, 2643ms total)
T7F1C 031:336 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 01  returns 0x01 (0001ms, 2644ms total)
T7F1C 031:338 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 2645ms total)
T7F1C 031:339 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 2646ms total)
T7F1C 031:340 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 2647ms total)
T7F1C 031:341 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 2648ms total)
T7F1C 031:342 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 2649ms total)
T4308 031:343 JLINK_IsHalted()  returns FALSE (0001ms, 2650ms total)
T4308 031:445 JLINK_IsHalted()  returns FALSE (0001ms, 2650ms total)
T4308 031:547 JLINK_IsHalted()  returns FALSE (0001ms, 2650ms total)
T4308 031:649 JLINK_IsHalted()  returns FALSE (0001ms, 2650ms total)
T4308 031:751 JLINK_IsHalted()  returns FALSE (0001ms, 2650ms total)
T7F1C 031:853 JLINK_ReadMemEx(0x0201BF2C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF2C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x5B0 (0016ms, 2665ms total)
T7F1C 031:869 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0001ms, 2666ms total)
T7F1C 031:870 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 2667ms total)
T7F1C 031:871 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2668ms total)
T7F1C 031:873 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0000ms, 2668ms total)
T7F1C 031:874 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2669ms total)
T7F1C 031:875 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0001ms, 2670ms total)
T7F1C 031:876 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 90 41  returns 0x04 (0001ms, 2671ms total)
T7F1C 031:878 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 11  returns 0x01 (0001ms, 2672ms total)
T7F1C 031:879 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 2673ms total)
T7F1C 031:880 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0001ms, 2674ms total)
T7F1C 031:881 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2675ms total)
T7F1C 031:882 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: FD DF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 2676ms total)
T7F1C 031:883 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 11 00 00 00  returns 0x04 (0001ms, 2677ms total)
T7F1C 031:884 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 2678ms total)
T7F1C 031:885 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 2679ms total)
T7F1C 031:886 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 12 00  returns 0x02 (0001ms, 2680ms total)
T7F1C 031:887 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 2681ms total)
T7F1C 031:888 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0001ms, 2682ms total)
T7F1C 031:889 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 2683ms total)
T7F1C 031:890 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 00  returns 0x01 (0001ms, 2684ms total)
T7F1C 031:891 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2685ms total)
T7F1C 031:892 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0001ms, 2686ms total)
T7F1C 031:893 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 01  returns 0x01 (0002ms, 2688ms total)
T7F1C 031:895 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 01  returns 0x01 (0001ms, 2689ms total)
T7F1C 031:896 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 2690ms total)
T7F1C 031:897 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 2691ms total)
T7F1C 031:898 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 2692ms total)
T7F1C 031:899 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 2693ms total)
T7F1C 031:900 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 2694ms total)
T4308 031:901 JLINK_IsHalted()  returns FALSE (0001ms, 2695ms total)
T4308 032:003 JLINK_IsHalted()  returns FALSE (0000ms, 2694ms total)
T4308 032:105 JLINK_IsHalted()  returns FALSE (0001ms, 2695ms total)
T4308 032:207 JLINK_IsHalted()  returns FALSE (0000ms, 2694ms total)
T4308 032:309 JLINK_IsHalted()  returns FALSE (0001ms, 2695ms total)
T7F1C 032:413 JLINK_ReadMemEx(0x0201BF2C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF2C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x5B0 (0015ms, 2709ms total)
T7F1C 032:429 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0001ms, 2710ms total)
T7F1C 032:430 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 2711ms total)
T7F1C 032:431 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2712ms total)
T7F1C 032:432 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 2713ms total)
T7F1C 032:434 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2714ms total)
T7F1C 032:436 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0001ms, 2715ms total)
T7F1C 032:437 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 98 41  returns 0x04 (0001ms, 2716ms total)
T7F1C 032:438 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 11  returns 0x01 (0002ms, 2718ms total)
T7F1C 032:440 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 2719ms total)
T7F1C 032:441 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0001ms, 2720ms total)
T7F1C 032:442 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2721ms total)
T7F1C 032:443 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: FD DF 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 2723ms total)
T7F1C 032:445 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 11 00 00 00  returns 0x04 (0001ms, 2724ms total)
T7F1C 032:446 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 2725ms total)
T7F1C 032:447 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 2726ms total)
T7F1C 032:448 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 13 00  returns 0x02 (0001ms, 2727ms total)
T7F1C 032:449 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 2728ms total)
T7F1C 032:450 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0001ms, 2729ms total)
T7F1C 032:451 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 2730ms total)
T7F1C 032:452 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 00  returns 0x01 (0001ms, 2731ms total)
T7F1C 032:453 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2732ms total)
T7F1C 032:454 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0001ms, 2733ms total)
T7F1C 032:455 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 01  returns 0x01 (0001ms, 2734ms total)
T7F1C 032:456 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 01  returns 0x01 (0001ms, 2735ms total)
T7F1C 032:458 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 2736ms total)
T7F1C 032:459 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 2737ms total)
T7F1C 032:460 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 2738ms total)
T7F1C 032:461 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 2739ms total)
T7F1C 032:462 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 2740ms total)
T4308 032:463 JLINK_IsHalted()  returns FALSE (0001ms, 2741ms total)
T4308 032:565 JLINK_IsHalted()  returns FALSE (0001ms, 2741ms total)
T4308 032:667 JLINK_IsHalted()  returns FALSE (0000ms, 2740ms total)
T4308 032:768 JLINK_IsHalted()  returns FALSE (0001ms, 2741ms total)
T4308 032:870 JLINK_IsHalted()  returns FALSE (0001ms, 2741ms total)
T7F1C 032:971 JLINK_ReadMemEx(0x0201BF2C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF2C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x5B0 (0016ms, 2756ms total)
T7F1C 032:988 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0001ms, 2757ms total)
T7F1C 032:989 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 2758ms total)
T7F1C 032:990 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2759ms total)
T7F1C 032:991 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 2760ms total)
T7F1C 032:992 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2761ms total)
T7F1C 032:993 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0001ms, 2762ms total)
T7F1C 032:994 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 98 41  returns 0x04 (0001ms, 2763ms total)
T7F1C 032:995 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 11  returns 0x01 (0001ms, 2764ms total)
T7F1C 032:996 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 2765ms total)
T7F1C 032:997 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0001ms, 2766ms total)
T7F1C 032:998 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2767ms total)
T7F1C 033:000 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: FD DF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 2768ms total)
T7F1C 033:001 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 11 00 00 00  returns 0x04 (0001ms, 2769ms total)
T7F1C 033:002 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 2770ms total)
T7F1C 033:003 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 2771ms total)
T7F1C 033:004 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 13 00  returns 0x02 (0001ms, 2772ms total)
T7F1C 033:005 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 2773ms total)
T7F1C 033:006 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0001ms, 2774ms total)
T7F1C 033:007 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 2775ms total)
T7F1C 033:008 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 00  returns 0x01 (0001ms, 2776ms total)
T7F1C 033:009 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2777ms total)
T7F1C 033:010 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0001ms, 2778ms total)
T7F1C 033:011 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 01  returns 0x01 (0001ms, 2779ms total)
T7F1C 033:012 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 01  returns 0x01 (0001ms, 2780ms total)
T7F1C 033:013 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 2781ms total)
T7F1C 033:014 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 2782ms total)
T7F1C 033:016 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 2783ms total)
T7F1C 033:017 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 2784ms total)
T7F1C 033:018 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 2785ms total)
T4308 033:019 JLINK_IsHalted()  returns FALSE (0001ms, 2786ms total)
T4308 033:121 JLINK_IsHalted()  returns FALSE (0000ms, 2785ms total)
T4308 033:223 JLINK_IsHalted()  returns FALSE (0001ms, 2786ms total)
T4308 033:325 JLINK_IsHalted()  returns FALSE (0000ms, 2785ms total)
T4308 033:427 JLINK_IsHalted()  returns FALSE (0001ms, 2786ms total)
T7F1C 033:529 JLINK_ReadMemEx(0x0201BF2C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF2C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x5B0 (0017ms, 2802ms total)
T7F1C 033:547 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0001ms, 2803ms total)
T7F1C 033:548 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 2804ms total)
T7F1C 033:549 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2805ms total)
T7F1C 033:550 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 2806ms total)
T7F1C 033:551 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2807ms total)
T7F1C 033:552 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0001ms, 2808ms total)
T7F1C 033:553 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 A0 41  returns 0x04 (0001ms, 2809ms total)
T7F1C 033:554 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 11  returns 0x01 (0001ms, 2810ms total)
T7F1C 033:555 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 2812ms total)
T7F1C 033:557 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0001ms, 2813ms total)
T7F1C 033:558 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2814ms total)
T7F1C 033:559 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: FD DF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 2815ms total)
T7F1C 033:560 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 14 00 00 00  returns 0x04 (0001ms, 2816ms total)
T7F1C 033:561 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 2817ms total)
T7F1C 033:562 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 2818ms total)
T7F1C 033:563 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 14 00  returns 0x02 (0001ms, 2819ms total)
T7F1C 033:564 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 2820ms total)
T7F1C 033:565 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0001ms, 2821ms total)
T7F1C 033:566 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 2822ms total)
T7F1C 033:567 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 01  returns 0x01 (0001ms, 2823ms total)
T7F1C 033:568 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2824ms total)
T7F1C 033:569 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0001ms, 2825ms total)
T7F1C 033:570 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 01  returns 0x01 (0001ms, 2826ms total)
T7F1C 033:571 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 01  returns 0x01 (0001ms, 2827ms total)
T7F1C 033:573 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 2828ms total)
T7F1C 033:574 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 2829ms total)
T7F1C 033:575 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 2830ms total)
T7F1C 033:576 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 2831ms total)
T7F1C 033:577 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 2832ms total)
T4308 033:578 JLINK_IsHalted()  returns FALSE (0001ms, 2833ms total)
T4308 033:680 JLINK_IsHalted()  returns FALSE (0001ms, 2833ms total)
T4308 033:781 JLINK_IsHalted()  returns FALSE (0001ms, 2833ms total)
T4308 033:884 JLINK_IsHalted()  returns FALSE (0001ms, 2833ms total)
T4308 033:986 JLINK_IsHalted()  returns FALSE (0000ms, 2832ms total)
T7F1C 034:087 JLINK_ReadMemEx(0x0201BF2C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF2C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x5B0 (0016ms, 2848ms total)
T7F1C 034:104 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0001ms, 2849ms total)
T7F1C 034:105 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 2850ms total)
T7F1C 034:106 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2851ms total)
T7F1C 034:108 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 2852ms total)
T7F1C 034:109 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2853ms total)
T7F1C 034:110 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0001ms, 2854ms total)
T7F1C 034:111 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 A8 41  returns 0x04 (0001ms, 2855ms total)
T7F1C 034:112 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 11  returns 0x01 (0001ms, 2856ms total)
T7F1C 034:113 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 2857ms total)
T7F1C 034:114 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0001ms, 2858ms total)
T7F1C 034:115 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2859ms total)
T7F1C 034:116 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: FD DF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 2860ms total)
T7F1C 034:117 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 14 00 00 00  returns 0x04 (0001ms, 2861ms total)
T7F1C 034:118 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 2862ms total)
T7F1C 034:119 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 2863ms total)
T7F1C 034:120 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 15 00  returns 0x02 (0001ms, 2864ms total)
T7F1C 034:121 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 2865ms total)
T7F1C 034:122 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0001ms, 2866ms total)
T7F1C 034:123 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 2867ms total)
T7F1C 034:124 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 01  returns 0x01 (0001ms, 2868ms total)
T7F1C 034:125 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 2870ms total)
T7F1C 034:127 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0001ms, 2871ms total)
T7F1C 034:128 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 01  returns 0x01 (0001ms, 2872ms total)
T7F1C 034:129 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 01  returns 0x01 (0001ms, 2873ms total)
T7F1C 034:130 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 2874ms total)
T7F1C 034:131 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 2875ms total)
T7F1C 034:133 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0002ms, 2877ms total)
T7F1C 034:135 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 2878ms total)
T7F1C 034:136 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 2879ms total)
T4308 034:137 JLINK_IsHalted()  returns FALSE (0001ms, 2880ms total)
T4308 034:239 JLINK_IsHalted()  returns FALSE (0001ms, 2880ms total)
T4308 034:341 JLINK_IsHalted()  returns FALSE (0001ms, 2880ms total)
T4308 034:443 JLINK_IsHalted()  returns FALSE (0000ms, 2879ms total)
T4308 034:544 JLINK_IsHalted()  returns FALSE (0001ms, 2880ms total)
T7F1C 034:645 JLINK_ReadMemEx(0x0201BF2C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF2C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x5B0 (0016ms, 2895ms total)
T7F1C 034:661 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0001ms, 2896ms total)
T7F1C 034:662 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 2897ms total)
T7F1C 034:663 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2898ms total)
T7F1C 034:665 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 2899ms total)
T7F1C 034:667 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2900ms total)
T7F1C 034:668 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0001ms, 2901ms total)
T7F1C 034:669 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 2902ms total)
T7F1C 034:670 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 11  returns 0x01 (0001ms, 2903ms total)
T7F1C 034:671 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 2904ms total)
T7F1C 034:672 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0001ms, 2905ms total)
T7F1C 034:673 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2906ms total)
T7F1C 034:674 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: FD FF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 2907ms total)
T7F1C 034:675 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 14 00 00 00  returns 0x04 (0001ms, 2908ms total)
T7F1C 034:676 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 2909ms total)
T7F1C 034:677 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 2910ms total)
T7F1C 034:678 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 15 00  returns 0x02 (0001ms, 2911ms total)
T7F1C 034:679 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0002ms, 2913ms total)
T7F1C 034:681 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0001ms, 2914ms total)
T7F1C 034:682 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 2915ms total)
T7F1C 034:683 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 01  returns 0x01 (0001ms, 2916ms total)
T7F1C 034:684 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2917ms total)
T7F1C 034:685 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0001ms, 2918ms total)
T7F1C 034:686 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 01  returns 0x01 (0001ms, 2919ms total)
T7F1C 034:687 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 01  returns 0x01 (0001ms, 2920ms total)
T7F1C 034:688 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 2921ms total)
T7F1C 034:689 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 2922ms total)
T7F1C 034:691 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0000ms, 2922ms total)
T7F1C 034:692 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 2923ms total)
T7F1C 034:693 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 2924ms total)
T4308 034:694 JLINK_IsHalted()  returns FALSE (0001ms, 2925ms total)
T4308 034:796 JLINK_IsHalted()  returns FALSE (0001ms, 2925ms total)
T4308 034:898 JLINK_IsHalted()  returns FALSE (0001ms, 2925ms total)
T4308 035:000 JLINK_IsHalted()  returns FALSE (0001ms, 2925ms total)
T4308 035:103 JLINK_IsHalted()  returns FALSE (0001ms, 2925ms total)
T7F1C 035:205 JLINK_ReadMemEx(0x0201BF2C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF2C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x5B0 (0016ms, 2940ms total)
T7F1C 035:221 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0002ms, 2942ms total)
T7F1C 035:223 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 2943ms total)
T7F1C 035:224 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2944ms total)
T7F1C 035:226 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0000ms, 2944ms total)
T7F1C 035:227 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0002ms, 2946ms total)
T7F1C 035:229 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0001ms, 2947ms total)
T7F1C 035:230 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 80 3F  returns 0x04 (0001ms, 2948ms total)
T7F1C 035:231 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 11  returns 0x01 (0001ms, 2949ms total)
T7F1C 035:232 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 2950ms total)
T7F1C 035:233 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0001ms, 2951ms total)
T7F1C 035:234 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2952ms total)
T7F1C 035:235 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: FD DF 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 2954ms total)
T7F1C 035:237 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 16 00 00 00  returns 0x04 (0001ms, 2955ms total)
T7F1C 035:238 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 2956ms total)
T7F1C 035:239 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 2957ms total)
T7F1C 035:240 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 16 00  returns 0x02 (0001ms, 2958ms total)
T7F1C 035:241 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 2959ms total)
T7F1C 035:242 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0001ms, 2960ms total)
T7F1C 035:243 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 2961ms total)
T7F1C 035:244 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 00  returns 0x01 (0001ms, 2962ms total)
T7F1C 035:245 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2963ms total)
T7F1C 035:246 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0001ms, 2964ms total)
T7F1C 035:247 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 01  returns 0x01 (0001ms, 2965ms total)
T7F1C 035:248 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 01  returns 0x01 (0001ms, 2966ms total)
T7F1C 035:250 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 2967ms total)
T7F1C 035:251 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 2968ms total)
T7F1C 035:252 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 2969ms total)
T7F1C 035:253 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 2970ms total)
T7F1C 035:254 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 2971ms total)
T4308 035:256 JLINK_IsHalted()  returns FALSE (0000ms, 2971ms total)
T4308 035:357 JLINK_IsHalted()  returns FALSE (0000ms, 2971ms total)
T4308 035:459 JLINK_IsHalted()  returns FALSE (0001ms, 2972ms total)
T4308 035:561 JLINK_IsHalted()  returns FALSE (0000ms, 2971ms total)
T4308 035:662 JLINK_IsHalted()  returns FALSE (0001ms, 2972ms total)
T7F1C 035:763 JLINK_ReadMemEx(0x0201BF2C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF2C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x5B0 (0016ms, 2987ms total)
T7F1C 035:779 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0001ms, 2988ms total)
T7F1C 035:780 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0002ms, 2990ms total)
T7F1C 035:782 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2991ms total)
T7F1C 035:785 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 2992ms total)
T7F1C 035:786 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 2993ms total)
T7F1C 035:787 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0002ms, 2995ms total)
T7F1C 035:789 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 80 3F  returns 0x04 (0001ms, 2996ms total)
T7F1C 035:790 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 11  returns 0x01 (0001ms, 2997ms total)
T7F1C 035:791 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 2998ms total)
T7F1C 035:792 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0001ms, 2999ms total)
T7F1C 035:793 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3000ms total)
T7F1C 035:794 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: FD DF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 3001ms total)
T7F1C 035:796 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 16 00 00 00  returns 0x04 (0000ms, 3001ms total)
T7F1C 035:796 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 3002ms total)
T7F1C 035:797 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 3003ms total)
T7F1C 035:798 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 16 00  returns 0x02 (0001ms, 3004ms total)
T7F1C 035:800 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 3006ms total)
T7F1C 035:801 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0001ms, 3007ms total)
T7F1C 035:802 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 3008ms total)
T7F1C 035:803 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 00  returns 0x01 (0000ms, 3008ms total)
T7F1C 035:804 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3010ms total)
T7F1C 035:805 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0001ms, 3011ms total)
T7F1C 035:806 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 01  returns 0x01 (0001ms, 3012ms total)
T7F1C 035:807 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 01  returns 0x01 (0001ms, 3013ms total)
T7F1C 035:808 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 3014ms total)
T7F1C 035:809 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 3015ms total)
T7F1C 035:810 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 3016ms total)
T7F1C 035:811 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 3017ms total)
T7F1C 035:812 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 3018ms total)
T4308 035:814 JLINK_IsHalted()  returns FALSE (0001ms, 3019ms total)
T4308 035:916 JLINK_IsHalted()  returns FALSE (0001ms, 3019ms total)
T4308 036:017 JLINK_IsHalted()  returns FALSE (0000ms, 3018ms total)
T4308 036:119 JLINK_IsHalted()  returns FALSE (0001ms, 3019ms total)
T4308 036:220 JLINK_IsHalted()  returns FALSE (0001ms, 3019ms total)
T7F1C 036:321 JLINK_ReadMemEx(0x0201BF2C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF2C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x5B0 (0017ms, 3035ms total)
T7F1C 036:338 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0001ms, 3036ms total)
T7F1C 036:340 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0000ms, 3036ms total)
T7F1C 036:341 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 3038ms total)
T7F1C 036:342 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 3039ms total)
T7F1C 036:344 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 3040ms total)
T7F1C 036:345 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0001ms, 3041ms total)
T7F1C 036:346 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 40  returns 0x04 (0001ms, 3042ms total)
T7F1C 036:347 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 11  returns 0x01 (0001ms, 3043ms total)
T7F1C 036:348 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 3045ms total)
T7F1C 036:350 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0001ms, 3046ms total)
T7F1C 036:351 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3047ms total)
T7F1C 036:352 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: FD FF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 3048ms total)
T7F1C 036:353 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 16 00 00 00  returns 0x04 (0001ms, 3049ms total)
T7F1C 036:354 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 3050ms total)
T7F1C 036:355 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 3051ms total)
T7F1C 036:356 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 17 00  returns 0x02 (0001ms, 3052ms total)
T7F1C 036:357 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 3053ms total)
T7F1C 036:358 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0001ms, 3054ms total)
T7F1C 036:359 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 3055ms total)
T7F1C 036:360 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 00  returns 0x01 (0001ms, 3056ms total)
T7F1C 036:361 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 3058ms total)
T7F1C 036:363 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0001ms, 3059ms total)
T7F1C 036:364 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 01  returns 0x01 (0001ms, 3060ms total)
T7F1C 036:365 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 01  returns 0x01 (0001ms, 3061ms total)
T7F1C 036:366 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 3062ms total)
T7F1C 036:367 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 3063ms total)
T7F1C 036:368 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 3064ms total)
T7F1C 036:369 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 3065ms total)
T7F1C 036:370 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 3066ms total)
T4308 036:371 JLINK_IsHalted()  returns FALSE (0001ms, 3067ms total)
T4308 036:473 JLINK_IsHalted()  returns FALSE (0001ms, 3067ms total)
T4308 036:575 JLINK_IsHalted()  returns FALSE (0001ms, 3067ms total)
T4308 036:676 JLINK_IsHalted()  returns FALSE (0001ms, 3067ms total)
T4308 036:777 JLINK_IsHalted()  returns FALSE (0001ms, 3067ms total)
T7F1C 036:878 JLINK_ReadMemEx(0x0201BF2C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF2C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x5B0 (0016ms, 3082ms total)
T7F1C 036:894 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0001ms, 3083ms total)
T7F1C 036:895 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 3084ms total)
T7F1C 036:896 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 3085ms total)
T7F1C 036:898 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0000ms, 3085ms total)
T7F1C 036:899 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0000ms, 3085ms total)
T7F1C 036:900 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0000ms, 3085ms total)
T7F1C 036:900 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 3086ms total)
T7F1C 036:902 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 10  returns 0x01 (0000ms, 3086ms total)
T7F1C 036:903 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 3087ms total)
T7F1C 036:904 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0001ms, 3088ms total)
T7F1C 036:905 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3089ms total)
T7F1C 036:907 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: 79 DF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 3090ms total)
T7F1C 036:908 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 16 00 00 00  returns 0x04 (0001ms, 3091ms total)
T7F1C 036:909 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 3092ms total)
T7F1C 036:910 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0002ms, 3094ms total)
T7F1C 036:912 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 17 00  returns 0x02 (0000ms, 3094ms total)
T7F1C 036:912 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 3095ms total)
T7F1C 036:913 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0001ms, 3096ms total)
T7F1C 036:914 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 3097ms total)
T7F1C 036:915 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 00  returns 0x01 (0001ms, 3098ms total)
T7F1C 036:916 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 85 00 00 00 81 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3099ms total)
T7F1C 036:918 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0000ms, 3099ms total)
T7F1C 036:919 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 00  returns 0x01 (0000ms, 3099ms total)
T7F1C 036:920 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 00  returns 0x01 (0001ms, 3100ms total)
T7F1C 036:921 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 3101ms total)
T7F1C 036:922 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 3102ms total)
T7F1C 036:923 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 3103ms total)
T7F1C 036:925 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 3104ms total)
T7F1C 036:926 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 3105ms total)
T4308 036:927 JLINK_IsHalted()  returns FALSE (0001ms, 3106ms total)
T4308 037:029 JLINK_IsHalted()  returns FALSE (0000ms, 3105ms total)
T4308 037:131 JLINK_IsHalted()  returns FALSE (0001ms, 3106ms total)
T4308 037:232 JLINK_IsHalted()  returns FALSE (0001ms, 3106ms total)
T4308 037:334 JLINK_IsHalted()  returns FALSE (0001ms, 3106ms total)
T7F1C 037:436 JLINK_ReadMemEx(0x0201BF2C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF2C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x5B0 (0016ms, 3121ms total)
T7F1C 037:453 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0001ms, 3122ms total)
T7F1C 037:454 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 3123ms total)
T7F1C 037:455 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 3124ms total)
T7F1C 037:456 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 3125ms total)
T7F1C 037:458 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0000ms, 3125ms total)
T7F1C 037:459 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0001ms, 3126ms total)
T7F1C 037:460 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 3127ms total)
T7F1C 037:461 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 10  returns 0x01 (0001ms, 3128ms total)
T7F1C 037:462 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 3129ms total)
T7F1C 037:463 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0001ms, 3130ms total)
T7F1C 037:464 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3131ms total)
T7F1C 037:465 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: 79 DF 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 3133ms total)
T7F1C 037:467 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 16 00 00 00  returns 0x04 (0001ms, 3134ms total)
T7F1C 037:468 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 3135ms total)
T7F1C 037:469 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 3136ms total)
T7F1C 037:470 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 18 00  returns 0x02 (0001ms, 3137ms total)
T7F1C 037:471 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 3138ms total)
T7F1C 037:472 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0001ms, 3139ms total)
T7F1C 037:473 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 3140ms total)
T7F1C 037:474 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 00  returns 0x01 (0001ms, 3141ms total)
T7F1C 037:475 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 24 47 4E 52 4D 43 2C 2C 56 2C 2C 2C 2C 2C 2C 2C ...  returns 0x20 (0001ms, 3142ms total)
T7F1C 037:476 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0001ms, 3143ms total)
T7F1C 037:477 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 00  returns 0x01 (0001ms, 3144ms total)
T7F1C 037:478 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 00  returns 0x01 (0001ms, 3145ms total)
T7F1C 037:480 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 3146ms total)
T7F1C 037:481 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 3147ms total)
T7F1C 037:482 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 3148ms total)
T7F1C 037:483 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0000ms, 3148ms total)
T7F1C 037:483 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 3149ms total)
T4308 037:484 JLINK_IsHalted()  returns FALSE (0001ms, 3150ms total)
T4308 037:587 JLINK_IsHalted()  returns FALSE (0001ms, 3150ms total)
T4308 037:689 JLINK_IsHalted()  returns FALSE (0001ms, 3150ms total)
T4308 037:791 JLINK_IsHalted()  returns FALSE (0001ms, 3150ms total)
T4308 037:893 JLINK_IsHalted()  returns FALSE (0001ms, 3150ms total)
T7F1C 037:994 JLINK_ReadMemEx(0x0201BF2C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF2C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x5B0 (0016ms, 3165ms total)
T7F1C 038:012 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0000ms, 3165ms total)
T7F1C 038:012 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 3166ms total)
T7F1C 038:013 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 3167ms total)
T7F1C 038:015 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 3168ms total)
T7F1C 038:016 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 3169ms total)
T7F1C 038:017 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0001ms, 3170ms total)
T7F1C 038:018 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 80 3F  returns 0x04 (0001ms, 3171ms total)
T7F1C 038:019 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 10  returns 0x01 (0001ms, 3172ms total)
T7F1C 038:020 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 3173ms total)
T7F1C 038:022 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0000ms, 3174ms total)
T7F1C 038:022 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3175ms total)
T7F1C 038:024 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: 79 DF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 3176ms total)
T7F1C 038:025 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 19 00 00 00  returns 0x04 (0001ms, 3177ms total)
T7F1C 038:026 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 3178ms total)
T7F1C 038:027 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 3179ms total)
T7F1C 038:028 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 19 00  returns 0x02 (0001ms, 3180ms total)
T7F1C 038:029 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 3181ms total)
T7F1C 038:030 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0001ms, 3182ms total)
T7F1C 038:031 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 3183ms total)
T7F1C 038:032 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 01  returns 0x01 (0001ms, 3184ms total)
T7F1C 038:033 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 24 47 4E 52 4D 43 2C 2C 56 2C 2C 2C 2C 2C 2C 2C ...  returns 0x20 (0001ms, 3185ms total)
T7F1C 038:034 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0001ms, 3186ms total)
T7F1C 038:035 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 00  returns 0x01 (0001ms, 3187ms total)
T7F1C 038:036 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 00  returns 0x01 (0001ms, 3188ms total)
T7F1C 038:038 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 3189ms total)
T7F1C 038:039 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 3190ms total)
T7F1C 038:040 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 3191ms total)
T7F1C 038:041 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 3192ms total)
T7F1C 038:042 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 3193ms total)
T4308 038:043 JLINK_IsHalted()  returns FALSE (0001ms, 3194ms total)
T4308 038:145 JLINK_IsHalted()  returns FALSE (0000ms, 3193ms total)
T4308 038:246 JLINK_IsHalted()  returns FALSE (0001ms, 3194ms total)
T4308 038:348 JLINK_IsHalted()  returns FALSE (0001ms, 3194ms total)
T4308 038:450 JLINK_IsHalted()  returns FALSE (0001ms, 3194ms total)
T7F1C 038:552 JLINK_ReadMemEx(0x0201BF2C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF2C) - Data: 39 2C 39 39 2E 39 2C 31 2A 30 41 0D 0A 24 47 4E ...  returns 0x5B0 (0016ms, 3209ms total)
T7F1C 038:569 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0001ms, 3210ms total)
T7F1C 038:570 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 3211ms total)
T7F1C 038:571 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 3212ms total)
T7F1C 038:572 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 3213ms total)
T7F1C 038:574 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 3215ms total)
T7F1C 038:575 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0001ms, 3216ms total)
T7F1C 038:576 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 80 3F  returns 0x04 (0001ms, 3217ms total)
T7F1C 038:577 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 10  returns 0x01 (0000ms, 3217ms total)
T7F1C 038:577 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 3218ms total)
T7F1C 038:578 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0001ms, 3219ms total)
T7F1C 038:579 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3220ms total)
T7F1C 038:580 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: 79 DF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 3221ms total)
T7F1C 038:581 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 19 00 00 00  returns 0x04 (0002ms, 3223ms total)
T7F1C 038:583 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 3224ms total)
T7F1C 038:584 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0000ms, 3224ms total)
T7F1C 038:584 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 19 00  returns 0x02 (0002ms, 3226ms total)
T7F1C 038:587 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 3227ms total)
T7F1C 038:588 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0001ms, 3228ms total)
T7F1C 038:589 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 3229ms total)
T7F1C 038:590 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 01  returns 0x01 (0001ms, 3230ms total)
T7F1C 038:591 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 24 47 4E 52 4D 43 2C 2C 56 2C 2C 2C 2C 2C 2C 2C ...  returns 0x20 (0001ms, 3231ms total)
T7F1C 038:592 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0001ms, 3232ms total)
T7F1C 038:593 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 00  returns 0x01 (0001ms, 3233ms total)
T7F1C 038:594 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 00  returns 0x01 (0001ms, 3234ms total)
T7F1C 038:595 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 3235ms total)
T7F1C 038:596 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 3236ms total)
T7F1C 038:598 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 3237ms total)
T7F1C 038:599 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0002ms, 3239ms total)
T7F1C 038:601 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 3240ms total)
T4308 038:602 JLINK_IsHalted()  returns FALSE (0001ms, 3241ms total)
T4308 038:704 JLINK_IsHalted()  returns FALSE (0001ms, 3241ms total)
T4308 038:806 JLINK_IsHalted()  returns FALSE (0001ms, 3241ms total)
T4308 038:907 JLINK_IsHalted()  returns FALSE (0001ms, 3241ms total)
T4308 039:009 JLINK_IsHalted()  returns FALSE (0001ms, 3241ms total)
T7F1C 039:110 JLINK_ReadMemEx(0x0201BF2C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF2C) - Data: 39 2C 39 39 2E 39 2C 31 2A 30 41 0D 0A 24 47 4E ...  returns 0x5B0 (0016ms, 3256ms total)
T7F1C 039:126 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0002ms, 3258ms total)
T7F1C 039:128 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 3259ms total)
T7F1C 039:129 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 3260ms total)
T7F1C 039:131 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 3261ms total)
T7F1C 039:132 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 3262ms total)
T7F1C 039:133 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0001ms, 3263ms total)
T7F1C 039:134 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 40  returns 0x04 (0001ms, 3264ms total)
T7F1C 039:136 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 10  returns 0x01 (0001ms, 3265ms total)
T7F1C 039:137 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 3266ms total)
T7F1C 039:138 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0001ms, 3267ms total)
T7F1C 039:139 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3268ms total)
T7F1C 039:140 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: 79 DF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 3269ms total)
T7F1C 039:141 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 19 00 00 00  returns 0x04 (0001ms, 3270ms total)
T7F1C 039:142 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 3271ms total)
T7F1C 039:143 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 3272ms total)
T7F1C 039:144 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 1A 00  returns 0x02 (0001ms, 3273ms total)
T7F1C 039:145 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 3274ms total)
T7F1C 039:146 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0001ms, 3275ms total)
T7F1C 039:147 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 3276ms total)
T7F1C 039:148 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 01  returns 0x01 (0001ms, 3277ms total)
T7F1C 039:149 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 24 47 4E 52 4D 43 2C 2C 56 2C 2C 2C 2C 2C 2C 2C ...  returns 0x20 (0001ms, 3278ms total)
T7F1C 039:150 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0002ms, 3280ms total)
T7F1C 039:152 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 00  returns 0x01 (0001ms, 3281ms total)
T7F1C 039:153 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 00  returns 0x01 (0001ms, 3282ms total)
T7F1C 039:154 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 3283ms total)
T7F1C 039:155 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 3284ms total)
T7F1C 039:156 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 3285ms total)
T7F1C 039:157 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0002ms, 3287ms total)
T7F1C 039:159 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 3288ms total)
T4308 039:160 JLINK_IsHalted()  returns FALSE (0001ms, 3289ms total)
T4308 039:262 JLINK_IsHalted()  returns FALSE (0001ms, 3289ms total)
T4308 039:364 JLINK_IsHalted()  returns FALSE (0001ms, 3289ms total)
T4308 039:465 JLINK_IsHalted()  returns FALSE (0001ms, 3289ms total)
T4308 039:567 JLINK_IsHalted()  returns FALSE (0001ms, 3289ms total)
T7F1C 039:675 JLINK_ReadMemEx(0x0201BF2C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF2C) - Data: 39 2C 39 39 2E 39 2C 31 2A 30 41 0D 0A 24 47 4E ...  returns 0x5B0 (0016ms, 3304ms total)
T7F1C 039:692 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0001ms, 3305ms total)
T7F1C 039:693 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 3306ms total)
T7F1C 039:694 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 3307ms total)
T7F1C 039:695 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 3308ms total)
T7F1C 039:697 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0000ms, 3308ms total)
T7F1C 039:698 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0001ms, 3309ms total)
T7F1C 039:699 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 40  returns 0x04 (0001ms, 3310ms total)
T7F1C 039:700 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 10  returns 0x01 (0002ms, 3312ms total)
T7F1C 039:702 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 3313ms total)
T7F1C 039:703 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0000ms, 3313ms total)
T7F1C 039:703 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3314ms total)
T7F1C 039:705 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: 79 DF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 3315ms total)
T7F1C 039:706 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 19 00 00 00  returns 0x04 (0001ms, 3316ms total)
T7F1C 039:707 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 3317ms total)
T7F1C 039:708 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 3318ms total)
T7F1C 039:709 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 1A 00  returns 0x02 (0001ms, 3319ms total)
T7F1C 039:710 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 3320ms total)
T7F1C 039:711 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0001ms, 3321ms total)
T7F1C 039:712 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 3322ms total)
T7F1C 039:713 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 01  returns 0x01 (0001ms, 3323ms total)
T7F1C 039:714 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 24 47 4E 52 4D 43 2C 2C 56 2C 2C 2C 2C 2C 2C 2C ...  returns 0x20 (0001ms, 3324ms total)
T7F1C 039:715 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0001ms, 3325ms total)
T7F1C 039:716 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 00  returns 0x01 (0001ms, 3326ms total)
T7F1C 039:717 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 00  returns 0x01 (0002ms, 3328ms total)
T7F1C 039:720 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 3329ms total)
T7F1C 039:721 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 3330ms total)
T7F1C 039:722 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 3331ms total)
T7F1C 039:724 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 3332ms total)
T7F1C 039:725 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 3333ms total)
T4308 039:726 JLINK_IsHalted()  returns FALSE (0001ms, 3334ms total)
T4308 039:828 JLINK_IsHalted()  returns FALSE (0001ms, 3334ms total)
T4308 039:929 JLINK_IsHalted()  returns FALSE (0001ms, 3334ms total)
T4308 040:030 JLINK_IsHalted()  returns FALSE (0001ms, 3334ms total)
T4308 040:132 JLINK_IsHalted()  returns FALSE (0001ms, 3334ms total)
T7F1C 040:235 JLINK_ReadMemEx(0x0201BF2C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF2C) - Data: 39 2C 39 39 2E 39 2C 31 2A 30 41 0D 0A 24 47 4E ...  returns 0x5B0 (0015ms, 3348ms total)
T7F1C 040:251 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0001ms, 3349ms total)
T7F1C 040:252 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 3350ms total)
T7F1C 040:253 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 3351ms total)
T7F1C 040:254 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 3352ms total)
T7F1C 040:255 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 3353ms total)
T7F1C 040:257 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0001ms, 3355ms total)
T7F1C 040:258 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 40 40  returns 0x04 (0001ms, 3356ms total)
T7F1C 040:259 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 10  returns 0x01 (0001ms, 3357ms total)
T7F1C 040:260 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 3359ms total)
T7F1C 040:262 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0000ms, 3359ms total)
T7F1C 040:262 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0002ms, 3361ms total)
T7F1C 040:264 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: 79 DF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 3362ms total)
T7F1C 040:265 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 1B 00 00 00  returns 0x04 (0001ms, 3363ms total)
T7F1C 040:266 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 3364ms total)
T7F1C 040:267 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 3365ms total)
T7F1C 040:268 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 1B 00  returns 0x02 (0001ms, 3366ms total)
T7F1C 040:269 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 3367ms total)
T7F1C 040:270 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0001ms, 3368ms total)
T7F1C 040:271 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 3369ms total)
T7F1C 040:272 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 00  returns 0x01 (0001ms, 3370ms total)
T7F1C 040:273 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 24 47 4E 52 4D 43 2C 2C 56 2C 2C 2C 2C 2C 2C 2C ...  returns 0x20 (0001ms, 3371ms total)
T7F1C 040:274 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0001ms, 3372ms total)
T7F1C 040:275 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 00  returns 0x01 (0001ms, 3373ms total)
T7F1C 040:276 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 00  returns 0x01 (0001ms, 3374ms total)
T7F1C 040:278 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 3375ms total)
T7F1C 040:279 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 3376ms total)
T7F1C 040:280 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 3377ms total)
T7F1C 040:281 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 3378ms total)
T7F1C 040:282 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 3379ms total)
T4308 040:283 JLINK_IsHalted()  returns FALSE (0001ms, 3380ms total)
T4308 040:385 JLINK_IsHalted()  returns FALSE (0001ms, 3380ms total)
T4308 040:486 JLINK_IsHalted()  returns FALSE (0001ms, 3380ms total)
T4308 040:588 JLINK_IsHalted()  returns FALSE (0001ms, 3380ms total)
T4308 040:689 JLINK_IsHalted()  returns FALSE (0000ms, 3379ms total)
T7F1C 040:790 JLINK_ReadMemEx(0x0201BF2C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF2C) - Data: 39 2C 39 39 2E 39 2C 31 2A 30 41 0D 0A 24 47 4E ...  returns 0x5B0 (0016ms, 3395ms total)
T7F1C 040:807 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0001ms, 3396ms total)
T7F1C 040:809 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 3398ms total)
T7F1C 040:810 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 3399ms total)
T7F1C 040:811 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 3400ms total)
T7F1C 040:812 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 3401ms total)
T7F1C 040:813 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0001ms, 3402ms total)
T7F1C 040:814 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 40 40  returns 0x04 (0001ms, 3403ms total)
T7F1C 040:815 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 10  returns 0x01 (0001ms, 3404ms total)
T7F1C 040:816 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 3405ms total)
T7F1C 040:817 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0001ms, 3406ms total)
T7F1C 040:818 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3407ms total)
T7F1C 040:819 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: 79 DF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 3408ms total)
T7F1C 040:820 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 1B 00 00 00  returns 0x04 (0001ms, 3409ms total)
T7F1C 040:821 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 3410ms total)
T7F1C 040:822 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 3411ms total)
T7F1C 040:823 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 1B 00  returns 0x02 (0001ms, 3412ms total)
T7F1C 040:824 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 3413ms total)
T7F1C 040:825 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0001ms, 3414ms total)
T7F1C 040:826 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 3415ms total)
T7F1C 040:827 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 00  returns 0x01 (0001ms, 3416ms total)
T7F1C 040:828 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 24 47 4E 52 4D 43 2C 2C 56 2C 2C 2C 2C 2C 2C 2C ...  returns 0x20 (0002ms, 3418ms total)
T7F1C 040:830 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0001ms, 3419ms total)
T7F1C 040:831 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 00  returns 0x01 (0001ms, 3420ms total)
T7F1C 040:832 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 00  returns 0x01 (0001ms, 3421ms total)
T7F1C 040:833 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 3422ms total)
T7F1C 040:834 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 3423ms total)
T7F1C 040:836 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 3424ms total)
T7F1C 040:838 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 3425ms total)
T7F1C 040:839 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 3426ms total)
T4308 040:840 JLINK_IsHalted()  returns FALSE (0001ms, 3427ms total)
T4308 040:942 JLINK_IsHalted()  returns FALSE (0001ms, 3427ms total)
T4308 041:043 JLINK_IsHalted()  returns FALSE (0001ms, 3427ms total)
T4308 041:145 JLINK_IsHalted()  returns FALSE (0001ms, 3427ms total)
T4308 041:247 JLINK_IsHalted()  returns FALSE (0000ms, 3426ms total)
T7F1C 041:348 JLINK_ReadMemEx(0x0201BF2C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF2C) - Data: 39 2C 39 39 2E 39 2C 31 2A 30 41 0D 0A 24 47 4E ...  returns 0x5B0 (0016ms, 3442ms total)
T7F1C 041:365 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0001ms, 3443ms total)
T7F1C 041:366 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 3444ms total)
T7F1C 041:367 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 3445ms total)
T7F1C 041:368 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 3446ms total)
T7F1C 041:370 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0000ms, 3446ms total)
T7F1C 041:371 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0000ms, 3446ms total)
T7F1C 041:371 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 80 40  returns 0x04 (0001ms, 3447ms total)
T7F1C 041:373 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 10  returns 0x01 (0000ms, 3447ms total)
T7F1C 041:374 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 3448ms total)
T7F1C 041:375 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0001ms, 3449ms total)
T7F1C 041:376 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3450ms total)
T7F1C 041:377 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: 79 DF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 3451ms total)
T7F1C 041:378 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 1B 00 00 00  returns 0x04 (0001ms, 3452ms total)
T7F1C 041:379 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 3453ms total)
T7F1C 041:380 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 3454ms total)
T7F1C 041:381 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 1C 00  returns 0x02 (0001ms, 3455ms total)
T7F1C 041:382 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 3456ms total)
T7F1C 041:383 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0001ms, 3457ms total)
T7F1C 041:384 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 3458ms total)
T7F1C 041:385 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 00  returns 0x01 (0001ms, 3459ms total)
T7F1C 041:386 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 56 2C 31 2C 31 2C 30 30 2C 30 2A 36 35 0D 0A 24 ...  returns 0x20 (0001ms, 3460ms total)
T7F1C 041:387 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0001ms, 3461ms total)
T7F1C 041:388 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 00  returns 0x01 (0001ms, 3462ms total)
T7F1C 041:389 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 00  returns 0x01 (0001ms, 3463ms total)
T7F1C 041:390 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 3464ms total)
T7F1C 041:391 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 3465ms total)
T7F1C 041:392 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 3466ms total)
T7F1C 041:393 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 3467ms total)
T7F1C 041:394 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 3468ms total)
T4308 041:396 JLINK_IsHalted()  returns FALSE (0001ms, 3469ms total)
T4308 041:499 JLINK_IsHalted()  returns FALSE (0001ms, 3469ms total)
T4308 041:601 JLINK_IsHalted()  returns FALSE (0001ms, 3469ms total)
T4308 041:702 JLINK_IsHalted()  returns FALSE (0000ms, 3468ms total)
T4308 041:803 JLINK_IsHalted()  returns FALSE (0001ms, 3469ms total)
T7F1C 041:907 JLINK_ReadMemEx(0x0201BF2C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF2C) - Data: 39 2C 39 39 2E 39 2C 31 2A 30 41 0D 0A 24 47 4E ...  returns 0x5B0 (0015ms, 3483ms total)
T7F1C 041:923 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0001ms, 3484ms total)
T7F1C 041:924 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 3485ms total)
T7F1C 041:925 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 3486ms total)
T7F1C 041:927 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0000ms, 3486ms total)
T7F1C 041:928 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 3487ms total)
T7F1C 041:929 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0001ms, 3488ms total)
T7F1C 041:930 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 80 40  returns 0x04 (0001ms, 3489ms total)
T7F1C 041:931 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 10  returns 0x01 (0001ms, 3490ms total)
T7F1C 041:932 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 3491ms total)
T7F1C 041:933 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0001ms, 3492ms total)
T7F1C 041:934 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3493ms total)
T7F1C 041:936 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: 79 DF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 3494ms total)
T7F1C 041:937 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 1B 00 00 00  returns 0x04 (0001ms, 3495ms total)
T7F1C 041:938 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 3496ms total)
T7F1C 041:939 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 3497ms total)
T7F1C 041:940 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 1C 00  returns 0x02 (0001ms, 3498ms total)
T7F1C 041:941 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 3499ms total)
T7F1C 041:942 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0001ms, 3500ms total)
T7F1C 041:943 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 3501ms total)
T7F1C 041:944 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 00  returns 0x01 (0001ms, 3502ms total)
T7F1C 041:945 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 56 2C 31 2C 31 2C 30 30 2C 30 2A 36 35 0D 0A 24 ...  returns 0x20 (0001ms, 3503ms total)
T7F1C 041:946 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0001ms, 3504ms total)
T7F1C 041:947 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 00  returns 0x01 (0001ms, 3505ms total)
T7F1C 041:948 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 00  returns 0x01 (0001ms, 3506ms total)
T7F1C 041:949 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 3507ms total)
T7F1C 041:950 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 3508ms total)
T7F1C 041:951 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 3509ms total)
T7F1C 041:952 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 3510ms total)
T7F1C 041:953 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 3511ms total)
T4308 041:955 JLINK_IsHalted()  returns FALSE (0000ms, 3511ms total)
T4308 042:057 JLINK_IsHalted()  returns FALSE (0000ms, 3511ms total)
T4308 042:159 JLINK_IsHalted()  returns FALSE (0001ms, 3512ms total)
T4308 042:260 JLINK_IsHalted()  returns FALSE (0001ms, 3512ms total)
T4308 042:363 JLINK_IsHalted()  returns FALSE (0001ms, 3512ms total)
T7F1C 042:465 JLINK_ReadMemEx(0x0201BF2C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF2C) - Data: 39 2C 39 39 2E 39 2C 31 2A 30 41 0D 0A 24 47 4E ...  returns 0x5B0 (0016ms, 3527ms total)
T7F1C 042:481 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0001ms, 3528ms total)
T7F1C 042:482 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0002ms, 3530ms total)
T7F1C 042:484 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 3531ms total)
T7F1C 042:485 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 3532ms total)
T7F1C 042:486 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 3533ms total)
T7F1C 042:487 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0001ms, 3534ms total)
T7F1C 042:488 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 3535ms total)
T7F1C 042:489 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 10  returns 0x01 (0001ms, 3536ms total)
T7F1C 042:490 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 3537ms total)
T7F1C 042:491 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0001ms, 3538ms total)
T7F1C 042:492 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3539ms total)
T7F1C 042:493 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: 79 DF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 3540ms total)
T7F1C 042:494 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 1B 00 00 00  returns 0x04 (0001ms, 3541ms total)
T7F1C 042:495 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 3542ms total)
T7F1C 042:496 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 3543ms total)
T7F1C 042:497 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 1D 00  returns 0x02 (0001ms, 3544ms total)
T7F1C 042:498 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 3545ms total)
T7F1C 042:499 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0001ms, 3546ms total)
T7F1C 042:500 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 3547ms total)
T7F1C 042:501 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 00  returns 0x01 (0001ms, 3548ms total)
T7F1C 042:503 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 85 94 4A 69 4D 43 2C 2C 56 2C 2C 2C 2C 2C 2C 2C ...  returns 0x20 (0001ms, 3549ms total)
T7F1C 042:504 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0001ms, 3550ms total)
T7F1C 042:505 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 00  returns 0x01 (0001ms, 3551ms total)
T7F1C 042:506 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 00  returns 0x01 (0001ms, 3552ms total)
T7F1C 042:507 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 3553ms total)
T7F1C 042:508 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 3554ms total)
T7F1C 042:510 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 3555ms total)
T7F1C 042:511 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 3556ms total)
T7F1C 042:512 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 3557ms total)
T4308 042:513 JLINK_IsHalted()  returns FALSE (0001ms, 3558ms total)
T4308 042:616 JLINK_IsHalted()  returns FALSE (0001ms, 3558ms total)
T4308 042:717 JLINK_IsHalted()  returns FALSE (0001ms, 3558ms total)
T4308 042:818 JLINK_IsHalted()  returns FALSE (0001ms, 3558ms total)
T4308 042:920 JLINK_IsHalted()  returns FALSE (0001ms, 3558ms total)
T7F1C 043:025 JLINK_ReadMemEx(0x0201BF2C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF2C) - Data: 39 2C 39 39 2E 39 2C 31 2A 30 41 0D 0A 24 47 4E ...  returns 0x5B0 (0016ms, 3573ms total)
T7F1C 043:042 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0001ms, 3574ms total)
T7F1C 043:043 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 3575ms total)
T7F1C 043:044 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 3576ms total)
T7F1C 043:045 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 3577ms total)
T7F1C 043:046 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 3578ms total)
T7F1C 043:047 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0001ms, 3579ms total)
T7F1C 043:048 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 80 3F  returns 0x04 (0001ms, 3580ms total)
T7F1C 043:049 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 10  returns 0x01 (0001ms, 3581ms total)
T7F1C 043:051 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 3583ms total)
T7F1C 043:052 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0001ms, 3584ms total)
T7F1C 043:053 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3585ms total)
T7F1C 043:054 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: 79 DF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 3586ms total)
T7F1C 043:055 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 1E 00 00 00  returns 0x04 (0001ms, 3587ms total)
T7F1C 043:056 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 3588ms total)
T7F1C 043:057 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 3589ms total)
T7F1C 043:058 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 1E 00  returns 0x02 (0001ms, 3590ms total)
T7F1C 043:059 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 3591ms total)
T7F1C 043:060 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0001ms, 3592ms total)
T7F1C 043:061 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 3593ms total)
T7F1C 043:062 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 01  returns 0x01 (0001ms, 3594ms total)
T7F1C 043:063 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 85 94 4A 69 4D 43 2C 2C 56 2C 2C 2C 2C 2C 2C 2C ...  returns 0x20 (0001ms, 3595ms total)
T7F1C 043:064 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0001ms, 3596ms total)
T7F1C 043:065 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 00  returns 0x01 (0001ms, 3597ms total)
T7F1C 043:066 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 00  returns 0x01 (0001ms, 3598ms total)
T7F1C 043:068 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 3599ms total)
T7F1C 043:069 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 3600ms total)
T7F1C 043:070 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 3601ms total)
T7F1C 043:071 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 3602ms total)
T7F1C 043:072 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 3603ms total)
T4308 043:073 JLINK_IsHalted()  returns FALSE (0001ms, 3604ms total)
T4308 043:175 JLINK_IsHalted()  returns FALSE (0001ms, 3604ms total)
T4308 043:277 JLINK_IsHalted()  returns FALSE (0001ms, 3604ms total)
T4308 043:378 JLINK_IsHalted()  returns FALSE (0001ms, 3604ms total)
T4308 043:480 JLINK_IsHalted()  returns FALSE (0001ms, 3604ms total)
T7F1C 043:583 JLINK_ReadMemEx(0x0201BF2C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF2C) - Data: 39 2C 39 39 2E 39 2C 31 2A 30 41 0D 0A 24 47 4E ...  returns 0x5B0 (0015ms, 3618ms total)
T7F1C 043:599 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0002ms, 3620ms total)
T7F1C 043:601 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 3621ms total)
T7F1C 043:602 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0002ms, 3623ms total)
T7F1C 043:604 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 3624ms total)
T7F1C 043:605 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 3625ms total)
T7F1C 043:606 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0001ms, 3626ms total)
T7F1C 043:607 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 3627ms total)
T7F1C 043:608 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 10  returns 0x01 (0001ms, 3628ms total)
T7F1C 043:609 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 3630ms total)
T7F1C 043:611 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0001ms, 3631ms total)
T7F1C 043:612 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3632ms total)
T7F1C 043:613 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: 79 DF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 3633ms total)
T7F1C 043:614 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 1E 00 00 00  returns 0x04 (0001ms, 3634ms total)
T7F1C 043:615 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 3635ms total)
T7F1C 043:616 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 3636ms total)
T7F1C 043:617 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 1E 00  returns 0x02 (0001ms, 3637ms total)
T7F1C 043:618 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 3638ms total)
T7F1C 043:619 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0001ms, 3639ms total)
T7F1C 043:620 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 3640ms total)
T7F1C 043:621 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 01  returns 0x01 (0001ms, 3641ms total)
T7F1C 043:622 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 24 47 4E 52 4D 43 2C 2C 56 2C 2C 2C 2C 2C 2C 2C ...  returns 0x20 (0001ms, 3642ms total)
T7F1C 043:623 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0001ms, 3643ms total)
T7F1C 043:624 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 00  returns 0x01 (0001ms, 3644ms total)
T7F1C 043:625 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 00  returns 0x01 (0001ms, 3645ms total)
T7F1C 043:627 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 3646ms total)
T7F1C 043:628 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 3647ms total)
T7F1C 043:629 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 3648ms total)
T7F1C 043:630 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 3649ms total)
T7F1C 043:631 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 3650ms total)
T4308 043:632 JLINK_IsHalted()  returns FALSE (0001ms, 3651ms total)
T4308 043:734 JLINK_IsHalted()  returns FALSE (0001ms, 3651ms total)
T4308 043:835 JLINK_IsHalted()  returns FALSE (0001ms, 3651ms total)
T4308 043:936 JLINK_IsHalted()  returns FALSE (0001ms, 3651ms total)
T4308 044:038 JLINK_IsHalted()  returns FALSE (0001ms, 3651ms total)
T7F1C 044:140 JLINK_ReadMemEx(0x0201BF2C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF2C) - Data: 39 2C 39 39 2E 39 2C 31 2A 30 41 0D 0A 24 47 4E ...  returns 0x5B0 (0016ms, 3666ms total)
T7F1C 044:158 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0001ms, 3667ms total)
T7F1C 044:159 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 3668ms total)
T7F1C 044:160 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 3669ms total)
T7F1C 044:161 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 3670ms total)
T7F1C 044:162 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 3671ms total)
T7F1C 044:163 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0001ms, 3672ms total)
T7F1C 044:164 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 80 3F  returns 0x04 (0001ms, 3673ms total)
T7F1C 044:165 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 10  returns 0x01 (0001ms, 3674ms total)
T7F1C 044:166 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 3675ms total)
T7F1C 044:167 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0001ms, 3676ms total)
T7F1C 044:168 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0002ms, 3678ms total)
T7F1C 044:170 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: 79 DF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 3679ms total)
T7F1C 044:171 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 1E 00 00 00  returns 0x04 (0001ms, 3680ms total)
T7F1C 044:172 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 3681ms total)
T7F1C 044:173 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 3682ms total)
T7F1C 044:174 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 1F 00  returns 0x02 (0001ms, 3683ms total)
T7F1C 044:175 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 3684ms total)
T7F1C 044:176 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0001ms, 3685ms total)
T7F1C 044:177 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 3686ms total)
T7F1C 044:178 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 01  returns 0x01 (0001ms, 3687ms total)
T7F1C 044:179 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 24 47 4E 52 4D 43 2C 2C 56 2C 2C 2C 2C 2C 2C 2C ...  returns 0x20 (0001ms, 3688ms total)
T7F1C 044:180 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0001ms, 3689ms total)
T7F1C 044:181 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 00  returns 0x01 (0001ms, 3690ms total)
T7F1C 044:182 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 00  returns 0x01 (0001ms, 3691ms total)
T7F1C 044:183 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 3692ms total)
T7F1C 044:184 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 3693ms total)
T7F1C 044:185 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 3694ms total)
T7F1C 044:186 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 3695ms total)
T7F1C 044:187 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0002ms, 3697ms total)
T4308 044:189 JLINK_IsHalted()  returns FALSE (0001ms, 3698ms total)
T4308 044:290 JLINK_IsHalted()  returns FALSE (0001ms, 3698ms total)
T4308 044:392 JLINK_IsHalted()  returns FALSE (0001ms, 3698ms total)
T4308 044:494 JLINK_IsHalted()  returns FALSE (0001ms, 3698ms total)
T4308 044:595 JLINK_IsHalted()  returns FALSE (0001ms, 3698ms total)
T7F1C 044:697 JLINK_ReadMemEx(0x0201BF2C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF2C) - Data: 39 2C 39 39 2E 39 2C 31 2A 30 41 0D 0A 24 47 4E ...  returns 0x5B0 (0016ms, 3713ms total)
T7F1C 044:713 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0001ms, 3714ms total)
T7F1C 044:714 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 3715ms total)
T7F1C 044:715 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 3716ms total)
T7F1C 044:718 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 3717ms total)
T7F1C 044:719 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 3718ms total)
T7F1C 044:721 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0001ms, 3719ms total)
T7F1C 044:722 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 3720ms total)
T7F1C 044:723 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 11  returns 0x01 (0001ms, 3721ms total)
T7F1C 044:724 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 3722ms total)
T7F1C 044:725 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0001ms, 3723ms total)
T7F1C 044:726 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3724ms total)
T7F1C 044:727 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: FD DF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 3725ms total)
T7F1C 044:728 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 1E 00 00 00  returns 0x04 (0001ms, 3726ms total)
T7F1C 044:729 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 3727ms total)
T7F1C 044:730 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 3728ms total)
T7F1C 044:731 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 1F 00  returns 0x02 (0001ms, 3729ms total)
T7F1C 044:732 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 3730ms total)
T7F1C 044:733 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0001ms, 3731ms total)
T7F1C 044:734 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 3732ms total)
T7F1C 044:735 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 01  returns 0x01 (0001ms, 3733ms total)
T7F1C 044:736 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 00 00 4E 52 4D 43 2C 2C 56 2C 2C 2C 2C 2C 2C 2C ...  returns 0x20 (0002ms, 3735ms total)
T7F1C 044:738 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0001ms, 3736ms total)
T7F1C 044:739 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 01  returns 0x01 (0001ms, 3737ms total)
T7F1C 044:740 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 01  returns 0x01 (0001ms, 3738ms total)
T7F1C 044:741 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 3739ms total)
T7F1C 044:742 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 3740ms total)
T7F1C 044:743 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 3741ms total)
T7F1C 044:744 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 3742ms total)
T7F1C 044:745 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 3743ms total)
T4308 044:746 JLINK_IsHalted()  returns FALSE (0001ms, 3744ms total)
T4308 044:848 JLINK_IsHalted()  returns FALSE (0001ms, 3744ms total)
T4308 044:949 JLINK_IsHalted()  returns FALSE (0001ms, 3744ms total)
T4308 045:052 JLINK_IsHalted()  returns FALSE (0001ms, 3744ms total)
T4308 045:154 JLINK_IsHalted()  returns FALSE (0001ms, 3744ms total)
T7F1C 045:256 JLINK_ReadMemEx(0x0201BF2C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF2C) - Data: 39 2C 39 39 2E 39 2C 31 2A 30 41 0D 0A 24 47 4E ...  returns 0x5B0 (0016ms, 3759ms total)
T7F1C 045:272 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0001ms, 3760ms total)
T7F1C 045:274 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0000ms, 3761ms total)
T7F1C 045:275 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 3763ms total)
T7F1C 045:277 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 3764ms total)
T7F1C 045:278 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 3765ms total)
T7F1C 045:279 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0001ms, 3766ms total)
T7F1C 045:280 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 3767ms total)
T7F1C 045:281 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 11  returns 0x01 (0001ms, 3768ms total)
T7F1C 045:282 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 3769ms total)
T7F1C 045:283 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0001ms, 3770ms total)
T7F1C 045:284 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3771ms total)
T7F1C 045:285 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: FD DF 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 3773ms total)
T7F1C 045:287 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 20 00 00 00  returns 0x04 (0001ms, 3774ms total)
T7F1C 045:288 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 3775ms total)
T7F1C 045:289 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 3776ms total)
T7F1C 045:290 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 20 00  returns 0x02 (0001ms, 3777ms total)
T7F1C 045:291 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 3778ms total)
T7F1C 045:292 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0002ms, 3780ms total)
T7F1C 045:294 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 3781ms total)
T7F1C 045:295 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 00  returns 0x01 (0001ms, 3782ms total)
T7F1C 045:296 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 00 00 4E 52 4D 43 2C 2C 56 2C 2C 2C 2C 2C 2C 2C ...  returns 0x20 (0001ms, 3783ms total)
T7F1C 045:297 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0001ms, 3784ms total)
T7F1C 045:298 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 01  returns 0x01 (0001ms, 3785ms total)
T7F1C 045:299 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 01  returns 0x01 (0001ms, 3786ms total)
T7F1C 045:300 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 3787ms total)
T7F1C 045:301 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 3788ms total)
T7F1C 045:302 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 3789ms total)
T7F1C 045:303 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 3790ms total)
T7F1C 045:304 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 3791ms total)
T4308 045:306 JLINK_IsHalted()  returns FALSE (0001ms, 3792ms total)
T4308 045:408 JLINK_IsHalted()  returns FALSE (0001ms, 3792ms total)
T4308 045:510 JLINK_IsHalted()  returns FALSE (0001ms, 3792ms total)
T4308 045:611 JLINK_IsHalted()  returns FALSE (0001ms, 3792ms total)
T4308 045:713 JLINK_IsHalted()  returns FALSE (0001ms, 3792ms total)
T7F1C 045:815 JLINK_ReadMemEx(0x0201BF2C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF2C) - Data: 39 2C 39 39 2E 39 2C 31 2A 30 41 0D 0A 24 47 4E ...  returns 0x5B0 (0017ms, 3808ms total)
T7F1C 045:832 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0001ms, 3809ms total)
T7F1C 045:833 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 3810ms total)
T7F1C 045:834 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 3811ms total)
T7F1C 045:836 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 3812ms total)
T7F1C 045:837 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 3813ms total)
T7F1C 045:838 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0001ms, 3814ms total)
T7F1C 045:839 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 00  returns 0x04 (0001ms, 3815ms total)
T7F1C 045:840 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 11  returns 0x01 (0001ms, 3816ms total)
T7F1C 045:841 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 3817ms total)
T7F1C 045:842 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0001ms, 3818ms total)
T7F1C 045:843 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3819ms total)
T7F1C 045:844 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: FD DF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 3820ms total)
T7F1C 045:845 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 20 00 00 00  returns 0x04 (0001ms, 3821ms total)
T7F1C 045:846 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 3822ms total)
T7F1C 045:847 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 3823ms total)
T7F1C 045:848 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 20 00  returns 0x02 (0001ms, 3824ms total)
T7F1C 045:850 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 3825ms total)
T7F1C 045:851 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0001ms, 3826ms total)
T7F1C 045:852 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 3827ms total)
T7F1C 045:853 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 00  returns 0x01 (0001ms, 3828ms total)
T7F1C 045:854 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 00 00 4E 52 4D 43 2C 2C 56 2C 2C 2C 2C 2C 2C 2C ...  returns 0x20 (0002ms, 3830ms total)
T7F1C 045:856 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0001ms, 3831ms total)
T7F1C 045:857 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 01  returns 0x01 (0001ms, 3832ms total)
T7F1C 045:858 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 01  returns 0x01 (0001ms, 3833ms total)
T7F1C 045:859 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 3834ms total)
T7F1C 045:860 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 3835ms total)
T7F1C 045:861 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 3836ms total)
T7F1C 045:862 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 3837ms total)
T7F1C 045:863 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 3838ms total)
T4308 045:864 JLINK_IsHalted()  returns FALSE (0001ms, 3839ms total)
T4308 045:967 JLINK_IsHalted()  returns FALSE (0001ms, 3839ms total)
T4308 046:069 JLINK_IsHalted()  returns FALSE (0000ms, 3838ms total)
T4308 046:170 JLINK_IsHalted()  returns FALSE (0001ms, 3839ms total)
T4308 046:271 JLINK_IsHalted()  returns FALSE (0001ms, 3839ms total)
T7F1C 046:373 JLINK_ReadMemEx(0x0201BF2C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF2C) - Data: 39 2C 39 39 2E 39 2C 31 2A 30 41 0D 0A 24 47 4E ...  returns 0x5B0 (0015ms, 3853ms total)
T7F1C 046:389 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0001ms, 3854ms total)
T7F1C 046:390 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 3855ms total)
T7F1C 046:391 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 3856ms total)
T7F1C 046:393 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 3857ms total)
T7F1C 046:394 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 3858ms total)
T7F1C 046:395 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0001ms, 3859ms total)
T7F1C 046:396 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 80 3F  returns 0x04 (0001ms, 3860ms total)
T7F1C 046:397 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 11  returns 0x01 (0000ms, 3860ms total)
T7F1C 046:397 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 3861ms total)
T7F1C 046:398 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0001ms, 3862ms total)
T7F1C 046:399 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3863ms total)
T7F1C 046:400 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: FD DF 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 3865ms total)
T7F1C 046:402 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 20 00 00 00  returns 0x04 (0001ms, 3866ms total)
T7F1C 046:403 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 3867ms total)
T7F1C 046:404 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 3868ms total)
T7F1C 046:405 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 21 00  returns 0x02 (0001ms, 3869ms total)
T7F1C 046:406 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 3870ms total)
T7F1C 046:407 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0001ms, 3871ms total)
T7F1C 046:408 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 3872ms total)
T7F1C 046:409 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 00  returns 0x01 (0001ms, 3873ms total)
T7F1C 046:410 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 00 00 4E 52 4D 43 2C 2C 56 2C 2C 2C 2C 2C 2C 2C ...  returns 0x20 (0001ms, 3874ms total)
T7F1C 046:411 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0001ms, 3875ms total)
T7F1C 046:412 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 01  returns 0x01 (0001ms, 3876ms total)
T7F1C 046:413 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 01  returns 0x01 (0001ms, 3877ms total)
T7F1C 046:415 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 3878ms total)
T7F1C 046:416 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 3879ms total)
T7F1C 046:417 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 3880ms total)
T7F1C 046:418 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0002ms, 3882ms total)
T7F1C 046:420 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 3883ms total)
T4308 046:421 JLINK_IsHalted()  returns FALSE (0001ms, 3884ms total)
T4308 046:523 JLINK_IsHalted()  returns FALSE (0001ms, 3884ms total)
T4308 046:624 JLINK_IsHalted()  returns FALSE (0001ms, 3884ms total)
T4308 046:726 JLINK_IsHalted()  returns FALSE (0001ms, 3884ms total)
T4308 046:828 JLINK_IsHalted()  returns FALSE (0001ms, 3884ms total)
T7F1C 046:929 JLINK_ReadMemEx(0x0201BF2C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF2C) - Data: 39 2C 39 39 2E 39 2C 31 2A 30 41 0D 0A 24 47 4E ...  returns 0x5B0 (0016ms, 3899ms total)
T7F1C 046:947 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0001ms, 3900ms total)
T7F1C 046:948 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 3901ms total)
T7F1C 046:949 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 3902ms total)
T7F1C 046:950 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 3903ms total)
T7F1C 046:951 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 3904ms total)
T7F1C 046:952 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0001ms, 3905ms total)
T7F1C 046:953 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 80 3F  returns 0x04 (0001ms, 3906ms total)
T7F1C 046:954 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 11  returns 0x01 (0001ms, 3907ms total)
T7F1C 046:955 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 3908ms total)
T7F1C 046:956 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0001ms, 3909ms total)
T7F1C 046:957 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3910ms total)
T7F1C 046:958 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: FD DF 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 3912ms total)
T7F1C 046:960 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 20 00 00 00  returns 0x04 (0000ms, 3912ms total)
T7F1C 046:960 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 3913ms total)
T7F1C 046:961 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 3914ms total)
T7F1C 046:962 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 21 00  returns 0x02 (0001ms, 3915ms total)
T7F1C 046:963 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 3916ms total)
T7F1C 046:964 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0001ms, 3917ms total)
T7F1C 046:965 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0002ms, 3919ms total)
T7F1C 046:967 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 00  returns 0x01 (0001ms, 3920ms total)
T7F1C 046:968 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 00 00 4E 52 4D 43 2C 2C 56 2C 2C 2C 2C 2C 2C 2C ...  returns 0x20 (0001ms, 3921ms total)
T7F1C 046:969 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0001ms, 3922ms total)
T7F1C 046:970 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 01  returns 0x01 (0001ms, 3923ms total)
T7F1C 046:971 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 01  returns 0x01 (0001ms, 3924ms total)
T7F1C 046:972 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 3925ms total)
T7F1C 046:973 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 3926ms total)
T7F1C 046:974 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 3927ms total)
T7F1C 046:976 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 3928ms total)
T7F1C 046:977 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0002ms, 3930ms total)
T4308 046:979 JLINK_IsHalted()  returns FALSE (0001ms, 3931ms total)
T4308 047:081 JLINK_IsHalted()  returns FALSE (0000ms, 3930ms total)
T4308 047:182 JLINK_IsHalted()  returns FALSE (0000ms, 3930ms total)
T4308 047:284 JLINK_IsHalted()  returns FALSE (0001ms, 3931ms total)
T4308 047:386 JLINK_IsHalted()  returns FALSE (0001ms, 3931ms total)
T7F1C 047:488 JLINK_ReadMemEx(0x0201BF2C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF2C) - Data: 39 2C 39 39 2E 39 2C 31 2A 30 41 0D 0A 24 47 4E ...  returns 0x5B0 (0015ms, 3945ms total)
T7F1C 047:504 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0001ms, 3946ms total)
T7F1C 047:505 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 3947ms total)
T7F1C 047:506 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 3948ms total)
T7F1C 047:507 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 3949ms total)
T7F1C 047:508 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 3950ms total)
T7F1C 047:509 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0001ms, 3951ms total)
T7F1C 047:510 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 00 40  returns 0x04 (0001ms, 3952ms total)
T7F1C 047:511 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 11  returns 0x01 (0001ms, 3953ms total)
T7F1C 047:512 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 3954ms total)
T7F1C 047:514 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0000ms, 3955ms total)
T7F1C 047:514 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0002ms, 3957ms total)
T7F1C 047:516 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: FD DF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 3958ms total)
T7F1C 047:517 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 20 00 00 00  returns 0x04 (0001ms, 3959ms total)
T7F1C 047:518 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 3960ms total)
T7F1C 047:519 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 3961ms total)
T7F1C 047:520 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 22 00  returns 0x02 (0001ms, 3962ms total)
T7F1C 047:521 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 3963ms total)
T7F1C 047:522 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0001ms, 3964ms total)
T7F1C 047:523 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 3965ms total)
T7F1C 047:524 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 00  returns 0x01 (0001ms, 3966ms total)
T7F1C 047:525 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 00 00 4E 52 4D 43 2C 2C 56 2C 2C 2C 2C 2C 2C 2C ...  returns 0x20 (0001ms, 3967ms total)
T7F1C 047:526 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0001ms, 3968ms total)
T7F1C 047:527 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 01  returns 0x01 (0001ms, 3969ms total)
T7F1C 047:528 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 01  returns 0x01 (0002ms, 3971ms total)
T7F1C 047:530 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 3972ms total)
T7F1C 047:531 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 3973ms total)
T7F1C 047:532 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 3974ms total)
T7F1C 047:533 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 3975ms total)
T7F1C 047:534 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 3976ms total)
T4308 047:535 JLINK_IsHalted()  returns FALSE (0001ms, 3977ms total)
T4308 047:637 JLINK_IsHalted()  returns FALSE (0001ms, 3977ms total)
T4308 047:739 JLINK_IsHalted()  returns FALSE (0001ms, 3977ms total)
T4308 047:840 JLINK_IsHalted()  returns FALSE (0001ms, 3977ms total)
T4308 047:942 JLINK_IsHalted()  returns FALSE (0001ms, 3977ms total)
T7F1C 048:047 JLINK_ReadMemEx(0x0201BF2C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF2C) - Data: 39 2C 39 39 2E 39 2C 31 2A 30 41 0D 0A 24 47 4E ...  returns 0x5B0 (0017ms, 3993ms total)
T7F1C 048:065 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0001ms, 3994ms total)
T7F1C 048:066 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 3995ms total)
T7F1C 048:067 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 3996ms total)
T7F1C 048:068 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 3997ms total)
T7F1C 048:070 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 3998ms total)
T7F1C 048:071 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0001ms, 3999ms total)
T7F1C 048:072 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 40 40  returns 0x04 (0001ms, 4000ms total)
T7F1C 048:073 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 11  returns 0x01 (0001ms, 4001ms total)
T7F1C 048:074 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 4002ms total)
T7F1C 048:075 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0001ms, 4003ms total)
T7F1C 048:076 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 4004ms total)
T7F1C 048:077 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: FD DF 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 4006ms total)
T7F1C 048:079 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 23 00 00 00  returns 0x04 (0001ms, 4007ms total)
T7F1C 048:080 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 4008ms total)
T7F1C 048:081 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 4009ms total)
T7F1C 048:082 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 23 00  returns 0x02 (0001ms, 4010ms total)
T7F1C 048:083 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 4011ms total)
T7F1C 048:084 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0001ms, 4012ms total)
T7F1C 048:085 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 4013ms total)
T7F1C 048:086 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 01  returns 0x01 (0001ms, 4014ms total)
T7F1C 048:087 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 00 00 4E 52 4D 43 2C 2C 56 2C 2C 2C 2C 2C 2C 2C ...  returns 0x20 (0001ms, 4015ms total)
T7F1C 048:088 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0001ms, 4016ms total)
T7F1C 048:089 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 01  returns 0x01 (0001ms, 4017ms total)
T7F1C 048:090 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 01  returns 0x01 (0001ms, 4018ms total)
T7F1C 048:091 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 4019ms total)
T7F1C 048:092 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 4020ms total)
T7F1C 048:093 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 4021ms total)
T7F1C 048:094 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 4022ms total)
T7F1C 048:095 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 4023ms total)
T4308 048:096 JLINK_IsHalted()  returns FALSE (0001ms, 4024ms total)
T4308 048:198 JLINK_IsHalted()  returns FALSE (0000ms, 4023ms total)
T4308 048:300 JLINK_IsHalted()  returns FALSE (0001ms, 4024ms total)
T4308 048:401 JLINK_IsHalted()  returns FALSE (0001ms, 4024ms total)
T4308 048:502 JLINK_IsHalted()  returns FALSE (0001ms, 4024ms total)
T7F1C 048:604 JLINK_ReadMemEx(0x0201BF2C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF2C) - Data: 39 2C 39 39 2E 39 2C 31 2A 30 41 0D 0A 24 47 4E ...  returns 0x5B0 (0017ms, 4040ms total)
T7F1C 048:622 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0001ms, 4041ms total)
T7F1C 048:623 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 4042ms total)
T7F1C 048:624 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 4043ms total)
T7F1C 048:626 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 4044ms total)
T7F1C 048:627 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 4045ms total)
T7F1C 048:628 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0001ms, 4046ms total)
T7F1C 048:629 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 40 40  returns 0x04 (0001ms, 4047ms total)
T7F1C 048:630 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 11  returns 0x01 (0001ms, 4048ms total)
T7F1C 048:631 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 4049ms total)
T7F1C 048:632 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0001ms, 4050ms total)
T7F1C 048:633 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 4051ms total)
T7F1C 048:634 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: FD DF 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 4052ms total)
T7F1C 048:635 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 23 00 00 00  returns 0x04 (0001ms, 4053ms total)
T7F1C 048:636 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 4054ms total)
T7F1C 048:637 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 4055ms total)
T7F1C 048:638 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 23 00  returns 0x02 (0001ms, 4056ms total)
T7F1C 048:639 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0001ms, 4057ms total)
T7F1C 048:640 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0001ms, 4058ms total)
T7F1C 048:641 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 4059ms total)
T7F1C 048:642 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 01  returns 0x01 (0001ms, 4060ms total)
T7F1C 048:643 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 00 00 4E 52 4D 43 2C 2C 56 2C 2C 2C 2C 2C 2C 2C ...  returns 0x20 (0001ms, 4061ms total)
T7F1C 048:644 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0001ms, 4062ms total)
T7F1C 048:645 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 01  returns 0x01 (0001ms, 4063ms total)
T7F1C 048:646 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 01  returns 0x01 (0001ms, 4064ms total)
T7F1C 048:648 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 4065ms total)
T7F1C 048:649 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 4066ms total)
T7F1C 048:650 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 4067ms total)
T7F1C 048:651 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 4068ms total)
T7F1C 048:652 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 4069ms total)
T4308 048:653 JLINK_IsHalted()  returns FALSE (0001ms, 4070ms total)
T4308 048:755 JLINK_IsHalted()  returns FALSE (0001ms, 4070ms total)
T4308 048:857 JLINK_IsHalted()  returns FALSE (0001ms, 4070ms total)
T4308 048:959 JLINK_IsHalted()  returns FALSE (0001ms, 4070ms total)
T7F1C 049:024 JLINK_SetBPEx(Addr = 0x00009A30, Type = 0xFFFFFFF2) -- CPU is running -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002008)  returns 0x00000004 (0002ms, 4071ms total)
T4308 049:060 JLINK_IsHalted()  returns TRUE (0004ms, 4075ms total)
T4308 049:064 JLINK_Halt()  returns 0x00 (0000ms, 4071ms total)
T4308 049:064 JLINK_IsHalted()  returns TRUE (0000ms, 4071ms total)
T4308 049:064 JLINK_IsHalted()  returns TRUE (0000ms, 4071ms total)
T4308 049:064 JLINK_IsHalted()  returns TRUE (0000ms, 4071ms total)
T4308 049:064 JLINK_ReadReg(R15 (PC))  returns 0x00009A30 (0000ms, 4071ms total)
T4308 049:064 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 4071ms total)
T4308 049:064 JLINK_ClrBPEx(BPHandle = 0x00000004)  returns 0x00 (0000ms, 4071ms total)
T4308 049:064 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0002ms, 4073ms total)
T4308 049:066 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 4074ms total)
T4308 049:067 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0000ms, 4074ms total)
T4308 049:068 JLINK_ReadReg(R0)  returns 0x00000001 (0000ms, 4074ms total)
T4308 049:068 JLINK_ReadReg(R1)  returns 0x00000001 (0000ms, 4074ms total)
T4308 049:068 JLINK_ReadReg(R2)  returns 0x00000018 (0000ms, 4074ms total)
T4308 049:068 JLINK_ReadReg(R3)  returns 0x00000008 (0000ms, 4074ms total)
T4308 049:068 JLINK_ReadReg(R4)  returns 0x02019748 (0000ms, 4074ms total)
T4308 049:068 JLINK_ReadReg(R5)  returns 0x00000000 (0000ms, 4074ms total)
T4308 049:068 JLINK_ReadReg(R6)  returns 0x0201901C (0000ms, 4074ms total)
T4308 049:068 JLINK_ReadReg(R7)  returns 0x00000000 (0000ms, 4074ms total)
T4308 049:068 JLINK_ReadReg(R8)  returns 0xFBEAB6D7 (0000ms, 4074ms total)
T4308 049:068 JLINK_ReadReg(R9)  returns 0x164B985F (0000ms, 4074ms total)
T4308 049:068 JLINK_ReadReg(R10)  returns 0x9F53C30D (0000ms, 4074ms total)
T4308 049:068 JLINK_ReadReg(R11)  returns 0x1FCB9C8A (0000ms, 4074ms total)
T4308 049:068 JLINK_ReadReg(R12)  returns 0x00000003 (0000ms, 4074ms total)
T4308 049:068 JLINK_ReadReg(R13 (SP))  returns 0x0202F7F0 (0000ms, 4074ms total)
T4308 049:068 JLINK_ReadReg(R14)  returns 0x00002867 (0000ms, 4074ms total)
T4308 049:068 JLINK_ReadReg(R15 (PC))  returns 0x00009A30 (0000ms, 4074ms total)
T4308 049:068 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 4074ms total)
T4308 049:068 JLINK_ReadReg(MSP)  returns 0x0202F7F0 (0000ms, 4074ms total)
T4308 049:068 JLINK_ReadReg(PSP)  returns 0x7D9496A8 (0000ms, 4074ms total)
T4308 049:068 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 4074ms total)
T7F1C 049:075 JLINK_ReadMemEx(0x02019664, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019664) - Data: 00 00 00 00  returns 0x04 (0001ms, 4075ms total)
T7F1C 049:076 JLINK_ReadMemEx(0x0201965C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201965C) - Data: 00 00 00 00  returns 0x04 (0001ms, 4076ms total)
T7F1C 049:077 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 4077ms total)
T7F1C 049:078 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 4078ms total)
T7F1C 049:079 JLINK_ReadMemEx(0x02019680, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019680) - Data: 00 00 00 00  returns 0x04 (0001ms, 4079ms total)
T7F1C 049:080 JLINK_ReadMemEx(0x02019668, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019668) - Data: 00 00 00 00  returns 0x04 (0001ms, 4080ms total)
T7F1C 049:081 JLINK_ReadMemEx(0x02019764, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019764) - Data: 00 00 80 40  returns 0x04 (0001ms, 4081ms total)
T7F1C 049:082 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 11  returns 0x01 (0001ms, 4082ms total)
T7F1C 049:083 JLINK_ReadMemEx(0x020195B2, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195B2) - Data: EE BE 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 4083ms total)
T7F1C 049:084 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 41  returns 0x01 (0001ms, 4084ms total)
T7F1C 049:085 JLINK_ReadMemEx(0x020195A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020195A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 4085ms total)
T7F1C 049:086 JLINK_ReadMemEx(0x020195BC, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x020195BC) - Data: FD DF 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 4087ms total)
T7F1C 049:088 JLINK_ReadMemEx(0x02019690, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019690) - Data: 23 00 00 00  returns 0x04 (0001ms, 4088ms total)
T7F1C 049:089 JLINK_ReadMemEx(0x02019694, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019694) - Data: 00 00 00 00  returns 0x04 (0001ms, 4089ms total)
T7F1C 049:091 JLINK_ReadMemEx(0x02019040, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019040) - Data: 02 00 00 00  returns 0x04 (0001ms, 4090ms total)
T7F1C 049:092 JLINK_ReadMemEx(0x02019650, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019650) - Data: 24 00  returns 0x02 (0000ms, 4090ms total)
T7F1C 049:092 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 01  returns 0x01 (0002ms, 4092ms total)
T7F1C 049:094 JLINK_ReadMemEx(0x0201A6AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6AE) - Data: FF FF  returns 0x02 (0001ms, 4093ms total)
T7F1C 049:095 JLINK_ReadMemEx(0x0201A6B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A6B0) - Data: FF FF  returns 0x02 (0001ms, 4094ms total)
T7F1C 049:096 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 01  returns 0x01 (0001ms, 4095ms total)
T7F1C 049:097 JLINK_ReadMemEx(0x0201BDF8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BDF8) - Data: 00 00 4E 52 4D 43 2C 2C 56 2C 2C 2C 2C 2C 2C 2C ...  returns 0x20 (0001ms, 4096ms total)
T7F1C 049:098 JLINK_ReadMemEx(0x02019760, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019760) - Data: 44 0F  returns 0x02 (0001ms, 4097ms total)
T7F1C 049:099 JLINK_ReadMemEx(0x0201901C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901C) - Data: 01  returns 0x01 (0001ms, 4098ms total)
T7F1C 049:100 JLINK_ReadMemEx(0x02019018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019018) - Data: 01  returns 0x01 (0001ms, 4099ms total)
T7F1C 049:102 JLINK_ReadMemEx(0x020197B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B8) - Data: 00 00  returns 0x02 (0001ms, 4100ms total)
T7F1C 049:103 JLINK_ReadMemEx(0x020197BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197BA) - Data: 00 00  returns 0x02 (0001ms, 4101ms total)
T7F1C 049:104 JLINK_ReadMemEx(0x02019670, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019670) - Data: 00 00 00 00  returns 0x04 (0001ms, 4102ms total)
T7F1C 049:106 JLINK_ReadMemEx(0x020197EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EA) - Data: 00 00  returns 0x02 (0001ms, 4103ms total)
T7F1C 049:107 JLINK_ReadMemEx(0x020197EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197EC) - Data: 00 00  returns 0x02 (0001ms, 4104ms total)
T7F1C 049:108 JLINK_ReadMemEx(0x0201BF2C, 0x05B0 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1456 bytes @ 0x0201BF2C) - Data: 39 2C 39 39 2E 39 2C 31 2A 30 41 0D 0A 24 47 4E ...  returns 0x5B0 (0016ms, 4120ms total)
T7F1C 049:132 JLINK_ReadMemEx(0x00009A26, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00009A00) -- Updating C cache (64 bytes @ 0x00009A00) -- Read from C cache (2 bytes @ 0x00009A26) - Data: 01 F0  returns 0x02 (0002ms, 4122ms total)
T7F1C 049:134 JLINK_ReadMemEx(0x00009A28, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00009A40) -- Updating C cache (64 bytes @ 0x00009A40) -- Read from C cache (60 bytes @ 0x00009A28) - Data: 81 FD 31 78 00 28 02 D0 00 29 C5 D1 B7 E7 01 29 ...  returns 0x3C (0002ms, 4124ms total)
T7F1C 049:136 JLINK_ReadMemEx(0x00009A28, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009A28) - Data: 81 FD  returns 0x02 (0000ms, 4124ms total)
T7F1C 049:136 JLINK_ReadMemEx(0x00009A2A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009A2A) - Data: 31 78  returns 0x02 (0000ms, 4124ms total)
T7F1C 049:136 JLINK_ReadMemEx(0x00009A2C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009A2C) - Data: 00 28 02 D0 00 29 C5 D1 B7 E7 01 29 C2 D1 37 70 ...  returns 0x3C (0000ms, 4124ms total)
T7F1C 049:136 JLINK_ReadMemEx(0x00009A2C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009A2C) - Data: 00 28  returns 0x02 (0000ms, 4124ms total)
T7F1C 049:136 JLINK_ReadMemEx(0x00009A2C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009A2C) - Data: 00 28 02 D0 00 29 C5 D1 B7 E7 01 29 C2 D1 37 70 ...  returns 0x3C (0001ms, 4125ms total)
T7F1C 049:137 JLINK_ReadMemEx(0x00009A2C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009A2C) - Data: 00 28  returns 0x02 (0000ms, 4125ms total)
T7F1C 049:137 JLINK_ReadMemEx(0x00009A2E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009A2E) - Data: 02 D0  returns 0x02 (0000ms, 4125ms total)
T7F1C 049:137 JLINK_ReadMemEx(0x00009A2E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009A2E) - Data: 02 D0  returns 0x02 (0000ms, 4125ms total)
T7F1C 049:137 JLINK_ReadMemEx(0x00009A30, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00009A30) - Data: 00 29 C5 D1 B7 E7 01 29 C2 D1 37 70 51 48 C7 83 ...  returns 0x3C (0000ms, 4125ms total)
T7F1C 049:137 JLINK_ReadMemEx(0x00009A30, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00009A30) - Data: 00 29  returns 0x02 (0000ms, 4125ms total)
T7F1C 049:931 JLINK_ReadMemEx(0x000099A8, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x00009980) -- Updating C cache (128 bytes @ 0x00009980) -- Read from C cache (60 bytes @ 0x000099A8) - Data: 3C 48 04 70 34 70 3C 48 07 70 03 F0 D5 FA 20 46 ...  returns 0x3C (0002ms, 4127ms total)
T7F1C 049:933 JLINK_ReadMemEx(0x000099A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099A8) - Data: 3C 48  returns 0x02 (0000ms, 4127ms total)
T7F1C 049:933 JLINK_ReadMemEx(0x000099AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099AA) - Data: 04 70  returns 0x02 (0000ms, 4127ms total)
T7F1C 049:933 JLINK_ReadMemEx(0x000099AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099AA) - Data: 04 70  returns 0x02 (0000ms, 4127ms total)
T7F1C 049:933 JLINK_ReadMemEx(0x000099AC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000099AC) - Data: 34 70 3C 48 07 70 03 F0 D5 FA 20 46 21 46 7E 4C ...  returns 0x3C (0001ms, 4128ms total)
T7F1C 049:934 JLINK_ReadMemEx(0x000099AC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099AC) - Data: 34 70  returns 0x02 (0000ms, 4128ms total)
T7F1C 049:934 JLINK_ReadMemEx(0x000099AC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000099AC) - Data: 34 70 3C 48 07 70 03 F0 D5 FA 20 46 21 46 7E 4C ...  returns 0x3C (0000ms, 4128ms total)
T7F1C 049:934 JLINK_ReadMemEx(0x000099AC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099AC) - Data: 34 70  returns 0x02 (0000ms, 4128ms total)
T7F1C 049:934 JLINK_ReadMemEx(0x000099AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000099AE) - Data: 3C 48  returns 0x02 (0000ms, 4128ms total)
T7F1C 053:125 JLINK_Close() -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0014ms, 4142ms total)
T7F1C 053:125  (0014ms, 4142ms total)
T7F1C 053:125 Closed (0014ms, 4142ms total)