WXK
2024-09-29 58b790f4d23214d3ab8e145c38df2ef8e5bed67c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
 
T76A4 000:046 SEGGER J-Link V6.30d Log File (0000ms, 0027ms total)
T76A4 000:046 DLL Compiled: Feb 16 2018 13:30:32 (0000ms, 0027ms total)
T76A4 000:046 Logging started @ 2024-09-27 10:14 (0000ms, 0027ms total)
T76A4 000:046 JLINK_SetWarnOutHandler(...) (0000ms, 0027ms total)
T76A4 000:046 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 (0010ms, 0037ms total)
T76A4 000:046 WEBSRV Webserver running on local port 19080 (0010ms, 0037ms total)
T76A4 000:046   returns O.K. (0010ms, 0037ms total)
T76A4 000:056 JLINK_GetEmuCaps()  returns 0x88EA5833 (0000ms, 0037ms total)
T76A4 000:056 JLINK_TIF_GetAvailable(...) (0001ms, 0038ms total)
T76A4 000:057 JLINK_SetErrorOutHandler(...) (0000ms, 0038ms total)
T76A4 000:057 JLINK_ExecCommand("ProjectFile = "C:\git-mk8000\ChinaUWBProject - ÊÖ»·\keil\JLinkSettings.ini"", ...). C:\Keil_v5\ARM\Segger\JLinkDevices.xml evaluated successfully.  returns 0x00 (0091ms, 0129ms total)
T76A4 000:148 JLINK_ExecCommand("Device = MK8000", ...). Device "MK8000" selected.  returns 0x00 (0006ms, 0135ms total)
T76A4 000:154 JLINK_ExecCommand("DisableConnectionTimeout", ...).   returns 0x01 (0000ms, 0135ms total)
T76A4 000:154 JLINK_GetHardwareVersion()  returns 0x11170 (0000ms, 0135ms total)
T76A4 000:154 JLINK_GetDLLVersion()  returns 63004 (0000ms, 0135ms total)
T76A4 000:154 JLINK_GetFirmwareString(...) (0000ms, 0135ms total)
T76A4 000:154 JLINK_GetDLLVersion()  returns 63004 (0000ms, 0135ms total)
T76A4 000:154 JLINK_GetCompileDateTime() (0000ms, 0135ms total)
T76A4 000:154 JLINK_GetFirmwareString(...) (0000ms, 0135ms total)
T76A4 000:154 JLINK_GetHardwareVersion()  returns 0x11170 (0000ms, 0135ms total)
T76A4 000:154 JLINK_TIF_Select(JLINKARM_TIF_SWD)  returns 0x00 (0001ms, 0136ms total)
T76A4 000:155 JLINK_SetSpeed(10000) (0000ms, 0136ms total)
T76A4 000:155 JLINK_GetId() >0x10B TIF>Found SW-DP with ID 0x0BB11477 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF>Scanning AP map to find all available APs >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>AP[1]: Stopped AP scan as end of AP map has been reachedAP[0]: AHB-AP (IDR: 0x04770021)Iterating through AP map to find AHB-AP to use
 >0x42 TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x42 TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>AP[0]: Core foundAP[0]: AHB-AP ROM base: 0xE00FF000 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>CPUID register: 0x410CC200. Implementer code: 0x41 (ARM)Found Cortex-M0 r0p0, Little endian. -- CPU_ReadMem(4 bytes @ 0xE000EDF0)
 -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE0002000)FPUnit: 4 code (BP) slots and 0 literal slots -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_WriteMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000)CoreSight components:ROMTbl[0] @ E00FF000 -- CPU_ReadMem(16 bytes @ 0xE00FF000) -- CPU_ReadMem(16 bytes @ 0xE000EFF0) -- CPU_ReadMem(16 bytes @ 0xE000EFE0)ROMTbl[0][0]: E000E000, CID: B105E00D, PID: 000BB008 SCS
 -- CPU_ReadMem(16 bytes @ 0xE0001FF0) -- CPU_ReadMem(16 bytes @ 0xE0001FE0)ROMTbl[0][1]: E0001000, CID: B105E00D, PID: 000BB00A DWT -- CPU_ReadMem(16 bytes @ 0xE0002FF0) -- CPU_ReadMem(16 bytes @ 0xE0002FE0)ROMTbl[0][2]: E0002000, CID: B105E00D, PID: 000BB00B FPB >0x0D TIF> >0x21 TIF>  returns 0x0BB11477 (0134ms, 0270ms total)
T76A4 000:289 JLINK_GetDLLVersion()  returns 63004 (0000ms, 0270ms total)
T76A4 000:289 JLINK_CORE_GetFound()  returns 0x60000FF (0000ms, 0270ms total)
T76A4 000:289 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xE00FF000  returns 0x00 (0000ms, 0270ms total)
T76A4 000:289 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xE00FF000  returns 0x00 (0000ms, 0270ms total)
T76A4 000:289 JLINK_GetDebugInfo(0x101 = JLINKARM_DEBUG_INFO_ETM_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0270ms total)
T76A4 000:289 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, 0271ms total)
T76A4 000:290 JLINK_GetDebugInfo(0x102 = JLINKARM_DEBUG_INFO_MTB_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0271ms total)
T76A4 000:290 JLINK_GetDebugInfo(0x103 = JLINKARM_DEBUG_INFO_TPIU_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0271ms total)
T76A4 000:290 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, 0272ms total)
T76A4 000:291 JLINK_GetDebugInfo(0x104 = JLINKARM_DEBUG_INFO_ITM_ADDR_INDEX) -- Value=0xE0000000  returns 0x00 (0000ms, 0272ms total)
T76A4 000:291 JLINK_GetDebugInfo(0x105 = JLINKARM_DEBUG_INFO_DWT_ADDR_INDEX) -- Value=0xE0001000  returns 0x00 (0000ms, 0272ms total)
T76A4 000:291 JLINK_GetDebugInfo(0x106 = JLINKARM_DEBUG_INFO_FPB_ADDR_INDEX) -- Value=0xE0002000  returns 0x00 (0000ms, 0272ms total)
T76A4 000:291 JLINK_GetDebugInfo(0x107 = JLINKARM_DEBUG_INFO_NVIC_ADDR_INDEX) -- Value=0xE000E000  returns 0x00 (0000ms, 0272ms total)
T76A4 000:291 JLINK_GetDebugInfo(0x10C = JLINKARM_DEBUG_INFO_DBG_ADDR_INDEX) -- Value=0xE000EDF0  returns 0x00 (0000ms, 0272ms total)
T76A4 000:291 JLINK_GetDebugInfo(0x01 = Unknown) -- Value=0x00000000  returns 0x00 (0000ms, 0272ms total)
T76A4 000:291 JLINK_ReadMemU32(0xE000ED00, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED00) - Data: 00 C2 0C 41  returns 0x01 (0001ms, 0273ms total)
T76A4 000:292 JLINK_GetDebugInfo(0x10F = JLINKARM_DEBUG_INFO_HAS_CORTEX_M_SECURITY_EXT_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0273ms total)
T76A4 000:292 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 0273ms total)
T76A4 000:292 JLINK_Reset() -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDFC)Reset: Halt core after reset via DEMCR.VC_CORERESET. >0x35 TIF>Reset: Reset device via AIRCR.SYSRESETREQ. -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000ED0C) >0x0D TIF> >0x28 TIF> -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDFC)
 -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0069ms, 0342ms total)
T76A4 000:361 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0342ms total)
T76A4 000:361 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0342ms total)
T76A4 000:361 JLINK_Halt()  returns 0x00 (0000ms, 0342ms total)
T76A4 000:361 JLINK_ReadMemU32(0xE000EDF0, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) - Data: 03 00 03 00  returns 0x01 (0001ms, 0343ms total)
T76A4 000:362 JLINK_WriteU32(0xE000EDF0, 0xA05F0003) -- CPU_WriteMem(4 bytes @ 0xE000EDF0)  returns 0x00 (0001ms, 0344ms total)
T76A4 000:363 JLINK_WriteU32(0xE000EDFC, 0x01000000) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)  returns 0x00 (0000ms, 0344ms total)
T76A4 000:363 JLINK_GetHWStatus(...)  returns 0x00 (0001ms, 0345ms total)
T76A4 000:364 JLINK_GetNumBPUnits(Type = 0xFFFFFF00)  returns 0x04 (0000ms, 0345ms total)
T76A4 000:364 JLINK_GetNumBPUnits(Type = 0xF0)  returns 0x2000 (0000ms, 0345ms total)
T76A4 000:364 JLINK_GetNumWPUnits()  returns 0x02 (0000ms, 0345ms total)
T76A4 000:364 JLINK_GetSpeed()  returns 0xFA0 (0000ms, 0345ms total)
T76A4 000:364 JLINK_ReadMemU32(0xE000E004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000E004) - Data: 00 00 00 00  returns 0x01 (0001ms, 0346ms total)
T76A4 000:365 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0346ms total)
T76A4 000:365 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0346ms total)
T76A4 000:439 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 0346ms total)
T76A4 000:439 JLINK_Reset() -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)Reset: Halt core after reset via DEMCR.VC_CORERESET. >0x35 TIF>Reset: Reset device via AIRCR.SYSRESETREQ. -- CPU_WriteMem(4 bytes @ 0xE000ED0C) >0x0D TIF> >0x28 TIF> -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE0002000)
 -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0071ms, 0417ms total)
T76A4 000:510 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0417ms total)
T76A4 000:510 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0417ms total)
T76A4 000:510 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, 0419ms total)
T76A4 000:512 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0000ms, 0419ms total)
T76A4 000:512 JLINK_ReadMemEx(0x0300373A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373A) - Data: 4E F8  returns 0x02 (0001ms, 0420ms total)
T76A4 000:513 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, 0422ms total)
T76A4 000:515 JLINK_ReadMemEx(0x0300373C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373C) - Data: FC F7  returns 0x02 (0000ms, 0422ms total)
T76A4 000:515 JLINK_ReadMemEx(0x0300373E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373E) - Data: C0 FC  returns 0x02 (0001ms, 0423ms total)
T76A4 000:516 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, 0424ms total)
T76A4 000:517 JLINK_ReadMemEx(0x03003740, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003740) - Data: 80 B5  returns 0x02 (0001ms, 0425ms total)
T76A4 000:518 JLINK_ReadMemEx(0x03003742, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003742) - Data: 0D 49  returns 0x02 (0000ms, 0425ms total)
T76A4 000:518 JLINK_ReadMemEx(0x03003742, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003742) - Data: 0D 49  returns 0x02 (0001ms, 0426ms total)
T76A4 000:519 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, 0427ms total)
T76A4 000:520 JLINK_ReadMemEx(0x03003744, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003744) - Data: 08 68  returns 0x02 (0001ms, 0428ms total)
T76A4 000:521 JLINK_ReadMemEx(0x03003744, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003744) - Data: 08 68 00 28 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 ...  returns 0x3C (0001ms, 0429ms total)
T76A4 000:522 JLINK_ReadMemEx(0x03003744, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003744) - Data: 08 68  returns 0x02 (0001ms, 0430ms total)
T76A4 000:523 JLINK_ReadMemEx(0x03003746, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003746) - Data: 00 28  returns 0x02 (0001ms, 0431ms total)
T76A4 000:524 JLINK_ReadMemEx(0x03003746, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003746) - Data: 00 28  returns 0x02 (0000ms, 0431ms total)
T76A4 000:524 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, 0433ms total)
T76A4 000:526 JLINK_ReadMemEx(0x03003748, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003748) - Data: 00 D4  returns 0x02 (0000ms, 0433ms total)
T76A4 000:526 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, 0435ms total)
T76A4 000:528 JLINK_ReadMemEx(0x03003748, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003748) - Data: 00 D4  returns 0x02 (0000ms, 0435ms total)
T76A4 000:528 JLINK_ReadMemEx(0x0300374A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300374A) - Data: 80 BD  returns 0x02 (0001ms, 0436ms total)
T76A4 001:799 JLINK_ReadReg(R0)  returns 0x01FCD120 (0001ms, 0437ms total)
T76A4 001:800 JLINK_ReadReg(R1)  returns 0x000F4240 (0000ms, 0437ms total)
T76A4 001:800 JLINK_ReadReg(R2)  returns 0x0000000E (0000ms, 0437ms total)
T76A4 001:800 JLINK_ReadReg(R3)  returns 0x00004000 (0000ms, 0437ms total)
T76A4 001:800 JLINK_ReadReg(R4)  returns 0x000007CD (0000ms, 0437ms total)
T76A4 001:800 JLINK_ReadReg(R5)  returns 0x000000CD (0000ms, 0437ms total)
T76A4 001:800 JLINK_ReadReg(R6)  returns 0x00009D48 (0000ms, 0437ms total)
T76A4 001:800 JLINK_ReadReg(R7)  returns 0x02000000 (0000ms, 0437ms total)
T76A4 001:800 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 0437ms total)
T76A4 001:800 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 0437ms total)
T76A4 001:800 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 0437ms total)
T76A4 001:800 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 0437ms total)
T76A4 001:800 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 0437ms total)
T76A4 001:800 JLINK_ReadReg(R13 (SP))  returns 0x0202F800 (0000ms, 0437ms total)
T76A4 001:800 JLINK_ReadReg(R14)  returns 0x00003FF1 (0000ms, 0437ms total)
T76A4 001:800 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0437ms total)
T76A4 001:800 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0437ms total)
T76A4 001:800 JLINK_ReadReg(MSP)  returns 0x0202F800 (0000ms, 0437ms total)
T76A4 001:800 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 0437ms total)
T76A4 001:800 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0437ms total)
T76A4 001:800 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 03 00 00 00  returns 0x04 (0001ms, 0438ms total)
T76A4 001:801 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 03 00 00 00  returns 0x04 (0001ms, 0439ms total)
T76A4 001:802 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 03 00 00 00  returns 0x04 (0000ms, 0439ms total)
T76A4 001:811 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 03 00 00 00  returns 0x04 (0001ms, 0440ms total)
T76A4 001:812 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 03 00 00 00  returns 0x04 (0000ms, 0440ms total)
T76A4 001:812 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 03 00 00 00  returns 0x04 (0001ms, 0441ms total)
T76A4 001:822 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 06  returns 0x01 (0000ms, 0441ms total)
T76A4 001:822 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 06  returns 0x01 (0001ms, 0442ms total)
T76A4 001:823 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 06  returns 0x01 (0001ms, 0443ms total)
T3F3C 001:883 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0001ms, 0444ms total)
T3F3C 001:884 JLINK_SetBPEx(Addr = 0x00003B74, Type = 0xFFFFFFF2)  returns 0x00000001 (0000ms, 0444ms total)
T3F3C 001:884 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU_WriteMem(4 bytes @ 0xE0002014) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0005ms, 0449ms total)
T3F3C 001:990 JLINK_IsHalted()  returns TRUE (0003ms, 0452ms total)
T3F3C 001:993 JLINK_Halt()  returns 0x00 (0000ms, 0449ms total)
T3F3C 001:993 JLINK_IsHalted()  returns TRUE (0000ms, 0449ms total)
T3F3C 001:993 JLINK_IsHalted()  returns TRUE (0000ms, 0449ms total)
T3F3C 001:993 JLINK_IsHalted()  returns TRUE (0000ms, 0449ms total)
T3F3C 001:993 JLINK_ReadReg(R15 (PC))  returns 0x00003B74 (0000ms, 0449ms total)
T3F3C 001:993 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 0449ms total)
T3F3C 001:993 JLINK_ClrBPEx(BPHandle = 0x00000001)  returns 0x00 (0000ms, 0449ms total)
T3F3C 001:993 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0002ms, 0451ms total)
T3F3C 001:995 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0000ms, 0451ms total)
T3F3C 001:995 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0001ms, 0452ms total)
T3F3C 001:996 JLINK_ReadReg(R0)  returns 0x00003B75 (0000ms, 0452ms total)
T3F3C 001:996 JLINK_ReadReg(R1)  returns 0x0201A3B0 (0000ms, 0452ms total)
T3F3C 001:996 JLINK_ReadReg(R2)  returns 0x00000000 (0000ms, 0452ms total)
T3F3C 001:996 JLINK_ReadReg(R3)  returns 0x00008C0F (0000ms, 0452ms total)
T3F3C 001:996 JLINK_ReadReg(R4)  returns 0x00009D48 (0000ms, 0452ms total)
T3F3C 001:996 JLINK_ReadReg(R5)  returns 0x00000001 (0000ms, 0452ms total)
T3F3C 001:996 JLINK_ReadReg(R6)  returns 0x00009D48 (0000ms, 0452ms total)
T3F3C 001:996 JLINK_ReadReg(R7)  returns 0x02000000 (0000ms, 0452ms total)
T3F3C 001:996 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 0452ms total)
T3F3C 001:997 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 0452ms total)
T3F3C 001:997 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 0452ms total)
T3F3C 001:997 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 0452ms total)
T3F3C 001:997 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 0452ms total)
T3F3C 001:997 JLINK_ReadReg(R13 (SP))  returns 0x0202F800 (0000ms, 0452ms total)
T3F3C 001:997 JLINK_ReadReg(R14)  returns 0x00000951 (0000ms, 0452ms total)
T3F3C 001:997 JLINK_ReadReg(R15 (PC))  returns 0x00003B74 (0000ms, 0452ms total)
T3F3C 001:997 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 0452ms total)
T3F3C 001:997 JLINK_ReadReg(MSP)  returns 0x0202F800 (0000ms, 0452ms total)
T3F3C 001:997 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 0452ms total)
T3F3C 001:997 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0452ms total)
T76A4 002:158 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 00 00 00 00  returns 0x04 (0001ms, 0453ms total)
T76A4 002:166 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 00 00 00 00  returns 0x04 (0000ms, 0453ms total)
T76A4 002:173 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 00  returns 0x01 (0001ms, 0454ms total)
T76A4 002:191 JLINK_ReadMemEx(0x00003A74, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x00003A40) -- Updating C cache (128 bytes @ 0x00003A40) -- Read from C cache (60 bytes @ 0x00003A74) - Data: 02 98 00 28 16 D1 FF E7 03 98 01 21 81 40 1C 48 ...  returns 0x3C (0001ms, 0455ms total)
T76A4 002:193 JLINK_ReadMemEx(0x00003A74, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003A74) - Data: 02 98  returns 0x02 (0000ms, 0455ms total)
T76A4 002:193 JLINK_ReadMemEx(0x00003A76, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003A76) - Data: 00 28  returns 0x02 (0000ms, 0455ms total)
T76A4 002:193 JLINK_ReadMemEx(0x00003A76, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003A76) - Data: 00 28  returns 0x02 (0000ms, 0455ms total)
T76A4 002:193 JLINK_ReadMemEx(0x00003A78, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003A78) - Data: 16 D1 FF E7 03 98 01 21 81 40 1C 48 02 68 8A 43 ...  returns 0x3C (0000ms, 0455ms total)
T76A4 002:193 JLINK_ReadMemEx(0x00003A78, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003A78) - Data: 16 D1  returns 0x02 (0000ms, 0455ms total)
T76A4 002:193 JLINK_ReadMemEx(0x00003A78, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003A78) - Data: 16 D1 FF E7 03 98 01 21 81 40 1C 48 02 68 8A 43 ...  returns 0x3C (0000ms, 0455ms total)
T76A4 002:193 JLINK_ReadMemEx(0x00003A78, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003A78) - Data: 16 D1  returns 0x02 (0000ms, 0455ms total)
T76A4 002:193 JLINK_ReadMemEx(0x00003A7A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003A7A) - Data: FF E7  returns 0x02 (0000ms, 0455ms total)
T76A4 002:193 JLINK_ReadMemEx(0x00003A7A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003A7A) - Data: FF E7  returns 0x02 (0000ms, 0455ms total)
T76A4 002:193 JLINK_ReadMemEx(0x00003A7C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003A7C) - Data: 03 98 01 21 81 40 1C 48 02 68 8A 43 02 60 01 98 ...  returns 0x3C (0000ms, 0455ms total)
T76A4 002:193 JLINK_ReadMemEx(0x00003A7C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003A7C) - Data: 03 98  returns 0x02 (0000ms, 0455ms total)
T76A4 002:193 JLINK_ReadMemEx(0x00003A7C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003A7C) - Data: 03 98 01 21 81 40 1C 48 02 68 8A 43 02 60 01 98 ...  returns 0x3C (0000ms, 0455ms total)
T76A4 002:193 JLINK_ReadMemEx(0x00003A7C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003A7C) - Data: 03 98  returns 0x02 (0000ms, 0455ms total)
T76A4 002:193 JLINK_ReadMemEx(0x00003A7E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003A7E) - Data: 01 21  returns 0x02 (0000ms, 0455ms total)
T76A4 002:193 JLINK_ReadMemEx(0x00003A7E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003A7E) - Data: 01 21  returns 0x02 (0000ms, 0455ms total)
T76A4 002:193 JLINK_ReadMemEx(0x00003A80, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003A80) - Data: 81 40 1C 48 02 68 8A 43 02 60 01 98 03 99 49 07 ...  returns 0x3C (0000ms, 0455ms total)
T76A4 002:193 JLINK_ReadMemEx(0x00003A80, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003A80) - Data: 81 40  returns 0x02 (0000ms, 0455ms total)
T76A4 002:193 JLINK_ReadMemEx(0x00003A80, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003A80) - Data: 81 40 1C 48 02 68 8A 43 02 60 01 98 03 99 49 07 ...  returns 0x3C (0000ms, 0455ms total)
T76A4 002:193 JLINK_ReadMemEx(0x00003A80, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003A80) - Data: 81 40  returns 0x02 (0000ms, 0455ms total)
T76A4 002:193 JLINK_ReadMemEx(0x00003A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003A82) - Data: 1C 48  returns 0x02 (0000ms, 0455ms total)
T76A4 002:193 JLINK_ReadMemEx(0x00003A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003A82) - Data: 1C 48  returns 0x02 (0000ms, 0455ms total)
T76A4 002:193 JLINK_ReadMemEx(0x00003A84, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003A84) - Data: 02 68 8A 43 02 60 01 98 03 99 49 07 C9 0E 88 40 ...  returns 0x3C (0000ms, 0455ms total)
T76A4 002:193 JLINK_ReadMemEx(0x00003A84, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003A84) - Data: 02 68  returns 0x02 (0000ms, 0455ms total)
T76A4 002:193 JLINK_ReadMemEx(0x00003A84, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003A84) - Data: 02 68 8A 43 02 60 01 98 03 99 49 07 C9 0E 88 40 ...  returns 0x3C (0000ms, 0455ms total)
T76A4 002:193 JLINK_ReadMemEx(0x00003A84, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003A84) - Data: 02 68  returns 0x02 (0000ms, 0455ms total)
T76A4 002:193 JLINK_ReadMemEx(0x00003A86, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003A86) - Data: 8A 43  returns 0x02 (0000ms, 0455ms total)
T76A4 002:193 JLINK_ReadMemEx(0x00003A86, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003A86) - Data: 8A 43  returns 0x02 (0000ms, 0455ms total)
T76A4 002:193 JLINK_ReadMemEx(0x00003A88, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00003AC0) -- Updating C cache (64 bytes @ 0x00003AC0) -- Read from C cache (60 bytes @ 0x00003A88) - Data: 02 60 01 98 03 99 49 07 C9 0E 88 40 00 99 01 43 ...  returns 0x3C (0002ms, 0457ms total)
T76A4 002:195 JLINK_ReadMemEx(0x00003A88, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003A88) - Data: 02 60  returns 0x02 (0000ms, 0457ms total)
T76A4 002:195 JLINK_ReadMemEx(0x00003A88, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003A88) - Data: 02 60 01 98 03 99 49 07 C9 0E 88 40 00 99 01 43 ...  returns 0x3C (0000ms, 0457ms total)
T76A4 002:195 JLINK_ReadMemEx(0x00003A88, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003A88) - Data: 02 60  returns 0x02 (0000ms, 0457ms total)
T76A4 002:195 JLINK_ReadMemEx(0x00003A8A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003A8A) - Data: 01 98  returns 0x02 (0000ms, 0457ms total)
T76A4 002:195 JLINK_ReadMemEx(0x00003A8A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003A8A) - Data: 01 98  returns 0x02 (0000ms, 0457ms total)
T76A4 002:195 JLINK_ReadMemEx(0x00003A8C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003A8C) - Data: 03 99 49 07 C9 0E 88 40 00 99 01 43 00 91 00 98 ...  returns 0x3C (0000ms, 0457ms total)
T76A4 002:195 JLINK_ReadMemEx(0x00003A8C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003A8C) - Data: 03 99  returns 0x02 (0000ms, 0457ms total)
T76A4 002:195 JLINK_ReadMemEx(0x00003A8C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003A8C) - Data: 03 99 49 07 C9 0E 88 40 00 99 01 43 00 91 00 98 ...  returns 0x3C (0000ms, 0457ms total)
T76A4 002:195 JLINK_ReadMemEx(0x00003A8C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003A8C) - Data: 03 99  returns 0x02 (0000ms, 0457ms total)
T76A4 002:195 JLINK_ReadMemEx(0x00003A8E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003A8E) - Data: 49 07  returns 0x02 (0000ms, 0457ms total)
T76A4 002:195 JLINK_ReadMemEx(0x00003A8E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003A8E) - Data: 49 07  returns 0x02 (0000ms, 0457ms total)
T76A4 002:195 JLINK_ReadMemEx(0x00003A90, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003A90) - Data: C9 0E 88 40 00 99 01 43 00 91 00 98 03 99 C9 08 ...  returns 0x3C (0000ms, 0457ms total)
T76A4 002:195 JLINK_ReadMemEx(0x00003A90, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003A90) - Data: C9 0E  returns 0x02 (0000ms, 0457ms total)
T76A4 002:195 JLINK_ReadMemEx(0x00003A90, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003A90) - Data: C9 0E 88 40 00 99 01 43 00 91 00 98 03 99 C9 08 ...  returns 0x3C (0000ms, 0457ms total)
T76A4 002:195 JLINK_ReadMemEx(0x00003A90, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003A90) - Data: C9 0E  returns 0x02 (0000ms, 0457ms total)
T76A4 002:195 JLINK_ReadMemEx(0x00003A92, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003A92) - Data: 88 40  returns 0x02 (0000ms, 0457ms total)
T76A4 002:195 JLINK_ReadMemEx(0x00003A92, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003A92) - Data: 88 40  returns 0x02 (0000ms, 0457ms total)
T76A4 002:195 JLINK_ReadMemEx(0x00003A94, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003A94) - Data: 00 99 01 43 00 91 00 98 03 99 C9 08 89 00 13 4A ...  returns 0x3C (0000ms, 0457ms total)
T76A4 002:195 JLINK_ReadMemEx(0x00003A94, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003A94) - Data: 00 99  returns 0x02 (0000ms, 0457ms total)
T76A4 002:195 JLINK_ReadMemEx(0x00003A94, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003A94) - Data: 00 99 01 43 00 91 00 98 03 99 C9 08 89 00 13 4A ...  returns 0x3C (0000ms, 0457ms total)
T76A4 002:195 JLINK_ReadMemEx(0x00003A94, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003A94) - Data: 00 99  returns 0x02 (0000ms, 0457ms total)
T76A4 002:195 JLINK_ReadMemEx(0x00003A96, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003A96) - Data: 01 43  returns 0x02 (0000ms, 0457ms total)
T76A4 002:195 JLINK_ReadMemEx(0x00003A96, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003A96) - Data: 01 43  returns 0x02 (0000ms, 0457ms total)
T76A4 002:195 JLINK_ReadMemEx(0x00003A98, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003A98) - Data: 00 91 00 98 03 99 C9 08 89 00 13 4A 88 50 20 E0 ...  returns 0x3C (0000ms, 0457ms total)
T76A4 002:195 JLINK_ReadMemEx(0x00003A98, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003A98) - Data: 00 91  returns 0x02 (0000ms, 0457ms total)
T76A4 002:195 JLINK_ReadMemEx(0x00003A98, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003A98) - Data: 00 91 00 98 03 99 C9 08 89 00 13 4A 88 50 20 E0 ...  returns 0x3C (0000ms, 0457ms total)
T76A4 002:195 JLINK_ReadMemEx(0x00003A98, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003A98) - Data: 00 91  returns 0x02 (0000ms, 0457ms total)
T76A4 002:195 JLINK_ReadMemEx(0x00003A9A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003A9A) - Data: 00 98  returns 0x02 (0000ms, 0457ms total)
T76A4 002:195 JLINK_ReadMemEx(0x00003A9A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003A9A) - Data: 00 98  returns 0x02 (0000ms, 0457ms total)
T76A4 002:195 JLINK_ReadMemEx(0x00003A9C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003A9C) - Data: 03 99 C9 08 89 00 13 4A 88 50 20 E0 02 98 01 28 ...  returns 0x3C (0000ms, 0457ms total)
T76A4 002:195 JLINK_ReadMemEx(0x00003A9C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003A9C) - Data: 03 99  returns 0x02 (0000ms, 0457ms total)
T76A4 002:195 JLINK_ReadMemEx(0x00003A9C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003A9C) - Data: 03 99 C9 08 89 00 13 4A 88 50 20 E0 02 98 01 28 ...  returns 0x3C (0000ms, 0457ms total)
T76A4 002:195 JLINK_ReadMemEx(0x00003A9C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003A9C) - Data: 03 99  returns 0x02 (0000ms, 0457ms total)
T76A4 002:195 JLINK_ReadMemEx(0x00003A9E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003A9E) - Data: C9 08  returns 0x02 (0000ms, 0457ms total)
T76A4 002:196 JLINK_ReadMemEx(0x00003A9E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003A9E) - Data: C9 08  returns 0x02 (0000ms, 0458ms total)
T76A4 002:196 JLINK_ReadMemEx(0x00003AA0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003AA0) - Data: 89 00 13 4A 88 50 20 E0 02 98 01 28 0E D1 FF E7 ...  returns 0x3C (0000ms, 0458ms total)
T76A4 002:196 JLINK_ReadMemEx(0x00003AA0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AA0) - Data: 89 00  returns 0x02 (0000ms, 0458ms total)
T76A4 002:196 JLINK_ReadMemEx(0x00003AA0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003AA0) - Data: 89 00 13 4A 88 50 20 E0 02 98 01 28 0E D1 FF E7 ...  returns 0x3C (0000ms, 0458ms total)
T76A4 002:196 JLINK_ReadMemEx(0x00003AA0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AA0) - Data: 89 00  returns 0x02 (0000ms, 0458ms total)
T76A4 002:196 JLINK_ReadMemEx(0x00003AA2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AA2) - Data: 13 4A  returns 0x02 (0000ms, 0458ms total)
T76A4 002:196 JLINK_ReadMemEx(0x00003AA2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AA2) - Data: 13 4A  returns 0x02 (0000ms, 0458ms total)
T76A4 002:196 JLINK_ReadMemEx(0x00003AA4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003AA4) - Data: 88 50 20 E0 02 98 01 28 0E D1 FF E7 00 98 03 99 ...  returns 0x3C (0000ms, 0458ms total)
T76A4 002:196 JLINK_ReadMemEx(0x00003AA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AA4) - Data: 88 50  returns 0x02 (0000ms, 0458ms total)
T76A4 002:196 JLINK_ReadMemEx(0x00003AA4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003AA4) - Data: 88 50 20 E0 02 98 01 28 0E D1 FF E7 00 98 03 99 ...  returns 0x3C (0000ms, 0458ms total)
T76A4 002:196 JLINK_ReadMemEx(0x00003AA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AA4) - Data: 88 50  returns 0x02 (0000ms, 0458ms total)
T76A4 002:196 JLINK_ReadMemEx(0x00003AA6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AA6) - Data: 20 E0  returns 0x02 (0000ms, 0458ms total)
T76A4 002:196 JLINK_ReadMemEx(0x00003AA6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AA6) - Data: 20 E0  returns 0x02 (0000ms, 0458ms total)
T76A4 002:196 JLINK_ReadMemEx(0x00003AA8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003AA8) - Data: 02 98 01 28 0E D1 FF E7 00 98 03 99 C9 08 89 00 ...  returns 0x3C (0000ms, 0458ms total)
T76A4 002:196 JLINK_ReadMemEx(0x00003AA8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AA8) - Data: 02 98  returns 0x02 (0000ms, 0458ms total)
T76A4 002:196 JLINK_ReadMemEx(0x00003AA8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003AA8) - Data: 02 98 01 28 0E D1 FF E7 00 98 03 99 C9 08 89 00 ...  returns 0x3C (0000ms, 0458ms total)
T76A4 002:196 JLINK_ReadMemEx(0x00003AA8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AA8) - Data: 02 98  returns 0x02 (0000ms, 0458ms total)
T76A4 002:196 JLINK_ReadMemEx(0x00003AAA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AAA) - Data: 01 28  returns 0x02 (0000ms, 0458ms total)
T76A4 002:196 JLINK_ReadMemEx(0x00003AAA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AAA) - Data: 01 28  returns 0x02 (0000ms, 0458ms total)
T76A4 002:196 JLINK_ReadMemEx(0x00003AAC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003AAC) - Data: 0E D1 FF E7 00 98 03 99 C9 08 89 00 0D 4A 88 50 ...  returns 0x3C (0000ms, 0458ms total)
T76A4 002:196 JLINK_ReadMemEx(0x00003AAC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AAC) - Data: 0E D1  returns 0x02 (0000ms, 0458ms total)
T76A4 002:196 JLINK_ReadMemEx(0x00003AAC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003AAC) - Data: 0E D1 FF E7 00 98 03 99 C9 08 89 00 0D 4A 88 50 ...  returns 0x3C (0000ms, 0458ms total)
T76A4 002:196 JLINK_ReadMemEx(0x00003AAC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AAC) - Data: 0E D1  returns 0x02 (0000ms, 0458ms total)
T76A4 002:196 JLINK_ReadMemEx(0x00003AAE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AAE) - Data: FF E7  returns 0x02 (0000ms, 0458ms total)
T76A4 002:196 JLINK_ReadMemEx(0x00003AAE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AAE) - Data: FF E7  returns 0x02 (0000ms, 0458ms total)
T76A4 002:196 JLINK_ReadMemEx(0x00003AB0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003AB0) - Data: 00 98 03 99 C9 08 89 00 0D 4A 88 50 03 98 01 21 ...  returns 0x3C (0000ms, 0458ms total)
T76A4 002:196 JLINK_ReadMemEx(0x00003AB0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AB0) - Data: 00 98  returns 0x02 (0000ms, 0458ms total)
T76A4 002:196 JLINK_ReadMemEx(0x00003AB0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003AB0) - Data: 00 98 03 99 C9 08 89 00 0D 4A 88 50 03 98 01 21 ...  returns 0x3C (0000ms, 0458ms total)
T76A4 002:196 JLINK_ReadMemEx(0x00003AB0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AB0) - Data: 00 98  returns 0x02 (0000ms, 0458ms total)
T76A4 002:196 JLINK_ReadMemEx(0x00003AB2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AB2) - Data: 03 99  returns 0x02 (0000ms, 0458ms total)
T76A4 002:196 JLINK_ReadMemEx(0x00003AB2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AB2) - Data: 03 99  returns 0x02 (0000ms, 0458ms total)
T76A4 002:196 JLINK_ReadMemEx(0x00003AB4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003AB4) - Data: C9 08 89 00 0D 4A 88 50 03 98 01 21 81 40 0C 48 ...  returns 0x3C (0000ms, 0458ms total)
T76A4 002:196 JLINK_ReadMemEx(0x00003AB4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AB4) - Data: C9 08  returns 0x02 (0000ms, 0458ms total)
T76A4 002:196 JLINK_ReadMemEx(0x00003AB4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003AB4) - Data: C9 08 89 00 0D 4A 88 50 03 98 01 21 81 40 0C 48 ...  returns 0x3C (0000ms, 0458ms total)
T76A4 002:196 JLINK_ReadMemEx(0x00003AB4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AB4) - Data: C9 08  returns 0x02 (0000ms, 0458ms total)
T76A4 002:196 JLINK_ReadMemEx(0x00003AB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AB6) - Data: 89 00  returns 0x02 (0000ms, 0458ms total)
T76A4 002:196 JLINK_ReadMemEx(0x00003AB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AB6) - Data: 89 00  returns 0x02 (0000ms, 0458ms total)
T76A4 002:196 JLINK_ReadMemEx(0x00003AB8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003AB8) - Data: 0D 4A 88 50 03 98 01 21 81 40 0C 48 02 68 0A 43 ...  returns 0x3C (0000ms, 0458ms total)
T76A4 002:196 JLINK_ReadMemEx(0x00003AB8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AB8) - Data: 0D 4A  returns 0x02 (0001ms, 0459ms total)
T76A4 002:197 JLINK_ReadMemEx(0x00003AB8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003AB8) - Data: 0D 4A 88 50 03 98 01 21 81 40 0C 48 02 68 0A 43 ...  returns 0x3C (0000ms, 0459ms total)
T76A4 002:197 JLINK_ReadMemEx(0x00003AB8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AB8) - Data: 0D 4A  returns 0x02 (0000ms, 0459ms total)
T76A4 002:197 JLINK_ReadMemEx(0x00003ABA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003ABA) - Data: 88 50  returns 0x02 (0000ms, 0459ms total)
T76A4 002:197 JLINK_ReadMemEx(0x00003ABA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003ABA) - Data: 88 50  returns 0x02 (0000ms, 0459ms total)
T76A4 002:197 JLINK_ReadMemEx(0x00003ABC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003ABC) - Data: 03 98 01 21 81 40 0C 48 02 68 0A 43 02 60 0D E0 ...  returns 0x3C (0000ms, 0459ms total)
T76A4 002:197 JLINK_ReadMemEx(0x00003ABC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003ABC) - Data: 03 98  returns 0x02 (0000ms, 0459ms total)
T76A4 002:197 JLINK_ReadMemEx(0x00003ABC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003ABC) - Data: 03 98 01 21 81 40 0C 48 02 68 0A 43 02 60 0D E0 ...  returns 0x3C (0000ms, 0459ms total)
T76A4 002:197 JLINK_ReadMemEx(0x00003ABC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003ABC) - Data: 03 98  returns 0x02 (0000ms, 0459ms total)
T76A4 002:197 JLINK_ReadMemEx(0x00003ABE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003ABE) - Data: 01 21  returns 0x02 (0000ms, 0459ms total)
T76A4 002:197 JLINK_ReadMemEx(0x00003ABE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003ABE) - Data: 01 21  returns 0x02 (0000ms, 0459ms total)
T76A4 002:197 JLINK_ReadMemEx(0x00003AC0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003AC0) - Data: 81 40 0C 48 02 68 0A 43 02 60 0D E0 00 98 03 99 ...  returns 0x3C (0000ms, 0459ms total)
T76A4 002:197 JLINK_ReadMemEx(0x00003AC0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AC0) - Data: 81 40  returns 0x02 (0000ms, 0459ms total)
T76A4 002:197 JLINK_ReadMemEx(0x00003AC0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003AC0) - Data: 81 40 0C 48 02 68 0A 43 02 60 0D E0 00 98 03 99 ...  returns 0x3C (0000ms, 0459ms total)
T76A4 002:197 JLINK_ReadMemEx(0x00003AC0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AC0) - Data: 81 40  returns 0x02 (0000ms, 0459ms total)
T76A4 002:197 JLINK_ReadMemEx(0x00003AC2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AC2) - Data: 0C 48  returns 0x02 (0000ms, 0459ms total)
T76A4 002:197 JLINK_ReadMemEx(0x00003AC2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AC2) - Data: 0C 48  returns 0x02 (0000ms, 0459ms total)
T76A4 002:197 JLINK_ReadMemEx(0x00003AC4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003AC4) - Data: 02 68 0A 43 02 60 0D E0 00 98 03 99 C9 08 89 00 ...  returns 0x3C (0000ms, 0459ms total)
T76A4 002:197 JLINK_ReadMemEx(0x00003AC4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AC4) - Data: 02 68  returns 0x02 (0000ms, 0459ms total)
T76A4 002:197 JLINK_ReadMemEx(0x00003AC4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003AC4) - Data: 02 68 0A 43 02 60 0D E0 00 98 03 99 C9 08 89 00 ...  returns 0x3C (0000ms, 0459ms total)
T76A4 002:197 JLINK_ReadMemEx(0x00003AC4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AC4) - Data: 02 68  returns 0x02 (0000ms, 0459ms total)
T76A4 002:197 JLINK_ReadMemEx(0x00003AC6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AC6) - Data: 0A 43  returns 0x02 (0000ms, 0459ms total)
T76A4 002:197 JLINK_ReadMemEx(0x00003AC6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AC6) - Data: 0A 43  returns 0x02 (0000ms, 0459ms total)
T76A4 002:197 JLINK_ReadMemEx(0x00003AC8, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00003B00) -- Updating C cache (64 bytes @ 0x00003B00) -- Read from C cache (60 bytes @ 0x00003AC8) - Data: 02 60 0D E0 00 98 03 99 C9 08 89 00 06 4A 88 50 ...  returns 0x3C (0001ms, 0460ms total)
T76A4 002:198 JLINK_ReadMemEx(0x00003AC8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AC8) - Data: 02 60  returns 0x02 (0000ms, 0460ms total)
T76A4 002:198 JLINK_ReadMemEx(0x00003AC8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003AC8) - Data: 02 60 0D E0 00 98 03 99 C9 08 89 00 06 4A 88 50 ...  returns 0x3C (0000ms, 0460ms total)
T76A4 002:198 JLINK_ReadMemEx(0x00003AC8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AC8) - Data: 02 60  returns 0x02 (0000ms, 0460ms total)
T76A4 002:198 JLINK_ReadMemEx(0x00003ACA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003ACA) - Data: 0D E0  returns 0x02 (0000ms, 0460ms total)
T76A4 002:198 JLINK_ReadMemEx(0x00003ACA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003ACA) - Data: 0D E0  returns 0x02 (0000ms, 0460ms total)
T76A4 002:198 JLINK_ReadMemEx(0x00003ACC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003ACC) - Data: 00 98 03 99 C9 08 89 00 06 4A 88 50 03 98 01 21 ...  returns 0x3C (0000ms, 0460ms total)
T76A4 002:198 JLINK_ReadMemEx(0x00003ACC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003ACC) - Data: 00 98  returns 0x02 (0000ms, 0460ms total)
T76A4 002:198 JLINK_ReadMemEx(0x00003ACC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003ACC) - Data: 00 98 03 99 C9 08 89 00 06 4A 88 50 03 98 01 21 ...  returns 0x3C (0000ms, 0460ms total)
T76A4 002:199 JLINK_ReadMemEx(0x00003ACC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003ACC) - Data: 00 98  returns 0x02 (0000ms, 0460ms total)
T76A4 002:199 JLINK_ReadMemEx(0x00003ACE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003ACE) - Data: 03 99  returns 0x02 (0000ms, 0460ms total)
T76A4 002:199 JLINK_ReadMemEx(0x00003ACE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003ACE) - Data: 03 99  returns 0x02 (0000ms, 0460ms total)
T76A4 002:199 JLINK_ReadMemEx(0x00003AD0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003AD0) - Data: C9 08 89 00 06 4A 88 50 03 98 01 21 81 40 05 48 ...  returns 0x3C (0000ms, 0460ms total)
T76A4 002:199 JLINK_ReadMemEx(0x00003AD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AD0) - Data: C9 08  returns 0x02 (0000ms, 0460ms total)
T76A4 002:199 JLINK_ReadMemEx(0x00003AD0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003AD0) - Data: C9 08 89 00 06 4A 88 50 03 98 01 21 81 40 05 48 ...  returns 0x3C (0000ms, 0460ms total)
T76A4 002:199 JLINK_ReadMemEx(0x00003AD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AD0) - Data: C9 08  returns 0x02 (0000ms, 0460ms total)
T76A4 002:199 JLINK_ReadMemEx(0x00003AD2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AD2) - Data: 89 00  returns 0x02 (0000ms, 0460ms total)
T76A4 002:199 JLINK_ReadMemEx(0x00003AD2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AD2) - Data: 89 00  returns 0x02 (0000ms, 0460ms total)
T76A4 002:199 JLINK_ReadMemEx(0x00003AD4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003AD4) - Data: 06 4A 88 50 03 98 01 21 81 40 05 48 02 68 8A 43 ...  returns 0x3C (0000ms, 0460ms total)
T76A4 002:199 JLINK_ReadMemEx(0x00003AD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AD4) - Data: 06 4A  returns 0x02 (0000ms, 0460ms total)
T76A4 002:199 JLINK_ReadMemEx(0x00003AD4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003AD4) - Data: 06 4A 88 50 03 98 01 21 81 40 05 48 02 68 8A 43 ...  returns 0x3C (0000ms, 0460ms total)
T76A4 002:199 JLINK_ReadMemEx(0x00003AD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AD4) - Data: 06 4A  returns 0x02 (0000ms, 0460ms total)
T76A4 002:199 JLINK_ReadMemEx(0x00003AD6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AD6) - Data: 88 50  returns 0x02 (0000ms, 0460ms total)
T76A4 002:199 JLINK_ReadMemEx(0x00003AD6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AD6) - Data: 88 50  returns 0x02 (0000ms, 0460ms total)
T76A4 002:199 JLINK_ReadMemEx(0x00003AD8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003AD8) - Data: 03 98 01 21 81 40 05 48 02 68 8A 43 02 60 FF E7 ...  returns 0x3C (0000ms, 0460ms total)
T76A4 002:199 JLINK_ReadMemEx(0x00003AD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AD8) - Data: 03 98  returns 0x02 (0000ms, 0460ms total)
T76A4 002:199 JLINK_ReadMemEx(0x00003AD8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003AD8) - Data: 03 98 01 21 81 40 05 48 02 68 8A 43 02 60 FF E7 ...  returns 0x3C (0000ms, 0460ms total)
T76A4 002:199 JLINK_ReadMemEx(0x00003AD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AD8) - Data: 03 98  returns 0x02 (0000ms, 0460ms total)
T76A4 002:199 JLINK_ReadMemEx(0x00003ADA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003ADA) - Data: 01 21  returns 0x02 (0000ms, 0460ms total)
T76A4 002:199 JLINK_ReadMemEx(0x00003ADA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003ADA) - Data: 01 21  returns 0x02 (0000ms, 0460ms total)
T76A4 002:199 JLINK_ReadMemEx(0x00003ADC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003ADC) - Data: 81 40 05 48 02 68 8A 43 02 60 FF E7 FF E7 04 B0 ...  returns 0x3C (0000ms, 0460ms total)
T76A4 002:199 JLINK_ReadMemEx(0x00003ADC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003ADC) - Data: 81 40  returns 0x02 (0000ms, 0460ms total)
T76A4 002:199 JLINK_ReadMemEx(0x00003ADC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003ADC) - Data: 81 40 05 48 02 68 8A 43 02 60 FF E7 FF E7 04 B0 ...  returns 0x3C (0000ms, 0460ms total)
T76A4 002:199 JLINK_ReadMemEx(0x00003ADC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003ADC) - Data: 81 40  returns 0x02 (0000ms, 0460ms total)
T76A4 002:199 JLINK_ReadMemEx(0x00003ADE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003ADE) - Data: 05 48  returns 0x02 (0000ms, 0460ms total)
T76A4 002:199 JLINK_ReadMemEx(0x00003ADE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003ADE) - Data: 05 48  returns 0x02 (0000ms, 0460ms total)
T76A4 002:199 JLINK_ReadMemEx(0x00003AE0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003AE0) - Data: 02 68 8A 43 02 60 FF E7 FF E7 04 B0 70 47 C0 46 ...  returns 0x3C (0000ms, 0460ms total)
T76A4 002:199 JLINK_ReadMemEx(0x00003AE0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AE0) - Data: 02 68  returns 0x02 (0000ms, 0460ms total)
T76A4 002:199 JLINK_ReadMemEx(0x00003AE0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003AE0) - Data: 02 68 8A 43 02 60 FF E7 FF E7 04 B0 70 47 C0 46 ...  returns 0x3C (0000ms, 0460ms total)
T76A4 002:199 JLINK_ReadMemEx(0x00003AE0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AE0) - Data: 02 68  returns 0x02 (0000ms, 0460ms total)
T76A4 002:199 JLINK_ReadMemEx(0x00003AE2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AE2) - Data: 8A 43  returns 0x02 (0000ms, 0460ms total)
T76A4 002:199 JLINK_ReadMemEx(0x00003AE2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AE2) - Data: 8A 43  returns 0x02 (0000ms, 0460ms total)
T76A4 002:199 JLINK_ReadMemEx(0x00003AE4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003AE4) - Data: 02 60 FF E7 FF E7 04 B0 70 47 C0 46 10 01 00 40 ...  returns 0x3C (0000ms, 0460ms total)
T76A4 002:199 JLINK_ReadMemEx(0x00003AE4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AE4) - Data: 02 60  returns 0x02 (0000ms, 0460ms total)
T76A4 002:199 JLINK_ReadMemEx(0x00003AE4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003AE4) - Data: 02 60 FF E7 FF E7 04 B0 70 47 C0 46 10 01 00 40 ...  returns 0x3C (0000ms, 0460ms total)
T76A4 002:199 JLINK_ReadMemEx(0x00003AE4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AE4) - Data: 02 60  returns 0x02 (0000ms, 0460ms total)
T76A4 002:199 JLINK_ReadMemEx(0x00003AE6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AE6) - Data: FF E7  returns 0x02 (0000ms, 0460ms total)
T76A4 002:199 JLINK_ReadMemEx(0x00003AE6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AE6) - Data: FF E7  returns 0x02 (0000ms, 0460ms total)
T76A4 002:199 JLINK_ReadMemEx(0x00003AE8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003AE8) - Data: FF E7 04 B0 70 47 C0 46 10 01 00 40 0C 01 00 40 ...  returns 0x3C (0000ms, 0460ms total)
T76A4 002:199 JLINK_ReadMemEx(0x00003AE8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AE8) - Data: FF E7  returns 0x02 (0001ms, 0461ms total)
T76A4 002:200 JLINK_ReadMemEx(0x00003AE8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003AE8) - Data: FF E7 04 B0 70 47 C0 46 10 01 00 40 0C 01 00 40 ...  returns 0x3C (0000ms, 0461ms total)
T76A4 002:200 JLINK_ReadMemEx(0x00003AE8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AE8) - Data: FF E7  returns 0x02 (0000ms, 0461ms total)
T76A4 002:200 JLINK_ReadMemEx(0x00003AEA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AEA) - Data: 04 B0  returns 0x02 (0000ms, 0461ms total)
T76A4 002:200 JLINK_ReadMemEx(0x00003AEA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AEA) - Data: 04 B0  returns 0x02 (0000ms, 0461ms total)
T76A4 002:200 JLINK_ReadMemEx(0x00003AEC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003AEC) - Data: 70 47 C0 46 10 01 00 40 0C 01 00 40 84 B0 01 46 ...  returns 0x3C (0000ms, 0461ms total)
T76A4 002:200 JLINK_ReadMemEx(0x00003AEC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AEC) - Data: 70 47  returns 0x02 (0000ms, 0461ms total)
T76A4 002:200 JLINK_ReadMemEx(0x00003AEC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003AEC) - Data: 70 47 C0 46 10 01 00 40 0C 01 00 40 84 B0 01 46 ...  returns 0x3C (0000ms, 0461ms total)
T76A4 002:200 JLINK_ReadMemEx(0x00003AEC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AEC) - Data: 70 47  returns 0x02 (0000ms, 0461ms total)
T76A4 002:200 JLINK_ReadMemEx(0x00003AEE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AEE) - Data: C0 46  returns 0x02 (0000ms, 0461ms total)
T76A4 002:200 JLINK_ReadMemEx(0x00003AEE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AEE) - Data: C0 46  returns 0x02 (0000ms, 0461ms total)
T76A4 002:200 JLINK_ReadMemEx(0x00003AF0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003AF0) - Data: 10 01 00 40 0C 01 00 40 84 B0 01 46 03 AA 10 80 ...  returns 0x3C (0000ms, 0461ms total)
T76A4 002:200 JLINK_ReadMemEx(0x00003AF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AF0) - Data: 10 01  returns 0x02 (0000ms, 0461ms total)
T76A4 002:200 JLINK_ReadMemEx(0x00003AF8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003AF8) - Data: 84 B0 01 46 03 AA 10 80 10 88 80 07 00 28 0E D1 ...  returns 0x3C (0000ms, 0461ms total)
T76A4 002:200 JLINK_ReadMemEx(0x00003AF8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AF8) - Data: 84 B0  returns 0x02 (0000ms, 0461ms total)
T76A4 002:200 JLINK_ReadMemEx(0x00003AFA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AFA) - Data: 01 46  returns 0x02 (0000ms, 0461ms total)
T76A4 002:200 JLINK_ReadMemEx(0x00003AFA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AFA) - Data: 01 46  returns 0x02 (0000ms, 0461ms total)
T76A4 002:200 JLINK_ReadMemEx(0x00003AFC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003AFC) - Data: 03 AA 10 80 10 88 80 07 00 28 0E D1 FF E7 03 A8 ...  returns 0x3C (0000ms, 0461ms total)
T76A4 002:200 JLINK_ReadMemEx(0x00003AFC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AFC) - Data: 03 AA  returns 0x02 (0000ms, 0461ms total)
T76A4 002:200 JLINK_ReadMemEx(0x00003AFC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003AFC) - Data: 03 AA 10 80 10 88 80 07 00 28 0E D1 FF E7 03 A8 ...  returns 0x3C (0000ms, 0461ms total)
T76A4 002:200 JLINK_ReadMemEx(0x00003AFC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AFC) - Data: 03 AA  returns 0x02 (0000ms, 0461ms total)
T76A4 002:200 JLINK_ReadMemEx(0x00003AFE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AFE) - Data: 10 80  returns 0x02 (0000ms, 0461ms total)
T76A4 002:200 JLINK_ReadMemEx(0x00003AFE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003AFE) - Data: 10 80  returns 0x02 (0000ms, 0461ms total)
T76A4 002:200 JLINK_ReadMemEx(0x00003B00, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003B00) - Data: 10 88 80 07 00 28 0E D1 FF E7 03 A8 00 88 01 21 ...  returns 0x3C (0000ms, 0461ms total)
T76A4 002:200 JLINK_ReadMemEx(0x00003B00, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B00) - Data: 10 88  returns 0x02 (0000ms, 0461ms total)
T76A4 002:200 JLINK_ReadMemEx(0x00003B00, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003B00) - Data: 10 88 80 07 00 28 0E D1 FF E7 03 A8 00 88 01 21 ...  returns 0x3C (0000ms, 0461ms total)
T76A4 002:200 JLINK_ReadMemEx(0x00003B00, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B00) - Data: 10 88  returns 0x02 (0000ms, 0461ms total)
T76A4 002:200 JLINK_ReadMemEx(0x00003B02, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B02) - Data: 80 07  returns 0x02 (0000ms, 0461ms total)
T76A4 002:200 JLINK_ReadMemEx(0x00003B02, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B02) - Data: 80 07  returns 0x02 (0000ms, 0461ms total)
T76A4 002:200 JLINK_ReadMemEx(0x00003B04, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003B04) - Data: 00 28 0E D1 FF E7 03 A8 00 88 01 21 11 4A 42 43 ...  returns 0x3C (0000ms, 0461ms total)
T76A4 002:200 JLINK_ReadMemEx(0x00003B04, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B04) - Data: 00 28  returns 0x02 (0000ms, 0461ms total)
T76A4 002:200 JLINK_ReadMemEx(0x00003B04, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003B04) - Data: 00 28 0E D1 FF E7 03 A8 00 88 01 21 11 4A 42 43 ...  returns 0x3C (0000ms, 0461ms total)
T76A4 002:200 JLINK_ReadMemEx(0x00003B04, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B04) - Data: 00 28  returns 0x02 (0000ms, 0461ms total)
T76A4 002:200 JLINK_ReadMemEx(0x00003B06, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B06) - Data: 0E D1  returns 0x02 (0000ms, 0461ms total)
T76A4 002:200 JLINK_ReadMemEx(0x00003B06, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B06) - Data: 0E D1  returns 0x02 (0000ms, 0461ms total)
T76A4 002:200 JLINK_ReadMemEx(0x00003B08, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00003B40) -- Updating C cache (64 bytes @ 0x00003B40) -- Read from C cache (60 bytes @ 0x00003B08) - Data: FF E7 03 A8 00 88 01 21 11 4A 42 43 11 48 10 18 ...  returns 0x3C (0002ms, 0463ms total)
T76A4 002:202 JLINK_ReadMemEx(0x00003B08, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B08) - Data: FF E7  returns 0x02 (0000ms, 0463ms total)
T76A4 002:202 JLINK_ReadMemEx(0x00003B08, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003B08) - Data: FF E7 03 A8 00 88 01 21 11 4A 42 43 11 48 10 18 ...  returns 0x3C (0000ms, 0463ms total)
T76A4 002:202 JLINK_ReadMemEx(0x00003B08, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B08) - Data: FF E7  returns 0x02 (0000ms, 0463ms total)
T76A4 002:202 JLINK_ReadMemEx(0x00003B0A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B0A) - Data: 03 A8  returns 0x02 (0000ms, 0463ms total)
T76A4 002:202 JLINK_ReadMemEx(0x00003B0A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B0A) - Data: 03 A8  returns 0x02 (0000ms, 0463ms total)
T76A4 002:202 JLINK_ReadMemEx(0x00003B0C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003B0C) - Data: 00 88 01 21 11 4A 42 43 11 48 10 18 02 22 D0 41 ...  returns 0x3C (0000ms, 0463ms total)
T76A4 002:202 JLINK_ReadMemEx(0x00003B0C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B0C) - Data: 00 88  returns 0x02 (0000ms, 0463ms total)
T76A4 002:202 JLINK_ReadMemEx(0x00003B0C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003B0C) - Data: 00 88 01 21 11 4A 42 43 11 48 10 18 02 22 D0 41 ...  returns 0x3C (0000ms, 0463ms total)
T76A4 002:202 JLINK_ReadMemEx(0x00003B0C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B0C) - Data: 00 88  returns 0x02 (0000ms, 0463ms total)
T76A4 002:202 JLINK_ReadMemEx(0x00003B0E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B0E) - Data: 01 21  returns 0x02 (0000ms, 0463ms total)
T76A4 002:202 JLINK_ReadMemEx(0x00003B0E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B0E) - Data: 01 21  returns 0x02 (0000ms, 0463ms total)
T76A4 002:202 JLINK_ReadMemEx(0x00003B10, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003B10) - Data: 11 4A 42 43 11 48 10 18 02 22 D0 41 10 4A 90 42 ...  returns 0x3C (0000ms, 0463ms total)
T76A4 002:202 JLINK_ReadMemEx(0x00003B10, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B10) - Data: 11 4A  returns 0x02 (0000ms, 0463ms total)
T76A4 002:202 JLINK_ReadMemEx(0x00003B10, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003B10) - Data: 11 4A 42 43 11 48 10 18 02 22 D0 41 10 4A 90 42 ...  returns 0x3C (0000ms, 0463ms total)
T76A4 002:202 JLINK_ReadMemEx(0x00003B10, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B10) - Data: 11 4A  returns 0x02 (0000ms, 0463ms total)
T76A4 002:202 JLINK_ReadMemEx(0x00003B12, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B12) - Data: 42 43  returns 0x02 (0000ms, 0463ms total)
T76A4 002:202 JLINK_ReadMemEx(0x00003B12, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B12) - Data: 42 43  returns 0x02 (0000ms, 0463ms total)
T76A4 002:202 JLINK_ReadMemEx(0x00003B14, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003B14) - Data: 11 48 10 18 02 22 D0 41 10 4A 90 42 02 91 14 D8 ...  returns 0x3C (0000ms, 0463ms total)
T76A4 002:202 JLINK_ReadMemEx(0x00003B14, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B14) - Data: 11 48  returns 0x02 (0000ms, 0463ms total)
T76A4 002:202 JLINK_ReadMemEx(0x00003B14, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003B14) - Data: 11 48 10 18 02 22 D0 41 10 4A 90 42 02 91 14 D8 ...  returns 0x3C (0000ms, 0463ms total)
T76A4 002:202 JLINK_ReadMemEx(0x00003B14, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B14) - Data: 11 48  returns 0x02 (0000ms, 0463ms total)
T76A4 002:202 JLINK_ReadMemEx(0x00003B16, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B16) - Data: 10 18  returns 0x02 (0000ms, 0463ms total)
T76A4 002:202 JLINK_ReadMemEx(0x00003B16, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B16) - Data: 10 18  returns 0x02 (0000ms, 0463ms total)
T76A4 002:202 JLINK_ReadMemEx(0x00003B18, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003B18) - Data: 02 22 D0 41 10 4A 90 42 02 91 14 D8 FF E7 03 A8 ...  returns 0x3C (0000ms, 0463ms total)
T76A4 002:202 JLINK_ReadMemEx(0x00003B18, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B18) - Data: 02 22  returns 0x02 (0000ms, 0463ms total)
T76A4 002:202 JLINK_ReadMemEx(0x00003B18, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003B18) - Data: 02 22 D0 41 10 4A 90 42 02 91 14 D8 FF E7 03 A8 ...  returns 0x3C (0000ms, 0463ms total)
T76A4 002:202 JLINK_ReadMemEx(0x00003B18, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B18) - Data: 02 22  returns 0x02 (0000ms, 0463ms total)
T76A4 002:202 JLINK_ReadMemEx(0x00003B1A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B1A) - Data: D0 41  returns 0x02 (0000ms, 0463ms total)
T76A4 002:202 JLINK_ReadMemEx(0x00003B1A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B1A) - Data: D0 41  returns 0x02 (0000ms, 0463ms total)
T76A4 002:202 JLINK_ReadMemEx(0x00003B1C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003B1C) - Data: 10 4A 90 42 02 91 14 D8 FF E7 03 A8 00 88 0B 49 ...  returns 0x3C (0000ms, 0463ms total)
T76A4 002:202 JLINK_ReadMemEx(0x00003B1C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B1C) - Data: 10 4A  returns 0x02 (0000ms, 0463ms total)
T76A4 002:202 JLINK_ReadMemEx(0x00003B1C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003B1C) - Data: 10 4A 90 42 02 91 14 D8 FF E7 03 A8 00 88 0B 49 ...  returns 0x3C (0000ms, 0463ms total)
T76A4 002:202 JLINK_ReadMemEx(0x00003B1C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B1C) - Data: 10 4A  returns 0x02 (0000ms, 0463ms total)
T76A4 002:202 JLINK_ReadMemEx(0x00003B1E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B1E) - Data: 90 42  returns 0x02 (0000ms, 0463ms total)
T76A4 002:203 JLINK_ReadMemEx(0x00003B1E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B1E) - Data: 90 42  returns 0x02 (0000ms, 0463ms total)
T76A4 002:203 JLINK_ReadMemEx(0x00003B20, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003B20) - Data: 02 91 14 D8 FF E7 03 A8 00 88 0B 49 41 43 0B 48 ...  returns 0x3C (0000ms, 0463ms total)
T76A4 002:203 JLINK_ReadMemEx(0x00003B20, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B20) - Data: 02 91  returns 0x02 (0000ms, 0463ms total)
T76A4 002:203 JLINK_ReadMemEx(0x00003B20, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003B20) - Data: 02 91 14 D8 FF E7 03 A8 00 88 0B 49 41 43 0B 48 ...  returns 0x3C (0000ms, 0463ms total)
T76A4 002:203 JLINK_ReadMemEx(0x00003B20, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B20) - Data: 02 91  returns 0x02 (0000ms, 0463ms total)
T76A4 002:203 JLINK_ReadMemEx(0x00003B22, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B22) - Data: 14 D8  returns 0x02 (0000ms, 0463ms total)
T76A4 002:203 JLINK_ReadMemEx(0x00003B22, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B22) - Data: 14 D8  returns 0x02 (0000ms, 0463ms total)
T76A4 002:203 JLINK_ReadMemEx(0x00003B24, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003B24) - Data: FF E7 03 A8 00 88 0B 49 41 43 0B 48 08 18 04 21 ...  returns 0x3C (0000ms, 0463ms total)
T76A4 002:203 JLINK_ReadMemEx(0x00003B24, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B24) - Data: FF E7  returns 0x02 (0000ms, 0463ms total)
T76A4 002:203 JLINK_ReadMemEx(0x00003B24, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003B24) - Data: FF E7 03 A8 00 88 0B 49 41 43 0B 48 08 18 04 21 ...  returns 0x3C (0000ms, 0463ms total)
T76A4 002:203 JLINK_ReadMemEx(0x00003B24, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B24) - Data: FF E7  returns 0x02 (0000ms, 0463ms total)
T76A4 002:203 JLINK_ReadMemEx(0x00003B26, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B26) - Data: 03 A8  returns 0x02 (0000ms, 0463ms total)
T76A4 002:203 JLINK_ReadMemEx(0x00003B26, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B26) - Data: 03 A8  returns 0x02 (0000ms, 0463ms total)
T76A4 002:203 JLINK_ReadMemEx(0x00003B28, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003B28) - Data: 00 88 0B 49 41 43 0B 48 08 18 04 21 C8 41 0B 49 ...  returns 0x3C (0000ms, 0463ms total)
T76A4 002:203 JLINK_ReadMemEx(0x00003B28, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B28) - Data: 00 88  returns 0x02 (0000ms, 0463ms total)
T76A4 002:203 JLINK_ReadMemEx(0x00003B28, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003B28) - Data: 00 88 0B 49 41 43 0B 48 08 18 04 21 C8 41 0B 49 ...  returns 0x3C (0000ms, 0463ms total)
T76A4 002:203 JLINK_ReadMemEx(0x00003B28, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B28) - Data: 00 88  returns 0x02 (0000ms, 0463ms total)
T76A4 002:203 JLINK_ReadMemEx(0x00003B2A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B2A) - Data: 0B 49  returns 0x02 (0000ms, 0463ms total)
T76A4 002:203 JLINK_ReadMemEx(0x00003B2A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B2A) - Data: 0B 49  returns 0x02 (0000ms, 0463ms total)
T76A4 002:203 JLINK_ReadMemEx(0x00003B2C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003B2C) - Data: 41 43 0B 48 08 18 04 21 C8 41 0B 49 01 22 00 23 ...  returns 0x3C (0000ms, 0463ms total)
T76A4 002:203 JLINK_ReadMemEx(0x00003B2C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B2C) - Data: 41 43  returns 0x02 (0000ms, 0463ms total)
T76A4 002:203 JLINK_ReadMemEx(0x00003B2C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003B2C) - Data: 41 43 0B 48 08 18 04 21 C8 41 0B 49 01 22 00 23 ...  returns 0x3C (0000ms, 0463ms total)
T76A4 002:203 JLINK_ReadMemEx(0x00003B2C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B2C) - Data: 41 43  returns 0x02 (0000ms, 0463ms total)
T76A4 002:203 JLINK_ReadMemEx(0x00003B2E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B2E) - Data: 0B 48  returns 0x02 (0000ms, 0463ms total)
T76A4 002:203 JLINK_ReadMemEx(0x00003B2E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B2E) - Data: 0B 48  returns 0x02 (0000ms, 0463ms total)
T76A4 002:203 JLINK_ReadMemEx(0x00003B30, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003B30) - Data: 08 18 04 21 C8 41 0B 49 01 22 00 23 88 42 01 93 ...  returns 0x3C (0000ms, 0463ms total)
T76A4 002:203 JLINK_ReadMemEx(0x00003B30, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B30) - Data: 08 18  returns 0x02 (0000ms, 0463ms total)
T76A4 002:203 JLINK_ReadMemEx(0x00003B30, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003B30) - Data: 08 18 04 21 C8 41 0B 49 01 22 00 23 88 42 01 93 ...  returns 0x3C (0000ms, 0463ms total)
T76A4 002:203 JLINK_ReadMemEx(0x00003B30, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B30) - Data: 08 18  returns 0x02 (0000ms, 0463ms total)
T76A4 002:204 JLINK_ReadMemEx(0x00003B32, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B32) - Data: 04 21  returns 0x02 (0000ms, 0464ms total)
T76A4 002:204 JLINK_ReadMemEx(0x00003B32, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B32) - Data: 04 21  returns 0x02 (0000ms, 0464ms total)
T76A4 002:204 JLINK_ReadMemEx(0x00003B34, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003B34) - Data: C8 41 0B 49 01 22 00 23 88 42 01 93 00 92 01 D3 ...  returns 0x3C (0000ms, 0464ms total)
T76A4 002:204 JLINK_ReadMemEx(0x00003B34, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B34) - Data: C8 41  returns 0x02 (0000ms, 0464ms total)
T76A4 002:204 JLINK_ReadMemEx(0x00003B34, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003B34) - Data: C8 41 0B 49 01 22 00 23 88 42 01 93 00 92 01 D3 ...  returns 0x3C (0000ms, 0464ms total)
T76A4 002:204 JLINK_ReadMemEx(0x00003B34, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B34) - Data: C8 41  returns 0x02 (0000ms, 0464ms total)
T76A4 002:204 JLINK_ReadMemEx(0x00003B36, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B36) - Data: 0B 49  returns 0x02 (0000ms, 0464ms total)
T76A4 002:204 JLINK_ReadMemEx(0x00003B36, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B36) - Data: 0B 49  returns 0x02 (0000ms, 0464ms total)
T76A4 002:204 JLINK_ReadMemEx(0x00003B38, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003B38) - Data: 01 22 00 23 88 42 01 93 00 92 01 D3 01 98 00 90 ...  returns 0x3C (0000ms, 0464ms total)
T76A4 002:204 JLINK_ReadMemEx(0x00003B38, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B38) - Data: 01 22  returns 0x02 (0000ms, 0464ms total)
T76A4 002:204 JLINK_ReadMemEx(0x00003B38, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003B38) - Data: 01 22 00 23 88 42 01 93 00 92 01 D3 01 98 00 90 ...  returns 0x3C (0000ms, 0464ms total)
T76A4 002:204 JLINK_ReadMemEx(0x00003B38, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B38) - Data: 01 22  returns 0x02 (0000ms, 0464ms total)
T76A4 002:204 JLINK_ReadMemEx(0x00003B3A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B3A) - Data: 00 23  returns 0x02 (0000ms, 0464ms total)
T76A4 002:204 JLINK_ReadMemEx(0x00003B3A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B3A) - Data: 00 23  returns 0x02 (0000ms, 0464ms total)
T76A4 002:204 JLINK_ReadMemEx(0x00003B3C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003B3C) - Data: 88 42 01 93 00 92 01 D3 01 98 00 90 00 98 02 90 ...  returns 0x3C (0000ms, 0464ms total)
T76A4 002:204 JLINK_ReadMemEx(0x00003B3C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B3C) - Data: 88 42  returns 0x02 (0000ms, 0464ms total)
T76A4 002:204 JLINK_ReadMemEx(0x00003B3C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003B3C) - Data: 88 42 01 93 00 92 01 D3 01 98 00 90 00 98 02 90 ...  returns 0x3C (0000ms, 0464ms total)
T76A4 002:204 JLINK_ReadMemEx(0x00003B3C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B3C) - Data: 88 42  returns 0x02 (0000ms, 0464ms total)
T76A4 002:204 JLINK_ReadMemEx(0x00003B3E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B3E) - Data: 01 93  returns 0x02 (0000ms, 0464ms total)
T76A4 002:204 JLINK_ReadMemEx(0x00003B3E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B3E) - Data: 01 93  returns 0x02 (0000ms, 0464ms total)
T76A4 002:204 JLINK_ReadMemEx(0x00003B40, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003B40) - Data: 00 92 01 D3 01 98 00 90 00 98 02 90 FF E7 02 98 ...  returns 0x3C (0000ms, 0464ms total)
T76A4 002:204 JLINK_ReadMemEx(0x00003B40, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B40) - Data: 00 92  returns 0x02 (0000ms, 0464ms total)
T76A4 002:204 JLINK_ReadMemEx(0x00003B40, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003B40) - Data: 00 92 01 D3 01 98 00 90 00 98 02 90 FF E7 02 98 ...  returns 0x3C (0000ms, 0464ms total)
T76A4 002:204 JLINK_ReadMemEx(0x00003B40, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B40) - Data: 00 92  returns 0x02 (0000ms, 0464ms total)
T76A4 002:204 JLINK_ReadMemEx(0x00003B42, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B42) - Data: 01 D3  returns 0x02 (0000ms, 0464ms total)
T76A4 002:204 JLINK_ReadMemEx(0x00003B42, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B42) - Data: 01 D3  returns 0x02 (0000ms, 0464ms total)
T76A4 002:204 JLINK_ReadMemEx(0x00003B44, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003B44) - Data: 01 98 00 90 00 98 02 90 FF E7 02 98 01 21 08 40 ...  returns 0x3C (0000ms, 0464ms total)
T76A4 002:204 JLINK_ReadMemEx(0x00003B44, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B44) - Data: 01 98  returns 0x02 (0000ms, 0464ms total)
T76A4 002:204 JLINK_ReadMemEx(0x00003B44, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003B44) - Data: 01 98 00 90 00 98 02 90 FF E7 02 98 01 21 08 40 ...  returns 0x3C (0000ms, 0464ms total)
T76A4 002:204 JLINK_ReadMemEx(0x00003B44, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B44) - Data: 01 98  returns 0x02 (0000ms, 0464ms total)
T76A4 002:204 JLINK_ReadMemEx(0x00003B46, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B46) - Data: 00 90  returns 0x02 (0000ms, 0464ms total)
T76A4 002:204 JLINK_ReadMemEx(0x00003B46, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B46) - Data: 00 90  returns 0x02 (0000ms, 0464ms total)
T76A4 002:204 JLINK_ReadMemEx(0x00003B48, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00003B80) -- Updating C cache (64 bytes @ 0x00003B80) -- Read from C cache (60 bytes @ 0x00003B48) - Data: 00 98 02 90 FF E7 02 98 01 21 08 40 04 B0 70 47 ...  returns 0x3C (0002ms, 0466ms total)
T76A4 002:206 JLINK_ReadMemEx(0x00003B48, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B48) - Data: 00 98  returns 0x02 (0000ms, 0466ms total)
T76A4 002:206 JLINK_ReadMemEx(0x00003B48, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003B48) - Data: 00 98 02 90 FF E7 02 98 01 21 08 40 04 B0 70 47 ...  returns 0x3C (0000ms, 0466ms total)
T76A4 002:206 JLINK_ReadMemEx(0x00003B48, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B48) - Data: 00 98  returns 0x02 (0000ms, 0466ms total)
T76A4 002:206 JLINK_ReadMemEx(0x00003B4A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B4A) - Data: 02 90  returns 0x02 (0000ms, 0466ms total)
T76A4 002:206 JLINK_ReadMemEx(0x00003B4A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B4A) - Data: 02 90  returns 0x02 (0000ms, 0466ms total)
T76A4 002:206 JLINK_ReadMemEx(0x00003B4C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003B4C) - Data: FF E7 02 98 01 21 08 40 04 B0 70 47 29 5C 8F C2 ...  returns 0x3C (0000ms, 0466ms total)
T76A4 002:206 JLINK_ReadMemEx(0x00003B4C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B4C) - Data: FF E7  returns 0x02 (0000ms, 0466ms total)
T76A4 002:206 JLINK_ReadMemEx(0x00003B4C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003B4C) - Data: FF E7 02 98 01 21 08 40 04 B0 70 47 29 5C 8F C2 ...  returns 0x3C (0000ms, 0466ms total)
T76A4 002:206 JLINK_ReadMemEx(0x00003B4C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B4C) - Data: FF E7  returns 0x02 (0000ms, 0466ms total)
T76A4 002:206 JLINK_ReadMemEx(0x00003B4E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B4E) - Data: 02 98  returns 0x02 (0000ms, 0466ms total)
T76A4 002:206 JLINK_ReadMemEx(0x00003B4E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B4E) - Data: 02 98  returns 0x02 (0000ms, 0466ms total)
T76A4 002:206 JLINK_ReadMemEx(0x00003B50, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003B50) - Data: 01 21 08 40 04 B0 70 47 29 5C 8F C2 50 B8 1E 05 ...  returns 0x3C (0000ms, 0466ms total)
T76A4 002:206 JLINK_ReadMemEx(0x00003B50, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B50) - Data: 01 21  returns 0x02 (0000ms, 0466ms total)
T76A4 002:206 JLINK_ReadMemEx(0x00003B50, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003B50) - Data: 01 21 08 40 04 B0 70 47 29 5C 8F C2 50 B8 1E 05 ...  returns 0x3C (0000ms, 0466ms total)
T76A4 002:206 JLINK_ReadMemEx(0x00003B50, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B50) - Data: 01 21  returns 0x02 (0000ms, 0466ms total)
T76A4 002:206 JLINK_ReadMemEx(0x00003B52, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B52) - Data: 08 40  returns 0x02 (0000ms, 0466ms total)
T76A4 002:206 JLINK_ReadMemEx(0x00003B52, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B52) - Data: 08 40  returns 0x02 (0000ms, 0466ms total)
T76A4 002:206 JLINK_ReadMemEx(0x00003B54, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003B54) - Data: 04 B0 70 47 29 5C 8F C2 50 B8 1E 05 28 5C 8F 02 ...  returns 0x3C (0000ms, 0466ms total)
T76A4 002:206 JLINK_ReadMemEx(0x00003B54, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B54) - Data: 04 B0  returns 0x02 (0000ms, 0466ms total)
T76A4 002:206 JLINK_ReadMemEx(0x00003B54, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003B54) - Data: 04 B0 70 47 29 5C 8F C2 50 B8 1E 05 28 5C 8F 02 ...  returns 0x3C (0000ms, 0466ms total)
T76A4 002:206 JLINK_ReadMemEx(0x00003B54, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B54) - Data: 04 B0  returns 0x02 (0000ms, 0466ms total)
T76A4 002:206 JLINK_ReadMemEx(0x00003B56, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B56) - Data: 70 47  returns 0x02 (0000ms, 0466ms total)
T76A4 002:206 JLINK_ReadMemEx(0x00003B56, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B56) - Data: 70 47  returns 0x02 (0000ms, 0466ms total)
T76A4 002:206 JLINK_ReadMemEx(0x00003B58, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003B58) - Data: 29 5C 8F C2 50 B8 1E 05 28 5C 8F 02 0B D7 A3 00 ...  returns 0x3C (0000ms, 0466ms total)
T76A4 002:206 JLINK_ReadMemEx(0x00003B58, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B58) - Data: 29 5C  returns 0x02 (0000ms, 0466ms total)
T76A4 002:206 JLINK_ReadMemEx(0x00003B68, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003B68) - Data: 80 B5 01 20 FF F7 A2 FD 80 BD 00 00 80 B5 8A B0 ...  returns 0x3C (0000ms, 0466ms total)
T76A4 002:206 JLINK_ReadMemEx(0x00003B68, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B68) - Data: 80 B5  returns 0x02 (0000ms, 0466ms total)
T76A4 002:206 JLINK_ReadMemEx(0x00003B6A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B6A) - Data: 01 20  returns 0x02 (0000ms, 0466ms total)
T76A4 002:206 JLINK_ReadMemEx(0x00003B6A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B6A) - Data: 01 20  returns 0x02 (0000ms, 0466ms total)
T76A4 002:206 JLINK_ReadMemEx(0x00003B6C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003B6C) - Data: FF F7 A2 FD 80 BD 00 00 80 B5 8A B0 00 20 09 90 ...  returns 0x3C (0000ms, 0466ms total)
T76A4 002:206 JLINK_ReadMemEx(0x00003B6C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B6C) - Data: FF F7  returns 0x02 (0000ms, 0466ms total)
T76A4 002:206 JLINK_ReadMemEx(0x00003B6C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003B6C) - Data: FF F7 A2 FD 80 BD 00 00 80 B5 8A B0 00 20 09 90 ...  returns 0x3C (0000ms, 0466ms total)
T76A4 002:206 JLINK_ReadMemEx(0x00003B6C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B6C) - Data: FF F7  returns 0x02 (0000ms, 0466ms total)
T76A4 002:206 JLINK_ReadMemEx(0x00003B6E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B6E) - Data: A2 FD  returns 0x02 (0000ms, 0466ms total)
T76A4 002:206 JLINK_ReadMemEx(0x00003B70, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003B70) - Data: 80 BD 00 00 80 B5 8A B0 00 20 09 90 08 90 FF F7 ...  returns 0x3C (0000ms, 0466ms total)
T76A4 002:206 JLINK_ReadMemEx(0x00003B70, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B70) - Data: 80 BD  returns 0x02 (0000ms, 0466ms total)
T76A4 002:206 JLINK_ReadMemEx(0x00003B72, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B72) - Data: 00 00  returns 0x02 (0000ms, 0466ms total)
T76A4 002:206 JLINK_ReadMemEx(0x00003B72, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B72) - Data: 00 00  returns 0x02 (0000ms, 0466ms total)
T76A4 002:206 JLINK_ReadMemEx(0x00003B74, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003B74) - Data: 80 B5 8A B0 00 20 09 90 08 90 FF F7 3F F8 01 20 ...  returns 0x3C (0000ms, 0466ms total)
T76A4 002:206 JLINK_ReadMemEx(0x00003B74, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B74) - Data: 80 B5  returns 0x02 (0000ms, 0466ms total)
T76A4 002:207 JLINK_ReadMemEx(0x00003B74, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003B74) - Data: 80 B5 8A B0 00 20 09 90 08 90 FF F7 3F F8 01 20 ...  returns 0x3C (0000ms, 0466ms total)
T76A4 002:207 JLINK_ReadMemEx(0x00003B74, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B74) - Data: 80 B5  returns 0x02 (0000ms, 0466ms total)
T76A4 002:207 JLINK_ReadMemEx(0x00003B76, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B76) - Data: 8A B0  returns 0x02 (0000ms, 0466ms total)
T76A4 002:207 JLINK_ReadMemEx(0x00003B76, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B76) - Data: 8A B0  returns 0x02 (0000ms, 0466ms total)
T76A4 002:207 JLINK_ReadMemEx(0x00003B78, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003B78) - Data: 00 20 09 90 08 90 FF F7 3F F8 01 20 FF F7 74 F8 ...  returns 0x3C (0000ms, 0466ms total)
T76A4 002:207 JLINK_ReadMemEx(0x00003B78, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B78) - Data: 00 20  returns 0x02 (0000ms, 0466ms total)
T76A4 002:207 JLINK_ReadMemEx(0x00003B78, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003B78) - Data: 00 20 09 90 08 90 FF F7 3F F8 01 20 FF F7 74 F8 ...  returns 0x3C (0000ms, 0466ms total)
T76A4 002:207 JLINK_ReadMemEx(0x00003B78, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B78) - Data: 00 20  returns 0x02 (0000ms, 0466ms total)
T76A4 002:207 JLINK_ReadMemEx(0x00003B7A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B7A) - Data: 09 90  returns 0x02 (0000ms, 0466ms total)
T76A4 002:207 JLINK_ReadMemEx(0x00003B7A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B7A) - Data: 09 90  returns 0x02 (0000ms, 0466ms total)
T76A4 002:207 JLINK_ReadMemEx(0x00003B7C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00003B7C) - Data: 08 90 FF F7 3F F8 01 20 FF F7 74 F8 00 F0 B2 F8 ...  returns 0x3C (0000ms, 0466ms total)
T76A4 002:207 JLINK_ReadMemEx(0x00003B7C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B7C) - Data: 08 90  returns 0x02 (0000ms, 0466ms total)
T3F3C 004:339 JLINK_ReadMemEx(0x00003B74, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00003B74) - Data: 80 B5  returns 0x02 (0000ms, 0466ms total)
T3F3C 004:339 JLINK_Go() -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) (0004ms, 0470ms total)
T3F3C 004:444 JLINK_IsHalted()  returns FALSE (0000ms, 0470ms total)
T3F3C 004:545 JLINK_IsHalted()  returns FALSE (0000ms, 0470ms total)
T3F3C 004:647 JLINK_IsHalted()  returns FALSE (0000ms, 0470ms total)
T3F3C 004:748 JLINK_IsHalted()  returns FALSE (0000ms, 0470ms total)
T3F3C 004:849 JLINK_IsHalted()  returns FALSE (0000ms, 0470ms total)
T76A4 005:111 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 01 00 00 00  returns 0x04 (0000ms, 0470ms total)
T76A4 005:125 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 01 00 00 00  returns 0x04 (0001ms, 0471ms total)
T76A4 005:140 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 02  returns 0x01 (0000ms, 0471ms total)
T3F3C 005:161 JLINK_IsHalted()  returns FALSE (0001ms, 0472ms total)
T3F3C 005:263 JLINK_IsHalted()  returns FALSE (0000ms, 0471ms total)
T3F3C 005:364 JLINK_IsHalted()  returns FALSE (0000ms, 0471ms total)
T76A4 005:628 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 02 00 00 00  returns 0x04 (0001ms, 0472ms total)
T76A4 005:642 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 02 00 00 00  returns 0x04 (0001ms, 0473ms total)
T76A4 005:657 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 04  returns 0x01 (0000ms, 0473ms total)
T3F3C 005:678 JLINK_IsHalted()  returns FALSE (0001ms, 0474ms total)
T3F3C 005:780 JLINK_IsHalted()  returns FALSE (0000ms, 0473ms total)
T3F3C 005:882 JLINK_IsHalted()  returns FALSE (0000ms, 0473ms total)
T76A4 006:143 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 02 00 00 00  returns 0x04 (0001ms, 0474ms total)
T76A4 006:150 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 02 00 00 00  returns 0x04 (0001ms, 0475ms total)
T76A4 006:158 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 04  returns 0x01 (0001ms, 0476ms total)
T3F3C 006:173 JLINK_IsHalted()  returns FALSE (0001ms, 0477ms total)
T3F3C 006:275 JLINK_IsHalted()  returns FALSE (0000ms, 0476ms total)
T3F3C 006:376 JLINK_IsHalted()  returns FALSE (0000ms, 0476ms total)
T3F3C 006:477 JLINK_IsHalted()  returns FALSE (0000ms, 0476ms total)
T76A4 006:750 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 03 00 00 00  returns 0x04 (0000ms, 0476ms total)
T76A4 006:757 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 03 00 00 00  returns 0x04 (0001ms, 0477ms total)
T76A4 006:765 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 06  returns 0x01 (0001ms, 0478ms total)
T3F3C 006:780 JLINK_IsHalted()  returns FALSE (0000ms, 0478ms total)
T3F3C 006:881 JLINK_IsHalted()  returns FALSE (0001ms, 0479ms total)
T3F3C 006:983 JLINK_IsHalted()  returns FALSE (0000ms, 0478ms total)
T3F3C 007:085 JLINK_IsHalted()  returns FALSE (0000ms, 0478ms total)
T76A4 007:345 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 03 00 00 00  returns 0x04 (0000ms, 0478ms total)
T76A4 007:352 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 03 00 00 00  returns 0x04 (0001ms, 0479ms total)
T76A4 007:360 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 06  returns 0x01 (0000ms, 0479ms total)
T3F3C 007:374 JLINK_IsHalted()  returns FALSE (0001ms, 0480ms total)
T3F3C 007:476 JLINK_IsHalted()  returns FALSE (0000ms, 0479ms total)
T3F3C 007:577 JLINK_IsHalted()  returns FALSE (0000ms, 0479ms total)
T3F3C 007:678 JLINK_IsHalted()  returns FALSE (0000ms, 0479ms total)
T76A4 007:938 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 04 00 00 00  returns 0x04 (0001ms, 0480ms total)
T76A4 007:946 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 04 00 00 00  returns 0x04 (0001ms, 0481ms total)
T76A4 007:953 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 08  returns 0x01 (0001ms, 0482ms total)
T3F3C 007:968 JLINK_IsHalted()  returns FALSE (0000ms, 0482ms total)
T3F3C 008:070 JLINK_IsHalted()  returns FALSE (0001ms, 0483ms total)
T3F3C 008:172 JLINK_IsHalted()  returns FALSE (0000ms, 0482ms total)
T3F3C 008:273 JLINK_IsHalted()  returns FALSE (0000ms, 0482ms total)
T76A4 008:535 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 05 00 00 00  returns 0x04 (0001ms, 0483ms total)
T76A4 008:549 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 04 00 00 00  returns 0x04 (0001ms, 0484ms total)
T76A4 008:557 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 09  returns 0x01 (0000ms, 0484ms total)
T3F3C 008:578 JLINK_IsHalted()  returns FALSE (0001ms, 0485ms total)
T3F3C 008:680 JLINK_IsHalted()  returns FALSE (0000ms, 0484ms total)
T3F3C 008:781 JLINK_IsHalted()  returns FALSE (0000ms, 0484ms total)
T3F3C 008:883 JLINK_IsHalted()  returns FALSE (0000ms, 0484ms total)
T76A4 009:145 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 05 00 00 00  returns 0x04 (0001ms, 0485ms total)
T76A4 009:153 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 05 00 00 00  returns 0x04 (0001ms, 0486ms total)
T76A4 009:160 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 0A  returns 0x01 (0001ms, 0487ms total)
T3F3C 009:181 JLINK_IsHalted()  returns FALSE (0001ms, 0488ms total)
T3F3C 009:284 JLINK_IsHalted()  returns FALSE (0000ms, 0487ms total)
T3F3C 009:385 JLINK_IsHalted()  returns FALSE (0000ms, 0487ms total)
T3F3C 009:486 JLINK_IsHalted()  returns FALSE (0002ms, 0489ms total)
T76A4 009:750 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 06 00 00 00  returns 0x04 (0001ms, 0488ms total)
T76A4 009:759 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 06 00 00 00  returns 0x04 (0000ms, 0488ms total)
T76A4 009:773 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 0C  returns 0x01 (0000ms, 0488ms total)
T3F3C 009:794 JLINK_IsHalted()  returns FALSE (0001ms, 0489ms total)
T3F3C 009:896 JLINK_IsHalted()  returns FALSE (0001ms, 0489ms total)
T3F3C 009:998 JLINK_IsHalted()  returns FALSE (0000ms, 0488ms total)
T3F3C 010:099 JLINK_IsHalted()  returns FALSE (0000ms, 0488ms total)
T76A4 010:361 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 06 00 00 00  returns 0x04 (0000ms, 0488ms total)
T76A4 010:368 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 06 00 00 00  returns 0x04 (0001ms, 0489ms total)
T76A4 010:377 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 0C  returns 0x01 (0000ms, 0489ms total)
T3F3C 010:391 JLINK_IsHalted()  returns FALSE (0001ms, 0490ms total)
T3F3C 010:493 JLINK_IsHalted()  returns FALSE (0000ms, 0489ms total)
T3F3C 010:594 JLINK_IsHalted()  returns FALSE (0001ms, 0490ms total)
T3F3C 010:695 JLINK_IsHalted()  returns FALSE (0000ms, 0489ms total)
T76A4 010:959 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 07 00 00 00  returns 0x04 (0000ms, 0489ms total)
T76A4 010:966 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 07 00 00 00  returns 0x04 (0001ms, 0490ms total)
T76A4 010:974 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 0E  returns 0x01 (0000ms, 0490ms total)
T3F3C 010:988 JLINK_IsHalted()  returns FALSE (0001ms, 0491ms total)
T3F3C 011:090 JLINK_IsHalted()  returns FALSE (0000ms, 0490ms total)
T3F3C 011:191 JLINK_IsHalted()  returns FALSE (0000ms, 0490ms total)
T3F3C 011:292 JLINK_IsHalted()  returns FALSE (0000ms, 0490ms total)
T76A4 011:553 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 08 00 00 00  returns 0x04 (0001ms, 0491ms total)
T76A4 011:567 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 07 00 00 00  returns 0x04 (0001ms, 0492ms total)
T76A4 011:575 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 0F  returns 0x01 (0001ms, 0493ms total)
T3F3C 011:596 JLINK_IsHalted()  returns FALSE (0001ms, 0494ms total)
T3F3C 011:697 JLINK_IsHalted()  returns FALSE (0000ms, 0493ms total)
T3F3C 011:798 JLINK_IsHalted()  returns FALSE (0000ms, 0493ms total)
T76A4 012:061 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 08 00 00 00  returns 0x04 (0000ms, 0493ms total)
T76A4 012:068 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 08 00 00 00  returns 0x04 (0001ms, 0494ms total)
T76A4 012:076 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 10  returns 0x01 (0000ms, 0494ms total)
T3F3C 012:097 JLINK_IsHalted()  returns FALSE (0001ms, 0495ms total)
T3F3C 012:199 JLINK_IsHalted()  returns FALSE (0000ms, 0494ms total)
T3F3C 012:300 JLINK_IsHalted()  returns FALSE (0000ms, 0494ms total)
T3F3C 012:402 JLINK_IsHalted()  returns FALSE (0000ms, 0494ms total)
T76A4 012:664 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 09 00 00 00  returns 0x04 (0000ms, 0494ms total)
T76A4 012:671 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 08 00 00 00  returns 0x04 (0001ms, 0495ms total)
T76A4 012:678 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 11  returns 0x01 (0001ms, 0496ms total)
T3F3C 012:700 JLINK_IsHalted()  returns FALSE (0000ms, 0496ms total)
T3F3C 012:802 JLINK_IsHalted()  returns FALSE (0000ms, 0496ms total)
T3F3C 012:903 JLINK_IsHalted()  returns FALSE (0000ms, 0496ms total)
T3F3C 013:004 JLINK_IsHalted()  returns FALSE (0000ms, 0496ms total)
T76A4 013:266 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 09 00 00 00  returns 0x04 (0001ms, 0497ms total)
T76A4 013:273 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 09 00 00 00  returns 0x04 (0001ms, 0498ms total)
T76A4 013:281 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 12  returns 0x01 (0001ms, 0499ms total)
T3F3C 013:302 JLINK_IsHalted()  returns FALSE (0001ms, 0500ms total)
T3F3C 013:405 JLINK_IsHalted()  returns FALSE (0000ms, 0499ms total)
T76A4 013:505 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 09 00 00 00  returns 0x04 (0001ms, 0500ms total)
T76A4 013:506 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 09 00 00 00  returns 0x04 (0000ms, 0500ms total)
T3F3C 013:506 JLINK_IsHalted()  returns FALSE (0001ms, 0501ms total)
T76A4 013:513 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 12  returns 0x01 (0001ms, 0501ms total)
T3F3C 013:608 JLINK_IsHalted()  returns FALSE (0000ms, 0501ms total)
T76A4 013:868 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 0A 00 00 00  returns 0x04 (0000ms, 0501ms total)
T76A4 013:875 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 0A 00 00 00  returns 0x04 (0001ms, 0502ms total)
T76A4 013:883 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 14  returns 0x01 (0000ms, 0502ms total)
T3F3C 013:897 JLINK_IsHalted()  returns FALSE (0001ms, 0503ms total)
T3F3C 013:999 JLINK_IsHalted()  returns FALSE (0001ms, 0503ms total)
T3F3C 014:101 JLINK_IsHalted()  returns FALSE (0000ms, 0502ms total)
T3F3C 014:202 JLINK_IsHalted()  returns FALSE (0002ms, 0504ms total)
T76A4 014:464 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 0A 00 00 00  returns 0x04 (0001ms, 0503ms total)
T76A4 014:471 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 0A 00 00 00  returns 0x04 (0001ms, 0504ms total)
T76A4 014:479 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 14  returns 0x01 (0001ms, 0505ms total)
T3F3C 014:494 JLINK_IsHalted()  returns FALSE (0001ms, 0506ms total)
T3F3C 014:596 JLINK_IsHalted()  returns FALSE (0000ms, 0505ms total)
T3F3C 014:697 JLINK_IsHalted()  returns FALSE (0000ms, 0505ms total)
T3F3C 014:798 JLINK_IsHalted()  returns FALSE (0000ms, 0505ms total)
T76A4 015:061 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 0B 00 00 00  returns 0x04 (0001ms, 0506ms total)
T76A4 015:068 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 0B 00 00 00  returns 0x04 (0001ms, 0507ms total)
T76A4 015:076 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 16  returns 0x01 (0001ms, 0508ms total)
T3F3C 015:091 JLINK_IsHalted()  returns FALSE (0000ms, 0508ms total)
T3F3C 015:192 JLINK_IsHalted()  returns FALSE (0000ms, 0508ms total)
T3F3C 015:293 JLINK_IsHalted()  returns FALSE (0000ms, 0508ms total)
T3F3C 015:394 JLINK_IsHalted()  returns FALSE (0000ms, 0508ms total)
T76A4 015:653 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 0C 00 00 00  returns 0x04 (0001ms, 0509ms total)
T76A4 015:668 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 0B 00 00 00  returns 0x04 (0000ms, 0509ms total)
T76A4 015:675 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 17  returns 0x01 (0001ms, 0510ms total)
T3F3C 015:698 JLINK_IsHalted()  returns FALSE (0000ms, 0510ms total)
T3F3C 015:800 JLINK_IsHalted()  returns FALSE (0000ms, 0510ms total)
T3F3C 015:901 JLINK_IsHalted()  returns FALSE (0000ms, 0510ms total)
T3F3C 016:002 JLINK_IsHalted()  returns FALSE (0000ms, 0510ms total)
T76A4 016:263 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 0C 00 00 00  returns 0x04 (0000ms, 0510ms total)
T76A4 016:271 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 0C 00 00 00  returns 0x04 (0000ms, 0510ms total)
T76A4 016:279 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 18  returns 0x01 (0000ms, 0510ms total)
T3F3C 016:300 JLINK_IsHalted()  returns FALSE (0000ms, 0510ms total)
T3F3C 016:401 JLINK_IsHalted()  returns FALSE (0000ms, 0510ms total)
T3F3C 016:502 JLINK_IsHalted()  returns FALSE (0000ms, 0510ms total)
T3F3C 016:603 JLINK_IsHalted()  returns FALSE (0000ms, 0510ms total)
T76A4 016:865 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 0D 00 00 00  returns 0x04 (0000ms, 0510ms total)
T76A4 016:873 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 0D 00 00 00  returns 0x04 (0000ms, 0510ms total)
T76A4 016:887 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 1A  returns 0x01 (0001ms, 0511ms total)
T3F3C 016:908 JLINK_IsHalted()  returns FALSE (0001ms, 0512ms total)
T3F3C 017:010 JLINK_IsHalted()  returns FALSE (0000ms, 0511ms total)
T3F3C 017:112 JLINK_IsHalted()  returns FALSE (0000ms, 0511ms total)
T76A4 017:375 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 0D 00 00 00  returns 0x04 (0000ms, 0511ms total)
T76A4 017:382 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 0D 00 00 00  returns 0x04 (0001ms, 0512ms total)
T76A4 017:390 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 1A  returns 0x01 (0000ms, 0512ms total)
T3F3C 017:404 JLINK_IsHalted()  returns FALSE (0001ms, 0513ms total)
T3F3C 017:505 JLINK_IsHalted()  returns FALSE (0000ms, 0512ms total)
T3F3C 017:607 JLINK_IsHalted()  returns FALSE (0000ms, 0512ms total)
T3F3C 017:708 JLINK_IsHalted()  returns FALSE (0000ms, 0512ms total)
T76A4 017:971 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 0E 00 00 00  returns 0x04 (0000ms, 0512ms total)
T76A4 017:978 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 0E 00 00 00  returns 0x04 (0001ms, 0513ms total)
T76A4 017:986 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 1C  returns 0x01 (0001ms, 0514ms total)
T3F3C 018:000 JLINK_IsHalted()  returns FALSE (0001ms, 0515ms total)
T3F3C 018:102 JLINK_IsHalted()  returns FALSE (0000ms, 0514ms total)
T3F3C 018:203 JLINK_IsHalted()  returns FALSE (0000ms, 0514ms total)
T3F3C 018:305 JLINK_IsHalted()  returns FALSE (0000ms, 0514ms total)
T76A4 018:564 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 0E 00 00 00  returns 0x04 (0001ms, 0515ms total)
T76A4 018:572 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 0E 00 00 00  returns 0x04 (0001ms, 0516ms total)
T76A4 018:579 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 1D  returns 0x01 (0001ms, 0517ms total)
T3F3C 018:601 JLINK_IsHalted()  returns FALSE (0000ms, 0517ms total)
T76A4 018:639 JLINK_ReadMemEx(0x00001056, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00001056) - Data: 0B 49  returns 0x02 (0000ms, 0517ms total)
T76A4 018:639 JLINK_ReadMemEx(0x00001058, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00001058) - Data: 0A 68  returns 0x02 (0001ms, 0518ms total)
T76A4 018:640 JLINK_ReadMemEx(0x00001058, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00001058) - Data: 0A 68  returns 0x02 (0000ms, 0518ms total)
T76A4 018:640 JLINK_ReadMemEx(0x0000105A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000105A) - Data: 52 1C  returns 0x02 (0001ms, 0519ms total)
T76A4 018:641 JLINK_ReadMemEx(0x0000105A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000105A) - Data: 52 1C  returns 0x02 (0001ms, 0520ms total)
T76A4 018:642 JLINK_ReadMemEx(0x0000105C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000105C) - Data: 0A 60  returns 0x02 (0000ms, 0520ms total)
T76A4 018:642 JLINK_ReadMemEx(0x0000105C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000105C) - Data: 0A 60  returns 0x02 (0001ms, 0521ms total)
T76A4 018:643 JLINK_ReadMemEx(0x0000105E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000105E) - Data: FF E7  returns 0x02 (0001ms, 0522ms total)
T3F3C 018:703 JLINK_IsHalted()  returns FALSE (0001ms, 0523ms total)
T3F3C 018:805 JLINK_IsHalted()  returns FALSE (0000ms, 0522ms total)
T76A4 018:808 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 0F 00 00 00  returns 0x04 (0001ms, 0523ms total)
T3F3C 018:907 JLINK_IsHalted()  returns FALSE (0000ms, 0523ms total)
T76A4 019:169 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 0F 00 00 00  returns 0x04 (0001ms, 0524ms total)
T76A4 019:177 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 0F 00 00 00  returns 0x04 (0001ms, 0525ms total)
T76A4 019:184 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 1E  returns 0x01 (0001ms, 0526ms total)
T3F3C 019:206 JLINK_IsHalted()  returns FALSE (0000ms, 0526ms total)
T3F3C 019:308 JLINK_IsHalted()  returns FALSE (0000ms, 0526ms total)
T3F3C 019:409 JLINK_IsHalted()  returns FALSE (0000ms, 0526ms total)
T76A4 019:671 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 10 00 00 00  returns 0x04 (0001ms, 0527ms total)
T76A4 019:685 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 0F 00 00 00  returns 0x04 (0001ms, 0528ms total)
T76A4 019:693 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 1F  returns 0x01 (0000ms, 0528ms total)
T3F3C 019:714 JLINK_IsHalted()  returns FALSE (0001ms, 0529ms total)
T3F3C 019:816 JLINK_IsHalted()  returns FALSE (0000ms, 0528ms total)
T3F3C 019:918 JLINK_IsHalted()  returns FALSE (0000ms, 0528ms total)
T3F3C 020:019 JLINK_IsHalted()  returns FALSE (0000ms, 0528ms total)
T76A4 020:280 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 10 00 00 00  returns 0x04 (0001ms, 0529ms total)
T76A4 020:288 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 10 00 00 00  returns 0x04 (0000ms, 0529ms total)
T76A4 020:296 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 20  returns 0x01 (0000ms, 0529ms total)
T3F3C 020:317 JLINK_IsHalted()  returns FALSE (0000ms, 0529ms total)
T3F3C 020:418 JLINK_IsHalted()  returns FALSE (0000ms, 0529ms total)
T3F3C 020:519 JLINK_IsHalted()  returns FALSE (0000ms, 0529ms total)
T3F3C 020:621 JLINK_IsHalted()  returns FALSE (0000ms, 0529ms total)
T76A4 020:633 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 10 00 00 00  returns 0x04 (0001ms, 0530ms total)
T76A4 020:882 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 11 00 00 00  returns 0x04 (0000ms, 0530ms total)
T76A4 020:890 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 11 00 00 00  returns 0x04 (0000ms, 0530ms total)
T76A4 020:904 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 22  returns 0x01 (0001ms, 0531ms total)
T3F3C 020:925 JLINK_IsHalted()  returns FALSE (0001ms, 0532ms total)
T3F3C 021:027 JLINK_IsHalted()  returns FALSE (0000ms, 0531ms total)
T3F3C 021:128 JLINK_IsHalted()  returns FALSE (0000ms, 0531ms total)
T76A4 021:388 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 11 00 00 00  returns 0x04 (0000ms, 0531ms total)
T76A4 021:395 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 11 00 00 00  returns 0x04 (0001ms, 0532ms total)
T76A4 021:403 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 22  returns 0x01 (0001ms, 0533ms total)
T3F3C 021:417 JLINK_IsHalted()  returns FALSE (0001ms, 0534ms total)
T3F3C 021:519 JLINK_IsHalted()  returns FALSE (0000ms, 0533ms total)
T3F3C 021:620 JLINK_IsHalted()  returns FALSE (0000ms, 0533ms total)
T3F3C 021:721 JLINK_IsHalted()  returns FALSE (0001ms, 0534ms total)
T76A4 021:982 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 12 00 00 00  returns 0x04 (0001ms, 0534ms total)
T76A4 021:990 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 12 00 00 00  returns 0x04 (0000ms, 0534ms total)
T76A4 021:998 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 24  returns 0x01 (0000ms, 0534ms total)
T3F3C 022:012 JLINK_IsHalted()  returns FALSE (0001ms, 0535ms total)
T3F3C 022:113 JLINK_IsHalted()  returns FALSE (0000ms, 0534ms total)
T3F3C 022:214 JLINK_IsHalted()  returns FALSE (0000ms, 0534ms total)
T3F3C 022:316 JLINK_IsHalted()  returns FALSE (0000ms, 0534ms total)
T76A4 022:576 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 12 00 00 00  returns 0x04 (0001ms, 0535ms total)
T76A4 022:584 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 12 00 00 00  returns 0x04 (0000ms, 0535ms total)
T76A4 022:591 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 24  returns 0x01 (0001ms, 0536ms total)
T3F3C 022:606 JLINK_IsHalted()  returns FALSE (0000ms, 0536ms total)
T3F3C 022:707 JLINK_IsHalted()  returns FALSE (0000ms, 0536ms total)
T3F3C 022:809 JLINK_IsHalted()  returns FALSE (0000ms, 0536ms total)
T3F3C 022:910 JLINK_IsHalted()  returns FALSE (0000ms, 0536ms total)
T76A4 023:172 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 13 00 00 00  returns 0x04 (0000ms, 0536ms total)
T76A4 023:179 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 13 00 00 00  returns 0x04 (0001ms, 0537ms total)
T76A4 023:187 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 26  returns 0x01 (0001ms, 0538ms total)
T3F3C 023:202 JLINK_IsHalted()  returns FALSE (0000ms, 0538ms total)
T3F3C 023:303 JLINK_IsHalted()  returns FALSE (0001ms, 0539ms total)
T3F3C 023:404 JLINK_IsHalted()  returns FALSE (0000ms, 0538ms total)
T3F3C 023:506 JLINK_IsHalted()  returns FALSE (0000ms, 0538ms total)
T76A4 023:770 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 14 00 00 00  returns 0x04 (0001ms, 0539ms total)
T76A4 023:784 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 13 00 00 00  returns 0x04 (0001ms, 0540ms total)
T76A4 023:792 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 27  returns 0x01 (0001ms, 0541ms total)
T3F3C 023:813 JLINK_IsHalted()  returns FALSE (0001ms, 0542ms total)
T76A4 023:869 JLINK_ReadMemEx(0x00001052, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00001052) - Data: 01 98  returns 0x02 (0001ms, 0542ms total)
T76A4 023:870 JLINK_ReadMemEx(0x00001054, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00001054) - Data: 02 90  returns 0x02 (0001ms, 0543ms total)
T3F3C 023:915 JLINK_IsHalted()  returns FALSE (0000ms, 0543ms total)
T3F3C 024:016 JLINK_IsHalted()  returns FALSE (0000ms, 0543ms total)
T76A4 024:278 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 14 00 00 00  returns 0x04 (0000ms, 0543ms total)
T76A4 024:285 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 14 00 00 00  returns 0x04 (0001ms, 0544ms total)
T76A4 024:293 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 28  returns 0x01 (0000ms, 0544ms total)
T3F3C 024:314 JLINK_IsHalted()  returns FALSE (0001ms, 0545ms total)
T3F3C 024:416 JLINK_IsHalted()  returns FALSE (0000ms, 0544ms total)
T3F3C 024:517 JLINK_IsHalted()  returns FALSE (0000ms, 0544ms total)
T3F3C 024:618 JLINK_IsHalted()  returns FALSE (0000ms, 0544ms total)
T76A4 024:878 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 15 00 00 00  returns 0x04 (0001ms, 0545ms total)
T76A4 024:886 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 15 00 00 00  returns 0x04 (0001ms, 0546ms total)
T76A4 024:900 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 2A  returns 0x01 (0001ms, 0547ms total)
T3F3C 024:921 JLINK_IsHalted()  returns FALSE (0001ms, 0548ms total)
T3F3C 025:023 JLINK_IsHalted()  returns FALSE (0000ms, 0547ms total)
T3F3C 025:125 JLINK_IsHalted()  returns FALSE (0000ms, 0547ms total)
T3F3C 025:226 JLINK_IsHalted()  returns FALSE (0000ms, 0547ms total)
T76A4 025:487 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 15 00 00 00  returns 0x04 (0001ms, 0548ms total)
T76A4 025:495 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 15 00 00 00  returns 0x04 (0001ms, 0549ms total)
T76A4 025:502 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 2A  returns 0x01 (0001ms, 0550ms total)
T3F3C 025:517 JLINK_IsHalted()  returns FALSE (0001ms, 0551ms total)
T3F3C 025:619 JLINK_IsHalted()  returns FALSE (0000ms, 0550ms total)
T3F3C 025:720 JLINK_IsHalted()  returns FALSE (0000ms, 0550ms total)
T3F3C 025:821 JLINK_IsHalted()  returns FALSE (0000ms, 0550ms total)
T76A4 026:085 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 16 00 00 00  returns 0x04 (0001ms, 0551ms total)
T76A4 026:093 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 16 00 00 00  returns 0x04 (0000ms, 0551ms total)
T76A4 026:100 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 2C  returns 0x01 (0001ms, 0552ms total)
T3F3C 026:115 JLINK_IsHalted()  returns FALSE (0000ms, 0552ms total)
T3F3C 026:217 JLINK_IsHalted()  returns FALSE (0000ms, 0552ms total)
T3F3C 026:317 JLINK_IsHalted()  returns FALSE (0000ms, 0552ms total)
T3F3C 026:419 JLINK_IsHalted()  returns FALSE (0000ms, 0552ms total)
T76A4 026:679 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 17 00 00 00  returns 0x04 (0001ms, 0553ms total)
T76A4 026:694 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 16 00 00 00  returns 0x04 (0001ms, 0554ms total)
T76A4 026:702 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 2D  returns 0x01 (0000ms, 0554ms total)
T3F3C 026:723 JLINK_IsHalted()  returns FALSE (0001ms, 0555ms total)
T3F3C 026:824 JLINK_IsHalted()  returns FALSE (0000ms, 0554ms total)
T3F3C 026:925 JLINK_IsHalted()  returns FALSE (0000ms, 0554ms total)
T76A4 027:185 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 17 00 00 00  returns 0x04 (0000ms, 0554ms total)
T76A4 027:192 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 17 00 00 00  returns 0x04 (0001ms, 0555ms total)
T76A4 027:200 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 2E  returns 0x01 (0000ms, 0555ms total)
T3F3C 027:221 JLINK_IsHalted()  returns FALSE (0000ms, 0555ms total)
T3F3C 027:322 JLINK_IsHalted()  returns FALSE (0000ms, 0555ms total)
T3F3C 027:423 JLINK_IsHalted()  returns FALSE (0001ms, 0556ms total)
T76A4 027:448 JLINK_ReadMemEx(0x0201958C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201958C) - Data: 00  returns 0x01 (0001ms, 0556ms total)
T76A4 027:449 JLINK_ReadMemEx(0x0201958D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201958D) - Data: 01  returns 0x01 (0001ms, 0557ms total)
T76A4 027:450 JLINK_ReadMemEx(0x0201958E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201958E) - Data: 02  returns 0x01 (0001ms, 0558ms total)
T76A4 027:451 JLINK_ReadMemEx(0x0201958F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201958F) - Data: 03  returns 0x01 (0000ms, 0558ms total)
T76A4 027:451 JLINK_ReadMemEx(0x02019590, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019590) - Data: 04  returns 0x01 (0001ms, 0559ms total)
T76A4 027:452 JLINK_ReadMemEx(0x02019591, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019591) - Data: 05  returns 0x01 (0001ms, 0560ms total)
T76A4 027:453 JLINK_ReadMemEx(0x02019592, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019592) - Data: 06  returns 0x01 (0000ms, 0560ms total)
T76A4 027:453 JLINK_ReadMemEx(0x02019593, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019593) - Data: 07  returns 0x01 (0001ms, 0561ms total)
T76A4 027:454 JLINK_ReadMemEx(0x02019594, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019594) - Data: 08  returns 0x01 (0001ms, 0562ms total)
T76A4 027:455 JLINK_ReadMemEx(0x02019595, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019595) - Data: 09  returns 0x01 (0000ms, 0562ms total)
T76A4 027:455 JLINK_ReadMemEx(0x02019596, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019596) - Data: 00  returns 0x01 (0001ms, 0563ms total)
T76A4 027:456 JLINK_ReadMemEx(0x02019597, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019597) - Data: 00  returns 0x01 (0000ms, 0563ms total)
T76A4 027:456 JLINK_ReadMemEx(0x02019598, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019598) - Data: 00  returns 0x01 (0001ms, 0564ms total)
T76A4 027:457 JLINK_ReadMemEx(0x02019599, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019599) - Data: 00  returns 0x01 (0001ms, 0565ms total)
T76A4 027:458 JLINK_ReadMemEx(0x0201959A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959A) - Data: 00  returns 0x01 (0000ms, 0565ms total)
T76A4 027:458 JLINK_ReadMemEx(0x0201959B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959B) - Data: 00  returns 0x01 (0001ms, 0566ms total)
T76A4 027:459 JLINK_ReadMemEx(0x0201959C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959C) - Data: 00  returns 0x01 (0001ms, 0567ms total)
T76A4 027:460 JLINK_ReadMemEx(0x0201959D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959D) - Data: 00  returns 0x01 (0000ms, 0567ms total)
T76A4 027:460 JLINK_ReadMemEx(0x0201959E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959E) - Data: 00  returns 0x01 (0001ms, 0568ms total)
T76A4 027:461 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 00  returns 0x01 (0000ms, 0568ms total)
T76A4 027:461 JLINK_ReadMemEx(0x020195A0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A0) - Data: 00  returns 0x01 (0001ms, 0569ms total)
T76A4 027:462 JLINK_ReadMemEx(0x020195A1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A1) - Data: 00  returns 0x01 (0001ms, 0570ms total)
T76A4 027:463 JLINK_ReadMemEx(0x020195A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A2) - Data: 00  returns 0x01 (0000ms, 0570ms total)
T76A4 027:463 JLINK_ReadMemEx(0x020195A3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A3) - Data: 00  returns 0x01 (0001ms, 0571ms total)
T76A4 027:464 JLINK_ReadMemEx(0x020195A4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A4) - Data: 00  returns 0x01 (0001ms, 0572ms total)
T76A4 027:465 JLINK_ReadMemEx(0x020195A5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A5) - Data: 00  returns 0x01 (0000ms, 0572ms total)
T76A4 027:465 JLINK_ReadMemEx(0x020195A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A6) - Data: 00  returns 0x01 (0001ms, 0573ms total)
T76A4 027:466 JLINK_ReadMemEx(0x020195A7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A7) - Data: 00  returns 0x01 (0000ms, 0573ms total)
T76A4 027:466 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 00  returns 0x01 (0001ms, 0574ms total)
T76A4 027:467 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 00  returns 0x01 (0001ms, 0575ms total)
T76A4 027:468 JLINK_ReadMemEx(0x020195AA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195AA) - Data: 00  returns 0x01 (0000ms, 0575ms total)
T76A4 027:468 JLINK_ReadMemEx(0x020195AB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195AB) - Data: 00  returns 0x01 (0001ms, 0576ms total)
T76A4 027:469 JLINK_ReadMemEx(0x020195AC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195AC) - Data: 00  returns 0x01 (0001ms, 0577ms total)
T76A4 027:470 JLINK_ReadMemEx(0x020195AD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195AD) - Data: 00  returns 0x01 (0000ms, 0577ms total)
T76A4 027:470 JLINK_ReadMemEx(0x020195AE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195AE) - Data: 00  returns 0x01 (0001ms, 0578ms total)
T76A4 027:471 JLINK_ReadMemEx(0x020195AF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195AF) - Data: 00  returns 0x01 (0000ms, 0578ms total)
T76A4 027:471 JLINK_ReadMemEx(0x020195B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B0) - Data: 00  returns 0x01 (0001ms, 0579ms total)
T76A4 027:472 JLINK_ReadMemEx(0x020195B1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B1) - Data: 00  returns 0x01 (0001ms, 0580ms total)
T76A4 027:473 JLINK_ReadMemEx(0x020195B2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B2) - Data: 00  returns 0x01 (0000ms, 0580ms total)
T76A4 027:473 JLINK_ReadMemEx(0x020195B3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B3) - Data: 00  returns 0x01 (0001ms, 0581ms total)
T76A4 027:474 JLINK_ReadMemEx(0x020195B4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B4) - Data: 00  returns 0x01 (0001ms, 0582ms total)
T76A4 027:475 JLINK_ReadMemEx(0x020195B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B5) - Data: 00  returns 0x01 (0000ms, 0582ms total)
T76A4 027:475 JLINK_ReadMemEx(0x020195B6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B6) - Data: 00  returns 0x01 (0001ms, 0583ms total)
T76A4 027:476 JLINK_ReadMemEx(0x020195B7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B7) - Data: 00  returns 0x01 (0000ms, 0583ms total)
T76A4 027:476 JLINK_ReadMemEx(0x020195B8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B8) - Data: 00  returns 0x01 (0001ms, 0584ms total)
T76A4 027:477 JLINK_ReadMemEx(0x020195B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B9) - Data: 00  returns 0x01 (0001ms, 0585ms total)
T76A4 027:478 JLINK_ReadMemEx(0x020195BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195BA) - Data: 00  returns 0x01 (0000ms, 0585ms total)
T3F3C 027:524 JLINK_IsHalted()  returns FALSE (0000ms, 0585ms total)
T76A4 027:788 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 18 00 00 00  returns 0x04 (0000ms, 0585ms total)
T76A4 027:795 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 17 00 00 00  returns 0x04 (0001ms, 0586ms total)
T76A4 027:803 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 2F  returns 0x01 (0000ms, 0586ms total)
T3F3C 027:824 JLINK_IsHalted()  returns FALSE (0001ms, 0587ms total)
T3F3C 027:926 JLINK_IsHalted()  returns FALSE (0000ms, 0586ms total)
T3F3C 028:027 JLINK_IsHalted()  returns FALSE (0000ms, 0586ms total)
T3F3C 028:128 JLINK_IsHalted()  returns FALSE (0000ms, 0586ms total)
T76A4 028:389 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 18 00 00 00  returns 0x04 (0000ms, 0586ms total)
T76A4 028:396 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 18 00 00 00  returns 0x04 (0001ms, 0588ms total)
T76A4 028:404 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 30  returns 0x01 (0000ms, 0588ms total)
T3F3C 028:425 JLINK_IsHalted()  returns FALSE (0001ms, 0589ms total)
T3F3C 028:527 JLINK_IsHalted()  returns FALSE (0000ms, 0588ms total)
T3F3C 028:628 JLINK_IsHalted()  returns FALSE (0000ms, 0588ms total)
T3F3C 028:729 JLINK_IsHalted()  returns FALSE (0000ms, 0588ms total)
T76A4 028:756 JLINK_ReadMemEx(0x0201958C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201958C) - Data: 00 01 02 03 04 05 06 07 08 09 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0589ms total)
T76A4 028:757 JLINK_ReadMemEx(0x0201968B, 0x0010 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(16 bytes @ 0x0201968B) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x10 (0002ms, 0591ms total)
T76A4 028:759 JLINK_ReadMemEx(0x0201969B, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x0201969B) - Data: 00 00 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 0592ms total)
T76A4 028:760 JLINK_ReadMemEx(0x020196A5, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196A5) - Data: 00 00  returns 0x02 (0001ms, 0593ms total)
T76A4 028:761 JLINK_ReadMemEx(0x020196A7, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196A7) - Data: 0A 00  returns 0x02 (0000ms, 0593ms total)
T76A4 028:761 JLINK_ReadMemEx(0x020196A9, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196A9) - Data: 00 00  returns 0x02 (0001ms, 0594ms total)
T76A4 028:762 JLINK_ReadMemEx(0x020196AB, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196AB) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0596ms total)
T76A4 028:764 JLINK_ReadMemEx(0x02019AAB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019AAB) - Data: A6  returns 0x01 (0000ms, 0596ms total)
T76A4 028:764 JLINK_ReadMemEx(0x02019AAC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019AAC) - Data: 9F AB DF 40  returns 0x04 (0001ms, 0597ms total)
T76A4 028:765 JLINK_ReadMemEx(0x0201958C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201958C) - Data: 00 01 02 03 04 05 06 07 08 09 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0598ms total)
T76A4 028:766 JLINK_ReadMemEx(0x0201968B, 0x0010 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(16 bytes @ 0x0201968B) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x10 (0001ms, 0599ms total)
T76A4 028:767 JLINK_ReadMemEx(0x0201969B, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x0201969B) - Data: 00 00 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 0600ms total)
T76A4 028:768 JLINK_ReadMemEx(0x020196A5, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196A5) - Data: 00 00  returns 0x02 (0001ms, 0601ms total)
T76A4 028:769 JLINK_ReadMemEx(0x020196A7, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196A7) - Data: 0A 00  returns 0x02 (0001ms, 0602ms total)
T76A4 028:770 JLINK_ReadMemEx(0x020196A9, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196A9) - Data: 00 00  returns 0x02 (0001ms, 0603ms total)
T76A4 028:771 JLINK_ReadMemEx(0x020196AB, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196AB) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0604ms total)
T76A4 028:772 JLINK_ReadMemEx(0x02019AAB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019AAB) - Data: A6  returns 0x01 (0001ms, 0605ms total)
T76A4 028:773 JLINK_ReadMemEx(0x02019AAC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019AAC) - Data: 9F AB DF 40  returns 0x04 (0001ms, 0606ms total)
T76A4 028:785 JLINK_ReadMemEx(0x0201958C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201958C) - Data: 00 01 02 03 04 05 06 07 08 09 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0607ms total)
T76A4 028:786 JLINK_ReadMemEx(0x0201968B, 0x0010 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(16 bytes @ 0x0201968B) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x10 (0001ms, 0608ms total)
T76A4 028:787 JLINK_ReadMemEx(0x0201969B, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x0201969B) - Data: 00 00 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 0609ms total)
T76A4 028:788 JLINK_ReadMemEx(0x020196A5, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196A5) - Data: 00 00  returns 0x02 (0001ms, 0610ms total)
T76A4 028:789 JLINK_ReadMemEx(0x020196A7, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196A7) - Data: 0A 00  returns 0x02 (0001ms, 0611ms total)
T76A4 028:790 JLINK_ReadMemEx(0x020196A9, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196A9) - Data: 00 00  returns 0x02 (0001ms, 0612ms total)
T76A4 028:791 JLINK_ReadMemEx(0x020196AB, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196AB) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0613ms total)
T76A4 028:792 JLINK_ReadMemEx(0x02019AAB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019AAB) - Data: A6  returns 0x01 (0001ms, 0614ms total)
T76A4 028:793 JLINK_ReadMemEx(0x02019AAC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019AAC) - Data: 9F AB DF 40  returns 0x04 (0001ms, 0615ms total)
T76A4 029:045 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 19 00 00 00  returns 0x04 (0000ms, 0615ms total)
T76A4 029:054 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 19 00 00 00  returns 0x04 (0001ms, 0616ms total)
T76A4 029:073 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 32  returns 0x01 (0001ms, 0617ms total)
T76A4 029:101 JLINK_ReadMemEx(0x0201958C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201958C) - Data: 00 01 02 03 04 05 06 07 08 09 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0618ms total)
T76A4 029:102 JLINK_ReadMemEx(0x0201968B, 0x0010 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(16 bytes @ 0x0201968B) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x10 (0001ms, 0619ms total)
T76A4 029:103 JLINK_ReadMemEx(0x0201969B, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x0201969B) - Data: 00 00 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 0620ms total)
T76A4 029:105 JLINK_ReadMemEx(0x020196A5, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196A5) - Data: 00 00  returns 0x02 (0000ms, 0620ms total)
T76A4 029:105 JLINK_ReadMemEx(0x020196A7, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196A7) - Data: 0A 00  returns 0x02 (0001ms, 0621ms total)
T76A4 029:106 JLINK_ReadMemEx(0x020196A9, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196A9) - Data: 00 00  returns 0x02 (0001ms, 0622ms total)
T76A4 029:107 JLINK_ReadMemEx(0x020196AB, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196AB) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0624ms total)
T76A4 029:109 JLINK_ReadMemEx(0x02019AAB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019AAB) - Data: A6  returns 0x01 (0000ms, 0624ms total)
T76A4 029:109 JLINK_ReadMemEx(0x02019AAC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019AAC) - Data: C6 AD 98 40  returns 0x04 (0001ms, 0625ms total)
T3F3C 029:119 JLINK_IsHalted()  returns FALSE (0001ms, 0626ms total)
T3F3C 029:222 JLINK_IsHalted()  returns FALSE (0000ms, 0625ms total)
T3F3C 029:323 JLINK_IsHalted()  returns FALSE (0001ms, 0626ms total)
T76A4 029:638 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 19 00 00 00  returns 0x04 (0000ms, 0625ms total)
T76A4 029:647 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 19 00 00 00  returns 0x04 (0001ms, 0626ms total)
T76A4 029:657 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 32  returns 0x01 (0001ms, 0627ms total)
T76A4 029:676 JLINK_ReadMemEx(0x0201958C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201958C) - Data: 00 01 02 03 04 05 06 07 08 09 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0628ms total)
T76A4 029:677 JLINK_ReadMemEx(0x0201968B, 0x0010 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(16 bytes @ 0x0201968B) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x10 (0001ms, 0629ms total)
T76A4 029:678 JLINK_ReadMemEx(0x0201969B, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x0201969B) - Data: 00 00 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 0631ms total)
T76A4 029:680 JLINK_ReadMemEx(0x020196A5, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196A5) - Data: 00 00  returns 0x02 (0000ms, 0631ms total)
T76A4 029:680 JLINK_ReadMemEx(0x020196A7, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196A7) - Data: 0A 00  returns 0x02 (0001ms, 0632ms total)
T76A4 029:681 JLINK_ReadMemEx(0x020196A9, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196A9) - Data: 00 00  returns 0x02 (0001ms, 0633ms total)
T76A4 029:682 JLINK_ReadMemEx(0x020196AB, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196AB) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0635ms total)
T76A4 029:684 JLINK_ReadMemEx(0x02019AAB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019AAB) - Data: A6  returns 0x01 (0000ms, 0635ms total)
T76A4 029:684 JLINK_ReadMemEx(0x02019AAC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019AAC) - Data: C6 AD 98 40  returns 0x04 (0001ms, 0636ms total)
T3F3C 029:695 JLINK_IsHalted()  returns FALSE (0000ms, 0636ms total)
T3F3C 029:796 JLINK_IsHalted()  returns FALSE (0000ms, 0636ms total)
T3F3C 029:898 JLINK_IsHalted()  returns FALSE (0000ms, 0636ms total)
T76A4 030:210 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 1A 00 00 00  returns 0x04 (0001ms, 0637ms total)
T76A4 030:220 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 1A 00 00 00  returns 0x04 (0001ms, 0638ms total)
T76A4 030:230 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 34  returns 0x01 (0000ms, 0638ms total)
T76A4 030:249 JLINK_ReadMemEx(0x0201958C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201958C) - Data: 00 01 02 03 04 05 06 07 08 09 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0639ms total)
T76A4 030:250 JLINK_ReadMemEx(0x0201968B, 0x0010 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(16 bytes @ 0x0201968B) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x10 (0001ms, 0640ms total)
T76A4 030:251 JLINK_ReadMemEx(0x0201969B, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x0201969B) - Data: 00 00 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 0641ms total)
T76A4 030:252 JLINK_ReadMemEx(0x020196A5, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196A5) - Data: 00 00  returns 0x02 (0001ms, 0642ms total)
T76A4 030:253 JLINK_ReadMemEx(0x020196A7, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196A7) - Data: 0A 00  returns 0x02 (0001ms, 0643ms total)
T76A4 030:254 JLINK_ReadMemEx(0x020196A9, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196A9) - Data: 00 00  returns 0x02 (0002ms, 0645ms total)
T76A4 030:256 JLINK_ReadMemEx(0x020196AB, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196AB) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0646ms total)
T76A4 030:257 JLINK_ReadMemEx(0x02019AAB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019AAB) - Data: A6  returns 0x01 (0001ms, 0647ms total)
T76A4 030:258 JLINK_ReadMemEx(0x02019AAC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019AAC) - Data: 27 02 F9 40  returns 0x04 (0001ms, 0648ms total)
T3F3C 030:269 JLINK_IsHalted()  returns FALSE (0001ms, 0649ms total)
T3F3C 030:370 JLINK_IsHalted()  returns FALSE (0001ms, 0649ms total)
T76A4 030:386 JLINK_ReadMemEx(0x0201958C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201958C) - Data: 00 01 02 03 04 05 06 07 08 09 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0649ms total)
T76A4 030:387 JLINK_ReadMemEx(0x0201958C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201958C) - Data: 00  returns 0x01 (0001ms, 0650ms total)
T76A4 030:388 JLINK_ReadMemEx(0x0201958D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201958D) - Data: 01  returns 0x01 (0000ms, 0650ms total)
T76A4 030:388 JLINK_ReadMemEx(0x0201958E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201958E) - Data: 02  returns 0x01 (0001ms, 0651ms total)
T76A4 030:389 JLINK_ReadMemEx(0x0201958F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201958F) - Data: 03  returns 0x01 (0000ms, 0651ms total)
T76A4 030:389 JLINK_ReadMemEx(0x02019590, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019590) - Data: 04  returns 0x01 (0001ms, 0652ms total)
T76A4 030:390 JLINK_ReadMemEx(0x02019591, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019591) - Data: 05  returns 0x01 (0001ms, 0653ms total)
T76A4 030:391 JLINK_ReadMemEx(0x02019592, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019592) - Data: 06  returns 0x01 (0000ms, 0653ms total)
T76A4 030:391 JLINK_ReadMemEx(0x02019593, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019593) - Data: 07  returns 0x01 (0001ms, 0654ms total)
T76A4 030:392 JLINK_ReadMemEx(0x02019594, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019594) - Data: 08  returns 0x01 (0001ms, 0655ms total)
T76A4 030:393 JLINK_ReadMemEx(0x02019595, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019595) - Data: 09  returns 0x01 (0000ms, 0655ms total)
T76A4 030:393 JLINK_ReadMemEx(0x02019596, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019596) - Data: 00  returns 0x01 (0001ms, 0656ms total)
T76A4 030:394 JLINK_ReadMemEx(0x02019597, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019597) - Data: 00  returns 0x01 (0001ms, 0657ms total)
T76A4 030:395 JLINK_ReadMemEx(0x02019598, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019598) - Data: 00  returns 0x01 (0000ms, 0657ms total)
T76A4 030:395 JLINK_ReadMemEx(0x02019599, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019599) - Data: 00  returns 0x01 (0001ms, 0658ms total)
T76A4 030:396 JLINK_ReadMemEx(0x0201959A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959A) - Data: 00  returns 0x01 (0001ms, 0659ms total)
T76A4 030:397 JLINK_ReadMemEx(0x0201959B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959B) - Data: 00  returns 0x01 (0000ms, 0659ms total)
T76A4 030:397 JLINK_ReadMemEx(0x0201959C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959C) - Data: 00  returns 0x01 (0001ms, 0660ms total)
T76A4 030:398 JLINK_ReadMemEx(0x0201959D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959D) - Data: 00  returns 0x01 (0001ms, 0661ms total)
T76A4 030:399 JLINK_ReadMemEx(0x0201959E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959E) - Data: 00  returns 0x01 (0000ms, 0661ms total)
T76A4 030:399 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 00  returns 0x01 (0001ms, 0662ms total)
T76A4 030:400 JLINK_ReadMemEx(0x020195A0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A0) - Data: 00  returns 0x01 (0000ms, 0662ms total)
T76A4 030:400 JLINK_ReadMemEx(0x020195A1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A1) - Data: 00  returns 0x01 (0001ms, 0663ms total)
T76A4 030:401 JLINK_ReadMemEx(0x020195A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A2) - Data: 00  returns 0x01 (0001ms, 0664ms total)
T76A4 030:402 JLINK_ReadMemEx(0x020195A3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A3) - Data: 00  returns 0x01 (0000ms, 0664ms total)
T76A4 030:402 JLINK_ReadMemEx(0x020195A4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A4) - Data: 00  returns 0x01 (0001ms, 0665ms total)
T76A4 030:403 JLINK_ReadMemEx(0x020195A5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A5) - Data: 00  returns 0x01 (0001ms, 0666ms total)
T76A4 030:404 JLINK_ReadMemEx(0x020195A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A6) - Data: 00  returns 0x01 (0000ms, 0666ms total)
T76A4 030:404 JLINK_ReadMemEx(0x020195A7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A7) - Data: 00  returns 0x01 (0001ms, 0667ms total)
T76A4 030:405 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 00  returns 0x01 (0000ms, 0667ms total)
T76A4 030:405 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 00  returns 0x01 (0001ms, 0668ms total)
T76A4 030:406 JLINK_ReadMemEx(0x020195AA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195AA) - Data: 00  returns 0x01 (0001ms, 0669ms total)
T76A4 030:407 JLINK_ReadMemEx(0x020195AB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195AB) - Data: 00  returns 0x01 (0000ms, 0669ms total)
T76A4 030:407 JLINK_ReadMemEx(0x020195AC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195AC) - Data: 00  returns 0x01 (0001ms, 0670ms total)
T76A4 030:408 JLINK_ReadMemEx(0x020195AD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195AD) - Data: 00  returns 0x01 (0001ms, 0671ms total)
T76A4 030:409 JLINK_ReadMemEx(0x020195AE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195AE) - Data: 00  returns 0x01 (0000ms, 0671ms total)
T76A4 030:409 JLINK_ReadMemEx(0x020195AF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195AF) - Data: 00  returns 0x01 (0001ms, 0672ms total)
T76A4 030:410 JLINK_ReadMemEx(0x020195B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B0) - Data: 00  returns 0x01 (0001ms, 0673ms total)
T76A4 030:411 JLINK_ReadMemEx(0x020195B1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B1) - Data: 00  returns 0x01 (0000ms, 0673ms total)
T76A4 030:411 JLINK_ReadMemEx(0x020195B2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B2) - Data: 00  returns 0x01 (0001ms, 0674ms total)
T76A4 030:412 JLINK_ReadMemEx(0x020195B3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B3) - Data: 00  returns 0x01 (0001ms, 0675ms total)
T76A4 030:413 JLINK_ReadMemEx(0x020195B4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B4) - Data: 00  returns 0x01 (0000ms, 0675ms total)
T76A4 030:413 JLINK_ReadMemEx(0x020195B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B5) - Data: 00  returns 0x01 (0001ms, 0676ms total)
T76A4 030:414 JLINK_ReadMemEx(0x020195B6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B6) - Data: 00  returns 0x01 (0001ms, 0677ms total)
T76A4 030:415 JLINK_ReadMemEx(0x020195B7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B7) - Data: 00  returns 0x01 (0000ms, 0677ms total)
T76A4 030:415 JLINK_ReadMemEx(0x020195B8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B8) - Data: 00  returns 0x01 (0001ms, 0678ms total)
T76A4 030:416 JLINK_ReadMemEx(0x020195B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B9) - Data: 00  returns 0x01 (0001ms, 0679ms total)
T76A4 030:417 JLINK_ReadMemEx(0x020195BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195BA) - Data: 00  returns 0x01 (0000ms, 0679ms total)
T76A4 030:417 JLINK_ReadMemEx(0x020195BB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195BB) - Data: 00  returns 0x01 (0001ms, 0680ms total)
T76A4 030:418 JLINK_ReadMemEx(0x020195BC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195BC) - Data: 00  returns 0x01 (0001ms, 0681ms total)
T76A4 030:419 JLINK_ReadMemEx(0x020195BD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195BD) - Data: 00  returns 0x01 (0000ms, 0681ms total)
T76A4 030:419 JLINK_ReadMemEx(0x020195BE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195BE) - Data: 00  returns 0x01 (0001ms, 0682ms total)
T76A4 030:420 JLINK_ReadMemEx(0x020195BF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195BF) - Data: 00  returns 0x01 (0001ms, 0683ms total)
T76A4 030:421 JLINK_ReadMemEx(0x020195C0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195C0) - Data: 00  returns 0x01 (0000ms, 0683ms total)
T76A4 030:421 JLINK_ReadMemEx(0x020195C1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195C1) - Data: 00  returns 0x01 (0001ms, 0684ms total)
T76A4 030:422 JLINK_ReadMemEx(0x020195C2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195C2) - Data: 00  returns 0x01 (0001ms, 0685ms total)
T76A4 030:423 JLINK_ReadMemEx(0x020195C3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195C3) - Data: 00  returns 0x01 (0000ms, 0685ms total)
T76A4 030:423 JLINK_ReadMemEx(0x020195C4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195C4) - Data: 00  returns 0x01 (0001ms, 0686ms total)
T76A4 030:424 JLINK_ReadMemEx(0x020195C5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195C5) - Data: 00  returns 0x01 (0001ms, 0687ms total)
T76A4 030:425 JLINK_ReadMemEx(0x020195C6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195C6) - Data: 00  returns 0x01 (0001ms, 0688ms total)
T76A4 030:426 JLINK_ReadMemEx(0x020195C7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195C7) - Data: 00  returns 0x01 (0001ms, 0689ms total)
T76A4 030:427 JLINK_ReadMemEx(0x020195C8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195C8) - Data: 00  returns 0x01 (0000ms, 0689ms total)
T76A4 030:427 JLINK_ReadMemEx(0x020195C9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195C9) - Data: 00  returns 0x01 (0001ms, 0690ms total)
T76A4 030:428 JLINK_ReadMemEx(0x020195CA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195CA) - Data: 00  returns 0x01 (0000ms, 0690ms total)
T76A4 030:428 JLINK_ReadMemEx(0x020195CB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195CB) - Data: 00  returns 0x01 (0001ms, 0691ms total)
T76A4 030:429 JLINK_ReadMemEx(0x020195CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195CC) - Data: 00  returns 0x01 (0001ms, 0692ms total)
T76A4 030:430 JLINK_ReadMemEx(0x020195CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195CD) - Data: 00  returns 0x01 (0000ms, 0692ms total)
T76A4 030:430 JLINK_ReadMemEx(0x020195CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195CE) - Data: 00  returns 0x01 (0001ms, 0693ms total)
T76A4 030:431 JLINK_ReadMemEx(0x020195CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195CF) - Data: 00  returns 0x01 (0001ms, 0694ms total)
T76A4 030:432 JLINK_ReadMemEx(0x020195D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195D0) - Data: 00  returns 0x01 (0000ms, 0694ms total)
T76A4 030:432 JLINK_ReadMemEx(0x020195D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195D1) - Data: 00  returns 0x01 (0001ms, 0695ms total)
T76A4 030:433 JLINK_ReadMemEx(0x020195D2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195D2) - Data: 00  returns 0x01 (0000ms, 0695ms total)
T76A4 030:433 JLINK_ReadMemEx(0x020195D3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195D3) - Data: 00  returns 0x01 (0001ms, 0696ms total)
T76A4 030:434 JLINK_ReadMemEx(0x020195D4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195D4) - Data: 00  returns 0x01 (0001ms, 0697ms total)
T76A4 030:435 JLINK_ReadMemEx(0x020195D5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195D5) - Data: 00  returns 0x01 (0000ms, 0697ms total)
T76A4 030:435 JLINK_ReadMemEx(0x020195D6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195D6) - Data: 00  returns 0x01 (0001ms, 0698ms total)
T76A4 030:436 JLINK_ReadMemEx(0x020195D7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195D7) - Data: 00  returns 0x01 (0001ms, 0699ms total)
T76A4 030:437 JLINK_ReadMemEx(0x020195D8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195D8) - Data: 00  returns 0x01 (0000ms, 0699ms total)
T76A4 030:437 JLINK_ReadMemEx(0x020195D9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195D9) - Data: 00  returns 0x01 (0001ms, 0700ms total)
T76A4 030:438 JLINK_ReadMemEx(0x020195DA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195DA) - Data: 00  returns 0x01 (0000ms, 0700ms total)
T76A4 030:438 JLINK_ReadMemEx(0x020195DB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195DB) - Data: 00  returns 0x01 (0001ms, 0701ms total)
T76A4 030:439 JLINK_ReadMemEx(0x020195DC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195DC) - Data: 00  returns 0x01 (0001ms, 0702ms total)
T76A4 030:440 JLINK_ReadMemEx(0x020195DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195DD) - Data: 00  returns 0x01 (0000ms, 0702ms total)
T76A4 030:440 JLINK_ReadMemEx(0x020195DE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195DE) - Data: 00  returns 0x01 (0001ms, 0703ms total)
T76A4 030:441 JLINK_ReadMemEx(0x020195DF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195DF) - Data: 00  returns 0x01 (0001ms, 0704ms total)
T76A4 030:442 JLINK_ReadMemEx(0x020195E0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195E0) - Data: 00  returns 0x01 (0000ms, 0704ms total)
T76A4 030:442 JLINK_ReadMemEx(0x020195E1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195E1) - Data: 00  returns 0x01 (0001ms, 0705ms total)
T76A4 030:443 JLINK_ReadMemEx(0x020195E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195E2) - Data: 00  returns 0x01 (0001ms, 0706ms total)
T76A4 030:444 JLINK_ReadMemEx(0x020195E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195E3) - Data: 00  returns 0x01 (0000ms, 0706ms total)
T76A4 030:444 JLINK_ReadMemEx(0x020195E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195E4) - Data: 00  returns 0x01 (0001ms, 0707ms total)
T76A4 030:445 JLINK_ReadMemEx(0x020195E5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195E5) - Data: 00  returns 0x01 (0001ms, 0708ms total)
T76A4 030:446 JLINK_ReadMemEx(0x020195E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195E6) - Data: 00  returns 0x01 (0000ms, 0708ms total)
T76A4 030:446 JLINK_ReadMemEx(0x020195E7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195E7) - Data: 00  returns 0x01 (0001ms, 0709ms total)
T76A4 030:447 JLINK_ReadMemEx(0x020195E8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195E8) - Data: 00  returns 0x01 (0001ms, 0710ms total)
T76A4 030:448 JLINK_ReadMemEx(0x020195E9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195E9) - Data: 00  returns 0x01 (0000ms, 0710ms total)
T76A4 030:448 JLINK_ReadMemEx(0x020195EA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195EA) - Data: 00  returns 0x01 (0001ms, 0711ms total)
T76A4 030:449 JLINK_ReadMemEx(0x020195EB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195EB) - Data: 00  returns 0x01 (0001ms, 0712ms total)
T76A4 030:450 JLINK_ReadMemEx(0x020195EC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195EC) - Data: 00  returns 0x01 (0000ms, 0712ms total)
T76A4 030:450 JLINK_ReadMemEx(0x020195ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195ED) - Data: 00  returns 0x01 (0001ms, 0713ms total)
T76A4 030:451 JLINK_ReadMemEx(0x020195EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195EE) - Data: 00  returns 0x01 (0000ms, 0713ms total)
T76A4 030:451 JLINK_ReadMemEx(0x020195EF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195EF) - Data: 00  returns 0x01 (0001ms, 0714ms total)
T76A4 030:452 JLINK_ReadMemEx(0x020195F0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195F0) - Data: 00  returns 0x01 (0001ms, 0715ms total)
T76A4 030:453 JLINK_ReadMemEx(0x020195F1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195F1) - Data: 00  returns 0x01 (0000ms, 0715ms total)
T76A4 030:453 JLINK_ReadMemEx(0x020195F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195F2) - Data: 00  returns 0x01 (0001ms, 0716ms total)
T76A4 030:454 JLINK_ReadMemEx(0x020195F3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195F3) - Data: 00  returns 0x01 (0000ms, 0716ms total)
T76A4 030:454 JLINK_ReadMemEx(0x020195F4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195F4) - Data: 00  returns 0x01 (0001ms, 0717ms total)
T76A4 030:455 JLINK_ReadMemEx(0x020195F5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195F5) - Data: 00  returns 0x01 (0001ms, 0718ms total)
T76A4 030:456 JLINK_ReadMemEx(0x020195F6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195F6) - Data: 00  returns 0x01 (0000ms, 0718ms total)
T76A4 030:456 JLINK_ReadMemEx(0x020195F7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195F7) - Data: 00  returns 0x01 (0001ms, 0719ms total)
T76A4 030:457 JLINK_ReadMemEx(0x020195F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195F8) - Data: 00  returns 0x01 (0001ms, 0720ms total)
T76A4 030:458 JLINK_ReadMemEx(0x020195F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195F9) - Data: 00  returns 0x01 (0000ms, 0720ms total)
T76A4 030:458 JLINK_ReadMemEx(0x020195FA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195FA) - Data: 00  returns 0x01 (0001ms, 0721ms total)
T76A4 030:459 JLINK_ReadMemEx(0x020195FB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195FB) - Data: 00  returns 0x01 (0001ms, 0722ms total)
T76A4 030:460 JLINK_ReadMemEx(0x020195FC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195FC) - Data: 00  returns 0x01 (0000ms, 0722ms total)
T76A4 030:460 JLINK_ReadMemEx(0x020195FD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195FD) - Data: 00  returns 0x01 (0001ms, 0723ms total)
T76A4 030:461 JLINK_ReadMemEx(0x020195FE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195FE) - Data: 00  returns 0x01 (0001ms, 0724ms total)
T76A4 030:462 JLINK_ReadMemEx(0x020195FF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195FF) - Data: 00  returns 0x01 (0000ms, 0724ms total)
T76A4 030:462 JLINK_ReadMemEx(0x02019600, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019600) - Data: 00  returns 0x01 (0001ms, 0725ms total)
T76A4 030:463 JLINK_ReadMemEx(0x02019601, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019601) - Data: 00  returns 0x01 (0001ms, 0726ms total)
T76A4 030:464 JLINK_ReadMemEx(0x02019602, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019602) - Data: 00  returns 0x01 (0000ms, 0726ms total)
T76A4 030:464 JLINK_ReadMemEx(0x02019603, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019603) - Data: 00  returns 0x01 (0001ms, 0727ms total)
T76A4 030:465 JLINK_ReadMemEx(0x02019604, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019604) - Data: 00  returns 0x01 (0001ms, 0728ms total)
T76A4 030:466 JLINK_ReadMemEx(0x02019605, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019605) - Data: 00  returns 0x01 (0000ms, 0728ms total)
T76A4 030:466 JLINK_ReadMemEx(0x02019606, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019606) - Data: 00  returns 0x01 (0001ms, 0729ms total)
T76A4 030:467 JLINK_ReadMemEx(0x02019607, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019607) - Data: 00  returns 0x01 (0001ms, 0730ms total)
T76A4 030:468 JLINK_ReadMemEx(0x02019608, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019608) - Data: 00  returns 0x01 (0000ms, 0730ms total)
T76A4 030:468 JLINK_ReadMemEx(0x02019609, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019609) - Data: 00  returns 0x01 (0001ms, 0731ms total)
T76A4 030:469 JLINK_ReadMemEx(0x0201960A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201960A) - Data: 00  returns 0x01 (0001ms, 0732ms total)
T76A4 030:470 JLINK_ReadMemEx(0x0201960B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201960B) - Data: 00  returns 0x01 (0000ms, 0732ms total)
T76A4 030:470 JLINK_ReadMemEx(0x0201960C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201960C) - Data: 00  returns 0x01 (0001ms, 0733ms total)
T76A4 030:471 JLINK_ReadMemEx(0x0201960D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201960D) - Data: 00  returns 0x01 (0001ms, 0734ms total)
T3F3C 030:472 JLINK_IsHalted()  returns FALSE (0000ms, 0733ms total)
T76A4 030:472 JLINK_ReadMemEx(0x0201960E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201960E) - Data: 00  returns 0x01 (0001ms, 0734ms total)
T76A4 030:473 JLINK_ReadMemEx(0x0201960F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201960F) - Data: 00  returns 0x01 (0001ms, 0735ms total)
T76A4 030:474 JLINK_ReadMemEx(0x02019610, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019610) - Data: 00  returns 0x01 (0000ms, 0735ms total)
T76A4 030:474 JLINK_ReadMemEx(0x02019611, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019611) - Data: 00  returns 0x01 (0001ms, 0736ms total)
T76A4 030:475 JLINK_ReadMemEx(0x02019612, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019612) - Data: 00  returns 0x01 (0001ms, 0737ms total)
T76A4 030:476 JLINK_ReadMemEx(0x02019613, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019613) - Data: 00  returns 0x01 (0001ms, 0738ms total)
T76A4 030:477 JLINK_ReadMemEx(0x02019614, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019614) - Data: 00  returns 0x01 (0000ms, 0738ms total)
T76A4 030:477 JLINK_ReadMemEx(0x02019615, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019615) - Data: 00  returns 0x01 (0001ms, 0739ms total)
T76A4 030:478 JLINK_ReadMemEx(0x02019616, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019616) - Data: 00  returns 0x01 (0000ms, 0739ms total)
T76A4 030:478 JLINK_ReadMemEx(0x02019617, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019617) - Data: 00  returns 0x01 (0001ms, 0740ms total)
T76A4 030:479 JLINK_ReadMemEx(0x02019618, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019618) - Data: 00  returns 0x01 (0001ms, 0741ms total)
T76A4 030:480 JLINK_ReadMemEx(0x02019619, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019619) - Data: 00  returns 0x01 (0000ms, 0741ms total)
T76A4 030:480 JLINK_ReadMemEx(0x0201961A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201961A) - Data: 00  returns 0x01 (0001ms, 0742ms total)
T76A4 030:481 JLINK_ReadMemEx(0x0201961B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201961B) - Data: 00  returns 0x01 (0001ms, 0743ms total)
T76A4 030:482 JLINK_ReadMemEx(0x0201961C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201961C) - Data: 00  returns 0x01 (0000ms, 0743ms total)
T76A4 030:482 JLINK_ReadMemEx(0x0201961D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201961D) - Data: 00  returns 0x01 (0001ms, 0744ms total)
T76A4 030:483 JLINK_ReadMemEx(0x0201961E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201961E) - Data: 00  returns 0x01 (0000ms, 0744ms total)
T76A4 030:483 JLINK_ReadMemEx(0x0201961F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201961F) - Data: 00  returns 0x01 (0001ms, 0745ms total)
T76A4 030:484 JLINK_ReadMemEx(0x02019620, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019620) - Data: 00  returns 0x01 (0001ms, 0746ms total)
T76A4 030:485 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0000ms, 0746ms total)
T76A4 030:485 JLINK_ReadMemEx(0x02019622, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019622) - Data: 00  returns 0x01 (0001ms, 0747ms total)
T76A4 030:486 JLINK_ReadMemEx(0x02019623, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019623) - Data: 00  returns 0x01 (0001ms, 0748ms total)
T76A4 030:487 JLINK_ReadMemEx(0x02019624, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019624) - Data: 00  returns 0x01 (0000ms, 0748ms total)
T76A4 030:487 JLINK_ReadMemEx(0x02019625, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019625) - Data: 00  returns 0x01 (0001ms, 0749ms total)
T76A4 030:488 JLINK_ReadMemEx(0x02019626, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019626) - Data: 00  returns 0x01 (0001ms, 0750ms total)
T76A4 030:489 JLINK_ReadMemEx(0x02019627, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019627) - Data: 00  returns 0x01 (0000ms, 0750ms total)
T76A4 030:489 JLINK_ReadMemEx(0x02019628, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019628) - Data: 00  returns 0x01 (0001ms, 0751ms total)
T76A4 030:490 JLINK_ReadMemEx(0x02019629, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019629) - Data: 00  returns 0x01 (0001ms, 0752ms total)
T76A4 030:491 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0000ms, 0752ms total)
T76A4 030:491 JLINK_ReadMemEx(0x0201962B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962B) - Data: 00  returns 0x01 (0001ms, 0753ms total)
T76A4 030:492 JLINK_ReadMemEx(0x0201962C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962C) - Data: 00  returns 0x01 (0001ms, 0754ms total)
T76A4 030:493 JLINK_ReadMemEx(0x0201962D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962D) - Data: 00  returns 0x01 (0000ms, 0754ms total)
T76A4 030:493 JLINK_ReadMemEx(0x0201962E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962E) - Data: 00  returns 0x01 (0001ms, 0755ms total)
T76A4 030:494 JLINK_ReadMemEx(0x0201962F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962F) - Data: 00  returns 0x01 (0001ms, 0756ms total)
T76A4 030:495 JLINK_ReadMemEx(0x02019630, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019630) - Data: 00  returns 0x01 (0000ms, 0756ms total)
T76A4 030:495 JLINK_ReadMemEx(0x02019631, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019631) - Data: 00  returns 0x01 (0001ms, 0757ms total)
T76A4 030:496 JLINK_ReadMemEx(0x02019632, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019632) - Data: 00  returns 0x01 (0001ms, 0758ms total)
T76A4 030:497 JLINK_ReadMemEx(0x02019633, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019633) - Data: 00  returns 0x01 (0000ms, 0758ms total)
T76A4 030:497 JLINK_ReadMemEx(0x02019634, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019634) - Data: 00  returns 0x01 (0001ms, 0759ms total)
T76A4 030:498 JLINK_ReadMemEx(0x02019635, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019635) - Data: 00  returns 0x01 (0001ms, 0760ms total)
T76A4 030:499 JLINK_ReadMemEx(0x02019636, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019636) - Data: 00  returns 0x01 (0000ms, 0760ms total)
T76A4 030:500 JLINK_ReadMemEx(0x02019637, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019637) - Data: 00  returns 0x01 (0000ms, 0760ms total)
T76A4 030:500 JLINK_ReadMemEx(0x02019638, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019638) - Data: 00  returns 0x01 (0001ms, 0761ms total)
T76A4 030:501 JLINK_ReadMemEx(0x02019639, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019639) - Data: 00  returns 0x01 (0000ms, 0761ms total)
T76A4 030:501 JLINK_ReadMemEx(0x0201963A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201963A) - Data: 00  returns 0x01 (0001ms, 0762ms total)
T76A4 030:502 JLINK_ReadMemEx(0x0201963B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201963B) - Data: 00  returns 0x01 (0001ms, 0763ms total)
T76A4 030:503 JLINK_ReadMemEx(0x0201963C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201963C) - Data: 00  returns 0x01 (0000ms, 0763ms total)
T76A4 030:503 JLINK_ReadMemEx(0x0201963D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201963D) - Data: 00  returns 0x01 (0001ms, 0764ms total)
T76A4 030:504 JLINK_ReadMemEx(0x0201963E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201963E) - Data: 00  returns 0x01 (0001ms, 0765ms total)
T76A4 030:505 JLINK_ReadMemEx(0x0201963F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201963F) - Data: 00  returns 0x01 (0000ms, 0765ms total)
T76A4 030:505 JLINK_ReadMemEx(0x02019640, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019640) - Data: 00  returns 0x01 (0001ms, 0766ms total)
T76A4 030:506 JLINK_ReadMemEx(0x02019641, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019641) - Data: 00  returns 0x01 (0001ms, 0767ms total)
T76A4 030:507 JLINK_ReadMemEx(0x02019642, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019642) - Data: 00  returns 0x01 (0000ms, 0767ms total)
T76A4 030:507 JLINK_ReadMemEx(0x02019643, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019643) - Data: 00  returns 0x01 (0001ms, 0768ms total)
T76A4 030:508 JLINK_ReadMemEx(0x02019644, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019644) - Data: 00  returns 0x01 (0000ms, 0768ms total)
T76A4 030:508 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 00  returns 0x01 (0001ms, 0769ms total)
T76A4 030:509 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 00  returns 0x01 (0001ms, 0770ms total)
T76A4 030:510 JLINK_ReadMemEx(0x02019647, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019647) - Data: 00  returns 0x01 (0000ms, 0770ms total)
T76A4 030:510 JLINK_ReadMemEx(0x02019648, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019648) - Data: 00  returns 0x01 (0001ms, 0771ms total)
T76A4 030:511 JLINK_ReadMemEx(0x02019649, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019649) - Data: 00  returns 0x01 (0001ms, 0772ms total)
T76A4 030:512 JLINK_ReadMemEx(0x0201964A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201964A) - Data: 00  returns 0x01 (0000ms, 0772ms total)
T76A4 030:512 JLINK_ReadMemEx(0x0201964B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201964B) - Data: 00  returns 0x01 (0001ms, 0773ms total)
T76A4 030:513 JLINK_ReadMemEx(0x0201964C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201964C) - Data: 00  returns 0x01 (0001ms, 0774ms total)
T76A4 030:514 JLINK_ReadMemEx(0x0201964D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201964D) - Data: 00  returns 0x01 (0000ms, 0774ms total)
T76A4 030:514 JLINK_ReadMemEx(0x0201964E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201964E) - Data: 00  returns 0x01 (0001ms, 0775ms total)
T76A4 030:515 JLINK_ReadMemEx(0x0201964F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201964F) - Data: 00  returns 0x01 (0001ms, 0776ms total)
T76A4 030:516 JLINK_ReadMemEx(0x02019650, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019650) - Data: 00  returns 0x01 (0000ms, 0776ms total)
T76A4 030:516 JLINK_ReadMemEx(0x02019651, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019651) - Data: 00  returns 0x01 (0001ms, 0777ms total)
T76A4 030:517 JLINK_ReadMemEx(0x02019652, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019652) - Data: 00  returns 0x01 (0001ms, 0778ms total)
T76A4 030:518 JLINK_ReadMemEx(0x02019653, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019653) - Data: 00  returns 0x01 (0000ms, 0778ms total)
T76A4 030:518 JLINK_ReadMemEx(0x02019654, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019654) - Data: 00  returns 0x01 (0001ms, 0779ms total)
T76A4 030:519 JLINK_ReadMemEx(0x02019655, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019655) - Data: 00  returns 0x01 (0001ms, 0780ms total)
T76A4 030:520 JLINK_ReadMemEx(0x02019656, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019656) - Data: 00  returns 0x01 (0000ms, 0780ms total)
T76A4 030:520 JLINK_ReadMemEx(0x02019657, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019657) - Data: 00  returns 0x01 (0001ms, 0781ms total)
T76A4 030:521 JLINK_ReadMemEx(0x02019658, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019658) - Data: 00  returns 0x01 (0001ms, 0782ms total)
T76A4 030:522 JLINK_ReadMemEx(0x02019659, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019659) - Data: 00  returns 0x01 (0000ms, 0782ms total)
T76A4 030:522 JLINK_ReadMemEx(0x0201965A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201965A) - Data: 00  returns 0x01 (0001ms, 0783ms total)
T76A4 030:523 JLINK_ReadMemEx(0x0201965B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201965B) - Data: 00  returns 0x01 (0001ms, 0784ms total)
T76A4 030:524 JLINK_ReadMemEx(0x0201965C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201965C) - Data: 00  returns 0x01 (0000ms, 0784ms total)
T76A4 030:524 JLINK_ReadMemEx(0x0201965D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201965D) - Data: 00  returns 0x01 (0001ms, 0785ms total)
T76A4 030:525 JLINK_ReadMemEx(0x0201965E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201965E) - Data: 00  returns 0x01 (0001ms, 0786ms total)
T76A4 030:526 JLINK_ReadMemEx(0x0201965F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201965F) - Data: 00  returns 0x01 (0000ms, 0786ms total)
T76A4 030:526 JLINK_ReadMemEx(0x02019660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019660) - Data: 00  returns 0x01 (0001ms, 0787ms total)
T76A4 030:527 JLINK_ReadMemEx(0x02019661, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019661) - Data: 00  returns 0x01 (0001ms, 0788ms total)
T76A4 030:528 JLINK_ReadMemEx(0x02019662, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019662) - Data: 00  returns 0x01 (0000ms, 0788ms total)
T76A4 030:528 JLINK_ReadMemEx(0x02019663, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019663) - Data: 00  returns 0x01 (0001ms, 0789ms total)
T76A4 030:529 JLINK_ReadMemEx(0x02019664, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019664) - Data: 00  returns 0x01 (0001ms, 0790ms total)
T76A4 030:530 JLINK_ReadMemEx(0x02019665, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019665) - Data: 00  returns 0x01 (0000ms, 0790ms total)
T76A4 030:530 JLINK_ReadMemEx(0x02019666, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019666) - Data: 00  returns 0x01 (0001ms, 0791ms total)
T76A4 030:531 JLINK_ReadMemEx(0x02019667, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019667) - Data: 00  returns 0x01 (0001ms, 0792ms total)
T76A4 030:532 JLINK_ReadMemEx(0x02019668, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019668) - Data: 00  returns 0x01 (0000ms, 0792ms total)
T76A4 030:532 JLINK_ReadMemEx(0x02019669, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019669) - Data: 00  returns 0x01 (0001ms, 0793ms total)
T76A4 030:533 JLINK_ReadMemEx(0x0201966A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201966A) - Data: 00  returns 0x01 (0001ms, 0794ms total)
T76A4 030:534 JLINK_ReadMemEx(0x0201966B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201966B) - Data: 00  returns 0x01 (0000ms, 0794ms total)
T76A4 030:534 JLINK_ReadMemEx(0x0201966C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201966C) - Data: 00  returns 0x01 (0001ms, 0795ms total)
T76A4 030:535 JLINK_ReadMemEx(0x0201966D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201966D) - Data: 00  returns 0x01 (0001ms, 0796ms total)
T76A4 030:536 JLINK_ReadMemEx(0x0201966E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201966E) - Data: 00  returns 0x01 (0000ms, 0796ms total)
T76A4 030:536 JLINK_ReadMemEx(0x0201966F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201966F) - Data: 00  returns 0x01 (0001ms, 0797ms total)
T76A4 030:537 JLINK_ReadMemEx(0x02019670, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019670) - Data: 00  returns 0x01 (0001ms, 0798ms total)
T76A4 030:538 JLINK_ReadMemEx(0x02019671, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019671) - Data: 00  returns 0x01 (0000ms, 0798ms total)
T76A4 030:538 JLINK_ReadMemEx(0x02019672, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019672) - Data: 00  returns 0x01 (0001ms, 0799ms total)
T76A4 030:539 JLINK_ReadMemEx(0x02019673, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019673) - Data: 00  returns 0x01 (0001ms, 0800ms total)
T76A4 030:540 JLINK_ReadMemEx(0x02019674, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019674) - Data: 00  returns 0x01 (0000ms, 0800ms total)
T76A4 030:540 JLINK_ReadMemEx(0x02019675, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019675) - Data: 00  returns 0x01 (0001ms, 0801ms total)
T76A4 030:541 JLINK_ReadMemEx(0x02019676, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019676) - Data: 00  returns 0x01 (0001ms, 0802ms total)
T76A4 030:542 JLINK_ReadMemEx(0x02019677, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019677) - Data: 00  returns 0x01 (0000ms, 0802ms total)
T76A4 030:542 JLINK_ReadMemEx(0x02019678, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019678) - Data: 00  returns 0x01 (0001ms, 0803ms total)
T76A4 030:543 JLINK_ReadMemEx(0x02019679, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019679) - Data: 00  returns 0x01 (0001ms, 0804ms total)
T76A4 030:544 JLINK_ReadMemEx(0x0201967A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201967A) - Data: 00  returns 0x01 (0000ms, 0804ms total)
T76A4 030:544 JLINK_ReadMemEx(0x0201967B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201967B) - Data: 00  returns 0x01 (0001ms, 0805ms total)
T76A4 030:545 JLINK_ReadMemEx(0x0201967C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201967C) - Data: 00  returns 0x01 (0000ms, 0805ms total)
T76A4 030:545 JLINK_ReadMemEx(0x0201967D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201967D) - Data: 00  returns 0x01 (0001ms, 0806ms total)
T76A4 030:546 JLINK_ReadMemEx(0x0201967E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201967E) - Data: 00  returns 0x01 (0001ms, 0807ms total)
T76A4 030:547 JLINK_ReadMemEx(0x0201967F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201967F) - Data: 00  returns 0x01 (0000ms, 0807ms total)
T76A4 030:547 JLINK_ReadMemEx(0x02019680, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019680) - Data: 00  returns 0x01 (0001ms, 0808ms total)
T76A4 030:548 JLINK_ReadMemEx(0x02019681, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019681) - Data: 00  returns 0x01 (0001ms, 0809ms total)
T76A4 030:549 JLINK_ReadMemEx(0x02019682, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019682) - Data: 00  returns 0x01 (0000ms, 0809ms total)
T76A4 030:549 JLINK_ReadMemEx(0x02019683, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019683) - Data: 00  returns 0x01 (0001ms, 0810ms total)
T76A4 030:550 JLINK_ReadMemEx(0x02019684, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019684) - Data: 00  returns 0x01 (0000ms, 0810ms total)
T76A4 030:550 JLINK_ReadMemEx(0x02019685, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019685) - Data: 00  returns 0x01 (0001ms, 0811ms total)
T76A4 030:551 JLINK_ReadMemEx(0x02019686, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019686) - Data: 00  returns 0x01 (0001ms, 0812ms total)
T76A4 030:552 JLINK_ReadMemEx(0x02019687, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019687) - Data: 00  returns 0x01 (0000ms, 0812ms total)
T76A4 030:552 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0001ms, 0813ms total)
T76A4 030:553 JLINK_ReadMemEx(0x02019689, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019689) - Data: 00  returns 0x01 (0001ms, 0814ms total)
T76A4 030:554 JLINK_ReadMemEx(0x0201968A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201968A) - Data: 00  returns 0x01 (0000ms, 0814ms total)
T76A4 030:554 JLINK_ReadMemEx(0x0201958C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201958C) - Data: 00 01 02 03 04 05 06 07 08 09 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0815ms total)
T76A4 030:555 JLINK_ReadMemEx(0x0201958C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201958C) - Data: 00  returns 0x01 (0001ms, 0816ms total)
T76A4 030:556 JLINK_ReadMemEx(0x0201958D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201958D) - Data: 01  returns 0x01 (0000ms, 0816ms total)
T76A4 030:556 JLINK_ReadMemEx(0x0201958E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201958E) - Data: 02  returns 0x01 (0001ms, 0817ms total)
T76A4 030:557 JLINK_ReadMemEx(0x0201958F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201958F) - Data: 03  returns 0x01 (0001ms, 0818ms total)
T76A4 030:558 JLINK_ReadMemEx(0x02019590, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019590) - Data: 04  returns 0x01 (0000ms, 0818ms total)
T76A4 030:558 JLINK_ReadMemEx(0x02019591, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019591) - Data: 05  returns 0x01 (0001ms, 0819ms total)
T76A4 030:559 JLINK_ReadMemEx(0x02019592, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019592) - Data: 06  returns 0x01 (0000ms, 0819ms total)
T76A4 030:559 JLINK_ReadMemEx(0x02019593, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019593) - Data: 07  returns 0x01 (0001ms, 0820ms total)
T76A4 030:560 JLINK_ReadMemEx(0x02019594, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019594) - Data: 08  returns 0x01 (0001ms, 0821ms total)
T76A4 030:561 JLINK_ReadMemEx(0x02019595, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019595) - Data: 09  returns 0x01 (0000ms, 0821ms total)
T76A4 030:561 JLINK_ReadMemEx(0x02019596, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019596) - Data: 00  returns 0x01 (0002ms, 0823ms total)
T76A4 030:563 JLINK_ReadMemEx(0x02019597, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019597) - Data: 00  returns 0x01 (0000ms, 0823ms total)
T76A4 030:563 JLINK_ReadMemEx(0x02019598, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019598) - Data: 00  returns 0x01 (0000ms, 0823ms total)
T76A4 030:563 JLINK_ReadMemEx(0x02019599, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019599) - Data: 00  returns 0x01 (0001ms, 0824ms total)
T76A4 030:564 JLINK_ReadMemEx(0x0201959A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959A) - Data: 00  returns 0x01 (0001ms, 0825ms total)
T76A4 030:565 JLINK_ReadMemEx(0x0201959B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959B) - Data: 00  returns 0x01 (0000ms, 0825ms total)
T76A4 030:565 JLINK_ReadMemEx(0x0201959C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959C) - Data: 00  returns 0x01 (0001ms, 0826ms total)
T76A4 030:566 JLINK_ReadMemEx(0x0201959D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959D) - Data: 00  returns 0x01 (0000ms, 0826ms total)
T76A4 030:566 JLINK_ReadMemEx(0x0201959E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959E) - Data: 00  returns 0x01 (0001ms, 0827ms total)
T76A4 030:567 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 00  returns 0x01 (0001ms, 0828ms total)
T76A4 030:568 JLINK_ReadMemEx(0x020195A0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A0) - Data: 00  returns 0x01 (0000ms, 0828ms total)
T76A4 030:568 JLINK_ReadMemEx(0x020195A1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A1) - Data: 00  returns 0x01 (0001ms, 0829ms total)
T76A4 030:569 JLINK_ReadMemEx(0x020195A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A2) - Data: 00  returns 0x01 (0001ms, 0830ms total)
T76A4 030:570 JLINK_ReadMemEx(0x020195A3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A3) - Data: 00  returns 0x01 (0000ms, 0830ms total)
T76A4 030:570 JLINK_ReadMemEx(0x020195A4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A4) - Data: 00  returns 0x01 (0001ms, 0831ms total)
T76A4 030:571 JLINK_ReadMemEx(0x020195A5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A5) - Data: 00  returns 0x01 (0001ms, 0832ms total)
T76A4 030:572 JLINK_ReadMemEx(0x020195A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A6) - Data: 00  returns 0x01 (0000ms, 0832ms total)
T76A4 030:572 JLINK_ReadMemEx(0x020195A7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A7) - Data: 00  returns 0x01 (0001ms, 0833ms total)
T76A4 030:573 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 00  returns 0x01 (0001ms, 0834ms total)
T76A4 030:574 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 00  returns 0x01 (0000ms, 0834ms total)
T76A4 030:574 JLINK_ReadMemEx(0x020195AA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195AA) - Data: 00  returns 0x01 (0001ms, 0835ms total)
T76A4 030:575 JLINK_ReadMemEx(0x020195AB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195AB) - Data: 00  returns 0x01 (0000ms, 0835ms total)
T76A4 030:575 JLINK_ReadMemEx(0x020195AC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195AC) - Data: 00  returns 0x01 (0001ms, 0836ms total)
T76A4 030:576 JLINK_ReadMemEx(0x020195AD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195AD) - Data: 00  returns 0x01 (0001ms, 0837ms total)
T76A4 030:577 JLINK_ReadMemEx(0x020195AE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195AE) - Data: 00  returns 0x01 (0000ms, 0837ms total)
T76A4 030:577 JLINK_ReadMemEx(0x020195AF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195AF) - Data: 00  returns 0x01 (0001ms, 0838ms total)
T76A4 030:578 JLINK_ReadMemEx(0x020195B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B0) - Data: 00  returns 0x01 (0001ms, 0839ms total)
T76A4 030:579 JLINK_ReadMemEx(0x020195B1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B1) - Data: 00  returns 0x01 (0000ms, 0839ms total)
T76A4 030:579 JLINK_ReadMemEx(0x020195B2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B2) - Data: 00  returns 0x01 (0001ms, 0840ms total)
T76A4 030:580 JLINK_ReadMemEx(0x020195B3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B3) - Data: 00  returns 0x01 (0000ms, 0840ms total)
T76A4 030:580 JLINK_ReadMemEx(0x020195B4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B4) - Data: 00  returns 0x01 (0001ms, 0841ms total)
T76A4 030:581 JLINK_ReadMemEx(0x020195B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B5) - Data: 00  returns 0x01 (0001ms, 0842ms total)
T76A4 030:582 JLINK_ReadMemEx(0x020195B6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B6) - Data: 00  returns 0x01 (0000ms, 0842ms total)
T76A4 030:582 JLINK_ReadMemEx(0x020195B7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B7) - Data: 00  returns 0x01 (0001ms, 0843ms total)
T76A4 030:583 JLINK_ReadMemEx(0x020195B8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B8) - Data: 00  returns 0x01 (0000ms, 0843ms total)
T76A4 030:584 JLINK_ReadMemEx(0x020195B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B9) - Data: 00  returns 0x01 (0000ms, 0844ms total)
T76A4 030:584 JLINK_ReadMemEx(0x020195BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195BA) - Data: 00  returns 0x01 (0001ms, 0845ms total)
T76A4 030:585 JLINK_ReadMemEx(0x020195BB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195BB) - Data: 00  returns 0x01 (0000ms, 0845ms total)
T76A4 030:585 JLINK_ReadMemEx(0x020195BC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195BC) - Data: 00  returns 0x01 (0001ms, 0846ms total)
T76A4 030:586 JLINK_ReadMemEx(0x020195BD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195BD) - Data: 00  returns 0x01 (0001ms, 0847ms total)
T76A4 030:587 JLINK_ReadMemEx(0x020195BE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195BE) - Data: 00  returns 0x01 (0000ms, 0847ms total)
T76A4 030:587 JLINK_ReadMemEx(0x020195BF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195BF) - Data: 00  returns 0x01 (0001ms, 0848ms total)
T76A4 030:588 JLINK_ReadMemEx(0x020195C0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195C0) - Data: 00  returns 0x01 (0000ms, 0848ms total)
T76A4 030:588 JLINK_ReadMemEx(0x020195C1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195C1) - Data: 00  returns 0x01 (0002ms, 0850ms total)
T76A4 030:590 JLINK_ReadMemEx(0x020195C2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195C2) - Data: 00  returns 0x01 (0001ms, 0851ms total)
T76A4 030:591 JLINK_ReadMemEx(0x020195C3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195C3) - Data: 00  returns 0x01 (0000ms, 0851ms total)
T76A4 030:591 JLINK_ReadMemEx(0x020195C4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195C4) - Data: 00  returns 0x01 (0001ms, 0852ms total)
T76A4 030:592 JLINK_ReadMemEx(0x020195C5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195C5) - Data: 00  returns 0x01 (0001ms, 0853ms total)
T76A4 030:593 JLINK_ReadMemEx(0x020195C6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195C6) - Data: 00  returns 0x01 (0000ms, 0853ms total)
T76A4 030:593 JLINK_ReadMemEx(0x020195C7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195C7) - Data: 00  returns 0x01 (0001ms, 0854ms total)
T76A4 030:594 JLINK_ReadMemEx(0x020195C8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195C8) - Data: 00  returns 0x01 (0000ms, 0854ms total)
T76A4 030:594 JLINK_ReadMemEx(0x020195C9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195C9) - Data: 00  returns 0x01 (0001ms, 0855ms total)
T76A4 030:595 JLINK_ReadMemEx(0x020195CA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195CA) - Data: 00  returns 0x01 (0001ms, 0856ms total)
T76A4 030:596 JLINK_ReadMemEx(0x020195CB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195CB) - Data: 00  returns 0x01 (0000ms, 0856ms total)
T76A4 030:596 JLINK_ReadMemEx(0x020195CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195CC) - Data: 00  returns 0x01 (0001ms, 0857ms total)
T76A4 030:597 JLINK_ReadMemEx(0x020195CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195CD) - Data: 00  returns 0x01 (0001ms, 0858ms total)
T76A4 030:598 JLINK_ReadMemEx(0x020195CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195CE) - Data: 00  returns 0x01 (0000ms, 0858ms total)
T76A4 030:598 JLINK_ReadMemEx(0x020195CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195CF) - Data: 00  returns 0x01 (0001ms, 0859ms total)
T76A4 030:599 JLINK_ReadMemEx(0x020195D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195D0) - Data: 00  returns 0x01 (0001ms, 0860ms total)
T76A4 030:600 JLINK_ReadMemEx(0x020195D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195D1) - Data: 00  returns 0x01 (0000ms, 0860ms total)
T76A4 030:600 JLINK_ReadMemEx(0x020195D2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195D2) - Data: 00  returns 0x01 (0001ms, 0861ms total)
T76A4 030:601 JLINK_ReadMemEx(0x020195D3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195D3) - Data: 00  returns 0x01 (0001ms, 0862ms total)
T76A4 030:602 JLINK_ReadMemEx(0x020195D4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195D4) - Data: 00  returns 0x01 (0000ms, 0862ms total)
T76A4 030:602 JLINK_ReadMemEx(0x020195D5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195D5) - Data: 00  returns 0x01 (0001ms, 0863ms total)
T76A4 030:603 JLINK_ReadMemEx(0x020195D6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195D6) - Data: 00  returns 0x01 (0001ms, 0864ms total)
T76A4 030:604 JLINK_ReadMemEx(0x020195D7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195D7) - Data: 00  returns 0x01 (0000ms, 0864ms total)
T76A4 030:604 JLINK_ReadMemEx(0x020195D8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195D8) - Data: 00  returns 0x01 (0001ms, 0865ms total)
T76A4 030:605 JLINK_ReadMemEx(0x020195D9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195D9) - Data: 00  returns 0x01 (0001ms, 0866ms total)
T76A4 030:606 JLINK_ReadMemEx(0x020195DA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195DA) - Data: 00  returns 0x01 (0000ms, 0866ms total)
T76A4 030:606 JLINK_ReadMemEx(0x020195DB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195DB) - Data: 00  returns 0x01 (0001ms, 0867ms total)
T76A4 030:607 JLINK_ReadMemEx(0x020195DC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195DC) - Data: 00  returns 0x01 (0001ms, 0868ms total)
T76A4 030:608 JLINK_ReadMemEx(0x020195DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195DD) - Data: 00  returns 0x01 (0000ms, 0868ms total)
T76A4 030:608 JLINK_ReadMemEx(0x020195DE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195DE) - Data: 00  returns 0x01 (0001ms, 0869ms total)
T76A4 030:609 JLINK_ReadMemEx(0x020195DF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195DF) - Data: 00  returns 0x01 (0000ms, 0869ms total)
T76A4 030:609 JLINK_ReadMemEx(0x020195E0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195E0) - Data: 00  returns 0x01 (0001ms, 0870ms total)
T76A4 030:610 JLINK_ReadMemEx(0x020195E1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195E1) - Data: 00  returns 0x01 (0001ms, 0871ms total)
T76A4 030:611 JLINK_ReadMemEx(0x020195E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195E2) - Data: 00  returns 0x01 (0000ms, 0871ms total)
T76A4 030:611 JLINK_ReadMemEx(0x020195E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195E3) - Data: 00  returns 0x01 (0001ms, 0872ms total)
T76A4 030:612 JLINK_ReadMemEx(0x020195E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195E4) - Data: 00  returns 0x01 (0001ms, 0873ms total)
T76A4 030:613 JLINK_ReadMemEx(0x020195E5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195E5) - Data: 00  returns 0x01 (0000ms, 0873ms total)
T76A4 030:613 JLINK_ReadMemEx(0x020195E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195E6) - Data: 00  returns 0x01 (0001ms, 0874ms total)
T76A4 030:614 JLINK_ReadMemEx(0x020195E7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195E7) - Data: 00  returns 0x01 (0000ms, 0874ms total)
T76A4 030:614 JLINK_ReadMemEx(0x020195E8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195E8) - Data: 00  returns 0x01 (0001ms, 0875ms total)
T76A4 030:615 JLINK_ReadMemEx(0x020195E9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195E9) - Data: 00  returns 0x01 (0001ms, 0876ms total)
T76A4 030:616 JLINK_ReadMemEx(0x020195EA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195EA) - Data: 00  returns 0x01 (0000ms, 0876ms total)
T76A4 030:616 JLINK_ReadMemEx(0x020195EB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195EB) - Data: 00  returns 0x01 (0001ms, 0877ms total)
T76A4 030:617 JLINK_ReadMemEx(0x020195EC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195EC) - Data: 00  returns 0x01 (0001ms, 0878ms total)
T76A4 030:618 JLINK_ReadMemEx(0x020195ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195ED) - Data: 00  returns 0x01 (0000ms, 0878ms total)
T76A4 030:618 JLINK_ReadMemEx(0x020195EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195EE) - Data: 00  returns 0x01 (0001ms, 0879ms total)
T76A4 030:619 JLINK_ReadMemEx(0x020195EF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195EF) - Data: 00  returns 0x01 (0000ms, 0879ms total)
T76A4 030:619 JLINK_ReadMemEx(0x020195F0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195F0) - Data: 00  returns 0x01 (0001ms, 0880ms total)
T76A4 030:620 JLINK_ReadMemEx(0x020195F1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195F1) - Data: 00  returns 0x01 (0001ms, 0881ms total)
T76A4 030:621 JLINK_ReadMemEx(0x020195F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195F2) - Data: 00  returns 0x01 (0000ms, 0881ms total)
T76A4 030:621 JLINK_ReadMemEx(0x020195F3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195F3) - Data: 00  returns 0x01 (0001ms, 0882ms total)
T76A4 030:622 JLINK_ReadMemEx(0x020195F4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195F4) - Data: 00  returns 0x01 (0001ms, 0883ms total)
T76A4 030:623 JLINK_ReadMemEx(0x020195F5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195F5) - Data: 00  returns 0x01 (0000ms, 0883ms total)
T76A4 030:623 JLINK_ReadMemEx(0x020195F6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195F6) - Data: 00  returns 0x01 (0001ms, 0884ms total)
T76A4 030:624 JLINK_ReadMemEx(0x020195F7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195F7) - Data: 00  returns 0x01 (0001ms, 0885ms total)
T76A4 030:625 JLINK_ReadMemEx(0x020195F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195F8) - Data: 00  returns 0x01 (0000ms, 0885ms total)
T76A4 030:625 JLINK_ReadMemEx(0x020195F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195F9) - Data: 00  returns 0x01 (0001ms, 0886ms total)
T76A4 030:626 JLINK_ReadMemEx(0x020195FA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195FA) - Data: 00  returns 0x01 (0001ms, 0887ms total)
T76A4 030:627 JLINK_ReadMemEx(0x020195FB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195FB) - Data: 00  returns 0x01 (0000ms, 0887ms total)
T76A4 030:627 JLINK_ReadMemEx(0x020195FC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195FC) - Data: 00  returns 0x01 (0001ms, 0888ms total)
T76A4 030:628 JLINK_ReadMemEx(0x020195FD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195FD) - Data: 00  returns 0x01 (0000ms, 0888ms total)
T76A4 030:628 JLINK_ReadMemEx(0x020195FE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195FE) - Data: 00  returns 0x01 (0001ms, 0889ms total)
T76A4 030:629 JLINK_ReadMemEx(0x020195FF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195FF) - Data: 00  returns 0x01 (0001ms, 0890ms total)
T76A4 030:630 JLINK_ReadMemEx(0x02019600, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019600) - Data: 00  returns 0x01 (0000ms, 0890ms total)
T76A4 030:630 JLINK_ReadMemEx(0x02019601, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019601) - Data: 00  returns 0x01 (0001ms, 0891ms total)
T76A4 030:631 JLINK_ReadMemEx(0x02019602, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019602) - Data: 00  returns 0x01 (0001ms, 0892ms total)
T76A4 030:632 JLINK_ReadMemEx(0x02019603, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019603) - Data: 00  returns 0x01 (0000ms, 0892ms total)
T76A4 030:632 JLINK_ReadMemEx(0x02019604, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019604) - Data: 00  returns 0x01 (0001ms, 0893ms total)
T76A4 030:633 JLINK_ReadMemEx(0x02019605, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019605) - Data: 00  returns 0x01 (0000ms, 0893ms total)
T76A4 030:633 JLINK_ReadMemEx(0x02019606, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019606) - Data: 00  returns 0x01 (0001ms, 0894ms total)
T76A4 030:634 JLINK_ReadMemEx(0x02019607, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019607) - Data: 00  returns 0x01 (0001ms, 0895ms total)
T76A4 030:635 JLINK_ReadMemEx(0x02019608, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019608) - Data: 00  returns 0x01 (0000ms, 0895ms total)
T76A4 030:635 JLINK_ReadMemEx(0x02019609, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019609) - Data: 00  returns 0x01 (0001ms, 0896ms total)
T76A4 030:636 JLINK_ReadMemEx(0x0201960A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201960A) - Data: 00  returns 0x01 (0001ms, 0897ms total)
T76A4 030:637 JLINK_ReadMemEx(0x0201960B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201960B) - Data: 00  returns 0x01 (0000ms, 0897ms total)
T76A4 030:637 JLINK_ReadMemEx(0x0201960C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201960C) - Data: 00  returns 0x01 (0001ms, 0898ms total)
T76A4 030:638 JLINK_ReadMemEx(0x0201960D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201960D) - Data: 00  returns 0x01 (0001ms, 0899ms total)
T76A4 030:639 JLINK_ReadMemEx(0x0201960E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201960E) - Data: 00  returns 0x01 (0000ms, 0899ms total)
T76A4 030:639 JLINK_ReadMemEx(0x0201960F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201960F) - Data: 00  returns 0x01 (0001ms, 0900ms total)
T76A4 030:640 JLINK_ReadMemEx(0x02019610, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019610) - Data: 00  returns 0x01 (0000ms, 0900ms total)
T76A4 030:640 JLINK_ReadMemEx(0x02019611, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019611) - Data: 00  returns 0x01 (0001ms, 0901ms total)
T76A4 030:641 JLINK_ReadMemEx(0x02019612, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019612) - Data: 00  returns 0x01 (0001ms, 0902ms total)
T76A4 030:642 JLINK_ReadMemEx(0x02019613, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019613) - Data: 00  returns 0x01 (0000ms, 0902ms total)
T76A4 030:642 JLINK_ReadMemEx(0x02019614, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019614) - Data: 00  returns 0x01 (0001ms, 0903ms total)
T76A4 030:643 JLINK_ReadMemEx(0x02019615, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019615) - Data: 00  returns 0x01 (0001ms, 0904ms total)
T76A4 030:644 JLINK_ReadMemEx(0x02019616, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019616) - Data: 00  returns 0x01 (0000ms, 0904ms total)
T76A4 030:644 JLINK_ReadMemEx(0x02019617, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019617) - Data: 00  returns 0x01 (0001ms, 0905ms total)
T76A4 030:645 JLINK_ReadMemEx(0x02019618, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019618) - Data: 00  returns 0x01 (0000ms, 0905ms total)
T76A4 030:645 JLINK_ReadMemEx(0x02019619, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019619) - Data: 00  returns 0x01 (0001ms, 0906ms total)
T76A4 030:646 JLINK_ReadMemEx(0x0201961A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201961A) - Data: 00  returns 0x01 (0001ms, 0907ms total)
T76A4 030:647 JLINK_ReadMemEx(0x0201961B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201961B) - Data: 00  returns 0x01 (0000ms, 0907ms total)
T76A4 030:647 JLINK_ReadMemEx(0x0201961C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201961C) - Data: 00  returns 0x01 (0001ms, 0908ms total)
T76A4 030:648 JLINK_ReadMemEx(0x0201961D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201961D) - Data: 00  returns 0x01 (0001ms, 0909ms total)
T76A4 030:649 JLINK_ReadMemEx(0x0201961E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201961E) - Data: 00  returns 0x01 (0000ms, 0909ms total)
T76A4 030:649 JLINK_ReadMemEx(0x0201961F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201961F) - Data: 00  returns 0x01 (0001ms, 0910ms total)
T76A4 030:650 JLINK_ReadMemEx(0x02019620, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019620) - Data: 00  returns 0x01 (0001ms, 0911ms total)
T76A4 030:651 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0001ms, 0912ms total)
T76A4 030:652 JLINK_ReadMemEx(0x02019622, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019622) - Data: 00  returns 0x01 (0000ms, 0912ms total)
T76A4 030:652 JLINK_ReadMemEx(0x02019623, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019623) - Data: 00  returns 0x01 (0001ms, 0913ms total)
T76A4 030:653 JLINK_ReadMemEx(0x02019624, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019624) - Data: 00  returns 0x01 (0001ms, 0914ms total)
T76A4 030:654 JLINK_ReadMemEx(0x02019625, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019625) - Data: 00  returns 0x01 (0000ms, 0914ms total)
T76A4 030:654 JLINK_ReadMemEx(0x02019626, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019626) - Data: 00  returns 0x01 (0001ms, 0915ms total)
T76A4 030:655 JLINK_ReadMemEx(0x02019627, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019627) - Data: 00  returns 0x01 (0000ms, 0915ms total)
T76A4 030:655 JLINK_ReadMemEx(0x02019628, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019628) - Data: 00  returns 0x01 (0001ms, 0916ms total)
T76A4 030:656 JLINK_ReadMemEx(0x02019629, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019629) - Data: 00  returns 0x01 (0001ms, 0917ms total)
T76A4 030:657 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0000ms, 0917ms total)
T76A4 030:657 JLINK_ReadMemEx(0x0201962B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962B) - Data: 00  returns 0x01 (0001ms, 0918ms total)
T76A4 030:658 JLINK_ReadMemEx(0x0201962C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962C) - Data: 00  returns 0x01 (0001ms, 0919ms total)
T76A4 030:659 JLINK_ReadMemEx(0x0201962D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962D) - Data: 00  returns 0x01 (0000ms, 0919ms total)
T76A4 030:659 JLINK_ReadMemEx(0x0201962E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962E) - Data: 00  returns 0x01 (0001ms, 0920ms total)
T76A4 030:660 JLINK_ReadMemEx(0x0201962F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962F) - Data: 00  returns 0x01 (0001ms, 0921ms total)
T76A4 030:661 JLINK_ReadMemEx(0x02019630, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019630) - Data: 00  returns 0x01 (0000ms, 0921ms total)
T76A4 030:661 JLINK_ReadMemEx(0x02019631, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019631) - Data: 00  returns 0x01 (0001ms, 0922ms total)
T76A4 030:662 JLINK_ReadMemEx(0x02019632, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019632) - Data: 00  returns 0x01 (0001ms, 0923ms total)
T76A4 030:663 JLINK_ReadMemEx(0x02019633, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019633) - Data: 00  returns 0x01 (0000ms, 0923ms total)
T76A4 030:663 JLINK_ReadMemEx(0x02019634, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019634) - Data: 00  returns 0x01 (0001ms, 0924ms total)
T76A4 030:664 JLINK_ReadMemEx(0x02019635, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019635) - Data: 00  returns 0x01 (0000ms, 0924ms total)
T76A4 030:664 JLINK_ReadMemEx(0x02019636, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019636) - Data: 00  returns 0x01 (0001ms, 0925ms total)
T76A4 030:665 JLINK_ReadMemEx(0x02019637, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019637) - Data: 00  returns 0x01 (0001ms, 0926ms total)
T76A4 030:666 JLINK_ReadMemEx(0x02019638, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019638) - Data: 00  returns 0x01 (0000ms, 0926ms total)
T76A4 030:666 JLINK_ReadMemEx(0x02019639, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019639) - Data: 00  returns 0x01 (0001ms, 0927ms total)
T76A4 030:667 JLINK_ReadMemEx(0x0201963A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201963A) - Data: 00  returns 0x01 (0000ms, 0927ms total)
T76A4 030:667 JLINK_ReadMemEx(0x0201963B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201963B) - Data: 00  returns 0x01 (0001ms, 0928ms total)
T76A4 030:668 JLINK_ReadMemEx(0x0201963C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201963C) - Data: 00  returns 0x01 (0001ms, 0929ms total)
T76A4 030:669 JLINK_ReadMemEx(0x0201963D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201963D) - Data: 00  returns 0x01 (0000ms, 0929ms total)
T76A4 030:669 JLINK_ReadMemEx(0x0201963E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201963E) - Data: 00  returns 0x01 (0001ms, 0930ms total)
T76A4 030:670 JLINK_ReadMemEx(0x0201963F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201963F) - Data: 00  returns 0x01 (0001ms, 0931ms total)
T76A4 030:671 JLINK_ReadMemEx(0x02019640, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019640) - Data: 00  returns 0x01 (0000ms, 0931ms total)
T76A4 030:671 JLINK_ReadMemEx(0x02019641, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019641) - Data: 00  returns 0x01 (0001ms, 0932ms total)
T76A4 030:672 JLINK_ReadMemEx(0x02019642, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019642) - Data: 00  returns 0x01 (0001ms, 0933ms total)
T76A4 030:673 JLINK_ReadMemEx(0x02019643, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019643) - Data: 00  returns 0x01 (0000ms, 0933ms total)
T76A4 030:673 JLINK_ReadMemEx(0x02019644, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019644) - Data: 00  returns 0x01 (0001ms, 0934ms total)
T76A4 030:674 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 00  returns 0x01 (0001ms, 0935ms total)
T76A4 030:675 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 00  returns 0x01 (0000ms, 0935ms total)
T76A4 030:675 JLINK_ReadMemEx(0x02019647, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019647) - Data: 00  returns 0x01 (0001ms, 0936ms total)
T76A4 030:676 JLINK_ReadMemEx(0x02019648, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019648) - Data: 00  returns 0x01 (0000ms, 0936ms total)
T76A4 030:676 JLINK_ReadMemEx(0x02019649, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019649) - Data: 00  returns 0x01 (0001ms, 0937ms total)
T76A4 030:677 JLINK_ReadMemEx(0x0201964A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201964A) - Data: 00  returns 0x01 (0001ms, 0938ms total)
T76A4 030:678 JLINK_ReadMemEx(0x0201964B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201964B) - Data: 00  returns 0x01 (0000ms, 0938ms total)
T76A4 030:678 JLINK_ReadMemEx(0x0201964C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201964C) - Data: 00  returns 0x01 (0001ms, 0939ms total)
T76A4 030:679 JLINK_ReadMemEx(0x0201964D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201964D) - Data: 00  returns 0x01 (0001ms, 0940ms total)
T76A4 030:680 JLINK_ReadMemEx(0x0201964E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201964E) - Data: 00  returns 0x01 (0000ms, 0940ms total)
T76A4 030:680 JLINK_ReadMemEx(0x0201964F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201964F) - Data: 00  returns 0x01 (0001ms, 0941ms total)
T76A4 030:681 JLINK_ReadMemEx(0x02019650, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019650) - Data: 00  returns 0x01 (0000ms, 0941ms total)
T76A4 030:681 JLINK_ReadMemEx(0x02019651, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019651) - Data: 00  returns 0x01 (0001ms, 0942ms total)
T76A4 030:682 JLINK_ReadMemEx(0x02019652, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019652) - Data: 00  returns 0x01 (0001ms, 0943ms total)
T76A4 030:683 JLINK_ReadMemEx(0x02019653, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019653) - Data: 00  returns 0x01 (0000ms, 0943ms total)
T76A4 030:683 JLINK_ReadMemEx(0x02019654, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019654) - Data: 00  returns 0x01 (0001ms, 0944ms total)
T76A4 030:684 JLINK_ReadMemEx(0x02019655, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019655) - Data: 00  returns 0x01 (0001ms, 0945ms total)
T76A4 030:685 JLINK_ReadMemEx(0x02019656, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019656) - Data: 00  returns 0x01 (0000ms, 0945ms total)
T76A4 030:685 JLINK_ReadMemEx(0x02019657, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019657) - Data: 00  returns 0x01 (0001ms, 0946ms total)
T76A4 030:686 JLINK_ReadMemEx(0x02019658, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019658) - Data: 00  returns 0x01 (0001ms, 0947ms total)
T76A4 030:687 JLINK_ReadMemEx(0x02019659, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019659) - Data: 00  returns 0x01 (0000ms, 0947ms total)
T76A4 030:687 JLINK_ReadMemEx(0x0201965A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201965A) - Data: 00  returns 0x01 (0001ms, 0948ms total)
T76A4 030:688 JLINK_ReadMemEx(0x0201965B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201965B) - Data: 00  returns 0x01 (0000ms, 0948ms total)
T76A4 030:688 JLINK_ReadMemEx(0x0201965C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201965C) - Data: 00  returns 0x01 (0001ms, 0949ms total)
T76A4 030:689 JLINK_ReadMemEx(0x0201965D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201965D) - Data: 00  returns 0x01 (0001ms, 0950ms total)
T76A4 030:690 JLINK_ReadMemEx(0x0201965E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201965E) - Data: 00  returns 0x01 (0000ms, 0950ms total)
T76A4 030:690 JLINK_ReadMemEx(0x0201965F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201965F) - Data: 00  returns 0x01 (0001ms, 0951ms total)
T76A4 030:691 JLINK_ReadMemEx(0x02019660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019660) - Data: 00  returns 0x01 (0001ms, 0952ms total)
T76A4 030:692 JLINK_ReadMemEx(0x02019661, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019661) - Data: 00  returns 0x01 (0000ms, 0952ms total)
T76A4 030:692 JLINK_ReadMemEx(0x02019662, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019662) - Data: 00  returns 0x01 (0001ms, 0953ms total)
T76A4 030:693 JLINK_ReadMemEx(0x02019663, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019663) - Data: 00  returns 0x01 (0001ms, 0954ms total)
T76A4 030:694 JLINK_ReadMemEx(0x02019664, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019664) - Data: 00  returns 0x01 (0000ms, 0954ms total)
T76A4 030:694 JLINK_ReadMemEx(0x02019665, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019665) - Data: 00  returns 0x01 (0001ms, 0955ms total)
T76A4 030:695 JLINK_ReadMemEx(0x02019666, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019666) - Data: 00  returns 0x01 (0001ms, 0956ms total)
T76A4 030:696 JLINK_ReadMemEx(0x02019667, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019667) - Data: 00  returns 0x01 (0000ms, 0956ms total)
T76A4 030:696 JLINK_ReadMemEx(0x02019668, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019668) - Data: 00  returns 0x01 (0001ms, 0957ms total)
T76A4 030:697 JLINK_ReadMemEx(0x02019669, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019669) - Data: 00  returns 0x01 (0001ms, 0958ms total)
T76A4 030:698 JLINK_ReadMemEx(0x0201966A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201966A) - Data: 00  returns 0x01 (0000ms, 0958ms total)
T76A4 030:698 JLINK_ReadMemEx(0x0201966B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201966B) - Data: 00  returns 0x01 (0001ms, 0959ms total)
T76A4 030:699 JLINK_ReadMemEx(0x0201966C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201966C) - Data: 00  returns 0x01 (0001ms, 0960ms total)
T76A4 030:700 JLINK_ReadMemEx(0x0201966D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201966D) - Data: 00  returns 0x01 (0000ms, 0960ms total)
T76A4 030:700 JLINK_ReadMemEx(0x0201966E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201966E) - Data: 00  returns 0x01 (0001ms, 0961ms total)
T76A4 030:701 JLINK_ReadMemEx(0x0201966F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201966F) - Data: 00  returns 0x01 (0000ms, 0961ms total)
T76A4 030:701 JLINK_ReadMemEx(0x02019670, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019670) - Data: 00  returns 0x01 (0001ms, 0962ms total)
T76A4 030:702 JLINK_ReadMemEx(0x02019671, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019671) - Data: 00  returns 0x01 (0001ms, 0963ms total)
T76A4 030:703 JLINK_ReadMemEx(0x02019672, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019672) - Data: 00  returns 0x01 (0000ms, 0963ms total)
T76A4 030:703 JLINK_ReadMemEx(0x02019673, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019673) - Data: 00  returns 0x01 (0001ms, 0964ms total)
T76A4 030:704 JLINK_ReadMemEx(0x02019674, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019674) - Data: 00  returns 0x01 (0001ms, 0965ms total)
T76A4 030:705 JLINK_ReadMemEx(0x02019675, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019675) - Data: 00  returns 0x01 (0000ms, 0965ms total)
T76A4 030:705 JLINK_ReadMemEx(0x02019676, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019676) - Data: 00  returns 0x01 (0001ms, 0966ms total)
T76A4 030:706 JLINK_ReadMemEx(0x02019677, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019677) - Data: 00  returns 0x01 (0000ms, 0966ms total)
T76A4 030:706 JLINK_ReadMemEx(0x02019678, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019678) - Data: 00  returns 0x01 (0001ms, 0967ms total)
T76A4 030:707 JLINK_ReadMemEx(0x02019679, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019679) - Data: 00  returns 0x01 (0001ms, 0968ms total)
T76A4 030:708 JLINK_ReadMemEx(0x0201967A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201967A) - Data: 00  returns 0x01 (0000ms, 0968ms total)
T76A4 030:708 JLINK_ReadMemEx(0x0201967B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201967B) - Data: 00  returns 0x01 (0001ms, 0969ms total)
T76A4 030:709 JLINK_ReadMemEx(0x0201967C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201967C) - Data: 00  returns 0x01 (0000ms, 0969ms total)
T76A4 030:709 JLINK_ReadMemEx(0x0201967D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201967D) - Data: 00  returns 0x01 (0001ms, 0970ms total)
T76A4 030:710 JLINK_ReadMemEx(0x0201967E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201967E) - Data: 00  returns 0x01 (0001ms, 0971ms total)
T76A4 030:711 JLINK_ReadMemEx(0x0201967F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201967F) - Data: 00  returns 0x01 (0000ms, 0971ms total)
T76A4 030:711 JLINK_ReadMemEx(0x02019680, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019680) - Data: 00  returns 0x01 (0001ms, 0972ms total)
T76A4 030:712 JLINK_ReadMemEx(0x02019681, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019681) - Data: 00  returns 0x01 (0001ms, 0973ms total)
T76A4 030:713 JLINK_ReadMemEx(0x02019682, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019682) - Data: 00  returns 0x01 (0000ms, 0973ms total)
T76A4 030:713 JLINK_ReadMemEx(0x02019683, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019683) - Data: 00  returns 0x01 (0001ms, 0974ms total)
T76A4 030:714 JLINK_ReadMemEx(0x02019684, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019684) - Data: 00  returns 0x01 (0000ms, 0974ms total)
T76A4 030:714 JLINK_ReadMemEx(0x02019685, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019685) - Data: 00  returns 0x01 (0001ms, 0975ms total)
T76A4 030:715 JLINK_ReadMemEx(0x02019686, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019686) - Data: 00  returns 0x01 (0001ms, 0976ms total)
T76A4 030:716 JLINK_ReadMemEx(0x02019687, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019687) - Data: 00  returns 0x01 (0000ms, 0976ms total)
T76A4 030:716 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0001ms, 0977ms total)
T76A4 030:717 JLINK_ReadMemEx(0x02019689, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019689) - Data: 00  returns 0x01 (0001ms, 0978ms total)
T76A4 030:718 JLINK_ReadMemEx(0x0201968A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201968A) - Data: 00  returns 0x01 (0000ms, 0978ms total)
T76A4 030:752 JLINK_ReadMemEx(0x0201958C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201958C) - Data: 00 01 02 03 04 05 06 07 08 09 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0979ms total)
T76A4 030:753 JLINK_ReadMemEx(0x0201958C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201958C) - Data: 00  returns 0x01 (0001ms, 0980ms total)
T76A4 030:754 JLINK_ReadMemEx(0x0201958D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201958D) - Data: 01  returns 0x01 (0000ms, 0980ms total)
T76A4 030:754 JLINK_ReadMemEx(0x0201958E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201958E) - Data: 02  returns 0x01 (0001ms, 0981ms total)
T76A4 030:755 JLINK_ReadMemEx(0x0201958F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201958F) - Data: 03  returns 0x01 (0001ms, 0982ms total)
T76A4 030:756 JLINK_ReadMemEx(0x02019590, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019590) - Data: 04  returns 0x01 (0000ms, 0982ms total)
T76A4 030:756 JLINK_ReadMemEx(0x02019591, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019591) - Data: 05  returns 0x01 (0001ms, 0983ms total)
T76A4 030:757 JLINK_ReadMemEx(0x02019592, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019592) - Data: 06  returns 0x01 (0001ms, 0984ms total)
T76A4 030:758 JLINK_ReadMemEx(0x02019593, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019593) - Data: 07  returns 0x01 (0000ms, 0984ms total)
T76A4 030:758 JLINK_ReadMemEx(0x02019594, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019594) - Data: 08  returns 0x01 (0001ms, 0985ms total)
T76A4 030:759 JLINK_ReadMemEx(0x02019595, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019595) - Data: 09  returns 0x01 (0001ms, 0986ms total)
T76A4 030:760 JLINK_ReadMemEx(0x02019596, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019596) - Data: 00  returns 0x01 (0001ms, 0987ms total)
T76A4 030:761 JLINK_ReadMemEx(0x02019597, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019597) - Data: 00  returns 0x01 (0000ms, 0987ms total)
T76A4 030:761 JLINK_ReadMemEx(0x02019598, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019598) - Data: 00  returns 0x01 (0001ms, 0988ms total)
T76A4 030:762 JLINK_ReadMemEx(0x02019599, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019599) - Data: 00  returns 0x01 (0001ms, 0989ms total)
T76A4 030:763 JLINK_ReadMemEx(0x0201959A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959A) - Data: 00  returns 0x01 (0000ms, 0989ms total)
T76A4 030:763 JLINK_ReadMemEx(0x0201959B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959B) - Data: 00  returns 0x01 (0001ms, 0990ms total)
T76A4 030:764 JLINK_ReadMemEx(0x0201959C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959C) - Data: 00  returns 0x01 (0001ms, 0991ms total)
T76A4 030:765 JLINK_ReadMemEx(0x0201959D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959D) - Data: 00  returns 0x01 (0000ms, 0991ms total)
T76A4 030:765 JLINK_ReadMemEx(0x0201959E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959E) - Data: 00  returns 0x01 (0001ms, 0992ms total)
T76A4 030:766 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 00  returns 0x01 (0000ms, 0992ms total)
T76A4 030:766 JLINK_ReadMemEx(0x020195A0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A0) - Data: 00  returns 0x01 (0001ms, 0993ms total)
T76A4 030:767 JLINK_ReadMemEx(0x020195A1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A1) - Data: 00  returns 0x01 (0001ms, 0994ms total)
T76A4 030:768 JLINK_ReadMemEx(0x020195A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A2) - Data: 00  returns 0x01 (0000ms, 0994ms total)
T76A4 030:768 JLINK_ReadMemEx(0x020195A3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A3) - Data: 00  returns 0x01 (0001ms, 0995ms total)
T76A4 030:769 JLINK_ReadMemEx(0x020195A4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A4) - Data: 00  returns 0x01 (0001ms, 0996ms total)
T76A4 030:770 JLINK_ReadMemEx(0x020195A5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A5) - Data: 00  returns 0x01 (0000ms, 0996ms total)
T76A4 030:770 JLINK_ReadMemEx(0x020195A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A6) - Data: 00  returns 0x01 (0001ms, 0997ms total)
T76A4 030:771 JLINK_ReadMemEx(0x020195A7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A7) - Data: 00  returns 0x01 (0001ms, 0998ms total)
T76A4 030:772 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 00  returns 0x01 (0000ms, 0998ms total)
T76A4 030:772 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 00  returns 0x01 (0001ms, 0999ms total)
T76A4 030:773 JLINK_ReadMemEx(0x020195AA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195AA) - Data: 00  returns 0x01 (0000ms, 0999ms total)
T76A4 030:773 JLINK_ReadMemEx(0x020195AB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195AB) - Data: 00  returns 0x01 (0001ms, 1000ms total)
T76A4 030:774 JLINK_ReadMemEx(0x020195AC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195AC) - Data: 00  returns 0x01 (0001ms, 1001ms total)
T76A4 030:775 JLINK_ReadMemEx(0x020195AD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195AD) - Data: 00  returns 0x01 (0001ms, 1002ms total)
T76A4 030:776 JLINK_ReadMemEx(0x020195AE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195AE) - Data: 00  returns 0x01 (0000ms, 1002ms total)
T76A4 030:776 JLINK_ReadMemEx(0x020195AF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195AF) - Data: 00  returns 0x01 (0001ms, 1003ms total)
T76A4 030:777 JLINK_ReadMemEx(0x020195B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B0) - Data: 00  returns 0x01 (0000ms, 1003ms total)
T76A4 030:777 JLINK_ReadMemEx(0x020195B1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B1) - Data: 00  returns 0x01 (0001ms, 1004ms total)
T76A4 030:778 JLINK_ReadMemEx(0x020195B2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B2) - Data: 00  returns 0x01 (0001ms, 1005ms total)
T76A4 030:779 JLINK_ReadMemEx(0x020195B3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B3) - Data: 00  returns 0x01 (0000ms, 1005ms total)
T76A4 030:779 JLINK_ReadMemEx(0x020195B4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B4) - Data: 00  returns 0x01 (0001ms, 1006ms total)
T76A4 030:780 JLINK_ReadMemEx(0x020195B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B5) - Data: 00  returns 0x01 (0001ms, 1007ms total)
T76A4 030:781 JLINK_ReadMemEx(0x020195B6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B6) - Data: 00  returns 0x01 (0000ms, 1007ms total)
T76A4 030:781 JLINK_ReadMemEx(0x020195B7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B7) - Data: 00  returns 0x01 (0001ms, 1008ms total)
T76A4 030:782 JLINK_ReadMemEx(0x020195B8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B8) - Data: 00  returns 0x01 (0000ms, 1008ms total)
T76A4 030:782 JLINK_ReadMemEx(0x020195B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B9) - Data: 00  returns 0x01 (0001ms, 1009ms total)
T76A4 030:783 JLINK_ReadMemEx(0x020195BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195BA) - Data: 00  returns 0x01 (0001ms, 1010ms total)
T76A4 030:784 JLINK_ReadMemEx(0x020195BB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195BB) - Data: 00  returns 0x01 (0000ms, 1010ms total)
T76A4 030:784 JLINK_ReadMemEx(0x020195BC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195BC) - Data: 00  returns 0x01 (0001ms, 1011ms total)
T76A4 030:785 JLINK_ReadMemEx(0x020195BD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195BD) - Data: 00  returns 0x01 (0001ms, 1012ms total)
T76A4 030:786 JLINK_ReadMemEx(0x020195BE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195BE) - Data: 00  returns 0x01 (0000ms, 1012ms total)
T76A4 030:786 JLINK_ReadMemEx(0x020195BF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195BF) - Data: 00  returns 0x01 (0002ms, 1014ms total)
T76A4 030:788 JLINK_ReadMemEx(0x020195C0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195C0) - Data: 00  returns 0x01 (0000ms, 1014ms total)
T76A4 030:788 JLINK_ReadMemEx(0x020195C1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195C1) - Data: 00  returns 0x01 (0001ms, 1015ms total)
T76A4 030:789 JLINK_ReadMemEx(0x020195C2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195C2) - Data: 00  returns 0x01 (0001ms, 1016ms total)
T76A4 030:790 JLINK_ReadMemEx(0x020195C3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195C3) - Data: 00  returns 0x01 (0000ms, 1016ms total)
T76A4 030:790 JLINK_ReadMemEx(0x020195C4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195C4) - Data: 00  returns 0x01 (0001ms, 1017ms total)
T76A4 030:791 JLINK_ReadMemEx(0x020195C5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195C5) - Data: 00  returns 0x01 (0001ms, 1018ms total)
T76A4 030:792 JLINK_ReadMemEx(0x020195C6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195C6) - Data: 00  returns 0x01 (0000ms, 1018ms total)
T76A4 030:792 JLINK_ReadMemEx(0x020195C7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195C7) - Data: 00  returns 0x01 (0001ms, 1019ms total)
T76A4 030:793 JLINK_ReadMemEx(0x020195C8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195C8) - Data: 00  returns 0x01 (0001ms, 1020ms total)
T76A4 030:794 JLINK_ReadMemEx(0x020195C9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195C9) - Data: 00  returns 0x01 (0000ms, 1020ms total)
T76A4 030:794 JLINK_ReadMemEx(0x020195CA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195CA) - Data: 00  returns 0x01 (0001ms, 1021ms total)
T76A4 030:795 JLINK_ReadMemEx(0x020195CB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195CB) - Data: 00  returns 0x01 (0000ms, 1021ms total)
T76A4 030:795 JLINK_ReadMemEx(0x020195CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195CC) - Data: 00  returns 0x01 (0001ms, 1022ms total)
T76A4 030:796 JLINK_ReadMemEx(0x020195CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195CD) - Data: 00  returns 0x01 (0001ms, 1023ms total)
T76A4 030:797 JLINK_ReadMemEx(0x020195CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195CE) - Data: 00  returns 0x01 (0000ms, 1023ms total)
T76A4 030:797 JLINK_ReadMemEx(0x020195CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195CF) - Data: 00  returns 0x01 (0001ms, 1024ms total)
T76A4 030:798 JLINK_ReadMemEx(0x020195D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195D0) - Data: 00  returns 0x01 (0001ms, 1025ms total)
T76A4 030:799 JLINK_ReadMemEx(0x020195D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195D1) - Data: 00  returns 0x01 (0000ms, 1025ms total)
T76A4 030:799 JLINK_ReadMemEx(0x020195D2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195D2) - Data: 00  returns 0x01 (0001ms, 1026ms total)
T76A4 030:800 JLINK_ReadMemEx(0x020195D3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195D3) - Data: 00  returns 0x01 (0001ms, 1027ms total)
T76A4 030:801 JLINK_ReadMemEx(0x020195D4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195D4) - Data: 00  returns 0x01 (0001ms, 1028ms total)
T76A4 030:802 JLINK_ReadMemEx(0x020195D5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195D5) - Data: 00  returns 0x01 (0000ms, 1028ms total)
T76A4 030:802 JLINK_ReadMemEx(0x020195D6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195D6) - Data: 00  returns 0x01 (0001ms, 1029ms total)
T76A4 030:803 JLINK_ReadMemEx(0x020195D7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195D7) - Data: 00  returns 0x01 (0001ms, 1030ms total)
T76A4 030:804 JLINK_ReadMemEx(0x020195D8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195D8) - Data: 00  returns 0x01 (0000ms, 1030ms total)
T76A4 030:804 JLINK_ReadMemEx(0x020195D9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195D9) - Data: 00  returns 0x01 (0001ms, 1031ms total)
T76A4 030:805 JLINK_ReadMemEx(0x020195DA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195DA) - Data: 00  returns 0x01 (0001ms, 1032ms total)
T76A4 030:806 JLINK_ReadMemEx(0x020195DB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195DB) - Data: 00  returns 0x01 (0000ms, 1032ms total)
T76A4 030:806 JLINK_ReadMemEx(0x020195DC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195DC) - Data: 00  returns 0x01 (0001ms, 1033ms total)
T76A4 030:807 JLINK_ReadMemEx(0x020195DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195DD) - Data: 00  returns 0x01 (0001ms, 1034ms total)
T76A4 030:808 JLINK_ReadMemEx(0x020195DE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195DE) - Data: 00  returns 0x01 (0000ms, 1034ms total)
T76A4 030:808 JLINK_ReadMemEx(0x020195DF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195DF) - Data: 00  returns 0x01 (0001ms, 1035ms total)
T76A4 030:809 JLINK_ReadMemEx(0x020195E0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195E0) - Data: 00  returns 0x01 (0001ms, 1036ms total)
T76A4 030:810 JLINK_ReadMemEx(0x020195E1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195E1) - Data: 00  returns 0x01 (0000ms, 1036ms total)
T76A4 030:810 JLINK_ReadMemEx(0x020195E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195E2) - Data: 00  returns 0x01 (0001ms, 1037ms total)
T76A4 030:811 JLINK_ReadMemEx(0x020195E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195E3) - Data: 00  returns 0x01 (0000ms, 1037ms total)
T76A4 030:811 JLINK_ReadMemEx(0x020195E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195E4) - Data: 00  returns 0x01 (0001ms, 1038ms total)
T76A4 030:812 JLINK_ReadMemEx(0x020195E5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195E5) - Data: 00  returns 0x01 (0001ms, 1039ms total)
T76A4 030:813 JLINK_ReadMemEx(0x020195E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195E6) - Data: 00  returns 0x01 (0000ms, 1039ms total)
T76A4 030:813 JLINK_ReadMemEx(0x020195E7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195E7) - Data: 00  returns 0x01 (0001ms, 1040ms total)
T76A4 030:814 JLINK_ReadMemEx(0x020195E8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195E8) - Data: 00  returns 0x01 (0001ms, 1041ms total)
T76A4 030:815 JLINK_ReadMemEx(0x020195E9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195E9) - Data: 00  returns 0x01 (0000ms, 1041ms total)
T76A4 030:815 JLINK_ReadMemEx(0x020195EA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195EA) - Data: 00  returns 0x01 (0001ms, 1042ms total)
T76A4 030:816 JLINK_ReadMemEx(0x020195EB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195EB) - Data: 00  returns 0x01 (0001ms, 1043ms total)
T76A4 030:817 JLINK_ReadMemEx(0x020195EC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195EC) - Data: 00  returns 0x01 (0000ms, 1043ms total)
T76A4 030:817 JLINK_ReadMemEx(0x020195ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195ED) - Data: 00  returns 0x01 (0001ms, 1044ms total)
T76A4 030:818 JLINK_ReadMemEx(0x020195EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195EE) - Data: 00  returns 0x01 (0000ms, 1044ms total)
T76A4 030:818 JLINK_ReadMemEx(0x020195EF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195EF) - Data: 00  returns 0x01 (0001ms, 1045ms total)
T76A4 030:819 JLINK_ReadMemEx(0x020195F0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195F0) - Data: 00  returns 0x01 (0001ms, 1046ms total)
T76A4 030:820 JLINK_ReadMemEx(0x020195F1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195F1) - Data: 00  returns 0x01 (0000ms, 1046ms total)
T76A4 030:820 JLINK_ReadMemEx(0x020195F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195F2) - Data: 00  returns 0x01 (0001ms, 1047ms total)
T76A4 030:821 JLINK_ReadMemEx(0x020195F3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195F3) - Data: 00  returns 0x01 (0000ms, 1047ms total)
T76A4 030:822 JLINK_ReadMemEx(0x020195F4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195F4) - Data: 00  returns 0x01 (0000ms, 1048ms total)
T76A4 030:822 JLINK_ReadMemEx(0x020195F5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195F5) - Data: 00  returns 0x01 (0001ms, 1049ms total)
T76A4 030:823 JLINK_ReadMemEx(0x020195F6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195F6) - Data: 00  returns 0x01 (0000ms, 1049ms total)
T76A4 030:823 JLINK_ReadMemEx(0x020195F7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195F7) - Data: 00  returns 0x01 (0001ms, 1050ms total)
T76A4 030:824 JLINK_ReadMemEx(0x020195F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195F8) - Data: 00  returns 0x01 (0001ms, 1051ms total)
T76A4 030:825 JLINK_ReadMemEx(0x020195F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195F9) - Data: 00  returns 0x01 (0000ms, 1051ms total)
T76A4 030:825 JLINK_ReadMemEx(0x020195FA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195FA) - Data: 00  returns 0x01 (0001ms, 1052ms total)
T76A4 030:826 JLINK_ReadMemEx(0x020195FB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195FB) - Data: 00  returns 0x01 (0001ms, 1053ms total)
T76A4 030:827 JLINK_ReadMemEx(0x020195FC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195FC) - Data: 00  returns 0x01 (0000ms, 1053ms total)
T76A4 030:827 JLINK_ReadMemEx(0x020195FD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195FD) - Data: 00  returns 0x01 (0001ms, 1054ms total)
T76A4 030:828 JLINK_ReadMemEx(0x020195FE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195FE) - Data: 00  returns 0x01 (0000ms, 1054ms total)
T76A4 030:828 JLINK_ReadMemEx(0x020195FF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195FF) - Data: 00  returns 0x01 (0001ms, 1055ms total)
T76A4 030:829 JLINK_ReadMemEx(0x02019600, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019600) - Data: 00  returns 0x01 (0001ms, 1056ms total)
T76A4 030:830 JLINK_ReadMemEx(0x02019601, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019601) - Data: 00  returns 0x01 (0000ms, 1056ms total)
T76A4 030:830 JLINK_ReadMemEx(0x02019602, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019602) - Data: 00  returns 0x01 (0001ms, 1057ms total)
T76A4 030:831 JLINK_ReadMemEx(0x02019603, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019603) - Data: 00  returns 0x01 (0001ms, 1058ms total)
T76A4 030:832 JLINK_ReadMemEx(0x02019604, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019604) - Data: 00  returns 0x01 (0000ms, 1058ms total)
T76A4 030:832 JLINK_ReadMemEx(0x02019605, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019605) - Data: 00  returns 0x01 (0001ms, 1059ms total)
T76A4 030:833 JLINK_ReadMemEx(0x02019606, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019606) - Data: 00  returns 0x01 (0001ms, 1060ms total)
T76A4 030:834 JLINK_ReadMemEx(0x02019607, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019607) - Data: 00  returns 0x01 (0000ms, 1060ms total)
T76A4 030:834 JLINK_ReadMemEx(0x02019608, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019608) - Data: 00  returns 0x01 (0001ms, 1061ms total)
T76A4 030:835 JLINK_ReadMemEx(0x02019609, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019609) - Data: 00  returns 0x01 (0000ms, 1061ms total)
T76A4 030:835 JLINK_ReadMemEx(0x0201960A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201960A) - Data: 00  returns 0x01 (0001ms, 1062ms total)
T76A4 030:836 JLINK_ReadMemEx(0x0201960B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201960B) - Data: 00  returns 0x01 (0001ms, 1063ms total)
T76A4 030:837 JLINK_ReadMemEx(0x0201960C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201960C) - Data: 00  returns 0x01 (0001ms, 1064ms total)
T76A4 030:838 JLINK_ReadMemEx(0x0201960D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201960D) - Data: 00  returns 0x01 (0000ms, 1064ms total)
T76A4 030:838 JLINK_ReadMemEx(0x0201960E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201960E) - Data: 00  returns 0x01 (0001ms, 1065ms total)
T76A4 030:839 JLINK_ReadMemEx(0x0201960F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201960F) - Data: 00  returns 0x01 (0000ms, 1065ms total)
T76A4 030:839 JLINK_ReadMemEx(0x02019610, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019610) - Data: 00  returns 0x01 (0001ms, 1066ms total)
T76A4 030:840 JLINK_ReadMemEx(0x02019611, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019611) - Data: 00  returns 0x01 (0001ms, 1067ms total)
T76A4 030:841 JLINK_ReadMemEx(0x02019612, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019612) - Data: 00  returns 0x01 (0000ms, 1067ms total)
T76A4 030:841 JLINK_ReadMemEx(0x02019613, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019613) - Data: 00  returns 0x01 (0001ms, 1068ms total)
T76A4 030:842 JLINK_ReadMemEx(0x02019614, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019614) - Data: 00  returns 0x01 (0001ms, 1069ms total)
T76A4 030:843 JLINK_ReadMemEx(0x02019615, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019615) - Data: 00  returns 0x01 (0000ms, 1069ms total)
T76A4 030:843 JLINK_ReadMemEx(0x02019616, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019616) - Data: 00  returns 0x01 (0001ms, 1070ms total)
T76A4 030:844 JLINK_ReadMemEx(0x02019617, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019617) - Data: 00  returns 0x01 (0001ms, 1071ms total)
T76A4 030:845 JLINK_ReadMemEx(0x02019618, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019618) - Data: 00  returns 0x01 (0000ms, 1071ms total)
T76A4 030:845 JLINK_ReadMemEx(0x02019619, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019619) - Data: 00  returns 0x01 (0001ms, 1072ms total)
T76A4 030:846 JLINK_ReadMemEx(0x0201961A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201961A) - Data: 00  returns 0x01 (0001ms, 1073ms total)
T76A4 030:847 JLINK_ReadMemEx(0x0201961B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201961B) - Data: 00  returns 0x01 (0000ms, 1073ms total)
T76A4 030:847 JLINK_ReadMemEx(0x0201961C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201961C) - Data: 00  returns 0x01 (0001ms, 1074ms total)
T76A4 030:848 JLINK_ReadMemEx(0x0201961D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201961D) - Data: 00  returns 0x01 (0000ms, 1074ms total)
T76A4 030:848 JLINK_ReadMemEx(0x0201961E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201961E) - Data: 00  returns 0x01 (0001ms, 1075ms total)
T76A4 030:849 JLINK_ReadMemEx(0x0201961F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201961F) - Data: 00  returns 0x01 (0001ms, 1076ms total)
T76A4 030:850 JLINK_ReadMemEx(0x02019620, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019620) - Data: 00  returns 0x01 (0000ms, 1076ms total)
T76A4 030:850 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0001ms, 1077ms total)
T76A4 030:851 JLINK_ReadMemEx(0x02019622, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019622) - Data: 00  returns 0x01 (0001ms, 1078ms total)
T76A4 030:852 JLINK_ReadMemEx(0x02019623, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019623) - Data: 00  returns 0x01 (0000ms, 1078ms total)
T76A4 030:852 JLINK_ReadMemEx(0x02019624, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019624) - Data: 00  returns 0x01 (0001ms, 1079ms total)
T76A4 030:853 JLINK_ReadMemEx(0x02019625, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019625) - Data: 00  returns 0x01 (0000ms, 1079ms total)
T76A4 030:853 JLINK_ReadMemEx(0x02019626, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019626) - Data: 00  returns 0x01 (0001ms, 1080ms total)
T76A4 030:854 JLINK_ReadMemEx(0x02019627, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019627) - Data: 00  returns 0x01 (0001ms, 1081ms total)
T76A4 030:855 JLINK_ReadMemEx(0x02019628, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019628) - Data: 00  returns 0x01 (0000ms, 1081ms total)
T76A4 030:855 JLINK_ReadMemEx(0x02019629, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019629) - Data: 00  returns 0x01 (0001ms, 1082ms total)
T76A4 030:856 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0001ms, 1083ms total)
T76A4 030:857 JLINK_ReadMemEx(0x0201962B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962B) - Data: 00  returns 0x01 (0000ms, 1083ms total)
T76A4 030:857 JLINK_ReadMemEx(0x0201962C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962C) - Data: 00  returns 0x01 (0001ms, 1084ms total)
T76A4 030:858 JLINK_ReadMemEx(0x0201962D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962D) - Data: 00  returns 0x01 (0000ms, 1084ms total)
T76A4 030:858 JLINK_ReadMemEx(0x0201962E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962E) - Data: 00  returns 0x01 (0001ms, 1085ms total)
T76A4 030:859 JLINK_ReadMemEx(0x0201962F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962F) - Data: 00  returns 0x01 (0001ms, 1086ms total)
T76A4 030:860 JLINK_ReadMemEx(0x02019630, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019630) - Data: 00  returns 0x01 (0000ms, 1086ms total)
T76A4 030:860 JLINK_ReadMemEx(0x02019631, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019631) - Data: 00  returns 0x01 (0001ms, 1087ms total)
T76A4 030:861 JLINK_ReadMemEx(0x02019632, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019632) - Data: 00  returns 0x01 (0001ms, 1088ms total)
T76A4 030:862 JLINK_ReadMemEx(0x02019633, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019633) - Data: 00  returns 0x01 (0000ms, 1088ms total)
T76A4 030:862 JLINK_ReadMemEx(0x02019634, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019634) - Data: 00  returns 0x01 (0001ms, 1089ms total)
T76A4 030:863 JLINK_ReadMemEx(0x02019635, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019635) - Data: 00  returns 0x01 (0000ms, 1089ms total)
T76A4 030:863 JLINK_ReadMemEx(0x02019636, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019636) - Data: 00  returns 0x01 (0001ms, 1090ms total)
T76A4 030:864 JLINK_ReadMemEx(0x02019637, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019637) - Data: 00  returns 0x01 (0001ms, 1091ms total)
T76A4 030:865 JLINK_ReadMemEx(0x02019638, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019638) - Data: 00  returns 0x01 (0000ms, 1091ms total)
T76A4 030:865 JLINK_ReadMemEx(0x02019639, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019639) - Data: 00  returns 0x01 (0001ms, 1092ms total)
T76A4 030:866 JLINK_ReadMemEx(0x0201963A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201963A) - Data: 00  returns 0x01 (0001ms, 1093ms total)
T76A4 030:867 JLINK_ReadMemEx(0x0201963B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201963B) - Data: 00  returns 0x01 (0000ms, 1093ms total)
T76A4 030:867 JLINK_ReadMemEx(0x0201963C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201963C) - Data: 00  returns 0x01 (0001ms, 1094ms total)
T76A4 030:868 JLINK_ReadMemEx(0x0201963D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201963D) - Data: 00  returns 0x01 (0001ms, 1095ms total)
T76A4 030:869 JLINK_ReadMemEx(0x0201963E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201963E) - Data: 00  returns 0x01 (0000ms, 1095ms total)
T76A4 030:869 JLINK_ReadMemEx(0x0201963F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201963F) - Data: 00  returns 0x01 (0001ms, 1096ms total)
T76A4 030:870 JLINK_ReadMemEx(0x02019640, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019640) - Data: 00  returns 0x01 (0001ms, 1097ms total)
T76A4 030:871 JLINK_ReadMemEx(0x02019641, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019641) - Data: 00  returns 0x01 (0000ms, 1097ms total)
T76A4 030:871 JLINK_ReadMemEx(0x02019642, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019642) - Data: 00  returns 0x01 (0001ms, 1098ms total)
T76A4 030:872 JLINK_ReadMemEx(0x02019643, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019643) - Data: 00  returns 0x01 (0000ms, 1098ms total)
T76A4 030:872 JLINK_ReadMemEx(0x02019644, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019644) - Data: 00  returns 0x01 (0001ms, 1099ms total)
T76A4 030:873 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 00  returns 0x01 (0001ms, 1100ms total)
T76A4 030:874 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 00  returns 0x01 (0000ms, 1100ms total)
T76A4 030:874 JLINK_ReadMemEx(0x02019647, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019647) - Data: 00  returns 0x01 (0001ms, 1101ms total)
T76A4 030:875 JLINK_ReadMemEx(0x02019648, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019648) - Data: 00  returns 0x01 (0001ms, 1102ms total)
T76A4 030:876 JLINK_ReadMemEx(0x02019649, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019649) - Data: 00  returns 0x01 (0000ms, 1102ms total)
T76A4 030:876 JLINK_ReadMemEx(0x0201964A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201964A) - Data: 00  returns 0x01 (0001ms, 1103ms total)
T76A4 030:877 JLINK_ReadMemEx(0x0201964B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201964B) - Data: 00  returns 0x01 (0001ms, 1104ms total)
T76A4 030:878 JLINK_ReadMemEx(0x0201964C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201964C) - Data: 00  returns 0x01 (0000ms, 1104ms total)
T76A4 030:878 JLINK_ReadMemEx(0x0201964D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201964D) - Data: 00  returns 0x01 (0001ms, 1105ms total)
T76A4 030:879 JLINK_ReadMemEx(0x0201964E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201964E) - Data: 00  returns 0x01 (0001ms, 1106ms total)
T76A4 030:880 JLINK_ReadMemEx(0x0201964F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201964F) - Data: 00  returns 0x01 (0000ms, 1106ms total)
T76A4 030:880 JLINK_ReadMemEx(0x02019650, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019650) - Data: 00  returns 0x01 (0001ms, 1107ms total)
T76A4 030:881 JLINK_ReadMemEx(0x02019651, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019651) - Data: 00  returns 0x01 (0001ms, 1108ms total)
T76A4 030:882 JLINK_ReadMemEx(0x02019652, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019652) - Data: 00  returns 0x01 (0000ms, 1108ms total)
T76A4 030:882 JLINK_ReadMemEx(0x02019653, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019653) - Data: 00  returns 0x01 (0001ms, 1109ms total)
T76A4 030:883 JLINK_ReadMemEx(0x02019654, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019654) - Data: 00  returns 0x01 (0001ms, 1110ms total)
T76A4 030:884 JLINK_ReadMemEx(0x02019655, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019655) - Data: 00  returns 0x01 (0000ms, 1110ms total)
T76A4 030:884 JLINK_ReadMemEx(0x02019656, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019656) - Data: 00  returns 0x01 (0001ms, 1111ms total)
T76A4 030:885 JLINK_ReadMemEx(0x02019657, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019657) - Data: 00  returns 0x01 (0000ms, 1111ms total)
T76A4 030:886 JLINK_ReadMemEx(0x02019658, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019658) - Data: 00  returns 0x01 (0000ms, 1112ms total)
T76A4 030:886 JLINK_ReadMemEx(0x02019659, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019659) - Data: 00  returns 0x01 (0001ms, 1113ms total)
T76A4 030:887 JLINK_ReadMemEx(0x0201965A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201965A) - Data: 00  returns 0x01 (0000ms, 1113ms total)
T76A4 030:888 JLINK_ReadMemEx(0x0201965B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201965B) - Data: 00  returns 0x01 (0000ms, 1113ms total)
T76A4 030:888 JLINK_ReadMemEx(0x0201965C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201965C) - Data: 00  returns 0x01 (0001ms, 1114ms total)
T76A4 030:889 JLINK_ReadMemEx(0x0201965D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201965D) - Data: 00  returns 0x01 (0000ms, 1114ms total)
T76A4 030:889 JLINK_ReadMemEx(0x0201965E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201965E) - Data: 00  returns 0x01 (0001ms, 1115ms total)
T76A4 030:890 JLINK_ReadMemEx(0x0201965F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201965F) - Data: 00  returns 0x01 (0001ms, 1116ms total)
T76A4 030:891 JLINK_ReadMemEx(0x02019660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019660) - Data: 00  returns 0x01 (0000ms, 1116ms total)
T76A4 030:891 JLINK_ReadMemEx(0x02019661, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019661) - Data: 00  returns 0x01 (0001ms, 1117ms total)
T76A4 030:892 JLINK_ReadMemEx(0x02019662, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019662) - Data: 00  returns 0x01 (0001ms, 1118ms total)
T76A4 030:893 JLINK_ReadMemEx(0x02019663, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019663) - Data: 00  returns 0x01 (0000ms, 1118ms total)
T76A4 030:893 JLINK_ReadMemEx(0x02019664, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019664) - Data: 00  returns 0x01 (0001ms, 1119ms total)
T76A4 030:894 JLINK_ReadMemEx(0x02019665, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019665) - Data: 00  returns 0x01 (0001ms, 1120ms total)
T76A4 030:895 JLINK_ReadMemEx(0x02019666, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019666) - Data: 00  returns 0x01 (0000ms, 1120ms total)
T76A4 030:895 JLINK_ReadMemEx(0x02019667, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019667) - Data: 00  returns 0x01 (0001ms, 1121ms total)
T76A4 030:896 JLINK_ReadMemEx(0x02019668, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019668) - Data: 00  returns 0x01 (0001ms, 1122ms total)
T76A4 030:897 JLINK_ReadMemEx(0x02019669, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019669) - Data: 00  returns 0x01 (0000ms, 1122ms total)
T76A4 030:897 JLINK_ReadMemEx(0x0201966A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201966A) - Data: 00  returns 0x01 (0001ms, 1123ms total)
T76A4 030:898 JLINK_ReadMemEx(0x0201966B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201966B) - Data: 00  returns 0x01 (0001ms, 1124ms total)
T76A4 030:899 JLINK_ReadMemEx(0x0201966C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201966C) - Data: 00  returns 0x01 (0000ms, 1124ms total)
T76A4 030:899 JLINK_ReadMemEx(0x0201966D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201966D) - Data: 00  returns 0x01 (0001ms, 1125ms total)
T76A4 030:900 JLINK_ReadMemEx(0x0201966E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201966E) - Data: 00  returns 0x01 (0001ms, 1126ms total)
T76A4 030:901 JLINK_ReadMemEx(0x0201966F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201966F) - Data: 00  returns 0x01 (0000ms, 1126ms total)
T76A4 030:901 JLINK_ReadMemEx(0x02019670, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019670) - Data: 00  returns 0x01 (0001ms, 1127ms total)
T76A4 030:902 JLINK_ReadMemEx(0x02019671, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019671) - Data: 00  returns 0x01 (0001ms, 1128ms total)
T76A4 030:903 JLINK_ReadMemEx(0x02019672, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019672) - Data: 00  returns 0x01 (0000ms, 1128ms total)
T76A4 030:903 JLINK_ReadMemEx(0x02019673, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019673) - Data: 00  returns 0x01 (0001ms, 1129ms total)
T76A4 030:904 JLINK_ReadMemEx(0x02019674, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019674) - Data: 00  returns 0x01 (0000ms, 1129ms total)
T76A4 030:904 JLINK_ReadMemEx(0x02019675, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019675) - Data: 00  returns 0x01 (0001ms, 1130ms total)
T76A4 030:905 JLINK_ReadMemEx(0x02019676, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019676) - Data: 00  returns 0x01 (0001ms, 1131ms total)
T76A4 030:906 JLINK_ReadMemEx(0x02019677, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019677) - Data: 00  returns 0x01 (0000ms, 1131ms total)
T76A4 030:906 JLINK_ReadMemEx(0x02019678, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019678) - Data: 00  returns 0x01 (0001ms, 1132ms total)
T76A4 030:907 JLINK_ReadMemEx(0x02019679, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019679) - Data: 00  returns 0x01 (0001ms, 1133ms total)
T76A4 030:908 JLINK_ReadMemEx(0x0201967A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201967A) - Data: 00  returns 0x01 (0000ms, 1133ms total)
T76A4 030:908 JLINK_ReadMemEx(0x0201967B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201967B) - Data: 00  returns 0x01 (0001ms, 1134ms total)
T76A4 030:909 JLINK_ReadMemEx(0x0201967C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201967C) - Data: 00  returns 0x01 (0001ms, 1135ms total)
T76A4 030:910 JLINK_ReadMemEx(0x0201967D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201967D) - Data: 00  returns 0x01 (0001ms, 1136ms total)
T76A4 030:911 JLINK_ReadMemEx(0x0201967E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201967E) - Data: 00  returns 0x01 (0000ms, 1136ms total)
T76A4 030:911 JLINK_ReadMemEx(0x0201967F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201967F) - Data: 00  returns 0x01 (0001ms, 1137ms total)
T76A4 030:912 JLINK_ReadMemEx(0x02019680, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019680) - Data: 00  returns 0x01 (0000ms, 1137ms total)
T76A4 030:912 JLINK_ReadMemEx(0x02019681, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019681) - Data: 00  returns 0x01 (0001ms, 1138ms total)
T76A4 030:913 JLINK_ReadMemEx(0x02019682, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019682) - Data: 00  returns 0x01 (0001ms, 1139ms total)
T76A4 030:914 JLINK_ReadMemEx(0x02019683, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019683) - Data: 00  returns 0x01 (0000ms, 1139ms total)
T76A4 030:914 JLINK_ReadMemEx(0x02019684, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019684) - Data: 00  returns 0x01 (0001ms, 1140ms total)
T76A4 030:915 JLINK_ReadMemEx(0x02019685, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019685) - Data: 00  returns 0x01 (0001ms, 1141ms total)
T76A4 030:916 JLINK_ReadMemEx(0x02019686, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019686) - Data: 00  returns 0x01 (0000ms, 1141ms total)
T76A4 030:916 JLINK_ReadMemEx(0x02019687, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019687) - Data: 00  returns 0x01 (0001ms, 1142ms total)
T76A4 030:917 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0000ms, 1142ms total)
T76A4 030:917 JLINK_ReadMemEx(0x02019689, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019689) - Data: 00  returns 0x01 (0001ms, 1143ms total)
T76A4 030:918 JLINK_ReadMemEx(0x0201968A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201968A) - Data: 00  returns 0x01 (0001ms, 1144ms total)
T76A4 031:618 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 1B 00 00 00  returns 0x04 (0001ms, 1145ms total)
T76A4 031:679 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 1B 00 00 00  returns 0x04 (0001ms, 1146ms total)
T76A4 031:740 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 37  returns 0x01 (0001ms, 1147ms total)
T76A4 031:831 JLINK_ReadMemEx(0x0201958C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201958C) - Data: 00 01 02 03 04 05 06 07 08 09 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1148ms total)
T76A4 031:832 JLINK_ReadMemEx(0x0201958C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201958C) - Data: 00  returns 0x01 (0001ms, 1149ms total)
T76A4 031:833 JLINK_ReadMemEx(0x0201958D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201958D) - Data: 01  returns 0x01 (0000ms, 1149ms total)
T76A4 031:833 JLINK_ReadMemEx(0x0201958E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201958E) - Data: 02  returns 0x01 (0001ms, 1150ms total)
T76A4 031:834 JLINK_ReadMemEx(0x0201958F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201958F) - Data: 03  returns 0x01 (0001ms, 1151ms total)
T76A4 031:835 JLINK_ReadMemEx(0x02019590, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019590) - Data: 04  returns 0x01 (0000ms, 1151ms total)
T76A4 031:835 JLINK_ReadMemEx(0x02019591, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019591) - Data: 05  returns 0x01 (0001ms, 1152ms total)
T76A4 031:836 JLINK_ReadMemEx(0x02019592, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019592) - Data: 06  returns 0x01 (0001ms, 1153ms total)
T76A4 031:837 JLINK_ReadMemEx(0x02019593, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019593) - Data: 07  returns 0x01 (0000ms, 1153ms total)
T76A4 031:837 JLINK_ReadMemEx(0x02019594, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019594) - Data: 08  returns 0x01 (0001ms, 1154ms total)
T76A4 031:838 JLINK_ReadMemEx(0x02019595, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019595) - Data: 09  returns 0x01 (0001ms, 1155ms total)
T76A4 031:839 JLINK_ReadMemEx(0x02019596, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019596) - Data: 00  returns 0x01 (0000ms, 1155ms total)
T76A4 031:839 JLINK_ReadMemEx(0x02019597, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019597) - Data: 00  returns 0x01 (0001ms, 1156ms total)
T76A4 031:840 JLINK_ReadMemEx(0x02019598, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019598) - Data: 00  returns 0x01 (0001ms, 1157ms total)
T76A4 031:841 JLINK_ReadMemEx(0x02019599, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019599) - Data: 00  returns 0x01 (0000ms, 1157ms total)
T76A4 031:841 JLINK_ReadMemEx(0x0201959A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959A) - Data: 00  returns 0x01 (0001ms, 1158ms total)
T76A4 031:842 JLINK_ReadMemEx(0x0201959B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959B) - Data: 00  returns 0x01 (0001ms, 1159ms total)
T76A4 031:843 JLINK_ReadMemEx(0x0201959C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959C) - Data: 00  returns 0x01 (0000ms, 1159ms total)
T76A4 031:843 JLINK_ReadMemEx(0x0201959D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959D) - Data: 00  returns 0x01 (0001ms, 1160ms total)
T76A4 031:844 JLINK_ReadMemEx(0x0201959E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959E) - Data: 00  returns 0x01 (0001ms, 1161ms total)
T76A4 031:845 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 00  returns 0x01 (0000ms, 1161ms total)
T76A4 031:845 JLINK_ReadMemEx(0x020195A0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A0) - Data: 00  returns 0x01 (0001ms, 1162ms total)
T76A4 031:846 JLINK_ReadMemEx(0x020195A1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A1) - Data: 00  returns 0x01 (0001ms, 1163ms total)
T76A4 031:847 JLINK_ReadMemEx(0x020195A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A2) - Data: 00  returns 0x01 (0000ms, 1163ms total)
T76A4 031:847 JLINK_ReadMemEx(0x020195A3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A3) - Data: 00  returns 0x01 (0001ms, 1164ms total)
T76A4 031:848 JLINK_ReadMemEx(0x020195A4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A4) - Data: 00  returns 0x01 (0001ms, 1165ms total)
T76A4 031:849 JLINK_ReadMemEx(0x020195A5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A5) - Data: 00  returns 0x01 (0000ms, 1165ms total)
T76A4 031:849 JLINK_ReadMemEx(0x020195A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A6) - Data: 00  returns 0x01 (0001ms, 1166ms total)
T76A4 031:850 JLINK_ReadMemEx(0x020195A7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A7) - Data: 00  returns 0x01 (0001ms, 1167ms total)
T76A4 031:851 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 00  returns 0x01 (0000ms, 1167ms total)
T76A4 031:851 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 00  returns 0x01 (0001ms, 1168ms total)
T76A4 031:852 JLINK_ReadMemEx(0x020195AA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195AA) - Data: 00  returns 0x01 (0001ms, 1169ms total)
T76A4 031:853 JLINK_ReadMemEx(0x020195AB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195AB) - Data: 00  returns 0x01 (0000ms, 1169ms total)
T76A4 031:853 JLINK_ReadMemEx(0x020195AC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195AC) - Data: 00  returns 0x01 (0001ms, 1170ms total)
T76A4 031:854 JLINK_ReadMemEx(0x020195AD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195AD) - Data: 00  returns 0x01 (0001ms, 1171ms total)
T76A4 031:855 JLINK_ReadMemEx(0x020195AE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195AE) - Data: 00  returns 0x01 (0000ms, 1171ms total)
T76A4 031:855 JLINK_ReadMemEx(0x020195AF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195AF) - Data: 00  returns 0x01 (0001ms, 1172ms total)
T76A4 031:856 JLINK_ReadMemEx(0x020195B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B0) - Data: 00  returns 0x01 (0000ms, 1172ms total)
T76A4 031:856 JLINK_ReadMemEx(0x020195B1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B1) - Data: 00  returns 0x01 (0001ms, 1173ms total)
T76A4 031:857 JLINK_ReadMemEx(0x020195B2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B2) - Data: 00  returns 0x01 (0001ms, 1174ms total)
T76A4 031:858 JLINK_ReadMemEx(0x020195B3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B3) - Data: 00  returns 0x01 (0001ms, 1175ms total)
T76A4 031:859 JLINK_ReadMemEx(0x020195B4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B4) - Data: 00  returns 0x01 (0000ms, 1175ms total)
T76A4 031:859 JLINK_ReadMemEx(0x020195B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B5) - Data: 00  returns 0x01 (0001ms, 1176ms total)
T76A4 031:860 JLINK_ReadMemEx(0x020195B6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B6) - Data: 00  returns 0x01 (0001ms, 1177ms total)
T76A4 031:861 JLINK_ReadMemEx(0x020195B7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B7) - Data: 00  returns 0x01 (0000ms, 1177ms total)
T76A4 031:861 JLINK_ReadMemEx(0x020195B8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B8) - Data: 00  returns 0x01 (0001ms, 1178ms total)
T76A4 031:862 JLINK_ReadMemEx(0x020195B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B9) - Data: 00  returns 0x01 (0001ms, 1179ms total)
T76A4 031:863 JLINK_ReadMemEx(0x020195BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195BA) - Data: 00  returns 0x01 (0000ms, 1179ms total)
T76A4 031:863 JLINK_ReadMemEx(0x020195BB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195BB) - Data: 00  returns 0x01 (0001ms, 1180ms total)
T76A4 031:864 JLINK_ReadMemEx(0x020195BC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195BC) - Data: 00  returns 0x01 (0000ms, 1180ms total)
T76A4 031:864 JLINK_ReadMemEx(0x020195BD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195BD) - Data: 00  returns 0x01 (0001ms, 1181ms total)
T76A4 031:865 JLINK_ReadMemEx(0x020195BE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195BE) - Data: 00  returns 0x01 (0001ms, 1182ms total)
T76A4 031:866 JLINK_ReadMemEx(0x020195BF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195BF) - Data: 00  returns 0x01 (0000ms, 1182ms total)
T76A4 031:866 JLINK_ReadMemEx(0x020195C0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195C0) - Data: 00  returns 0x01 (0001ms, 1183ms total)
T76A4 031:867 JLINK_ReadMemEx(0x020195C1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195C1) - Data: 00  returns 0x01 (0001ms, 1184ms total)
T76A4 031:868 JLINK_ReadMemEx(0x020195C2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195C2) - Data: 00  returns 0x01 (0000ms, 1184ms total)
T76A4 031:868 JLINK_ReadMemEx(0x020195C3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195C3) - Data: 00  returns 0x01 (0001ms, 1185ms total)
T76A4 031:869 JLINK_ReadMemEx(0x020195C4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195C4) - Data: 00  returns 0x01 (0000ms, 1185ms total)
T76A4 031:869 JLINK_ReadMemEx(0x020195C5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195C5) - Data: 00  returns 0x01 (0001ms, 1186ms total)
T76A4 031:870 JLINK_ReadMemEx(0x020195C6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195C6) - Data: 00  returns 0x01 (0001ms, 1187ms total)
T76A4 031:871 JLINK_ReadMemEx(0x020195C7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195C7) - Data: 00  returns 0x01 (0000ms, 1187ms total)
T76A4 031:871 JLINK_ReadMemEx(0x020195C8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195C8) - Data: 00  returns 0x01 (0001ms, 1188ms total)
T76A4 031:872 JLINK_ReadMemEx(0x020195C9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195C9) - Data: 00  returns 0x01 (0001ms, 1189ms total)
T76A4 031:873 JLINK_ReadMemEx(0x020195CA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195CA) - Data: 00  returns 0x01 (0001ms, 1190ms total)
T76A4 031:874 JLINK_ReadMemEx(0x020195CB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195CB) - Data: 00  returns 0x01 (0000ms, 1190ms total)
T76A4 031:874 JLINK_ReadMemEx(0x020195CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195CC) - Data: 00  returns 0x01 (0001ms, 1191ms total)
T76A4 031:875 JLINK_ReadMemEx(0x020195CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195CD) - Data: 00  returns 0x01 (0001ms, 1192ms total)
T76A4 031:876 JLINK_ReadMemEx(0x020195CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195CE) - Data: 00  returns 0x01 (0000ms, 1192ms total)
T76A4 031:876 JLINK_ReadMemEx(0x020195CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195CF) - Data: 00  returns 0x01 (0001ms, 1193ms total)
T76A4 031:877 JLINK_ReadMemEx(0x020195D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195D0) - Data: 00  returns 0x01 (0001ms, 1194ms total)
T76A4 031:878 JLINK_ReadMemEx(0x020195D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195D1) - Data: 00  returns 0x01 (0000ms, 1194ms total)
T76A4 031:878 JLINK_ReadMemEx(0x020195D2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195D2) - Data: 00  returns 0x01 (0001ms, 1195ms total)
T76A4 031:879 JLINK_ReadMemEx(0x020195D3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195D3) - Data: 00  returns 0x01 (0001ms, 1196ms total)
T76A4 031:880 JLINK_ReadMemEx(0x020195D4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195D4) - Data: 00  returns 0x01 (0000ms, 1196ms total)
T76A4 031:880 JLINK_ReadMemEx(0x020195D5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195D5) - Data: 00  returns 0x01 (0001ms, 1197ms total)
T76A4 031:881 JLINK_ReadMemEx(0x020195D6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195D6) - Data: 00  returns 0x01 (0000ms, 1197ms total)
T76A4 031:881 JLINK_ReadMemEx(0x020195D7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195D7) - Data: 00  returns 0x01 (0001ms, 1198ms total)
T76A4 031:882 JLINK_ReadMemEx(0x020195D8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195D8) - Data: 00  returns 0x01 (0001ms, 1199ms total)
T76A4 031:883 JLINK_ReadMemEx(0x020195D9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195D9) - Data: 00  returns 0x01 (0000ms, 1199ms total)
T76A4 031:883 JLINK_ReadMemEx(0x020195DA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195DA) - Data: 00  returns 0x01 (0001ms, 1200ms total)
T76A4 031:884 JLINK_ReadMemEx(0x020195DB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195DB) - Data: 00  returns 0x01 (0001ms, 1201ms total)
T76A4 031:885 JLINK_ReadMemEx(0x020195DC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195DC) - Data: 00  returns 0x01 (0000ms, 1201ms total)
T76A4 031:885 JLINK_ReadMemEx(0x020195DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195DD) - Data: 00  returns 0x01 (0001ms, 1202ms total)
T76A4 031:886 JLINK_ReadMemEx(0x020195DE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195DE) - Data: 00  returns 0x01 (0001ms, 1203ms total)
T76A4 031:887 JLINK_ReadMemEx(0x020195DF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195DF) - Data: 00  returns 0x01 (0000ms, 1203ms total)
T76A4 031:887 JLINK_ReadMemEx(0x020195E0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195E0) - Data: 00  returns 0x01 (0001ms, 1204ms total)
T76A4 031:888 JLINK_ReadMemEx(0x020195E1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195E1) - Data: 00  returns 0x01 (0001ms, 1205ms total)
T76A4 031:889 JLINK_ReadMemEx(0x020195E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195E2) - Data: 00  returns 0x01 (0000ms, 1205ms total)
T76A4 031:889 JLINK_ReadMemEx(0x020195E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195E3) - Data: 00  returns 0x01 (0001ms, 1206ms total)
T76A4 031:890 JLINK_ReadMemEx(0x020195E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195E4) - Data: 00  returns 0x01 (0001ms, 1207ms total)
T76A4 031:891 JLINK_ReadMemEx(0x020195E5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195E5) - Data: 00  returns 0x01 (0000ms, 1207ms total)
T76A4 031:891 JLINK_ReadMemEx(0x020195E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195E6) - Data: 00  returns 0x01 (0001ms, 1208ms total)
T76A4 031:892 JLINK_ReadMemEx(0x020195E7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195E7) - Data: 00  returns 0x01 (0000ms, 1208ms total)
T76A4 031:892 JLINK_ReadMemEx(0x020195E8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195E8) - Data: 00  returns 0x01 (0001ms, 1209ms total)
T76A4 031:893 JLINK_ReadMemEx(0x020195E9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195E9) - Data: 00  returns 0x01 (0001ms, 1210ms total)
T76A4 031:894 JLINK_ReadMemEx(0x020195EA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195EA) - Data: 00  returns 0x01 (0000ms, 1210ms total)
T76A4 031:894 JLINK_ReadMemEx(0x020195EB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195EB) - Data: 00  returns 0x01 (0001ms, 1211ms total)
T76A4 031:895 JLINK_ReadMemEx(0x020195EC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195EC) - Data: 00  returns 0x01 (0001ms, 1212ms total)
T76A4 031:896 JLINK_ReadMemEx(0x020195ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195ED) - Data: 00  returns 0x01 (0000ms, 1212ms total)
T76A4 031:896 JLINK_ReadMemEx(0x020195EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195EE) - Data: 00  returns 0x01 (0001ms, 1213ms total)
T76A4 031:897 JLINK_ReadMemEx(0x020195EF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195EF) - Data: 00  returns 0x01 (0000ms, 1213ms total)
T76A4 031:897 JLINK_ReadMemEx(0x020195F0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195F0) - Data: 00  returns 0x01 (0001ms, 1214ms total)
T76A4 031:898 JLINK_ReadMemEx(0x020195F1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195F1) - Data: 00  returns 0x01 (0001ms, 1215ms total)
T76A4 031:899 JLINK_ReadMemEx(0x020195F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195F2) - Data: 00  returns 0x01 (0000ms, 1215ms total)
T76A4 031:899 JLINK_ReadMemEx(0x020195F3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195F3) - Data: 00  returns 0x01 (0001ms, 1216ms total)
T76A4 031:900 JLINK_ReadMemEx(0x020195F4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195F4) - Data: 00  returns 0x01 (0001ms, 1217ms total)
T76A4 031:901 JLINK_ReadMemEx(0x020195F5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195F5) - Data: 00  returns 0x01 (0000ms, 1217ms total)
T76A4 031:901 JLINK_ReadMemEx(0x020195F6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195F6) - Data: 00  returns 0x01 (0001ms, 1218ms total)
T76A4 031:902 JLINK_ReadMemEx(0x020195F7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195F7) - Data: 00  returns 0x01 (0001ms, 1219ms total)
T76A4 031:903 JLINK_ReadMemEx(0x020195F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195F8) - Data: 00  returns 0x01 (0000ms, 1219ms total)
T76A4 031:903 JLINK_ReadMemEx(0x020195F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195F9) - Data: 00  returns 0x01 (0001ms, 1220ms total)
T76A4 031:904 JLINK_ReadMemEx(0x020195FA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195FA) - Data: 00  returns 0x01 (0001ms, 1221ms total)
T76A4 031:905 JLINK_ReadMemEx(0x020195FB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195FB) - Data: 00  returns 0x01 (0000ms, 1221ms total)
T76A4 031:905 JLINK_ReadMemEx(0x020195FC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195FC) - Data: 00  returns 0x01 (0001ms, 1222ms total)
T76A4 031:906 JLINK_ReadMemEx(0x020195FD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195FD) - Data: 00  returns 0x01 (0001ms, 1223ms total)
T76A4 031:907 JLINK_ReadMemEx(0x020195FE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195FE) - Data: 00  returns 0x01 (0000ms, 1223ms total)
T76A4 031:907 JLINK_ReadMemEx(0x020195FF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195FF) - Data: 00  returns 0x01 (0001ms, 1224ms total)
T76A4 031:908 JLINK_ReadMemEx(0x02019600, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019600) - Data: 00  returns 0x01 (0001ms, 1225ms total)
T76A4 031:909 JLINK_ReadMemEx(0x02019601, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019601) - Data: 00  returns 0x01 (0000ms, 1225ms total)
T76A4 031:909 JLINK_ReadMemEx(0x02019602, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019602) - Data: 00  returns 0x01 (0001ms, 1226ms total)
T76A4 031:910 JLINK_ReadMemEx(0x02019603, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019603) - Data: 00  returns 0x01 (0001ms, 1227ms total)
T76A4 031:911 JLINK_ReadMemEx(0x02019604, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019604) - Data: 00  returns 0x01 (0000ms, 1227ms total)
T76A4 031:911 JLINK_ReadMemEx(0x02019605, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019605) - Data: 00  returns 0x01 (0002ms, 1229ms total)
T76A4 031:913 JLINK_ReadMemEx(0x02019606, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019606) - Data: 00  returns 0x01 (0001ms, 1230ms total)
T76A4 031:914 JLINK_ReadMemEx(0x02019607, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019607) - Data: 00  returns 0x01 (0000ms, 1230ms total)
T76A4 031:914 JLINK_ReadMemEx(0x02019608, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019608) - Data: 00  returns 0x01 (0001ms, 1231ms total)
T76A4 031:915 JLINK_ReadMemEx(0x02019609, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019609) - Data: 00  returns 0x01 (0000ms, 1231ms total)
T76A4 031:915 JLINK_ReadMemEx(0x0201960A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201960A) - Data: 00  returns 0x01 (0001ms, 1232ms total)
T76A4 031:916 JLINK_ReadMemEx(0x0201960B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201960B) - Data: 00  returns 0x01 (0001ms, 1233ms total)
T76A4 031:917 JLINK_ReadMemEx(0x0201960C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201960C) - Data: 00  returns 0x01 (0000ms, 1233ms total)
T76A4 031:917 JLINK_ReadMemEx(0x0201960D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201960D) - Data: 00  returns 0x01 (0001ms, 1234ms total)
T76A4 031:918 JLINK_ReadMemEx(0x0201960E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201960E) - Data: 00  returns 0x01 (0001ms, 1235ms total)
T76A4 031:919 JLINK_ReadMemEx(0x0201960F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201960F) - Data: 00  returns 0x01 (0000ms, 1235ms total)
T76A4 031:919 JLINK_ReadMemEx(0x02019610, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019610) - Data: 00  returns 0x01 (0001ms, 1236ms total)
T76A4 031:920 JLINK_ReadMemEx(0x02019611, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019611) - Data: 00  returns 0x01 (0000ms, 1236ms total)
T76A4 031:920 JLINK_ReadMemEx(0x02019612, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019612) - Data: 00  returns 0x01 (0001ms, 1237ms total)
T76A4 031:921 JLINK_ReadMemEx(0x02019613, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019613) - Data: 00  returns 0x01 (0001ms, 1238ms total)
T76A4 031:922 JLINK_ReadMemEx(0x02019614, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019614) - Data: 00  returns 0x01 (0000ms, 1238ms total)
T76A4 031:922 JLINK_ReadMemEx(0x02019615, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019615) - Data: 00  returns 0x01 (0001ms, 1239ms total)
T76A4 031:923 JLINK_ReadMemEx(0x02019616, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019616) - Data: 00  returns 0x01 (0001ms, 1240ms total)
T76A4 031:924 JLINK_ReadMemEx(0x02019617, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019617) - Data: 00  returns 0x01 (0000ms, 1240ms total)
T76A4 031:924 JLINK_ReadMemEx(0x02019618, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019618) - Data: 00  returns 0x01 (0001ms, 1241ms total)
T76A4 031:925 JLINK_ReadMemEx(0x02019619, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019619) - Data: 00  returns 0x01 (0000ms, 1241ms total)
T76A4 031:925 JLINK_ReadMemEx(0x0201961A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201961A) - Data: 00  returns 0x01 (0001ms, 1242ms total)
T76A4 031:926 JLINK_ReadMemEx(0x0201961B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201961B) - Data: 00  returns 0x01 (0001ms, 1243ms total)
T76A4 031:927 JLINK_ReadMemEx(0x0201961C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201961C) - Data: 00  returns 0x01 (0000ms, 1243ms total)
T76A4 031:927 JLINK_ReadMemEx(0x0201961D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201961D) - Data: 00  returns 0x01 (0001ms, 1244ms total)
T76A4 031:928 JLINK_ReadMemEx(0x0201961E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201961E) - Data: 00  returns 0x01 (0001ms, 1245ms total)
T76A4 031:929 JLINK_ReadMemEx(0x0201961F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201961F) - Data: 00  returns 0x01 (0000ms, 1245ms total)
T76A4 031:929 JLINK_ReadMemEx(0x02019620, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019620) - Data: 00  returns 0x01 (0001ms, 1246ms total)
T76A4 031:930 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0001ms, 1247ms total)
T76A4 031:931 JLINK_ReadMemEx(0x02019622, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019622) - Data: 00  returns 0x01 (0000ms, 1247ms total)
T76A4 031:931 JLINK_ReadMemEx(0x02019623, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019623) - Data: 00  returns 0x01 (0001ms, 1248ms total)
T76A4 031:932 JLINK_ReadMemEx(0x02019624, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019624) - Data: 00  returns 0x01 (0001ms, 1249ms total)
T76A4 031:933 JLINK_ReadMemEx(0x02019625, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019625) - Data: 00  returns 0x01 (0000ms, 1249ms total)
T76A4 031:933 JLINK_ReadMemEx(0x02019626, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019626) - Data: 00  returns 0x01 (0001ms, 1250ms total)
T76A4 031:934 JLINK_ReadMemEx(0x02019627, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019627) - Data: 00  returns 0x01 (0001ms, 1251ms total)
T76A4 031:935 JLINK_ReadMemEx(0x02019628, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019628) - Data: 00  returns 0x01 (0000ms, 1251ms total)
T76A4 031:935 JLINK_ReadMemEx(0x02019629, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019629) - Data: 00  returns 0x01 (0001ms, 1252ms total)
T76A4 031:936 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0000ms, 1252ms total)
T76A4 031:936 JLINK_ReadMemEx(0x0201962B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962B) - Data: 00  returns 0x01 (0001ms, 1253ms total)
T76A4 031:937 JLINK_ReadMemEx(0x0201962C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962C) - Data: 00  returns 0x01 (0001ms, 1254ms total)
T76A4 031:938 JLINK_ReadMemEx(0x0201962D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962D) - Data: 00  returns 0x01 (0000ms, 1254ms total)
T76A4 031:938 JLINK_ReadMemEx(0x0201962E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962E) - Data: 00  returns 0x01 (0001ms, 1255ms total)
T76A4 031:939 JLINK_ReadMemEx(0x0201962F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962F) - Data: 00  returns 0x01 (0001ms, 1256ms total)
T76A4 031:940 JLINK_ReadMemEx(0x02019630, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019630) - Data: 00  returns 0x01 (0000ms, 1256ms total)
T76A4 031:940 JLINK_ReadMemEx(0x02019631, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019631) - Data: 00  returns 0x01 (0001ms, 1257ms total)
T76A4 031:941 JLINK_ReadMemEx(0x02019632, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019632) - Data: 00  returns 0x01 (0001ms, 1258ms total)
T76A4 031:942 JLINK_ReadMemEx(0x02019633, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019633) - Data: 00  returns 0x01 (0000ms, 1258ms total)
T76A4 031:942 JLINK_ReadMemEx(0x02019634, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019634) - Data: 00  returns 0x01 (0001ms, 1259ms total)
T76A4 031:943 JLINK_ReadMemEx(0x02019635, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019635) - Data: 00  returns 0x01 (0000ms, 1259ms total)
T76A4 031:943 JLINK_ReadMemEx(0x02019636, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019636) - Data: 00  returns 0x01 (0001ms, 1260ms total)
T76A4 031:944 JLINK_ReadMemEx(0x02019637, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019637) - Data: 00  returns 0x01 (0001ms, 1261ms total)
T76A4 031:945 JLINK_ReadMemEx(0x02019638, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019638) - Data: 00  returns 0x01 (0000ms, 1261ms total)
T76A4 031:945 JLINK_ReadMemEx(0x02019639, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019639) - Data: 00  returns 0x01 (0001ms, 1262ms total)
T76A4 031:946 JLINK_ReadMemEx(0x0201963A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201963A) - Data: 00  returns 0x01 (0001ms, 1263ms total)
T76A4 031:947 JLINK_ReadMemEx(0x0201963B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201963B) - Data: 00  returns 0x01 (0000ms, 1263ms total)
T76A4 031:947 JLINK_ReadMemEx(0x0201963C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201963C) - Data: 00  returns 0x01 (0001ms, 1264ms total)
T76A4 031:948 JLINK_ReadMemEx(0x0201963D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201963D) - Data: 00  returns 0x01 (0001ms, 1265ms total)
T76A4 031:949 JLINK_ReadMemEx(0x0201963E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201963E) - Data: 00  returns 0x01 (0000ms, 1265ms total)
T76A4 031:949 JLINK_ReadMemEx(0x0201963F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201963F) - Data: 00  returns 0x01 (0001ms, 1266ms total)
T76A4 031:950 JLINK_ReadMemEx(0x02019640, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019640) - Data: 00  returns 0x01 (0001ms, 1267ms total)
T76A4 031:951 JLINK_ReadMemEx(0x02019641, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019641) - Data: 00  returns 0x01 (0000ms, 1267ms total)
T76A4 031:951 JLINK_ReadMemEx(0x02019642, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019642) - Data: 00  returns 0x01 (0001ms, 1268ms total)
T76A4 031:952 JLINK_ReadMemEx(0x02019643, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019643) - Data: 00  returns 0x01 (0001ms, 1269ms total)
T76A4 031:953 JLINK_ReadMemEx(0x02019644, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019644) - Data: 00  returns 0x01 (0000ms, 1269ms total)
T76A4 031:953 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 00  returns 0x01 (0001ms, 1270ms total)
T76A4 031:954 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 00  returns 0x01 (0001ms, 1271ms total)
T76A4 031:955 JLINK_ReadMemEx(0x02019647, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019647) - Data: 00  returns 0x01 (0000ms, 1271ms total)
T76A4 031:955 JLINK_ReadMemEx(0x02019648, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019648) - Data: 00  returns 0x01 (0001ms, 1272ms total)
T76A4 031:956 JLINK_ReadMemEx(0x02019649, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019649) - Data: 00  returns 0x01 (0001ms, 1273ms total)
T76A4 031:957 JLINK_ReadMemEx(0x0201964A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201964A) - Data: 00  returns 0x01 (0000ms, 1273ms total)
T76A4 031:957 JLINK_ReadMemEx(0x0201964B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201964B) - Data: 00  returns 0x01 (0001ms, 1274ms total)
T76A4 031:958 JLINK_ReadMemEx(0x0201964C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201964C) - Data: 00  returns 0x01 (0000ms, 1274ms total)
T76A4 031:958 JLINK_ReadMemEx(0x0201964D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201964D) - Data: 00  returns 0x01 (0001ms, 1275ms total)
T76A4 031:959 JLINK_ReadMemEx(0x0201964E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201964E) - Data: 00  returns 0x01 (0001ms, 1276ms total)
T76A4 031:960 JLINK_ReadMemEx(0x0201964F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201964F) - Data: 00  returns 0x01 (0000ms, 1276ms total)
T76A4 031:960 JLINK_ReadMemEx(0x02019650, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019650) - Data: 00  returns 0x01 (0001ms, 1277ms total)
T76A4 031:961 JLINK_ReadMemEx(0x02019651, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019651) - Data: 00  returns 0x01 (0001ms, 1278ms total)
T76A4 031:962 JLINK_ReadMemEx(0x02019652, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019652) - Data: 00  returns 0x01 (0000ms, 1278ms total)
T76A4 031:962 JLINK_ReadMemEx(0x02019653, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019653) - Data: 00  returns 0x01 (0001ms, 1279ms total)
T76A4 031:963 JLINK_ReadMemEx(0x02019654, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019654) - Data: 00  returns 0x01 (0001ms, 1280ms total)
T76A4 031:964 JLINK_ReadMemEx(0x02019655, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019655) - Data: 00  returns 0x01 (0000ms, 1280ms total)
T76A4 031:964 JLINK_ReadMemEx(0x02019656, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019656) - Data: 00  returns 0x01 (0001ms, 1281ms total)
T76A4 031:965 JLINK_ReadMemEx(0x02019657, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019657) - Data: 00  returns 0x01 (0000ms, 1281ms total)
T76A4 031:965 JLINK_ReadMemEx(0x02019658, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019658) - Data: 00  returns 0x01 (0001ms, 1282ms total)
T76A4 031:966 JLINK_ReadMemEx(0x02019659, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019659) - Data: 00  returns 0x01 (0001ms, 1283ms total)
T76A4 031:967 JLINK_ReadMemEx(0x0201965A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201965A) - Data: 00  returns 0x01 (0000ms, 1283ms total)
T76A4 031:967 JLINK_ReadMemEx(0x0201965B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201965B) - Data: 00  returns 0x01 (0001ms, 1284ms total)
T76A4 031:968 JLINK_ReadMemEx(0x0201965C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201965C) - Data: 00  returns 0x01 (0001ms, 1285ms total)
T76A4 031:969 JLINK_ReadMemEx(0x0201965D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201965D) - Data: 00  returns 0x01 (0000ms, 1285ms total)
T76A4 031:969 JLINK_ReadMemEx(0x0201965E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201965E) - Data: 00  returns 0x01 (0001ms, 1286ms total)
T76A4 031:970 JLINK_ReadMemEx(0x0201965F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201965F) - Data: 00  returns 0x01 (0001ms, 1287ms total)
T76A4 031:971 JLINK_ReadMemEx(0x02019660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019660) - Data: 00  returns 0x01 (0000ms, 1287ms total)
T76A4 031:971 JLINK_ReadMemEx(0x02019661, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019661) - Data: 00  returns 0x01 (0001ms, 1288ms total)
T76A4 031:972 JLINK_ReadMemEx(0x02019662, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019662) - Data: 00  returns 0x01 (0001ms, 1289ms total)
T76A4 031:973 JLINK_ReadMemEx(0x02019663, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019663) - Data: 00  returns 0x01 (0000ms, 1289ms total)
T76A4 031:973 JLINK_ReadMemEx(0x02019664, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019664) - Data: 00  returns 0x01 (0001ms, 1290ms total)
T76A4 031:974 JLINK_ReadMemEx(0x02019665, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019665) - Data: 00  returns 0x01 (0001ms, 1291ms total)
T76A4 031:975 JLINK_ReadMemEx(0x02019666, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019666) - Data: 00  returns 0x01 (0000ms, 1291ms total)
T76A4 031:975 JLINK_ReadMemEx(0x02019667, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019667) - Data: 00  returns 0x01 (0001ms, 1292ms total)
T76A4 031:976 JLINK_ReadMemEx(0x02019668, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019668) - Data: 00  returns 0x01 (0001ms, 1293ms total)
T76A4 031:977 JLINK_ReadMemEx(0x02019669, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019669) - Data: 00  returns 0x01 (0000ms, 1293ms total)
T76A4 031:977 JLINK_ReadMemEx(0x0201966A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201966A) - Data: 00  returns 0x01 (0001ms, 1294ms total)
T76A4 031:978 JLINK_ReadMemEx(0x0201966B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201966B) - Data: 00  returns 0x01 (0001ms, 1295ms total)
T76A4 031:979 JLINK_ReadMemEx(0x0201966C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201966C) - Data: 00  returns 0x01 (0000ms, 1295ms total)
T76A4 031:979 JLINK_ReadMemEx(0x0201966D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201966D) - Data: 00  returns 0x01 (0001ms, 1296ms total)
T76A4 031:980 JLINK_ReadMemEx(0x0201966E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201966E) - Data: 00  returns 0x01 (0001ms, 1297ms total)
T76A4 031:981 JLINK_ReadMemEx(0x0201966F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201966F) - Data: 00  returns 0x01 (0000ms, 1297ms total)
T76A4 031:981 JLINK_ReadMemEx(0x02019670, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019670) - Data: 00  returns 0x01 (0001ms, 1298ms total)
T76A4 031:982 JLINK_ReadMemEx(0x02019671, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019671) - Data: 00  returns 0x01 (0001ms, 1299ms total)
T76A4 031:983 JLINK_ReadMemEx(0x02019672, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019672) - Data: 00  returns 0x01 (0000ms, 1299ms total)
T76A4 031:983 JLINK_ReadMemEx(0x02019673, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019673) - Data: 00  returns 0x01 (0001ms, 1300ms total)
T76A4 031:984 JLINK_ReadMemEx(0x02019674, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019674) - Data: 00  returns 0x01 (0001ms, 1301ms total)
T76A4 031:985 JLINK_ReadMemEx(0x02019675, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019675) - Data: 00  returns 0x01 (0000ms, 1301ms total)
T76A4 031:985 JLINK_ReadMemEx(0x02019676, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019676) - Data: 00  returns 0x01 (0001ms, 1302ms total)
T76A4 031:986 JLINK_ReadMemEx(0x02019677, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019677) - Data: 00  returns 0x01 (0001ms, 1303ms total)
T76A4 031:987 JLINK_ReadMemEx(0x02019678, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019678) - Data: 00  returns 0x01 (0000ms, 1303ms total)
T76A4 031:987 JLINK_ReadMemEx(0x02019679, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019679) - Data: 00  returns 0x01 (0001ms, 1304ms total)
T76A4 031:988 JLINK_ReadMemEx(0x0201967A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201967A) - Data: 00  returns 0x01 (0000ms, 1304ms total)
T76A4 031:989 JLINK_ReadMemEx(0x0201967B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201967B) - Data: 00  returns 0x01 (0000ms, 1305ms total)
T76A4 031:989 JLINK_ReadMemEx(0x0201967C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201967C) - Data: 00  returns 0x01 (0001ms, 1306ms total)
T76A4 031:990 JLINK_ReadMemEx(0x0201967D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201967D) - Data: 00  returns 0x01 (0000ms, 1306ms total)
T76A4 031:990 JLINK_ReadMemEx(0x0201967E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201967E) - Data: 00  returns 0x01 (0001ms, 1307ms total)
T76A4 031:991 JLINK_ReadMemEx(0x0201967F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201967F) - Data: 00  returns 0x01 (0001ms, 1308ms total)
T76A4 031:992 JLINK_ReadMemEx(0x02019680, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019680) - Data: 00  returns 0x01 (0000ms, 1308ms total)
T76A4 031:992 JLINK_ReadMemEx(0x02019681, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019681) - Data: 00  returns 0x01 (0001ms, 1309ms total)
T76A4 031:993 JLINK_ReadMemEx(0x02019682, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019682) - Data: 00  returns 0x01 (0001ms, 1310ms total)
T76A4 031:994 JLINK_ReadMemEx(0x02019683, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019683) - Data: 00  returns 0x01 (0001ms, 1311ms total)
T76A4 031:995 JLINK_ReadMemEx(0x02019684, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019684) - Data: 00  returns 0x01 (0000ms, 1311ms total)
T76A4 031:995 JLINK_ReadMemEx(0x02019685, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019685) - Data: 00  returns 0x01 (0001ms, 1312ms total)
T76A4 031:996 JLINK_ReadMemEx(0x02019686, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019686) - Data: 00  returns 0x01 (0000ms, 1312ms total)
T76A4 031:996 JLINK_ReadMemEx(0x02019687, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019687) - Data: 00  returns 0x01 (0001ms, 1313ms total)
T76A4 031:997 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0001ms, 1314ms total)
T76A4 031:998 JLINK_ReadMemEx(0x02019689, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019689) - Data: 00  returns 0x01 (0000ms, 1314ms total)
T76A4 031:998 JLINK_ReadMemEx(0x0201968A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201968A) - Data: 00  returns 0x01 (0001ms, 1315ms total)
T76A4 031:999 JLINK_ReadMemEx(0x0201968B, 0x0010 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(16 bytes @ 0x0201968B) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x10 (0001ms, 1316ms total)
T76A4 032:000 JLINK_ReadMemEx(0x0201969B, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x0201969B) - Data: 00 00 00 00 00 00 00 00 00 00  returns 0x0A (0002ms, 1318ms total)
T76A4 032:002 JLINK_ReadMemEx(0x020196A5, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196A5) - Data: 00 00  returns 0x02 (0000ms, 1318ms total)
T76A4 032:002 JLINK_ReadMemEx(0x020196A7, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196A7) - Data: 0A 00  returns 0x02 (0001ms, 1319ms total)
T76A4 032:003 JLINK_ReadMemEx(0x020196A9, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196A9) - Data: 00 00  returns 0x02 (0001ms, 1320ms total)
T76A4 032:004 JLINK_ReadMemEx(0x020196AB, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196AB) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1322ms total)
T76A4 032:006 JLINK_ReadMemEx(0x02019AAB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019AAB) - Data: A6  returns 0x01 (0000ms, 1322ms total)
T76A4 032:006 JLINK_ReadMemEx(0x02019AAC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019AAC) - Data: C6 AD 98 40  returns 0x04 (0001ms, 1323ms total)
T3F3C 032:007 JLINK_IsHalted()  returns FALSE (0001ms, 1324ms total)
T76A4 032:063 JLINK_ReadMemEx(0x0201958C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201958C) - Data: 00 01 02 03 04 05 06 07 08 09 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1324ms total)
T76A4 032:064 JLINK_ReadMemEx(0x0201958C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201958C) - Data: 00  returns 0x01 (0001ms, 1325ms total)
T76A4 032:065 JLINK_ReadMemEx(0x0201958D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201958D) - Data: 01  returns 0x01 (0000ms, 1325ms total)
T76A4 032:065 JLINK_ReadMemEx(0x0201958E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201958E) - Data: 02  returns 0x01 (0001ms, 1326ms total)
T76A4 032:066 JLINK_ReadMemEx(0x0201958F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201958F) - Data: 03  returns 0x01 (0001ms, 1327ms total)
T76A4 032:067 JLINK_ReadMemEx(0x02019590, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019590) - Data: 04  returns 0x01 (0000ms, 1327ms total)
T76A4 032:067 JLINK_ReadMemEx(0x02019591, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019591) - Data: 05  returns 0x01 (0001ms, 1328ms total)
T76A4 032:068 JLINK_ReadMemEx(0x02019592, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019592) - Data: 06  returns 0x01 (0001ms, 1329ms total)
T76A4 032:069 JLINK_ReadMemEx(0x02019593, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019593) - Data: 07  returns 0x01 (0000ms, 1329ms total)
T76A4 032:069 JLINK_ReadMemEx(0x02019594, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019594) - Data: 08  returns 0x01 (0001ms, 1330ms total)
T76A4 032:070 JLINK_ReadMemEx(0x02019595, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019595) - Data: 09  returns 0x01 (0001ms, 1331ms total)
T76A4 032:071 JLINK_ReadMemEx(0x02019596, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019596) - Data: 00  returns 0x01 (0000ms, 1331ms total)
T76A4 032:071 JLINK_ReadMemEx(0x02019597, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019597) - Data: 00  returns 0x01 (0001ms, 1332ms total)
T76A4 032:072 JLINK_ReadMemEx(0x02019598, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019598) - Data: 00  returns 0x01 (0001ms, 1333ms total)
T76A4 032:073 JLINK_ReadMemEx(0x02019599, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019599) - Data: 00  returns 0x01 (0000ms, 1333ms total)
T76A4 032:073 JLINK_ReadMemEx(0x0201959A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959A) - Data: 00  returns 0x01 (0001ms, 1334ms total)
T76A4 032:074 JLINK_ReadMemEx(0x0201959B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959B) - Data: 00  returns 0x01 (0001ms, 1335ms total)
T76A4 032:075 JLINK_ReadMemEx(0x0201959C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959C) - Data: 00  returns 0x01 (0000ms, 1335ms total)
T76A4 032:075 JLINK_ReadMemEx(0x0201959D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959D) - Data: 00  returns 0x01 (0001ms, 1336ms total)
T76A4 032:076 JLINK_ReadMemEx(0x0201959E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959E) - Data: 00  returns 0x01 (0000ms, 1336ms total)
T76A4 032:076 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 00  returns 0x01 (0001ms, 1337ms total)
T76A4 032:077 JLINK_ReadMemEx(0x020195A0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A0) - Data: 00  returns 0x01 (0001ms, 1338ms total)
T76A4 032:078 JLINK_ReadMemEx(0x020195A1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A1) - Data: 00  returns 0x01 (0000ms, 1338ms total)
T76A4 032:079 JLINK_ReadMemEx(0x020195A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A2) - Data: 00  returns 0x01 (0000ms, 1338ms total)
T76A4 032:079 JLINK_ReadMemEx(0x020195A3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A3) - Data: 00  returns 0x01 (0001ms, 1339ms total)
T76A4 032:080 JLINK_ReadMemEx(0x020195A4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A4) - Data: 00  returns 0x01 (0001ms, 1340ms total)
T76A4 032:081 JLINK_ReadMemEx(0x020195A5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A5) - Data: 00  returns 0x01 (0000ms, 1340ms total)
T76A4 032:081 JLINK_ReadMemEx(0x020195A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A6) - Data: 00  returns 0x01 (0001ms, 1341ms total)
T76A4 032:082 JLINK_ReadMemEx(0x020195A7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A7) - Data: 00  returns 0x01 (0000ms, 1341ms total)
T76A4 032:082 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 00  returns 0x01 (0001ms, 1342ms total)
T76A4 032:083 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 00  returns 0x01 (0001ms, 1343ms total)
T76A4 032:084 JLINK_ReadMemEx(0x020195AA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195AA) - Data: 00  returns 0x01 (0000ms, 1343ms total)
T76A4 032:084 JLINK_ReadMemEx(0x020195AB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195AB) - Data: 00  returns 0x01 (0001ms, 1344ms total)
T76A4 032:085 JLINK_ReadMemEx(0x020195AC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195AC) - Data: 00  returns 0x01 (0000ms, 1344ms total)
T76A4 032:086 JLINK_ReadMemEx(0x020195AD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195AD) - Data: 00  returns 0x01 (0000ms, 1345ms total)
T76A4 032:086 JLINK_ReadMemEx(0x020195AE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195AE) - Data: 00  returns 0x01 (0001ms, 1346ms total)
T76A4 032:087 JLINK_ReadMemEx(0x020195AF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195AF) - Data: 00  returns 0x01 (0000ms, 1346ms total)
T76A4 032:087 JLINK_ReadMemEx(0x020195B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B0) - Data: 00  returns 0x01 (0001ms, 1347ms total)
T76A4 032:088 JLINK_ReadMemEx(0x020195B1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B1) - Data: 00  returns 0x01 (0001ms, 1348ms total)
T76A4 032:089 JLINK_ReadMemEx(0x020195B2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B2) - Data: 00  returns 0x01 (0000ms, 1348ms total)
T76A4 032:089 JLINK_ReadMemEx(0x020195B3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B3) - Data: 00  returns 0x01 (0001ms, 1349ms total)
T76A4 032:090 JLINK_ReadMemEx(0x020195B4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B4) - Data: 00  returns 0x01 (0001ms, 1350ms total)
T76A4 032:091 JLINK_ReadMemEx(0x020195B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B5) - Data: 00  returns 0x01 (0000ms, 1350ms total)
T76A4 032:091 JLINK_ReadMemEx(0x020195B6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B6) - Data: 00  returns 0x01 (0001ms, 1351ms total)
T76A4 032:092 JLINK_ReadMemEx(0x020195B7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B7) - Data: 00  returns 0x01 (0001ms, 1352ms total)
T76A4 032:093 JLINK_ReadMemEx(0x020195B8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B8) - Data: 00  returns 0x01 (0000ms, 1352ms total)
T76A4 032:093 JLINK_ReadMemEx(0x020195B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B9) - Data: 00  returns 0x01 (0001ms, 1353ms total)
T76A4 032:094 JLINK_ReadMemEx(0x020195BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195BA) - Data: 00  returns 0x01 (0001ms, 1354ms total)
T76A4 032:095 JLINK_ReadMemEx(0x020195BB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195BB) - Data: 00  returns 0x01 (0000ms, 1354ms total)
T76A4 032:095 JLINK_ReadMemEx(0x020195BC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195BC) - Data: 00  returns 0x01 (0001ms, 1355ms total)
T76A4 032:096 JLINK_ReadMemEx(0x020195BD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195BD) - Data: 00  returns 0x01 (0000ms, 1355ms total)
T76A4 032:096 JLINK_ReadMemEx(0x020195BE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195BE) - Data: 00  returns 0x01 (0001ms, 1356ms total)
T76A4 032:097 JLINK_ReadMemEx(0x020195BF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195BF) - Data: 00  returns 0x01 (0001ms, 1357ms total)
T76A4 032:098 JLINK_ReadMemEx(0x020195C0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195C0) - Data: 00  returns 0x01 (0000ms, 1357ms total)
T76A4 032:098 JLINK_ReadMemEx(0x020195C1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195C1) - Data: 00  returns 0x01 (0001ms, 1358ms total)
T76A4 032:099 JLINK_ReadMemEx(0x020195C2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195C2) - Data: 00  returns 0x01 (0001ms, 1359ms total)
T76A4 032:100 JLINK_ReadMemEx(0x020195C3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195C3) - Data: 00  returns 0x01 (0000ms, 1359ms total)
T76A4 032:100 JLINK_ReadMemEx(0x020195C4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195C4) - Data: 00  returns 0x01 (0001ms, 1360ms total)
T76A4 032:101 JLINK_ReadMemEx(0x020195C5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195C5) - Data: 00  returns 0x01 (0001ms, 1361ms total)
T76A4 032:102 JLINK_ReadMemEx(0x020195C6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195C6) - Data: 00  returns 0x01 (0000ms, 1361ms total)
T76A4 032:102 JLINK_ReadMemEx(0x020195C7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195C7) - Data: 00  returns 0x01 (0001ms, 1362ms total)
T76A4 032:103 JLINK_ReadMemEx(0x020195C8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195C8) - Data: 00  returns 0x01 (0000ms, 1362ms total)
T76A4 032:103 JLINK_ReadMemEx(0x020195C9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195C9) - Data: 00  returns 0x01 (0001ms, 1363ms total)
T76A4 032:104 JLINK_ReadMemEx(0x020195CA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195CA) - Data: 00  returns 0x01 (0001ms, 1364ms total)
T76A4 032:105 JLINK_ReadMemEx(0x020195CB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195CB) - Data: 00  returns 0x01 (0000ms, 1364ms total)
T76A4 032:105 JLINK_ReadMemEx(0x020195CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195CC) - Data: 00  returns 0x01 (0001ms, 1365ms total)
T76A4 032:106 JLINK_ReadMemEx(0x020195CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195CD) - Data: 00  returns 0x01 (0001ms, 1366ms total)
T76A4 032:107 JLINK_ReadMemEx(0x020195CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195CE) - Data: 00  returns 0x01 (0000ms, 1366ms total)
T76A4 032:107 JLINK_ReadMemEx(0x020195CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195CF) - Data: 00  returns 0x01 (0001ms, 1367ms total)
T76A4 032:108 JLINK_ReadMemEx(0x020195D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195D0) - Data: 00  returns 0x01 (0001ms, 1368ms total)
T76A4 032:109 JLINK_ReadMemEx(0x020195D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195D1) - Data: 00  returns 0x01 (0000ms, 1368ms total)
T76A4 032:109 JLINK_ReadMemEx(0x020195D2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195D2) - Data: 00  returns 0x01 (0001ms, 1369ms total)
T76A4 032:110 JLINK_ReadMemEx(0x020195D3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195D3) - Data: 00  returns 0x01 (0000ms, 1369ms total)
T76A4 032:110 JLINK_ReadMemEx(0x020195D4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195D4) - Data: 00  returns 0x01 (0001ms, 1370ms total)
T76A4 032:111 JLINK_ReadMemEx(0x020195D5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195D5) - Data: 00  returns 0x01 (0001ms, 1371ms total)
T76A4 032:112 JLINK_ReadMemEx(0x020195D6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195D6) - Data: 00  returns 0x01 (0000ms, 1371ms total)
T76A4 032:112 JLINK_ReadMemEx(0x020195D7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195D7) - Data: 00  returns 0x01 (0001ms, 1372ms total)
T76A4 032:113 JLINK_ReadMemEx(0x020195D8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195D8) - Data: 00  returns 0x01 (0001ms, 1373ms total)
T76A4 032:114 JLINK_ReadMemEx(0x020195D9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195D9) - Data: 00  returns 0x01 (0000ms, 1373ms total)
T76A4 032:114 JLINK_ReadMemEx(0x020195DA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195DA) - Data: 00  returns 0x01 (0001ms, 1374ms total)
T76A4 032:115 JLINK_ReadMemEx(0x020195DB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195DB) - Data: 00  returns 0x01 (0000ms, 1374ms total)
T76A4 032:115 JLINK_ReadMemEx(0x020195DC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195DC) - Data: 00  returns 0x01 (0001ms, 1375ms total)
T76A4 032:116 JLINK_ReadMemEx(0x020195DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195DD) - Data: 00  returns 0x01 (0001ms, 1376ms total)
T76A4 032:117 JLINK_ReadMemEx(0x020195DE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195DE) - Data: 00  returns 0x01 (0000ms, 1376ms total)
T76A4 032:117 JLINK_ReadMemEx(0x020195DF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195DF) - Data: 00  returns 0x01 (0001ms, 1377ms total)
T76A4 032:118 JLINK_ReadMemEx(0x020195E0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195E0) - Data: 00  returns 0x01 (0001ms, 1378ms total)
T76A4 032:119 JLINK_ReadMemEx(0x020195E1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195E1) - Data: 00  returns 0x01 (0001ms, 1379ms total)
T76A4 032:120 JLINK_ReadMemEx(0x020195E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195E2) - Data: 00  returns 0x01 (0000ms, 1379ms total)
T76A4 032:120 JLINK_ReadMemEx(0x020195E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195E3) - Data: 00  returns 0x01 (0001ms, 1380ms total)
T76A4 032:121 JLINK_ReadMemEx(0x020195E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195E4) - Data: 00  returns 0x01 (0000ms, 1380ms total)
T76A4 032:121 JLINK_ReadMemEx(0x020195E5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195E5) - Data: 00  returns 0x01 (0001ms, 1381ms total)
T76A4 032:122 JLINK_ReadMemEx(0x020195E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195E6) - Data: 00  returns 0x01 (0001ms, 1382ms total)
T76A4 032:123 JLINK_ReadMemEx(0x020195E7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195E7) - Data: 00  returns 0x01 (0000ms, 1382ms total)
T76A4 032:123 JLINK_ReadMemEx(0x020195E8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195E8) - Data: 00  returns 0x01 (0001ms, 1383ms total)
T76A4 032:124 JLINK_ReadMemEx(0x020195E9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195E9) - Data: 00  returns 0x01 (0001ms, 1384ms total)
T76A4 032:125 JLINK_ReadMemEx(0x020195EA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195EA) - Data: 00  returns 0x01 (0000ms, 1384ms total)
T76A4 032:125 JLINK_ReadMemEx(0x020195EB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195EB) - Data: 00  returns 0x01 (0001ms, 1385ms total)
T76A4 032:126 JLINK_ReadMemEx(0x020195EC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195EC) - Data: 00  returns 0x01 (0000ms, 1385ms total)
T76A4 032:126 JLINK_ReadMemEx(0x020195ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195ED) - Data: 00  returns 0x01 (0001ms, 1386ms total)
T76A4 032:127 JLINK_ReadMemEx(0x020195EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195EE) - Data: 00  returns 0x01 (0001ms, 1387ms total)
T76A4 032:128 JLINK_ReadMemEx(0x020195EF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195EF) - Data: 00  returns 0x01 (0000ms, 1387ms total)
T76A4 032:128 JLINK_ReadMemEx(0x020195F0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195F0) - Data: 00  returns 0x01 (0001ms, 1388ms total)
T76A4 032:129 JLINK_ReadMemEx(0x020195F1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195F1) - Data: 00  returns 0x01 (0001ms, 1389ms total)
T76A4 032:130 JLINK_ReadMemEx(0x020195F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195F2) - Data: 00  returns 0x01 (0001ms, 1390ms total)
T76A4 032:131 JLINK_ReadMemEx(0x020195F3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195F3) - Data: 00  returns 0x01 (0000ms, 1390ms total)
T76A4 032:131 JLINK_ReadMemEx(0x020195F4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195F4) - Data: 00  returns 0x01 (0001ms, 1391ms total)
T76A4 032:132 JLINK_ReadMemEx(0x020195F5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195F5) - Data: 00  returns 0x01 (0000ms, 1391ms total)
T76A4 032:133 JLINK_ReadMemEx(0x020195F6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195F6) - Data: 00  returns 0x01 (0000ms, 1391ms total)
T76A4 032:133 JLINK_ReadMemEx(0x020195F7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195F7) - Data: 00  returns 0x01 (0001ms, 1392ms total)
T76A4 032:134 JLINK_ReadMemEx(0x020195F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195F8) - Data: 00  returns 0x01 (0001ms, 1393ms total)
T76A4 032:135 JLINK_ReadMemEx(0x020195F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195F9) - Data: 00  returns 0x01 (0000ms, 1393ms total)
T76A4 032:135 JLINK_ReadMemEx(0x020195FA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195FA) - Data: 00  returns 0x01 (0001ms, 1394ms total)
T76A4 032:136 JLINK_ReadMemEx(0x020195FB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195FB) - Data: 00  returns 0x01 (0001ms, 1395ms total)
T76A4 032:137 JLINK_ReadMemEx(0x020195FC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195FC) - Data: 00  returns 0x01 (0000ms, 1395ms total)
T76A4 032:137 JLINK_ReadMemEx(0x020195FD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195FD) - Data: 00  returns 0x01 (0001ms, 1396ms total)
T76A4 032:138 JLINK_ReadMemEx(0x020195FE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195FE) - Data: 00  returns 0x01 (0000ms, 1396ms total)
T76A4 032:138 JLINK_ReadMemEx(0x020195FF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195FF) - Data: 00  returns 0x01 (0001ms, 1397ms total)
T76A4 032:139 JLINK_ReadMemEx(0x02019600, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019600) - Data: 00  returns 0x01 (0001ms, 1398ms total)
T76A4 032:140 JLINK_ReadMemEx(0x02019601, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019601) - Data: 00  returns 0x01 (0000ms, 1398ms total)
T76A4 032:140 JLINK_ReadMemEx(0x02019602, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019602) - Data: 00  returns 0x01 (0001ms, 1399ms total)
T76A4 032:141 JLINK_ReadMemEx(0x02019603, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019603) - Data: 00  returns 0x01 (0001ms, 1400ms total)
T76A4 032:142 JLINK_ReadMemEx(0x02019604, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019604) - Data: 00  returns 0x01 (0000ms, 1400ms total)
T76A4 032:142 JLINK_ReadMemEx(0x02019605, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019605) - Data: 00  returns 0x01 (0001ms, 1401ms total)
T76A4 032:143 JLINK_ReadMemEx(0x02019606, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019606) - Data: 00  returns 0x01 (0001ms, 1402ms total)
T76A4 032:144 JLINK_ReadMemEx(0x02019607, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019607) - Data: 00  returns 0x01 (0000ms, 1402ms total)
T76A4 032:144 JLINK_ReadMemEx(0x02019608, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019608) - Data: 00  returns 0x01 (0001ms, 1403ms total)
T76A4 032:145 JLINK_ReadMemEx(0x02019609, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019609) - Data: 00  returns 0x01 (0001ms, 1404ms total)
T76A4 032:146 JLINK_ReadMemEx(0x0201960A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201960A) - Data: 00  returns 0x01 (0000ms, 1404ms total)
T76A4 032:146 JLINK_ReadMemEx(0x0201960B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201960B) - Data: 00  returns 0x01 (0001ms, 1405ms total)
T76A4 032:147 JLINK_ReadMemEx(0x0201960C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201960C) - Data: 00  returns 0x01 (0001ms, 1406ms total)
T76A4 032:148 JLINK_ReadMemEx(0x0201960D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201960D) - Data: 00  returns 0x01 (0000ms, 1406ms total)
T76A4 032:148 JLINK_ReadMemEx(0x0201960E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201960E) - Data: 00  returns 0x01 (0001ms, 1407ms total)
T76A4 032:149 JLINK_ReadMemEx(0x0201960F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201960F) - Data: 00  returns 0x01 (0001ms, 1408ms total)
T76A4 032:150 JLINK_ReadMemEx(0x02019610, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019610) - Data: 00  returns 0x01 (0000ms, 1408ms total)
T76A4 032:150 JLINK_ReadMemEx(0x02019611, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019611) - Data: 00  returns 0x01 (0001ms, 1409ms total)
T76A4 032:151 JLINK_ReadMemEx(0x02019612, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019612) - Data: 00  returns 0x01 (0001ms, 1410ms total)
T76A4 032:152 JLINK_ReadMemEx(0x02019613, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019613) - Data: 00  returns 0x01 (0000ms, 1410ms total)
T76A4 032:152 JLINK_ReadMemEx(0x02019614, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019614) - Data: 00  returns 0x01 (0001ms, 1411ms total)
T76A4 032:153 JLINK_ReadMemEx(0x02019615, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019615) - Data: 00  returns 0x01 (0001ms, 1412ms total)
T76A4 032:154 JLINK_ReadMemEx(0x02019616, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019616) - Data: 00  returns 0x01 (0000ms, 1412ms total)
T76A4 032:154 JLINK_ReadMemEx(0x02019617, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019617) - Data: 00  returns 0x01 (0001ms, 1413ms total)
T76A4 032:155 JLINK_ReadMemEx(0x02019618, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019618) - Data: 00  returns 0x01 (0000ms, 1413ms total)
T76A4 032:155 JLINK_ReadMemEx(0x02019619, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019619) - Data: 00  returns 0x01 (0001ms, 1414ms total)
T76A4 032:156 JLINK_ReadMemEx(0x0201961A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201961A) - Data: 00  returns 0x01 (0001ms, 1415ms total)
T76A4 032:157 JLINK_ReadMemEx(0x0201961B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201961B) - Data: 00  returns 0x01 (0000ms, 1415ms total)
T76A4 032:157 JLINK_ReadMemEx(0x0201961C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201961C) - Data: 00  returns 0x01 (0001ms, 1416ms total)
T76A4 032:158 JLINK_ReadMemEx(0x0201961D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201961D) - Data: 00  returns 0x01 (0001ms, 1417ms total)
T76A4 032:159 JLINK_ReadMemEx(0x0201961E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201961E) - Data: 00  returns 0x01 (0000ms, 1417ms total)
T76A4 032:159 JLINK_ReadMemEx(0x0201961F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201961F) - Data: 00  returns 0x01 (0001ms, 1418ms total)
T76A4 032:160 JLINK_ReadMemEx(0x02019620, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019620) - Data: 00  returns 0x01 (0001ms, 1419ms total)
T76A4 032:161 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0000ms, 1419ms total)
T76A4 032:161 JLINK_ReadMemEx(0x02019622, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019622) - Data: 00  returns 0x01 (0001ms, 1420ms total)
T76A4 032:162 JLINK_ReadMemEx(0x02019623, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019623) - Data: 00  returns 0x01 (0001ms, 1421ms total)
T76A4 032:163 JLINK_ReadMemEx(0x02019624, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019624) - Data: 00  returns 0x01 (0000ms, 1421ms total)
T76A4 032:163 JLINK_ReadMemEx(0x02019625, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019625) - Data: 00  returns 0x01 (0001ms, 1422ms total)
T76A4 032:164 JLINK_ReadMemEx(0x02019626, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019626) - Data: 00  returns 0x01 (0001ms, 1423ms total)
T76A4 032:165 JLINK_ReadMemEx(0x02019627, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019627) - Data: 00  returns 0x01 (0000ms, 1423ms total)
T76A4 032:165 JLINK_ReadMemEx(0x02019628, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019628) - Data: 00  returns 0x01 (0001ms, 1424ms total)
T76A4 032:166 JLINK_ReadMemEx(0x02019629, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019629) - Data: 00  returns 0x01 (0001ms, 1425ms total)
T76A4 032:167 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0000ms, 1425ms total)
T76A4 032:167 JLINK_ReadMemEx(0x0201962B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962B) - Data: 00  returns 0x01 (0001ms, 1426ms total)
T76A4 032:168 JLINK_ReadMemEx(0x0201962C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962C) - Data: 00  returns 0x01 (0001ms, 1427ms total)
T76A4 032:169 JLINK_ReadMemEx(0x0201962D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962D) - Data: 00  returns 0x01 (0000ms, 1427ms total)
T76A4 032:169 JLINK_ReadMemEx(0x0201962E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962E) - Data: 00  returns 0x01 (0001ms, 1428ms total)
T76A4 032:170 JLINK_ReadMemEx(0x0201962F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962F) - Data: 00  returns 0x01 (0001ms, 1429ms total)
T76A4 032:171 JLINK_ReadMemEx(0x02019630, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019630) - Data: 00  returns 0x01 (0000ms, 1429ms total)
T76A4 032:171 JLINK_ReadMemEx(0x02019631, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019631) - Data: 00  returns 0x01 (0001ms, 1430ms total)
T76A4 032:172 JLINK_ReadMemEx(0x02019632, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019632) - Data: 00  returns 0x01 (0001ms, 1431ms total)
T76A4 032:173 JLINK_ReadMemEx(0x02019633, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019633) - Data: 00  returns 0x01 (0000ms, 1431ms total)
T76A4 032:173 JLINK_ReadMemEx(0x02019634, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019634) - Data: 00  returns 0x01 (0001ms, 1432ms total)
T76A4 032:174 JLINK_ReadMemEx(0x02019635, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019635) - Data: 00  returns 0x01 (0000ms, 1432ms total)
T76A4 032:174 JLINK_ReadMemEx(0x02019636, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019636) - Data: 00  returns 0x01 (0001ms, 1433ms total)
T76A4 032:175 JLINK_ReadMemEx(0x02019637, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019637) - Data: 00  returns 0x01 (0001ms, 1434ms total)
T76A4 032:176 JLINK_ReadMemEx(0x02019638, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019638) - Data: 00  returns 0x01 (0000ms, 1434ms total)
T76A4 032:176 JLINK_ReadMemEx(0x02019639, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019639) - Data: 00  returns 0x01 (0001ms, 1435ms total)
T76A4 032:177 JLINK_ReadMemEx(0x0201963A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201963A) - Data: 00  returns 0x01 (0000ms, 1435ms total)
T76A4 032:178 JLINK_ReadMemEx(0x0201963B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201963B) - Data: 00  returns 0x01 (0000ms, 1435ms total)
T76A4 032:178 JLINK_ReadMemEx(0x0201963C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201963C) - Data: 00  returns 0x01 (0001ms, 1436ms total)
T76A4 032:179 JLINK_ReadMemEx(0x0201963D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201963D) - Data: 00  returns 0x01 (0000ms, 1436ms total)
T76A4 032:179 JLINK_ReadMemEx(0x0201963E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201963E) - Data: 00  returns 0x01 (0001ms, 1437ms total)
T76A4 032:180 JLINK_ReadMemEx(0x0201963F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201963F) - Data: 00  returns 0x01 (0001ms, 1438ms total)
T76A4 032:181 JLINK_ReadMemEx(0x02019640, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019640) - Data: 00  returns 0x01 (0001ms, 1439ms total)
T76A4 032:182 JLINK_ReadMemEx(0x02019641, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019641) - Data: 00  returns 0x01 (0000ms, 1439ms total)
T76A4 032:182 JLINK_ReadMemEx(0x02019642, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019642) - Data: 00  returns 0x01 (0001ms, 1440ms total)
T76A4 032:183 JLINK_ReadMemEx(0x02019643, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019643) - Data: 00  returns 0x01 (0000ms, 1440ms total)
T76A4 032:183 JLINK_ReadMemEx(0x02019644, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019644) - Data: 00  returns 0x01 (0001ms, 1441ms total)
T76A4 032:184 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 00  returns 0x01 (0001ms, 1442ms total)
T76A4 032:185 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 00  returns 0x01 (0000ms, 1442ms total)
T76A4 032:185 JLINK_ReadMemEx(0x02019647, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019647) - Data: 00  returns 0x01 (0001ms, 1443ms total)
T76A4 032:186 JLINK_ReadMemEx(0x02019648, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019648) - Data: 00  returns 0x01 (0002ms, 1445ms total)
T76A4 032:188 JLINK_ReadMemEx(0x02019649, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019649) - Data: 00  returns 0x01 (0000ms, 1445ms total)
T76A4 032:188 JLINK_ReadMemEx(0x0201964A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201964A) - Data: 00  returns 0x01 (0001ms, 1446ms total)
T76A4 032:189 JLINK_ReadMemEx(0x0201964B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201964B) - Data: 00  returns 0x01 (0001ms, 1447ms total)
T76A4 032:190 JLINK_ReadMemEx(0x0201964C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201964C) - Data: 00  returns 0x01 (0000ms, 1447ms total)
T76A4 032:190 JLINK_ReadMemEx(0x0201964D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201964D) - Data: 00  returns 0x01 (0001ms, 1448ms total)
T76A4 032:191 JLINK_ReadMemEx(0x0201964E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201964E) - Data: 00  returns 0x01 (0001ms, 1449ms total)
T76A4 032:192 JLINK_ReadMemEx(0x0201964F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201964F) - Data: 00  returns 0x01 (0000ms, 1449ms total)
T76A4 032:192 JLINK_ReadMemEx(0x02019650, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019650) - Data: 00  returns 0x01 (0001ms, 1450ms total)
T76A4 032:193 JLINK_ReadMemEx(0x02019651, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019651) - Data: 00  returns 0x01 (0001ms, 1451ms total)
T76A4 032:194 JLINK_ReadMemEx(0x02019652, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019652) - Data: 00  returns 0x01 (0000ms, 1451ms total)
T76A4 032:194 JLINK_ReadMemEx(0x02019653, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019653) - Data: 00  returns 0x01 (0001ms, 1452ms total)
T76A4 032:195 JLINK_ReadMemEx(0x02019654, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019654) - Data: 00  returns 0x01 (0001ms, 1453ms total)
T76A4 032:196 JLINK_ReadMemEx(0x02019655, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019655) - Data: 00  returns 0x01 (0000ms, 1453ms total)
T76A4 032:196 JLINK_ReadMemEx(0x02019656, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019656) - Data: 00  returns 0x01 (0001ms, 1454ms total)
T76A4 032:197 JLINK_ReadMemEx(0x02019657, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019657) - Data: 00  returns 0x01 (0001ms, 1455ms total)
T76A4 032:198 JLINK_ReadMemEx(0x02019658, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019658) - Data: 00  returns 0x01 (0000ms, 1455ms total)
T76A4 032:198 JLINK_ReadMemEx(0x02019659, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019659) - Data: 00  returns 0x01 (0001ms, 1456ms total)
T76A4 032:199 JLINK_ReadMemEx(0x0201965A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201965A) - Data: 00  returns 0x01 (0000ms, 1456ms total)
T76A4 032:199 JLINK_ReadMemEx(0x0201965B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201965B) - Data: 00  returns 0x01 (0001ms, 1457ms total)
T76A4 032:200 JLINK_ReadMemEx(0x0201965C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201965C) - Data: 00  returns 0x01 (0001ms, 1458ms total)
T76A4 032:201 JLINK_ReadMemEx(0x0201965D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201965D) - Data: 00  returns 0x01 (0000ms, 1458ms total)
T76A4 032:201 JLINK_ReadMemEx(0x0201965E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201965E) - Data: 00  returns 0x01 (0001ms, 1459ms total)
T76A4 032:202 JLINK_ReadMemEx(0x0201965F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201965F) - Data: 00  returns 0x01 (0001ms, 1460ms total)
T76A4 032:203 JLINK_ReadMemEx(0x02019660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019660) - Data: 00  returns 0x01 (0000ms, 1460ms total)
T76A4 032:203 JLINK_ReadMemEx(0x02019661, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019661) - Data: 00  returns 0x01 (0001ms, 1461ms total)
T76A4 032:204 JLINK_ReadMemEx(0x02019662, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019662) - Data: 00  returns 0x01 (0001ms, 1462ms total)
T76A4 032:205 JLINK_ReadMemEx(0x02019663, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019663) - Data: 00  returns 0x01 (0001ms, 1463ms total)
T76A4 032:206 JLINK_ReadMemEx(0x02019664, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019664) - Data: 00  returns 0x01 (0000ms, 1463ms total)
T76A4 032:206 JLINK_ReadMemEx(0x02019665, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019665) - Data: 00  returns 0x01 (0001ms, 1464ms total)
T76A4 032:207 JLINK_ReadMemEx(0x02019666, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019666) - Data: 00  returns 0x01 (0001ms, 1465ms total)
T76A4 032:208 JLINK_ReadMemEx(0x02019667, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019667) - Data: 00  returns 0x01 (0000ms, 1465ms total)
T76A4 032:208 JLINK_ReadMemEx(0x02019668, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019668) - Data: 00  returns 0x01 (0001ms, 1466ms total)
T76A4 032:209 JLINK_ReadMemEx(0x02019669, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019669) - Data: 00  returns 0x01 (0000ms, 1466ms total)
T76A4 032:209 JLINK_ReadMemEx(0x0201966A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201966A) - Data: 00  returns 0x01 (0001ms, 1467ms total)
T76A4 032:210 JLINK_ReadMemEx(0x0201966B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201966B) - Data: 00  returns 0x01 (0001ms, 1468ms total)
T76A4 032:211 JLINK_ReadMemEx(0x0201966C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201966C) - Data: 00  returns 0x01 (0000ms, 1468ms total)
T76A4 032:211 JLINK_ReadMemEx(0x0201966D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201966D) - Data: 00  returns 0x01 (0001ms, 1469ms total)
T76A4 032:212 JLINK_ReadMemEx(0x0201966E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201966E) - Data: 00  returns 0x01 (0001ms, 1470ms total)
T76A4 032:213 JLINK_ReadMemEx(0x0201966F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201966F) - Data: 00  returns 0x01 (0000ms, 1470ms total)
T76A4 032:213 JLINK_ReadMemEx(0x02019670, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019670) - Data: 00  returns 0x01 (0001ms, 1471ms total)
T76A4 032:214 JLINK_ReadMemEx(0x02019671, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019671) - Data: 00  returns 0x01 (0000ms, 1471ms total)
T76A4 032:214 JLINK_ReadMemEx(0x02019672, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019672) - Data: 00  returns 0x01 (0001ms, 1472ms total)
T76A4 032:215 JLINK_ReadMemEx(0x02019673, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019673) - Data: 00  returns 0x01 (0001ms, 1473ms total)
T76A4 032:216 JLINK_ReadMemEx(0x02019674, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019674) - Data: 00  returns 0x01 (0000ms, 1473ms total)
T76A4 032:216 JLINK_ReadMemEx(0x02019675, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019675) - Data: 00  returns 0x01 (0001ms, 1474ms total)
T76A4 032:217 JLINK_ReadMemEx(0x02019676, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019676) - Data: 00  returns 0x01 (0001ms, 1475ms total)
T76A4 032:218 JLINK_ReadMemEx(0x02019677, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019677) - Data: 00  returns 0x01 (0000ms, 1475ms total)
T76A4 032:218 JLINK_ReadMemEx(0x02019678, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019678) - Data: 00  returns 0x01 (0001ms, 1476ms total)
T76A4 032:219 JLINK_ReadMemEx(0x02019679, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019679) - Data: 00  returns 0x01 (0001ms, 1477ms total)
T76A4 032:220 JLINK_ReadMemEx(0x0201967A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201967A) - Data: 00  returns 0x01 (0000ms, 1477ms total)
T76A4 032:220 JLINK_ReadMemEx(0x0201967B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201967B) - Data: 00  returns 0x01 (0001ms, 1478ms total)
T76A4 032:221 JLINK_ReadMemEx(0x0201967C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201967C) - Data: 00  returns 0x01 (0000ms, 1478ms total)
T76A4 032:222 JLINK_ReadMemEx(0x0201967D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201967D) - Data: 00  returns 0x01 (0000ms, 1479ms total)
T76A4 032:222 JLINK_ReadMemEx(0x0201967E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201967E) - Data: 00  returns 0x01 (0001ms, 1480ms total)
T76A4 032:223 JLINK_ReadMemEx(0x0201967F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201967F) - Data: 00  returns 0x01 (0000ms, 1480ms total)
T76A4 032:223 JLINK_ReadMemEx(0x02019680, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019680) - Data: 00  returns 0x01 (0001ms, 1481ms total)
T76A4 032:224 JLINK_ReadMemEx(0x02019681, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019681) - Data: 00  returns 0x01 (0001ms, 1482ms total)
T76A4 032:225 JLINK_ReadMemEx(0x02019682, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019682) - Data: 00  returns 0x01 (0000ms, 1482ms total)
T76A4 032:225 JLINK_ReadMemEx(0x02019683, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019683) - Data: 00  returns 0x01 (0001ms, 1483ms total)
T76A4 032:226 JLINK_ReadMemEx(0x02019684, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019684) - Data: 00  returns 0x01 (0001ms, 1484ms total)
T76A4 032:227 JLINK_ReadMemEx(0x02019685, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019685) - Data: 00  returns 0x01 (0000ms, 1484ms total)
T76A4 032:227 JLINK_ReadMemEx(0x02019686, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019686) - Data: 00  returns 0x01 (0001ms, 1485ms total)
T76A4 032:228 JLINK_ReadMemEx(0x02019687, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019687) - Data: 00  returns 0x01 (0001ms, 1486ms total)
T76A4 032:229 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0000ms, 1486ms total)
T76A4 032:229 JLINK_ReadMemEx(0x02019689, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019689) - Data: 00  returns 0x01 (0001ms, 1487ms total)
T76A4 032:230 JLINK_ReadMemEx(0x0201968A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201968A) - Data: 00  returns 0x01 (0001ms, 1488ms total)
T76A4 032:443 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 1C 00 00 00  returns 0x04 (0001ms, 1489ms total)
T76A4 032:462 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 1C 00 00 00  returns 0x04 (0001ms, 1490ms total)
T76A4 032:481 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 38  returns 0x01 (0001ms, 1491ms total)
T76A4 032:509 JLINK_ReadMemEx(0x0201958C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201958C) - Data: 00 01 02 03 04 05 06 07 08 09 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1492ms total)
T76A4 032:510 JLINK_ReadMemEx(0x0201968B, 0x0010 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(16 bytes @ 0x0201968B) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x10 (0002ms, 1494ms total)
T76A4 032:512 JLINK_ReadMemEx(0x0201969B, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x0201969B) - Data: 00 00 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1495ms total)
T76A4 032:513 JLINK_ReadMemEx(0x020196A5, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196A5) - Data: 00 00  returns 0x02 (0001ms, 1496ms total)
T76A4 032:514 JLINK_ReadMemEx(0x020196A7, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196A7) - Data: 0A 00  returns 0x02 (0000ms, 1496ms total)
T76A4 032:514 JLINK_ReadMemEx(0x020196A9, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196A9) - Data: 00 00  returns 0x02 (0001ms, 1497ms total)
T76A4 032:515 JLINK_ReadMemEx(0x020196AB, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196AB) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1499ms total)
T76A4 032:517 JLINK_ReadMemEx(0x02019AAB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019AAB) - Data: A6  returns 0x01 (0000ms, 1499ms total)
T76A4 032:517 JLINK_ReadMemEx(0x02019AAC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019AAC) - Data: C6 AD 98 40  returns 0x04 (0001ms, 1500ms total)
T3F3C 032:528 JLINK_IsHalted()  returns FALSE (0000ms, 1500ms total)
T76A4 032:538 JLINK_ReadMemEx(0x0201968B, 0x0010 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(16 bytes @ 0x0201968B) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x10 (0001ms, 1501ms total)
T76A4 032:539 JLINK_ReadMemEx(0x0201968B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201968B) - Data: 00  returns 0x01 (0001ms, 1502ms total)
T76A4 032:540 JLINK_ReadMemEx(0x0201968C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201968C) - Data: 00  returns 0x01 (0001ms, 1503ms total)
T76A4 032:541 JLINK_ReadMemEx(0x0201968D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201968D) - Data: 00  returns 0x01 (0000ms, 1503ms total)
T76A4 032:541 JLINK_ReadMemEx(0x0201968E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201968E) - Data: 00  returns 0x01 (0001ms, 1504ms total)
T76A4 032:542 JLINK_ReadMemEx(0x0201968F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201968F) - Data: 00  returns 0x01 (0001ms, 1505ms total)
T76A4 032:543 JLINK_ReadMemEx(0x02019690, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019690) - Data: 00  returns 0x01 (0000ms, 1505ms total)
T76A4 032:543 JLINK_ReadMemEx(0x02019691, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019691) - Data: 00  returns 0x01 (0001ms, 1506ms total)
T76A4 032:544 JLINK_ReadMemEx(0x02019692, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019692) - Data: 00  returns 0x01 (0001ms, 1507ms total)
T76A4 032:545 JLINK_ReadMemEx(0x02019693, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019693) - Data: 00  returns 0x01 (0000ms, 1507ms total)
T76A4 032:545 JLINK_ReadMemEx(0x02019694, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019694) - Data: 00  returns 0x01 (0001ms, 1508ms total)
T76A4 032:546 JLINK_ReadMemEx(0x02019695, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019695) - Data: 00  returns 0x01 (0000ms, 1508ms total)
T76A4 032:546 JLINK_ReadMemEx(0x02019696, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019696) - Data: 00  returns 0x01 (0001ms, 1509ms total)
T76A4 032:547 JLINK_ReadMemEx(0x02019697, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019697) - Data: 00  returns 0x01 (0001ms, 1510ms total)
T76A4 032:548 JLINK_ReadMemEx(0x02019698, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019698) - Data: 00  returns 0x01 (0000ms, 1510ms total)
T76A4 032:548 JLINK_ReadMemEx(0x02019699, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019699) - Data: 00  returns 0x01 (0002ms, 1512ms total)
T76A4 032:550 JLINK_ReadMemEx(0x0201969A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201969A) - Data: 00  returns 0x01 (0001ms, 1513ms total)
T76A4 032:551 JLINK_ReadMemEx(0x0201968B, 0x0010 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(16 bytes @ 0x0201968B) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x10 (0001ms, 1514ms total)
T76A4 032:552 JLINK_ReadMemEx(0x0201968B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201968B) - Data: 00  returns 0x01 (0001ms, 1515ms total)
T76A4 032:553 JLINK_ReadMemEx(0x0201968C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201968C) - Data: 00  returns 0x01 (0000ms, 1515ms total)
T76A4 032:553 JLINK_ReadMemEx(0x0201968D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201968D) - Data: 00  returns 0x01 (0001ms, 1516ms total)
T76A4 032:554 JLINK_ReadMemEx(0x0201968E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201968E) - Data: 00  returns 0x01 (0001ms, 1517ms total)
T76A4 032:555 JLINK_ReadMemEx(0x0201968F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201968F) - Data: 00  returns 0x01 (0000ms, 1517ms total)
T76A4 032:555 JLINK_ReadMemEx(0x02019690, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019690) - Data: 00  returns 0x01 (0001ms, 1518ms total)
T76A4 032:556 JLINK_ReadMemEx(0x02019691, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019691) - Data: 00  returns 0x01 (0001ms, 1519ms total)
T76A4 032:557 JLINK_ReadMemEx(0x02019692, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019692) - Data: 00  returns 0x01 (0000ms, 1519ms total)
T76A4 032:557 JLINK_ReadMemEx(0x02019693, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019693) - Data: 00  returns 0x01 (0001ms, 1520ms total)
T76A4 032:558 JLINK_ReadMemEx(0x02019694, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019694) - Data: 00  returns 0x01 (0001ms, 1521ms total)
T76A4 032:559 JLINK_ReadMemEx(0x02019695, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019695) - Data: 00  returns 0x01 (0000ms, 1521ms total)
T76A4 032:559 JLINK_ReadMemEx(0x02019696, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019696) - Data: 00  returns 0x01 (0001ms, 1522ms total)
T76A4 032:560 JLINK_ReadMemEx(0x02019697, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019697) - Data: 00  returns 0x01 (0000ms, 1522ms total)
T76A4 032:560 JLINK_ReadMemEx(0x02019698, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019698) - Data: 00  returns 0x01 (0001ms, 1523ms total)
T76A4 032:561 JLINK_ReadMemEx(0x02019699, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019699) - Data: 00  returns 0x01 (0001ms, 1524ms total)
T76A4 032:562 JLINK_ReadMemEx(0x0201969A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201969A) - Data: 00  returns 0x01 (0000ms, 1524ms total)
T76A4 032:578 JLINK_ReadMemEx(0x0201968B, 0x0010 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(16 bytes @ 0x0201968B) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x10 (0001ms, 1525ms total)
T76A4 032:579 JLINK_ReadMemEx(0x0201968B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201968B) - Data: 00  returns 0x01 (0001ms, 1526ms total)
T76A4 032:580 JLINK_ReadMemEx(0x0201968C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201968C) - Data: 00  returns 0x01 (0000ms, 1526ms total)
T76A4 032:580 JLINK_ReadMemEx(0x0201968D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201968D) - Data: 00  returns 0x01 (0001ms, 1527ms total)
T76A4 032:581 JLINK_ReadMemEx(0x0201968E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201968E) - Data: 00  returns 0x01 (0001ms, 1528ms total)
T76A4 032:582 JLINK_ReadMemEx(0x0201968F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201968F) - Data: 00  returns 0x01 (0000ms, 1528ms total)
T76A4 032:582 JLINK_ReadMemEx(0x02019690, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019690) - Data: 00  returns 0x01 (0001ms, 1529ms total)
T76A4 032:583 JLINK_ReadMemEx(0x02019691, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019691) - Data: 00  returns 0x01 (0001ms, 1530ms total)
T76A4 032:584 JLINK_ReadMemEx(0x02019692, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019692) - Data: 00  returns 0x01 (0000ms, 1530ms total)
T76A4 032:584 JLINK_ReadMemEx(0x02019693, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019693) - Data: 00  returns 0x01 (0001ms, 1531ms total)
T76A4 032:585 JLINK_ReadMemEx(0x02019694, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019694) - Data: 00  returns 0x01 (0001ms, 1532ms total)
T76A4 032:586 JLINK_ReadMemEx(0x02019695, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019695) - Data: 00  returns 0x01 (0000ms, 1532ms total)
T76A4 032:586 JLINK_ReadMemEx(0x02019696, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019696) - Data: 00  returns 0x01 (0001ms, 1533ms total)
T76A4 032:587 JLINK_ReadMemEx(0x02019697, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019697) - Data: 00  returns 0x01 (0001ms, 1534ms total)
T76A4 032:588 JLINK_ReadMemEx(0x02019698, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019698) - Data: 00  returns 0x01 (0000ms, 1534ms total)
T76A4 032:588 JLINK_ReadMemEx(0x02019699, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019699) - Data: 00  returns 0x01 (0001ms, 1535ms total)
T76A4 032:589 JLINK_ReadMemEx(0x0201969A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201969A) - Data: 00  returns 0x01 (0001ms, 1536ms total)
T76A4 032:896 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 1D 00 00 00  returns 0x04 (0000ms, 1536ms total)
T76A4 032:919 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 1C 00 00 00  returns 0x04 (0001ms, 1537ms total)
T76A4 032:931 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 39  returns 0x01 (0001ms, 1538ms total)
T76A4 032:967 JLINK_ReadMemEx(0x0201958C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201958C) - Data: 00 01 02 03 04 05 06 07 08 09 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1539ms total)
T76A4 032:968 JLINK_ReadMemEx(0x0201968B, 0x0010 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(16 bytes @ 0x0201968B) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x10 (0002ms, 1541ms total)
T76A4 032:970 JLINK_ReadMemEx(0x0201968B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201968B) - Data: 00  returns 0x01 (0000ms, 1541ms total)
T76A4 032:970 JLINK_ReadMemEx(0x0201968C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201968C) - Data: 00  returns 0x01 (0001ms, 1542ms total)
T76A4 032:971 JLINK_ReadMemEx(0x0201968D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201968D) - Data: 00  returns 0x01 (0001ms, 1543ms total)
T76A4 032:972 JLINK_ReadMemEx(0x0201968E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201968E) - Data: 00  returns 0x01 (0000ms, 1543ms total)
T76A4 032:972 JLINK_ReadMemEx(0x0201968F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201968F) - Data: 00  returns 0x01 (0001ms, 1544ms total)
T76A4 032:973 JLINK_ReadMemEx(0x02019690, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019690) - Data: 00  returns 0x01 (0001ms, 1545ms total)
T76A4 032:974 JLINK_ReadMemEx(0x02019691, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019691) - Data: 00  returns 0x01 (0000ms, 1545ms total)
T76A4 032:974 JLINK_ReadMemEx(0x02019692, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019692) - Data: 00  returns 0x01 (0001ms, 1546ms total)
T76A4 032:975 JLINK_ReadMemEx(0x02019693, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019693) - Data: 00  returns 0x01 (0001ms, 1547ms total)
T76A4 032:976 JLINK_ReadMemEx(0x02019694, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019694) - Data: 00  returns 0x01 (0000ms, 1547ms total)
T76A4 032:976 JLINK_ReadMemEx(0x02019695, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019695) - Data: 00  returns 0x01 (0001ms, 1548ms total)
T76A4 032:977 JLINK_ReadMemEx(0x02019696, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019696) - Data: 00  returns 0x01 (0001ms, 1549ms total)
T76A4 032:978 JLINK_ReadMemEx(0x02019697, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019697) - Data: 00  returns 0x01 (0000ms, 1549ms total)
T76A4 032:978 JLINK_ReadMemEx(0x02019698, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019698) - Data: 00  returns 0x01 (0001ms, 1550ms total)
T76A4 032:979 JLINK_ReadMemEx(0x02019699, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019699) - Data: 00  returns 0x01 (0000ms, 1550ms total)
T76A4 032:979 JLINK_ReadMemEx(0x0201969A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201969A) - Data: 00  returns 0x01 (0001ms, 1551ms total)
T76A4 032:980 JLINK_ReadMemEx(0x0201969B, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x0201969B) - Data: 00 00 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1552ms total)
T76A4 032:981 JLINK_ReadMemEx(0x020196A5, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196A5) - Data: 00 00  returns 0x02 (0001ms, 1553ms total)
T76A4 032:982 JLINK_ReadMemEx(0x020196A7, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196A7) - Data: 0A 00  returns 0x02 (0001ms, 1554ms total)
T76A4 032:983 JLINK_ReadMemEx(0x020196A9, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196A9) - Data: 00 00  returns 0x02 (0001ms, 1555ms total)
T76A4 032:984 JLINK_ReadMemEx(0x020196AB, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196AB) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1556ms total)
T76A4 032:985 JLINK_ReadMemEx(0x02019AAB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019AAB) - Data: A7  returns 0x01 (0001ms, 1557ms total)
T76A4 032:986 JLINK_ReadMemEx(0x02019AAC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019AAC) - Data: C6 AD 98 40  returns 0x04 (0000ms, 1557ms total)
T3F3C 032:987 JLINK_IsHalted()  returns FALSE (0000ms, 1557ms total)
T3F3C 033:088 JLINK_IsHalted()  returns FALSE (0000ms, 1557ms total)
T76A4 033:452 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 1D 00 00 00  returns 0x04 (0000ms, 1557ms total)
T76A4 033:464 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 1D 00 00 00  returns 0x04 (0000ms, 1557ms total)
T76A4 033:476 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 3A  returns 0x01 (0000ms, 1557ms total)
T76A4 033:510 JLINK_ReadMemEx(0x0201958C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201958C) - Data: 00 01 02 03 04 05 06 07 08 09 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1558ms total)
T76A4 033:511 JLINK_ReadMemEx(0x0201968B, 0x0010 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(16 bytes @ 0x0201968B) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x10 (0001ms, 1559ms total)
T76A4 033:512 JLINK_ReadMemEx(0x0201968B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201968B) - Data: 00  returns 0x01 (0001ms, 1560ms total)
T76A4 033:513 JLINK_ReadMemEx(0x0201968C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201968C) - Data: 00  returns 0x01 (0001ms, 1561ms total)
T76A4 033:514 JLINK_ReadMemEx(0x0201968D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201968D) - Data: 00  returns 0x01 (0001ms, 1562ms total)
T76A4 033:515 JLINK_ReadMemEx(0x0201968E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201968E) - Data: 00  returns 0x01 (0000ms, 1562ms total)
T76A4 033:515 JLINK_ReadMemEx(0x0201968F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201968F) - Data: 00  returns 0x01 (0001ms, 1563ms total)
T76A4 033:516 JLINK_ReadMemEx(0x02019690, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019690) - Data: 00  returns 0x01 (0001ms, 1564ms total)
T76A4 033:517 JLINK_ReadMemEx(0x02019691, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019691) - Data: 00  returns 0x01 (0000ms, 1564ms total)
T76A4 033:517 JLINK_ReadMemEx(0x02019692, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019692) - Data: 00  returns 0x01 (0001ms, 1565ms total)
T76A4 033:518 JLINK_ReadMemEx(0x02019693, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019693) - Data: 00  returns 0x01 (0000ms, 1565ms total)
T76A4 033:518 JLINK_ReadMemEx(0x02019694, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019694) - Data: 00  returns 0x01 (0001ms, 1566ms total)
T76A4 033:519 JLINK_ReadMemEx(0x02019695, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019695) - Data: 00  returns 0x01 (0001ms, 1567ms total)
T76A4 033:520 JLINK_ReadMemEx(0x02019696, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019696) - Data: 00  returns 0x01 (0000ms, 1567ms total)
T76A4 033:520 JLINK_ReadMemEx(0x02019697, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019697) - Data: 00  returns 0x01 (0001ms, 1568ms total)
T76A4 033:521 JLINK_ReadMemEx(0x02019698, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019698) - Data: 00  returns 0x01 (0001ms, 1569ms total)
T76A4 033:522 JLINK_ReadMemEx(0x02019699, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019699) - Data: 00  returns 0x01 (0000ms, 1569ms total)
T76A4 033:522 JLINK_ReadMemEx(0x0201969A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201969A) - Data: 00  returns 0x01 (0001ms, 1570ms total)
T76A4 033:523 JLINK_ReadMemEx(0x0201969B, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x0201969B) - Data: 00 00 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1571ms total)
T76A4 033:524 JLINK_ReadMemEx(0x020196A5, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196A5) - Data: 00 00  returns 0x02 (0001ms, 1572ms total)
T76A4 033:525 JLINK_ReadMemEx(0x020196A7, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196A7) - Data: 0A 00  returns 0x02 (0001ms, 1573ms total)
T76A4 033:526 JLINK_ReadMemEx(0x020196A9, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196A9) - Data: 00 00  returns 0x02 (0001ms, 1574ms total)
T76A4 033:527 JLINK_ReadMemEx(0x020196AB, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196AB) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1575ms total)
T76A4 033:528 JLINK_ReadMemEx(0x02019AAB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019AAB) - Data: A7  returns 0x01 (0001ms, 1576ms total)
T76A4 033:529 JLINK_ReadMemEx(0x02019AAC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019AAC) - Data: C6 AD 98 40  returns 0x04 (0000ms, 1576ms total)
T3F3C 033:529 JLINK_IsHalted()  returns FALSE (0001ms, 1577ms total)
T76A4 033:543 JLINK_ReadMemEx(0x0201968B, 0x0010 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(16 bytes @ 0x0201968B) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x10 (0001ms, 1577ms total)
T76A4 033:544 JLINK_ReadMemEx(0x0201968B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201968B) - Data: 00  returns 0x01 (0001ms, 1578ms total)
T76A4 033:545 JLINK_ReadMemEx(0x0201968C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201968C) - Data: 00  returns 0x01 (0000ms, 1578ms total)
T76A4 033:545 JLINK_ReadMemEx(0x0201968D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201968D) - Data: 00  returns 0x01 (0001ms, 1579ms total)
T76A4 033:546 JLINK_ReadMemEx(0x0201968E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201968E) - Data: 00  returns 0x01 (0001ms, 1580ms total)
T76A4 033:547 JLINK_ReadMemEx(0x0201968F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201968F) - Data: 00  returns 0x01 (0000ms, 1580ms total)
T76A4 033:547 JLINK_ReadMemEx(0x02019690, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019690) - Data: 00  returns 0x01 (0001ms, 1581ms total)
T76A4 033:548 JLINK_ReadMemEx(0x02019691, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019691) - Data: 00  returns 0x01 (0001ms, 1582ms total)
T76A4 033:549 JLINK_ReadMemEx(0x02019692, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019692) - Data: 00  returns 0x01 (0000ms, 1582ms total)
T76A4 033:549 JLINK_ReadMemEx(0x02019693, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019693) - Data: 00  returns 0x01 (0001ms, 1583ms total)
T76A4 033:550 JLINK_ReadMemEx(0x02019694, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019694) - Data: 00  returns 0x01 (0000ms, 1583ms total)
T76A4 033:550 JLINK_ReadMemEx(0x02019695, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019695) - Data: 00  returns 0x01 (0001ms, 1584ms total)
T76A4 033:551 JLINK_ReadMemEx(0x02019696, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019696) - Data: 00  returns 0x01 (0001ms, 1585ms total)
T76A4 033:552 JLINK_ReadMemEx(0x02019697, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019697) - Data: 00  returns 0x01 (0000ms, 1585ms total)
T76A4 033:552 JLINK_ReadMemEx(0x02019698, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019698) - Data: 00  returns 0x01 (0001ms, 1586ms total)
T76A4 033:553 JLINK_ReadMemEx(0x02019699, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019699) - Data: 00  returns 0x01 (0001ms, 1587ms total)
T76A4 033:554 JLINK_ReadMemEx(0x0201969A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201969A) - Data: 00  returns 0x01 (0000ms, 1587ms total)
T3F3C 033:631 JLINK_IsHalted()  returns FALSE (0000ms, 1587ms total)
T76A4 033:945 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 1E 00 00 00  returns 0x04 (0001ms, 1588ms total)
T76A4 033:955 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 1D 00 00 00  returns 0x04 (0001ms, 1589ms total)
T76A4 033:966 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 3B  returns 0x01 (0000ms, 1589ms total)
T76A4 033:994 JLINK_ReadMemEx(0x0201958C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201958C) - Data: 00 01 02 03 04 05 06 07 08 09 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1590ms total)
T76A4 033:995 JLINK_ReadMemEx(0x0201968B, 0x0010 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(16 bytes @ 0x0201968B) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x10 (0001ms, 1591ms total)
T76A4 033:996 JLINK_ReadMemEx(0x0201969B, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x0201969B) - Data: 00 00 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1592ms total)
T76A4 033:997 JLINK_ReadMemEx(0x020196A5, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196A5) - Data: 00 00  returns 0x02 (0001ms, 1593ms total)
T76A4 033:998 JLINK_ReadMemEx(0x020196A7, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196A7) - Data: 0A 00  returns 0x02 (0001ms, 1594ms total)
T76A4 033:999 JLINK_ReadMemEx(0x020196A9, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196A9) - Data: 00 00  returns 0x02 (0001ms, 1595ms total)
T76A4 034:000 JLINK_ReadMemEx(0x020196AB, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196AB) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1597ms total)
T76A4 034:002 JLINK_ReadMemEx(0x02019AAB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019AAB) - Data: A6  returns 0x01 (0000ms, 1597ms total)
T76A4 034:012 JLINK_ReadMemEx(0x02019AAC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019AAC) - Data: C6 AD 98 40  returns 0x04 (0000ms, 1597ms total)
T3F3C 034:012 JLINK_IsHalted()  returns FALSE (0001ms, 1598ms total)
T3F3C 034:114 JLINK_IsHalted()  returns FALSE (0000ms, 1597ms total)
T3F3C 034:215 JLINK_IsHalted()  returns FALSE (0000ms, 1597ms total)
T76A4 034:530 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 1E 00 00 00  returns 0x04 (0001ms, 1598ms total)
T76A4 034:540 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 1E 00 00 00  returns 0x04 (0001ms, 1599ms total)
T76A4 034:550 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 3C  returns 0x01 (0001ms, 1600ms total)
T76A4 034:578 JLINK_ReadMemEx(0x0201958C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201958C) - Data: 00 01 02 03 04 05 06 07 08 09 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1601ms total)
T76A4 034:579 JLINK_ReadMemEx(0x0201968B, 0x0010 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(16 bytes @ 0x0201968B) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x10 (0002ms, 1603ms total)
T76A4 034:581 JLINK_ReadMemEx(0x0201969B, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x0201969B) - Data: 00 00 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1604ms total)
T76A4 034:582 JLINK_ReadMemEx(0x020196A5, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196A5) - Data: 00 00  returns 0x02 (0001ms, 1605ms total)
T76A4 034:583 JLINK_ReadMemEx(0x020196A7, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196A7) - Data: 0A 00  returns 0x02 (0000ms, 1605ms total)
T76A4 034:583 JLINK_ReadMemEx(0x020196A9, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196A9) - Data: 00 00  returns 0x02 (0001ms, 1606ms total)
T76A4 034:584 JLINK_ReadMemEx(0x020196AB, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196AB) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1608ms total)
T76A4 034:586 JLINK_ReadMemEx(0x02019AAB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019AAB) - Data: A6  returns 0x01 (0000ms, 1608ms total)
T76A4 034:596 JLINK_ReadMemEx(0x02019AAC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019AAC) - Data: C6 AD 98 40  returns 0x04 (0001ms, 1610ms total)
T3F3C 034:597 JLINK_IsHalted()  returns FALSE (0001ms, 1611ms total)
T3F3C 034:699 JLINK_IsHalted()  returns FALSE (0000ms, 1610ms total)
T3F3C 034:800 JLINK_IsHalted()  returns FALSE (0000ms, 1610ms total)
T76A4 035:115 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 1F 00 00 00  returns 0x04 (0001ms, 1611ms total)
T76A4 035:126 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 1F 00 00 00  returns 0x04 (0000ms, 1611ms total)
T76A4 035:145 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 3E  returns 0x01 (0001ms, 1612ms total)
T76A4 035:174 JLINK_ReadMemEx(0x0201958C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201958C) - Data: 00 01 02 03 04 05 06 07 08 09 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1613ms total)
T76A4 035:175 JLINK_ReadMemEx(0x0201968B, 0x0010 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(16 bytes @ 0x0201968B) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x10 (0001ms, 1614ms total)
T76A4 035:176 JLINK_ReadMemEx(0x0201969B, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x0201969B) - Data: 00 00 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1615ms total)
T76A4 035:177 JLINK_ReadMemEx(0x020196A5, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196A5) - Data: 00 00  returns 0x02 (0001ms, 1616ms total)
T76A4 035:178 JLINK_ReadMemEx(0x020196A7, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196A7) - Data: 0A 00  returns 0x02 (0001ms, 1617ms total)
T76A4 035:179 JLINK_ReadMemEx(0x020196A9, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196A9) - Data: 00 00  returns 0x02 (0001ms, 1618ms total)
T76A4 035:180 JLINK_ReadMemEx(0x020196AB, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196AB) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1619ms total)
T76A4 035:181 JLINK_ReadMemEx(0x02019AAB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019AAB) - Data: A6  returns 0x01 (0001ms, 1620ms total)
T76A4 035:182 JLINK_ReadMemEx(0x02019AAC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019AAC) - Data: C6 AD 98 40  returns 0x04 (0001ms, 1621ms total)
T3F3C 035:183 JLINK_IsHalted()  returns FALSE (0001ms, 1622ms total)
T3F3C 035:285 JLINK_IsHalted()  returns FALSE (0000ms, 1621ms total)
T3F3C 035:386 JLINK_IsHalted()  returns FALSE (0000ms, 1621ms total)
T76A4 035:699 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 1F 00 00 00  returns 0x04 (0001ms, 1622ms total)
T76A4 035:709 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 1F 00 00 00  returns 0x04 (0000ms, 1622ms total)
T76A4 035:718 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 3E  returns 0x01 (0001ms, 1623ms total)
T76A4 035:737 JLINK_ReadMemEx(0x0201958C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201958C) - Data: 00 01 02 03 04 05 06 07 08 09 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1624ms total)
T76A4 035:738 JLINK_ReadMemEx(0x0201968B, 0x0010 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(16 bytes @ 0x0201968B) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x10 (0002ms, 1626ms total)
T76A4 035:740 JLINK_ReadMemEx(0x0201969B, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x0201969B) - Data: 00 00 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1627ms total)
T76A4 035:741 JLINK_ReadMemEx(0x020196A5, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196A5) - Data: 00 00  returns 0x02 (0001ms, 1628ms total)
T76A4 035:742 JLINK_ReadMemEx(0x020196A7, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196A7) - Data: 0A 00  returns 0x02 (0001ms, 1629ms total)
T76A4 035:743 JLINK_ReadMemEx(0x020196A9, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196A9) - Data: 00 00  returns 0x02 (0001ms, 1630ms total)
T76A4 035:744 JLINK_ReadMemEx(0x020196AB, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196AB) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1631ms total)
T76A4 035:745 JLINK_ReadMemEx(0x02019AAB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019AAB) - Data: A6  returns 0x01 (0001ms, 1632ms total)
T76A4 035:746 JLINK_ReadMemEx(0x02019AAC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019AAC) - Data: C6 AD 98 40  returns 0x04 (0000ms, 1632ms total)
T3F3C 035:747 JLINK_IsHalted()  returns FALSE (0000ms, 1632ms total)
T3F3C 035:849 JLINK_IsHalted()  returns FALSE (0000ms, 1632ms total)
T76A4 035:948 JLINK_ReadMemEx(0x0201958C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201958C) - Data: 00 01 02 03 04 05 06 07 08 09 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1633ms total)
T76A4 035:949 JLINK_ReadMemEx(0x0201958C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201958C) - Data: 00  returns 0x01 (0000ms, 1633ms total)
T76A4 035:949 JLINK_ReadMemEx(0x0201958D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201958D) - Data: 01  returns 0x01 (0001ms, 1634ms total)
T76A4 035:950 JLINK_ReadMemEx(0x0201958E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201958E) - Data: 02  returns 0x01 (0001ms, 1635ms total)
T3F3C 035:951 JLINK_IsHalted()  returns FALSE (0000ms, 1634ms total)
T76A4 035:951 JLINK_ReadMemEx(0x0201958F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201958F) - Data: 03  returns 0x01 (0001ms, 1635ms total)
T76A4 035:952 JLINK_ReadMemEx(0x02019590, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019590) - Data: 04  returns 0x01 (0001ms, 1636ms total)
T76A4 035:953 JLINK_ReadMemEx(0x02019591, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019591) - Data: 05  returns 0x01 (0000ms, 1636ms total)
T76A4 035:953 JLINK_ReadMemEx(0x02019592, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019592) - Data: 06  returns 0x01 (0001ms, 1637ms total)
T76A4 035:954 JLINK_ReadMemEx(0x02019593, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019593) - Data: 07  returns 0x01 (0001ms, 1638ms total)
T76A4 035:955 JLINK_ReadMemEx(0x02019594, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019594) - Data: 08  returns 0x01 (0000ms, 1638ms total)
T76A4 035:955 JLINK_ReadMemEx(0x02019595, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019595) - Data: 09  returns 0x01 (0001ms, 1639ms total)
T76A4 035:956 JLINK_ReadMemEx(0x02019596, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019596) - Data: 00  returns 0x01 (0001ms, 1640ms total)
T76A4 035:957 JLINK_ReadMemEx(0x02019597, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019597) - Data: 00  returns 0x01 (0000ms, 1640ms total)
T76A4 035:957 JLINK_ReadMemEx(0x02019598, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019598) - Data: 00  returns 0x01 (0001ms, 1641ms total)
T76A4 035:958 JLINK_ReadMemEx(0x02019599, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019599) - Data: 00  returns 0x01 (0001ms, 1642ms total)
T76A4 035:959 JLINK_ReadMemEx(0x0201959A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959A) - Data: 00  returns 0x01 (0000ms, 1642ms total)
T76A4 035:959 JLINK_ReadMemEx(0x0201959B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959B) - Data: 00  returns 0x01 (0001ms, 1643ms total)
T76A4 035:960 JLINK_ReadMemEx(0x0201959C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959C) - Data: 00  returns 0x01 (0001ms, 1644ms total)
T76A4 035:961 JLINK_ReadMemEx(0x0201959D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959D) - Data: 00  returns 0x01 (0000ms, 1644ms total)
T76A4 035:961 JLINK_ReadMemEx(0x0201959E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959E) - Data: 00  returns 0x01 (0001ms, 1645ms total)
T76A4 035:962 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 00  returns 0x01 (0001ms, 1646ms total)
T76A4 035:963 JLINK_ReadMemEx(0x020195A0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A0) - Data: 00  returns 0x01 (0000ms, 1646ms total)
T76A4 035:963 JLINK_ReadMemEx(0x020195A1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A1) - Data: 00  returns 0x01 (0001ms, 1647ms total)
T76A4 035:964 JLINK_ReadMemEx(0x020195A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A2) - Data: 00  returns 0x01 (0000ms, 1647ms total)
T76A4 035:964 JLINK_ReadMemEx(0x020195A3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A3) - Data: 00  returns 0x01 (0001ms, 1648ms total)
T76A4 035:965 JLINK_ReadMemEx(0x020195A4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A4) - Data: 00  returns 0x01 (0001ms, 1649ms total)
T76A4 035:966 JLINK_ReadMemEx(0x020195A5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A5) - Data: 00  returns 0x01 (0000ms, 1649ms total)
T76A4 035:966 JLINK_ReadMemEx(0x020195A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A6) - Data: 00  returns 0x01 (0001ms, 1650ms total)
T76A4 035:967 JLINK_ReadMemEx(0x020195A7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A7) - Data: 00  returns 0x01 (0001ms, 1651ms total)
T76A4 035:968 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 00  returns 0x01 (0000ms, 1651ms total)
T76A4 035:968 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 00  returns 0x01 (0001ms, 1652ms total)
T76A4 035:969 JLINK_ReadMemEx(0x020195AA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195AA) - Data: 00  returns 0x01 (0000ms, 1652ms total)
T76A4 035:969 JLINK_ReadMemEx(0x020195AB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195AB) - Data: 00  returns 0x01 (0001ms, 1653ms total)
T76A4 035:970 JLINK_ReadMemEx(0x020195AC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195AC) - Data: 00  returns 0x01 (0001ms, 1654ms total)
T76A4 035:971 JLINK_ReadMemEx(0x020195AD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195AD) - Data: 00  returns 0x01 (0000ms, 1654ms total)
T76A4 035:971 JLINK_ReadMemEx(0x020195AE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195AE) - Data: 00  returns 0x01 (0001ms, 1655ms total)
T76A4 035:972 JLINK_ReadMemEx(0x020195AF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195AF) - Data: 00  returns 0x01 (0001ms, 1656ms total)
T76A4 035:973 JLINK_ReadMemEx(0x020195B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B0) - Data: 00  returns 0x01 (0000ms, 1656ms total)
T76A4 035:973 JLINK_ReadMemEx(0x020195B1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B1) - Data: 00  returns 0x01 (0001ms, 1657ms total)
T76A4 035:974 JLINK_ReadMemEx(0x020195B2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B2) - Data: 00  returns 0x01 (0001ms, 1658ms total)
T76A4 035:975 JLINK_ReadMemEx(0x020195B3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B3) - Data: 00  returns 0x01 (0000ms, 1658ms total)
T76A4 035:975 JLINK_ReadMemEx(0x020195B4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B4) - Data: 00  returns 0x01 (0001ms, 1659ms total)
T76A4 035:976 JLINK_ReadMemEx(0x020195B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B5) - Data: 00  returns 0x01 (0001ms, 1660ms total)
T76A4 035:977 JLINK_ReadMemEx(0x020195B6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B6) - Data: 00  returns 0x01 (0000ms, 1660ms total)
T76A4 035:977 JLINK_ReadMemEx(0x020195B7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B7) - Data: 00  returns 0x01 (0001ms, 1661ms total)
T76A4 035:978 JLINK_ReadMemEx(0x020195B8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B8) - Data: 00  returns 0x01 (0001ms, 1662ms total)
T76A4 035:979 JLINK_ReadMemEx(0x020195B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B9) - Data: 00  returns 0x01 (0000ms, 1662ms total)
T76A4 035:979 JLINK_ReadMemEx(0x020195BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195BA) - Data: 00  returns 0x01 (0001ms, 1663ms total)
T76A4 035:980 JLINK_ReadMemEx(0x020195BB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195BB) - Data: 00  returns 0x01 (0001ms, 1664ms total)
T76A4 035:981 JLINK_ReadMemEx(0x020195BC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195BC) - Data: 00  returns 0x01 (0000ms, 1664ms total)
T76A4 035:981 JLINK_ReadMemEx(0x020195BD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195BD) - Data: 00  returns 0x01 (0001ms, 1665ms total)
T76A4 035:982 JLINK_ReadMemEx(0x020195BE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195BE) - Data: 00  returns 0x01 (0001ms, 1666ms total)
T76A4 035:983 JLINK_ReadMemEx(0x020195BF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195BF) - Data: 00  returns 0x01 (0000ms, 1666ms total)
T76A4 035:983 JLINK_ReadMemEx(0x020195C0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195C0) - Data: 00  returns 0x01 (0001ms, 1667ms total)
T76A4 035:984 JLINK_ReadMemEx(0x020195C1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195C1) - Data: 00  returns 0x01 (0001ms, 1668ms total)
T76A4 035:985 JLINK_ReadMemEx(0x020195C2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195C2) - Data: 00  returns 0x01 (0000ms, 1668ms total)
T76A4 035:985 JLINK_ReadMemEx(0x020195C3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195C3) - Data: 00  returns 0x01 (0001ms, 1669ms total)
T76A4 035:986 JLINK_ReadMemEx(0x020195C4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195C4) - Data: 00  returns 0x01 (0001ms, 1670ms total)
T76A4 035:987 JLINK_ReadMemEx(0x020195C5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195C5) - Data: 00  returns 0x01 (0000ms, 1670ms total)
T76A4 035:987 JLINK_ReadMemEx(0x020195C6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195C6) - Data: 00  returns 0x01 (0001ms, 1671ms total)
T76A4 035:988 JLINK_ReadMemEx(0x020195C7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195C7) - Data: 00  returns 0x01 (0000ms, 1671ms total)
T76A4 035:988 JLINK_ReadMemEx(0x020195C8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195C8) - Data: 00  returns 0x01 (0001ms, 1672ms total)
T76A4 035:989 JLINK_ReadMemEx(0x020195C9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195C9) - Data: 00  returns 0x01 (0001ms, 1673ms total)
T76A4 035:990 JLINK_ReadMemEx(0x020195CA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195CA) - Data: 00  returns 0x01 (0000ms, 1673ms total)
T76A4 035:990 JLINK_ReadMemEx(0x020195CB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195CB) - Data: 00  returns 0x01 (0001ms, 1674ms total)
T76A4 035:991 JLINK_ReadMemEx(0x020195CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195CC) - Data: 00  returns 0x01 (0001ms, 1675ms total)
T76A4 035:992 JLINK_ReadMemEx(0x020195CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195CD) - Data: 00  returns 0x01 (0000ms, 1675ms total)
T76A4 035:992 JLINK_ReadMemEx(0x020195CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195CE) - Data: 00  returns 0x01 (0001ms, 1676ms total)
T76A4 035:993 JLINK_ReadMemEx(0x020195CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195CF) - Data: 00  returns 0x01 (0000ms, 1676ms total)
T76A4 035:993 JLINK_ReadMemEx(0x020195D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195D0) - Data: 00  returns 0x01 (0001ms, 1677ms total)
T76A4 035:994 JLINK_ReadMemEx(0x020195D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195D1) - Data: 00  returns 0x01 (0001ms, 1678ms total)
T76A4 035:995 JLINK_ReadMemEx(0x020195D2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195D2) - Data: 00  returns 0x01 (0000ms, 1678ms total)
T76A4 035:995 JLINK_ReadMemEx(0x020195D3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195D3) - Data: 00  returns 0x01 (0001ms, 1679ms total)
T76A4 035:996 JLINK_ReadMemEx(0x020195D4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195D4) - Data: 00  returns 0x01 (0001ms, 1680ms total)
T76A4 035:997 JLINK_ReadMemEx(0x020195D5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195D5) - Data: 00  returns 0x01 (0000ms, 1680ms total)
T76A4 035:997 JLINK_ReadMemEx(0x020195D6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195D6) - Data: 00  returns 0x01 (0001ms, 1681ms total)
T76A4 035:998 JLINK_ReadMemEx(0x020195D7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195D7) - Data: 00  returns 0x01 (0001ms, 1682ms total)
T76A4 035:999 JLINK_ReadMemEx(0x020195D8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195D8) - Data: 00  returns 0x01 (0000ms, 1682ms total)
T76A4 035:999 JLINK_ReadMemEx(0x020195D9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195D9) - Data: 00  returns 0x01 (0001ms, 1683ms total)
T76A4 036:000 JLINK_ReadMemEx(0x020195DA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195DA) - Data: 00  returns 0x01 (0000ms, 1683ms total)
T76A4 036:000 JLINK_ReadMemEx(0x020195DB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195DB) - Data: 00  returns 0x01 (0001ms, 1684ms total)
T76A4 036:001 JLINK_ReadMemEx(0x020195DC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195DC) - Data: 00  returns 0x01 (0001ms, 1685ms total)
T76A4 036:002 JLINK_ReadMemEx(0x020195DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195DD) - Data: 00  returns 0x01 (0000ms, 1685ms total)
T76A4 036:002 JLINK_ReadMemEx(0x020195DE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195DE) - Data: 00  returns 0x01 (0001ms, 1686ms total)
T76A4 036:003 JLINK_ReadMemEx(0x020195DF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195DF) - Data: 00  returns 0x01 (0001ms, 1687ms total)
T76A4 036:004 JLINK_ReadMemEx(0x020195E0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195E0) - Data: 00  returns 0x01 (0000ms, 1687ms total)
T76A4 036:004 JLINK_ReadMemEx(0x020195E1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195E1) - Data: 00  returns 0x01 (0001ms, 1688ms total)
T76A4 036:005 JLINK_ReadMemEx(0x020195E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195E2) - Data: 00  returns 0x01 (0000ms, 1688ms total)
T76A4 036:005 JLINK_ReadMemEx(0x020195E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195E3) - Data: 00  returns 0x01 (0001ms, 1689ms total)
T76A4 036:006 JLINK_ReadMemEx(0x020195E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195E4) - Data: 00  returns 0x01 (0001ms, 1690ms total)
T76A4 036:007 JLINK_ReadMemEx(0x020195E5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195E5) - Data: 00  returns 0x01 (0000ms, 1690ms total)
T76A4 036:007 JLINK_ReadMemEx(0x020195E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195E6) - Data: 00  returns 0x01 (0001ms, 1691ms total)
T76A4 036:008 JLINK_ReadMemEx(0x020195E7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195E7) - Data: 00  returns 0x01 (0001ms, 1692ms total)
T76A4 036:009 JLINK_ReadMemEx(0x020195E8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195E8) - Data: 00  returns 0x01 (0000ms, 1692ms total)
T76A4 036:009 JLINK_ReadMemEx(0x020195E9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195E9) - Data: 00  returns 0x01 (0001ms, 1693ms total)
T76A4 036:010 JLINK_ReadMemEx(0x020195EA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195EA) - Data: 00  returns 0x01 (0000ms, 1693ms total)
T76A4 036:010 JLINK_ReadMemEx(0x020195EB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195EB) - Data: 00  returns 0x01 (0001ms, 1694ms total)
T76A4 036:011 JLINK_ReadMemEx(0x020195EC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195EC) - Data: 00  returns 0x01 (0001ms, 1695ms total)
T76A4 036:012 JLINK_ReadMemEx(0x020195ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195ED) - Data: 00  returns 0x01 (0000ms, 1695ms total)
T76A4 036:012 JLINK_ReadMemEx(0x020195EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195EE) - Data: 00  returns 0x01 (0001ms, 1696ms total)
T76A4 036:013 JLINK_ReadMemEx(0x020195EF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195EF) - Data: 00  returns 0x01 (0001ms, 1697ms total)
T76A4 036:014 JLINK_ReadMemEx(0x020195F0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195F0) - Data: 00  returns 0x01 (0000ms, 1697ms total)
T76A4 036:014 JLINK_ReadMemEx(0x020195F1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195F1) - Data: 00  returns 0x01 (0001ms, 1698ms total)
T76A4 036:015 JLINK_ReadMemEx(0x020195F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195F2) - Data: 00  returns 0x01 (0000ms, 1698ms total)
T76A4 036:015 JLINK_ReadMemEx(0x020195F3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195F3) - Data: 00  returns 0x01 (0001ms, 1699ms total)
T76A4 036:016 JLINK_ReadMemEx(0x020195F4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195F4) - Data: 00  returns 0x01 (0001ms, 1700ms total)
T76A4 036:017 JLINK_ReadMemEx(0x020195F5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195F5) - Data: 00  returns 0x01 (0000ms, 1700ms total)
T76A4 036:017 JLINK_ReadMemEx(0x020195F6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195F6) - Data: 00  returns 0x01 (0001ms, 1701ms total)
T76A4 036:018 JLINK_ReadMemEx(0x020195F7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195F7) - Data: 00  returns 0x01 (0001ms, 1702ms total)
T76A4 036:019 JLINK_ReadMemEx(0x020195F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195F8) - Data: 00  returns 0x01 (0000ms, 1702ms total)
T76A4 036:019 JLINK_ReadMemEx(0x020195F9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195F9) - Data: 00  returns 0x01 (0001ms, 1703ms total)
T76A4 036:020 JLINK_ReadMemEx(0x020195FA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195FA) - Data: 00  returns 0x01 (0000ms, 1703ms total)
T76A4 036:020 JLINK_ReadMemEx(0x020195FB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195FB) - Data: 00  returns 0x01 (0001ms, 1704ms total)
T76A4 036:021 JLINK_ReadMemEx(0x020195FC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195FC) - Data: 00  returns 0x01 (0001ms, 1705ms total)
T76A4 036:022 JLINK_ReadMemEx(0x020195FD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195FD) - Data: 00  returns 0x01 (0000ms, 1705ms total)
T76A4 036:022 JLINK_ReadMemEx(0x020195FE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195FE) - Data: 00  returns 0x01 (0001ms, 1706ms total)
T76A4 036:023 JLINK_ReadMemEx(0x020195FF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195FF) - Data: 00  returns 0x01 (0000ms, 1706ms total)
T76A4 036:024 JLINK_ReadMemEx(0x02019600, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019600) - Data: 00  returns 0x01 (0000ms, 1706ms total)
T76A4 036:024 JLINK_ReadMemEx(0x02019601, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019601) - Data: 00  returns 0x01 (0001ms, 1707ms total)
T76A4 036:025 JLINK_ReadMemEx(0x02019602, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019602) - Data: 00  returns 0x01 (0001ms, 1708ms total)
T76A4 036:026 JLINK_ReadMemEx(0x02019603, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019603) - Data: 00  returns 0x01 (0000ms, 1708ms total)
T76A4 036:026 JLINK_ReadMemEx(0x02019604, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019604) - Data: 00  returns 0x01 (0001ms, 1709ms total)
T76A4 036:027 JLINK_ReadMemEx(0x02019605, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019605) - Data: 00  returns 0x01 (0000ms, 1709ms total)
T76A4 036:027 JLINK_ReadMemEx(0x02019606, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019606) - Data: 00  returns 0x01 (0001ms, 1710ms total)
T76A4 036:028 JLINK_ReadMemEx(0x02019607, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019607) - Data: 00  returns 0x01 (0001ms, 1711ms total)
T76A4 036:029 JLINK_ReadMemEx(0x02019608, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019608) - Data: 00  returns 0x01 (0000ms, 1711ms total)
T76A4 036:029 JLINK_ReadMemEx(0x02019609, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019609) - Data: 00  returns 0x01 (0001ms, 1712ms total)
T76A4 036:030 JLINK_ReadMemEx(0x0201960A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201960A) - Data: 00  returns 0x01 (0001ms, 1713ms total)
T76A4 036:031 JLINK_ReadMemEx(0x0201960B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201960B) - Data: 00  returns 0x01 (0000ms, 1713ms total)
T76A4 036:031 JLINK_ReadMemEx(0x0201960C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201960C) - Data: 00  returns 0x01 (0001ms, 1714ms total)
T76A4 036:032 JLINK_ReadMemEx(0x0201960D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201960D) - Data: 00  returns 0x01 (0001ms, 1715ms total)
T76A4 036:033 JLINK_ReadMemEx(0x0201960E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201960E) - Data: 00  returns 0x01 (0000ms, 1715ms total)
T76A4 036:033 JLINK_ReadMemEx(0x0201960F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201960F) - Data: 00  returns 0x01 (0001ms, 1716ms total)
T76A4 036:034 JLINK_ReadMemEx(0x02019610, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019610) - Data: 00  returns 0x01 (0000ms, 1716ms total)
T76A4 036:034 JLINK_ReadMemEx(0x02019611, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019611) - Data: 00  returns 0x01 (0002ms, 1718ms total)
T76A4 036:036 JLINK_ReadMemEx(0x02019612, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019612) - Data: 00  returns 0x01 (0001ms, 1719ms total)
T76A4 036:037 JLINK_ReadMemEx(0x02019613, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019613) - Data: 00  returns 0x01 (0000ms, 1719ms total)
T76A4 036:037 JLINK_ReadMemEx(0x02019614, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019614) - Data: 00  returns 0x01 (0001ms, 1720ms total)
T76A4 036:038 JLINK_ReadMemEx(0x02019615, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019615) - Data: 00  returns 0x01 (0001ms, 1721ms total)
T76A4 036:039 JLINK_ReadMemEx(0x02019616, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019616) - Data: 00  returns 0x01 (0000ms, 1721ms total)
T76A4 036:039 JLINK_ReadMemEx(0x02019617, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019617) - Data: 00  returns 0x01 (0001ms, 1722ms total)
T76A4 036:040 JLINK_ReadMemEx(0x02019618, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019618) - Data: 00  returns 0x01 (0000ms, 1722ms total)
T76A4 036:040 JLINK_ReadMemEx(0x02019619, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019619) - Data: 00  returns 0x01 (0001ms, 1723ms total)
T76A4 036:041 JLINK_ReadMemEx(0x0201961A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201961A) - Data: 00  returns 0x01 (0001ms, 1724ms total)
T76A4 036:042 JLINK_ReadMemEx(0x0201961B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201961B) - Data: 00  returns 0x01 (0000ms, 1724ms total)
T76A4 036:042 JLINK_ReadMemEx(0x0201961C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201961C) - Data: 00  returns 0x01 (0001ms, 1725ms total)
T76A4 036:043 JLINK_ReadMemEx(0x0201961D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201961D) - Data: 00  returns 0x01 (0001ms, 1726ms total)
T76A4 036:044 JLINK_ReadMemEx(0x0201961E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201961E) - Data: 00  returns 0x01 (0000ms, 1726ms total)
T76A4 036:044 JLINK_ReadMemEx(0x0201961F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201961F) - Data: 00  returns 0x01 (0001ms, 1727ms total)
T76A4 036:045 JLINK_ReadMemEx(0x02019620, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019620) - Data: 00  returns 0x01 (0000ms, 1727ms total)
T76A4 036:045 JLINK_ReadMemEx(0x02019621, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019621) - Data: 00  returns 0x01 (0001ms, 1728ms total)
T76A4 036:046 JLINK_ReadMemEx(0x02019622, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019622) - Data: 00  returns 0x01 (0001ms, 1729ms total)
T76A4 036:047 JLINK_ReadMemEx(0x02019623, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019623) - Data: 00  returns 0x01 (0000ms, 1729ms total)
T76A4 036:047 JLINK_ReadMemEx(0x02019624, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019624) - Data: 00  returns 0x01 (0001ms, 1730ms total)
T76A4 036:048 JLINK_ReadMemEx(0x02019625, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019625) - Data: 00  returns 0x01 (0001ms, 1731ms total)
T76A4 036:049 JLINK_ReadMemEx(0x02019626, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019626) - Data: 00  returns 0x01 (0000ms, 1731ms total)
T76A4 036:049 JLINK_ReadMemEx(0x02019627, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019627) - Data: 00  returns 0x01 (0001ms, 1732ms total)
T76A4 036:050 JLINK_ReadMemEx(0x02019628, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019628) - Data: 00  returns 0x01 (0001ms, 1733ms total)
T76A4 036:051 JLINK_ReadMemEx(0x02019629, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019629) - Data: 00  returns 0x01 (0000ms, 1733ms total)
T76A4 036:051 JLINK_ReadMemEx(0x0201962A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962A) - Data: 00  returns 0x01 (0001ms, 1734ms total)
T76A4 036:052 JLINK_ReadMemEx(0x0201962B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962B) - Data: 00  returns 0x01 (0001ms, 1735ms total)
T76A4 036:053 JLINK_ReadMemEx(0x0201962C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962C) - Data: 00  returns 0x01 (0000ms, 1735ms total)
T76A4 036:053 JLINK_ReadMemEx(0x0201962D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962D) - Data: 00  returns 0x01 (0001ms, 1736ms total)
T76A4 036:054 JLINK_ReadMemEx(0x0201962E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962E) - Data: 00  returns 0x01 (0001ms, 1737ms total)
T76A4 036:055 JLINK_ReadMemEx(0x0201962F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201962F) - Data: 00  returns 0x01 (0000ms, 1737ms total)
T76A4 036:055 JLINK_ReadMemEx(0x02019630, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019630) - Data: 00  returns 0x01 (0001ms, 1738ms total)
T76A4 036:056 JLINK_ReadMemEx(0x02019631, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019631) - Data: 00  returns 0x01 (0001ms, 1739ms total)
T76A4 036:057 JLINK_ReadMemEx(0x02019632, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019632) - Data: 00  returns 0x01 (0000ms, 1739ms total)
T76A4 036:057 JLINK_ReadMemEx(0x02019633, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019633) - Data: 00  returns 0x01 (0001ms, 1740ms total)
T76A4 036:058 JLINK_ReadMemEx(0x02019634, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019634) - Data: 00  returns 0x01 (0001ms, 1741ms total)
T76A4 036:059 JLINK_ReadMemEx(0x02019635, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019635) - Data: 00  returns 0x01 (0000ms, 1741ms total)
T76A4 036:059 JLINK_ReadMemEx(0x02019636, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019636) - Data: 00  returns 0x01 (0001ms, 1742ms total)
T76A4 036:060 JLINK_ReadMemEx(0x02019637, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019637) - Data: 00  returns 0x01 (0001ms, 1743ms total)
T76A4 036:061 JLINK_ReadMemEx(0x02019638, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019638) - Data: 00  returns 0x01 (0000ms, 1743ms total)
T76A4 036:061 JLINK_ReadMemEx(0x02019639, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019639) - Data: 00  returns 0x01 (0001ms, 1744ms total)
T76A4 036:062 JLINK_ReadMemEx(0x0201963A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201963A) - Data: 00  returns 0x01 (0001ms, 1745ms total)
T76A4 036:063 JLINK_ReadMemEx(0x0201963B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201963B) - Data: 00  returns 0x01 (0000ms, 1745ms total)
T76A4 036:063 JLINK_ReadMemEx(0x0201963C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201963C) - Data: 00  returns 0x01 (0001ms, 1746ms total)
T76A4 036:064 JLINK_ReadMemEx(0x0201963D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201963D) - Data: 00  returns 0x01 (0000ms, 1746ms total)
T76A4 036:064 JLINK_ReadMemEx(0x0201963E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201963E) - Data: 00  returns 0x01 (0001ms, 1747ms total)
T76A4 036:065 JLINK_ReadMemEx(0x0201963F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201963F) - Data: 00  returns 0x01 (0001ms, 1748ms total)
T76A4 036:066 JLINK_ReadMemEx(0x02019640, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019640) - Data: 00  returns 0x01 (0000ms, 1748ms total)
T76A4 036:066 JLINK_ReadMemEx(0x02019641, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019641) - Data: 00  returns 0x01 (0001ms, 1749ms total)
T76A4 036:067 JLINK_ReadMemEx(0x02019642, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019642) - Data: 00  returns 0x01 (0000ms, 1749ms total)
T76A4 036:068 JLINK_ReadMemEx(0x02019643, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019643) - Data: 00  returns 0x01 (0000ms, 1749ms total)
T76A4 036:068 JLINK_ReadMemEx(0x02019644, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019644) - Data: 00  returns 0x01 (0001ms, 1750ms total)
T76A4 036:069 JLINK_ReadMemEx(0x02019645, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019645) - Data: 00  returns 0x01 (0000ms, 1750ms total)
T76A4 036:069 JLINK_ReadMemEx(0x02019646, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019646) - Data: 00  returns 0x01 (0001ms, 1751ms total)
T76A4 036:070 JLINK_ReadMemEx(0x02019647, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019647) - Data: 00  returns 0x01 (0001ms, 1752ms total)
T76A4 036:071 JLINK_ReadMemEx(0x02019648, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019648) - Data: 00  returns 0x01 (0000ms, 1752ms total)
T76A4 036:071 JLINK_ReadMemEx(0x02019649, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019649) - Data: 00  returns 0x01 (0001ms, 1753ms total)
T76A4 036:072 JLINK_ReadMemEx(0x0201964A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201964A) - Data: 00  returns 0x01 (0000ms, 1753ms total)
T76A4 036:072 JLINK_ReadMemEx(0x0201964B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201964B) - Data: 00  returns 0x01 (0001ms, 1754ms total)
T76A4 036:073 JLINK_ReadMemEx(0x0201964C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201964C) - Data: 00  returns 0x01 (0001ms, 1755ms total)
T76A4 036:074 JLINK_ReadMemEx(0x0201964D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201964D) - Data: 00  returns 0x01 (0001ms, 1756ms total)
T76A4 036:075 JLINK_ReadMemEx(0x0201964E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201964E) - Data: 00  returns 0x01 (0000ms, 1756ms total)
T76A4 036:075 JLINK_ReadMemEx(0x0201964F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201964F) - Data: 00  returns 0x01 (0001ms, 1757ms total)
T76A4 036:076 JLINK_ReadMemEx(0x02019650, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019650) - Data: 00  returns 0x01 (0000ms, 1757ms total)
T76A4 036:076 JLINK_ReadMemEx(0x02019651, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019651) - Data: 00  returns 0x01 (0001ms, 1758ms total)
T76A4 036:077 JLINK_ReadMemEx(0x02019652, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019652) - Data: 00  returns 0x01 (0001ms, 1759ms total)
T76A4 036:078 JLINK_ReadMemEx(0x02019653, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019653) - Data: 00  returns 0x01 (0000ms, 1759ms total)
T76A4 036:078 JLINK_ReadMemEx(0x02019654, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019654) - Data: 00  returns 0x01 (0001ms, 1760ms total)
T76A4 036:079 JLINK_ReadMemEx(0x02019655, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019655) - Data: 00  returns 0x01 (0001ms, 1761ms total)
T76A4 036:080 JLINK_ReadMemEx(0x02019656, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019656) - Data: 00  returns 0x01 (0000ms, 1761ms total)
T76A4 036:080 JLINK_ReadMemEx(0x02019657, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019657) - Data: 00  returns 0x01 (0001ms, 1762ms total)
T76A4 036:081 JLINK_ReadMemEx(0x02019658, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019658) - Data: 00  returns 0x01 (0001ms, 1763ms total)
T76A4 036:082 JLINK_ReadMemEx(0x02019659, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019659) - Data: 00  returns 0x01 (0000ms, 1763ms total)
T76A4 036:082 JLINK_ReadMemEx(0x0201965A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201965A) - Data: 00  returns 0x01 (0001ms, 1764ms total)
T76A4 036:083 JLINK_ReadMemEx(0x0201965B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201965B) - Data: 00  returns 0x01 (0001ms, 1765ms total)
T76A4 036:084 JLINK_ReadMemEx(0x0201965C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201965C) - Data: 00  returns 0x01 (0000ms, 1765ms total)
T76A4 036:084 JLINK_ReadMemEx(0x0201965D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201965D) - Data: 00  returns 0x01 (0001ms, 1766ms total)
T76A4 036:085 JLINK_ReadMemEx(0x0201965E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201965E) - Data: 00  returns 0x01 (0000ms, 1766ms total)
T76A4 036:085 JLINK_ReadMemEx(0x0201965F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201965F) - Data: 00  returns 0x01 (0001ms, 1767ms total)
T76A4 036:086 JLINK_ReadMemEx(0x02019660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019660) - Data: 00  returns 0x01 (0001ms, 1768ms total)
T76A4 036:087 JLINK_ReadMemEx(0x02019661, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019661) - Data: 00  returns 0x01 (0000ms, 1768ms total)
T76A4 036:087 JLINK_ReadMemEx(0x02019662, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019662) - Data: 00  returns 0x01 (0001ms, 1769ms total)
T76A4 036:088 JLINK_ReadMemEx(0x02019663, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019663) - Data: 00  returns 0x01 (0001ms, 1770ms total)
T76A4 036:089 JLINK_ReadMemEx(0x02019664, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019664) - Data: 00  returns 0x01 (0000ms, 1770ms total)
T76A4 036:089 JLINK_ReadMemEx(0x02019665, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019665) - Data: 00  returns 0x01 (0001ms, 1771ms total)
T76A4 036:090 JLINK_ReadMemEx(0x02019666, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019666) - Data: 00  returns 0x01 (0001ms, 1772ms total)
T76A4 036:091 JLINK_ReadMemEx(0x02019667, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019667) - Data: 00  returns 0x01 (0000ms, 1772ms total)
T76A4 036:091 JLINK_ReadMemEx(0x02019668, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019668) - Data: 00  returns 0x01 (0001ms, 1773ms total)
T76A4 036:092 JLINK_ReadMemEx(0x02019669, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019669) - Data: 00  returns 0x01 (0001ms, 1774ms total)
T76A4 036:093 JLINK_ReadMemEx(0x0201966A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201966A) - Data: 00  returns 0x01 (0000ms, 1774ms total)
T76A4 036:093 JLINK_ReadMemEx(0x0201966B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201966B) - Data: 00  returns 0x01 (0001ms, 1775ms total)
T76A4 036:094 JLINK_ReadMemEx(0x0201966C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201966C) - Data: 00  returns 0x01 (0001ms, 1776ms total)
T76A4 036:095 JLINK_ReadMemEx(0x0201966D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201966D) - Data: 00  returns 0x01 (0000ms, 1776ms total)
T76A4 036:095 JLINK_ReadMemEx(0x0201966E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201966E) - Data: 00  returns 0x01 (0001ms, 1777ms total)
T76A4 036:096 JLINK_ReadMemEx(0x0201966F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201966F) - Data: 00  returns 0x01 (0001ms, 1778ms total)
T76A4 036:097 JLINK_ReadMemEx(0x02019670, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019670) - Data: 00  returns 0x01 (0000ms, 1778ms total)
T76A4 036:097 JLINK_ReadMemEx(0x02019671, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019671) - Data: 00  returns 0x01 (0001ms, 1779ms total)
T76A4 036:098 JLINK_ReadMemEx(0x02019672, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019672) - Data: 00  returns 0x01 (0000ms, 1779ms total)
T76A4 036:098 JLINK_ReadMemEx(0x02019673, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019673) - Data: 00  returns 0x01 (0001ms, 1780ms total)
T76A4 036:099 JLINK_ReadMemEx(0x02019674, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019674) - Data: 00  returns 0x01 (0001ms, 1781ms total)
T76A4 036:100 JLINK_ReadMemEx(0x02019675, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019675) - Data: 00  returns 0x01 (0000ms, 1781ms total)
T76A4 036:100 JLINK_ReadMemEx(0x02019676, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019676) - Data: 00  returns 0x01 (0001ms, 1782ms total)
T76A4 036:101 JLINK_ReadMemEx(0x02019677, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019677) - Data: 00  returns 0x01 (0001ms, 1783ms total)
T76A4 036:102 JLINK_ReadMemEx(0x02019678, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019678) - Data: 00  returns 0x01 (0000ms, 1783ms total)
T76A4 036:102 JLINK_ReadMemEx(0x02019679, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019679) - Data: 00  returns 0x01 (0001ms, 1784ms total)
T76A4 036:103 JLINK_ReadMemEx(0x0201967A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201967A) - Data: 00  returns 0x01 (0001ms, 1785ms total)
T76A4 036:104 JLINK_ReadMemEx(0x0201967B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201967B) - Data: 00  returns 0x01 (0000ms, 1785ms total)
T76A4 036:104 JLINK_ReadMemEx(0x0201967C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201967C) - Data: 00  returns 0x01 (0001ms, 1786ms total)
T76A4 036:105 JLINK_ReadMemEx(0x0201967D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201967D) - Data: 00  returns 0x01 (0001ms, 1787ms total)
T76A4 036:106 JLINK_ReadMemEx(0x0201967E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201967E) - Data: 00  returns 0x01 (0000ms, 1787ms total)
T76A4 036:106 JLINK_ReadMemEx(0x0201967F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201967F) - Data: 00  returns 0x01 (0001ms, 1788ms total)
T76A4 036:107 JLINK_ReadMemEx(0x02019680, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019680) - Data: 00  returns 0x01 (0000ms, 1788ms total)
T76A4 036:107 JLINK_ReadMemEx(0x02019681, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019681) - Data: 00  returns 0x01 (0001ms, 1789ms total)
T76A4 036:108 JLINK_ReadMemEx(0x02019682, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019682) - Data: 00  returns 0x01 (0001ms, 1790ms total)
T76A4 036:109 JLINK_ReadMemEx(0x02019683, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019683) - Data: 00  returns 0x01 (0000ms, 1790ms total)
T76A4 036:109 JLINK_ReadMemEx(0x02019684, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019684) - Data: 00  returns 0x01 (0001ms, 1791ms total)
T76A4 036:110 JLINK_ReadMemEx(0x02019685, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019685) - Data: 00  returns 0x01 (0001ms, 1792ms total)
T76A4 036:111 JLINK_ReadMemEx(0x02019686, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019686) - Data: 00  returns 0x01 (0000ms, 1792ms total)
T76A4 036:111 JLINK_ReadMemEx(0x02019687, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019687) - Data: 00  returns 0x01 (0001ms, 1793ms total)
T76A4 036:112 JLINK_ReadMemEx(0x02019688, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019688) - Data: 00  returns 0x01 (0000ms, 1793ms total)
T76A4 036:112 JLINK_ReadMemEx(0x02019689, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019689) - Data: 00  returns 0x01 (0001ms, 1794ms total)
T76A4 036:113 JLINK_ReadMemEx(0x0201968A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201968A) - Data: 00  returns 0x01 (0001ms, 1795ms total)
T76A4 036:114 JLINK_ReadMemEx(0x0201968B, 0x0010 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(16 bytes @ 0x0201968B) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x10 (0001ms, 1796ms total)
T76A4 036:115 JLINK_ReadMemEx(0x0201968B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201968B) - Data: 00  returns 0x01 (0001ms, 1797ms total)
T76A4 036:116 JLINK_ReadMemEx(0x0201968C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201968C) - Data: 00  returns 0x01 (0000ms, 1797ms total)
T76A4 036:116 JLINK_ReadMemEx(0x0201968D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201968D) - Data: 00  returns 0x01 (0001ms, 1798ms total)
T76A4 036:117 JLINK_ReadMemEx(0x0201968E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201968E) - Data: 00  returns 0x01 (0001ms, 1799ms total)
T76A4 036:118 JLINK_ReadMemEx(0x0201968F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201968F) - Data: 00  returns 0x01 (0000ms, 1799ms total)
T76A4 036:118 JLINK_ReadMemEx(0x02019690, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019690) - Data: 00  returns 0x01 (0001ms, 1800ms total)
T76A4 036:119 JLINK_ReadMemEx(0x02019691, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019691) - Data: 00  returns 0x01 (0001ms, 1801ms total)
T76A4 036:120 JLINK_ReadMemEx(0x02019692, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019692) - Data: 00  returns 0x01 (0000ms, 1801ms total)
T76A4 036:120 JLINK_ReadMemEx(0x02019693, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019693) - Data: 00  returns 0x01 (0001ms, 1802ms total)
T76A4 036:121 JLINK_ReadMemEx(0x02019694, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019694) - Data: 00  returns 0x01 (0001ms, 1803ms total)
T76A4 036:122 JLINK_ReadMemEx(0x02019695, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019695) - Data: 00  returns 0x01 (0001ms, 1804ms total)
T76A4 036:123 JLINK_ReadMemEx(0x02019696, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019696) - Data: 00  returns 0x01 (0000ms, 1804ms total)
T76A4 036:123 JLINK_ReadMemEx(0x02019697, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019697) - Data: 00  returns 0x01 (0001ms, 1805ms total)
T76A4 036:124 JLINK_ReadMemEx(0x02019698, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019698) - Data: 00  returns 0x01 (0001ms, 1806ms total)
T76A4 036:125 JLINK_ReadMemEx(0x02019699, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019699) - Data: 00  returns 0x01 (0000ms, 1806ms total)
T76A4 036:125 JLINK_ReadMemEx(0x0201969A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201969A) - Data: 00  returns 0x01 (0001ms, 1807ms total)
T76A4 036:126 JLINK_ReadMemEx(0x0201969B, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x0201969B) - Data: 00 00 00 00 00 00 00 00 00 00  returns 0x0A (0001ms, 1808ms total)
T76A4 036:127 JLINK_ReadMemEx(0x020196A5, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196A5) - Data: 00 00  returns 0x02 (0001ms, 1809ms total)
T76A4 036:128 JLINK_ReadMemEx(0x020196A7, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196A7) - Data: 0A 00  returns 0x02 (0001ms, 1810ms total)
T76A4 036:129 JLINK_ReadMemEx(0x020196A9, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196A9) - Data: 00 00  returns 0x02 (0000ms, 1810ms total)
T76A4 036:129 JLINK_ReadMemEx(0x020196AB, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196AB) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1812ms total)
T76A4 036:131 JLINK_ReadMemEx(0x02019AAB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019AAB) - Data: A6  returns 0x01 (0001ms, 1813ms total)
T76A4 036:132 JLINK_ReadMemEx(0x02019AAC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019AAC) - Data: 27 02 F9 40  returns 0x04 (0000ms, 1813ms total)
T76A4 036:293 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 20 00 00 00  returns 0x04 (0000ms, 1813ms total)
T76A4 036:300 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 20 00 00 00  returns 0x04 (0001ms, 1814ms total)
T76A4 036:308 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 40  returns 0x01 (0000ms, 1814ms total)
T3F3C 036:323 JLINK_IsHalted()  returns FALSE (0000ms, 1814ms total)
T3F3C 036:425 JLINK_IsHalted()  returns FALSE (0000ms, 1814ms total)
T3F3C 036:526 JLINK_IsHalted()  returns FALSE (0000ms, 1814ms total)
T76A4 036:789 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 21 00 00 00  returns 0x04 (0001ms, 1815ms total)
T76A4 036:804 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 20 00 00 00  returns 0x04 (0001ms, 1816ms total)
T76A4 036:812 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 41  returns 0x01 (0001ms, 1817ms total)
T3F3C 036:835 JLINK_IsHalted()  returns FALSE (0001ms, 1818ms total)
T3F3C 036:937 JLINK_IsHalted()  returns FALSE (0000ms, 1817ms total)
T3F3C 037:038 JLINK_IsHalted()  returns FALSE (0000ms, 1817ms total)
T76A4 037:299 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 21 00 00 00  returns 0x04 (0000ms, 1817ms total)
T76A4 037:306 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 21 00 00 00  returns 0x04 (0001ms, 1818ms total)
T76A4 037:314 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 42  returns 0x01 (0000ms, 1818ms total)
T3F3C 037:335 JLINK_IsHalted()  returns FALSE (0001ms, 1819ms total)
T3F3C 037:438 JLINK_IsHalted()  returns FALSE (0000ms, 1818ms total)
T3F3C 037:540 JLINK_IsHalted()  returns FALSE (0000ms, 1818ms total)
T3F3C 037:641 JLINK_IsHalted()  returns FALSE (0000ms, 1818ms total)
T76A4 037:729 JLINK_ReadMemEx(0x0201958C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201958C) - Data: 00  returns 0x01 (0001ms, 1819ms total)
T76A4 037:730 JLINK_ReadMemEx(0x0201958D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201958D) - Data: 01  returns 0x01 (0001ms, 1820ms total)
T76A4 037:731 JLINK_ReadMemEx(0x0201958E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201958E) - Data: 02  returns 0x01 (0001ms, 1821ms total)
T76A4 037:732 JLINK_ReadMemEx(0x0201958F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201958F) - Data: 03  returns 0x01 (0000ms, 1821ms total)
T76A4 037:732 JLINK_ReadMemEx(0x02019590, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019590) - Data: 04  returns 0x01 (0001ms, 1822ms total)
T76A4 037:733 JLINK_ReadMemEx(0x02019591, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019591) - Data: 05  returns 0x01 (0001ms, 1823ms total)
T76A4 037:734 JLINK_ReadMemEx(0x02019592, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019592) - Data: 06  returns 0x01 (0000ms, 1823ms total)
T76A4 037:734 JLINK_ReadMemEx(0x02019593, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019593) - Data: 07  returns 0x01 (0001ms, 1824ms total)
T76A4 037:735 JLINK_ReadMemEx(0x02019594, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019594) - Data: 08  returns 0x01 (0000ms, 1824ms total)
T76A4 037:735 JLINK_ReadMemEx(0x02019595, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019595) - Data: 09  returns 0x01 (0001ms, 1825ms total)
T76A4 037:736 JLINK_ReadMemEx(0x02019596, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019596) - Data: 00  returns 0x01 (0001ms, 1826ms total)
T76A4 037:737 JLINK_ReadMemEx(0x02019597, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019597) - Data: 00  returns 0x01 (0000ms, 1826ms total)
T76A4 037:737 JLINK_ReadMemEx(0x02019598, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019598) - Data: 00  returns 0x01 (0001ms, 1827ms total)
T76A4 037:738 JLINK_ReadMemEx(0x02019599, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019599) - Data: 00  returns 0x01 (0001ms, 1828ms total)
T76A4 037:739 JLINK_ReadMemEx(0x0201959A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959A) - Data: 00  returns 0x01 (0001ms, 1829ms total)
T76A4 037:740 JLINK_ReadMemEx(0x0201959B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959B) - Data: 00  returns 0x01 (0000ms, 1829ms total)
T76A4 037:740 JLINK_ReadMemEx(0x0201959C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959C) - Data: 00  returns 0x01 (0001ms, 1830ms total)
T76A4 037:741 JLINK_ReadMemEx(0x0201959D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959D) - Data: 00  returns 0x01 (0000ms, 1830ms total)
T76A4 037:741 JLINK_ReadMemEx(0x0201959E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959E) - Data: 00  returns 0x01 (0001ms, 1831ms total)
T76A4 037:742 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 00  returns 0x01 (0001ms, 1832ms total)
T76A4 037:743 JLINK_ReadMemEx(0x020195A0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A0) - Data: 00  returns 0x01 (0001ms, 1833ms total)
T76A4 037:744 JLINK_ReadMemEx(0x020195A1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A1) - Data: 00  returns 0x01 (0000ms, 1833ms total)
T76A4 037:744 JLINK_ReadMemEx(0x020195A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A2) - Data: 00  returns 0x01 (0001ms, 1834ms total)
T76A4 037:745 JLINK_ReadMemEx(0x020195A3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A3) - Data: 00  returns 0x01 (0001ms, 1835ms total)
T76A4 037:746 JLINK_ReadMemEx(0x020195A4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A4) - Data: 00  returns 0x01 (0000ms, 1835ms total)
T76A4 037:746 JLINK_ReadMemEx(0x020195A5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A5) - Data: 00  returns 0x01 (0001ms, 1836ms total)
T76A4 037:747 JLINK_ReadMemEx(0x020195A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A6) - Data: 00  returns 0x01 (0001ms, 1837ms total)
T76A4 037:748 JLINK_ReadMemEx(0x020195A7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A7) - Data: 00  returns 0x01 (0000ms, 1837ms total)
T76A4 037:748 JLINK_ReadMemEx(0x020195A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A8) - Data: 00  returns 0x01 (0001ms, 1838ms total)
T76A4 037:749 JLINK_ReadMemEx(0x020195A9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195A9) - Data: 00  returns 0x01 (0000ms, 1838ms total)
T76A4 037:749 JLINK_ReadMemEx(0x020195AA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195AA) - Data: 00  returns 0x01 (0001ms, 1839ms total)
T76A4 037:750 JLINK_ReadMemEx(0x020195AB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195AB) - Data: 00  returns 0x01 (0001ms, 1840ms total)
T76A4 037:751 JLINK_ReadMemEx(0x020195AC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195AC) - Data: 00  returns 0x01 (0000ms, 1840ms total)
T76A4 037:751 JLINK_ReadMemEx(0x020195AD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195AD) - Data: 00  returns 0x01 (0001ms, 1841ms total)
T76A4 037:752 JLINK_ReadMemEx(0x020195AE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195AE) - Data: 00  returns 0x01 (0001ms, 1842ms total)
T76A4 037:753 JLINK_ReadMemEx(0x020195AF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195AF) - Data: 00  returns 0x01 (0000ms, 1842ms total)
T76A4 037:753 JLINK_ReadMemEx(0x020195B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B0) - Data: 00  returns 0x01 (0001ms, 1843ms total)
T76A4 037:754 JLINK_ReadMemEx(0x020195B1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B1) - Data: 00  returns 0x01 (0001ms, 1844ms total)
T76A4 037:755 JLINK_ReadMemEx(0x020195B2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B2) - Data: 00  returns 0x01 (0000ms, 1844ms total)
T76A4 037:755 JLINK_ReadMemEx(0x020195B3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B3) - Data: 00  returns 0x01 (0001ms, 1845ms total)
T76A4 037:756 JLINK_ReadMemEx(0x020195B4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B4) - Data: 00  returns 0x01 (0001ms, 1846ms total)
T76A4 037:757 JLINK_ReadMemEx(0x020195B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B5) - Data: 00  returns 0x01 (0000ms, 1846ms total)
T76A4 037:757 JLINK_ReadMemEx(0x020195B6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B6) - Data: 00  returns 0x01 (0001ms, 1847ms total)
T76A4 037:758 JLINK_ReadMemEx(0x020195B7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B7) - Data: 00  returns 0x01 (0001ms, 1848ms total)
T76A4 037:759 JLINK_ReadMemEx(0x020195B8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B8) - Data: 00  returns 0x01 (0000ms, 1848ms total)
T76A4 037:759 JLINK_ReadMemEx(0x020195B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195B9) - Data: 00  returns 0x01 (0001ms, 1849ms total)
T76A4 037:760 JLINK_ReadMemEx(0x020195BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020195BA) - Data: 00  returns 0x01 (0001ms, 1850ms total)
T76A4 037:924 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 22 00 00 00  returns 0x04 (0001ms, 1851ms total)
T76A4 037:932 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 21 00 00 00  returns 0x04 (0000ms, 1851ms total)
T76A4 037:939 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 43  returns 0x01 (0001ms, 1852ms total)
T3F3C 037:960 JLINK_IsHalted()  returns FALSE (0001ms, 1853ms total)
T3F3C 038:062 JLINK_IsHalted()  returns FALSE (0000ms, 1852ms total)
T3F3C 038:163 JLINK_IsHalted()  returns FALSE (0001ms, 1853ms total)
T76A4 038:428 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 22 00 00 00  returns 0x04 (0001ms, 1853ms total)
T76A4 038:435 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 22 00 00 00  returns 0x04 (0001ms, 1854ms total)
T76A4 038:443 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 44  returns 0x01 (0001ms, 1855ms total)
T3F3C 038:465 JLINK_IsHalted()  returns FALSE (0000ms, 1855ms total)
T3F3C 038:567 JLINK_IsHalted()  returns FALSE (0000ms, 1855ms total)
T3F3C 038:668 JLINK_IsHalted()  returns FALSE (0000ms, 1855ms total)
T3F3C 038:770 JLINK_IsHalted()  returns FALSE (0000ms, 1855ms total)
T76A4 039:029 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 23 00 00 00  returns 0x04 (0001ms, 1856ms total)
T76A4 039:037 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 23 00 00 00  returns 0x04 (0001ms, 1857ms total)
T76A4 039:051 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 46  returns 0x01 (0001ms, 1858ms total)
T3F3C 039:073 JLINK_IsHalted()  returns FALSE (0000ms, 1858ms total)
T3F3C 039:174 JLINK_IsHalted()  returns FALSE (0000ms, 1858ms total)
T3F3C 039:276 JLINK_IsHalted()  returns FALSE (0000ms, 1858ms total)
T3F3C 039:377 JLINK_IsHalted()  returns FALSE (0000ms, 1858ms total)
T76A4 039:638 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 23 00 00 00  returns 0x04 (0001ms, 1859ms total)
T76A4 039:646 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 23 00 00 00  returns 0x04 (0001ms, 1860ms total)
T76A4 039:654 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 46  returns 0x01 (0001ms, 1861ms total)
T3F3C 039:670 JLINK_IsHalted()  returns FALSE (0000ms, 1861ms total)
T3F3C 039:772 JLINK_IsHalted()  returns FALSE (0000ms, 1861ms total)
T3F3C 039:873 JLINK_IsHalted()  returns FALSE (0000ms, 1861ms total)
T3F3C 039:974 JLINK_IsHalted()  returns FALSE (0000ms, 1861ms total)
T76A4 040:236 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 24 00 00 00  returns 0x04 (0001ms, 1862ms total)
T76A4 040:244 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 24 00 00 00  returns 0x04 (0001ms, 1863ms total)
T76A4 040:252 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 48  returns 0x01 (0001ms, 1864ms total)
T3F3C 040:268 JLINK_IsHalted()  returns FALSE (0000ms, 1864ms total)
T3F3C 040:370 JLINK_IsHalted()  returns FALSE (0000ms, 1864ms total)
T3F3C 040:471 JLINK_IsHalted()  returns FALSE (0000ms, 1864ms total)
T3F3C 040:573 JLINK_IsHalted()  returns FALSE (0000ms, 1864ms total)
T76A4 040:834 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 24 00 00 00  returns 0x04 (0001ms, 1865ms total)
T76A4 040:842 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 24 00 00 00  returns 0x04 (0000ms, 1865ms total)
T76A4 040:849 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 49  returns 0x01 (0001ms, 1866ms total)
T3F3C 040:871 JLINK_IsHalted()  returns FALSE (0000ms, 1866ms total)
T3F3C 040:972 JLINK_IsHalted()  returns FALSE (0000ms, 1866ms total)
T3F3C 041:073 JLINK_IsHalted()  returns FALSE (0000ms, 1866ms total)
T3F3C 041:174 JLINK_IsHalted()  returns FALSE (0001ms, 1867ms total)
T76A4 041:436 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 25 00 00 00  returns 0x04 (0000ms, 1866ms total)
T76A4 041:443 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 25 00 00 00  returns 0x04 (0001ms, 1867ms total)
T76A4 041:451 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 4A  returns 0x01 (0000ms, 1867ms total)
T3F3C 041:472 JLINK_IsHalted()  returns FALSE (0001ms, 1868ms total)
T3F3C 041:573 JLINK_IsHalted()  returns FALSE (0001ms, 1868ms total)
T3F3C 041:674 JLINK_IsHalted()  returns FALSE (0000ms, 1867ms total)
T3F3C 041:776 JLINK_IsHalted()  returns FALSE (0000ms, 1867ms total)
T76A4 042:035 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 26 00 00 00  returns 0x04 (0001ms, 1868ms total)
T76A4 042:050 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 25 00 00 00  returns 0x04 (0000ms, 1868ms total)
T76A4 042:057 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 4B  returns 0x01 (0001ms, 1869ms total)
T3F3C 042:078 JLINK_IsHalted()  returns FALSE (0001ms, 1870ms total)
T3F3C 042:180 JLINK_IsHalted()  returns FALSE (0000ms, 1869ms total)
T3F3C 042:281 JLINK_IsHalted()  returns FALSE (0000ms, 1869ms total)
T3F3C 042:383 JLINK_IsHalted()  returns FALSE (0000ms, 1869ms total)
T76A4 042:644 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 26 00 00 00  returns 0x04 (0001ms, 1870ms total)
T76A4 042:652 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 26 00 00 00  returns 0x04 (0001ms, 1871ms total)
T76A4 042:659 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 4C  returns 0x01 (0001ms, 1872ms total)
T3F3C 042:681 JLINK_IsHalted()  returns FALSE (0001ms, 1873ms total)
T3F3C 042:783 JLINK_IsHalted()  returns FALSE (0001ms, 1873ms total)
T3F3C 042:885 JLINK_IsHalted()  returns FALSE (0000ms, 1872ms total)
T3F3C 042:986 JLINK_IsHalted()  returns FALSE (0000ms, 1872ms total)
T76A4 043:249 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 27 00 00 00  returns 0x04 (0000ms, 1872ms total)
T76A4 043:256 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 27 00 00 00  returns 0x04 (0001ms, 1873ms total)
T76A4 043:270 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 4E  returns 0x01 (0001ms, 1874ms total)
T3F3C 043:292 JLINK_IsHalted()  returns FALSE (0000ms, 1874ms total)
T3F3C 043:393 JLINK_IsHalted()  returns FALSE (0000ms, 1874ms total)
T3F3C 043:494 JLINK_IsHalted()  returns FALSE (0001ms, 1875ms total)
T3F3C 043:595 JLINK_IsHalted()  returns FALSE (0000ms, 1874ms total)
T76A4 043:855 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 27 00 00 00  returns 0x04 (0001ms, 1875ms total)
T76A4 043:863 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 27 00 00 00  returns 0x04 (0001ms, 1876ms total)
T76A4 043:870 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 4E  returns 0x01 (0001ms, 1877ms total)
T3F3C 043:885 JLINK_IsHalted()  returns FALSE (0001ms, 1878ms total)
T3F3C 043:986 JLINK_IsHalted()  returns FALSE (0001ms, 1878ms total)
T3F3C 044:088 JLINK_IsHalted()  returns FALSE (0001ms, 1878ms total)
T3F3C 044:190 JLINK_IsHalted()  returns FALSE (0000ms, 1877ms total)
T76A4 044:449 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 28 00 00 00  returns 0x04 (0001ms, 1878ms total)
T76A4 044:457 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 28 00 00 00  returns 0x04 (0001ms, 1879ms total)
T76A4 044:464 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 50  returns 0x01 (0001ms, 1880ms total)
T3F3C 044:479 JLINK_IsHalted()  returns FALSE (0000ms, 1880ms total)
T3F3C 044:580 JLINK_IsHalted()  returns FALSE (0000ms, 1880ms total)
T3F3C 044:681 JLINK_IsHalted()  returns FALSE (0000ms, 1880ms total)
T3F3C 044:783 JLINK_IsHalted()  returns FALSE (0000ms, 1880ms total)
T76A4 045:044 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 29 00 00 00  returns 0x04 (0001ms, 1881ms total)
T76A4 045:059 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 28 00 00 00  returns 0x04 (0000ms, 1881ms total)
T76A4 045:066 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 51  returns 0x01 (0001ms, 1882ms total)
T3F3C 045:087 JLINK_IsHalted()  returns FALSE (0001ms, 1883ms total)
T3F3C 045:189 JLINK_IsHalted()  returns FALSE (0001ms, 1883ms total)
T3F3C 045:290 JLINK_IsHalted()  returns FALSE (0000ms, 1882ms total)
T3F3C 045:392 JLINK_IsHalted()  returns FALSE (0000ms, 1882ms total)
T76A4 045:653 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 29 00 00 00  returns 0x04 (0001ms, 1883ms total)
T76A4 045:661 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 29 00 00 00  returns 0x04 (0000ms, 1883ms total)
T76A4 045:668 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 52  returns 0x01 (0001ms, 1884ms total)
T3F3C 045:689 JLINK_IsHalted()  returns FALSE (0001ms, 1885ms total)
T3F3C 045:791 JLINK_IsHalted()  returns FALSE (0001ms, 1885ms total)
T3F3C 045:893 JLINK_IsHalted()  returns FALSE (0000ms, 1884ms total)
T3F3C 045:995 JLINK_IsHalted()  returns FALSE (0000ms, 1884ms total)
T76A4 046:257 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 2A 00 00 00  returns 0x04 (0001ms, 1885ms total)
T76A4 046:265 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 2A 00 00 00  returns 0x04 (0001ms, 1886ms total)
T76A4 046:280 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 54  returns 0x01 (0001ms, 1887ms total)
T3F3C 046:301 JLINK_IsHalted()  returns FALSE (0001ms, 1888ms total)
T3F3C 046:403 JLINK_IsHalted()  returns FALSE (0000ms, 1887ms total)
T3F3C 046:504 JLINK_IsHalted()  returns FALSE (0001ms, 1888ms total)
T76A4 046:766 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 2A 00 00 00  returns 0x04 (0000ms, 1887ms total)
T76A4 046:773 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 2A 00 00 00  returns 0x04 (0001ms, 1888ms total)
T76A4 046:781 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 54  returns 0x01 (0001ms, 1889ms total)
T3F3C 046:796 JLINK_IsHalted()  returns FALSE (0000ms, 1889ms total)
T3F3C 046:898 JLINK_IsHalted()  returns FALSE (0000ms, 1889ms total)
T3F3C 046:999 JLINK_IsHalted()  returns FALSE (0000ms, 1889ms total)
T3F3C 047:101 JLINK_IsHalted()  returns FALSE (0001ms, 1890ms total)
T76A4 047:362 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 2B 00 00 00  returns 0x04 (0001ms, 1890ms total)
T76A4 047:369 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 2B 00 00 00  returns 0x04 (0001ms, 1891ms total)
T76A4 047:377 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 56  returns 0x01 (0000ms, 1891ms total)
T3F3C 047:391 JLINK_IsHalted()  returns FALSE (0001ms, 1892ms total)
T3F3C 047:493 JLINK_IsHalted()  returns FALSE (0000ms, 1891ms total)
T3F3C 047:594 JLINK_IsHalted()  returns FALSE (0000ms, 1891ms total)
T3F3C 047:695 JLINK_IsHalted()  returns FALSE (0001ms, 1892ms total)
T76A4 047:958 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 2C 00 00 00  returns 0x04 (0000ms, 1891ms total)
T76A4 047:972 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 2B 00 00 00  returns 0x04 (0001ms, 1892ms total)
T76A4 047:980 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 57  returns 0x01 (0000ms, 1892ms total)
T3F3C 048:001 JLINK_IsHalted()  returns FALSE (0001ms, 1893ms total)
T3F3C 048:103 JLINK_IsHalted()  returns FALSE (0000ms, 1892ms total)
T3F3C 048:205 JLINK_IsHalted()  returns FALSE (0001ms, 1893ms total)
T76A4 048:465 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 2C 00 00 00  returns 0x04 (0001ms, 1893ms total)
T76A4 048:473 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 2C 00 00 00  returns 0x04 (0000ms, 1893ms total)
T76A4 048:480 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 58  returns 0x01 (0001ms, 1894ms total)
T3F3C 048:501 JLINK_IsHalted()  returns FALSE (0001ms, 1895ms total)
T3F3C 048:603 JLINK_IsHalted()  returns FALSE (0001ms, 1895ms total)
T3F3C 048:705 JLINK_IsHalted()  returns FALSE (0000ms, 1894ms total)
T3F3C 048:806 JLINK_IsHalted()  returns FALSE (0000ms, 1894ms total)
T76A4 049:069 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 2D 00 00 00  returns 0x04 (0000ms, 1894ms total)
T76A4 049:076 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 2C 00 00 00  returns 0x04 (0001ms, 1895ms total)
T76A4 049:083 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 59  returns 0x01 (0001ms, 1896ms total)
T3F3C 049:105 JLINK_IsHalted()  returns FALSE (0001ms, 1897ms total)
T3F3C 049:207 JLINK_IsHalted()  returns FALSE (0000ms, 1896ms total)
T3F3C 049:308 JLINK_IsHalted()  returns FALSE (0000ms, 1896ms total)
T3F3C 049:410 JLINK_IsHalted()  returns FALSE (0000ms, 1896ms total)
T76A4 049:673 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 2D 00 00 00  returns 0x04 (0000ms, 1896ms total)
T76A4 049:680 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 2D 00 00 00  returns 0x04 (0001ms, 1897ms total)
T76A4 049:688 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 5A  returns 0x01 (0000ms, 1897ms total)
T3F3C 049:709 JLINK_IsHalted()  returns FALSE (0001ms, 1898ms total)
T3F3C 049:810 JLINK_IsHalted()  returns FALSE (0000ms, 1897ms total)
T3F3C 049:911 JLINK_IsHalted()  returns FALSE (0000ms, 1897ms total)
T3F3C 050:012 JLINK_IsHalted()  returns FALSE (0000ms, 1897ms total)
T76A4 050:276 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 2E 00 00 00  returns 0x04 (0001ms, 1898ms total)
T76A4 050:284 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 2E 00 00 00  returns 0x04 (0000ms, 1898ms total)
T76A4 050:298 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 5C  returns 0x01 (0000ms, 1898ms total)
T3F3C 050:319 JLINK_IsHalted()  returns FALSE (0001ms, 1899ms total)
T3F3C 050:421 JLINK_IsHalted()  returns FALSE (0000ms, 1898ms total)
T3F3C 050:522 JLINK_IsHalted()  returns FALSE (0000ms, 1898ms total)
T76A4 050:781 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 2E 00 00 00  returns 0x04 (0001ms, 1899ms total)
T76A4 050:789 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 2E 00 00 00  returns 0x04 (0001ms, 1900ms total)
T76A4 050:797 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 5C  returns 0x01 (0000ms, 1900ms total)
T3F3C 050:811 JLINK_IsHalted()  returns FALSE (0001ms, 1901ms total)
T3F3C 050:913 JLINK_IsHalted()  returns FALSE (0000ms, 1900ms total)
T3F3C 051:014 JLINK_IsHalted()  returns FALSE (0000ms, 1900ms total)
T3F3C 051:116 JLINK_IsHalted()  returns FALSE (0000ms, 1900ms total)
T76A4 051:377 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 2F 00 00 00  returns 0x04 (0000ms, 1900ms total)
T76A4 051:384 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 2F 00 00 00  returns 0x04 (0001ms, 1901ms total)
T76A4 051:392 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 5E  returns 0x01 (0001ms, 1902ms total)
T3F3C 051:407 JLINK_IsHalted()  returns FALSE (0001ms, 1903ms total)
T3F3C 051:509 JLINK_IsHalted()  returns FALSE (0000ms, 1902ms total)
T3F3C 051:610 JLINK_IsHalted()  returns FALSE (0000ms, 1902ms total)
T3F3C 051:711 JLINK_IsHalted()  returns FALSE (0001ms, 1903ms total)
T76A4 051:974 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 30 00 00 00  returns 0x04 (0001ms, 1903ms total)
T76A4 051:989 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 2F 00 00 00  returns 0x04 (0000ms, 1903ms total)
T76A4 051:996 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 5F  returns 0x01 (0001ms, 1904ms total)
T3F3C 052:017 JLINK_IsHalted()  returns FALSE (0001ms, 1905ms total)
T3F3C 052:119 JLINK_IsHalted()  returns FALSE (0000ms, 1904ms total)
T3F3C 052:221 JLINK_IsHalted()  returns FALSE (0000ms, 1904ms total)
T76A4 052:484 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 30 00 00 00  returns 0x04 (0001ms, 1905ms total)
T76A4 052:492 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 30 00 00 00  returns 0x04 (0000ms, 1905ms total)
T76A4 052:499 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 60  returns 0x01 (0001ms, 1906ms total)
T3F3C 052:520 JLINK_IsHalted()  returns FALSE (0001ms, 1907ms total)
T3F3C 052:622 JLINK_IsHalted()  returns FALSE (0000ms, 1906ms total)
T3F3C 052:723 JLINK_IsHalted()  returns FALSE (0000ms, 1906ms total)
T3F3C 052:824 JLINK_IsHalted()  returns FALSE (0000ms, 1906ms total)
T76A4 053:084 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 31 00 00 00  returns 0x04 (0001ms, 1907ms total)
T76A4 053:092 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 30 00 00 00  returns 0x04 (0000ms, 1907ms total)
T76A4 053:099 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 61  returns 0x01 (0001ms, 1908ms total)
T3F3C 053:120 JLINK_IsHalted()  returns FALSE (0001ms, 1909ms total)
T3F3C 053:221 JLINK_IsHalted()  returns FALSE (0001ms, 1909ms total)
T3F3C 053:323 JLINK_IsHalted()  returns FALSE (0000ms, 1908ms total)
T3F3C 053:425 JLINK_IsHalted()  returns FALSE (0000ms, 1908ms total)
T76A4 053:688 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 31 00 00 00  returns 0x04 (0001ms, 1909ms total)
T76A4 053:695 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 31 00 00 00  returns 0x04 (0001ms, 1910ms total)
T76A4 053:703 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 62  returns 0x01 (0001ms, 1911ms total)
T3F3C 053:724 JLINK_IsHalted()  returns FALSE (0001ms, 1912ms total)
T3F3C 053:825 JLINK_IsHalted()  returns FALSE (0000ms, 1911ms total)
T3F3C 053:926 JLINK_IsHalted()  returns FALSE (0000ms, 1911ms total)
T3F3C 054:028 JLINK_IsHalted()  returns FALSE (0000ms, 1911ms total)
T76A4 054:289 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 32 00 00 00  returns 0x04 (0001ms, 1912ms total)
T76A4 054:297 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 32 00 00 00  returns 0x04 (0001ms, 1913ms total)
T76A4 054:311 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 64  returns 0x01 (0001ms, 1914ms total)
T3F3C 054:332 JLINK_IsHalted()  returns FALSE (0001ms, 1915ms total)
T3F3C 054:434 JLINK_IsHalted()  returns FALSE (0000ms, 1914ms total)
T3F3C 054:535 JLINK_IsHalted()  returns FALSE (0000ms, 1914ms total)
T76A4 054:795 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 32 00 00 00  returns 0x04 (0001ms, 1915ms total)
T76A4 054:803 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 32 00 00 00  returns 0x04 (0000ms, 1915ms total)
T76A4 054:811 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 64  returns 0x01 (0001ms, 1916ms total)
T3F3C 054:826 JLINK_IsHalted()  returns FALSE (0000ms, 1916ms total)
T3F3C 054:927 JLINK_IsHalted()  returns FALSE (0001ms, 1917ms total)
T3F3C 055:029 JLINK_IsHalted()  returns FALSE (0000ms, 1916ms total)
T3F3C 055:130 JLINK_IsHalted()  returns FALSE (0000ms, 1916ms total)
T76A4 055:393 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 33 00 00 00  returns 0x04 (0000ms, 1916ms total)
T76A4 055:400 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 33 00 00 00  returns 0x04 (0001ms, 1917ms total)
T76A4 055:408 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 66  returns 0x01 (0001ms, 1918ms total)
T3F3C 055:422 JLINK_IsHalted()  returns FALSE (0001ms, 1919ms total)
T3F3C 055:525 JLINK_IsHalted()  returns FALSE (0000ms, 1918ms total)
T3F3C 055:626 JLINK_IsHalted()  returns FALSE (0001ms, 1919ms total)
T3F3C 055:727 JLINK_IsHalted()  returns FALSE (0000ms, 1918ms total)
T76A4 055:989 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 33 00 00 00  returns 0x04 (0001ms, 1919ms total)
T76A4 055:997 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 33 00 00 00  returns 0x04 (0001ms, 1920ms total)
T76A4 056:004 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 66  returns 0x01 (0001ms, 1921ms total)
T3F3C 056:019 JLINK_IsHalted()  returns FALSE (0000ms, 1921ms total)
T3F3C 056:120 JLINK_IsHalted()  returns FALSE (0000ms, 1921ms total)
T3F3C 056:221 JLINK_IsHalted()  returns FALSE (0000ms, 1921ms total)
T3F3C 056:322 JLINK_IsHalted()  returns FALSE (0000ms, 1921ms total)
T76A4 056:584 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 34 00 00 00  returns 0x04 (0001ms, 1922ms total)
T76A4 056:593 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 34 00 00 00  returns 0x04 (0001ms, 1923ms total)
T76A4 056:600 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 68  returns 0x01 (0001ms, 1924ms total)
T3F3C 056:615 JLINK_IsHalted()  returns FALSE (0000ms, 1924ms total)
T3F3C 056:716 JLINK_IsHalted()  returns FALSE (0001ms, 1925ms total)
T3F3C 056:817 JLINK_IsHalted()  returns FALSE (0000ms, 1924ms total)
T3F3C 056:918 JLINK_IsHalted()  returns FALSE (0000ms, 1924ms total)
T76A4 057:180 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 35 00 00 00  returns 0x04 (0001ms, 1925ms total)
T76A4 057:195 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 34 00 00 00  returns 0x04 (0001ms, 1926ms total)
T76A4 057:203 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 69  returns 0x01 (0000ms, 1926ms total)
T3F3C 057:224 JLINK_IsHalted()  returns FALSE (0000ms, 1926ms total)
T3F3C 057:325 JLINK_IsHalted()  returns FALSE (0000ms, 1926ms total)
T3F3C 057:427 JLINK_IsHalted()  returns FALSE (0001ms, 1927ms total)
T76A4 057:688 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 35 00 00 00  returns 0x04 (0001ms, 1927ms total)
T76A4 057:696 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 35 00 00 00  returns 0x04 (0000ms, 1927ms total)
T76A4 057:703 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 6A  returns 0x01 (0001ms, 1928ms total)
T3F3C 057:724 JLINK_IsHalted()  returns FALSE (0001ms, 1929ms total)
T3F3C 057:825 JLINK_IsHalted()  returns FALSE (0000ms, 1928ms total)
T3F3C 057:926 JLINK_IsHalted()  returns FALSE (0000ms, 1928ms total)
T3F3C 058:028 JLINK_IsHalted()  returns FALSE (0000ms, 1928ms total)
T76A4 058:291 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 36 00 00 00  returns 0x04 (0001ms, 1929ms total)
T76A4 058:299 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 36 00 00 00  returns 0x04 (0000ms, 1929ms total)
T76A4 058:313 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 6C  returns 0x01 (0001ms, 1930ms total)
T3F3C 058:334 JLINK_IsHalted()  returns FALSE (0001ms, 1931ms total)
T3F3C 058:435 JLINK_IsHalted()  returns FALSE (0000ms, 1930ms total)
T3F3C 058:536 JLINK_IsHalted()  returns FALSE (0001ms, 1931ms total)
T76A4 058:797 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 36 00 00 00  returns 0x04 (0001ms, 1931ms total)
T76A4 058:804 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 36 00 00 00  returns 0x04 (0001ms, 1932ms total)
T76A4 058:813 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 6C  returns 0x01 (0001ms, 1933ms total)
T3F3C 058:828 JLINK_IsHalted()  returns FALSE (0000ms, 1933ms total)
T3F3C 058:928 JLINK_IsHalted()  returns FALSE (0000ms, 1933ms total)
T3F3C 059:029 JLINK_IsHalted()  returns FALSE (0000ms, 1933ms total)
T3F3C 059:131 JLINK_IsHalted()  returns FALSE (0001ms, 1934ms total)
T76A4 059:394 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 37 00 00 00  returns 0x04 (0000ms, 1933ms total)
T76A4 059:401 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 37 00 00 00  returns 0x04 (0001ms, 1934ms total)
T76A4 059:409 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 6E  returns 0x01 (0000ms, 1934ms total)
T3F3C 059:423 JLINK_IsHalted()  returns FALSE (0001ms, 1935ms total)
T3F3C 059:525 JLINK_IsHalted()  returns FALSE (0001ms, 1935ms total)
T3F3C 059:627 JLINK_IsHalted()  returns FALSE (0000ms, 1934ms total)
T3F3C 059:729 JLINK_IsHalted()  returns FALSE (0000ms, 1934ms total)
T76A4 059:991 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 37 00 00 00  returns 0x04 (0001ms, 1935ms total)
T76A4 059:998 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 37 00 00 00  returns 0x04 (0001ms, 1936ms total)
T76A4 060:006 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 6E  returns 0x01 (0001ms, 1937ms total)
T3F3C 060:020 JLINK_IsHalted()  returns FALSE (0001ms, 1938ms total)
T3F3C 060:122 JLINK_IsHalted()  returns FALSE (0001ms, 1938ms total)
T3F3C 060:223 JLINK_IsHalted()  returns FALSE (0000ms, 1937ms total)
T3F3C 060:325 JLINK_IsHalted()  returns FALSE (0000ms, 1937ms total)
T76A4 060:588 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 38 00 00 00  returns 0x04 (0001ms, 1938ms total)
T76A4 060:596 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 38 00 00 00  returns 0x04 (0001ms, 1939ms total)
T76A4 060:603 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 70  returns 0x01 (0001ms, 1940ms total)
T3F3C 060:618 JLINK_IsHalted()  returns FALSE (0000ms, 1940ms total)
T3F3C 060:719 JLINK_IsHalted()  returns FALSE (0000ms, 1940ms total)
T3F3C 060:821 JLINK_IsHalted()  returns FALSE (0000ms, 1940ms total)
T3F3C 060:923 JLINK_IsHalted()  returns FALSE (0000ms, 1940ms total)
T76A4 061:182 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 39 00 00 00  returns 0x04 (0001ms, 1941ms total)
T76A4 061:196 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 38 00 00 00  returns 0x04 (0001ms, 1942ms total)
T76A4 061:204 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 71  returns 0x01 (0001ms, 1943ms total)
T3F3C 061:226 JLINK_IsHalted()  returns FALSE (0000ms, 1943ms total)
T3F3C 061:328 JLINK_IsHalted()  returns FALSE (0000ms, 1943ms total)
T3F3C 061:429 JLINK_IsHalted()  returns FALSE (0001ms, 1944ms total)
T76A4 061:691 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 39 00 00 00  returns 0x04 (0001ms, 1944ms total)
T76A4 061:699 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 39 00 00 00  returns 0x04 (0001ms, 1945ms total)
T76A4 061:706 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 72  returns 0x01 (0001ms, 1946ms total)
T3F3C 061:727 JLINK_IsHalted()  returns FALSE (0001ms, 1947ms total)
T3F3C 061:829 JLINK_IsHalted()  returns FALSE (0000ms, 1946ms total)
T3F3C 061:931 JLINK_IsHalted()  returns FALSE (0000ms, 1946ms total)
T3F3C 062:032 JLINK_IsHalted()  returns FALSE (0000ms, 1946ms total)
T76A4 062:293 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 3A 00 00 00  returns 0x04 (0001ms, 1947ms total)
T76A4 062:301 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 39 00 00 00  returns 0x04 (0000ms, 1947ms total)
T76A4 062:308 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 74  returns 0x01 (0001ms, 1948ms total)
T3F3C 062:329 JLINK_IsHalted()  returns FALSE (0001ms, 1949ms total)
T3F3C 062:430 JLINK_IsHalted()  returns FALSE (0000ms, 1948ms total)
T3F3C 062:532 JLINK_IsHalted()  returns FALSE (0000ms, 1948ms total)
T3F3C 062:633 JLINK_IsHalted()  returns FALSE (0000ms, 1948ms total)
T76A4 062:895 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 3A 00 00 00  returns 0x04 (0000ms, 1948ms total)
T76A4 062:902 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 3A 00 00 00  returns 0x04 (0001ms, 1949ms total)
T76A4 062:910 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 74  returns 0x01 (0000ms, 1949ms total)
T3F3C 062:924 JLINK_IsHalted()  returns FALSE (0001ms, 1950ms total)
T3F3C 063:026 JLINK_IsHalted()  returns FALSE (0000ms, 1949ms total)
T3F3C 063:128 JLINK_IsHalted()  returns FALSE (0000ms, 1949ms total)
T3F3C 063:229 JLINK_IsHalted()  returns FALSE (0000ms, 1949ms total)
T76A4 063:492 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 3B 00 00 00  returns 0x04 (0000ms, 1949ms total)
T76A4 063:499 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 3B 00 00 00  returns 0x04 (0001ms, 1950ms total)
T76A4 063:514 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 76  returns 0x01 (0000ms, 1950ms total)
T3F3C 063:528 JLINK_IsHalted()  returns FALSE (0001ms, 1951ms total)
T3F3C 063:629 JLINK_IsHalted()  returns FALSE (0001ms, 1951ms total)
T3F3C 063:730 JLINK_IsHalted()  returns FALSE (0000ms, 1950ms total)
T3F3C 063:832 JLINK_IsHalted()  returns FALSE (0000ms, 1950ms total)
T76A4 064:093 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 3B 00 00 00  returns 0x04 (0000ms, 1950ms total)
T76A4 064:100 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 3B 00 00 00  returns 0x04 (0001ms, 1951ms total)
T76A4 064:108 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 76  returns 0x01 (0000ms, 1951ms total)
T3F3C 064:122 JLINK_IsHalted()  returns FALSE (0001ms, 1952ms total)
T3F3C 064:224 JLINK_IsHalted()  returns FALSE (0001ms, 1952ms total)
T3F3C 064:326 JLINK_IsHalted()  returns FALSE (0000ms, 1951ms total)
T3F3C 064:427 JLINK_IsHalted()  returns FALSE (0000ms, 1951ms total)
T76A4 064:687 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 3C 00 00 00  returns 0x04 (0001ms, 1952ms total)
T76A4 064:695 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 3C 00 00 00  returns 0x04 (0001ms, 1953ms total)
T76A4 064:703 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 78  returns 0x01 (0001ms, 1954ms total)
T3F3C 064:718 JLINK_IsHalted()  returns FALSE (0000ms, 1954ms total)
T3F3C 064:820 JLINK_IsHalted()  returns FALSE (0002ms, 1956ms total)
T3F3C 064:922 JLINK_IsHalted()  returns FALSE (0000ms, 1954ms total)
T3F3C 065:023 JLINK_IsHalted()  returns FALSE (0001ms, 1955ms total)
T76A4 065:287 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 3D 00 00 00  returns 0x04 (0001ms, 1955ms total)
T76A4 065:301 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 3C 00 00 00  returns 0x04 (0001ms, 1956ms total)
T76A4 065:309 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 79  returns 0x01 (0001ms, 1957ms total)
T3F3C 065:330 JLINK_IsHalted()  returns FALSE (0001ms, 1958ms total)
T3F3C 065:431 JLINK_IsHalted()  returns FALSE (0001ms, 1958ms total)
T3F3C 065:533 JLINK_IsHalted()  returns FALSE (0000ms, 1957ms total)
T76A4 065:792 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 3D 00 00 00  returns 0x04 (0001ms, 1958ms total)
T76A4 065:800 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 3D 00 00 00  returns 0x04 (0001ms, 1959ms total)
T76A4 065:807 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 7A  returns 0x01 (0001ms, 1960ms total)
T3F3C 065:828 JLINK_IsHalted()  returns FALSE (0001ms, 1961ms total)
T3F3C 065:930 JLINK_IsHalted()  returns FALSE (0001ms, 1961ms total)
T3F3C 066:032 JLINK_IsHalted()  returns FALSE (0000ms, 1960ms total)
T3F3C 066:133 JLINK_IsHalted()  returns FALSE (0001ms, 1961ms total)
T76A4 066:394 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 3E 00 00 00  returns 0x04 (0001ms, 1961ms total)
T76A4 066:402 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 3E 00 00 00  returns 0x04 (0000ms, 1961ms total)
T76A4 066:416 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 7C  returns 0x01 (0001ms, 1962ms total)
T3F3C 066:437 JLINK_IsHalted()  returns FALSE (0001ms, 1963ms total)
T3F3C 066:539 JLINK_IsHalted()  returns FALSE (0000ms, 1962ms total)
T3F3C 066:640 JLINK_IsHalted()  returns FALSE (0000ms, 1962ms total)
T3F3C 066:741 JLINK_IsHalted()  returns FALSE (0000ms, 1962ms total)
T76A4 067:004 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 3E 00 00 00  returns 0x04 (0000ms, 1962ms total)
T76A4 067:011 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 3E 00 00 00  returns 0x04 (0001ms, 1963ms total)
T76A4 067:018 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 7C  returns 0x01 (0001ms, 1964ms total)
T3F3C 067:033 JLINK_IsHalted()  returns FALSE (0001ms, 1965ms total)
T3F3C 067:134 JLINK_IsHalted()  returns FALSE (0000ms, 1964ms total)
T3F3C 067:235 JLINK_IsHalted()  returns FALSE (0001ms, 1965ms total)
T3F3C 067:337 JLINK_IsHalted()  returns FALSE (0000ms, 1964ms total)
T76A4 067:599 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 3F 00 00 00  returns 0x04 (0001ms, 1965ms total)
T76A4 067:607 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 3F 00 00 00  returns 0x04 (0000ms, 1965ms total)
T76A4 067:614 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 7E  returns 0x01 (0001ms, 1966ms total)
T3F3C 067:629 JLINK_IsHalted()  returns FALSE (0001ms, 1967ms total)
T3F3C 067:731 JLINK_IsHalted()  returns FALSE (0000ms, 1966ms total)
T3F3C 067:832 JLINK_IsHalted()  returns FALSE (0001ms, 1967ms total)
T3F3C 067:935 JLINK_IsHalted()  returns FALSE (0000ms, 1966ms total)
T76A4 068:197 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 40 00 00 00  returns 0x04 (0001ms, 1967ms total)
T76A4 068:211 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 3F 00 00 00  returns 0x04 (0001ms, 1968ms total)
T76A4 068:219 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 7F  returns 0x01 (0000ms, 1968ms total)
T3F3C 068:240 JLINK_IsHalted()  returns FALSE (0001ms, 1969ms total)
T3F3C 068:342 JLINK_IsHalted()  returns FALSE (0000ms, 1968ms total)
T3F3C 068:443 JLINK_IsHalted()  returns FALSE (0000ms, 1968ms total)
T76A4 068:703 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 40 00 00 00  returns 0x04 (0001ms, 1969ms total)
T76A4 068:710 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 40 00 00 00  returns 0x04 (0001ms, 1970ms total)
T76A4 068:718 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 80  returns 0x01 (0001ms, 1971ms total)
T3F3C 068:740 JLINK_IsHalted()  returns FALSE (0001ms, 1972ms total)
T3F3C 068:842 JLINK_IsHalted()  returns FALSE (0000ms, 1971ms total)
T3F3C 068:943 JLINK_IsHalted()  returns FALSE (0001ms, 1972ms total)
T3F3C 069:045 JLINK_IsHalted()  returns FALSE (0000ms, 1971ms total)
T76A4 069:305 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 41 00 00 00  returns 0x04 (0001ms, 1972ms total)
T76A4 069:312 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 40 00 00 00  returns 0x04 (0001ms, 1973ms total)
T76A4 069:320 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 81  returns 0x01 (0000ms, 1973ms total)
T3F3C 069:342 JLINK_IsHalted()  returns FALSE (0000ms, 1973ms total)
T3F3C 069:443 JLINK_IsHalted()  returns FALSE (0000ms, 1973ms total)
T3F3C 069:544 JLINK_IsHalted()  returns FALSE (0000ms, 1973ms total)
T3F3C 069:646 JLINK_IsHalted()  returns FALSE (0000ms, 1973ms total)
T76A4 069:906 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 41 00 00 00  returns 0x04 (0001ms, 1974ms total)
T76A4 069:914 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 41 00 00 00  returns 0x04 (0001ms, 1975ms total)
T76A4 069:921 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 82  returns 0x01 (0001ms, 1976ms total)
T3F3C 069:943 JLINK_IsHalted()  returns FALSE (0001ms, 1977ms total)
T3F3C 070:044 JLINK_IsHalted()  returns FALSE (0000ms, 1976ms total)
T3F3C 070:145 JLINK_IsHalted()  returns FALSE (0000ms, 1976ms total)
T3F3C 070:246 JLINK_IsHalted()  returns FALSE (0000ms, 1976ms total)
T76A4 070:510 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 42 00 00 00  returns 0x04 (0000ms, 1976ms total)
T76A4 070:517 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 42 00 00 00  returns 0x04 (0001ms, 1977ms total)
T76A4 070:532 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 84  returns 0x01 (0001ms, 1978ms total)
T3F3C 070:555 JLINK_IsHalted()  returns FALSE (0001ms, 1979ms total)
T3F3C 070:656 JLINK_IsHalted()  returns FALSE (0000ms, 1978ms total)
T3F3C 070:758 JLINK_IsHalted()  returns FALSE (0000ms, 1978ms total)
T76A4 071:026 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 42 00 00 00  returns 0x04 (0001ms, 1979ms total)
T76A4 071:034 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 42 00 00 00  returns 0x04 (0000ms, 1979ms total)
T76A4 071:041 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 84  returns 0x01 (0001ms, 1980ms total)
T3F3C 071:056 JLINK_IsHalted()  returns FALSE (0001ms, 1981ms total)
T3F3C 071:157 JLINK_IsHalted()  returns FALSE (0000ms, 1980ms total)
T3F3C 071:258 JLINK_IsHalted()  returns FALSE (0000ms, 1980ms total)
T3F3C 071:360 JLINK_IsHalted()  returns FALSE (0000ms, 1980ms total)
T76A4 071:623 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 43 00 00 00  returns 0x04 (0001ms, 1981ms total)
T76A4 071:631 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 43 00 00 00  returns 0x04 (0000ms, 1981ms total)
T76A4 071:638 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 86  returns 0x01 (0001ms, 1982ms total)
T3F3C 071:652 JLINK_IsHalted()  returns FALSE (0001ms, 1983ms total)
T3F3C 071:754 JLINK_IsHalted()  returns FALSE (0000ms, 1982ms total)
T3F3C 071:856 JLINK_IsHalted()  returns FALSE (0000ms, 1982ms total)
T3F3C 071:957 JLINK_IsHalted()  returns FALSE (0000ms, 1982ms total)
T76A4 072:221 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 44 00 00 00  returns 0x04 (0000ms, 1982ms total)
T76A4 072:235 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 43 00 00 00  returns 0x04 (0001ms, 1983ms total)
T76A4 072:243 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 87  returns 0x01 (0001ms, 1984ms total)
T3F3C 072:264 JLINK_IsHalted()  returns FALSE (0001ms, 1985ms total)
T3F3C 072:366 JLINK_IsHalted()  returns FALSE (0000ms, 1984ms total)
T3F3C 072:468 JLINK_IsHalted()  returns FALSE (0000ms, 1984ms total)
T3F3C 072:569 JLINK_IsHalted()  returns FALSE (0000ms, 1984ms total)
T76A4 072:833 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 44 00 00 00  returns 0x04 (0001ms, 1985ms total)
T76A4 072:841 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 44 00 00 00  returns 0x04 (0000ms, 1985ms total)
T76A4 072:848 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 88  returns 0x01 (0001ms, 1986ms total)
T3F3C 072:871 JLINK_IsHalted()  returns FALSE (0000ms, 1986ms total)
T3F3C 072:972 JLINK_IsHalted()  returns FALSE (0000ms, 1986ms total)
T3F3C 073:073 JLINK_IsHalted()  returns FALSE (0000ms, 1986ms total)
T3F3C 073:175 JLINK_IsHalted()  returns FALSE (0000ms, 1986ms total)
T76A4 073:439 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 45 00 00 00  returns 0x04 (0001ms, 1987ms total)
T76A4 073:447 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 45 00 00 00  returns 0x04 (0000ms, 1987ms total)
T76A4 073:461 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 8A  returns 0x01 (0000ms, 1987ms total)
T3F3C 073:482 JLINK_IsHalted()  returns FALSE (0001ms, 1988ms total)
T3F3C 073:584 JLINK_IsHalted()  returns FALSE (0000ms, 1987ms total)
T3F3C 073:685 JLINK_IsHalted()  returns FALSE (0000ms, 1987ms total)
T3F3C 073:787 JLINK_IsHalted()  returns FALSE (0000ms, 1987ms total)
T76A4 074:130 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 45 00 00 00  returns 0x04 (0001ms, 1988ms total)
T76A4 074:147 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 45 00 00 00  returns 0x04 (0001ms, 1989ms total)
T76A4 074:163 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 8A  returns 0x01 (0001ms, 1990ms total)
T3F3C 074:198 JLINK_IsHalted()  returns FALSE (0000ms, 1990ms total)
T3F3C 074:299 JLINK_IsHalted()  returns FALSE (0000ms, 1990ms total)
T76A4 074:562 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 46 00 00 00  returns 0x04 (0001ms, 1991ms total)
T76A4 074:569 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 46 00 00 00  returns 0x04 (0001ms, 1992ms total)
T76A4 074:577 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 8C  returns 0x01 (0001ms, 1993ms total)
T3F3C 074:592 JLINK_IsHalted()  returns FALSE (0000ms, 1993ms total)
T3F3C 074:693 JLINK_IsHalted()  returns FALSE (0000ms, 1993ms total)
T3F3C 074:795 JLINK_IsHalted()  returns FALSE (0000ms, 1993ms total)
T3F3C 074:896 JLINK_IsHalted()  returns FALSE (0000ms, 1993ms total)
T76A4 075:158 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 46 00 00 00  returns 0x04 (0001ms, 1994ms total)
T76A4 075:166 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 46 00 00 00  returns 0x04 (0000ms, 1994ms total)
T76A4 075:173 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 8C  returns 0x01 (0001ms, 1995ms total)
T3F3C 075:187 JLINK_IsHalted()  returns FALSE (0001ms, 1996ms total)
T3F3C 075:289 JLINK_IsHalted()  returns FALSE (0000ms, 1995ms total)
T3F3C 075:390 JLINK_IsHalted()  returns FALSE (0000ms, 1995ms total)
T3F3C 075:491 JLINK_IsHalted()  returns FALSE (0000ms, 1995ms total)
T76A4 075:754 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 47 00 00 00  returns 0x04 (0001ms, 1996ms total)
T76A4 075:762 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 47 00 00 00  returns 0x04 (0001ms, 1997ms total)
T76A4 075:770 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 8E  returns 0x01 (0000ms, 1997ms total)
T3F3C 075:784 JLINK_IsHalted()  returns FALSE (0001ms, 1998ms total)
T3F3C 075:887 JLINK_IsHalted()  returns FALSE (0000ms, 1997ms total)
T3F3C 075:988 JLINK_IsHalted()  returns FALSE (0000ms, 1997ms total)
T3F3C 076:090 JLINK_IsHalted()  returns FALSE (0000ms, 1997ms total)
T76A4 076:352 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 48 00 00 00  returns 0x04 (0000ms, 1997ms total)
T76A4 076:366 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 47 00 00 00  returns 0x04 (0001ms, 1998ms total)
T76A4 076:373 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 8F  returns 0x01 (0001ms, 1999ms total)
T3F3C 076:395 JLINK_IsHalted()  returns FALSE (0000ms, 1999ms total)
T3F3C 076:496 JLINK_IsHalted()  returns FALSE (0000ms, 1999ms total)
T3F3C 076:597 JLINK_IsHalted()  returns FALSE (0000ms, 1999ms total)
T76A4 076:857 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 48 00 00 00  returns 0x04 (0000ms, 1999ms total)
T76A4 076:864 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 48 00 00 00  returns 0x04 (0001ms, 2000ms total)
T76A4 076:872 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 90  returns 0x01 (0001ms, 2001ms total)
T3F3C 076:893 JLINK_IsHalted()  returns FALSE (0001ms, 2002ms total)
T3F3C 076:996 JLINK_IsHalted()  returns FALSE (0000ms, 2001ms total)
T3F3C 077:097 JLINK_IsHalted()  returns FALSE (0000ms, 2001ms total)
T3F3C 077:198 JLINK_IsHalted()  returns FALSE (0000ms, 2001ms total)
T76A4 077:461 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 49 00 00 00  returns 0x04 (0001ms, 2002ms total)
T76A4 077:470 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 48 00 00 00  returns 0x04 (0000ms, 2002ms total)
T76A4 077:477 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 91  returns 0x01 (0001ms, 2003ms total)
T3F3C 077:499 JLINK_IsHalted()  returns FALSE (0000ms, 2003ms total)
T3F3C 077:600 JLINK_IsHalted()  returns FALSE (0000ms, 2003ms total)
T3F3C 077:702 JLINK_IsHalted()  returns FALSE (0000ms, 2003ms total)
T3F3C 077:803 JLINK_IsHalted()  returns FALSE (0000ms, 2003ms total)
T76A4 078:066 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 49 00 00 00  returns 0x04 (0001ms, 2004ms total)
T76A4 078:074 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 49 00 00 00  returns 0x04 (0000ms, 2004ms total)
T76A4 078:081 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 92  returns 0x01 (0001ms, 2005ms total)
T3F3C 078:102 JLINK_IsHalted()  returns FALSE (0001ms, 2006ms total)
T3F3C 078:204 JLINK_IsHalted()  returns FALSE (0000ms, 2005ms total)
T3F3C 078:306 JLINK_IsHalted()  returns FALSE (0000ms, 2005ms total)
T3F3C 078:407 JLINK_IsHalted()  returns FALSE (0001ms, 2006ms total)
T76A4 078:672 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 4A 00 00 00  returns 0x04 (0001ms, 2006ms total)
T76A4 078:679 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 4A 00 00 00  returns 0x04 (0001ms, 2007ms total)
T76A4 078:694 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 94  returns 0x01 (0000ms, 2007ms total)
T3F3C 078:715 JLINK_IsHalted()  returns FALSE (0001ms, 2008ms total)
T3F3C 078:817 JLINK_IsHalted()  returns FALSE (0001ms, 2008ms total)
T3F3C 078:919 JLINK_IsHalted()  returns FALSE (0000ms, 2007ms total)
T3F3C 079:020 JLINK_IsHalted()  returns FALSE (0000ms, 2007ms total)
T76A4 079:282 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 4A 00 00 00  returns 0x04 (0001ms, 2008ms total)
T76A4 079:290 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 4A 00 00 00  returns 0x04 (0001ms, 2009ms total)
T76A4 079:297 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 95  returns 0x01 (0001ms, 2010ms total)
T3F3C 079:319 JLINK_IsHalted()  returns FALSE (0000ms, 2010ms total)
T3F3C 079:421 JLINK_IsHalted()  returns FALSE (0000ms, 2010ms total)
T3F3C 079:522 JLINK_IsHalted()  returns FALSE (0000ms, 2010ms total)
T3F3C 079:623 JLINK_IsHalted()  returns FALSE (0001ms, 2011ms total)
T76A4 079:885 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 4B 00 00 00  returns 0x04 (0001ms, 2011ms total)
T76A4 079:893 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 4B 00 00 00  returns 0x04 (0001ms, 2012ms total)
T76A4 079:901 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 96  returns 0x01 (0000ms, 2012ms total)
T3F3C 079:922 JLINK_IsHalted()  returns FALSE (0001ms, 2013ms total)
T3F3C 080:024 JLINK_IsHalted()  returns FALSE (0000ms, 2012ms total)
T3F3C 080:126 JLINK_IsHalted()  returns FALSE (0000ms, 2012ms total)
T76A4 080:388 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 4C 00 00 00  returns 0x04 (0000ms, 2012ms total)
T76A4 080:402 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 4B 00 00 00  returns 0x04 (0001ms, 2013ms total)
T76A4 080:409 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 97  returns 0x01 (0002ms, 2015ms total)
T3F3C 080:432 JLINK_IsHalted()  returns FALSE (0000ms, 2015ms total)
T3F3C 080:533 JLINK_IsHalted()  returns FALSE (0000ms, 2015ms total)
T3F3C 080:634 JLINK_IsHalted()  returns FALSE (0000ms, 2015ms total)
T3F3C 080:736 JLINK_IsHalted()  returns FALSE (0000ms, 2015ms total)
T76A4 080:996 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 4C 00 00 00  returns 0x04 (0001ms, 2016ms total)
T76A4 081:005 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 4C 00 00 00  returns 0x04 (0000ms, 2016ms total)
T76A4 081:013 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 98  returns 0x01 (0002ms, 2018ms total)
T3F3C 081:035 JLINK_IsHalted()  returns FALSE (0001ms, 2019ms total)
T3F3C 081:136 JLINK_IsHalted()  returns FALSE (0000ms, 2018ms total)
T3F3C 081:238 JLINK_IsHalted()  returns FALSE (0000ms, 2018ms total)
T3F3C 081:340 JLINK_IsHalted()  returns FALSE (0000ms, 2018ms total)
T76A4 081:600 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 4D 00 00 00  returns 0x04 (0001ms, 2019ms total)
T76A4 081:608 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 4D 00 00 00  returns 0x04 (0000ms, 2019ms total)
T76A4 081:622 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 9A  returns 0x01 (0001ms, 2020ms total)
T3F3C 081:643 JLINK_IsHalted()  returns FALSE (0001ms, 2021ms total)
T3F3C 081:744 JLINK_IsHalted()  returns FALSE (0000ms, 2020ms total)
T3F3C 081:846 JLINK_IsHalted()  returns FALSE (0001ms, 2021ms total)
T76A4 082:108 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 4D 00 00 00  returns 0x04 (0000ms, 2020ms total)
T76A4 082:115 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 4D 00 00 00  returns 0x04 (0001ms, 2021ms total)
T76A4 082:123 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 9A  returns 0x01 (0000ms, 2021ms total)
T3F3C 082:137 JLINK_IsHalted()  returns FALSE (0001ms, 2022ms total)
T3F3C 082:239 JLINK_IsHalted()  returns FALSE (0000ms, 2021ms total)
T3F3C 082:340 JLINK_IsHalted()  returns FALSE (0000ms, 2021ms total)
T3F3C 082:442 JLINK_IsHalted()  returns FALSE (0000ms, 2021ms total)
T76A4 082:703 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 4E 00 00 00  returns 0x04 (0000ms, 2021ms total)
T76A4 082:710 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 4E 00 00 00  returns 0x04 (0001ms, 2022ms total)
T76A4 082:718 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 9C  returns 0x01 (0000ms, 2022ms total)
T3F3C 082:732 JLINK_IsHalted()  returns FALSE (0001ms, 2023ms total)
T3F3C 082:834 JLINK_IsHalted()  returns FALSE (0000ms, 2022ms total)
T3F3C 082:935 JLINK_IsHalted()  returns FALSE (0000ms, 2022ms total)
T3F3C 083:037 JLINK_IsHalted()  returns FALSE (0000ms, 2022ms total)
T76A4 083:297 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 4E 00 00 00  returns 0x04 (0000ms, 2022ms total)
T76A4 083:304 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 4E 00 00 00  returns 0x04 (0001ms, 2024ms total)
T76A4 083:312 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 9C  returns 0x01 (0000ms, 2024ms total)
T3F3C 083:326 JLINK_IsHalted()  returns FALSE (0001ms, 2025ms total)
T3F3C 083:427 JLINK_IsHalted()  returns FALSE (0000ms, 2024ms total)
T3F3C 083:529 JLINK_IsHalted()  returns FALSE (0000ms, 2024ms total)
T3F3C 083:630 JLINK_IsHalted()  returns FALSE (0000ms, 2024ms total)
T76A4 083:889 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 4F 00 00 00  returns 0x04 (0001ms, 2025ms total)
T76A4 083:897 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 4F 00 00 00  returns 0x04 (0001ms, 2026ms total)
T76A4 083:905 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 9E  returns 0x01 (0001ms, 2027ms total)
T3F3C 083:919 JLINK_IsHalted()  returns FALSE (0001ms, 2028ms total)
T3F3C 084:020 JLINK_IsHalted()  returns FALSE (0001ms, 2028ms total)
T3F3C 084:122 JLINK_IsHalted()  returns FALSE (0000ms, 2027ms total)
T3F3C 084:223 JLINK_IsHalted()  returns FALSE (0001ms, 2028ms total)
T76A4 084:484 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 50 00 00 00  returns 0x04 (0001ms, 2028ms total)
T76A4 084:499 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 4F 00 00 00  returns 0x04 (0000ms, 2028ms total)
T76A4 084:506 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 9F  returns 0x01 (0001ms, 2029ms total)
T3F3C 084:527 JLINK_IsHalted()  returns FALSE (0001ms, 2030ms total)
T3F3C 084:628 JLINK_IsHalted()  returns FALSE (0001ms, 2030ms total)
T3F3C 084:730 JLINK_IsHalted()  returns FALSE (0000ms, 2029ms total)
T3F3C 084:831 JLINK_IsHalted()  returns FALSE (0001ms, 2030ms total)
T76A4 085:092 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 50 00 00 00  returns 0x04 (0001ms, 2030ms total)
T76A4 085:100 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 50 00 00 00  returns 0x04 (0000ms, 2030ms total)
T76A4 085:107 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: A0  returns 0x01 (0001ms, 2031ms total)
T3F3C 085:129 JLINK_IsHalted()  returns FALSE (0000ms, 2031ms total)
T3F3C 085:231 JLINK_IsHalted()  returns FALSE (0000ms, 2031ms total)
T3F3C 085:332 JLINK_IsHalted()  returns FALSE (0000ms, 2031ms total)
T3F3C 085:433 JLINK_IsHalted()  returns FALSE (0000ms, 2031ms total)
T76A4 085:693 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 51 00 00 00  returns 0x04 (0001ms, 2032ms total)
T76A4 085:700 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 51 00 00 00  returns 0x04 (0001ms, 2033ms total)
T76A4 085:715 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: A2  returns 0x01 (0000ms, 2033ms total)
T3F3C 085:736 JLINK_IsHalted()  returns FALSE (0001ms, 2034ms total)
T3F3C 085:837 JLINK_IsHalted()  returns FALSE (0001ms, 2034ms total)
T3F3C 085:939 JLINK_IsHalted()  returns FALSE (0000ms, 2033ms total)
T76A4 086:198 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 51 00 00 00  returns 0x04 (0001ms, 2034ms total)
T76A4 086:206 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 51 00 00 00  returns 0x04 (0001ms, 2035ms total)
T76A4 086:214 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: A2  returns 0x01 (0001ms, 2036ms total)
T3F3C 086:229 JLINK_IsHalted()  returns FALSE (0001ms, 2037ms total)
T3F3C 086:330 JLINK_IsHalted()  returns FALSE (0000ms, 2036ms total)
T3F3C 086:432 JLINK_IsHalted()  returns FALSE (0000ms, 2036ms total)
T3F3C 086:534 JLINK_IsHalted()  returns FALSE (0000ms, 2036ms total)
T76A4 086:793 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 52 00 00 00  returns 0x04 (0001ms, 2037ms total)
T76A4 086:801 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 52 00 00 00  returns 0x04 (0000ms, 2037ms total)
T76A4 086:808 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: A4  returns 0x01 (0001ms, 2038ms total)
T3F3C 086:823 JLINK_IsHalted()  returns FALSE (0000ms, 2038ms total)
T3F3C 086:925 JLINK_IsHalted()  returns FALSE (0001ms, 2039ms total)
T3F3C 087:027 JLINK_IsHalted()  returns FALSE (0000ms, 2038ms total)
T3F3C 087:128 JLINK_IsHalted()  returns FALSE (0001ms, 2039ms total)
T76A4 087:387 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 53 00 00 00  returns 0x04 (0001ms, 2039ms total)
T76A4 087:401 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 52 00 00 00  returns 0x04 (0001ms, 2040ms total)
T76A4 087:409 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: A5  returns 0x01 (0001ms, 2041ms total)
T3F3C 087:430 JLINK_IsHalted()  returns FALSE (0001ms, 2042ms total)
T3F3C 087:532 JLINK_IsHalted()  returns FALSE (0000ms, 2041ms total)
T3F3C 087:633 JLINK_IsHalted()  returns FALSE (0001ms, 2042ms total)
T3F3C 087:734 JLINK_IsHalted()  returns FALSE (0000ms, 2041ms total)
T76A4 087:997 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 53 00 00 00  returns 0x04 (0001ms, 2042ms total)
T76A4 088:005 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 53 00 00 00  returns 0x04 (0001ms, 2043ms total)
T76A4 088:013 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: A6  returns 0x01 (0000ms, 2043ms total)
T3F3C 088:034 JLINK_IsHalted()  returns FALSE (0001ms, 2044ms total)
T3F3C 088:135 JLINK_IsHalted()  returns FALSE (0000ms, 2043ms total)
T3F3C 088:237 JLINK_IsHalted()  returns FALSE (0001ms, 2044ms total)
T76A4 088:500 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 54 00 00 00  returns 0x04 (0000ms, 2043ms total)
T76A4 088:508 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 53 00 00 00  returns 0x04 (0001ms, 2044ms total)
T76A4 088:515 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: A7  returns 0x01 (0001ms, 2045ms total)
T3F3C 088:537 JLINK_IsHalted()  returns FALSE (0000ms, 2045ms total)
T3F3C 088:638 JLINK_IsHalted()  returns FALSE (0000ms, 2045ms total)
T3F3C 088:739 JLINK_IsHalted()  returns FALSE (0000ms, 2045ms total)
T3F3C 088:841 JLINK_IsHalted()  returns FALSE (0000ms, 2045ms total)
T76A4 089:102 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 54 00 00 00  returns 0x04 (0001ms, 2046ms total)
T76A4 089:110 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 54 00 00 00  returns 0x04 (0000ms, 2046ms total)
T76A4 089:117 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: A8  returns 0x01 (0001ms, 2047ms total)
T3F3C 089:138 JLINK_IsHalted()  returns FALSE (0001ms, 2048ms total)
T3F3C 089:240 JLINK_IsHalted()  returns FALSE (0000ms, 2047ms total)
T3F3C 089:342 JLINK_IsHalted()  returns FALSE (0000ms, 2047ms total)
T3F3C 089:443 JLINK_IsHalted()  returns FALSE (0001ms, 2048ms total)
T76A4 089:704 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 55 00 00 00  returns 0x04 (0001ms, 2048ms total)
T76A4 089:712 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 55 00 00 00  returns 0x04 (0000ms, 2048ms total)
T76A4 089:726 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: AA  returns 0x01 (0001ms, 2049ms total)
T3F3C 089:747 JLINK_IsHalted()  returns FALSE (0001ms, 2050ms total)
T3F3C 089:849 JLINK_IsHalted()  returns FALSE (0000ms, 2049ms total)
T3F3C 089:950 JLINK_IsHalted()  returns FALSE (0000ms, 2049ms total)
T3F3C 090:051 JLINK_IsHalted()  returns FALSE (0000ms, 2049ms total)
T76A4 090:313 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 55 00 00 00  returns 0x04 (0001ms, 2050ms total)
T76A4 090:321 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 55 00 00 00  returns 0x04 (0000ms, 2050ms total)
T76A4 090:328 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: AA  returns 0x01 (0001ms, 2051ms total)
T3F3C 090:342 JLINK_IsHalted()  returns FALSE (0001ms, 2052ms total)
T3F3C 090:443 JLINK_IsHalted()  returns FALSE (0000ms, 2051ms total)
T3F3C 090:545 JLINK_IsHalted()  returns FALSE (0000ms, 2051ms total)
T3F3C 090:646 JLINK_IsHalted()  returns FALSE (0000ms, 2051ms total)
T76A4 090:906 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 56 00 00 00  returns 0x04 (0001ms, 2052ms total)
T76A4 090:915 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 56 00 00 00  returns 0x04 (0000ms, 2052ms total)
T76A4 090:922 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: AC  returns 0x01 (0001ms, 2053ms total)
T3F3C 090:938 JLINK_IsHalted()  returns FALSE (0000ms, 2053ms total)
T3F3C 091:039 JLINK_IsHalted()  returns FALSE (0000ms, 2053ms total)
T3F3C 091:141 JLINK_IsHalted()  returns FALSE (0001ms, 2054ms total)
T3F3C 091:243 JLINK_IsHalted()  returns FALSE (0001ms, 2054ms total)
T76A4 091:504 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 57 00 00 00  returns 0x04 (0001ms, 2054ms total)
T76A4 091:518 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 56 00 00 00  returns 0x04 (0001ms, 2055ms total)
T76A4 091:526 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: AD  returns 0x01 (0000ms, 2055ms total)
T3F3C 091:547 JLINK_IsHalted()  returns FALSE (0001ms, 2056ms total)
T3F3C 091:649 JLINK_IsHalted()  returns FALSE (0000ms, 2055ms total)
T3F3C 091:750 JLINK_IsHalted()  returns FALSE (0000ms, 2055ms total)
T76A4 092:011 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 57 00 00 00  returns 0x04 (0001ms, 2056ms total)
T76A4 092:019 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 57 00 00 00  returns 0x04 (0000ms, 2056ms total)
T76A4 092:026 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: AE  returns 0x01 (0001ms, 2057ms total)
T3F3C 092:047 JLINK_IsHalted()  returns FALSE (0001ms, 2058ms total)
T3F3C 092:149 JLINK_IsHalted()  returns FALSE (0000ms, 2057ms total)
T3F3C 092:251 JLINK_IsHalted()  returns FALSE (0000ms, 2057ms total)
T3F3C 092:351 JLINK_IsHalted()  returns FALSE (0000ms, 2057ms total)
T76A4 092:612 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 58 00 00 00  returns 0x04 (0001ms, 2058ms total)
T76A4 092:620 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 57 00 00 00  returns 0x04 (0000ms, 2058ms total)
T76A4 092:627 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: AF  returns 0x01 (0001ms, 2059ms total)
T3F3C 092:648 JLINK_IsHalted()  returns FALSE (0001ms, 2060ms total)
T3F3C 092:750 JLINK_IsHalted()  returns FALSE (0000ms, 2059ms total)
T3F3C 092:851 JLINK_IsHalted()  returns FALSE (0000ms, 2059ms total)
T3F3C 092:953 JLINK_IsHalted()  returns FALSE (0000ms, 2059ms total)
T76A4 093:214 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 58 00 00 00  returns 0x04 (0001ms, 2060ms total)
T76A4 093:222 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 58 00 00 00  returns 0x04 (0000ms, 2060ms total)
T76A4 093:229 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: B0  returns 0x01 (0001ms, 2061ms total)
T3F3C 093:250 JLINK_IsHalted()  returns FALSE (0001ms, 2062ms total)
T3F3C 093:352 JLINK_IsHalted()  returns FALSE (0001ms, 2062ms total)
T3F3C 093:453 JLINK_IsHalted()  returns FALSE (0000ms, 2061ms total)
T3F3C 093:555 JLINK_IsHalted()  returns FALSE (0001ms, 2062ms total)
T76A4 093:814 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 59 00 00 00  returns 0x04 (0001ms, 2062ms total)
T76A4 093:822 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 59 00 00 00  returns 0x04 (0000ms, 2062ms total)
T76A4 093:836 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: B2  returns 0x01 (0000ms, 2062ms total)
T3F3C 093:857 JLINK_IsHalted()  returns FALSE (0001ms, 2063ms total)
T3F3C 093:959 JLINK_IsHalted()  returns FALSE (0001ms, 2063ms total)
T3F3C 094:061 JLINK_IsHalted()  returns FALSE (0000ms, 2062ms total)
T3F3C 094:162 JLINK_IsHalted()  returns FALSE (0000ms, 2062ms total)
T76A4 094:422 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 59 00 00 00  returns 0x04 (0001ms, 2063ms total)
T76A4 094:430 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 59 00 00 00  returns 0x04 (0001ms, 2064ms total)
T76A4 094:437 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: B2  returns 0x01 (0001ms, 2065ms total)
T3F3C 094:452 JLINK_IsHalted()  returns FALSE (0000ms, 2065ms total)
T3F3C 094:554 JLINK_IsHalted()  returns FALSE (0001ms, 2066ms total)
T3F3C 094:656 JLINK_IsHalted()  returns FALSE (0001ms, 2066ms total)
T3F3C 094:757 JLINK_IsHalted()  returns FALSE (0000ms, 2065ms total)
T76A4 095:018 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 5A 00 00 00  returns 0x04 (0000ms, 2065ms total)
T76A4 095:025 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 5A 00 00 00  returns 0x04 (0001ms, 2066ms total)
T76A4 095:033 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: B4  returns 0x01 (0001ms, 2067ms total)
T3F3C 095:047 JLINK_IsHalted()  returns FALSE (0001ms, 2068ms total)
T3F3C 095:150 JLINK_IsHalted()  returns FALSE (0000ms, 2067ms total)
T3F3C 095:251 JLINK_IsHalted()  returns FALSE (0000ms, 2067ms total)
T3F3C 095:353 JLINK_IsHalted()  returns FALSE (0000ms, 2067ms total)
T76A4 095:615 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 5B 00 00 00  returns 0x04 (0001ms, 2068ms total)
T76A4 095:630 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 5A 00 00 00  returns 0x04 (0001ms, 2069ms total)
T76A4 095:638 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: B5  returns 0x01 (0001ms, 2070ms total)
T3F3C 095:659 JLINK_IsHalted()  returns FALSE (0001ms, 2071ms total)
T3F3C 095:760 JLINK_IsHalted()  returns FALSE (0000ms, 2070ms total)
T3F3C 095:862 JLINK_IsHalted()  returns FALSE (0000ms, 2070ms total)
T76A4 096:123 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 5B 00 00 00  returns 0x04 (0001ms, 2071ms total)
T76A4 096:131 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 5B 00 00 00  returns 0x04 (0001ms, 2072ms total)
T76A4 096:139 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: B6  returns 0x01 (0000ms, 2072ms total)
T3F3C 096:160 JLINK_IsHalted()  returns FALSE (0000ms, 2072ms total)
T3F3C 096:261 JLINK_IsHalted()  returns FALSE (0000ms, 2072ms total)
T3F3C 096:363 JLINK_IsHalted()  returns FALSE (0001ms, 2073ms total)
T3F3C 096:465 JLINK_IsHalted()  returns FALSE (0001ms, 2073ms total)
T76A4 096:725 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 5C 00 00 00  returns 0x04 (0001ms, 2073ms total)
T76A4 096:733 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 5C 00 00 00  returns 0x04 (0001ms, 2074ms total)
T76A4 096:747 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: B8  returns 0x01 (0001ms, 2075ms total)
T3F3C 096:769 JLINK_IsHalted()  returns FALSE (0000ms, 2075ms total)
T3F3C 096:870 JLINK_IsHalted()  returns FALSE (0000ms, 2075ms total)
T3F3C 096:971 JLINK_IsHalted()  returns FALSE (0000ms, 2075ms total)
T76A4 097:232 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 5C 00 00 00  returns 0x04 (0001ms, 2076ms total)
T76A4 097:240 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 5C 00 00 00  returns 0x04 (0002ms, 2078ms total)
T76A4 097:248 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: B8  returns 0x01 (0001ms, 2079ms total)
T3F3C 097:263 JLINK_IsHalted()  returns FALSE (0000ms, 2079ms total)
T3F3C 097:365 JLINK_IsHalted()  returns FALSE (0000ms, 2079ms total)
T3F3C 097:465 JLINK_IsHalted()  returns FALSE (0000ms, 2079ms total)
T3F3C 097:567 JLINK_IsHalted()  returns FALSE (0001ms, 2080ms total)
T76A4 097:827 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 5D 00 00 00  returns 0x04 (0001ms, 2080ms total)
T76A4 097:835 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 5D 00 00 00  returns 0x04 (0000ms, 2080ms total)
T76A4 097:842 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: BA  returns 0x01 (0001ms, 2081ms total)
T3F3C 097:856 JLINK_IsHalted()  returns FALSE (0001ms, 2082ms total)
T3F3C 097:959 JLINK_IsHalted()  returns FALSE (0000ms, 2081ms total)
T3F3C 098:061 JLINK_IsHalted()  returns FALSE (0000ms, 2081ms total)
T3F3C 098:162 JLINK_IsHalted()  returns FALSE (0000ms, 2081ms total)
T76A4 098:426 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 5D 00 00 00  returns 0x04 (0000ms, 2081ms total)
T76A4 098:434 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 5D 00 00 00  returns 0x04 (0000ms, 2081ms total)
T76A4 098:441 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: BA  returns 0x01 (0001ms, 2082ms total)
T3F3C 098:456 JLINK_IsHalted()  returns FALSE (0000ms, 2082ms total)
T3F3C 098:558 JLINK_IsHalted()  returns FALSE (0000ms, 2082ms total)
T3F3C 098:659 JLINK_IsHalted()  returns FALSE (0000ms, 2082ms total)
T3F3C 098:761 JLINK_IsHalted()  returns FALSE (0000ms, 2082ms total)
T76A4 099:021 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 5E 00 00 00  returns 0x04 (0001ms, 2083ms total)
T76A4 099:029 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 5E 00 00 00  returns 0x04 (0001ms, 2084ms total)
T76A4 099:036 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: BC  returns 0x01 (0001ms, 2085ms total)
T3F3C 099:050 JLINK_IsHalted()  returns FALSE (0001ms, 2086ms total)
T3F3C 099:151 JLINK_IsHalted()  returns FALSE (0000ms, 2085ms total)
T3F3C 099:253 JLINK_IsHalted()  returns FALSE (0000ms, 2085ms total)
T3F3C 099:354 JLINK_IsHalted()  returns FALSE (0000ms, 2085ms total)
T76A4 099:616 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 5F 00 00 00  returns 0x04 (0000ms, 2085ms total)
T76A4 099:630 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 5E 00 00 00  returns 0x04 (0001ms, 2086ms total)
T76A4 099:637 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: BD  returns 0x01 (0001ms, 2087ms total)
T3F3C 099:659 JLINK_IsHalted()  returns FALSE (0001ms, 2088ms total)
T3F3C 099:760 JLINK_IsHalted()  returns FALSE (0000ms, 2087ms total)
T3F3C 099:861 JLINK_IsHalted()  returns FALSE (0000ms, 2087ms total)
T76A4 100:122 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 5F 00 00 00  returns 0x04 (0000ms, 2087ms total)
T76A4 100:129 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 5F 00 00 00  returns 0x04 (0001ms, 2088ms total)
T76A4 100:137 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: BE  returns 0x01 (0000ms, 2088ms total)
T3F3C 100:158 JLINK_IsHalted()  returns FALSE (0000ms, 2088ms total)
T3F3C 100:259 JLINK_IsHalted()  returns FALSE (0000ms, 2088ms total)
T3F3C 100:361 JLINK_IsHalted()  returns FALSE (0001ms, 2089ms total)
T3F3C 100:463 JLINK_IsHalted()  returns FALSE (0000ms, 2088ms total)
T76A4 100:722 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 60 00 00 00  returns 0x04 (0001ms, 2089ms total)
T76A4 100:730 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 5F 00 00 00  returns 0x04 (0001ms, 2090ms total)
T76A4 100:738 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: BF  returns 0x01 (0000ms, 2090ms total)
T3F3C 100:759 JLINK_IsHalted()  returns FALSE (0001ms, 2091ms total)
T3F3C 100:861 JLINK_IsHalted()  returns FALSE (0000ms, 2090ms total)
T3F3C 100:962 JLINK_IsHalted()  returns FALSE (0000ms, 2090ms total)
T3F3C 101:064 JLINK_IsHalted()  returns FALSE (0001ms, 2091ms total)
T76A4 101:325 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 60 00 00 00  returns 0x04 (0001ms, 2091ms total)
T76A4 101:333 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 60 00 00 00  returns 0x04 (0001ms, 2092ms total)
T76A4 101:340 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: C0  returns 0x01 (0001ms, 2093ms total)
T3F3C 101:362 JLINK_IsHalted()  returns FALSE (0000ms, 2093ms total)
T3F3C 101:463 JLINK_IsHalted()  returns FALSE (0001ms, 2094ms total)
T3F3C 101:564 JLINK_IsHalted()  returns FALSE (0000ms, 2093ms total)
T3F3C 101:665 JLINK_IsHalted()  returns FALSE (0001ms, 2094ms total)
T76A4 101:927 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 61 00 00 00  returns 0x04 (0001ms, 2094ms total)
T76A4 101:934 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 61 00 00 00  returns 0x04 (0001ms, 2095ms total)
T76A4 101:949 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: C2  returns 0x01 (0001ms, 2096ms total)
T3F3C 101:970 JLINK_IsHalted()  returns FALSE (0001ms, 2097ms total)
T3F3C 102:072 JLINK_IsHalted()  returns FALSE (0000ms, 2096ms total)
T3F3C 102:172 JLINK_IsHalted()  returns FALSE (0000ms, 2096ms total)
T76A4 102:435 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 61 00 00 00  returns 0x04 (0001ms, 2097ms total)
T76A4 102:442 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 61 00 00 00  returns 0x04 (0001ms, 2098ms total)
T76A4 102:450 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: C2  returns 0x01 (0001ms, 2099ms total)
T3F3C 102:464 JLINK_IsHalted()  returns FALSE (0001ms, 2100ms total)
T3F3C 102:566 JLINK_IsHalted()  returns FALSE (0000ms, 2099ms total)
T3F3C 102:667 JLINK_IsHalted()  returns FALSE (0000ms, 2099ms total)
T3F3C 102:768 JLINK_IsHalted()  returns FALSE (0000ms, 2099ms total)
T76A4 103:031 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 62 00 00 00  returns 0x04 (0001ms, 2100ms total)
T76A4 103:039 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 62 00 00 00  returns 0x04 (0000ms, 2100ms total)
T76A4 103:046 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: C4  returns 0x01 (0001ms, 2101ms total)
T3F3C 103:061 JLINK_IsHalted()  returns FALSE (0001ms, 2102ms total)
T3F3C 103:162 JLINK_IsHalted()  returns FALSE (0000ms, 2101ms total)
T3F3C 103:264 JLINK_IsHalted()  returns FALSE (0000ms, 2101ms total)
T3F3C 103:365 JLINK_IsHalted()  returns FALSE (0000ms, 2101ms total)
T76A4 103:625 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 63 00 00 00  returns 0x04 (0001ms, 2102ms total)
T76A4 103:640 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 62 00 00 00  returns 0x04 (0001ms, 2103ms total)
T76A4 103:648 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: C5  returns 0x01 (0000ms, 2103ms total)
T3F3C 103:669 JLINK_IsHalted()  returns FALSE (0001ms, 2104ms total)
T3F3C 103:771 JLINK_IsHalted()  returns FALSE (0001ms, 2104ms total)
T3F3C 103:873 JLINK_IsHalted()  returns FALSE (0000ms, 2103ms total)
T3F3C 103:975 JLINK_IsHalted()  returns FALSE (0001ms, 2104ms total)
T76A4 104:234 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 63 00 00 00  returns 0x04 (0001ms, 2104ms total)
T76A4 104:242 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 63 00 00 00  returns 0x04 (0000ms, 2104ms total)
T76A4 104:249 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: C6  returns 0x01 (0001ms, 2105ms total)
T3F3C 104:271 JLINK_IsHalted()  returns FALSE (0001ms, 2106ms total)
T3F3C 104:373 JLINK_IsHalted()  returns FALSE (0001ms, 2106ms total)
T3F3C 104:475 JLINK_IsHalted()  returns FALSE (0000ms, 2105ms total)
T3F3C 104:576 JLINK_IsHalted()  returns FALSE (0000ms, 2105ms total)
T76A4 104:840 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 64 00 00 00  returns 0x04 (0001ms, 2106ms total)
T76A4 104:848 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 64 00 00 00  returns 0x04 (0000ms, 2106ms total)
T76A4 104:862 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: C8  returns 0x01 (0001ms, 2107ms total)
T3F3C 104:884 JLINK_IsHalted()  returns FALSE (0001ms, 2108ms total)
T3F3C 104:985 JLINK_IsHalted()  returns FALSE (0000ms, 2107ms total)
T3F3C 105:087 JLINK_IsHalted()  returns FALSE (0000ms, 2107ms total)
T76A4 105:348 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 64 00 00 00  returns 0x04 (0001ms, 2108ms total)
T76A4 105:356 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 64 00 00 00  returns 0x04 (0001ms, 2109ms total)
T76A4 105:364 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: C8  returns 0x01 (0000ms, 2109ms total)
T3F3C 105:378 JLINK_IsHalted()  returns FALSE (0001ms, 2110ms total)
T3F3C 105:479 JLINK_IsHalted()  returns FALSE (0000ms, 2109ms total)
T3F3C 105:580 JLINK_IsHalted()  returns FALSE (0001ms, 2110ms total)
T3F3C 105:681 JLINK_IsHalted()  returns FALSE (0000ms, 2109ms total)
T76A4 105:941 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 65 00 00 00  returns 0x04 (0001ms, 2110ms total)
T76A4 105:948 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 65 00 00 00  returns 0x04 (0001ms, 2111ms total)
T76A4 105:956 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: CA  returns 0x01 (0000ms, 2111ms total)
T3F3C 105:970 JLINK_IsHalted()  returns FALSE (0001ms, 2113ms total)
T3F3C 106:071 JLINK_IsHalted()  returns FALSE (0000ms, 2112ms total)
T3F3C 106:173 JLINK_IsHalted()  returns FALSE (0000ms, 2112ms total)
T3F3C 106:275 JLINK_IsHalted()  returns FALSE (0000ms, 2112ms total)
T76A4 106:536 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 65 00 00 00  returns 0x04 (0001ms, 2113ms total)
T76A4 106:543 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 65 00 00 00  returns 0x04 (0001ms, 2114ms total)
T76A4 106:551 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: CA  returns 0x01 (0000ms, 2114ms total)
T3F3C 106:565 JLINK_IsHalted()  returns FALSE (0001ms, 2116ms total)
T3F3C 106:667 JLINK_IsHalted()  returns FALSE (0000ms, 2115ms total)
T3F3C 106:769 JLINK_IsHalted()  returns FALSE (0000ms, 2115ms total)
T3F3C 106:870 JLINK_IsHalted()  returns FALSE (0000ms, 2115ms total)
T76A4 107:132 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 66 00 00 00  returns 0x04 (0000ms, 2115ms total)
T76A4 107:139 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 66 00 00 00  returns 0x04 (0001ms, 2116ms total)
T76A4 107:147 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: CC  returns 0x01 (0000ms, 2116ms total)
T3F3C 107:161 JLINK_IsHalted()  returns FALSE (0001ms, 2117ms total)
T3F3C 107:264 JLINK_IsHalted()  returns FALSE (0000ms, 2116ms total)
T3F3C 107:365 JLINK_IsHalted()  returns FALSE (0000ms, 2116ms total)
T3F3C 107:467 JLINK_IsHalted()  returns FALSE (0000ms, 2116ms total)
T76A4 107:731 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 67 00 00 00  returns 0x04 (0000ms, 2116ms total)
T76A4 107:745 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 66 00 00 00  returns 0x04 (0001ms, 2117ms total)
T76A4 107:753 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: CD  returns 0x01 (0001ms, 2118ms total)
T3F3C 107:775 JLINK_IsHalted()  returns FALSE (0001ms, 2119ms total)
T3F3C 107:877 JLINK_IsHalted()  returns FALSE (0000ms, 2118ms total)
T3F3C 107:978 JLINK_IsHalted()  returns FALSE (0000ms, 2118ms total)
T76A4 108:240 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 67 00 00 00  returns 0x04 (0001ms, 2119ms total)
T76A4 108:248 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 67 00 00 00  returns 0x04 (0001ms, 2120ms total)
T76A4 108:256 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: CE  returns 0x01 (0000ms, 2120ms total)
T3F3C 108:279 JLINK_IsHalted()  returns FALSE (0000ms, 2120ms total)
T3F3C 108:381 JLINK_IsHalted()  returns FALSE (0000ms, 2120ms total)
T3F3C 108:482 JLINK_IsHalted()  returns FALSE (0000ms, 2120ms total)
T3F3C 108:583 JLINK_IsHalted()  returns FALSE (0000ms, 2120ms total)
T76A4 108:845 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 68 00 00 00  returns 0x04 (0001ms, 2121ms total)
T76A4 108:853 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 67 00 00 00  returns 0x04 (0000ms, 2121ms total)
T76A4 108:860 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: D0  returns 0x01 (0001ms, 2122ms total)
T3F3C 108:882 JLINK_IsHalted()  returns FALSE (0001ms, 2123ms total)
T3F3C 108:984 JLINK_IsHalted()  returns FALSE (0000ms, 2122ms total)
T3F3C 109:086 JLINK_IsHalted()  returns FALSE (0000ms, 2122ms total)
T3F3C 109:187 JLINK_IsHalted()  returns FALSE (0000ms, 2122ms total)
T76A4 109:449 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 68 00 00 00  returns 0x04 (0000ms, 2122ms total)
T76A4 109:456 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 68 00 00 00  returns 0x04 (0001ms, 2123ms total)
T76A4 109:464 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: D0  returns 0x01 (0000ms, 2123ms total)
T3F3C 109:478 JLINK_IsHalted()  returns FALSE (0001ms, 2124ms total)
T3F3C 109:579 JLINK_IsHalted()  returns FALSE (0000ms, 2123ms total)
T3F3C 109:681 JLINK_IsHalted()  returns FALSE (0001ms, 2124ms total)
T3F3C 109:783 JLINK_IsHalted()  returns FALSE (0000ms, 2123ms total)
T76A4 110:045 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 69 00 00 00  returns 0x04 (0001ms, 2124ms total)
T76A4 110:053 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 69 00 00 00  returns 0x04 (0001ms, 2125ms total)
T76A4 110:068 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: D2  returns 0x01 (0001ms, 2126ms total)
T3F3C 110:083 JLINK_IsHalted()  returns FALSE (0000ms, 2126ms total)
T3F3C 110:184 JLINK_IsHalted()  returns FALSE (0000ms, 2126ms total)
T3F3C 110:285 JLINK_IsHalted()  returns FALSE (0000ms, 2126ms total)
T3F3C 110:386 JLINK_IsHalted()  returns FALSE (0000ms, 2126ms total)
T76A4 110:648 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 69 00 00 00  returns 0x04 (0001ms, 2127ms total)
T76A4 110:656 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 69 00 00 00  returns 0x04 (0001ms, 2128ms total)
T76A4 110:664 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: D3  returns 0x01 (0001ms, 2129ms total)
T3F3C 110:685 JLINK_IsHalted()  returns FALSE (0001ms, 2130ms total)
T3F3C 110:787 JLINK_IsHalted()  returns FALSE (0000ms, 2129ms total)
T3F3C 110:889 JLINK_IsHalted()  returns FALSE (0000ms, 2129ms total)
T3F3C 110:989 JLINK_IsHalted()  returns FALSE (0000ms, 2129ms total)
T76A4 111:250 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 6A 00 00 00  returns 0x04 (0001ms, 2130ms total)
T76A4 111:258 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 6A 00 00 00  returns 0x04 (0001ms, 2131ms total)
T76A4 111:266 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: D4  returns 0x01 (0000ms, 2131ms total)
T3F3C 111:287 JLINK_IsHalted()  returns FALSE (0000ms, 2131ms total)
T3F3C 111:389 JLINK_IsHalted()  returns FALSE (0000ms, 2131ms total)
T3F3C 111:490 JLINK_IsHalted()  returns FALSE (0001ms, 2132ms total)
T3F3C 111:592 JLINK_IsHalted()  returns FALSE (0000ms, 2131ms total)
T76A4 111:855 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 6B 00 00 00  returns 0x04 (0000ms, 2131ms total)
T76A4 111:869 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 6A 00 00 00  returns 0x04 (0001ms, 2132ms total)
T76A4 111:876 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: D5  returns 0x01 (0001ms, 2133ms total)
T3F3C 111:897 JLINK_IsHalted()  returns FALSE (0001ms, 2134ms total)
T3F3C 111:999 JLINK_IsHalted()  returns FALSE (0001ms, 2134ms total)
T3F3C 112:101 JLINK_IsHalted()  returns FALSE (0000ms, 2133ms total)
T76A4 112:362 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 6B 00 00 00  returns 0x04 (0001ms, 2134ms total)
T76A4 112:369 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 6B 00 00 00  returns 0x04 (0001ms, 2135ms total)
T76A4 112:377 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: D6  returns 0x01 (0001ms, 2136ms total)
T3F3C 112:398 JLINK_IsHalted()  returns FALSE (0001ms, 2137ms total)
T3F3C 112:501 JLINK_IsHalted()  returns FALSE (0000ms, 2136ms total)
T3F3C 112:602 JLINK_IsHalted()  returns FALSE (0000ms, 2136ms total)
T3F3C 112:703 JLINK_IsHalted()  returns FALSE (0000ms, 2136ms total)
T76A4 112:966 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 6C 00 00 00  returns 0x04 (0000ms, 2136ms total)
T76A4 112:974 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 6C 00 00 00  returns 0x04 (0000ms, 2136ms total)
T76A4 112:988 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: D8  returns 0x01 (0001ms, 2137ms total)
T3F3C 113:010 JLINK_IsHalted()  returns FALSE (0000ms, 2137ms total)
T3F3C 113:111 JLINK_IsHalted()  returns FALSE (0000ms, 2137ms total)
T3F3C 113:213 JLINK_IsHalted()  returns FALSE (0000ms, 2137ms total)
T76A4 113:473 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 6C 00 00 00  returns 0x04 (0000ms, 2137ms total)
T76A4 113:480 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 6C 00 00 00  returns 0x04 (0001ms, 2138ms total)
T76A4 113:488 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: D8  returns 0x01 (0000ms, 2138ms total)
T3F3C 113:502 JLINK_IsHalted()  returns FALSE (0001ms, 2139ms total)
T3F3C 113:604 JLINK_IsHalted()  returns FALSE (0000ms, 2138ms total)
T3F3C 113:705 JLINK_IsHalted()  returns FALSE (0000ms, 2138ms total)
T3F3C 113:806 JLINK_IsHalted()  returns FALSE (0000ms, 2138ms total)
T76A4 114:068 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 6D 00 00 00  returns 0x04 (0000ms, 2138ms total)
T76A4 114:075 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 6D 00 00 00  returns 0x04 (0001ms, 2139ms total)
T76A4 114:083 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: DA  returns 0x01 (0000ms, 2139ms total)
T3F3C 114:097 JLINK_IsHalted()  returns FALSE (0001ms, 2140ms total)
T3F3C 114:198 JLINK_IsHalted()  returns FALSE (0000ms, 2139ms total)
T3F3C 114:300 JLINK_IsHalted()  returns FALSE (0001ms, 2140ms total)
T3F3C 114:402 JLINK_IsHalted()  returns FALSE (0000ms, 2139ms total)
T76A4 114:668 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 6D 00 00 00  returns 0x04 (0001ms, 2140ms total)
T76A4 114:675 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 6D 00 00 00  returns 0x04 (0001ms, 2141ms total)
T76A4 114:683 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: DA  returns 0x01 (0001ms, 2142ms total)
T3F3C 114:698 JLINK_IsHalted()  returns FALSE (0001ms, 2143ms total)
T3F3C 114:799 JLINK_IsHalted()  returns FALSE (0000ms, 2142ms total)
T3F3C 114:900 JLINK_IsHalted()  returns FALSE (0000ms, 2142ms total)
T3F3C 115:001 JLINK_IsHalted()  returns FALSE (0000ms, 2142ms total)
T76A4 115:264 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 6E 00 00 00  returns 0x04 (0000ms, 2142ms total)
T76A4 115:272 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 6E 00 00 00  returns 0x04 (0000ms, 2142ms total)
T76A4 115:279 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: DC  returns 0x01 (0001ms, 2143ms total)
T3F3C 115:294 JLINK_IsHalted()  returns FALSE (0000ms, 2143ms total)
T3F3C 115:395 JLINK_IsHalted()  returns FALSE (0001ms, 2144ms total)
T3F3C 115:496 JLINK_IsHalted()  returns FALSE (0001ms, 2144ms total)
T3F3C 115:599 JLINK_IsHalted()  returns FALSE (0000ms, 2143ms total)
T76A4 115:859 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 6F 00 00 00  returns 0x04 (0000ms, 2143ms total)
T76A4 115:873 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 6E 00 00 00  returns 0x04 (0001ms, 2144ms total)
T76A4 115:881 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: DD  returns 0x01 (0000ms, 2144ms total)
T3F3C 115:902 JLINK_IsHalted()  returns FALSE (0001ms, 2145ms total)
T3F3C 116:004 JLINK_IsHalted()  returns FALSE (0001ms, 2145ms total)
T3F3C 116:105 JLINK_IsHalted()  returns FALSE (0001ms, 2145ms total)
T3F3C 116:207 JLINK_IsHalted()  returns FALSE (0000ms, 2144ms total)
T76A4 116:470 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 6F 00 00 00  returns 0x04 (0001ms, 2145ms total)
T76A4 116:478 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 6F 00 00 00  returns 0x04 (0001ms, 2146ms total)
T76A4 116:486 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: DE  returns 0x01 (0001ms, 2147ms total)
T3F3C 116:508 JLINK_IsHalted()  returns FALSE (0000ms, 2147ms total)
T3F3C 116:609 JLINK_IsHalted()  returns FALSE (0000ms, 2147ms total)
T3F3C 116:710 JLINK_IsHalted()  returns FALSE (0001ms, 2148ms total)
T3F3C 116:811 JLINK_IsHalted()  returns FALSE (0000ms, 2147ms total)
T76A4 117:073 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 70 00 00 00  returns 0x04 (0001ms, 2148ms total)
T76A4 117:081 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 70 00 00 00  returns 0x04 (0000ms, 2148ms total)
T76A4 117:095 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: E0  returns 0x01 (0001ms, 2149ms total)
T3F3C 117:116 JLINK_IsHalted()  returns FALSE (0001ms, 2150ms total)
T3F3C 117:218 JLINK_IsHalted()  returns FALSE (0000ms, 2149ms total)
T3F3C 117:319 JLINK_IsHalted()  returns FALSE (0000ms, 2149ms total)
T76A4 117:580 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 70 00 00 00  returns 0x04 (0001ms, 2150ms total)
T76A4 117:588 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 70 00 00 00  returns 0x04 (0000ms, 2150ms total)
T76A4 117:595 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: E0  returns 0x01 (0001ms, 2151ms total)
T3F3C 117:610 JLINK_IsHalted()  returns FALSE (0000ms, 2151ms total)
T3F3C 117:712 JLINK_IsHalted()  returns FALSE (0000ms, 2151ms total)
T3F3C 117:813 JLINK_IsHalted()  returns FALSE (0000ms, 2151ms total)
T3F3C 117:915 JLINK_IsHalted()  returns FALSE (0000ms, 2151ms total)
T76A4 118:176 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 71 00 00 00  returns 0x04 (0001ms, 2152ms total)
T76A4 118:184 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 71 00 00 00  returns 0x04 (0001ms, 2153ms total)
T76A4 118:191 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: E2  returns 0x01 (0001ms, 2154ms total)
T3F3C 118:206 JLINK_IsHalted()  returns FALSE (0000ms, 2154ms total)
T3F3C 118:307 JLINK_IsHalted()  returns FALSE (0000ms, 2154ms total)
T3F3C 118:409 JLINK_IsHalted()  returns FALSE (0000ms, 2154ms total)
T3F3C 118:511 JLINK_IsHalted()  returns FALSE (0001ms, 2155ms total)
T76A4 118:771 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 72 00 00 00  returns 0x04 (0001ms, 2155ms total)
T76A4 118:786 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 71 00 00 00  returns 0x04 (0000ms, 2155ms total)
T76A4 118:794 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: E3  returns 0x01 (0001ms, 2156ms total)
T3F3C 118:815 JLINK_IsHalted()  returns FALSE (0001ms, 2157ms total)
T3F3C 118:916 JLINK_IsHalted()  returns FALSE (0000ms, 2156ms total)
T3F3C 119:017 JLINK_IsHalted()  returns FALSE (0000ms, 2156ms total)
T76A4 119:279 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 72 00 00 00  returns 0x04 (0000ms, 2156ms total)
T76A4 119:286 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 72 00 00 00  returns 0x04 (0001ms, 2157ms total)
T76A4 119:294 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: E4  returns 0x01 (0001ms, 2158ms total)
T3F3C 119:315 JLINK_IsHalted()  returns FALSE (0001ms, 2159ms total)
T3F3C 119:416 JLINK_IsHalted()  returns FALSE (0000ms, 2158ms total)
T3F3C 119:517 JLINK_IsHalted()  returns FALSE (0000ms, 2158ms total)
T3F3C 119:619 JLINK_IsHalted()  returns FALSE (0000ms, 2158ms total)
T76A4 119:878 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 73 00 00 00  returns 0x04 (0001ms, 2159ms total)
T76A4 119:886 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 72 00 00 00  returns 0x04 (0001ms, 2160ms total)
T76A4 119:893 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: E5  returns 0x01 (0001ms, 2161ms total)
T3F3C 119:915 JLINK_IsHalted()  returns FALSE (0000ms, 2161ms total)
T3F3C 120:017 JLINK_IsHalted()  returns FALSE (0000ms, 2161ms total)
T3F3C 120:119 JLINK_IsHalted()  returns FALSE (0000ms, 2161ms total)
T3F3C 120:220 JLINK_IsHalted()  returns FALSE (0000ms, 2161ms total)
T76A4 120:483 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 73 00 00 00  returns 0x04 (0001ms, 2162ms total)
T76A4 120:491 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 73 00 00 00  returns 0x04 (0000ms, 2162ms total)
T76A4 120:498 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: E6  returns 0x01 (0001ms, 2163ms total)
T3F3C 120:520 JLINK_IsHalted()  returns FALSE (0000ms, 2163ms total)
T3F3C 120:621 JLINK_IsHalted()  returns FALSE (0001ms, 2164ms total)
T3F3C 120:722 JLINK_IsHalted()  returns FALSE (0000ms, 2163ms total)
T3F3C 120:823 JLINK_IsHalted()  returns FALSE (0000ms, 2163ms total)
T76A4 121:086 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 74 00 00 00  returns 0x04 (0000ms, 2163ms total)
T76A4 121:094 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 74 00 00 00  returns 0x04 (0000ms, 2163ms total)
T76A4 121:108 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: E8  returns 0x01 (0001ms, 2164ms total)
T3F3C 121:129 JLINK_IsHalted()  returns FALSE (0001ms, 2165ms total)
T3F3C 121:231 JLINK_IsHalted()  returns FALSE (0001ms, 2165ms total)
T3F3C 121:333 JLINK_IsHalted()  returns FALSE (0000ms, 2164ms total)
T76A4 121:595 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 74 00 00 00  returns 0x04 (0000ms, 2164ms total)
T76A4 121:602 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 74 00 00 00  returns 0x04 (0001ms, 2165ms total)
T76A4 121:610 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: E8  returns 0x01 (0000ms, 2165ms total)
T3F3C 121:624 JLINK_IsHalted()  returns FALSE (0001ms, 2166ms total)
T3F3C 121:726 JLINK_IsHalted()  returns FALSE (0001ms, 2166ms total)
T3F3C 121:828 JLINK_IsHalted()  returns FALSE (0000ms, 2165ms total)
T3F3C 121:930 JLINK_IsHalted()  returns FALSE (0000ms, 2165ms total)
T76A4 122:193 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 75 00 00 00  returns 0x04 (0001ms, 2166ms total)
T76A4 122:200 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 75 00 00 00  returns 0x04 (0001ms, 2167ms total)
T76A4 122:208 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: EA  returns 0x01 (0000ms, 2167ms total)
T3F3C 122:222 JLINK_IsHalted()  returns FALSE (0001ms, 2168ms total)
T3F3C 122:323 JLINK_IsHalted()  returns FALSE (0000ms, 2167ms total)
T3F3C 122:425 JLINK_IsHalted()  returns FALSE (0000ms, 2167ms total)
T3F3C 122:527 JLINK_IsHalted()  returns FALSE (0000ms, 2167ms total)
T76A4 122:786 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 75 00 00 00  returns 0x04 (0001ms, 2168ms total)
T76A4 122:794 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 75 00 00 00  returns 0x04 (0001ms, 2169ms total)
T76A4 122:801 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: EA  returns 0x01 (0001ms, 2170ms total)
T3F3C 122:816 JLINK_IsHalted()  returns FALSE (0000ms, 2170ms total)
T3F3C 122:918 JLINK_IsHalted()  returns FALSE (0000ms, 2170ms total)
T3F3C 123:019 JLINK_IsHalted()  returns FALSE (0000ms, 2170ms total)
T3F3C 123:120 JLINK_IsHalted()  returns FALSE (0000ms, 2170ms total)
T76A4 123:381 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 76 00 00 00  returns 0x04 (0001ms, 2171ms total)
T76A4 123:389 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 76 00 00 00  returns 0x04 (0001ms, 2172ms total)
T76A4 123:396 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: EC  returns 0x01 (0001ms, 2173ms total)
T3F3C 123:411 JLINK_IsHalted()  returns FALSE (0000ms, 2173ms total)
T3F3C 123:513 JLINK_IsHalted()  returns FALSE (0000ms, 2173ms total)
T3F3C 123:614 JLINK_IsHalted()  returns FALSE (0000ms, 2173ms total)
T3F3C 123:715 JLINK_IsHalted()  returns FALSE (0000ms, 2173ms total)
T76A4 123:978 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 77 00 00 00  returns 0x04 (0001ms, 2174ms total)
T76A4 123:993 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 76 00 00 00  returns 0x04 (0000ms, 2174ms total)
T76A4 124:000 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: ED  returns 0x01 (0001ms, 2175ms total)
T3F3C 124:021 JLINK_IsHalted()  returns FALSE (0001ms, 2176ms total)
T3F3C 124:123 JLINK_IsHalted()  returns FALSE (0000ms, 2175ms total)
T3F3C 124:225 JLINK_IsHalted()  returns FALSE (0000ms, 2175ms total)
T76A4 124:486 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 77 00 00 00  returns 0x04 (0001ms, 2176ms total)
T76A4 124:494 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 77 00 00 00  returns 0x04 (0000ms, 2176ms total)
T76A4 124:501 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: EE  returns 0x01 (0001ms, 2177ms total)
T3F3C 124:523 JLINK_IsHalted()  returns FALSE (0001ms, 2178ms total)
T3F3C 124:625 JLINK_IsHalted()  returns FALSE (0000ms, 2177ms total)
T3F3C 124:726 JLINK_IsHalted()  returns FALSE (0000ms, 2177ms total)
T3F3C 124:828 JLINK_IsHalted()  returns FALSE (0000ms, 2177ms total)
T76A4 125:089 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 78 00 00 00  returns 0x04 (0000ms, 2177ms total)
T76A4 125:096 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 78 00 00 00  returns 0x04 (0001ms, 2178ms total)
T76A4 125:110 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: F0  returns 0x01 (0001ms, 2179ms total)
T3F3C 125:133 JLINK_IsHalted()  returns FALSE (0000ms, 2179ms total)
T3F3C 125:234 JLINK_IsHalted()  returns FALSE (0000ms, 2179ms total)
T3F3C 125:336 JLINK_IsHalted()  returns FALSE (0000ms, 2179ms total)
T76A4 125:599 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 78 00 00 00  returns 0x04 (0001ms, 2180ms total)
T76A4 125:606 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 78 00 00 00  returns 0x04 (0001ms, 2181ms total)
T76A4 125:614 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: F0  returns 0x01 (0000ms, 2181ms total)
T3F3C 125:628 JLINK_IsHalted()  returns FALSE (0001ms, 2182ms total)
T3F3C 125:729 JLINK_IsHalted()  returns FALSE (0000ms, 2181ms total)
T3F3C 125:831 JLINK_IsHalted()  returns FALSE (0000ms, 2181ms total)
T3F3C 125:932 JLINK_IsHalted()  returns FALSE (0000ms, 2181ms total)
T76A4 126:194 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 79 00 00 00  returns 0x04 (0001ms, 2182ms total)
T76A4 126:202 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 79 00 00 00  returns 0x04 (0001ms, 2183ms total)
T76A4 126:210 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: F2  returns 0x01 (0000ms, 2183ms total)
T3F3C 126:224 JLINK_IsHalted()  returns FALSE (0001ms, 2184ms total)
T3F3C 126:326 JLINK_IsHalted()  returns FALSE (0000ms, 2183ms total)
T3F3C 126:427 JLINK_IsHalted()  returns FALSE (0000ms, 2183ms total)
T3F3C 126:528 JLINK_IsHalted()  returns FALSE (0000ms, 2183ms total)
T76A4 126:791 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 79 00 00 00  returns 0x04 (0001ms, 2184ms total)
T76A4 126:798 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 79 00 00 00  returns 0x04 (0001ms, 2185ms total)
T76A4 126:806 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: F2  returns 0x01 (0001ms, 2186ms total)
T3F3C 126:820 JLINK_IsHalted()  returns FALSE (0001ms, 2187ms total)
T3F3C 126:922 JLINK_IsHalted()  returns FALSE (0000ms, 2186ms total)
T3F3C 127:023 JLINK_IsHalted()  returns FALSE (0000ms, 2186ms total)
T3F3C 127:125 JLINK_IsHalted()  returns FALSE (0000ms, 2186ms total)
T76A4 127:386 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 7A 00 00 00  returns 0x04 (0001ms, 2187ms total)
T76A4 127:393 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 7A 00 00 00  returns 0x04 (0001ms, 2188ms total)
T76A4 127:401 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: F4  returns 0x01 (0001ms, 2189ms total)
T3F3C 127:417 JLINK_IsHalted()  returns FALSE (0000ms, 2189ms total)
T3F3C 127:518 JLINK_IsHalted()  returns FALSE (0000ms, 2189ms total)
T3F3C 127:619 JLINK_IsHalted()  returns FALSE (0000ms, 2189ms total)
T3F3C 127:720 JLINK_IsHalted()  returns FALSE (0001ms, 2190ms total)
T76A4 127:982 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 7B 00 00 00  returns 0x04 (0001ms, 2190ms total)
T76A4 127:997 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 7A 00 00 00  returns 0x04 (0001ms, 2191ms total)
T76A4 128:005 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: F5  returns 0x01 (0000ms, 2191ms total)
T3F3C 128:026 JLINK_IsHalted()  returns FALSE (0001ms, 2192ms total)
T3F3C 128:128 JLINK_IsHalted()  returns FALSE (0000ms, 2191ms total)
T3F3C 128:230 JLINK_IsHalted()  returns FALSE (0000ms, 2191ms total)
T3F3C 128:331 JLINK_IsHalted()  returns FALSE (0000ms, 2191ms total)
T76A4 128:590 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 7B 00 00 00  returns 0x04 (0001ms, 2192ms total)
T76A4 128:598 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 7B 00 00 00  returns 0x04 (0000ms, 2192ms total)
T76A4 128:605 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: F6  returns 0x01 (0001ms, 2193ms total)
T3F3C 128:626 JLINK_IsHalted()  returns FALSE (0001ms, 2194ms total)
T3F3C 128:728 JLINK_IsHalted()  returns FALSE (0000ms, 2193ms total)
T3F3C 128:830 JLINK_IsHalted()  returns FALSE (0001ms, 2194ms total)
T3F3C 128:932 JLINK_IsHalted()  returns FALSE (0000ms, 2193ms total)
T76A4 129:192 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 7C 00 00 00  returns 0x04 (0001ms, 2194ms total)
T76A4 129:200 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 7C 00 00 00  returns 0x04 (0000ms, 2194ms total)
T76A4 129:214 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: F8  returns 0x01 (0001ms, 2195ms total)
T3F3C 129:235 JLINK_IsHalted()  returns FALSE (0001ms, 2196ms total)
T3F3C 129:337 JLINK_IsHalted()  returns FALSE (0000ms, 2195ms total)
T3F3C 129:438 JLINK_IsHalted()  returns FALSE (0000ms, 2195ms total)
T3F3C 129:539 JLINK_IsHalted()  returns FALSE (0000ms, 2195ms total)
T76A4 129:802 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 7C 00 00 00  returns 0x04 (0000ms, 2195ms total)
T76A4 129:810 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 7C 00 00 00  returns 0x04 (0001ms, 2196ms total)
T76A4 129:818 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: F8  returns 0x01 (0001ms, 2197ms total)
T3F3C 129:833 JLINK_IsHalted()  returns FALSE (0000ms, 2197ms total)
T3F3C 129:934 JLINK_IsHalted()  returns FALSE (0000ms, 2197ms total)
T3F3C 130:035 JLINK_IsHalted()  returns FALSE (0000ms, 2197ms total)
T3F3C 130:136 JLINK_IsHalted()  returns FALSE (0000ms, 2197ms total)
T76A4 130:400 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 7D 00 00 00  returns 0x04 (0000ms, 2197ms total)
T76A4 130:407 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 7D 00 00 00  returns 0x04 (0001ms, 2198ms total)
T76A4 130:415 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: FA  returns 0x01 (0000ms, 2198ms total)
T3F3C 130:429 JLINK_IsHalted()  returns FALSE (0001ms, 2199ms total)
T3F3C 130:530 JLINK_IsHalted()  returns FALSE (0001ms, 2199ms total)
T3F3C 130:632 JLINK_IsHalted()  returns FALSE (0000ms, 2198ms total)
T3F3C 130:734 JLINK_IsHalted()  returns FALSE (0000ms, 2198ms total)
T76A4 130:995 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 7E 00 00 00  returns 0x04 (0001ms, 2199ms total)
T76A4 131:010 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 7D 00 00 00  returns 0x04 (0000ms, 2199ms total)
T76A4 131:017 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: FB  returns 0x01 (0001ms, 2200ms total)
T3F3C 131:039 JLINK_IsHalted()  returns FALSE (0001ms, 2201ms total)
T3F3C 131:141 JLINK_IsHalted()  returns FALSE (0001ms, 2201ms total)
T3F3C 131:243 JLINK_IsHalted()  returns FALSE (0000ms, 2200ms total)
T76A4 131:504 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 7E 00 00 00  returns 0x04 (0001ms, 2201ms total)
T76A4 131:512 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 7E 00 00 00  returns 0x04 (0000ms, 2201ms total)
T76A4 131:519 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: FC  returns 0x01 (0001ms, 2202ms total)
T3F3C 131:540 JLINK_IsHalted()  returns FALSE (0001ms, 2203ms total)
T3F3C 131:643 JLINK_IsHalted()  returns FALSE (0000ms, 2202ms total)
T3F3C 131:744 JLINK_IsHalted()  returns FALSE (0000ms, 2202ms total)
T3F3C 131:845 JLINK_IsHalted()  returns FALSE (0001ms, 2203ms total)
T76A4 132:107 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 7F 00 00 00  returns 0x04 (0000ms, 2202ms total)
T76A4 132:114 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 7E 00 00 00  returns 0x04 (0001ms, 2203ms total)
T76A4 132:122 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: FD  returns 0x01 (0001ms, 2204ms total)
T3F3C 132:144 JLINK_IsHalted()  returns FALSE (0000ms, 2204ms total)
T3F3C 132:246 JLINK_IsHalted()  returns FALSE (0000ms, 2204ms total)
T3F3C 132:347 JLINK_IsHalted()  returns FALSE (0001ms, 2205ms total)
T3F3C 132:448 JLINK_IsHalted()  returns FALSE (0001ms, 2205ms total)
T76A4 132:712 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 7F 00 00 00  returns 0x04 (0000ms, 2204ms total)
T76A4 132:719 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 7F 00 00 00  returns 0x04 (0001ms, 2205ms total)
T76A4 132:727 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: FE  returns 0x01 (0000ms, 2205ms total)
T3F3C 132:748 JLINK_IsHalted()  returns FALSE (0001ms, 2206ms total)
T3F3C 132:850 JLINK_IsHalted()  returns FALSE (0000ms, 2205ms total)
T3F3C 132:951 JLINK_IsHalted()  returns FALSE (0000ms, 2205ms total)
T3F3C 133:052 JLINK_IsHalted()  returns FALSE (0001ms, 2206ms total)
T76A4 133:315 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 80 00 00 00  returns 0x04 (0001ms, 2206ms total)
T76A4 133:323 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 80 00 00 00  returns 0x04 (0001ms, 2207ms total)
T76A4 133:338 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 00  returns 0x01 (0000ms, 2207ms total)
T3F3C 133:360 JLINK_IsHalted()  returns FALSE (0001ms, 2208ms total)
T3F3C 133:462 JLINK_IsHalted()  returns FALSE (0000ms, 2207ms total)
T3F3C 133:564 JLINK_IsHalted()  returns FALSE (0000ms, 2207ms total)
T76A4 133:826 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 80 00 00 00  returns 0x04 (0001ms, 2208ms total)
T76A4 133:834 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 80 00 00 00  returns 0x04 (0000ms, 2208ms total)
T76A4 133:841 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 00  returns 0x01 (0001ms, 2209ms total)
T3F3C 133:855 JLINK_IsHalted()  returns FALSE (0001ms, 2210ms total)
T3F3C 133:957 JLINK_IsHalted()  returns FALSE (0000ms, 2209ms total)
T3F3C 134:058 JLINK_IsHalted()  returns FALSE (0000ms, 2209ms total)
T3F3C 134:160 JLINK_IsHalted()  returns FALSE (0000ms, 2209ms total)
T76A4 134:423 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 81 00 00 00  returns 0x04 (0000ms, 2209ms total)
T76A4 134:430 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 81 00 00 00  returns 0x04 (0001ms, 2210ms total)
T76A4 134:438 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 02  returns 0x01 (0001ms, 2211ms total)
T3F3C 134:453 JLINK_IsHalted()  returns FALSE (0001ms, 2212ms total)
T3F3C 134:555 JLINK_IsHalted()  returns FALSE (0000ms, 2211ms total)
T3F3C 134:657 JLINK_IsHalted()  returns FALSE (0001ms, 2212ms total)
T3F3C 134:758 JLINK_IsHalted()  returns FALSE (0001ms, 2212ms total)
T76A4 135:021 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 82 00 00 00  returns 0x04 (0001ms, 2212ms total)
T76A4 135:035 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 81 00 00 00  returns 0x04 (0001ms, 2213ms total)
T76A4 135:043 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 03  returns 0x01 (0000ms, 2213ms total)
T3F3C 135:064 JLINK_IsHalted()  returns FALSE (0001ms, 2214ms total)
T3F3C 135:166 JLINK_IsHalted()  returns FALSE (0000ms, 2213ms total)
T3F3C 135:268 JLINK_IsHalted()  returns FALSE (0000ms, 2213ms total)
T76A4 135:529 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 82 00 00 00  returns 0x04 (0001ms, 2214ms total)
T76A4 135:537 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 82 00 00 00  returns 0x04 (0001ms, 2215ms total)
T76A4 135:545 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 04  returns 0x01 (0001ms, 2216ms total)
T3F3C 135:566 JLINK_IsHalted()  returns FALSE (0001ms, 2217ms total)
T3F3C 135:669 JLINK_IsHalted()  returns FALSE (0000ms, 2216ms total)
T3F3C 135:770 JLINK_IsHalted()  returns FALSE (0000ms, 2216ms total)
T3F3C 135:871 JLINK_IsHalted()  returns FALSE (0000ms, 2216ms total)
T76A4 136:132 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 83 00 00 00  returns 0x04 (0001ms, 2217ms total)
T76A4 136:140 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 82 00 00 00  returns 0x04 (0000ms, 2217ms total)
T76A4 136:148 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 05  returns 0x01 (0001ms, 2218ms total)
T3F3C 136:170 JLINK_IsHalted()  returns FALSE (0001ms, 2219ms total)
T3F3C 136:272 JLINK_IsHalted()  returns FALSE (0000ms, 2218ms total)
T3F3C 136:373 JLINK_IsHalted()  returns FALSE (0001ms, 2219ms total)
T3F3C 136:474 JLINK_IsHalted()  returns FALSE (0000ms, 2218ms total)
T76A4 136:736 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 83 00 00 00  returns 0x04 (0001ms, 2219ms total)
T76A4 136:745 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 83 00 00 00  returns 0x04 (0000ms, 2219ms total)
T76A4 136:752 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 06  returns 0x01 (0001ms, 2220ms total)
T3F3C 136:774 JLINK_IsHalted()  returns FALSE (0001ms, 2221ms total)
T3F3C 136:876 JLINK_IsHalted()  returns FALSE (0001ms, 2221ms total)
T3F3C 136:977 JLINK_IsHalted()  returns FALSE (0001ms, 2221ms total)
T3F3C 137:079 JLINK_IsHalted()  returns FALSE (0000ms, 2220ms total)
T76A4 137:340 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 84 00 00 00  returns 0x04 (0001ms, 2221ms total)
T76A4 137:348 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 84 00 00 00  returns 0x04 (0000ms, 2221ms total)
T76A4 137:362 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 08  returns 0x01 (0001ms, 2222ms total)
T3F3C 137:383 JLINK_IsHalted()  returns FALSE (0001ms, 2223ms total)
T3F3C 137:486 JLINK_IsHalted()  returns FALSE (0001ms, 2223ms total)
T3F3C 137:588 JLINK_IsHalted()  returns FALSE (0000ms, 2222ms total)
T3F3C 137:689 JLINK_IsHalted()  returns FALSE (0001ms, 2223ms total)
T76A4 137:951 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 84 00 00 00  returns 0x04 (0001ms, 2223ms total)
T76A4 137:958 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 84 00 00 00  returns 0x04 (0001ms, 2224ms total)
T76A4 137:966 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 08  returns 0x01 (0001ms, 2225ms total)
T3F3C 137:980 JLINK_IsHalted()  returns FALSE (0001ms, 2226ms total)
T3F3C 138:082 JLINK_IsHalted()  returns FALSE (0000ms, 2225ms total)
T3F3C 138:184 JLINK_IsHalted()  returns FALSE (0000ms, 2225ms total)
T3F3C 138:285 JLINK_IsHalted()  returns FALSE (0000ms, 2225ms total)
T76A4 138:547 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 85 00 00 00  returns 0x04 (0001ms, 2226ms total)
T76A4 138:555 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 85 00 00 00  returns 0x04 (0000ms, 2226ms total)
T76A4 138:562 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 0A  returns 0x01 (0001ms, 2227ms total)
T3F3C 138:577 JLINK_IsHalted()  returns FALSE (0001ms, 2228ms total)
T3F3C 138:679 JLINK_IsHalted()  returns FALSE (0000ms, 2227ms total)
T3F3C 138:780 JLINK_IsHalted()  returns FALSE (0000ms, 2227ms total)
T3F3C 138:881 JLINK_IsHalted()  returns FALSE (0001ms, 2228ms total)
T76A4 139:143 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 86 00 00 00  returns 0x04 (0001ms, 2228ms total)
T76A4 139:158 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 85 00 00 00  returns 0x04 (0000ms, 2228ms total)
T76A4 139:165 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 0B  returns 0x01 (0001ms, 2229ms total)
T3F3C 139:188 JLINK_IsHalted()  returns FALSE (0000ms, 2229ms total)
T3F3C 139:289 JLINK_IsHalted()  returns FALSE (0000ms, 2229ms total)
T3F3C 139:390 JLINK_IsHalted()  returns FALSE (0000ms, 2229ms total)
T3F3C 139:491 JLINK_IsHalted()  returns FALSE (0000ms, 2229ms total)
T76A4 139:752 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 86 00 00 00  returns 0x04 (0001ms, 2230ms total)
T76A4 139:760 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 86 00 00 00  returns 0x04 (0001ms, 2231ms total)
T76A4 139:767 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 0C  returns 0x01 (0001ms, 2232ms total)
T3F3C 139:790 JLINK_IsHalted()  returns FALSE (0000ms, 2232ms total)
T3F3C 139:890 JLINK_IsHalted()  returns FALSE (0000ms, 2232ms total)
T3F3C 139:992 JLINK_IsHalted()  returns FALSE (0000ms, 2232ms total)
T3F3C 140:093 JLINK_IsHalted()  returns FALSE (0000ms, 2232ms total)
T76A4 140:363 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 87 00 00 00  returns 0x04 (0001ms, 2233ms total)
T76A4 140:371 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 87 00 00 00  returns 0x04 (0001ms, 2234ms total)
T76A4 140:385 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 0E  returns 0x01 (0001ms, 2235ms total)
T3F3C 140:407 JLINK_IsHalted()  returns FALSE (0000ms, 2235ms total)
T3F3C 140:509 JLINK_IsHalted()  returns FALSE (0000ms, 2235ms total)
T3F3C 140:610 JLINK_IsHalted()  returns FALSE (0000ms, 2235ms total)
T76A4 140:876 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 87 00 00 00  returns 0x04 (0001ms, 2236ms total)
T76A4 140:884 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 87 00 00 00  returns 0x04 (0000ms, 2236ms total)
T76A4 140:891 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 0E  returns 0x01 (0001ms, 2237ms total)
T3F3C 140:906 JLINK_IsHalted()  returns FALSE (0001ms, 2238ms total)
T3F3C 141:007 JLINK_IsHalted()  returns FALSE (0001ms, 2238ms total)
T3F3C 141:108 JLINK_IsHalted()  returns FALSE (0000ms, 2237ms total)
T3F3C 141:210 JLINK_IsHalted()  returns FALSE (0000ms, 2237ms total)
T76A4 141:472 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 88 00 00 00  returns 0x04 (0001ms, 2238ms total)
T76A4 141:479 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 88 00 00 00  returns 0x04 (0001ms, 2239ms total)
T76A4 141:487 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 10  returns 0x01 (0001ms, 2240ms total)
T3F3C 141:502 JLINK_IsHalted()  returns FALSE (0001ms, 2241ms total)
T3F3C 141:604 JLINK_IsHalted()  returns FALSE (0000ms, 2240ms total)
T3F3C 141:705 JLINK_IsHalted()  returns FALSE (0000ms, 2240ms total)
T3F3C 141:807 JLINK_IsHalted()  returns FALSE (0000ms, 2240ms total)
T76A4 142:071 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 89 00 00 00  returns 0x04 (0001ms, 2241ms total)
T76A4 142:086 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 88 00 00 00  returns 0x04 (0000ms, 2241ms total)
T76A4 142:093 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 11  returns 0x01 (0001ms, 2242ms total)
T3F3C 142:115 JLINK_IsHalted()  returns FALSE (0000ms, 2242ms total)
T3F3C 142:216 JLINK_IsHalted()  returns FALSE (0000ms, 2242ms total)
T3F3C 142:317 JLINK_IsHalted()  returns FALSE (0000ms, 2242ms total)
T76A4 142:580 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 89 00 00 00  returns 0x04 (0001ms, 2243ms total)
T76A4 142:587 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 89 00 00 00  returns 0x04 (0001ms, 2244ms total)
T76A4 142:595 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 12  returns 0x01 (0001ms, 2245ms total)
T3F3C 142:618 JLINK_IsHalted()  returns FALSE (0000ms, 2245ms total)
T3F3C 142:719 JLINK_IsHalted()  returns FALSE (0000ms, 2245ms total)
T3F3C 142:821 JLINK_IsHalted()  returns FALSE (0000ms, 2245ms total)
T3F3C 142:922 JLINK_IsHalted()  returns FALSE (0000ms, 2245ms total)
T76A4 143:182 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 8A 00 00 00  returns 0x04 (0001ms, 2246ms total)
T76A4 143:190 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 89 00 00 00  returns 0x04 (0001ms, 2247ms total)
T76A4 143:197 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 13  returns 0x01 (0001ms, 2248ms total)
T3F3C 143:219 JLINK_IsHalted()  returns FALSE (0001ms, 2249ms total)
T3F3C 143:321 JLINK_IsHalted()  returns FALSE (0000ms, 2248ms total)
T3F3C 143:422 JLINK_IsHalted()  returns FALSE (0000ms, 2248ms total)
T3F3C 143:523 JLINK_IsHalted()  returns FALSE (0000ms, 2248ms total)
T76A4 143:785 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 8A 00 00 00  returns 0x04 (0000ms, 2248ms total)
T76A4 143:792 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 8A 00 00 00  returns 0x04 (0001ms, 2249ms total)
T76A4 143:800 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 14  returns 0x01 (0000ms, 2249ms total)
T3F3C 143:821 JLINK_IsHalted()  returns FALSE (0001ms, 2250ms total)
T3F3C 143:922 JLINK_IsHalted()  returns FALSE (0000ms, 2249ms total)
T3F3C 144:024 JLINK_IsHalted()  returns FALSE (0000ms, 2249ms total)
T3F3C 144:124 JLINK_IsHalted()  returns FALSE (0000ms, 2249ms total)
T76A4 144:389 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 8B 00 00 00  returns 0x04 (0001ms, 2250ms total)
T76A4 144:396 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 8B 00 00 00  returns 0x04 (0001ms, 2251ms total)
T76A4 144:411 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 16  returns 0x01 (0001ms, 2252ms total)
T3F3C 144:432 JLINK_IsHalted()  returns FALSE (0001ms, 2253ms total)
T3F3C 144:534 JLINK_IsHalted()  returns FALSE (0000ms, 2252ms total)
T3F3C 144:635 JLINK_IsHalted()  returns FALSE (0000ms, 2252ms total)
T76A4 144:895 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 8B 00 00 00  returns 0x04 (0000ms, 2252ms total)
T76A4 144:902 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 8B 00 00 00  returns 0x04 (0001ms, 2253ms total)
T76A4 144:910 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 16  returns 0x01 (0000ms, 2253ms total)
T3F3C 144:924 JLINK_IsHalted()  returns FALSE (0001ms, 2254ms total)
T3F3C 145:026 JLINK_IsHalted()  returns FALSE (0000ms, 2253ms total)
T3F3C 145:128 JLINK_IsHalted()  returns FALSE (0000ms, 2253ms total)
T3F3C 145:229 JLINK_IsHalted()  returns FALSE (0000ms, 2253ms total)
T76A4 145:492 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 8C 00 00 00  returns 0x04 (0001ms, 2254ms total)
T76A4 145:500 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 8C 00 00 00  returns 0x04 (0000ms, 2254ms total)
T76A4 145:507 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 18  returns 0x01 (0001ms, 2255ms total)
T3F3C 145:522 JLINK_IsHalted()  returns FALSE (0000ms, 2255ms total)
T3F3C 145:623 JLINK_IsHalted()  returns FALSE (0000ms, 2255ms total)
T3F3C 145:724 JLINK_IsHalted()  returns FALSE (0001ms, 2256ms total)
T3F3C 145:825 JLINK_IsHalted()  returns FALSE (0000ms, 2255ms total)
T76A4 146:089 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 8D 00 00 00  returns 0x04 (0001ms, 2256ms total)
T76A4 146:104 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 8C 00 00 00  returns 0x04 (0001ms, 2257ms total)
T76A4 146:112 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 19  returns 0x01 (0001ms, 2258ms total)
T3F3C 146:133 JLINK_IsHalted()  returns FALSE (0001ms, 2259ms total)
T3F3C 146:235 JLINK_IsHalted()  returns FALSE (0000ms, 2258ms total)
T3F3C 146:336 JLINK_IsHalted()  returns FALSE (0000ms, 2258ms total)
T76A4 146:597 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 8D 00 00 00  returns 0x04 (0001ms, 2259ms total)
T76A4 146:605 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 8D 00 00 00  returns 0x04 (0000ms, 2259ms total)
T76A4 146:612 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 1A  returns 0x01 (0001ms, 2260ms total)
T3F3C 146:633 JLINK_IsHalted()  returns FALSE (0001ms, 2261ms total)
T3F3C 146:734 JLINK_IsHalted()  returns FALSE (0000ms, 2260ms total)
T3F3C 146:836 JLINK_IsHalted()  returns FALSE (0001ms, 2261ms total)
T3F3C 146:938 JLINK_IsHalted()  returns FALSE (0000ms, 2260ms total)
T76A4 147:198 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 8E 00 00 00  returns 0x04 (0001ms, 2261ms total)
T76A4 147:206 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 8D 00 00 00  returns 0x04 (0001ms, 2262ms total)
T76A4 147:214 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 1B  returns 0x01 (0001ms, 2263ms total)
T3F3C 147:235 JLINK_IsHalted()  returns FALSE (0001ms, 2264ms total)
T3F3C 147:337 JLINK_IsHalted()  returns FALSE (0001ms, 2264ms total)
T3F3C 147:439 JLINK_IsHalted()  returns FALSE (0001ms, 2264ms total)
T76A4 147:703 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 8E 00 00 00  returns 0x04 (0001ms, 2264ms total)
T76A4 147:711 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 8E 00 00 00  returns 0x04 (0000ms, 2264ms total)
T76A4 147:718 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 1C  returns 0x01 (0001ms, 2265ms total)
T3F3C 147:740 JLINK_IsHalted()  returns FALSE (0001ms, 2266ms total)
T3F3C 147:842 JLINK_IsHalted()  returns FALSE (0000ms, 2265ms total)
T3F3C 147:942 JLINK_IsHalted()  returns FALSE (0000ms, 2265ms total)
T3F3C 148:044 JLINK_IsHalted()  returns FALSE (0001ms, 2266ms total)
T76A4 148:306 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 8F 00 00 00  returns 0x04 (0001ms, 2266ms total)
T76A4 148:314 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 8E 00 00 00  returns 0x04 (0000ms, 2266ms total)
T76A4 148:321 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 1E  returns 0x01 (0001ms, 2267ms total)
T3F3C 148:343 JLINK_IsHalted()  returns FALSE (0000ms, 2267ms total)
T3F3C 148:444 JLINK_IsHalted()  returns FALSE (0000ms, 2267ms total)
T3F3C 148:545 JLINK_IsHalted()  returns FALSE (0000ms, 2267ms total)
T3F3C 148:647 JLINK_IsHalted()  returns FALSE (0000ms, 2267ms total)
T76A4 148:909 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 8F 00 00 00  returns 0x04 (0001ms, 2268ms total)
T76A4 148:917 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 8F 00 00 00  returns 0x04 (0001ms, 2269ms total)
T76A4 148:925 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 1E  returns 0x01 (0001ms, 2270ms total)
T3F3C 148:939 JLINK_IsHalted()  returns FALSE (0001ms, 2271ms total)
T3F3C 149:041 JLINK_IsHalted()  returns FALSE (0000ms, 2270ms total)
T3F3C 149:143 JLINK_IsHalted()  returns FALSE (0000ms, 2270ms total)
T3F3C 149:244 JLINK_IsHalted()  returns FALSE (0000ms, 2270ms total)
T76A4 149:506 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 90 00 00 00  returns 0x04 (0000ms, 2270ms total)
T76A4 149:513 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 90 00 00 00  returns 0x04 (0001ms, 2271ms total)
T76A4 149:528 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 20  returns 0x01 (0000ms, 2271ms total)
T3F3C 149:543 JLINK_IsHalted()  returns FALSE (0001ms, 2272ms total)
T3F3C 149:645 JLINK_IsHalted()  returns FALSE (0001ms, 2272ms total)
T3F3C 149:746 JLINK_IsHalted()  returns FALSE (0001ms, 2272ms total)
T3F3C 149:847 JLINK_IsHalted()  returns FALSE (0001ms, 2272ms total)
T76A4 150:111 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 90 00 00 00  returns 0x04 (0000ms, 2271ms total)
T76A4 150:119 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 90 00 00 00  returns 0x04 (0000ms, 2272ms total)
T76A4 150:126 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 20  returns 0x01 (0001ms, 2273ms total)
T3F3C 150:141 JLINK_IsHalted()  returns FALSE (0001ms, 2274ms total)
T3F3C 150:243 JLINK_IsHalted()  returns FALSE (0000ms, 2273ms total)
T3F3C 150:345 JLINK_IsHalted()  returns FALSE (0000ms, 2273ms total)
T3F3C 150:446 JLINK_IsHalted()  returns FALSE (0000ms, 2273ms total)
T76A4 150:707 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 91 00 00 00  returns 0x04 (0001ms, 2274ms total)
T76A4 150:715 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 91 00 00 00  returns 0x04 (0000ms, 2274ms total)
T76A4 150:722 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 22  returns 0x01 (0001ms, 2275ms total)
T3F3C 150:736 JLINK_IsHalted()  returns FALSE (0001ms, 2276ms total)
T3F3C 150:838 JLINK_IsHalted()  returns FALSE (0000ms, 2275ms total)
T3F3C 150:939 JLINK_IsHalted()  returns FALSE (0000ms, 2275ms total)
T3F3C 151:040 JLINK_IsHalted()  returns FALSE (0000ms, 2275ms total)
T76A4 151:302 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 92 00 00 00  returns 0x04 (0000ms, 2275ms total)
T76A4 151:316 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 91 00 00 00  returns 0x04 (0001ms, 2277ms total)
T76A4 151:323 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 23  returns 0x01 (0001ms, 2278ms total)
T3F3C 151:344 JLINK_IsHalted()  returns FALSE (0001ms, 2279ms total)
T3F3C 151:446 JLINK_IsHalted()  returns FALSE (0001ms, 2279ms total)
T3F3C 151:548 JLINK_IsHalted()  returns FALSE (0000ms, 2278ms total)
T76A4 151:810 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 92 00 00 00  returns 0x04 (0001ms, 2279ms total)
T76A4 151:817 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 92 00 00 00  returns 0x04 (0001ms, 2280ms total)
T76A4 151:825 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 24  returns 0x01 (0000ms, 2280ms total)
T3F3C 151:846 JLINK_IsHalted()  returns FALSE (0001ms, 2282ms total)
T3F3C 151:949 JLINK_IsHalted()  returns FALSE (0000ms, 2281ms total)
T3F3C 152:050 JLINK_IsHalted()  returns FALSE (0001ms, 2282ms total)
T3F3C 152:151 JLINK_IsHalted()  returns FALSE (0001ms, 2282ms total)
T76A4 152:412 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 93 00 00 00  returns 0x04 (0001ms, 2282ms total)
T76A4 152:420 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 93 00 00 00  returns 0x04 (0001ms, 2283ms total)
T76A4 152:434 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 26  returns 0x01 (0001ms, 2284ms total)
T3F3C 152:455 JLINK_IsHalted()  returns FALSE (0001ms, 2285ms total)
T3F3C 152:558 JLINK_IsHalted()  returns FALSE (0000ms, 2284ms total)
T3F3C 152:659 JLINK_IsHalted()  returns FALSE (0000ms, 2284ms total)
T76A4 152:920 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 93 00 00 00  returns 0x04 (0001ms, 2285ms total)
T76A4 152:928 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 93 00 00 00  returns 0x04 (0000ms, 2285ms total)
T76A4 152:935 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 26  returns 0x01 (0001ms, 2286ms total)
T3F3C 152:950 JLINK_IsHalted()  returns FALSE (0000ms, 2286ms total)
T3F3C 153:051 JLINK_IsHalted()  returns FALSE (0000ms, 2286ms total)
T3F3C 153:152 JLINK_IsHalted()  returns FALSE (0000ms, 2286ms total)
T3F3C 153:254 JLINK_IsHalted()  returns FALSE (0000ms, 2286ms total)
T76A4 153:515 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 94 00 00 00  returns 0x04 (0001ms, 2287ms total)
T76A4 153:523 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 94 00 00 00  returns 0x04 (0000ms, 2287ms total)
T76A4 153:530 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 28  returns 0x01 (0001ms, 2288ms total)
T3F3C 153:545 JLINK_IsHalted()  returns FALSE (0001ms, 2289ms total)
T3F3C 153:646 JLINK_IsHalted()  returns FALSE (0000ms, 2288ms total)
T3F3C 153:747 JLINK_IsHalted()  returns FALSE (0000ms, 2288ms total)
T3F3C 153:848 JLINK_IsHalted()  returns FALSE (0000ms, 2288ms total)
T76A4 154:113 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 94 00 00 00  returns 0x04 (0001ms, 2289ms total)
T76A4 154:121 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 94 00 00 00  returns 0x04 (0001ms, 2290ms total)
T76A4 154:129 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 28  returns 0x01 (0000ms, 2290ms total)
T3F3C 154:143 JLINK_IsHalted()  returns FALSE (0001ms, 2291ms total)
T3F3C 154:246 JLINK_IsHalted()  returns FALSE (0000ms, 2290ms total)
T3F3C 154:347 JLINK_IsHalted()  returns FALSE (0000ms, 2290ms total)
T3F3C 154:448 JLINK_IsHalted()  returns FALSE (0000ms, 2290ms total)
T76A4 154:713 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 95 00 00 00  returns 0x04 (0001ms, 2291ms total)
T76A4 154:721 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 95 00 00 00  returns 0x04 (0001ms, 2292ms total)
T76A4 154:729 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 2A  returns 0x01 (0000ms, 2292ms total)
T3F3C 154:743 JLINK_IsHalted()  returns FALSE (0001ms, 2293ms total)
T3F3C 154:845 JLINK_IsHalted()  returns FALSE (0000ms, 2292ms total)
T3F3C 154:946 JLINK_IsHalted()  returns FALSE (0000ms, 2292ms total)
T3F3C 155:047 JLINK_IsHalted()  returns FALSE (0000ms, 2292ms total)
T76A4 155:333 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 96 00 00 00  returns 0x04 (0000ms, 2292ms total)
T76A4 155:347 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 95 00 00 00  returns 0x04 (0001ms, 2293ms total)
T76A4 155:355 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 2B  returns 0x01 (0001ms, 2294ms total)
T3F3C 155:377 JLINK_IsHalted()  returns FALSE (0000ms, 2294ms total)
T76A4 155:422 JLINK_ReadMemEx(0x00001056, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00001056) - Data: 0B 49  returns 0x02 (0000ms, 2294ms total)
T76A4 155:422 JLINK_ReadMemEx(0x00001058, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00001058) - Data: 0A 68  returns 0x02 (0001ms, 2295ms total)
T76A4 155:423 JLINK_ReadMemEx(0x00001058, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00001058) - Data: 0A 68  returns 0x02 (0001ms, 2296ms total)
T76A4 155:424 JLINK_ReadMemEx(0x0000105A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000105A) - Data: 52 1C  returns 0x02 (0000ms, 2296ms total)
T76A4 155:424 JLINK_ReadMemEx(0x0000105A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000105A) - Data: 52 1C  returns 0x02 (0001ms, 2297ms total)
T76A4 155:425 JLINK_ReadMemEx(0x0000105C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000105C) - Data: 0A 60  returns 0x02 (0001ms, 2298ms total)
T76A4 155:426 JLINK_ReadMemEx(0x0000105C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000105C) - Data: 0A 60  returns 0x02 (0000ms, 2298ms total)
T76A4 155:426 JLINK_ReadMemEx(0x0000105E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000105E) - Data: FF E7  returns 0x02 (0001ms, 2299ms total)
T3F3C 155:478 JLINK_IsHalted()  returns FALSE (0000ms, 2299ms total)
T3F3C 155:578 JLINK_IsHalted()  returns FALSE (0000ms, 2299ms total)
T76A4 155:605 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 96 00 00 00  returns 0x04 (0001ms, 2300ms total)
T76A4 155:843 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 96 00 00 00  returns 0x04 (0001ms, 2301ms total)
T76A4 155:851 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 96 00 00 00  returns 0x04 (0001ms, 2302ms total)
T76A4 155:859 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 2C  returns 0x01 (0000ms, 2302ms total)
T3F3C 155:880 JLINK_IsHalted()  returns FALSE (0001ms, 2303ms total)
T76A4 155:881 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 96 00 00 00  returns 0x04 (0001ms, 2303ms total)
T3F3C 155:982 JLINK_IsHalted()  returns FALSE (0000ms, 2303ms total)
T3F3C 156:083 JLINK_IsHalted()  returns FALSE (0000ms, 2303ms total)
T76A4 156:347 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 97 00 00 00  returns 0x04 (0001ms, 2304ms total)
T76A4 156:355 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 96 00 00 00  returns 0x04 (0000ms, 2304ms total)
T76A4 156:362 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 2D  returns 0x01 (0001ms, 2305ms total)
T3F3C 156:383 JLINK_IsHalted()  returns FALSE (0001ms, 2306ms total)
T3F3C 156:484 JLINK_IsHalted()  returns FALSE (0000ms, 2305ms total)
T3F3C 156:586 JLINK_IsHalted()  returns FALSE (0000ms, 2305ms total)
T3F3C 156:687 JLINK_IsHalted()  returns FALSE (0000ms, 2305ms total)
T76A4 156:949 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 97 00 00 00  returns 0x04 (0001ms, 2306ms total)
T76A4 156:957 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 97 00 00 00  returns 0x04 (0000ms, 2306ms total)
T76A4 156:964 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 2E  returns 0x01 (0001ms, 2307ms total)
T3F3C 156:985 JLINK_IsHalted()  returns FALSE (0001ms, 2308ms total)
T76A4 156:986 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 97 00 00 00  returns 0x04 (0001ms, 2308ms total)
T3F3C 157:088 JLINK_IsHalted()  returns FALSE (0000ms, 2308ms total)
T3F3C 157:189 JLINK_IsHalted()  returns FALSE (0000ms, 2308ms total)
T76A4 157:449 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 98 00 00 00  returns 0x04 (0000ms, 2308ms total)
T76A4 157:457 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 98 00 00 00  returns 0x04 (0000ms, 2308ms total)
T76A4 157:471 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 30  returns 0x01 (0001ms, 2309ms total)
T3F3C 157:493 JLINK_IsHalted()  returns FALSE (0001ms, 2310ms total)
T3F3C 157:594 JLINK_IsHalted()  returns FALSE (0000ms, 2309ms total)
T3F3C 157:695 JLINK_IsHalted()  returns FALSE (0000ms, 2309ms total)
T3F3C 157:796 JLINK_IsHalted()  returns FALSE (0000ms, 2309ms total)
T76A4 158:060 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 98 00 00 00  returns 0x04 (0001ms, 2310ms total)
T76A4 158:068 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 98 00 00 00  returns 0x04 (0001ms, 2311ms total)
T76A4 158:076 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 30  returns 0x01 (0000ms, 2311ms total)
T3F3C 158:090 JLINK_IsHalted()  returns FALSE (0001ms, 2312ms total)
T3F3C 158:193 JLINK_IsHalted()  returns FALSE (0000ms, 2311ms total)
T3F3C 158:294 JLINK_IsHalted()  returns FALSE (0000ms, 2311ms total)
T3F3C 158:395 JLINK_IsHalted()  returns FALSE (0000ms, 2311ms total)
T76A4 158:657 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 99 00 00 00  returns 0x04 (0001ms, 2312ms total)
T76A4 158:665 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 99 00 00 00  returns 0x04 (0001ms, 2313ms total)
T76A4 158:673 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 32  returns 0x01 (0000ms, 2313ms total)
T3F3C 158:687 JLINK_IsHalted()  returns FALSE (0001ms, 2314ms total)
T3F3C 158:788 JLINK_IsHalted()  returns FALSE (0000ms, 2313ms total)
T3F3C 158:889 JLINK_IsHalted()  returns FALSE (0000ms, 2313ms total)
T3F3C 158:991 JLINK_IsHalted()  returns FALSE (0000ms, 2313ms total)
T76A4 159:253 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 9A 00 00 00  returns 0x04 (0001ms, 2314ms total)
T76A4 159:268 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 99 00 00 00  returns 0x04 (0000ms, 2314ms total)
T76A4 159:275 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 33  returns 0x01 (0001ms, 2315ms total)
T3F3C 159:297 JLINK_IsHalted()  returns FALSE (0001ms, 2316ms total)
T3F3C 159:400 JLINK_IsHalted()  returns FALSE (0000ms, 2315ms total)
T3F3C 159:501 JLINK_IsHalted()  returns FALSE (0000ms, 2315ms total)
T76A4 159:761 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 9A 00 00 00  returns 0x04 (0001ms, 2316ms total)
T76A4 159:769 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 9A 00 00 00  returns 0x04 (0001ms, 2317ms total)
T76A4 159:777 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 34  returns 0x01 (0000ms, 2317ms total)
T3F3C 159:798 JLINK_IsHalted()  returns FALSE (0000ms, 2317ms total)
T3F3C 159:900 JLINK_IsHalted()  returns FALSE (0000ms, 2317ms total)
T3F3C 160:002 JLINK_IsHalted()  returns FALSE (0000ms, 2317ms total)
T3F3C 160:103 JLINK_IsHalted()  returns FALSE (0000ms, 2317ms total)
T76A4 160:366 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 9B 00 00 00  returns 0x04 (0001ms, 2318ms total)
T76A4 160:374 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 9A 00 00 00  returns 0x04 (0001ms, 2319ms total)
T76A4 160:382 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 35  returns 0x01 (0000ms, 2319ms total)
T3F3C 160:404 JLINK_IsHalted()  returns FALSE (0001ms, 2320ms total)
T3F3C 160:505 JLINK_IsHalted()  returns FALSE (0000ms, 2319ms total)
T3F3C 160:607 JLINK_IsHalted()  returns FALSE (0000ms, 2319ms total)
T76A4 160:632 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 9B 00 00 00  returns 0x04 (0001ms, 2320ms total)
T76A4 160:646 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 9B 00 00 00  returns 0x04 (0001ms, 2321ms total)
T76A4 160:654 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 36  returns 0x01 (0000ms, 2321ms total)
T3F3C 160:708 JLINK_IsHalted()  returns FALSE (0001ms, 2322ms total)
T76A4 160:968 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 9B 00 00 00  returns 0x04 (0001ms, 2322ms total)
T76A4 160:969 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 9B 00 00 00  returns 0x04 (0001ms, 2323ms total)
T76A4 160:977 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 36  returns 0x01 (0000ms, 2323ms total)
T3F3C 160:991 JLINK_IsHalted()  returns FALSE (0001ms, 2324ms total)
T3F3C 161:094 JLINK_IsHalted()  returns FALSE (0001ms, 2324ms total)
T3F3C 161:196 JLINK_IsHalted()  returns FALSE (0000ms, 2323ms total)
T3F3C 161:296 JLINK_IsHalted()  returns FALSE (0000ms, 2323ms total)
T76A4 161:557 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 9C 00 00 00  returns 0x04 (0000ms, 2323ms total)
T76A4 161:564 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 9C 00 00 00  returns 0x04 (0001ms, 2324ms total)
T76A4 161:572 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 38  returns 0x01 (0001ms, 2325ms total)
T3F3C 161:587 JLINK_IsHalted()  returns FALSE (0001ms, 2326ms total)
T3F3C 161:689 JLINK_IsHalted()  returns FALSE (0000ms, 2325ms total)
T3F3C 161:791 JLINK_IsHalted()  returns FALSE (0000ms, 2325ms total)
T3F3C 161:892 JLINK_IsHalted()  returns FALSE (0000ms, 2325ms total)
T76A4 162:154 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 9C 00 00 00  returns 0x04 (0001ms, 2326ms total)
T76A4 162:161 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 9C 00 00 00  returns 0x04 (0001ms, 2327ms total)
T76A4 162:169 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 38  returns 0x01 (0001ms, 2328ms total)
T3F3C 162:183 JLINK_IsHalted()  returns FALSE (0001ms, 2329ms total)
T3F3C 162:284 JLINK_IsHalted()  returns FALSE (0000ms, 2328ms total)
T3F3C 162:386 JLINK_IsHalted()  returns FALSE (0000ms, 2328ms total)
T3F3C 162:488 JLINK_IsHalted()  returns FALSE (0001ms, 2329ms total)
T76A4 162:751 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 9D 00 00 00  returns 0x04 (0000ms, 2328ms total)
T76A4 162:758 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 9D 00 00 00  returns 0x04 (0001ms, 2329ms total)
T76A4 162:766 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 3A  returns 0x01 (0001ms, 2330ms total)
T3F3C 162:781 JLINK_IsHalted()  returns FALSE (0001ms, 2331ms total)
T3F3C 162:882 JLINK_IsHalted()  returns FALSE (0000ms, 2330ms total)
T3F3C 162:984 JLINK_IsHalted()  returns FALSE (0000ms, 2330ms total)
T3F3C 163:084 JLINK_IsHalted()  returns FALSE (0000ms, 2330ms total)
T76A4 163:346 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 9E 00 00 00  returns 0x04 (0000ms, 2330ms total)
T76A4 163:361 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 9D 00 00 00  returns 0x04 (0001ms, 2331ms total)
T76A4 163:369 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 3B  returns 0x01 (0001ms, 2332ms total)
T3F3C 163:390 JLINK_IsHalted()  returns FALSE (0002ms, 2334ms total)
T3F3C 163:492 JLINK_IsHalted()  returns FALSE (0000ms, 2332ms total)
T3F3C 163:593 JLINK_IsHalted()  returns FALSE (0000ms, 2332ms total)
T3F3C 163:694 JLINK_IsHalted()  returns FALSE (0001ms, 2333ms total)
T76A4 163:957 JLINK_ReadMemEx(0x02019B78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B78) - Data: 9E 00 00 00  returns 0x04 (0001ms, 2333ms total)
T76A4 163:965 JLINK_ReadMemEx(0x02019B18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019B18) - Data: 9E 00 00 00  returns 0x04 (0001ms, 2334ms total)
T76A4 163:973 JLINK_ReadMemEx(0x02019B14, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019B14) - Data: 3C  returns 0x01 (0000ms, 2334ms total)
T3F3C 163:994 JLINK_IsHalted()  returns FALSE (0001ms, 2335ms total)
T3F3C 164:096 JLINK_Halt()  returns 0x00 (0003ms, 2337ms total)
T3F3C 164:099 JLINK_IsHalted()  returns TRUE (0000ms, 2337ms total)
T3F3C 164:099 JLINK_IsHalted()  returns TRUE (0000ms, 2337ms total)
T3F3C 164:099 JLINK_IsHalted()  returns TRUE (0000ms, 2337ms total)
T3F3C 164:099 JLINK_ReadReg(R15 (PC))  returns 0x000033B0 (0000ms, 2337ms total)
T3F3C 164:099 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 2337ms total)
T3F3C 164:099 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 01 00 00 00  returns 0x01 (0001ms, 2338ms total)
T3F3C 164:100 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0000ms, 2338ms total)
T3F3C 164:100 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0001ms, 2339ms total)
T76A4 164:681 JLINK_Close() -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> (0022ms, 2361ms total)
T76A4 164:681  (0022ms, 2361ms total)
T76A4 164:681 Closed (0022ms, 2361ms total)