JLinkLog.txt
517 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
T29C8 286:747 SEGGER J-Link V6.46 Log File (0001ms, 1608ms total)
T29C8 286:747 DLL Compiled: May 23 2019 17:49:56 (0001ms, 1608ms total)
T29C8 286:747 Logging started @ 2022-08-11 15:48 (0001ms, 1608ms total)
T29C8 286:748 JLINK_SetWarnOutHandler(...) (0000ms, 1608ms total)
T29C8 286:748 JLINK_OpenEx(...)
Firmware: J-Link V9 compiled May 7 2021 16:26:12
Hardware: V9.40
S/N: 59425868
Feature(s): RDI, GDB, FlashDL, FlashBP, JFlash, RDDI
TELNET listener socket opened on port 19021WEBSRV
Starting webserver (0049ms, 1657ms total)
T29C8 286:748 WEBSRV Webserver running on local port 19081 (0049ms, 1657ms total)
T29C8 286:748 returns O.K. (0049ms, 1657ms total)
T29C8 286:797 JLINK_GetEmuCaps() returns 0xB9FF7BBF (0000ms, 1657ms total)
T29C8 286:798 JLINK_TIF_GetAvailable(...) (0001ms, 1658ms total)
T29C8 286:799 JLINK_SetErrorOutHandler(...) (0000ms, 1658ms total)
T29C8 286:799 JLINK_ExecCommand("ProjectFile = "E:\C100B_S6\C100B_GD\Proj\JLinkSettings.ini"", ...). returns 0x00 (0003ms, 1661ms total)
T29C8 286:802 JLINK_ExecCommand("Device = GD32F303RE", ...). Device "GD32F303RE" selected. returns 0x00 (0001ms, 1662ms total)
T29C8 286:803 JLINK_ExecCommand("DisableConnectionTimeout", ...). returns 0x01 (0000ms, 1662ms total)
T29C8 286:803 JLINK_GetHardwareVersion() returns 0x16F30 (0000ms, 1662ms total)
T29C8 286:803 JLINK_GetDLLVersion() returns 64600 (0000ms, 1662ms total)
T29C8 286:803 JLINK_GetFirmwareString(...) (0000ms, 1662ms total)
T29C8 286:803 JLINK_GetDLLVersion() returns 64600 (0000ms, 1662ms total)
T29C8 286:803 JLINK_GetCompileDateTime() (0000ms, 1662ms total)
T29C8 286:803 JLINK_GetFirmwareString(...) (0000ms, 1662ms total)
T29C8 286:803 JLINK_GetHardwareVersion() returns 0x16F30 (0000ms, 1662ms total)
T29C8 286:803 JLINK_TIF_Select(JLINKARM_TIF_SWD) returns 0x00 (0005ms, 1667ms total)
T29C8 286:808 JLINK_SetSpeed(5000) (0001ms, 1668ms total)
T29C8 286:809 JLINK_GetId() >0x10B TIF>Found SW-DP with ID 0x2BA01477 >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: 0x24770011)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: 0x410FC241. Implementer code: 0x41 (ARM)Found Cortex-M4 r0p1, Little endian. -- Max. mem block: 0x00010EE0
-- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE0002000)FPUnit: 6 code (BP) slots and 2 literal slots -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_ReadMem(4 bytes @ 0xE000ED88) -- CPU_WriteMem(4 bytes @ 0xE000ED88) -- CPU_ReadMem(4 bytes @ 0xE000ED88) -- CPU_WriteMem(4 bytes @ 0xE000ED88)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: 000BB00C SCS-M7 -- CPU_ReadMem(16 bytes @ 0xE0001FF0) -- CPU_ReadMem(16 bytes @ 0xE0001FE0)ROMTbl[0][1]: E0001000, CID: B105E00D, PID: 003BB002 DWT -- CPU_ReadMem(16 bytes @ 0xE0002FF0) -- CPU_ReadMem(16 bytes @ 0xE0002FE0)ROMTbl[0][2]: E0002000, CID: B105E00D, PID: 002BB003 FPB -- CPU_ReadMem(16 bytes @ 0xE0000FF0) -- CPU_ReadMem(16 bytes @ 0xE0000FE0)ROMTbl[0][3]: E0000000, CID: B105E00D, PID: 003BB001 ITM
-- CPU_ReadMem(16 bytes @ 0xE00FF010) -- CPU_ReadMem(16 bytes @ 0xE0040FF0) -- CPU_ReadMem(16 bytes @ 0xE0040FE0)ROMTbl[0][4]: E0040000, CID: B105900D, PID: 000BB9A1 TPIU -- CPU_ReadMem(16 bytes @ 0xE0041FF0) -- CPU_ReadMem(16 bytes @ 0xE0041FE0)ROMTbl[0][5]: E0041000, CID: 00000000, PID: 00000000 ??? >0x0D TIF> >0x21 TIF> returns 0x2BA01477 (0346ms, 2014ms total)
T29C8 287:155 JLINK_GetDLLVersion() returns 64600 (0000ms, 2014ms total)
T29C8 287:155 JLINK_CORE_GetFound() returns 0xE0000FF (0000ms, 2014ms total)
T29C8 287:155 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xE00FF000 returns 0x00 (0000ms, 2014ms total)
T29C8 287:155 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xE00FF000 returns 0x00 (0000ms, 2014ms total)
T29C8 287:155 JLINK_GetDebugInfo(0x101 = JLINKARM_DEBUG_INFO_ETM_ADDR_INDEX) -- Value=0x00000000 returns 0x00 (0000ms, 2014ms total)
T29C8 287:155 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 (0007ms, 2021ms total)
T29C8 287:162 JLINK_GetDebugInfo(0x102 = JLINKARM_DEBUG_INFO_MTB_ADDR_INDEX) -- Value=0x00000000 returns 0x00 (0000ms, 2021ms total)
T29C8 287:162 JLINK_GetDebugInfo(0x103 = JLINKARM_DEBUG_INFO_TPIU_ADDR_INDEX) -- Value=0xE0040000 returns 0x00 (0000ms, 2021ms total)
T29C8 287:162 JLINK_GetDebugInfo(0x104 = JLINKARM_DEBUG_INFO_ITM_ADDR_INDEX) -- Value=0xE0000000 returns 0x00 (0000ms, 2021ms total)
T29C8 287:162 JLINK_GetDebugInfo(0x105 = JLINKARM_DEBUG_INFO_DWT_ADDR_INDEX) -- Value=0xE0001000 returns 0x00 (0000ms, 2021ms total)
T29C8 287:162 JLINK_GetDebugInfo(0x106 = JLINKARM_DEBUG_INFO_FPB_ADDR_INDEX) -- Value=0xE0002000 returns 0x00 (0000ms, 2021ms total)
T29C8 287:162 JLINK_GetDebugInfo(0x107 = JLINKARM_DEBUG_INFO_NVIC_ADDR_INDEX) -- Value=0xE000E000 returns 0x00 (0000ms, 2021ms total)
T29C8 287:162 JLINK_GetDebugInfo(0x10C = JLINKARM_DEBUG_INFO_DBG_ADDR_INDEX) -- Value=0xE000EDF0 returns 0x00 (0000ms, 2021ms total)
T29C8 287:162 JLINK_GetDebugInfo(0x01 = Unknown) -- Value=0x00000001 returns 0x00 (0000ms, 2021ms total)
T29C8 287:162 JLINK_ReadMemU32(0xE000ED00, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED00) - Data: 41 C2 0F 41 returns 1 (0003ms, 2024ms total)
T29C8 287:165 JLINK_GetDebugInfo(0x10F = JLINKARM_DEBUG_INFO_HAS_CORTEX_M_SECURITY_EXT_INDEX) -- Value=0x00000000 returns 0x00 (0000ms, 2024ms total)
T29C8 287:165 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 2024ms total)
T29C8 287:165 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) (0152ms, 2176ms total)
T29C8 287:317 JLINK_ReadReg(R15 (PC)) returns 0x08000148 (0000ms, 2176ms total)
T29C8 287:317 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 2176ms total)
T29C8 287:317 JLINK_Halt() returns 0x00 (0000ms, 2176ms total)
T29C8 287:317 JLINK_ReadMemU32(0xE000EDF0, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) - Data: 03 00 03 00 returns 1 (0006ms, 2182ms total)
T29C8 287:323 JLINK_WriteU32(0xE000EDF0, 0xA05F0003) -- CPU_WriteMem(4 bytes @ 0xE000EDF0) returns 0 (0001ms, 2183ms total)
T29C8 287:324 JLINK_WriteU32(0xE000EDFC, 0x01000000) -- CPU_WriteMem(4 bytes @ 0xE000EDFC) returns 0 (0001ms, 2184ms total)
T29C8 287:325 JLINK_GetHWStatus(...) returns 0x00 (0001ms, 2185ms total)
T29C8 287:326 JLINK_GetNumBPUnits(Type = 0xFFFFFF00) returns 0x06 (0000ms, 2185ms total)
T29C8 287:326 JLINK_GetNumBPUnits(Type = 0xF0) returns 0x2000 (0000ms, 2185ms total)
T29C8 287:326 JLINK_GetNumWPUnits() returns 0x04 (0000ms, 2185ms total)
T29C8 287:326 JLINK_GetSpeed() returns 0xFA0 (0000ms, 2185ms total)
T29C8 287:326 JLINK_ReadMemU32(0xE000E004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000E004) - Data: 02 00 00 00 returns 1 (0002ms, 2187ms total)
T29C8 287:328 JLINK_ReadMemU32(0xE000E004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000E004) - Data: 02 00 00 00 returns 1 (0002ms, 2189ms total)
T29C8 287:330 JLINK_WriteMemEx(0xE0001000, 0x001C Bytes, ..., Flags = 0x02000004) - Data: 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... -- CPU_WriteMem(28 bytes @ 0xE0001000) returns 0x1C (0002ms, 2191ms total)
T29C8 287:332 JLINK_ReadReg(R15 (PC)) returns 0x08000148 (0000ms, 2191ms total)
T29C8 287:332 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 2191ms total)
T29C8 287:335 JLINK_ReadMemEx(0xE0001004, 0x0004 Bytes, ..., Flags = 0x02000000) - Data: 00 00 00 00 returns 0x04 (0000ms, 2191ms total)
T29C8 287:412 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 2191ms total)
T29C8 287:412 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) (0076ms, 2267ms total)
T29C8 287:489 JLINK_ReadReg(R15 (PC)) returns 0x08000148 (0000ms, 2267ms total)
T29C8 287:489 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 2267ms total)
T29C8 287:489 JLINK_ReadMemEx(0x08000148, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x08000140) -- Updating C cache (128 bytes @ 0x08000140) -- Read from C cache (60 bytes @ 0x08000148) - Data: 06 48 80 47 06 48 00 47 FE E7 FE E7 FE E7 FE E7 ... returns 0x3C (0002ms, 2269ms total)
T29C8 287:491 JLINK_ReadMemEx(0x08000148, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08000148) - Data: 06 48 returns 0x02 (0000ms, 2269ms total)
T29C8 287:491 JLINK_ReadMemEx(0x0800014A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800014A) - Data: 80 47 returns 0x02 (0000ms, 2269ms total)
T29C8 287:491 JLINK_ReadMemEx(0x0800014A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800014A) - Data: 80 47 returns 0x02 (0000ms, 2269ms total)
T29C8 287:491 JLINK_ReadMemEx(0x0800014C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800014C) - Data: 06 48 00 47 FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 ... returns 0x3C (0000ms, 2269ms total)
T29C8 287:491 JLINK_ReadMemEx(0x0800014C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800014C) - Data: 06 48 returns 0x02 (0000ms, 2269ms total)
T29C8 289:885 JLINK_ReadReg(R0) returns 0x00000000 (0001ms, 2270ms total)
T29C8 289:886 JLINK_ReadReg(R1) returns 0x00000000 (0000ms, 2270ms total)
T29C8 289:886 JLINK_ReadReg(R2) returns 0x00000000 (0000ms, 2270ms total)
T29C8 289:886 JLINK_ReadReg(R3) returns 0x00000000 (0000ms, 2270ms total)
T29C8 289:886 JLINK_ReadReg(R4) returns 0x0800D184 (0000ms, 2270ms total)
T29C8 289:886 JLINK_ReadReg(R5) returns 0x0800D184 (0000ms, 2270ms total)
T29C8 289:886 JLINK_ReadReg(R6) returns 0x00000000 (0000ms, 2270ms total)
T29C8 289:886 JLINK_ReadReg(R7) returns 0x00000000 (0000ms, 2270ms total)
T29C8 289:886 JLINK_ReadReg(R8) returns 0x00000000 (0000ms, 2270ms total)
T29C8 289:886 JLINK_ReadReg(R9) returns 0x20000134 (0000ms, 2270ms total)
T29C8 289:886 JLINK_ReadReg(R10) returns 0x00000000 (0000ms, 2270ms total)
T29C8 289:886 JLINK_ReadReg(R11) returns 0x00000000 (0000ms, 2270ms total)
T29C8 289:886 JLINK_ReadReg(R12) returns 0x00000004 (0000ms, 2270ms total)
T29C8 289:886 JLINK_ReadReg(R13 (SP)) returns 0x20009008 (0001ms, 2271ms total)
T29C8 289:887 JLINK_ReadReg(R14) returns 0xFFFFFFFF (0000ms, 2271ms total)
T29C8 289:887 JLINK_ReadReg(R15 (PC)) returns 0x08000148 (0000ms, 2271ms total)
T29C8 289:887 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 2271ms total)
T29C8 289:887 JLINK_ReadReg(MSP) returns 0x20009008 (0000ms, 2271ms total)
T29C8 289:887 JLINK_ReadReg(PSP) returns 0x20001000 (0000ms, 2271ms total)
T29C8 289:887 JLINK_ReadReg(CFBP) returns 0x00000000 (0000ms, 2271ms total)
T29C8 289:887 JLINK_ReadReg(FPSCR) returns 0x00000000 (0003ms, 2274ms total)
T29C8 289:890 JLINK_ReadReg(FPS0) returns 0xFB068412 (0000ms, 2274ms total)
T29C8 289:890 JLINK_ReadReg(FPS1) returns 0x10110C5A (0000ms, 2274ms total)
T29C8 289:890 JLINK_ReadReg(FPS2) returns 0x04341E1B (0000ms, 2274ms total)
T29C8 289:890 JLINK_ReadReg(FPS3) returns 0x80412402 (0000ms, 2274ms total)
T29C8 289:890 JLINK_ReadReg(FPS4) returns 0x18248A00 (0000ms, 2274ms total)
T29C8 289:890 JLINK_ReadReg(FPS5) returns 0x20102094 (0001ms, 2275ms total)
T29C8 289:891 JLINK_ReadReg(FPS6) returns 0x82C0846D (0000ms, 2275ms total)
T29C8 289:891 JLINK_ReadReg(FPS7) returns 0x08A02089 (0000ms, 2275ms total)
T29C8 289:891 JLINK_ReadReg(FPS8) returns 0x05488443 (0000ms, 2275ms total)
T29C8 289:891 JLINK_ReadReg(FPS9) returns 0xF372B940 (0000ms, 2275ms total)
T29C8 289:891 JLINK_ReadReg(FPS10) returns 0x11B25004 (0000ms, 2275ms total)
T29C8 289:891 JLINK_ReadReg(FPS11) returns 0x00024120 (0000ms, 2275ms total)
T29C8 289:891 JLINK_ReadReg(FPS12) returns 0x023C5609 (0000ms, 2275ms total)
T29C8 289:891 JLINK_ReadReg(FPS13) returns 0x8600710B (0000ms, 2275ms total)
T29C8 289:891 JLINK_ReadReg(FPS14) returns 0xA03D9BF0 (0000ms, 2275ms total)
T29C8 289:891 JLINK_ReadReg(FPS15) returns 0x5812A440 (0000ms, 2275ms total)
T29C8 289:891 JLINK_ReadReg(FPS16) returns 0x15918209 (0000ms, 2275ms total)
T29C8 289:891 JLINK_ReadReg(FPS17) returns 0xD015225C (0000ms, 2275ms total)
T29C8 289:891 JLINK_ReadReg(FPS18) returns 0x0C0013B7 (0000ms, 2275ms total)
T29C8 289:891 JLINK_ReadReg(FPS19) returns 0x1C58D420 (0000ms, 2275ms total)
T29C8 289:891 JLINK_ReadReg(FPS20) returns 0xA4974081 (0000ms, 2275ms total)
T29C8 289:891 JLINK_ReadReg(FPS21) returns 0x108D0118 (0000ms, 2275ms total)
T29C8 289:891 JLINK_ReadReg(FPS22) returns 0x9044A200 (0000ms, 2275ms total)
T29C8 289:891 JLINK_ReadReg(FPS23) returns 0x781049E0 (0000ms, 2275ms total)
T29C8 289:891 JLINK_ReadReg(FPS24) returns 0x1C330E11 (0000ms, 2275ms total)
T29C8 289:891 JLINK_ReadReg(FPS25) returns 0xC604704C (0000ms, 2275ms total)
T29C8 289:891 JLINK_ReadReg(FPS26) returns 0x2C70E395 (0000ms, 2275ms total)
T29C8 289:891 JLINK_ReadReg(FPS27) returns 0x8012365D (0000ms, 2275ms total)
T29C8 289:891 JLINK_ReadReg(FPS28) returns 0x028512B3 (0000ms, 2275ms total)
T29C8 289:891 JLINK_ReadReg(FPS29) returns 0x321C1711 (0000ms, 2275ms total)
T29C8 289:891 JLINK_ReadReg(FPS30) returns 0x40000912 (0000ms, 2275ms total)
T29C8 289:891 JLINK_ReadReg(FPS31) returns 0x11A67042 (0000ms, 2275ms total)
T29C8 289:891 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000500) -- Updating C cache (64 bytes @ 0x20000500) -- Read from C cache (1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2276ms total)
T29C8 289:893 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0000ms, 2276ms total)
T29C8 289:893 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0000ms, 2276ms total)
T2914 290:589 JLINK_ReadMemEx(0x08000148, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08000148) - Data: 06 48 returns 0x02 (0000ms, 2276ms total)
T2914 290:590 JLINK_SetBPEx(Addr = 0x08007554, Type = 0xFFFFFFF2) returns 0x00000001 (0000ms, 2276ms total)
T2914 290:590 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(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 @ 0xE0002018) -- CPU_WriteMem(4 bytes @ 0xE000201C) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0007ms, 2283ms total)
T2914 290:697 JLINK_IsHalted() returns TRUE (0004ms, 2287ms total)
T2914 290:702 JLINK_Halt() returns 0x00 (0000ms, 2283ms total)
T2914 290:702 JLINK_IsHalted() returns TRUE (0000ms, 2283ms total)
T2914 290:702 JLINK_IsHalted() returns TRUE (0000ms, 2283ms total)
T2914 290:702 JLINK_IsHalted() returns TRUE (0000ms, 2283ms total)
T2914 290:702 JLINK_ReadReg(R15 (PC)) returns 0x08007554 (0000ms, 2283ms total)
T2914 290:702 JLINK_ReadReg(XPSR) returns 0x61000000 (0000ms, 2283ms total)
T2914 290:702 JLINK_ClrBPEx(BPHandle = 0x00000001) returns 0x00 (0000ms, 2283ms total)
T2914 290:702 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 02 00 00 00 returns 1 (0001ms, 2284ms total)
T2914 290:703 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00 returns 1 (0001ms, 2285ms total)
T2914 290:704 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 02 00 00 returns 1 (0001ms, 2286ms total)
T2914 290:705 JLINK_ReadMemU32(0xE0001048, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001048) - Data: 00 00 00 00 returns 1 (0001ms, 2287ms total)
T2914 290:706 JLINK_ReadMemU32(0xE0001058, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001058) - Data: 00 00 00 00 returns 1 (0001ms, 2288ms total)
T2914 290:707 JLINK_ReadReg(R0) returns 0x08007555 (0000ms, 2288ms total)
T2914 290:707 JLINK_ReadReg(R1) returns 0x20009008 (0000ms, 2288ms total)
T2914 290:707 JLINK_ReadReg(R2) returns 0x00000000 (0000ms, 2288ms total)
T2914 290:707 JLINK_ReadReg(R3) returns 0x080037EB (0001ms, 2289ms total)
T2914 290:708 JLINK_ReadReg(R4) returns 0x0800D184 (0000ms, 2289ms total)
T2914 290:708 JLINK_ReadReg(R5) returns 0x0800D184 (0000ms, 2289ms total)
T2914 290:708 JLINK_ReadReg(R6) returns 0x00000000 (0000ms, 2289ms total)
T2914 290:708 JLINK_ReadReg(R7) returns 0x00000000 (0000ms, 2289ms total)
T2914 290:708 JLINK_ReadReg(R8) returns 0x00000000 (0000ms, 2289ms total)
T2914 290:708 JLINK_ReadReg(R9) returns 0x20000134 (0000ms, 2289ms total)
T2914 290:708 JLINK_ReadReg(R10) returns 0x00000000 (0000ms, 2289ms total)
T2914 290:708 JLINK_ReadReg(R11) returns 0x00000000 (0000ms, 2289ms total)
T2914 290:708 JLINK_ReadReg(R12) returns 0x00000004 (0000ms, 2289ms total)
T2914 290:708 JLINK_ReadReg(R13 (SP)) returns 0x20009008 (0000ms, 2289ms total)
T2914 290:708 JLINK_ReadReg(R14) returns 0x0800023D (0000ms, 2289ms total)
T2914 290:708 JLINK_ReadReg(R15 (PC)) returns 0x08007554 (0000ms, 2289ms total)
T2914 290:708 JLINK_ReadReg(XPSR) returns 0x61000000 (0000ms, 2289ms total)
T2914 290:708 JLINK_ReadReg(MSP) returns 0x20009008 (0000ms, 2289ms total)
T2914 290:708 JLINK_ReadReg(PSP) returns 0x20001000 (0000ms, 2289ms total)
T2914 290:708 JLINK_ReadReg(CFBP) returns 0x00000000 (0000ms, 2289ms total)
T2914 290:708 JLINK_ReadReg(FPSCR) returns 0x00000000 (0004ms, 2293ms total)
T2914 290:712 JLINK_ReadReg(FPS0) returns 0xFB068412 (0000ms, 2293ms total)
T2914 290:712 JLINK_ReadReg(FPS1) returns 0x10110C5A (0000ms, 2293ms total)
T2914 290:712 JLINK_ReadReg(FPS2) returns 0x04341E1B (0000ms, 2293ms total)
T2914 290:712 JLINK_ReadReg(FPS3) returns 0x80412402 (0000ms, 2293ms total)
T2914 290:712 JLINK_ReadReg(FPS4) returns 0x18248A00 (0000ms, 2293ms total)
T2914 290:712 JLINK_ReadReg(FPS5) returns 0x20102094 (0000ms, 2293ms total)
T2914 290:712 JLINK_ReadReg(FPS6) returns 0x82C0846D (0000ms, 2293ms total)
T2914 290:712 JLINK_ReadReg(FPS7) returns 0x08A02089 (0000ms, 2293ms total)
T2914 290:712 JLINK_ReadReg(FPS8) returns 0x05488443 (0000ms, 2293ms total)
T2914 290:712 JLINK_ReadReg(FPS9) returns 0xF372B940 (0000ms, 2293ms total)
T2914 290:712 JLINK_ReadReg(FPS10) returns 0x11B25004 (0000ms, 2293ms total)
T2914 290:712 JLINK_ReadReg(FPS11) returns 0x00024120 (0000ms, 2293ms total)
T2914 290:712 JLINK_ReadReg(FPS12) returns 0x023C5609 (0000ms, 2293ms total)
T2914 290:712 JLINK_ReadReg(FPS13) returns 0x8600710B (0000ms, 2293ms total)
T2914 290:712 JLINK_ReadReg(FPS14) returns 0xA03D9BF0 (0000ms, 2293ms total)
T2914 290:712 JLINK_ReadReg(FPS15) returns 0x5812A440 (0000ms, 2293ms total)
T2914 290:712 JLINK_ReadReg(FPS16) returns 0x15918209 (0000ms, 2293ms total)
T2914 290:712 JLINK_ReadReg(FPS17) returns 0xD015225C (0000ms, 2293ms total)
T2914 290:712 JLINK_ReadReg(FPS18) returns 0x0C0013B7 (0000ms, 2293ms total)
T2914 290:712 JLINK_ReadReg(FPS19) returns 0x1C58D420 (0000ms, 2293ms total)
T2914 290:712 JLINK_ReadReg(FPS20) returns 0xA4974081 (0000ms, 2293ms total)
T2914 290:712 JLINK_ReadReg(FPS21) returns 0x108D0118 (0000ms, 2293ms total)
T2914 290:712 JLINK_ReadReg(FPS22) returns 0x9044A200 (0000ms, 2293ms total)
T2914 290:712 JLINK_ReadReg(FPS23) returns 0x781049E0 (0000ms, 2293ms total)
T2914 290:712 JLINK_ReadReg(FPS24) returns 0x1C330E11 (0000ms, 2293ms total)
T2914 290:712 JLINK_ReadReg(FPS25) returns 0xC604704C (0000ms, 2293ms total)
T2914 290:712 JLINK_ReadReg(FPS26) returns 0x2C70E395 (0000ms, 2293ms total)
T2914 290:712 JLINK_ReadReg(FPS27) returns 0x8012365D (0000ms, 2293ms total)
T2914 290:712 JLINK_ReadReg(FPS28) returns 0x028512B3 (0000ms, 2293ms total)
T2914 290:712 JLINK_ReadReg(FPS29) returns 0x321C1711 (0000ms, 2293ms total)
T2914 290:712 JLINK_ReadReg(FPS30) returns 0x40000912 (0000ms, 2293ms total)
T2914 290:712 JLINK_ReadReg(FPS31) returns 0x11A67042 (0000ms, 2293ms total)
T29C8 290:716 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000500) -- Updating C cache (64 bytes @ 0x20000500) -- Read from C cache (1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0002ms, 2295ms total)
T2914 297:506 JLINK_ReadMemEx(0x08007554, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08007540) -- Updating C cache (64 bytes @ 0x08007540) -- Read from C cache (2 bytes @ 0x08007554) - Data: 72 B6 returns 0x02 (0002ms, 2297ms total)
T2914 297:508 JLINK_Go() -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) (0004ms, 2301ms total)
T2914 297:613 JLINK_IsHalted() returns FALSE (0002ms, 2304ms total)
T2914 297:715 JLINK_IsHalted() returns FALSE (0002ms, 2304ms total)
T2914 297:817 JLINK_IsHalted() returns FALSE (0001ms, 2303ms total)
T2914 297:918 JLINK_IsHalted() returns FALSE (0001ms, 2303ms total)
T2914 298:019 JLINK_IsHalted() returns FALSE (0001ms, 2303ms total)
T2914 298:120 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001004) - Data: 6A E2 5D 04 returns 1 (0001ms, 2303ms total)
T29C8 298:122 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0000ms, 2303ms total)
T2914 298:122 JLINK_IsHalted() returns FALSE (0001ms, 2304ms total)
T2914 298:223 JLINK_IsHalted() returns FALSE (0001ms, 2304ms total)
T2914 298:324 JLINK_IsHalted() returns FALSE (0001ms, 2304ms total)
T2914 298:427 JLINK_IsHalted() returns FALSE (0005ms, 2308ms total)
T2914 298:532 JLINK_IsHalted() returns FALSE (0003ms, 2306ms total)
T2914 298:636 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0003ms, 2306ms total)
T29C8 298:639 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0004ms, 2310ms total)
T2914 298:643 JLINK_IsHalted() returns FALSE (0002ms, 2312ms total)
T2914 298:746 JLINK_IsHalted() returns FALSE (0007ms, 2317ms total)
T2914 298:853 JLINK_IsHalted() returns FALSE (0001ms, 2311ms total)
T2914 298:954 JLINK_IsHalted() returns FALSE (0001ms, 2311ms total)
T2914 299:055 JLINK_IsHalted() returns FALSE (0001ms, 2311ms total)
T2914 299:156 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2310ms total)
T29C8 299:156 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2311ms total)
T2914 299:157 JLINK_IsHalted() returns FALSE (0001ms, 2312ms total)
T2914 299:258 JLINK_IsHalted() returns FALSE (0001ms, 2312ms total)
T2914 299:359 JLINK_IsHalted() returns FALSE (0001ms, 2312ms total)
T2914 299:460 JLINK_IsHalted() returns FALSE (0001ms, 2312ms total)
T2914 299:561 JLINK_IsHalted() returns FALSE (0001ms, 2312ms total)
T2914 299:662 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2311ms total)
T29C8 299:662 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2312ms total)
T2914 299:663 JLINK_IsHalted() returns FALSE (0001ms, 2313ms total)
T2914 299:764 JLINK_IsHalted() returns FALSE (0001ms, 2313ms total)
T2914 299:865 JLINK_IsHalted() returns FALSE (0001ms, 2313ms total)
T2914 299:966 JLINK_IsHalted() returns FALSE (0001ms, 2313ms total)
T2914 300:067 JLINK_IsHalted() returns FALSE (0002ms, 2314ms total)
T2914 300:169 JLINK_IsHalted() returns FALSE (0001ms, 2313ms total)
T2914 300:270 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2312ms total)
T29C8 300:270 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2313ms total)
T2914 300:271 JLINK_IsHalted() returns FALSE (0001ms, 2314ms total)
T2914 300:372 JLINK_IsHalted() returns FALSE (0001ms, 2314ms total)
T2914 300:473 JLINK_IsHalted() returns FALSE (0001ms, 2314ms total)
T2914 300:575 JLINK_IsHalted() returns FALSE (0001ms, 2314ms total)
T2914 300:676 JLINK_IsHalted() returns FALSE (0001ms, 2314ms total)
T2914 300:777 JLINK_IsHalted() returns FALSE (0001ms, 2314ms total)
T2914 300:878 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2313ms total)
T29C8 300:879 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2314ms total)
T2914 300:880 JLINK_IsHalted() returns FALSE (0001ms, 2315ms total)
T2914 300:981 JLINK_IsHalted() returns FALSE (0001ms, 2315ms total)
T2914 301:082 JLINK_IsHalted() returns FALSE (0001ms, 2315ms total)
T2914 301:183 JLINK_IsHalted() returns FALSE (0001ms, 2315ms total)
T2914 301:284 JLINK_IsHalted() returns FALSE (0001ms, 2315ms total)
T2914 301:385 JLINK_IsHalted() returns FALSE (0001ms, 2315ms total)
T2914 301:486 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2314ms total)
T29C8 301:486 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2315ms total)
T2914 301:488 JLINK_IsHalted() returns FALSE (0000ms, 2315ms total)
T2914 301:588 JLINK_IsHalted() returns FALSE (0001ms, 2316ms total)
T2914 301:689 JLINK_IsHalted() returns FALSE (0001ms, 2316ms total)
T2914 301:790 JLINK_IsHalted() returns FALSE (0001ms, 2316ms total)
T2914 301:891 JLINK_IsHalted() returns FALSE (0001ms, 2316ms total)
T2914 301:992 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2315ms total)
T29C8 301:992 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2316ms total)
T2914 301:993 JLINK_IsHalted() returns FALSE (0001ms, 2317ms total)
T2914 302:094 JLINK_IsHalted() returns FALSE (0001ms, 2317ms total)
T2914 302:195 JLINK_IsHalted() returns FALSE (0001ms, 2317ms total)
T2914 302:296 JLINK_IsHalted() returns FALSE (0001ms, 2317ms total)
T2914 302:397 JLINK_IsHalted() returns FALSE (0001ms, 2317ms total)
T2914 302:498 JLINK_IsHalted() returns FALSE (0001ms, 2317ms total)
T2914 302:599 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2316ms total)
T29C8 302:599 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2317ms total)
T2914 302:600 JLINK_IsHalted() returns FALSE (0001ms, 2318ms total)
T2914 302:701 JLINK_IsHalted() returns FALSE (0001ms, 2318ms total)
T2914 302:802 JLINK_IsHalted() returns FALSE (0001ms, 2318ms total)
T2914 302:903 JLINK_IsHalted() returns FALSE (0001ms, 2318ms total)
T2914 303:004 JLINK_IsHalted() returns FALSE (0001ms, 2318ms total)
T2914 303:106 JLINK_IsHalted() returns FALSE (0001ms, 2318ms total)
T2914 303:207 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2317ms total)
T29C8 303:207 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2318ms total)
T2914 303:208 JLINK_IsHalted() returns FALSE (0001ms, 2319ms total)
T2914 303:309 JLINK_IsHalted() returns FALSE (0001ms, 2319ms total)
T2914 303:410 JLINK_IsHalted() returns FALSE (0001ms, 2319ms total)
T2914 303:512 JLINK_IsHalted() returns FALSE (0001ms, 2319ms total)
T2914 303:613 JLINK_IsHalted() returns FALSE (0001ms, 2319ms total)
T2914 303:714 JLINK_IsHalted() returns FALSE (0001ms, 2319ms total)
T2914 303:815 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2318ms total)
T29C8 303:815 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2319ms total)
T2914 303:816 JLINK_IsHalted() returns FALSE (0002ms, 2321ms total)
T2914 303:918 JLINK_IsHalted() returns FALSE (0001ms, 2320ms total)
T2914 304:019 JLINK_IsHalted() returns FALSE (0001ms, 2320ms total)
T2914 304:120 JLINK_IsHalted() returns FALSE (0001ms, 2320ms total)
T2914 304:221 JLINK_IsHalted() returns FALSE (0001ms, 2320ms total)
T2914 304:322 JLINK_IsHalted() returns FALSE (0005ms, 2324ms total)
T2914 304:427 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2319ms total)
T29C8 304:427 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2320ms total)
T2914 304:428 JLINK_IsHalted() returns FALSE (0001ms, 2321ms total)
T2914 304:529 JLINK_IsHalted() returns FALSE (0001ms, 2321ms total)
T2914 304:630 JLINK_IsHalted() returns FALSE (0001ms, 2321ms total)
T2914 304:731 JLINK_IsHalted() returns FALSE (0001ms, 2321ms total)
T2914 304:832 JLINK_IsHalted() returns FALSE (0001ms, 2321ms total)
T2914 304:933 JLINK_IsHalted() returns FALSE (0001ms, 2321ms total)
T2914 305:034 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2320ms total)
T29C8 305:035 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0002ms, 2322ms total)
T2914 305:037 JLINK_IsHalted() returns FALSE (0001ms, 2323ms total)
T2914 305:138 JLINK_IsHalted() returns FALSE (0001ms, 2323ms total)
T2914 305:239 JLINK_IsHalted() returns FALSE (0001ms, 2323ms total)
T2914 305:340 JLINK_IsHalted() returns FALSE (0001ms, 2323ms total)
T2914 305:441 JLINK_IsHalted() returns FALSE (0001ms, 2323ms total)
T2914 305:542 JLINK_IsHalted() returns FALSE (0001ms, 2323ms total)
T2914 305:643 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2322ms total)
T29C8 305:643 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0002ms, 2324ms total)
T2914 305:645 JLINK_IsHalted() returns FALSE (0001ms, 2325ms total)
T2914 305:747 JLINK_IsHalted() returns FALSE (0001ms, 2325ms total)
T2914 305:848 JLINK_IsHalted() returns FALSE (0001ms, 2325ms total)
T2914 305:949 JLINK_IsHalted() returns FALSE (0002ms, 2326ms total)
T2914 306:051 JLINK_IsHalted() returns FALSE (0001ms, 2325ms total)
T2914 306:152 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2324ms total)
T29C8 306:152 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2325ms total)
T2914 306:153 JLINK_IsHalted() returns FALSE (0001ms, 2326ms total)
T2914 306:254 JLINK_IsHalted() returns FALSE (0001ms, 2326ms total)
T2914 306:355 JLINK_IsHalted() returns FALSE (0001ms, 2326ms total)
T2914 306:456 JLINK_IsHalted() returns FALSE (0001ms, 2326ms total)
T2914 306:557 JLINK_IsHalted() returns FALSE (0001ms, 2326ms total)
T2914 306:658 JLINK_IsHalted() returns FALSE (0001ms, 2326ms total)
T2914 306:759 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2325ms total)
T29C8 306:759 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2326ms total)
T2914 306:761 JLINK_IsHalted() returns FALSE (0000ms, 2326ms total)
T2914 306:862 JLINK_IsHalted() returns FALSE (0001ms, 2327ms total)
T2914 306:963 JLINK_IsHalted() returns FALSE (0001ms, 2327ms total)
T2914 307:064 JLINK_IsHalted() returns FALSE (0001ms, 2327ms total)
T2914 307:165 JLINK_IsHalted() returns FALSE (0001ms, 2327ms total)
T2914 307:266 JLINK_IsHalted() returns FALSE (0001ms, 2327ms total)
T2914 307:367 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2326ms total)
T29C8 307:367 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2327ms total)
T2914 307:368 JLINK_IsHalted() returns FALSE (0001ms, 2328ms total)
T2914 307:469 JLINK_IsHalted() returns FALSE (0001ms, 2328ms total)
T2914 307:570 JLINK_IsHalted() returns FALSE (0001ms, 2328ms total)
T2914 307:671 JLINK_IsHalted() returns FALSE (0001ms, 2328ms total)
T2914 307:772 JLINK_IsHalted() returns FALSE (0000ms, 2327ms total)
T2914 307:872 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2327ms total)
T29C8 307:872 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2328ms total)
T2914 307:873 JLINK_IsHalted() returns FALSE (0001ms, 2329ms total)
T2914 307:974 JLINK_IsHalted() returns FALSE (0001ms, 2329ms total)
T2914 308:075 JLINK_IsHalted() returns FALSE (0001ms, 2329ms total)
T2914 308:176 JLINK_IsHalted() returns FALSE (0001ms, 2329ms total)
T2914 308:277 JLINK_IsHalted() returns FALSE (0001ms, 2329ms total)
T2914 308:378 JLINK_IsHalted() returns FALSE (0001ms, 2329ms total)
T2914 308:479 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2328ms total)
T29C8 308:479 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2329ms total)
T2914 308:480 JLINK_IsHalted() returns FALSE (0001ms, 2330ms total)
T2914 308:581 JLINK_IsHalted() returns FALSE (0001ms, 2330ms total)
T2914 308:683 JLINK_IsHalted() returns FALSE (0001ms, 2330ms total)
T2914 308:784 JLINK_IsHalted() returns FALSE (0001ms, 2330ms total)
T2914 308:885 JLINK_IsHalted() returns FALSE (0001ms, 2330ms total)
T2914 308:986 JLINK_IsHalted() returns FALSE (0001ms, 2330ms total)
T2914 309:087 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2329ms total)
T29C8 309:087 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2330ms total)
T2914 309:088 JLINK_IsHalted() returns FALSE (0001ms, 2331ms total)
T2914 309:189 JLINK_IsHalted() returns FALSE (0001ms, 2331ms total)
T2914 309:290 JLINK_IsHalted() returns FALSE (0001ms, 2331ms total)
T29C8 309:386 JLINK_SetBPEx(Addr = 0x08006F2C, Type = 0xFFFFFFF2) -- CPU is running -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002008) returns 0x00000002 (0002ms, 2332ms total)
T2914 309:391 JLINK_IsHalted() returns FALSE (0001ms, 2333ms total)
T2914 309:492 JLINK_IsHalted() returns FALSE (0001ms, 2333ms total)
T2914 309:593 JLINK_IsHalted() returns FALSE (0001ms, 2333ms total)
T2914 309:694 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2332ms total)
T29C8 309:694 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2333ms total)
T2914 309:695 JLINK_IsHalted() returns FALSE (0001ms, 2334ms total)
T2914 309:796 JLINK_IsHalted() returns FALSE (0001ms, 2334ms total)
T2914 309:897 JLINK_IsHalted() returns FALSE (0001ms, 2334ms total)
T2914 309:998 JLINK_IsHalted() returns FALSE (0001ms, 2334ms total)
T2914 310:099 JLINK_IsHalted() returns FALSE (0001ms, 2334ms total)
T2914 310:200 JLINK_IsHalted() returns FALSE (0000ms, 2333ms total)
T2914 310:300 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2333ms total)
T29C8 310:300 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0002ms, 2335ms total)
T2914 310:302 JLINK_IsHalted() returns FALSE (0000ms, 2335ms total)
T2914 310:403 JLINK_IsHalted() returns FALSE (0001ms, 2336ms total)
T2914 310:504 JLINK_IsHalted() returns FALSE (0001ms, 2336ms total)
T2914 310:605 JLINK_IsHalted() returns FALSE (0001ms, 2336ms total)
T2914 310:706 JLINK_IsHalted() returns FALSE (0001ms, 2336ms total)
T2914 310:807 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2335ms total)
T29C8 310:807 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2336ms total)
T2914 310:808 JLINK_IsHalted() returns FALSE (0001ms, 2337ms total)
T2914 310:909 JLINK_IsHalted() returns FALSE (0001ms, 2337ms total)
T2914 311:010 JLINK_IsHalted() returns FALSE (0001ms, 2337ms total)
T2914 311:111 JLINK_IsHalted() returns FALSE (0001ms, 2337ms total)
T2914 311:212 JLINK_IsHalted() returns FALSE (0001ms, 2337ms total)
T2914 311:313 JLINK_IsHalted() returns FALSE (0001ms, 2337ms total)
T2914 311:414 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2336ms total)
T29C8 311:415 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2337ms total)
T2914 311:417 JLINK_IsHalted() returns FALSE (0002ms, 2339ms total)
T2914 311:519 JLINK_IsHalted() returns FALSE (0001ms, 2338ms total)
T2914 311:620 JLINK_IsHalted() returns FALSE (0001ms, 2338ms total)
T2914 311:721 JLINK_IsHalted() returns FALSE (0001ms, 2338ms total)
T2914 311:822 JLINK_IsHalted() returns FALSE (0001ms, 2338ms total)
T2914 311:923 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2337ms total)
T29C8 311:923 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2338ms total)
T2914 311:924 JLINK_IsHalted() returns FALSE (0001ms, 2339ms total)
T2914 312:025 JLINK_IsHalted() returns FALSE (0001ms, 2339ms total)
T2914 312:126 JLINK_IsHalted() returns FALSE (0001ms, 2339ms total)
T2914 312:227 JLINK_IsHalted() returns FALSE (0001ms, 2339ms total)
T2914 312:328 JLINK_IsHalted() returns FALSE (0001ms, 2339ms total)
T2914 312:429 JLINK_IsHalted() returns FALSE (0001ms, 2339ms total)
T2914 312:530 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2338ms total)
T29C8 312:530 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2339ms total)
T2914 312:531 JLINK_IsHalted() returns FALSE (0001ms, 2340ms total)
T2914 312:632 JLINK_IsHalted() returns FALSE (0001ms, 2340ms total)
T2914 312:733 JLINK_IsHalted() returns FALSE (0001ms, 2340ms total)
T2914 312:834 JLINK_IsHalted() returns FALSE (0001ms, 2340ms total)
T2914 312:935 JLINK_IsHalted() returns FALSE (0001ms, 2340ms total)
T2914 313:036 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2339ms total)
T29C8 313:036 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2340ms total)
T2914 313:037 JLINK_IsHalted() returns FALSE (0003ms, 2343ms total)
T2914 313:140 JLINK_IsHalted() returns FALSE (0001ms, 2341ms total)
T2914 313:241 JLINK_IsHalted() returns FALSE (0001ms, 2341ms total)
T2914 313:342 JLINK_IsHalted() returns FALSE (0001ms, 2341ms total)
T2914 313:443 JLINK_IsHalted() returns FALSE (0001ms, 2341ms total)
T2914 313:544 JLINK_IsHalted() returns FALSE (0001ms, 2341ms total)
T2914 313:645 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2340ms total)
T29C8 313:645 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2341ms total)
T2914 313:646 JLINK_IsHalted() returns FALSE (0001ms, 2342ms total)
T2914 313:747 JLINK_IsHalted() returns FALSE (0001ms, 2342ms total)
T2914 313:848 JLINK_IsHalted() returns FALSE (0001ms, 2342ms total)
T2914 313:949 JLINK_IsHalted() returns FALSE (0001ms, 2342ms total)
T2914 314:050 JLINK_IsHalted() returns FALSE (0001ms, 2342ms total)
T2914 314:151 JLINK_IsHalted() returns FALSE (0001ms, 2342ms total)
T2914 314:252 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2341ms total)
T29C8 314:252 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2342ms total)
T2914 314:253 JLINK_IsHalted() returns FALSE (0001ms, 2343ms total)
T2914 314:354 JLINK_IsHalted() returns FALSE (0001ms, 2343ms total)
T2914 314:455 JLINK_IsHalted() returns FALSE (0001ms, 2343ms total)
T2914 314:556 JLINK_IsHalted() returns FALSE (0001ms, 2343ms total)
T2914 314:657 JLINK_IsHalted() returns FALSE (0001ms, 2343ms total)
T2914 314:758 JLINK_IsHalted() returns FALSE (0001ms, 2343ms total)
T2914 314:859 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2342ms total)
T29C8 314:859 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2343ms total)
T2914 314:860 JLINK_IsHalted() returns FALSE (0001ms, 2344ms total)
T2914 314:961 JLINK_IsHalted() returns FALSE (0001ms, 2344ms total)
T2914 315:062 JLINK_IsHalted() returns FALSE (0001ms, 2344ms total)
T2914 315:163 JLINK_IsHalted() returns FALSE (0001ms, 2344ms total)
T2914 315:264 JLINK_IsHalted() returns FALSE (0001ms, 2344ms total)
T2914 315:365 JLINK_IsHalted() returns FALSE (0001ms, 2344ms total)
T2914 315:466 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2343ms total)
T29C8 315:466 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2344ms total)
T2914 315:467 JLINK_IsHalted() returns FALSE (0001ms, 2345ms total)
T2914 315:568 JLINK_IsHalted() returns FALSE (0002ms, 2346ms total)
T2914 315:670 JLINK_IsHalted() returns FALSE (0001ms, 2345ms total)
T2914 315:771 JLINK_IsHalted() returns FALSE (0001ms, 2345ms total)
T2914 315:872 JLINK_IsHalted() returns FALSE (0001ms, 2345ms total)
T2914 315:973 JLINK_IsHalted() returns FALSE (0001ms, 2345ms total)
T2914 316:074 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2344ms total)
T29C8 316:074 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2345ms total)
T2914 316:075 JLINK_IsHalted() returns FALSE (0001ms, 2346ms total)
T2914 316:176 JLINK_IsHalted() returns FALSE (0001ms, 2346ms total)
T2914 316:277 JLINK_IsHalted() returns FALSE (0001ms, 2346ms total)
T2914 316:378 JLINK_IsHalted() returns FALSE (0001ms, 2346ms total)
T2914 316:479 JLINK_IsHalted() returns FALSE (0001ms, 2346ms total)
T2914 316:580 JLINK_IsHalted() returns FALSE (0002ms, 2347ms total)
T2914 316:682 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2345ms total)
T29C8 316:682 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2346ms total)
T2914 316:683 JLINK_IsHalted() returns FALSE (0001ms, 2347ms total)
T2914 316:784 JLINK_IsHalted() returns FALSE (0001ms, 2347ms total)
T2914 316:885 JLINK_IsHalted() returns FALSE (0001ms, 2347ms total)
T2914 316:986 JLINK_IsHalted() returns FALSE (0001ms, 2347ms total)
T2914 317:087 JLINK_IsHalted() returns FALSE (0001ms, 2347ms total)
T2914 317:188 JLINK_IsHalted() returns FALSE (0001ms, 2347ms total)
T2914 317:289 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2346ms total)
T29C8 317:289 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2347ms total)
T2914 317:290 JLINK_IsHalted() returns FALSE (0001ms, 2348ms total)
T2914 317:391 JLINK_IsHalted() returns FALSE (0001ms, 2348ms total)
T2914 317:492 JLINK_IsHalted() returns FALSE (0001ms, 2348ms total)
T2914 317:593 JLINK_IsHalted() returns FALSE (0001ms, 2348ms total)
T2914 317:694 JLINK_IsHalted() returns FALSE (0001ms, 2348ms total)
T2914 317:796 JLINK_IsHalted() returns FALSE (0001ms, 2348ms total)
T2914 317:897 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2347ms total)
T29C8 317:897 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2348ms total)
T2914 317:898 JLINK_IsHalted() returns FALSE (0001ms, 2349ms total)
T2914 317:999 JLINK_IsHalted() returns FALSE (0001ms, 2349ms total)
T2914 318:100 JLINK_IsHalted() returns FALSE (0001ms, 2349ms total)
T2914 318:201 JLINK_IsHalted() returns FALSE (0001ms, 2349ms total)
T2914 318:302 JLINK_IsHalted() returns FALSE (0001ms, 2349ms total)
T2914 318:403 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2348ms total)
T29C8 318:403 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0002ms, 2350ms total)
T2914 318:405 JLINK_IsHalted() returns FALSE (0001ms, 2351ms total)
T2914 318:506 JLINK_IsHalted() returns FALSE (0001ms, 2351ms total)
T2914 318:607 JLINK_IsHalted() returns FALSE (0001ms, 2351ms total)
T2914 318:708 JLINK_IsHalted() returns FALSE (0001ms, 2351ms total)
T2914 318:809 JLINK_IsHalted() returns FALSE (0002ms, 2352ms total)
T2914 318:911 JLINK_IsHalted() returns FALSE (0001ms, 2351ms total)
T2914 319:012 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2350ms total)
T29C8 319:012 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2351ms total)
T2914 319:013 JLINK_IsHalted() returns FALSE (0003ms, 2354ms total)
T2914 319:116 JLINK_IsHalted() returns FALSE (0001ms, 2352ms total)
T2914 319:217 JLINK_IsHalted() returns FALSE (0001ms, 2352ms total)
T2914 319:318 JLINK_IsHalted() returns FALSE (0001ms, 2352ms total)
T2914 319:419 JLINK_IsHalted() returns FALSE (0001ms, 2352ms total)
T2914 319:520 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2351ms total)
T29C8 319:520 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2352ms total)
T2914 319:521 JLINK_IsHalted() returns FALSE (0001ms, 2353ms total)
T2914 319:622 JLINK_IsHalted() returns FALSE (0001ms, 2353ms total)
T2914 319:723 JLINK_IsHalted() returns FALSE (0001ms, 2353ms total)
T2914 319:824 JLINK_IsHalted() returns FALSE (0001ms, 2353ms total)
T2914 319:925 JLINK_IsHalted() returns FALSE (0001ms, 2353ms total)
T2914 320:026 JLINK_IsHalted() returns FALSE (0001ms, 2353ms total)
T2914 320:127 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2352ms total)
T29C8 320:127 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2353ms total)
T2914 320:128 JLINK_IsHalted() returns FALSE (0001ms, 2354ms total)
T2914 320:229 JLINK_IsHalted() returns FALSE (0001ms, 2354ms total)
T2914 320:330 JLINK_IsHalted() returns FALSE (0001ms, 2354ms total)
T2914 320:431 JLINK_IsHalted() returns FALSE (0001ms, 2354ms total)
T2914 320:532 JLINK_IsHalted() returns FALSE (0001ms, 2354ms total)
T2914 320:633 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2353ms total)
T29C8 320:633 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2354ms total)
T2914 320:634 JLINK_IsHalted() returns FALSE (0001ms, 2355ms total)
T2914 320:735 JLINK_IsHalted() returns FALSE (0001ms, 2355ms total)
T2914 320:836 JLINK_IsHalted() returns FALSE (0001ms, 2355ms total)
T2914 320:937 JLINK_IsHalted() returns FALSE (0001ms, 2355ms total)
T2914 321:038 JLINK_IsHalted() returns FALSE (0001ms, 2355ms total)
T2914 321:139 JLINK_IsHalted() returns FALSE (0001ms, 2355ms total)
T2914 321:240 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2354ms total)
T29C8 321:240 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0002ms, 2356ms total)
T2914 321:242 JLINK_IsHalted() returns FALSE (0001ms, 2357ms total)
T2914 321:343 JLINK_IsHalted() returns FALSE (0001ms, 2357ms total)
T2914 321:444 JLINK_IsHalted() returns FALSE (0001ms, 2357ms total)
T2914 321:545 JLINK_IsHalted() returns FALSE (0001ms, 2357ms total)
T2914 321:646 JLINK_IsHalted() returns FALSE (0002ms, 2358ms total)
T2914 321:748 JLINK_IsHalted() returns FALSE (0001ms, 2357ms total)
T2914 321:849 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2356ms total)
T29C8 321:849 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2357ms total)
T2914 321:850 JLINK_IsHalted() returns FALSE (0001ms, 2358ms total)
T2914 321:951 JLINK_IsHalted() returns FALSE (0001ms, 2358ms total)
T2914 322:052 JLINK_IsHalted() returns FALSE (0001ms, 2358ms total)
T2914 322:153 JLINK_IsHalted() returns FALSE (0001ms, 2358ms total)
T2914 322:254 JLINK_IsHalted() returns FALSE (0001ms, 2358ms total)
T2914 322:355 JLINK_IsHalted() returns FALSE (0001ms, 2358ms total)
T2914 322:456 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2357ms total)
T29C8 322:456 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2358ms total)
T2914 322:458 JLINK_IsHalted() returns FALSE (0000ms, 2358ms total)
T2914 322:559 JLINK_IsHalted() returns FALSE (0001ms, 2359ms total)
T2914 322:660 JLINK_IsHalted() returns FALSE (0001ms, 2359ms total)
T2914 322:761 JLINK_IsHalted() returns FALSE (0001ms, 2359ms total)
T2914 322:862 JLINK_IsHalted() returns FALSE (0001ms, 2359ms total)
T2914 322:963 JLINK_IsHalted() returns FALSE (0002ms, 2360ms total)
T2914 323:065 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2358ms total)
T29C8 323:065 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2359ms total)
T2914 323:066 JLINK_IsHalted() returns FALSE (0001ms, 2360ms total)
T2914 323:167 JLINK_IsHalted() returns FALSE (0001ms, 2360ms total)
T2914 323:268 JLINK_IsHalted() returns FALSE (0001ms, 2360ms total)
T2914 323:369 JLINK_IsHalted() returns FALSE (0001ms, 2360ms total)
T2914 323:470 JLINK_IsHalted() returns FALSE (0001ms, 2360ms total)
T2914 323:571 JLINK_IsHalted() returns FALSE (0001ms, 2360ms total)
T2914 323:672 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2359ms total)
T29C8 323:672 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0002ms, 2361ms total)
T2914 323:674 JLINK_IsHalted() returns FALSE (0001ms, 2362ms total)
T2914 323:775 JLINK_IsHalted() returns FALSE (0001ms, 2362ms total)
T2914 323:876 JLINK_IsHalted() returns FALSE (0001ms, 2362ms total)
T2914 323:977 JLINK_IsHalted() returns FALSE (0001ms, 2362ms total)
T2914 324:078 JLINK_IsHalted() returns FALSE (0001ms, 2362ms total)
T2914 324:179 JLINK_IsHalted() returns FALSE (0001ms, 2362ms total)
T2914 324:280 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2361ms total)
T29C8 324:281 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2362ms total)
T2914 324:282 JLINK_IsHalted() returns FALSE (0001ms, 2363ms total)
T2914 324:383 JLINK_IsHalted() returns FALSE (0001ms, 2363ms total)
T2914 324:484 JLINK_IsHalted() returns FALSE (0001ms, 2363ms total)
T2914 324:585 JLINK_IsHalted() returns FALSE (0001ms, 2363ms total)
T2914 324:686 JLINK_IsHalted() returns FALSE (0001ms, 2363ms total)
T2914 324:787 JLINK_IsHalted() returns FALSE (0001ms, 2363ms total)
T2914 324:888 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2362ms total)
T29C8 324:888 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2363ms total)
T2914 324:889 JLINK_IsHalted() returns FALSE (0001ms, 2364ms total)
T2914 324:990 JLINK_IsHalted() returns FALSE (0001ms, 2364ms total)
T2914 325:091 JLINK_IsHalted() returns FALSE (0001ms, 2364ms total)
T2914 325:192 JLINK_IsHalted() returns FALSE (0001ms, 2364ms total)
T2914 325:293 JLINK_IsHalted() returns FALSE (0001ms, 2364ms total)
T2914 325:394 JLINK_IsHalted() returns FALSE (0001ms, 2364ms total)
T2914 325:495 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2363ms total)
T29C8 325:495 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2364ms total)
T2914 325:496 JLINK_IsHalted() returns FALSE (0001ms, 2365ms total)
T2914 325:597 JLINK_IsHalted() returns FALSE (0001ms, 2365ms total)
T2914 325:698 JLINK_IsHalted() returns FALSE (0001ms, 2365ms total)
T2914 325:799 JLINK_IsHalted() returns FALSE (0001ms, 2365ms total)
T2914 325:900 JLINK_IsHalted() returns FALSE (0001ms, 2365ms total)
T2914 326:001 JLINK_IsHalted() returns FALSE (0001ms, 2365ms total)
T2914 326:102 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2364ms total)
T29C8 326:102 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2365ms total)
T2914 326:103 JLINK_IsHalted() returns FALSE (0001ms, 2366ms total)
T2914 326:204 JLINK_IsHalted() returns FALSE (0001ms, 2366ms total)
T2914 326:305 JLINK_IsHalted() returns FALSE (0001ms, 2366ms total)
T2914 326:406 JLINK_IsHalted() returns FALSE (0001ms, 2366ms total)
T2914 326:507 JLINK_IsHalted() returns FALSE (0001ms, 2366ms total)
T2914 326:608 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2365ms total)
T29C8 326:608 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0002ms, 2367ms total)
T2914 326:610 JLINK_IsHalted() returns FALSE (0001ms, 2368ms total)
T2914 326:711 JLINK_IsHalted() returns FALSE (0001ms, 2368ms total)
T2914 326:812 JLINK_IsHalted() returns FALSE (0002ms, 2369ms total)
T2914 326:914 JLINK_IsHalted() returns FALSE (0001ms, 2368ms total)
T2914 327:015 JLINK_IsHalted() returns FALSE (0001ms, 2368ms total)
T2914 327:116 JLINK_IsHalted() returns FALSE (0001ms, 2368ms total)
T2914 327:217 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2367ms total)
T29C8 327:217 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2368ms total)
T2914 327:219 JLINK_IsHalted() returns FALSE (0000ms, 2368ms total)
T2914 327:320 JLINK_IsHalted() returns FALSE (0001ms, 2369ms total)
T2914 327:421 JLINK_IsHalted() returns FALSE (0001ms, 2369ms total)
T2914 327:522 JLINK_IsHalted() returns FALSE (0001ms, 2369ms total)
T2914 327:623 JLINK_IsHalted() returns FALSE (0001ms, 2369ms total)
T2914 327:724 JLINK_IsHalted() returns FALSE (0001ms, 2369ms total)
T2914 327:825 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2368ms total)
T29C8 327:825 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2369ms total)
T2914 327:826 JLINK_IsHalted() returns FALSE (0001ms, 2370ms total)
T2914 327:927 JLINK_IsHalted() returns FALSE (0001ms, 2370ms total)
T2914 328:028 JLINK_IsHalted() returns FALSE (0001ms, 2370ms total)
T2914 328:129 JLINK_IsHalted() returns FALSE (0001ms, 2370ms total)
T2914 328:230 JLINK_IsHalted() returns FALSE (0001ms, 2370ms total)
T2914 328:331 JLINK_IsHalted() returns FALSE (0001ms, 2370ms total)
T2914 328:432 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2369ms total)
T29C8 328:432 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0002ms, 2371ms total)
T2914 328:434 JLINK_IsHalted() returns FALSE (0001ms, 2372ms total)
T2914 328:535 JLINK_IsHalted() returns FALSE (0001ms, 2372ms total)
T2914 328:636 JLINK_IsHalted() returns FALSE (0001ms, 2372ms total)
T2914 328:737 JLINK_IsHalted() returns FALSE (0001ms, 2372ms total)
T2914 328:838 JLINK_IsHalted() returns FALSE (0001ms, 2372ms total)
T2914 328:939 JLINK_IsHalted() returns FALSE (0001ms, 2372ms total)
T2914 329:040 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2371ms total)
T29C8 329:040 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2372ms total)
T2914 329:041 JLINK_IsHalted() returns FALSE (0001ms, 2373ms total)
T2914 329:142 JLINK_IsHalted() returns FALSE (0001ms, 2373ms total)
T2914 329:243 JLINK_IsHalted() returns FALSE (0001ms, 2373ms total)
T2914 329:344 JLINK_IsHalted() returns FALSE (0001ms, 2373ms total)
T2914 329:445 JLINK_IsHalted() returns FALSE (0001ms, 2373ms total)
T2914 329:546 JLINK_IsHalted() returns FALSE (0001ms, 2373ms total)
T2914 329:647 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2372ms total)
T29C8 329:648 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2373ms total)
T2914 329:649 JLINK_IsHalted() returns FALSE (0001ms, 2374ms total)
T2914 329:750 JLINK_IsHalted() returns FALSE (0001ms, 2374ms total)
T2914 329:851 JLINK_IsHalted() returns FALSE (0001ms, 2374ms total)
T2914 329:952 JLINK_IsHalted() returns FALSE (0001ms, 2374ms total)
T2914 330:053 JLINK_IsHalted() returns FALSE (0001ms, 2374ms total)
T2914 330:154 JLINK_IsHalted() returns FALSE (0001ms, 2374ms total)
T2914 330:255 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2373ms total)
T29C8 330:255 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2374ms total)
T2914 330:256 JLINK_IsHalted() returns FALSE (0001ms, 2375ms total)
T2914 330:357 JLINK_IsHalted() returns FALSE (0001ms, 2375ms total)
T2914 330:458 JLINK_IsHalted() returns FALSE (0001ms, 2375ms total)
T2914 330:559 JLINK_IsHalted() returns FALSE (0001ms, 2375ms total)
T2914 330:660 JLINK_IsHalted() returns FALSE (0001ms, 2375ms total)
T2914 330:761 JLINK_IsHalted() returns FALSE (0001ms, 2375ms total)
T2914 330:862 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2374ms total)
T29C8 330:862 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2375ms total)
T2914 330:863 JLINK_IsHalted() returns FALSE (0001ms, 2376ms total)
T2914 330:964 JLINK_IsHalted() returns FALSE (0001ms, 2376ms total)
T2914 331:065 JLINK_IsHalted() returns FALSE (0001ms, 2376ms total)
T2914 331:166 JLINK_IsHalted() returns FALSE (0001ms, 2376ms total)
T2914 331:267 JLINK_IsHalted() returns FALSE (0001ms, 2376ms total)
T2914 331:368 JLINK_IsHalted() returns FALSE (0001ms, 2376ms total)
T2914 331:469 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2375ms total)
T29C8 331:469 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0002ms, 2377ms total)
T2914 331:471 JLINK_IsHalted() returns FALSE (0001ms, 2378ms total)
T2914 331:572 JLINK_IsHalted() returns FALSE (0001ms, 2378ms total)
T2914 331:673 JLINK_IsHalted() returns FALSE (0001ms, 2378ms total)
T2914 331:774 JLINK_IsHalted() returns FALSE (0001ms, 2378ms total)
T2914 331:875 JLINK_IsHalted() returns FALSE (0001ms, 2378ms total)
T2914 331:976 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2377ms total)
T29C8 331:976 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2378ms total)
T2914 331:977 JLINK_IsHalted() returns FALSE (0001ms, 2379ms total)
T2914 332:078 JLINK_IsHalted() returns FALSE (0001ms, 2379ms total)
T2914 332:180 JLINK_IsHalted() returns FALSE (0001ms, 2379ms total)
T2914 332:281 JLINK_IsHalted() returns FALSE (0001ms, 2379ms total)
T2914 332:382 JLINK_IsHalted() returns FALSE (0001ms, 2379ms total)
T2914 332:483 JLINK_IsHalted() returns FALSE (0001ms, 2379ms total)
T2914 332:585 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2378ms total)
T29C8 332:585 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2379ms total)
T2914 332:586 JLINK_IsHalted() returns FALSE (0001ms, 2380ms total)
T2914 332:687 JLINK_IsHalted() returns FALSE (0001ms, 2380ms total)
T2914 332:788 JLINK_IsHalted() returns FALSE (0001ms, 2380ms total)
T2914 332:889 JLINK_IsHalted() returns FALSE (0001ms, 2380ms total)
T2914 332:990 JLINK_IsHalted() returns FALSE (0001ms, 2380ms total)
T2914 333:091 JLINK_IsHalted() returns FALSE (0001ms, 2380ms total)
T2914 333:192 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2379ms total)
T29C8 333:192 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0002ms, 2381ms total)
T2914 333:194 JLINK_IsHalted() returns FALSE (0001ms, 2382ms total)
T2914 333:295 JLINK_IsHalted() returns FALSE (0001ms, 2382ms total)
T2914 333:396 JLINK_IsHalted() returns FALSE (0001ms, 2382ms total)
T2914 333:497 JLINK_IsHalted() returns FALSE (0001ms, 2382ms total)
T2914 333:598 JLINK_IsHalted() returns FALSE (0001ms, 2382ms total)
T2914 333:699 JLINK_IsHalted() returns FALSE (0001ms, 2382ms total)
T2914 333:800 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2381ms total)
T29C8 333:800 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0002ms, 2383ms total)
T2914 333:802 JLINK_IsHalted() returns FALSE (0001ms, 2384ms total)
T2914 333:903 JLINK_IsHalted() returns FALSE (0001ms, 2384ms total)
T2914 334:004 JLINK_IsHalted() returns FALSE (0001ms, 2384ms total)
T2914 334:105 JLINK_IsHalted() returns FALSE (0001ms, 2384ms total)
T2914 334:206 JLINK_IsHalted() returns FALSE (0001ms, 2384ms total)
T2914 334:307 JLINK_IsHalted() returns FALSE (0001ms, 2384ms total)
T2914 334:409 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2383ms total)
T29C8 334:409 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2384ms total)
T2914 334:410 JLINK_IsHalted() returns FALSE (0001ms, 2385ms total)
T2914 334:511 JLINK_IsHalted() returns FALSE (0001ms, 2385ms total)
T2914 334:612 JLINK_IsHalted() returns FALSE (0001ms, 2385ms total)
T2914 334:713 JLINK_IsHalted() returns FALSE (0001ms, 2385ms total)
T2914 334:815 JLINK_IsHalted() returns FALSE (0001ms, 2385ms total)
T2914 334:916 JLINK_IsHalted() returns FALSE (0001ms, 2385ms total)
T2914 335:017 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2384ms total)
T29C8 335:017 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2385ms total)
T2914 335:018 JLINK_IsHalted() returns FALSE (0001ms, 2386ms total)
T2914 335:119 JLINK_IsHalted() returns FALSE (0001ms, 2386ms total)
T2914 335:220 JLINK_IsHalted() returns FALSE (0001ms, 2386ms total)
T2914 335:321 JLINK_IsHalted() returns FALSE (0001ms, 2386ms total)
T2914 335:422 JLINK_IsHalted() returns FALSE (0001ms, 2386ms total)
T2914 335:523 JLINK_IsHalted() returns FALSE (0001ms, 2386ms total)
T2914 335:624 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2385ms total)
T29C8 335:624 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2386ms total)
T2914 335:625 JLINK_IsHalted() returns FALSE (0001ms, 2387ms total)
T2914 335:726 JLINK_IsHalted() returns FALSE (0001ms, 2387ms total)
T2914 335:827 JLINK_IsHalted() returns FALSE (0001ms, 2387ms total)
T2914 335:928 JLINK_IsHalted() returns FALSE (0001ms, 2387ms total)
T2914 336:029 JLINK_IsHalted() returns FALSE (0000ms, 2386ms total)
T2914 336:129 JLINK_IsHalted() returns FALSE (0001ms, 2387ms total)
T2914 336:230 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2386ms total)
T29C8 336:230 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2387ms total)
T2914 336:231 JLINK_IsHalted() returns FALSE (0001ms, 2388ms total)
T2914 336:332 JLINK_IsHalted() returns FALSE (0001ms, 2388ms total)
T2914 336:433 JLINK_IsHalted() returns FALSE (0001ms, 2388ms total)
T2914 336:534 JLINK_IsHalted() returns FALSE (0001ms, 2388ms total)
T2914 336:635 JLINK_IsHalted() returns FALSE (0002ms, 2389ms total)
T2914 336:737 JLINK_IsHalted() returns FALSE (0001ms, 2388ms total)
T2914 336:838 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2387ms total)
T29C8 336:838 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2388ms total)
T2914 336:839 JLINK_IsHalted() returns FALSE (0001ms, 2389ms total)
T2914 336:940 JLINK_IsHalted() returns FALSE (0001ms, 2389ms total)
T2914 337:041 JLINK_IsHalted() returns FALSE (0001ms, 2389ms total)
T2914 337:142 JLINK_IsHalted() returns FALSE (0001ms, 2389ms total)
T2914 337:243 JLINK_IsHalted() returns FALSE (0001ms, 2389ms total)
T2914 337:344 JLINK_IsHalted() returns FALSE (0001ms, 2389ms total)
T2914 337:445 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2388ms total)
T29C8 337:445 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2389ms total)
T2914 337:446 JLINK_IsHalted() returns FALSE (0001ms, 2390ms total)
T2914 337:547 JLINK_IsHalted() returns FALSE (0001ms, 2390ms total)
T2914 337:648 JLINK_IsHalted() returns FALSE (0001ms, 2390ms total)
T2914 337:749 JLINK_IsHalted() returns FALSE (0001ms, 2390ms total)
T2914 337:850 JLINK_IsHalted() returns FALSE (0001ms, 2390ms total)
T2914 337:951 JLINK_IsHalted() returns FALSE (0002ms, 2391ms total)
T2914 338:053 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2389ms total)
T29C8 338:053 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2390ms total)
T2914 338:054 JLINK_IsHalted() returns FALSE (0001ms, 2391ms total)
T2914 338:155 JLINK_IsHalted() returns FALSE (0001ms, 2391ms total)
T2914 338:256 JLINK_IsHalted() returns FALSE (0001ms, 2391ms total)
T2914 338:357 JLINK_IsHalted() returns FALSE (0001ms, 2391ms total)
T2914 338:458 JLINK_IsHalted() returns FALSE (0001ms, 2391ms total)
T2914 338:559 JLINK_IsHalted() returns FALSE (0001ms, 2391ms total)
T2914 338:660 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2390ms total)
T29C8 338:660 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2391ms total)
T2914 338:661 JLINK_IsHalted() returns FALSE (0002ms, 2393ms total)
T2914 338:763 JLINK_IsHalted() returns FALSE (0001ms, 2392ms total)
T2914 338:864 JLINK_IsHalted() returns FALSE (0001ms, 2392ms total)
T2914 338:965 JLINK_IsHalted() returns FALSE (0001ms, 2392ms total)
T2914 339:066 JLINK_IsHalted() returns FALSE (0001ms, 2392ms total)
T2914 339:167 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2391ms total)
T29C8 339:167 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2392ms total)
T2914 339:168 JLINK_IsHalted() returns FALSE (0001ms, 2393ms total)
T2914 339:269 JLINK_IsHalted() returns FALSE (0001ms, 2393ms total)
T2914 339:370 JLINK_IsHalted() returns FALSE (0001ms, 2393ms total)
T2914 339:471 JLINK_IsHalted() returns FALSE (0001ms, 2393ms total)
T2914 339:572 JLINK_IsHalted() returns FALSE (0001ms, 2393ms total)
T2914 339:673 JLINK_IsHalted() returns FALSE (0001ms, 2393ms total)
T2914 339:774 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2392ms total)
T29C8 339:774 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2393ms total)
T2914 339:775 JLINK_IsHalted() returns FALSE (0001ms, 2394ms total)
T2914 339:876 JLINK_IsHalted() returns FALSE (0001ms, 2394ms total)
T2914 339:977 JLINK_IsHalted() returns FALSE (0001ms, 2394ms total)
T2914 340:078 JLINK_IsHalted() returns FALSE (0001ms, 2394ms total)
T2914 340:179 JLINK_IsHalted() returns FALSE (0001ms, 2394ms total)
T2914 340:280 JLINK_IsHalted() returns FALSE (0001ms, 2394ms total)
T2914 340:381 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2393ms total)
T29C8 340:381 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2394ms total)
T2914 340:382 JLINK_IsHalted() returns FALSE (0001ms, 2395ms total)
T2914 340:483 JLINK_IsHalted() returns FALSE (0001ms, 2395ms total)
T2914 340:584 JLINK_IsHalted() returns FALSE (0001ms, 2395ms total)
T2914 340:685 JLINK_IsHalted() returns FALSE (0001ms, 2395ms total)
T2914 340:786 JLINK_IsHalted() returns FALSE (0001ms, 2395ms total)
T2914 340:887 JLINK_IsHalted() returns FALSE (0001ms, 2395ms total)
T2914 340:988 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2394ms total)
T29C8 340:988 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2395ms total)
T2914 340:989 JLINK_IsHalted() returns FALSE (0001ms, 2396ms total)
T2914 341:090 JLINK_IsHalted() returns FALSE (0001ms, 2396ms total)
T2914 341:191 JLINK_IsHalted() returns FALSE (0002ms, 2397ms total)
T2914 341:293 JLINK_IsHalted() returns FALSE (0001ms, 2396ms total)
T2914 341:394 JLINK_IsHalted() returns FALSE (0001ms, 2396ms total)
T2914 341:495 JLINK_IsHalted() returns FALSE (0001ms, 2396ms total)
T2914 341:596 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2395ms total)
T29C8 341:596 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2396ms total)
T2914 341:597 JLINK_IsHalted() returns FALSE (0001ms, 2397ms total)
T2914 341:698 JLINK_IsHalted() returns FALSE (0001ms, 2397ms total)
T2914 341:799 JLINK_IsHalted() returns FALSE (0001ms, 2397ms total)
T2914 341:900 JLINK_IsHalted() returns FALSE (0001ms, 2397ms total)
T2914 342:001 JLINK_IsHalted() returns FALSE (0001ms, 2397ms total)
T2914 342:102 JLINK_IsHalted() returns FALSE (0001ms, 2397ms total)
T2914 342:203 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2396ms total)
T29C8 342:203 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2397ms total)
T2914 342:205 JLINK_IsHalted() returns FALSE (0001ms, 2398ms total)
T2914 342:306 JLINK_IsHalted() returns FALSE (0001ms, 2398ms total)
T2914 342:407 JLINK_IsHalted() returns FALSE (0001ms, 2398ms total)
T2914 342:508 JLINK_IsHalted() returns FALSE (0001ms, 2398ms total)
T2914 342:609 JLINK_IsHalted() returns FALSE (0001ms, 2398ms total)
T2914 342:710 JLINK_IsHalted() returns FALSE (0001ms, 2398ms total)
T2914 342:811 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2397ms total)
T29C8 342:811 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0002ms, 2399ms total)
T2914 342:813 JLINK_IsHalted() returns FALSE (0000ms, 2399ms total)
T2914 342:913 JLINK_IsHalted() returns FALSE (0001ms, 2400ms total)
T2914 343:014 JLINK_IsHalted() returns FALSE (0001ms, 2400ms total)
T2914 343:115 JLINK_IsHalted() returns FALSE (0001ms, 2400ms total)
T2914 343:216 JLINK_IsHalted() returns FALSE (0001ms, 2400ms total)
T2914 343:317 JLINK_IsHalted() returns FALSE (0001ms, 2400ms total)
T2914 343:418 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2399ms total)
T29C8 343:418 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2400ms total)
T2914 343:419 JLINK_IsHalted() returns FALSE (0001ms, 2401ms total)
T2914 343:520 JLINK_IsHalted() returns FALSE (0001ms, 2401ms total)
T2914 343:621 JLINK_IsHalted() returns FALSE (0001ms, 2401ms total)
T2914 343:722 JLINK_IsHalted() returns FALSE (0001ms, 2401ms total)
T2914 343:823 JLINK_IsHalted() returns FALSE (0001ms, 2401ms total)
T2914 343:924 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2400ms total)
T29C8 343:924 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0002ms, 2402ms total)
T2914 343:926 JLINK_IsHalted() returns FALSE (0001ms, 2403ms total)
T2914 344:027 JLINK_IsHalted() returns FALSE (0001ms, 2403ms total)
T2914 344:128 JLINK_IsHalted() returns FALSE (0001ms, 2403ms total)
T2914 344:229 JLINK_IsHalted() returns FALSE (0001ms, 2403ms total)
T2914 344:330 JLINK_IsHalted() returns FALSE (0001ms, 2403ms total)
T2914 344:431 JLINK_IsHalted() returns FALSE (0001ms, 2403ms total)
T2914 344:532 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2402ms total)
T29C8 344:532 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2403ms total)
T2914 344:533 JLINK_IsHalted() returns FALSE (0001ms, 2404ms total)
T2914 344:634 JLINK_IsHalted() returns FALSE (0001ms, 2404ms total)
T2914 344:735 JLINK_IsHalted() returns FALSE (0001ms, 2404ms total)
T2914 344:836 JLINK_IsHalted() returns FALSE (0001ms, 2404ms total)
T2914 344:937 JLINK_IsHalted() returns FALSE (0001ms, 2404ms total)
T2914 345:038 JLINK_IsHalted() returns FALSE (0001ms, 2404ms total)
T2914 345:139 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2403ms total)
T29C8 345:139 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2404ms total)
T2914 345:140 JLINK_IsHalted() returns FALSE (0001ms, 2405ms total)
T2914 345:241 JLINK_IsHalted() returns FALSE (0001ms, 2405ms total)
T2914 345:342 JLINK_IsHalted() returns FALSE (0001ms, 2405ms total)
T2914 345:443 JLINK_IsHalted() returns FALSE (0001ms, 2405ms total)
T2914 345:544 JLINK_IsHalted() returns FALSE (0001ms, 2405ms total)
T2914 345:645 JLINK_IsHalted() returns FALSE (0001ms, 2405ms total)
T2914 345:746 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2404ms total)
T29C8 345:746 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2405ms total)
T2914 345:747 JLINK_IsHalted() returns FALSE (0001ms, 2406ms total)
T2914 345:848 JLINK_IsHalted() returns FALSE (0001ms, 2406ms total)
T2914 345:949 JLINK_IsHalted() returns FALSE (0001ms, 2406ms total)
T2914 346:050 JLINK_IsHalted() returns FALSE (0001ms, 2406ms total)
T2914 346:151 JLINK_IsHalted() returns FALSE (0001ms, 2406ms total)
T2914 346:252 JLINK_IsHalted() returns FALSE (0001ms, 2406ms total)
T2914 346:353 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2405ms total)
T29C8 346:353 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2406ms total)
T2914 346:354 JLINK_IsHalted() returns FALSE (0001ms, 2407ms total)
T2914 346:455 JLINK_IsHalted() returns FALSE (0001ms, 2407ms total)
T2914 346:556 JLINK_IsHalted() returns FALSE (0001ms, 2407ms total)
T2914 346:657 JLINK_IsHalted() returns FALSE (0001ms, 2407ms total)
T2914 346:758 JLINK_IsHalted() returns FALSE (0001ms, 2407ms total)
T2914 346:859 JLINK_IsHalted() returns FALSE (0001ms, 2407ms total)
T2914 346:960 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2406ms total)
T29C8 346:960 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2407ms total)
T2914 346:961 JLINK_IsHalted() returns FALSE (0001ms, 2408ms total)
T2914 347:062 JLINK_IsHalted() returns FALSE (0001ms, 2408ms total)
T2914 347:163 JLINK_IsHalted() returns FALSE (0001ms, 2408ms total)
T2914 347:264 JLINK_IsHalted() returns FALSE (0001ms, 2408ms total)
T2914 347:365 JLINK_IsHalted() returns FALSE (0001ms, 2408ms total)
T2914 347:466 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2407ms total)
T29C8 347:466 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2408ms total)
T2914 347:467 JLINK_IsHalted() returns FALSE (0001ms, 2409ms total)
T2914 347:568 JLINK_IsHalted() returns FALSE (0001ms, 2409ms total)
T2914 347:670 JLINK_IsHalted() returns FALSE (0001ms, 2409ms total)
T2914 347:771 JLINK_IsHalted() returns FALSE (0001ms, 2409ms total)
T2914 347:872 JLINK_IsHalted() returns FALSE (0002ms, 2410ms total)
T2914 347:974 JLINK_IsHalted() returns FALSE (0001ms, 2409ms total)
T2914 348:075 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 6A E2 5D 04 returns 1 (0000ms, 2408ms total)
T29C8 348:075 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2409ms total)
T2914 348:076 JLINK_IsHalted() returns FALSE (0001ms, 2410ms total)
T2914 348:177 JLINK_IsHalted() returns FALSE (0001ms, 2410ms total)
T2914 348:278 JLINK_IsHalted() returns FALSE (0001ms, 2410ms total)
T2914 348:379 JLINK_IsHalted() returns FALSE (0001ms, 2410ms total)
T2914 348:480 JLINK_IsHalted() returns FALSE (0001ms, 2410ms total)
T2914 348:581 JLINK_IsHalted() returns TRUE (0004ms, 2413ms total)
T2914 348:586 JLINK_Halt() returns 0x00 (0000ms, 2409ms total)
T2914 348:586 JLINK_IsHalted() returns TRUE (0000ms, 2409ms total)
T2914 348:586 JLINK_IsHalted() returns TRUE (0000ms, 2409ms total)
T2914 348:586 JLINK_IsHalted() returns TRUE (0000ms, 2409ms total)
T2914 348:586 JLINK_ReadReg(R15 (PC)) returns 0x08006F2C (0000ms, 2409ms total)
T2914 348:586 JLINK_ReadReg(XPSR) returns 0x61000027 (0000ms, 2409ms total)
T2914 348:586 JLINK_ClrBPEx(BPHandle = 0x00000002) returns 0x00 (0000ms, 2409ms total)
T2914 348:586 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 02 00 00 00 returns 1 (0001ms, 2410ms total)
T2914 348:587 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00 returns 1 (0001ms, 2411ms total)
T2914 348:588 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 02 00 00 returns 1 (0003ms, 2414ms total)
T2914 348:591 JLINK_ReadMemU32(0xE0001048, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001048) - Data: 00 00 00 00 returns 1 (0001ms, 2415ms total)
T2914 348:592 JLINK_ReadMemU32(0xE0001058, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001058) - Data: 00 00 00 00 returns 1 (0001ms, 2416ms total)
T2914 348:593 JLINK_ReadReg(R0) returns 0x00000001 (0000ms, 2416ms total)
T2914 348:593 JLINK_ReadReg(R1) returns 0x00000001 (0000ms, 2416ms total)
T2914 348:593 JLINK_ReadReg(R2) returns 0x00000000 (0000ms, 2416ms total)
T2914 348:593 JLINK_ReadReg(R3) returns 0x20008F24 (0000ms, 2416ms total)
T2914 348:593 JLINK_ReadReg(R4) returns 0x00000000 (0000ms, 2416ms total)
T2914 348:593 JLINK_ReadReg(R5) returns 0x00000000 (0000ms, 2416ms total)
T2914 348:593 JLINK_ReadReg(R6) returns 0x20008F24 (0000ms, 2416ms total)
T2914 348:593 JLINK_ReadReg(R7) returns 0x00000004 (0000ms, 2416ms total)
T2914 348:593 JLINK_ReadReg(R8) returns 0x20008FB4 (0000ms, 2416ms total)
T2914 348:593 JLINK_ReadReg(R9) returns 0x20000134 (0000ms, 2416ms total)
T2914 348:593 JLINK_ReadReg(R10) returns 0x00000000 (0000ms, 2416ms total)
T2914 348:593 JLINK_ReadReg(R11) returns 0x00000000 (0000ms, 2416ms total)
T2914 348:593 JLINK_ReadReg(R12) returns 0x00000004 (0000ms, 2416ms total)
T2914 348:593 JLINK_ReadReg(R13 (SP)) returns 0x20008E90 (0000ms, 2416ms total)
T2914 348:593 JLINK_ReadReg(R14) returns 0x08006F09 (0000ms, 2416ms total)
T2914 348:593 JLINK_ReadReg(R15 (PC)) returns 0x08006F2C (0000ms, 2416ms total)
T2914 348:593 JLINK_ReadReg(XPSR) returns 0x61000027 (0000ms, 2416ms total)
T2914 348:593 JLINK_ReadReg(MSP) returns 0x20008E90 (0000ms, 2416ms total)
T2914 348:593 JLINK_ReadReg(PSP) returns 0x20001000 (0000ms, 2416ms total)
T2914 348:593 JLINK_ReadReg(CFBP) returns 0x00000001 (0000ms, 2416ms total)
T2914 348:593 JLINK_ReadReg(FPSCR) returns 0x00000000 (0004ms, 2420ms total)
T2914 348:597 JLINK_ReadReg(FPS0) returns 0xFB068412 (0000ms, 2420ms total)
T2914 348:597 JLINK_ReadReg(FPS1) returns 0x10110C5A (0000ms, 2420ms total)
T2914 348:597 JLINK_ReadReg(FPS2) returns 0x04341E1B (0000ms, 2420ms total)
T2914 348:597 JLINK_ReadReg(FPS3) returns 0x80412402 (0000ms, 2420ms total)
T2914 348:598 JLINK_ReadReg(FPS4) returns 0x18248A00 (0000ms, 2421ms total)
T2914 348:598 JLINK_ReadReg(FPS5) returns 0x20102094 (0000ms, 2421ms total)
T2914 348:598 JLINK_ReadReg(FPS6) returns 0x82C0846D (0000ms, 2421ms total)
T2914 348:598 JLINK_ReadReg(FPS7) returns 0x08A02089 (0000ms, 2421ms total)
T2914 348:598 JLINK_ReadReg(FPS8) returns 0x05488443 (0000ms, 2421ms total)
T2914 348:598 JLINK_ReadReg(FPS9) returns 0xF372B940 (0000ms, 2421ms total)
T2914 348:598 JLINK_ReadReg(FPS10) returns 0x11B25004 (0000ms, 2421ms total)
T2914 348:598 JLINK_ReadReg(FPS11) returns 0x00024120 (0000ms, 2421ms total)
T2914 348:598 JLINK_ReadReg(FPS12) returns 0x023C5609 (0000ms, 2421ms total)
T2914 348:598 JLINK_ReadReg(FPS13) returns 0x8600710B (0000ms, 2421ms total)
T2914 348:598 JLINK_ReadReg(FPS14) returns 0xA03D9BF0 (0000ms, 2421ms total)
T2914 348:598 JLINK_ReadReg(FPS15) returns 0x5812A440 (0000ms, 2421ms total)
T2914 348:598 JLINK_ReadReg(FPS16) returns 0x15918209 (0000ms, 2421ms total)
T2914 348:598 JLINK_ReadReg(FPS17) returns 0xD015225C (0000ms, 2421ms total)
T2914 348:598 JLINK_ReadReg(FPS18) returns 0x0C0013B7 (0000ms, 2421ms total)
T2914 348:598 JLINK_ReadReg(FPS19) returns 0x1C58D420 (0000ms, 2421ms total)
T2914 348:598 JLINK_ReadReg(FPS20) returns 0xA4974081 (0000ms, 2421ms total)
T2914 348:598 JLINK_ReadReg(FPS21) returns 0x108D0118 (0000ms, 2421ms total)
T2914 348:598 JLINK_ReadReg(FPS22) returns 0x9044A200 (0000ms, 2421ms total)
T2914 348:598 JLINK_ReadReg(FPS23) returns 0x781049E0 (0000ms, 2421ms total)
T2914 348:598 JLINK_ReadReg(FPS24) returns 0x1C330E11 (0000ms, 2421ms total)
T2914 348:598 JLINK_ReadReg(FPS25) returns 0xC604704C (0000ms, 2421ms total)
T2914 348:598 JLINK_ReadReg(FPS26) returns 0x2C70E395 (0000ms, 2421ms total)
T2914 348:598 JLINK_ReadReg(FPS27) returns 0x8012365D (0000ms, 2421ms total)
T2914 348:598 JLINK_ReadReg(FPS28) returns 0x028512B3 (0000ms, 2421ms total)
T2914 348:598 JLINK_ReadReg(FPS29) returns 0x321C1711 (0000ms, 2421ms total)
T2914 348:598 JLINK_ReadReg(FPS30) returns 0x40000912 (0000ms, 2421ms total)
T2914 348:598 JLINK_ReadReg(FPS31) returns 0x11A67042 (0000ms, 2421ms total)
T29C8 348:598 JLINK_ReadMemEx(0x20008EA4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20008E80) -- Updating C cache (64 bytes @ 0x20008E80) -- Read from C cache (4 bytes @ 0x20008EA4) - Data: BD 6C 00 08 returns 0x04 (0002ms, 2423ms total)
T29C8 348:600 JLINK_ReadMemEx(0x20008E90, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008E90) - Data: 21 8F 00 20 returns 0x04 (0000ms, 2423ms total)
T29C8 348:600 JLINK_ReadMemEx(0x20008E94, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008E94) - Data: 10 00 00 00 returns 0x04 (0000ms, 2423ms total)
T29C8 348:600 JLINK_ReadMemEx(0x20008E98, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008E98) - Data: 15 00 00 00 returns 0x04 (0000ms, 2423ms total)
T29C8 348:600 JLINK_ReadMemEx(0x20008E9C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008E9C) - Data: 00 00 00 00 returns 0x04 (0000ms, 2423ms total)
T29C8 348:600 JLINK_ReadMemEx(0x20008EA0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008EA0) - Data: B4 8F 00 20 returns 0x04 (0000ms, 2423ms total)
T29C8 348:600 JLINK_ReadMemEx(0x20008EA4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008EA4) - Data: BD 6C 00 08 returns 0x04 (0000ms, 2423ms total)
T29C8 348:600 JLINK_ReadMemEx(0x20008EFC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20008EC0) -- Updating C cache (64 bytes @ 0x20008EC0) -- Read from C cache (4 bytes @ 0x20008EFC) - Data: 5B 71 00 08 returns 0x04 (0002ms, 2425ms total)
T29C8 348:602 JLINK_ReadMemEx(0x20008EEC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008EEC) - Data: 21 8F 00 20 returns 0x04 (0000ms, 2425ms total)
T29C8 348:602 JLINK_ReadMemEx(0x20008EF0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008EF0) - Data: 5B AB 00 00 returns 0x04 (0000ms, 2425ms total)
T29C8 348:602 JLINK_ReadMemEx(0x20008EF4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008EF4) - Data: 20 8F 00 20 returns 0x04 (0000ms, 2425ms total)
T29C8 348:602 JLINK_ReadMemEx(0x20008EF8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008EF8) - Data: 00 00 00 00 returns 0x04 (0000ms, 2425ms total)
T29C8 348:602 JLINK_ReadMemEx(0x20008EFC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008EFC) - Data: 5B 71 00 08 returns 0x04 (0000ms, 2425ms total)
T29C8 348:602 JLINK_ReadMemEx(0x20008F14, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20008F00) -- Updating C cache (64 bytes @ 0x20008F00) -- Read from C cache (4 bytes @ 0x20008F14) - Data: CF 71 00 08 returns 0x04 (0001ms, 2426ms total)
T29C8 348:603 JLINK_ReadMemEx(0x20008F00, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F00) - Data: 20 8F 00 20 returns 0x04 (0000ms, 2426ms total)
T29C8 348:603 JLINK_ReadMemEx(0x20008F04, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F04) - Data: 40 00 00 00 returns 0x04 (0000ms, 2426ms total)
T29C8 348:603 JLINK_ReadMemEx(0x20008F08, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F08) - Data: 00 00 00 00 returns 0x04 (0000ms, 2426ms total)
T29C8 348:603 JLINK_ReadMemEx(0x20008F0C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F0C) - Data: 0A 00 00 00 returns 0x04 (0000ms, 2426ms total)
T29C8 348:603 JLINK_ReadMemEx(0x20008F10, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F10) - Data: B4 8F 00 20 returns 0x04 (0000ms, 2426ms total)
T29C8 348:603 JLINK_ReadMemEx(0x20008F14, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F14) - Data: CF 71 00 08 returns 0x04 (0000ms, 2426ms total)
T29C8 348:603 JLINK_ReadMemEx(0x20008F1C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F1C) - Data: 57 8F 00 08 returns 0x04 (0000ms, 2426ms total)
T29C8 348:618 JLINK_ReadMemEx(0x20008F18, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F18) - Data: 03 00 00 00 returns 0x04 (0000ms, 2426ms total)
T29C8 348:618 JLINK_ReadMemEx(0x20008F1C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F1C) - Data: 57 8F 00 08 returns 0x04 (0000ms, 2426ms total)
T29C8 348:618 JLINK_ReadMemEx(0x20008F6C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20008F40) -- Updating C cache (64 bytes @ 0x20008F40) -- Read from C cache (4 bytes @ 0x20008F6C) - Data: E7 11 00 08 returns 0x04 (0002ms, 2428ms total)
T29C8 348:635 JLINK_ReadMemEx(0x20008F64, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F64) - Data: 38 21 00 20 returns 0x04 (0000ms, 2428ms total)
T29C8 348:635 JLINK_ReadMemEx(0x20008F68, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F68) - Data: 40 00 00 00 returns 0x04 (0000ms, 2428ms total)
T29C8 348:635 JLINK_ReadMemEx(0x20008F6C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F6C) - Data: E7 11 00 08 returns 0x04 (0000ms, 2428ms total)
T29C8 348:635 JLINK_ReadMemEx(0x20008F74, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F74) - Data: F9 FF FF FF returns 0x04 (0000ms, 2428ms total)
T29C8 348:635 JLINK_ReadMemEx(0x20008F90, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20008F80) -- Updating C cache (64 bytes @ 0x20008F80) -- Read from C cache (4 bytes @ 0x20008F90) - Data: AA 88 00 08 returns 0x04 (0002ms, 2430ms total)
T29C8 348:637 JLINK_ReadMemEx(0x20008F94, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F94) - Data: 00 00 00 61 returns 0x04 (0000ms, 2430ms total)
T29C8 348:637 JLINK_ReadMemEx(0x20008F8C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F8C) - Data: AB 88 00 08 returns 0x04 (0000ms, 2430ms total)
T29C8 348:637 JLINK_ReadMemEx(0xE000ED28, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0xE000ED28) - Data: 00 00 00 00 returns 0x04 (0002ms, 2432ms total)
T29C8 348:639 JLINK_ReadMemEx(0x20008F90, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F90) - Data: AA 88 00 08 returns 0x04 (0000ms, 2432ms total)
T29C8 348:639 JLINK_ReadMemEx(0x20008F94, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F94) - Data: 00 00 00 61 returns 0x04 (0000ms, 2432ms total)
T29C8 348:639 JLINK_ReadMemEx(0x20008FAC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FAC) - Data: 4F 72 00 08 returns 0x04 (0000ms, 2432ms total)
T29C8 348:639 JLINK_ReadMemEx(0x20008F98, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F98) - Data: 84 D1 00 08 returns 0x04 (0001ms, 2433ms total)
T29C8 348:640 JLINK_ReadMemEx(0x20008F9C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F9C) - Data: 84 D1 00 08 returns 0x04 (0000ms, 2433ms total)
T29C8 348:640 JLINK_ReadMemEx(0x20008FA0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FA0) - Data: 00 00 00 00 returns 0x04 (0000ms, 2433ms total)
T29C8 348:640 JLINK_ReadMemEx(0x20008FA4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FA4) - Data: 00 00 00 00 returns 0x04 (0000ms, 2433ms total)
T29C8 348:640 JLINK_ReadMemEx(0x20008FA8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FA8) - Data: 00 00 00 00 returns 0x04 (0000ms, 2433ms total)
T29C8 348:640 JLINK_ReadMemEx(0x20008FAC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FAC) - Data: 4F 72 00 08 returns 0x04 (0000ms, 2433ms total)
T29C8 348:640 JLINK_ReadMemEx(0x20008FFC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20008FC0) -- Updating C cache (64 bytes @ 0x20008FC0) -- Read from C cache (4 bytes @ 0x20008FFC) - Data: EF 4A 00 08 returns 0x04 (0001ms, 2434ms total)
T29C8 348:642 JLINK_ReadMemEx(0x20008FF8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FF8) - Data: 84 D1 00 08 returns 0x04 (0000ms, 2434ms total)
T29C8 348:642 JLINK_ReadMemEx(0x20008FFC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FFC) - Data: EF 4A 00 08 returns 0x04 (0000ms, 2434ms total)
T29C8 348:642 JLINK_ReadMemEx(0x20009004, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20009000) -- Updating C cache (64 bytes @ 0x20009000) -- Read from C cache (4 bytes @ 0x20009004) - Data: C1 75 00 08 returns 0x04 (0002ms, 2436ms total)
T29C8 348:644 JLINK_ReadMemEx(0x20009000, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20009000) - Data: 84 D1 00 08 returns 0x04 (0000ms, 2436ms total)
T29C8 348:644 JLINK_ReadMemEx(0x20009004, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20009004) - Data: C1 75 00 08 returns 0x04 (0000ms, 2436ms total)
T29C8 348:644 JLINK_ReadMemEx(0x20008F24, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x20008F24) - Data: 6F 06 C7 55 00 01 43 00 00 02 0A 3E 01 00 01 00 ... returns 0x20 (0000ms, 2436ms total)
T29C8 348:652 JLINK_ReadMemEx(0x20008F24, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x20008F24) - Data: 6F 06 C7 55 00 01 43 00 00 02 0A 3E 01 00 01 00 ... returns 0x20 (0000ms, 2436ms total)
T29C8 348:652 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000500) -- Updating C cache (64 bytes @ 0x20000500) -- Read from C cache (1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0002ms, 2438ms total)
T2914 354:062 JLINK_ReadMemEx(0x08006F2C, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x08006F00) -- Updating C cache (128 bytes @ 0x08006F00) -- Read from C cache (60 bytes @ 0x08006F2C) - Data: 1E 49 D1 F8 00 01 80 47 72 7B 31 7B 02 EB 01 21 ... returns 0x3C (0003ms, 2441ms total)
T2914 354:065 JLINK_ReadMemEx(0x08006F2C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F2C) - Data: 1E 49 returns 0x02 (0000ms, 2441ms total)
T2914 354:065 JLINK_ReadMemEx(0x08006F2E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F2E) - Data: D1 F8 returns 0x02 (0000ms, 2441ms total)
T2914 354:065 JLINK_ReadMemEx(0x08006F2C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F2C) - Data: 1E 49 returns 0x02 (0000ms, 2441ms total)
T2914 354:065 JLINK_Step() -- Read from C cache (2 bytes @ 0x08006F2C) -- CPU_ReadMem(4 bytes @ 0xE000ED18) -- CPU_WriteMem(4 bytes @ 0xE000ED18) -- CPU_ReadMem(4 bytes @ 0xE000ED18) -- CPU_WriteMem(4 bytes @ 0xE000ED18) -- CPU_ReadMem(64 bytes @ 0x08006F80) -- Updating C cache (64 bytes @ 0x08006F80) -- Read from C cache (4 bytes @ 0x08006FA8) -- Simulated returns 0x00 (0009ms, 2450ms total)
T2914 354:074 JLINK_ReadReg(R15 (PC)) returns 0x08006F2E (0000ms, 2450ms total)
T2914 354:074 JLINK_ReadReg(XPSR) returns 0x61000027 (0000ms, 2450ms total)
T2914 354:074 JLINK_ReadMemEx(0x08006F2E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F2E) - Data: D1 F8 returns 0x02 (0000ms, 2450ms total)
T2914 354:074 JLINK_ReadMemEx(0x08006F30, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006F30) - Data: 00 01 80 47 72 7B 31 7B 02 EB 01 21 88 42 04 D0 ... returns 0x3C (0000ms, 2450ms total)
T2914 354:074 JLINK_ReadMemEx(0x08006F30, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F30) - Data: 00 01 returns 0x02 (0001ms, 2451ms total)
T2914 354:075 JLINK_Step() -- Read from C cache (2 bytes @ 0x08006F2E) -- Read from C cache (2 bytes @ 0x08006F30) -- Not simulated -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE0001004) returns 0x00 (0008ms, 2459ms total)
T2914 354:083 JLINK_ReadReg(R15 (PC)) returns 0x08006F32 (0000ms, 2459ms total)
T2914 354:083 JLINK_ReadReg(XPSR) returns 0x61000027 (0000ms, 2459ms total)
T2914 354:083 JLINK_ReadMemEx(0x08006F30, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x08006F00) -- Updating C cache (128 bytes @ 0x08006F00) -- Read from C cache (60 bytes @ 0x08006F30) - Data: 00 01 80 47 72 7B 31 7B 02 EB 01 21 88 42 04 D0 ... returns 0x3C (0002ms, 2461ms total)
T2914 354:086 JLINK_ReadMemEx(0x08006F30, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F30) - Data: 00 01 returns 0x02 (0000ms, 2461ms total)
T2914 354:086 JLINK_ReadMemEx(0x08006F32, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F32) - Data: 80 47 returns 0x02 (0000ms, 2461ms total)
T2914 354:086 JLINK_ReadMemEx(0x08006F32, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F32) - Data: 80 47 returns 0x02 (0000ms, 2461ms total)
T2914 354:086 JLINK_ReadMemEx(0x08006F34, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006F34) - Data: 72 7B 31 7B 02 EB 01 21 88 42 04 D0 19 49 D1 F8 ... returns 0x3C (0000ms, 2461ms total)
T2914 354:086 JLINK_ReadMemEx(0x08006F34, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F34) - Data: 72 7B returns 0x02 (0000ms, 2461ms total)
T2914 354:086 JLINK_ReadReg(R0) returns 0x08007D81 (0000ms, 2461ms total)
T2914 354:086 JLINK_ReadReg(R1) returns 0x200003E8 (0000ms, 2461ms total)
T2914 354:086 JLINK_ReadReg(R2) returns 0x00000000 (0000ms, 2461ms total)
T2914 354:086 JLINK_ReadReg(R3) returns 0x20008F24 (0000ms, 2461ms total)
T2914 354:086 JLINK_ReadReg(R4) returns 0x00000000 (0000ms, 2461ms total)
T2914 354:086 JLINK_ReadReg(R5) returns 0x00000000 (0000ms, 2461ms total)
T2914 354:086 JLINK_ReadReg(R6) returns 0x20008F24 (0000ms, 2461ms total)
T2914 354:086 JLINK_ReadReg(R7) returns 0x00000004 (0000ms, 2461ms total)
T2914 354:086 JLINK_ReadReg(R8) returns 0x20008FB4 (0000ms, 2461ms total)
T2914 354:086 JLINK_ReadReg(R9) returns 0x20000134 (0000ms, 2461ms total)
T2914 354:086 JLINK_ReadReg(R10) returns 0x00000000 (0000ms, 2461ms total)
T2914 354:086 JLINK_ReadReg(R11) returns 0x00000000 (0000ms, 2461ms total)
T2914 354:086 JLINK_ReadReg(R12) returns 0x00000004 (0000ms, 2461ms total)
T2914 354:086 JLINK_ReadReg(R13 (SP)) returns 0x20008E90 (0000ms, 2461ms total)
T2914 354:086 JLINK_ReadReg(R14) returns 0x08006F09 (0000ms, 2461ms total)
T2914 354:086 JLINK_ReadReg(R15 (PC)) returns 0x08006F32 (0000ms, 2461ms total)
T2914 354:086 JLINK_ReadReg(XPSR) returns 0x61000027 (0000ms, 2461ms total)
T2914 354:086 JLINK_ReadReg(MSP) returns 0x20008E90 (0001ms, 2462ms total)
T2914 354:087 JLINK_ReadReg(PSP) returns 0x20001000 (0000ms, 2462ms total)
T2914 354:087 JLINK_ReadReg(CFBP) returns 0x00000001 (0000ms, 2462ms total)
T2914 354:087 JLINK_ReadReg(FPSCR) returns 0x00000000 (0005ms, 2467ms total)
T2914 354:092 JLINK_ReadReg(FPS0) returns 0xFB068412 (0000ms, 2467ms total)
T2914 354:092 JLINK_ReadReg(FPS1) returns 0x10110C5A (0000ms, 2467ms total)
T2914 354:092 JLINK_ReadReg(FPS2) returns 0x04341E1B (0000ms, 2467ms total)
T2914 354:092 JLINK_ReadReg(FPS3) returns 0x80412402 (0000ms, 2467ms total)
T2914 354:092 JLINK_ReadReg(FPS4) returns 0x18248A00 (0000ms, 2467ms total)
T2914 354:092 JLINK_ReadReg(FPS5) returns 0x20102094 (0001ms, 2468ms total)
T2914 354:093 JLINK_ReadReg(FPS6) returns 0x82C0846D (0000ms, 2468ms total)
T2914 354:093 JLINK_ReadReg(FPS7) returns 0x08A02089 (0000ms, 2468ms total)
T2914 354:093 JLINK_ReadReg(FPS8) returns 0x05488443 (0000ms, 2468ms total)
T2914 354:093 JLINK_ReadReg(FPS9) returns 0xF372B940 (0000ms, 2468ms total)
T2914 354:093 JLINK_ReadReg(FPS10) returns 0x11B25004 (0000ms, 2468ms total)
T2914 354:093 JLINK_ReadReg(FPS11) returns 0x00024120 (0000ms, 2468ms total)
T2914 354:093 JLINK_ReadReg(FPS12) returns 0x023C5609 (0000ms, 2468ms total)
T2914 354:093 JLINK_ReadReg(FPS13) returns 0x8600710B (0000ms, 2468ms total)
T2914 354:093 JLINK_ReadReg(FPS14) returns 0xA03D9BF0 (0000ms, 2468ms total)
T2914 354:093 JLINK_ReadReg(FPS15) returns 0x5812A440 (0000ms, 2468ms total)
T2914 354:093 JLINK_ReadReg(FPS16) returns 0x15918209 (0000ms, 2468ms total)
T2914 354:093 JLINK_ReadReg(FPS17) returns 0xD015225C (0000ms, 2468ms total)
T2914 354:093 JLINK_ReadReg(FPS18) returns 0x0C0013B7 (0000ms, 2468ms total)
T2914 354:093 JLINK_ReadReg(FPS19) returns 0x1C58D420 (0000ms, 2468ms total)
T2914 354:093 JLINK_ReadReg(FPS20) returns 0xA4974081 (0000ms, 2468ms total)
T2914 354:093 JLINK_ReadReg(FPS21) returns 0x108D0118 (0000ms, 2468ms total)
T2914 354:093 JLINK_ReadReg(FPS22) returns 0x9044A200 (0000ms, 2468ms total)
T2914 354:093 JLINK_ReadReg(FPS23) returns 0x781049E0 (0000ms, 2468ms total)
T2914 354:093 JLINK_ReadReg(FPS24) returns 0x1C330E11 (0000ms, 2468ms total)
T2914 354:093 JLINK_ReadReg(FPS25) returns 0xC604704C (0000ms, 2468ms total)
T2914 354:093 JLINK_ReadReg(FPS26) returns 0x2C70E395 (0000ms, 2468ms total)
T2914 354:093 JLINK_ReadReg(FPS27) returns 0x8012365D (0000ms, 2468ms total)
T2914 354:093 JLINK_ReadReg(FPS28) returns 0x028512B3 (0000ms, 2468ms total)
T2914 354:093 JLINK_ReadReg(FPS29) returns 0x321C1711 (0000ms, 2468ms total)
T2914 354:093 JLINK_ReadReg(FPS30) returns 0x40000912 (0000ms, 2468ms total)
T2914 354:093 JLINK_ReadReg(FPS31) returns 0x11A67042 (0001ms, 2469ms total)
T2914 354:094 JLINK_SetBPEx(Addr = 0x08006F34, Type = 0xFFFFFFF2) returns 0x00000003 (0000ms, 2469ms total)
T2914 354:094 JLINK_SetBPEx(Addr = 0x08006F2C, Type = 0xFFFFFFF2) returns 0x00000004 (0000ms, 2469ms total)
T2914 354:094 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) (0006ms, 2475ms total)
T2914 354:200 JLINK_IsHalted() returns TRUE (0005ms, 2480ms total)
T2914 354:205 JLINK_Halt() returns 0x00 (0000ms, 2475ms total)
T2914 354:205 JLINK_IsHalted() returns TRUE (0000ms, 2475ms total)
T2914 354:205 JLINK_IsHalted() returns TRUE (0000ms, 2475ms total)
T2914 354:205 JLINK_IsHalted() returns TRUE (0000ms, 2475ms total)
T2914 354:205 JLINK_ReadReg(R15 (PC)) returns 0x08006F34 (0000ms, 2475ms total)
T2914 354:205 JLINK_ReadReg(XPSR) returns 0x61000027 (0000ms, 2475ms total)
T2914 354:205 JLINK_ClrBPEx(BPHandle = 0x00000003) returns 0x00 (0000ms, 2475ms total)
T2914 354:205 JLINK_ClrBPEx(BPHandle = 0x00000004) returns 0x00 (0000ms, 2475ms total)
T2914 354:205 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 02 00 00 00 returns 1 (0002ms, 2477ms total)
T2914 354:207 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00 returns 1 (0002ms, 2479ms total)
T2914 354:210 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 02 00 00 returns 1 (0002ms, 2481ms total)
T2914 354:212 JLINK_ReadMemU32(0xE0001048, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001048) - Data: 00 00 00 00 returns 1 (0002ms, 2483ms total)
T2914 354:214 JLINK_ReadMemU32(0xE0001058, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001058) - Data: 00 00 00 00 returns 1 (0002ms, 2485ms total)
T2914 354:216 JLINK_ReadMemEx(0x08006F34, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x08006F00) -- Updating C cache (128 bytes @ 0x08006F00) -- Read from C cache (60 bytes @ 0x08006F34) - Data: 72 7B 31 7B 02 EB 01 21 88 42 04 D0 19 49 D1 F8 ... returns 0x3C (0002ms, 2487ms total)
T2914 354:218 JLINK_ReadMemEx(0x08006F34, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F34) - Data: 72 7B returns 0x02 (0000ms, 2487ms total)
T2914 354:218 JLINK_ReadMemEx(0x08006F36, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F36) - Data: 31 7B returns 0x02 (0000ms, 2487ms total)
T2914 354:218 JLINK_Step() -- Read from C cache (2 bytes @ 0x08006F34) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- CPU_ReadMem(64 bytes @ 0x20008F00) -- Updating C cache (64 bytes @ 0x20008F00) -- Read from C cache (1 bytes @ 0x20008F31) -- Simulated returns 0x00 (0005ms, 2492ms total)
T2914 354:223 JLINK_ReadReg(R15 (PC)) returns 0x08006F36 (0000ms, 2492ms total)
T2914 354:223 JLINK_ReadReg(XPSR) returns 0x61000027 (0000ms, 2492ms total)
T2914 354:223 JLINK_ReadMemEx(0x08006F36, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F36) - Data: 31 7B returns 0x02 (0000ms, 2492ms total)
T2914 354:223 JLINK_ReadMemEx(0x08006F38, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006F38) - Data: 02 EB 01 21 88 42 04 D0 19 49 D1 F8 00 01 80 47 ... returns 0x3C (0000ms, 2492ms total)
T2914 354:223 JLINK_ReadMemEx(0x08006F38, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F38) - Data: 02 EB returns 0x02 (0000ms, 2492ms total)
T2914 354:223 JLINK_Step() -- Read from C cache (2 bytes @ 0x08006F36) -- Read from C cache (1 bytes @ 0x20008F30) -- Simulated returns 0x00 (0000ms, 2492ms total)
T2914 354:223 JLINK_ReadReg(R15 (PC)) returns 0x08006F38 (0000ms, 2492ms total)
T2914 354:223 JLINK_ReadReg(XPSR) returns 0x61000027 (0000ms, 2492ms total)
T2914 354:223 JLINK_ReadMemEx(0x08006F38, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006F38) - Data: 02 EB 01 21 88 42 04 D0 19 49 D1 F8 00 01 80 47 ... returns 0x3C (0000ms, 2492ms total)
T2914 354:223 JLINK_ReadMemEx(0x08006F38, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F38) - Data: 02 EB returns 0x02 (0000ms, 2492ms total)
T2914 354:223 JLINK_ReadMemEx(0x08006F3A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F3A) - Data: 01 21 returns 0x02 (0000ms, 2492ms total)
T2914 354:223 JLINK_Step() -- Read from C cache (2 bytes @ 0x08006F38) -- Read from C cache (2 bytes @ 0x08006F3A) -- Not simulated -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0001004) returns 0x00 (0013ms, 2505ms total)
T2914 354:236 JLINK_ReadReg(R15 (PC)) returns 0x08006F3C (0000ms, 2505ms total)
T2914 354:236 JLINK_ReadReg(XPSR) returns 0x61000027 (0000ms, 2505ms total)
T2914 354:236 JLINK_ReadMemEx(0x08006F3A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08006F00) -- Updating C cache (64 bytes @ 0x08006F00) -- Read from C cache (2 bytes @ 0x08006F3A) - Data: 01 21 returns 0x02 (0002ms, 2507ms total)
T2914 354:238 JLINK_ReadMemEx(0x08006F3C, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08006F40) -- Updating C cache (64 bytes @ 0x08006F40) -- Read from C cache (60 bytes @ 0x08006F3C) - Data: 88 42 04 D0 19 49 D1 F8 00 01 80 47 58 B9 0B 21 ... returns 0x3C (0002ms, 2509ms total)
T2914 354:240 JLINK_ReadMemEx(0x08006F3C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F3C) - Data: 88 42 returns 0x02 (0000ms, 2509ms total)
T2914 354:240 JLINK_ReadMemEx(0x08006F3C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006F3C) - Data: 88 42 04 D0 19 49 D1 F8 00 01 80 47 58 B9 0B 21 ... returns 0x3C (0000ms, 2509ms total)
T2914 354:240 JLINK_ReadMemEx(0x08006F3C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F3C) - Data: 88 42 returns 0x02 (0001ms, 2510ms total)
T2914 354:241 JLINK_ReadMemEx(0x08006F3E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F3E) - Data: 04 D0 returns 0x02 (0000ms, 2510ms total)
T2914 354:241 JLINK_Step() -- Read from C cache (2 bytes @ 0x08006F3C) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Simulated returns 0x00 (0002ms, 2512ms total)
T2914 354:243 JLINK_ReadReg(R15 (PC)) returns 0x08006F3E (0000ms, 2512ms total)
T2914 354:243 JLINK_ReadReg(XPSR) returns 0x81000027 (0000ms, 2512ms total)
T2914 354:243 JLINK_ReadMemEx(0x08006F3E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F3E) - Data: 04 D0 returns 0x02 (0000ms, 2512ms total)
T2914 354:243 JLINK_ReadMemEx(0x08006F40, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006F40) - Data: 19 49 D1 F8 00 01 80 47 58 B9 0B 21 04 EB C4 00 ... returns 0x3C (0000ms, 2512ms total)
T2914 354:243 JLINK_ReadMemEx(0x08006F40, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F40) - Data: 19 49 returns 0x02 (0000ms, 2512ms total)
T2914 354:243 JLINK_Step() -- Read from C cache (2 bytes @ 0x08006F3E) -- Simulated returns 0x00 (0000ms, 2512ms total)
T2914 354:243 JLINK_ReadReg(R15 (PC)) returns 0x08006F40 (0000ms, 2512ms total)
T2914 354:243 JLINK_ReadReg(XPSR) returns 0x81000027 (0000ms, 2512ms total)
T2914 354:243 JLINK_ReadMemEx(0x08006F40, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006F40) - Data: 19 49 D1 F8 00 01 80 47 58 B9 0B 21 04 EB C4 00 ... returns 0x3C (0000ms, 2512ms total)
T2914 354:244 JLINK_ReadMemEx(0x08006F40, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F40) - Data: 19 49 returns 0x02 (0000ms, 2513ms total)
T2914 354:244 JLINK_ReadMemEx(0x08006F42, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F42) - Data: D1 F8 returns 0x02 (0000ms, 2513ms total)
T2914 354:244 JLINK_Step() -- Read from C cache (2 bytes @ 0x08006F40) -- CPU_ReadMem(64 bytes @ 0x08006F80) -- Updating C cache (64 bytes @ 0x08006F80) -- Read from C cache (4 bytes @ 0x08006FA8) -- Simulated returns 0x00 (0002ms, 2515ms total)
T2914 354:246 JLINK_ReadReg(R15 (PC)) returns 0x08006F42 (0000ms, 2515ms total)
T2914 354:246 JLINK_ReadReg(XPSR) returns 0x81000027 (0000ms, 2515ms total)
T2914 354:246 JLINK_ReadMemEx(0x08006F42, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F42) - Data: D1 F8 returns 0x02 (0000ms, 2515ms total)
T2914 354:246 JLINK_ReadMemEx(0x08006F44, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006F44) - Data: 00 01 80 47 58 B9 0B 21 04 EB C4 00 00 EB 44 12 ... returns 0x3C (0000ms, 2515ms total)
T2914 354:246 JLINK_ReadMemEx(0x08006F44, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F44) - Data: 00 01 returns 0x02 (0000ms, 2515ms total)
T2914 354:246 JLINK_Step() -- Read from C cache (2 bytes @ 0x08006F42) -- Read from C cache (2 bytes @ 0x08006F44) -- Not simulated -- CPU_WriteMem(4 bytes @ 0xE0001004) returns 0x00 (0008ms, 2523ms total)
T2914 354:254 JLINK_ReadReg(R15 (PC)) returns 0x08006F46 (0000ms, 2523ms total)
T2914 354:254 JLINK_ReadReg(XPSR) returns 0x81000027 (0000ms, 2523ms total)
T2914 354:254 JLINK_ReadMemEx(0x08006F44, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08006F40) -- Updating C cache (64 bytes @ 0x08006F40) -- Read from C cache (60 bytes @ 0x08006F44) - Data: 00 01 80 47 58 B9 0B 21 04 EB C4 00 00 EB 44 12 ... returns 0x3C (0002ms, 2525ms total)
T2914 354:257 JLINK_ReadMemEx(0x08006F44, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F44) - Data: 00 01 returns 0x02 (0000ms, 2525ms total)
T2914 354:257 JLINK_ReadMemEx(0x08006F46, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F46) - Data: 80 47 returns 0x02 (0000ms, 2525ms total)
T2914 354:257 JLINK_ReadMemEx(0x08006F46, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F46) - Data: 80 47 returns 0x02 (0000ms, 2525ms total)
T2914 354:257 JLINK_ReadMemEx(0x08006F48, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08006F80) -- Updating C cache (64 bytes @ 0x08006F80) -- Read from C cache (60 bytes @ 0x08006F48) - Data: 58 B9 0B 21 04 EB C4 00 00 EB 44 12 13 48 10 44 ... returns 0x3C (0002ms, 2527ms total)
T2914 354:259 JLINK_ReadMemEx(0x08006F48, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F48) - Data: 58 B9 returns 0x02 (0000ms, 2527ms total)
T2914 354:259 JLINK_ReadReg(R0) returns 0x08007D81 (0000ms, 2527ms total)
T2914 354:259 JLINK_ReadReg(R1) returns 0x200003E8 (0000ms, 2527ms total)
T2914 354:259 JLINK_ReadReg(R2) returns 0x00000000 (0000ms, 2527ms total)
T2914 354:259 JLINK_ReadReg(R3) returns 0x20008F24 (0000ms, 2527ms total)
T2914 354:259 JLINK_ReadReg(R4) returns 0x00000000 (0000ms, 2527ms total)
T2914 354:259 JLINK_ReadReg(R5) returns 0x00000000 (0000ms, 2527ms total)
T2914 354:259 JLINK_ReadReg(R6) returns 0x20008F24 (0001ms, 2528ms total)
T2914 354:260 JLINK_ReadReg(R7) returns 0x00000004 (0000ms, 2528ms total)
T2914 354:260 JLINK_ReadReg(R8) returns 0x20008FB4 (0000ms, 2528ms total)
T2914 354:260 JLINK_ReadReg(R9) returns 0x20000134 (0000ms, 2528ms total)
T2914 354:260 JLINK_ReadReg(R10) returns 0x00000000 (0000ms, 2528ms total)
T2914 354:260 JLINK_ReadReg(R11) returns 0x00000000 (0000ms, 2528ms total)
T2914 354:260 JLINK_ReadReg(R12) returns 0x00000004 (0000ms, 2528ms total)
T2914 354:260 JLINK_ReadReg(R13 (SP)) returns 0x20008E90 (0000ms, 2528ms total)
T2914 354:260 JLINK_ReadReg(R14) returns 0x08006F35 (0000ms, 2528ms total)
T2914 354:260 JLINK_ReadReg(R15 (PC)) returns 0x08006F46 (0000ms, 2528ms total)
T2914 354:260 JLINK_ReadReg(XPSR) returns 0x81000027 (0000ms, 2528ms total)
T2914 354:260 JLINK_ReadReg(MSP) returns 0x20008E90 (0000ms, 2528ms total)
T2914 354:260 JLINK_ReadReg(PSP) returns 0x20001000 (0000ms, 2528ms total)
T2914 354:260 JLINK_ReadReg(CFBP) returns 0x00000001 (0000ms, 2528ms total)
T2914 354:260 JLINK_ReadReg(FPSCR) returns 0x00000000 (0006ms, 2534ms total)
T2914 354:266 JLINK_ReadReg(FPS0) returns 0xFB068412 (0001ms, 2535ms total)
T2914 354:267 JLINK_ReadReg(FPS1) returns 0x10110C5A (0000ms, 2535ms total)
T2914 354:267 JLINK_ReadReg(FPS2) returns 0x04341E1B (0000ms, 2535ms total)
T2914 354:267 JLINK_ReadReg(FPS3) returns 0x80412402 (0000ms, 2535ms total)
T2914 354:267 JLINK_ReadReg(FPS4) returns 0x18248A00 (0000ms, 2535ms total)
T2914 354:267 JLINK_ReadReg(FPS5) returns 0x20102094 (0000ms, 2535ms total)
T2914 354:267 JLINK_ReadReg(FPS6) returns 0x82C0846D (0000ms, 2535ms total)
T2914 354:267 JLINK_ReadReg(FPS7) returns 0x08A02089 (0000ms, 2535ms total)
T2914 354:267 JLINK_ReadReg(FPS8) returns 0x05488443 (0000ms, 2535ms total)
T2914 354:267 JLINK_ReadReg(FPS9) returns 0xF372B940 (0000ms, 2535ms total)
T2914 354:267 JLINK_ReadReg(FPS10) returns 0x11B25004 (0000ms, 2535ms total)
T2914 354:267 JLINK_ReadReg(FPS11) returns 0x00024120 (0000ms, 2535ms total)
T2914 354:267 JLINK_ReadReg(FPS12) returns 0x023C5609 (0000ms, 2535ms total)
T2914 354:267 JLINK_ReadReg(FPS13) returns 0x8600710B (0000ms, 2535ms total)
T2914 354:267 JLINK_ReadReg(FPS14) returns 0xA03D9BF0 (0000ms, 2535ms total)
T2914 354:267 JLINK_ReadReg(FPS15) returns 0x5812A440 (0000ms, 2535ms total)
T2914 354:267 JLINK_ReadReg(FPS16) returns 0x15918209 (0000ms, 2535ms total)
T2914 354:267 JLINK_ReadReg(FPS17) returns 0xD015225C (0000ms, 2535ms total)
T2914 354:267 JLINK_ReadReg(FPS18) returns 0x0C0013B7 (0000ms, 2535ms total)
T2914 354:267 JLINK_ReadReg(FPS19) returns 0x1C58D420 (0000ms, 2535ms total)
T2914 354:267 JLINK_ReadReg(FPS20) returns 0xA4974081 (0000ms, 2535ms total)
T2914 354:267 JLINK_ReadReg(FPS21) returns 0x108D0118 (0000ms, 2535ms total)
T2914 354:267 JLINK_ReadReg(FPS22) returns 0x9044A200 (0000ms, 2535ms total)
T2914 354:267 JLINK_ReadReg(FPS23) returns 0x781049E0 (0001ms, 2536ms total)
T2914 354:268 JLINK_ReadReg(FPS24) returns 0x1C330E11 (0000ms, 2536ms total)
T2914 354:268 JLINK_ReadReg(FPS25) returns 0xC604704C (0000ms, 2536ms total)
T2914 354:268 JLINK_ReadReg(FPS26) returns 0x2C70E395 (0000ms, 2536ms total)
T2914 354:268 JLINK_ReadReg(FPS27) returns 0x8012365D (0000ms, 2536ms total)
T2914 354:268 JLINK_ReadReg(FPS28) returns 0x028512B3 (0000ms, 2536ms total)
T2914 354:268 JLINK_ReadReg(FPS29) returns 0x321C1711 (0000ms, 2536ms total)
T2914 354:268 JLINK_ReadReg(FPS30) returns 0x40000912 (0000ms, 2536ms total)
T2914 354:268 JLINK_ReadReg(FPS31) returns 0x11A67042 (0000ms, 2536ms total)
T2914 354:268 JLINK_SetBPEx(Addr = 0x08006F48, Type = 0xFFFFFFF2) returns 0x00000005 (0000ms, 2536ms total)
T2914 354:268 JLINK_SetBPEx(Addr = 0x08006F2C, Type = 0xFFFFFFF2) returns 0x00000006 (0000ms, 2536ms total)
T2914 354:268 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) (0007ms, 2543ms total)
T2914 354:375 JLINK_IsHalted() returns TRUE (0006ms, 2549ms total)
T2914 354:381 JLINK_Halt() returns 0x00 (0000ms, 2543ms total)
T2914 354:381 JLINK_IsHalted() returns TRUE (0001ms, 2544ms total)
T2914 354:382 JLINK_IsHalted() returns TRUE (0000ms, 2543ms total)
T2914 354:382 JLINK_IsHalted() returns TRUE (0000ms, 2543ms total)
T2914 354:382 JLINK_ReadReg(R15 (PC)) returns 0x08006F48 (0000ms, 2543ms total)
T2914 354:382 JLINK_ReadReg(XPSR) returns 0x81000027 (0000ms, 2543ms total)
T2914 354:382 JLINK_ClrBPEx(BPHandle = 0x00000005) returns 0x00 (0000ms, 2543ms total)
T2914 354:382 JLINK_ClrBPEx(BPHandle = 0x00000006) returns 0x00 (0000ms, 2543ms total)
T2914 354:382 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 02 00 00 00 returns 1 (0002ms, 2545ms total)
T2914 354:384 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00 returns 1 (0003ms, 2548ms total)
T2914 354:387 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 02 00 00 returns 1 (0002ms, 2550ms total)
T2914 354:389 JLINK_ReadMemU32(0xE0001048, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001048) - Data: 00 00 00 00 returns 1 (0002ms, 2552ms total)
T2914 354:392 JLINK_ReadMemU32(0xE0001058, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001058) - Data: 00 00 00 00 returns 1 (0002ms, 2554ms total)
T2914 354:394 JLINK_ReadMemEx(0x08006F48, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x08006F40) -- Updating C cache (128 bytes @ 0x08006F40) -- Read from C cache (60 bytes @ 0x08006F48) - Data: 58 B9 0B 21 04 EB C4 00 00 EB 44 12 13 48 10 44 ... returns 0x3C (0002ms, 2556ms total)
T2914 354:396 JLINK_ReadMemEx(0x08006F48, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F48) - Data: 58 B9 returns 0x02 (0000ms, 2556ms total)
T2914 354:396 JLINK_ReadMemEx(0x08006F4A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F4A) - Data: 0B 21 returns 0x02 (0000ms, 2556ms total)
T2914 354:396 JLINK_Step() -- Read from C cache (2 bytes @ 0x08006F48) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Simulated returns 0x00 (0003ms, 2559ms total)
T2914 354:399 JLINK_ReadReg(R15 (PC)) returns 0x08006F4A (0000ms, 2559ms total)
T2914 354:399 JLINK_ReadReg(XPSR) returns 0x81000027 (0000ms, 2559ms total)
T2914 354:399 JLINK_ReadReg(R0) returns 0x00000000 (0000ms, 2559ms total)
T2914 354:399 JLINK_ReadReg(R1) returns 0x200003E8 (0000ms, 2559ms total)
T2914 354:399 JLINK_ReadReg(R2) returns 0x00000000 (0001ms, 2560ms total)
T2914 354:400 JLINK_ReadReg(R3) returns 0x20008F24 (0000ms, 2560ms total)
T2914 354:400 JLINK_ReadReg(R4) returns 0x00000000 (0000ms, 2560ms total)
T2914 354:400 JLINK_ReadReg(R5) returns 0x00000000 (0000ms, 2560ms total)
T2914 354:400 JLINK_ReadReg(R6) returns 0x20008F24 (0000ms, 2560ms total)
T2914 354:400 JLINK_ReadReg(R7) returns 0x00000004 (0000ms, 2560ms total)
T2914 354:400 JLINK_ReadReg(R8) returns 0x20008FB4 (0000ms, 2560ms total)
T2914 354:400 JLINK_ReadReg(R9) returns 0x20000134 (0000ms, 2560ms total)
T2914 354:400 JLINK_ReadReg(R10) returns 0x00000000 (0000ms, 2560ms total)
T2914 354:400 JLINK_ReadReg(R11) returns 0x00000000 (0000ms, 2560ms total)
T2914 354:400 JLINK_ReadReg(R12) returns 0x00000004 (0000ms, 2560ms total)
T2914 354:400 JLINK_ReadReg(R13 (SP)) returns 0x20008E90 (0000ms, 2560ms total)
T2914 354:400 JLINK_ReadReg(R14) returns 0x08006F49 (0000ms, 2560ms total)
T2914 354:400 JLINK_ReadReg(R15 (PC)) returns 0x08006F4A (0000ms, 2560ms total)
T2914 354:400 JLINK_ReadReg(XPSR) returns 0x81000027 (0000ms, 2560ms total)
T2914 354:400 JLINK_ReadReg(MSP) returns 0x20008E90 (0000ms, 2560ms total)
T2914 354:400 JLINK_ReadReg(PSP) returns 0x20001000 (0000ms, 2560ms total)
T2914 354:400 JLINK_ReadReg(CFBP) returns 0x00000001 (0000ms, 2560ms total)
T2914 354:400 JLINK_ReadReg(FPSCR) returns 0x00000000 (0006ms, 2566ms total)
T2914 354:407 JLINK_ReadReg(FPS0) returns 0xFB068412 (0000ms, 2566ms total)
T2914 354:407 JLINK_ReadReg(FPS1) returns 0x10110C5A (0000ms, 2566ms total)
T2914 354:407 JLINK_ReadReg(FPS2) returns 0x04341E1B (0000ms, 2566ms total)
T2914 354:407 JLINK_ReadReg(FPS3) returns 0x80412402 (0000ms, 2566ms total)
T2914 354:407 JLINK_ReadReg(FPS4) returns 0x18248A00 (0000ms, 2566ms total)
T2914 354:407 JLINK_ReadReg(FPS5) returns 0x20102094 (0000ms, 2566ms total)
T2914 354:407 JLINK_ReadReg(FPS6) returns 0x82C0846D (0000ms, 2566ms total)
T2914 354:407 JLINK_ReadReg(FPS7) returns 0x08A02089 (0000ms, 2566ms total)
T2914 354:407 JLINK_ReadReg(FPS8) returns 0x05488443 (0000ms, 2566ms total)
T2914 354:407 JLINK_ReadReg(FPS9) returns 0xF372B940 (0000ms, 2566ms total)
T2914 354:407 JLINK_ReadReg(FPS10) returns 0x11B25004 (0000ms, 2566ms total)
T2914 354:407 JLINK_ReadReg(FPS11) returns 0x00024120 (0000ms, 2566ms total)
T2914 354:407 JLINK_ReadReg(FPS12) returns 0x023C5609 (0000ms, 2566ms total)
T2914 354:407 JLINK_ReadReg(FPS13) returns 0x8600710B (0000ms, 2566ms total)
T2914 354:407 JLINK_ReadReg(FPS14) returns 0xA03D9BF0 (0000ms, 2566ms total)
T2914 354:407 JLINK_ReadReg(FPS15) returns 0x5812A440 (0001ms, 2567ms total)
T2914 354:408 JLINK_ReadReg(FPS16) returns 0x15918209 (0000ms, 2567ms total)
T2914 354:408 JLINK_ReadReg(FPS17) returns 0xD015225C (0000ms, 2567ms total)
T2914 354:408 JLINK_ReadReg(FPS18) returns 0x0C0013B7 (0000ms, 2567ms total)
T2914 354:408 JLINK_ReadReg(FPS19) returns 0x1C58D420 (0000ms, 2567ms total)
T2914 354:408 JLINK_ReadReg(FPS20) returns 0xA4974081 (0000ms, 2567ms total)
T2914 354:408 JLINK_ReadReg(FPS21) returns 0x108D0118 (0000ms, 2567ms total)
T2914 354:408 JLINK_ReadReg(FPS22) returns 0x9044A200 (0000ms, 2567ms total)
T2914 354:408 JLINK_ReadReg(FPS23) returns 0x781049E0 (0000ms, 2567ms total)
T2914 354:408 JLINK_ReadReg(FPS24) returns 0x1C330E11 (0000ms, 2567ms total)
T2914 354:408 JLINK_ReadReg(FPS25) returns 0xC604704C (0000ms, 2567ms total)
T2914 354:408 JLINK_ReadReg(FPS26) returns 0x2C70E395 (0000ms, 2567ms total)
T2914 354:408 JLINK_ReadReg(FPS27) returns 0x8012365D (0000ms, 2567ms total)
T2914 354:408 JLINK_ReadReg(FPS28) returns 0x028512B3 (0000ms, 2567ms total)
T2914 354:408 JLINK_ReadReg(FPS29) returns 0x321C1711 (0000ms, 2567ms total)
T2914 354:408 JLINK_ReadReg(FPS30) returns 0x40000912 (0000ms, 2567ms total)
T2914 354:408 JLINK_ReadReg(FPS31) returns 0x11A67042 (0000ms, 2567ms total)
T29C8 354:409 JLINK_ReadMemEx(0x20008EA4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20008E80) -- Updating C cache (64 bytes @ 0x20008E80) -- Read from C cache (4 bytes @ 0x20008EA4) - Data: BD 6C 00 08 returns 0x04 (0002ms, 2569ms total)
T29C8 354:412 JLINK_ReadMemEx(0x20008E90, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008E90) - Data: 21 8F 00 20 returns 0x04 (0000ms, 2569ms total)
T29C8 354:412 JLINK_ReadMemEx(0x20008E94, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008E94) - Data: 10 00 00 00 returns 0x04 (0000ms, 2569ms total)
T29C8 354:412 JLINK_ReadMemEx(0x20008E98, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008E98) - Data: 15 00 00 00 returns 0x04 (0000ms, 2569ms total)
T29C8 354:412 JLINK_ReadMemEx(0x20008E9C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008E9C) - Data: 00 00 00 00 returns 0x04 (0000ms, 2569ms total)
T29C8 354:412 JLINK_ReadMemEx(0x20008EA0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008EA0) - Data: B4 8F 00 20 returns 0x04 (0000ms, 2569ms total)
T29C8 354:412 JLINK_ReadMemEx(0x20008EA4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008EA4) - Data: BD 6C 00 08 returns 0x04 (0000ms, 2569ms total)
T29C8 354:412 JLINK_ReadMemEx(0x20008EFC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20008EC0) -- Updating C cache (64 bytes @ 0x20008EC0) -- Read from C cache (4 bytes @ 0x20008EFC) - Data: 5B 71 00 08 returns 0x04 (0002ms, 2571ms total)
T29C8 354:414 JLINK_ReadMemEx(0x20008EEC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008EEC) - Data: 21 8F 00 20 returns 0x04 (0000ms, 2571ms total)
T29C8 354:414 JLINK_ReadMemEx(0x20008EF0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008EF0) - Data: 5B AB 00 00 returns 0x04 (0001ms, 2572ms total)
T29C8 354:415 JLINK_ReadMemEx(0x20008EF4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008EF4) - Data: 20 8F 00 20 returns 0x04 (0000ms, 2572ms total)
T29C8 354:415 JLINK_ReadMemEx(0x20008EF8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008EF8) - Data: 00 00 00 00 returns 0x04 (0000ms, 2572ms total)
T29C8 354:415 JLINK_ReadMemEx(0x20008EFC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008EFC) - Data: 5B 71 00 08 returns 0x04 (0000ms, 2572ms total)
T29C8 354:415 JLINK_ReadMemEx(0x20008F14, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20008F00) -- Updating C cache (64 bytes @ 0x20008F00) -- Read from C cache (4 bytes @ 0x20008F14) - Data: CF 71 00 08 returns 0x04 (0002ms, 2574ms total)
T29C8 354:417 JLINK_ReadMemEx(0x20008F00, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F00) - Data: 20 8F 00 20 returns 0x04 (0000ms, 2574ms total)
T29C8 354:417 JLINK_ReadMemEx(0x20008F04, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F04) - Data: 40 00 00 00 returns 0x04 (0000ms, 2574ms total)
T29C8 354:417 JLINK_ReadMemEx(0x20008F08, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F08) - Data: 00 00 00 00 returns 0x04 (0001ms, 2575ms total)
T29C8 354:418 JLINK_ReadMemEx(0x20008F0C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F0C) - Data: 0A 00 00 00 returns 0x04 (0000ms, 2575ms total)
T29C8 354:418 JLINK_ReadMemEx(0x20008F10, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F10) - Data: B4 8F 00 20 returns 0x04 (0000ms, 2575ms total)
T29C8 354:418 JLINK_ReadMemEx(0x20008F14, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F14) - Data: CF 71 00 08 returns 0x04 (0000ms, 2575ms total)
T29C8 354:418 JLINK_ReadMemEx(0x20008F1C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F1C) - Data: 57 8F 00 08 returns 0x04 (0000ms, 2575ms total)
T29C8 354:418 JLINK_ReadMemEx(0x20008F18, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F18) - Data: 03 00 00 00 returns 0x04 (0000ms, 2575ms total)
T29C8 354:418 JLINK_ReadMemEx(0x20008F1C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F1C) - Data: 57 8F 00 08 returns 0x04 (0000ms, 2575ms total)
T29C8 354:418 JLINK_ReadMemEx(0x20008F6C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20008F40) -- Updating C cache (64 bytes @ 0x20008F40) -- Read from C cache (4 bytes @ 0x20008F6C) - Data: E7 11 00 08 returns 0x04 (0002ms, 2577ms total)
T29C8 354:420 JLINK_ReadMemEx(0x20008F64, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F64) - Data: 38 21 00 20 returns 0x04 (0001ms, 2578ms total)
T29C8 354:421 JLINK_ReadMemEx(0x20008F68, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F68) - Data: 40 00 00 00 returns 0x04 (0000ms, 2578ms total)
T29C8 354:421 JLINK_ReadMemEx(0x20008F6C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F6C) - Data: E7 11 00 08 returns 0x04 (0000ms, 2578ms total)
T29C8 354:421 JLINK_ReadMemEx(0x20008F74, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F74) - Data: F9 FF FF FF returns 0x04 (0000ms, 2578ms total)
T29C8 354:421 JLINK_ReadMemEx(0x20008F90, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20008F80) -- Updating C cache (64 bytes @ 0x20008F80) -- Read from C cache (4 bytes @ 0x20008F90) - Data: AA 88 00 08 returns 0x04 (0002ms, 2580ms total)
T29C8 354:423 JLINK_ReadMemEx(0x20008F94, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F94) - Data: 00 00 00 61 returns 0x04 (0000ms, 2580ms total)
T29C8 354:423 JLINK_ReadMemEx(0x20008F8C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F8C) - Data: AB 88 00 08 returns 0x04 (0000ms, 2580ms total)
T29C8 354:423 JLINK_ReadMemEx(0xE000ED28, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0xE000ED28) - Data: 00 00 00 00 returns 0x04 (0002ms, 2582ms total)
T29C8 354:426 JLINK_ReadMemEx(0x20008F90, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F90) - Data: AA 88 00 08 returns 0x04 (0000ms, 2582ms total)
T29C8 354:426 JLINK_ReadMemEx(0x20008F94, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F94) - Data: 00 00 00 61 returns 0x04 (0000ms, 2582ms total)
T29C8 354:426 JLINK_ReadMemEx(0x20008FAC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FAC) - Data: 4F 72 00 08 returns 0x04 (0000ms, 2582ms total)
T29C8 354:426 JLINK_ReadMemEx(0x20008F98, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F98) - Data: 84 D1 00 08 returns 0x04 (0000ms, 2582ms total)
T29C8 354:426 JLINK_ReadMemEx(0x20008F9C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F9C) - Data: 84 D1 00 08 returns 0x04 (0000ms, 2582ms total)
T29C8 354:426 JLINK_ReadMemEx(0x20008FA0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FA0) - Data: 00 00 00 00 returns 0x04 (0000ms, 2582ms total)
T29C8 354:426 JLINK_ReadMemEx(0x20008FA4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FA4) - Data: 00 00 00 00 returns 0x04 (0000ms, 2582ms total)
T29C8 354:426 JLINK_ReadMemEx(0x20008FA8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FA8) - Data: 00 00 00 00 returns 0x04 (0000ms, 2582ms total)
T29C8 354:426 JLINK_ReadMemEx(0x20008FAC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FAC) - Data: 4F 72 00 08 returns 0x04 (0000ms, 2582ms total)
T29C8 354:426 JLINK_ReadMemEx(0x20008FFC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20008FC0) -- Updating C cache (64 bytes @ 0x20008FC0) -- Read from C cache (4 bytes @ 0x20008FFC) - Data: EF 4A 00 08 returns 0x04 (0002ms, 2584ms total)
T29C8 354:429 JLINK_ReadMemEx(0x20008FF8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FF8) - Data: 84 D1 00 08 returns 0x04 (0000ms, 2584ms total)
T29C8 354:429 JLINK_ReadMemEx(0x20008FFC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FFC) - Data: EF 4A 00 08 returns 0x04 (0000ms, 2584ms total)
T29C8 354:429 JLINK_ReadMemEx(0x20009004, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20009000) -- Updating C cache (64 bytes @ 0x20009000) -- Read from C cache (4 bytes @ 0x20009004) - Data: C1 75 00 08 returns 0x04 (0002ms, 2586ms total)
T29C8 354:431 JLINK_ReadMemEx(0x20009000, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20009000) - Data: 84 D1 00 08 returns 0x04 (0000ms, 2586ms total)
T29C8 354:431 JLINK_ReadMemEx(0x20009004, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20009004) - Data: C1 75 00 08 returns 0x04 (0000ms, 2586ms total)
T29C8 354:431 JLINK_ReadMemEx(0x20008F24, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x20008F24) - Data: 6F 06 C7 55 00 01 43 00 00 02 0A 3E 01 00 01 00 ... returns 0x20 (0000ms, 2586ms total)
T29C8 354:432 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000500) -- Updating C cache (64 bytes @ 0x20000500) -- Read from C cache (1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0002ms, 2588ms total)
T2914 356:127 JLINK_ReadMemEx(0x08006F4A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F4A) - Data: 0B 21 returns 0x02 (0000ms, 2588ms total)
T2914 356:127 JLINK_ReadMemEx(0x08006F4C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006F4C) - Data: 04 EB C4 00 00 EB 44 12 13 48 10 44 40 1C 00 EB ... returns 0x3C (0000ms, 2588ms total)
T2914 356:127 JLINK_ReadMemEx(0x08006F4C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F4C) - Data: 04 EB returns 0x02 (0001ms, 2589ms total)
T2914 356:128 JLINK_ReadMemEx(0x08006F4A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F4A) - Data: 0B 21 returns 0x02 (0000ms, 2589ms total)
T2914 356:128 JLINK_Step() -- Read from C cache (2 bytes @ 0x08006F4A) -- Simulated returns 0x00 (0002ms, 2591ms total)
T2914 356:130 JLINK_ReadReg(R15 (PC)) returns 0x08006F4C (0000ms, 2591ms total)
T2914 356:130 JLINK_ReadReg(XPSR) returns 0x01000027 (0000ms, 2591ms total)
T2914 356:130 JLINK_ReadMemEx(0x08006F4C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006F4C) - Data: 04 EB C4 00 00 EB 44 12 13 48 10 44 40 1C 00 EB ... returns 0x3C (0001ms, 2592ms total)
T2914 356:131 JLINK_ReadMemEx(0x08006F4C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F4C) - Data: 04 EB returns 0x02 (0000ms, 2592ms total)
T2914 356:131 JLINK_ReadMemEx(0x08006F4E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F4E) - Data: C4 00 returns 0x02 (0000ms, 2592ms total)
T2914 356:131 JLINK_Step() -- Read from C cache (2 bytes @ 0x08006F4C) -- Read from C cache (2 bytes @ 0x08006F4E) -- Not simulated -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0001004) returns 0x00 (0012ms, 2604ms total)
T2914 356:143 JLINK_ReadReg(R15 (PC)) returns 0x08006F50 (0000ms, 2604ms total)
T2914 356:143 JLINK_ReadReg(XPSR) returns 0x01000027 (0000ms, 2604ms total)
T2914 356:143 JLINK_ReadMemEx(0x08006F4E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08006F40) -- Updating C cache (64 bytes @ 0x08006F40) -- Read from C cache (2 bytes @ 0x08006F4E) - Data: C4 00 returns 0x02 (0002ms, 2606ms total)
T2914 356:146 JLINK_ReadMemEx(0x08006F50, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08006F80) -- Updating C cache (64 bytes @ 0x08006F80) -- Read from C cache (60 bytes @ 0x08006F50) - Data: 00 EB 44 12 13 48 10 44 40 1C 00 EB 85 00 01 71 ... returns 0x3C (0002ms, 2608ms total)
T2914 356:148 JLINK_ReadMemEx(0x08006F50, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F50) - Data: 00 EB returns 0x02 (0000ms, 2608ms total)
T2914 356:148 JLINK_ReadMemEx(0x08006F50, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006F50) - Data: 00 EB 44 12 13 48 10 44 40 1C 00 EB 85 00 01 71 ... returns 0x3C (0000ms, 2608ms total)
T2914 356:148 JLINK_ReadMemEx(0x08006F50, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F50) - Data: 00 EB returns 0x02 (0000ms, 2608ms total)
T2914 356:148 JLINK_ReadMemEx(0x08006F52, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F52) - Data: 44 12 returns 0x02 (0000ms, 2608ms total)
T2914 356:148 JLINK_Step() -- Read from C cache (2 bytes @ 0x08006F50) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Read from C cache (2 bytes @ 0x08006F52) -- Not simulated returns 0x00 (0008ms, 2616ms total)
T2914 356:156 JLINK_ReadReg(R15 (PC)) returns 0x08006F54 (0000ms, 2616ms total)
T2914 356:156 JLINK_ReadReg(XPSR) returns 0x01000027 (0001ms, 2617ms total)
T2914 356:157 JLINK_ReadMemEx(0x08006F52, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08006F40) -- Updating C cache (64 bytes @ 0x08006F40) -- Read from C cache (2 bytes @ 0x08006F52) - Data: 44 12 returns 0x02 (0002ms, 2619ms total)
T2914 356:159 JLINK_ReadMemEx(0x08006F54, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08006F80) -- Updating C cache (64 bytes @ 0x08006F80) -- Read from C cache (60 bytes @ 0x08006F54) - Data: 13 48 10 44 40 1C 00 EB 85 00 01 71 0A E0 0A 21 ... returns 0x3C (0002ms, 2621ms total)
T2914 356:161 JLINK_ReadMemEx(0x08006F54, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F54) - Data: 13 48 returns 0x02 (0000ms, 2621ms total)
T2914 356:161 JLINK_ReadMemEx(0x08006F54, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006F54) - Data: 13 48 10 44 40 1C 00 EB 85 00 01 71 0A E0 0A 21 ... returns 0x3C (0000ms, 2621ms total)
T2914 356:161 JLINK_ReadMemEx(0x08006F54, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F54) - Data: 13 48 returns 0x02 (0000ms, 2621ms total)
T2914 356:161 JLINK_ReadMemEx(0x08006F56, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F56) - Data: 10 44 returns 0x02 (0000ms, 2621ms total)
T2914 356:161 JLINK_Step() -- Read from C cache (2 bytes @ 0x08006F54) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Read from C cache (4 bytes @ 0x08006FA4) -- Simulated returns 0x00 (0003ms, 2624ms total)
T2914 356:164 JLINK_ReadReg(R15 (PC)) returns 0x08006F56 (0000ms, 2624ms total)
T2914 356:164 JLINK_ReadReg(XPSR) returns 0x01000027 (0000ms, 2624ms total)
T2914 356:164 JLINK_ReadMemEx(0x08006F56, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F56) - Data: 10 44 returns 0x02 (0000ms, 2624ms total)
T2914 356:164 JLINK_ReadMemEx(0x08006F58, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006F58) - Data: 40 1C 00 EB 85 00 01 71 0A E0 0A 21 04 EB C4 00 ... returns 0x3C (0000ms, 2624ms total)
T2914 356:164 JLINK_ReadMemEx(0x08006F58, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F58) - Data: 40 1C returns 0x02 (0000ms, 2624ms total)
T2914 356:164 JLINK_Step() -- Read from C cache (2 bytes @ 0x08006F56) -- Simulated returns 0x00 (0000ms, 2624ms total)
T2914 356:164 JLINK_ReadReg(R15 (PC)) returns 0x08006F58 (0000ms, 2624ms total)
T2914 356:164 JLINK_ReadReg(XPSR) returns 0x01000027 (0000ms, 2624ms total)
T2914 356:164 JLINK_ReadMemEx(0x08006F58, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006F58) - Data: 40 1C 00 EB 85 00 01 71 0A E0 0A 21 04 EB C4 00 ... returns 0x3C (0000ms, 2624ms total)
T2914 356:165 JLINK_ReadMemEx(0x08006F58, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F58) - Data: 40 1C returns 0x02 (0000ms, 2625ms total)
T2914 356:165 JLINK_ReadMemEx(0x08006F5A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F5A) - Data: 00 EB returns 0x02 (0000ms, 2625ms total)
T2914 356:165 JLINK_Step() -- Read from C cache (2 bytes @ 0x08006F58) -- Simulated returns 0x00 (0000ms, 2625ms total)
T2914 356:165 JLINK_ReadReg(R15 (PC)) returns 0x08006F5A (0000ms, 2625ms total)
T2914 356:165 JLINK_ReadReg(XPSR) returns 0x01000027 (0000ms, 2625ms total)
T2914 356:165 JLINK_ReadMemEx(0x08006F5A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F5A) - Data: 00 EB returns 0x02 (0000ms, 2625ms total)
T2914 356:165 JLINK_ReadMemEx(0x08006F5C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006F5C) - Data: 85 00 01 71 0A E0 0A 21 04 EB C4 00 00 EB 44 12 ... returns 0x3C (0000ms, 2625ms total)
T2914 356:165 JLINK_ReadMemEx(0x08006F5C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F5C) - Data: 85 00 returns 0x02 (0000ms, 2625ms total)
T2914 356:165 JLINK_Step() -- Read from C cache (2 bytes @ 0x08006F5A) -- Read from C cache (2 bytes @ 0x08006F5C) -- Not simulated -- CPU_WriteMem(4 bytes @ 0xE0001004) returns 0x00 (0009ms, 2634ms total)
T2914 356:174 JLINK_ReadReg(R15 (PC)) returns 0x08006F5E (0000ms, 2634ms total)
T2914 356:174 JLINK_ReadReg(XPSR) returns 0x01000027 (0000ms, 2634ms total)
T2914 356:174 JLINK_ReadMemEx(0x08006F5C, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x08006F40) -- Updating C cache (128 bytes @ 0x08006F40) -- Read from C cache (60 bytes @ 0x08006F5C) - Data: 85 00 01 71 0A E0 0A 21 04 EB C4 00 00 EB 44 12 ... returns 0x3C (0002ms, 2636ms total)
T2914 356:177 JLINK_ReadMemEx(0x08006F5C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F5C) - Data: 85 00 returns 0x02 (0000ms, 2636ms total)
T2914 356:177 JLINK_ReadMemEx(0x08006F5E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F5E) - Data: 01 71 returns 0x02 (0000ms, 2636ms total)
T2914 356:177 JLINK_ReadMemEx(0x08006F5E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F5E) - Data: 01 71 returns 0x02 (0000ms, 2636ms total)
T2914 356:177 JLINK_ReadMemEx(0x08006F60, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006F60) - Data: 0A E0 0A 21 04 EB C4 00 00 EB 44 12 0D 48 10 44 ... returns 0x3C (0000ms, 2636ms total)
T2914 356:177 JLINK_ReadMemEx(0x08006F60, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F60) - Data: 0A E0 returns 0x02 (0000ms, 2636ms total)
T2914 356:177 JLINK_Step() -- Read from C cache (2 bytes @ 0x08006F5E) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- CPU_WriteMem(1 bytes @ 0x20002079) -- Simulated returns 0x00 (0003ms, 2639ms total)
T2914 356:180 JLINK_ReadReg(R15 (PC)) returns 0x08006F60 (0000ms, 2639ms total)
T2914 356:180 JLINK_ReadReg(XPSR) returns 0x01000027 (0000ms, 2639ms total)
T2914 356:180 JLINK_ReadMemEx(0x08006F60, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006F60) - Data: 0A E0 0A 21 04 EB C4 00 00 EB 44 12 0D 48 10 44 ... returns 0x3C (0000ms, 2639ms total)
T2914 356:180 JLINK_ReadMemEx(0x08006F60, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F60) - Data: 0A E0 returns 0x02 (0001ms, 2640ms total)
T2914 356:181 JLINK_ReadMemEx(0x08006F62, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F62) - Data: 0A 21 returns 0x02 (0000ms, 2640ms total)
T2914 356:181 JLINK_Step() -- Read from C cache (2 bytes @ 0x08006F60) -- Simulated returns 0x00 (0000ms, 2640ms total)
T2914 356:181 JLINK_ReadReg(R15 (PC)) returns 0x08006F78 (0000ms, 2640ms total)
T2914 356:181 JLINK_ReadReg(XPSR) returns 0x01000027 (0000ms, 2640ms total)
T2914 356:182 JLINK_ReadReg(R0) returns 0x20002075 (0000ms, 2640ms total)
T2914 356:182 JLINK_ReadReg(R1) returns 0x0000000B (0000ms, 2640ms total)
T2914 356:182 JLINK_ReadReg(R2) returns 0x00000000 (0001ms, 2641ms total)
T2914 356:183 JLINK_ReadReg(R3) returns 0x20008F24 (0000ms, 2641ms total)
T2914 356:183 JLINK_ReadReg(R4) returns 0x00000000 (0000ms, 2641ms total)
T2914 356:183 JLINK_ReadReg(R5) returns 0x00000000 (0000ms, 2641ms total)
T2914 356:183 JLINK_ReadReg(R6) returns 0x20008F24 (0000ms, 2641ms total)
T2914 356:183 JLINK_ReadReg(R7) returns 0x00000004 (0000ms, 2641ms total)
T2914 356:183 JLINK_ReadReg(R8) returns 0x20008FB4 (0000ms, 2641ms total)
T2914 356:183 JLINK_ReadReg(R9) returns 0x20000134 (0000ms, 2641ms total)
T2914 356:183 JLINK_ReadReg(R10) returns 0x00000000 (0000ms, 2641ms total)
T2914 356:183 JLINK_ReadReg(R11) returns 0x00000000 (0000ms, 2641ms total)
T2914 356:183 JLINK_ReadReg(R12) returns 0x00000004 (0000ms, 2641ms total)
T2914 356:183 JLINK_ReadReg(R13 (SP)) returns 0x20008E90 (0000ms, 2641ms total)
T2914 356:183 JLINK_ReadReg(R14) returns 0x08006F49 (0000ms, 2641ms total)
T2914 356:183 JLINK_ReadReg(R15 (PC)) returns 0x08006F78 (0000ms, 2641ms total)
T2914 356:183 JLINK_ReadReg(XPSR) returns 0x01000027 (0000ms, 2641ms total)
T2914 356:183 JLINK_ReadReg(MSP) returns 0x20008E90 (0000ms, 2641ms total)
T2914 356:183 JLINK_ReadReg(PSP) returns 0x20001000 (0000ms, 2641ms total)
T2914 356:183 JLINK_ReadReg(CFBP) returns 0x00000001 (0001ms, 2642ms total)
T2914 356:184 JLINK_ReadReg(FPSCR) returns 0x00000000 (0006ms, 2648ms total)
T2914 356:190 JLINK_ReadReg(FPS0) returns 0xFB068412 (0000ms, 2648ms total)
T2914 356:190 JLINK_ReadReg(FPS1) returns 0x10110C5A (0000ms, 2648ms total)
T2914 356:190 JLINK_ReadReg(FPS2) returns 0x04341E1B (0000ms, 2648ms total)
T2914 356:190 JLINK_ReadReg(FPS3) returns 0x80412402 (0000ms, 2648ms total)
T2914 356:190 JLINK_ReadReg(FPS4) returns 0x18248A00 (0000ms, 2648ms total)
T2914 356:190 JLINK_ReadReg(FPS5) returns 0x20102094 (0000ms, 2648ms total)
T2914 356:190 JLINK_ReadReg(FPS6) returns 0x82C0846D (0000ms, 2648ms total)
T2914 356:190 JLINK_ReadReg(FPS7) returns 0x08A02089 (0000ms, 2648ms total)
T2914 356:190 JLINK_ReadReg(FPS8) returns 0x05488443 (0000ms, 2648ms total)
T2914 356:190 JLINK_ReadReg(FPS9) returns 0xF372B940 (0000ms, 2648ms total)
T2914 356:190 JLINK_ReadReg(FPS10) returns 0x11B25004 (0001ms, 2649ms total)
T2914 356:191 JLINK_ReadReg(FPS11) returns 0x00024120 (0000ms, 2649ms total)
T2914 356:191 JLINK_ReadReg(FPS12) returns 0x023C5609 (0000ms, 2649ms total)
T2914 356:191 JLINK_ReadReg(FPS13) returns 0x8600710B (0000ms, 2649ms total)
T2914 356:191 JLINK_ReadReg(FPS14) returns 0xA03D9BF0 (0000ms, 2649ms total)
T2914 356:191 JLINK_ReadReg(FPS15) returns 0x5812A440 (0000ms, 2649ms total)
T2914 356:191 JLINK_ReadReg(FPS16) returns 0x15918209 (0000ms, 2649ms total)
T2914 356:191 JLINK_ReadReg(FPS17) returns 0xD015225C (0000ms, 2649ms total)
T2914 356:191 JLINK_ReadReg(FPS18) returns 0x0C0013B7 (0000ms, 2649ms total)
T2914 356:191 JLINK_ReadReg(FPS19) returns 0x1C58D420 (0000ms, 2649ms total)
T2914 356:191 JLINK_ReadReg(FPS20) returns 0xA4974081 (0000ms, 2649ms total)
T2914 356:191 JLINK_ReadReg(FPS21) returns 0x108D0118 (0000ms, 2649ms total)
T2914 356:191 JLINK_ReadReg(FPS22) returns 0x9044A200 (0000ms, 2649ms total)
T2914 356:191 JLINK_ReadReg(FPS23) returns 0x781049E0 (0000ms, 2649ms total)
T2914 356:191 JLINK_ReadReg(FPS24) returns 0x1C330E11 (0000ms, 2649ms total)
T2914 356:191 JLINK_ReadReg(FPS25) returns 0xC604704C (0000ms, 2649ms total)
T2914 356:191 JLINK_ReadReg(FPS26) returns 0x2C70E395 (0000ms, 2649ms total)
T2914 356:192 JLINK_ReadReg(FPS27) returns 0x8012365D (0000ms, 2650ms total)
T2914 356:192 JLINK_ReadReg(FPS28) returns 0x028512B3 (0000ms, 2650ms total)
T2914 356:192 JLINK_ReadReg(FPS29) returns 0x321C1711 (0000ms, 2650ms total)
T2914 356:192 JLINK_ReadReg(FPS30) returns 0x40000912 (0000ms, 2650ms total)
T2914 356:192 JLINK_ReadReg(FPS31) returns 0x11A67042 (0000ms, 2650ms total)
T29C8 356:193 JLINK_ReadMemEx(0x20008EA4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20008E80) -- Updating C cache (64 bytes @ 0x20008E80) -- Read from C cache (4 bytes @ 0x20008EA4) - Data: BD 6C 00 08 returns 0x04 (0002ms, 2652ms total)
T29C8 356:195 JLINK_ReadMemEx(0x20008E90, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008E90) - Data: 21 8F 00 20 returns 0x04 (0000ms, 2652ms total)
T29C8 356:195 JLINK_ReadMemEx(0x20008E94, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008E94) - Data: 10 00 00 00 returns 0x04 (0000ms, 2652ms total)
T29C8 356:195 JLINK_ReadMemEx(0x20008E98, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008E98) - Data: 15 00 00 00 returns 0x04 (0001ms, 2653ms total)
T29C8 356:196 JLINK_ReadMemEx(0x20008E9C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008E9C) - Data: 00 00 00 00 returns 0x04 (0000ms, 2653ms total)
T29C8 356:196 JLINK_ReadMemEx(0x20008EA0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008EA0) - Data: B4 8F 00 20 returns 0x04 (0000ms, 2653ms total)
T29C8 356:196 JLINK_ReadMemEx(0x20008EA4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008EA4) - Data: BD 6C 00 08 returns 0x04 (0000ms, 2653ms total)
T29C8 356:196 JLINK_ReadMemEx(0x20008EFC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20008EC0) -- Updating C cache (64 bytes @ 0x20008EC0) -- Read from C cache (4 bytes @ 0x20008EFC) - Data: 5B 71 00 08 returns 0x04 (0002ms, 2655ms total)
T29C8 356:198 JLINK_ReadMemEx(0x20008EEC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008EEC) - Data: 21 8F 00 20 returns 0x04 (0000ms, 2655ms total)
T29C8 356:198 JLINK_ReadMemEx(0x20008EF0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008EF0) - Data: 5B AB 00 00 returns 0x04 (0000ms, 2655ms total)
T29C8 356:198 JLINK_ReadMemEx(0x20008EF4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008EF4) - Data: 20 8F 00 20 returns 0x04 (0001ms, 2656ms total)
T29C8 356:199 JLINK_ReadMemEx(0x20008EF8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008EF8) - Data: 00 00 00 00 returns 0x04 (0000ms, 2656ms total)
T29C8 356:199 JLINK_ReadMemEx(0x20008EFC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008EFC) - Data: 5B 71 00 08 returns 0x04 (0000ms, 2656ms total)
T29C8 356:199 JLINK_ReadMemEx(0x20008F14, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20008F00) -- Updating C cache (64 bytes @ 0x20008F00) -- Read from C cache (4 bytes @ 0x20008F14) - Data: CF 71 00 08 returns 0x04 (0003ms, 2659ms total)
T29C8 356:202 JLINK_ReadMemEx(0x20008F00, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F00) - Data: 20 8F 00 20 returns 0x04 (0000ms, 2659ms total)
T29C8 356:202 JLINK_ReadMemEx(0x20008F04, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F04) - Data: 40 00 00 00 returns 0x04 (0000ms, 2659ms total)
T29C8 356:202 JLINK_ReadMemEx(0x20008F08, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F08) - Data: 00 00 00 00 returns 0x04 (0000ms, 2659ms total)
T29C8 356:202 JLINK_ReadMemEx(0x20008F0C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F0C) - Data: 0A 00 00 00 returns 0x04 (0000ms, 2659ms total)
T29C8 356:202 JLINK_ReadMemEx(0x20008F10, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F10) - Data: B4 8F 00 20 returns 0x04 (0000ms, 2659ms total)
T29C8 356:202 JLINK_ReadMemEx(0x20008F14, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F14) - Data: CF 71 00 08 returns 0x04 (0000ms, 2659ms total)
T29C8 356:202 JLINK_ReadMemEx(0x20008F1C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F1C) - Data: 57 8F 00 08 returns 0x04 (0001ms, 2660ms total)
T29C8 356:203 JLINK_ReadMemEx(0x20008F18, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F18) - Data: 03 00 00 00 returns 0x04 (0000ms, 2660ms total)
T29C8 356:203 JLINK_ReadMemEx(0x20008F1C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F1C) - Data: 57 8F 00 08 returns 0x04 (0000ms, 2660ms total)
T29C8 356:203 JLINK_ReadMemEx(0x20008F6C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20008F40) -- Updating C cache (64 bytes @ 0x20008F40) -- Read from C cache (4 bytes @ 0x20008F6C) - Data: E7 11 00 08 returns 0x04 (0002ms, 2662ms total)
T29C8 356:205 JLINK_ReadMemEx(0x20008F64, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F64) - Data: 38 21 00 20 returns 0x04 (0000ms, 2662ms total)
T29C8 356:205 JLINK_ReadMemEx(0x20008F68, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F68) - Data: 40 00 00 00 returns 0x04 (0000ms, 2662ms total)
T29C8 356:205 JLINK_ReadMemEx(0x20008F6C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F6C) - Data: E7 11 00 08 returns 0x04 (0000ms, 2662ms total)
T29C8 356:205 JLINK_ReadMemEx(0x20008F74, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F74) - Data: F9 FF FF FF returns 0x04 (0001ms, 2663ms total)
T29C8 356:206 JLINK_ReadMemEx(0x20008F90, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20008F80) -- Updating C cache (64 bytes @ 0x20008F80) -- Read from C cache (4 bytes @ 0x20008F90) - Data: AA 88 00 08 returns 0x04 (0002ms, 2665ms total)
T29C8 356:208 JLINK_ReadMemEx(0x20008F94, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F94) - Data: 00 00 00 61 returns 0x04 (0000ms, 2665ms total)
T29C8 356:208 JLINK_ReadMemEx(0x20008F8C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F8C) - Data: AB 88 00 08 returns 0x04 (0000ms, 2665ms total)
T29C8 356:208 JLINK_ReadMemEx(0xE000ED28, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0xE000ED28) - Data: 00 00 00 00 returns 0x04 (0002ms, 2667ms total)
T29C8 356:211 JLINK_ReadMemEx(0x20008F90, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F90) - Data: AA 88 00 08 returns 0x04 (0000ms, 2667ms total)
T29C8 356:211 JLINK_ReadMemEx(0x20008F94, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F94) - Data: 00 00 00 61 returns 0x04 (0000ms, 2667ms total)
T29C8 356:211 JLINK_ReadMemEx(0x20008FAC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FAC) - Data: 4F 72 00 08 returns 0x04 (0000ms, 2667ms total)
T29C8 356:211 JLINK_ReadMemEx(0x20008F98, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F98) - Data: 84 D1 00 08 returns 0x04 (0000ms, 2667ms total)
T29C8 356:211 JLINK_ReadMemEx(0x20008F9C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F9C) - Data: 84 D1 00 08 returns 0x04 (0000ms, 2667ms total)
T29C8 356:211 JLINK_ReadMemEx(0x20008FA0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FA0) - Data: 00 00 00 00 returns 0x04 (0000ms, 2667ms total)
T29C8 356:211 JLINK_ReadMemEx(0x20008FA4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FA4) - Data: 00 00 00 00 returns 0x04 (0000ms, 2667ms total)
T29C8 356:211 JLINK_ReadMemEx(0x20008FA8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FA8) - Data: 00 00 00 00 returns 0x04 (0000ms, 2667ms total)
T29C8 356:211 JLINK_ReadMemEx(0x20008FAC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FAC) - Data: 4F 72 00 08 returns 0x04 (0000ms, 2667ms total)
T29C8 356:211 JLINK_ReadMemEx(0x20008FFC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20008FC0) -- Updating C cache (64 bytes @ 0x20008FC0) -- Read from C cache (4 bytes @ 0x20008FFC) - Data: EF 4A 00 08 returns 0x04 (0003ms, 2670ms total)
T29C8 356:214 JLINK_ReadMemEx(0x20008FF8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FF8) - Data: 84 D1 00 08 returns 0x04 (0000ms, 2670ms total)
T29C8 356:214 JLINK_ReadMemEx(0x20008FFC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FFC) - Data: EF 4A 00 08 returns 0x04 (0000ms, 2670ms total)
T29C8 356:214 JLINK_ReadMemEx(0x20009004, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20009000) -- Updating C cache (64 bytes @ 0x20009000) -- Read from C cache (4 bytes @ 0x20009004) - Data: C1 75 00 08 returns 0x04 (0002ms, 2672ms total)
T29C8 356:217 JLINK_ReadMemEx(0x20009000, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20009000) - Data: 84 D1 00 08 returns 0x04 (0000ms, 2672ms total)
T29C8 356:217 JLINK_ReadMemEx(0x20009004, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20009004) - Data: C1 75 00 08 returns 0x04 (0000ms, 2672ms total)
T29C8 356:217 JLINK_ReadMemEx(0x20008F24, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x20008F24) - Data: 6F 06 C7 55 00 01 43 00 00 02 0A 3E 01 00 01 00 ... returns 0x20 (0000ms, 2672ms total)
T29C8 356:217 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000500) -- Updating C cache (64 bytes @ 0x20000500) -- Read from C cache (1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0002ms, 2674ms total)
T2914 357:791 JLINK_ReadMemEx(0x08006F78, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006F78) - Data: 04 EB C4 00 00 EB 44 11 08 48 40 5C 40 1C C1 B2 ... returns 0x3C (0000ms, 2674ms total)
T2914 357:791 JLINK_ReadMemEx(0x08006F78, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F78) - Data: 04 EB returns 0x02 (0000ms, 2674ms total)
T2914 357:791 JLINK_ReadMemEx(0x08006F7A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F7A) - Data: C4 00 returns 0x02 (0000ms, 2674ms total)
T2914 357:791 JLINK_ReadMemEx(0x08006F78, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F78) - Data: 04 EB returns 0x02 (0000ms, 2674ms total)
T2914 357:791 JLINK_Step() -- Read from C cache (2 bytes @ 0x08006F78) -- Read from C cache (2 bytes @ 0x08006F7A) -- Not simulated -- CPU_WriteMem(4 bytes @ 0xE0001004) returns 0x00 (0014ms, 2688ms total)
T2914 357:805 JLINK_ReadReg(R15 (PC)) returns 0x08006F7C (0000ms, 2688ms total)
T2914 357:805 JLINK_ReadReg(XPSR) returns 0x01000027 (0000ms, 2688ms total)
T2914 357:805 JLINK_ReadMemEx(0x08006F7A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08006F40) -- Updating C cache (64 bytes @ 0x08006F40) -- Read from C cache (2 bytes @ 0x08006F7A) - Data: C4 00 returns 0x02 (0003ms, 2691ms total)
T2914 357:808 JLINK_ReadMemEx(0x08006F7C, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08006F80) -- Updating C cache (64 bytes @ 0x08006F80) -- Read from C cache (60 bytes @ 0x08006F7C) - Data: 00 EB 44 11 08 48 40 5C 40 1C C1 B2 04 EB C4 00 ... returns 0x3C (0002ms, 2693ms total)
T2914 357:810 JLINK_ReadMemEx(0x08006F7C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F7C) - Data: 00 EB returns 0x02 (0001ms, 2694ms total)
T2914 357:811 JLINK_ReadMemEx(0x08006F7C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006F7C) - Data: 00 EB 44 11 08 48 40 5C 40 1C C1 B2 04 EB C4 00 ... returns 0x3C (0000ms, 2694ms total)
T2914 357:811 JLINK_ReadMemEx(0x08006F7C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F7C) - Data: 00 EB returns 0x02 (0000ms, 2694ms total)
T2914 357:811 JLINK_ReadMemEx(0x08006F7E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F7E) - Data: 44 11 returns 0x02 (0000ms, 2694ms total)
T2914 357:811 JLINK_Step() -- Read from C cache (2 bytes @ 0x08006F7C) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Read from C cache (2 bytes @ 0x08006F7E) -- Not simulated returns 0x00 (0009ms, 2703ms total)
T2914 357:821 JLINK_ReadReg(R15 (PC)) returns 0x08006F80 (0000ms, 2703ms total)
T2914 357:821 JLINK_ReadReg(XPSR) returns 0x01000027 (0000ms, 2703ms total)
T2914 357:821 JLINK_ReadMemEx(0x08006F7E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08006F40) -- Updating C cache (64 bytes @ 0x08006F40) -- Read from C cache (2 bytes @ 0x08006F7E) - Data: 44 11 returns 0x02 (0002ms, 2705ms total)
T2914 357:823 JLINK_ReadMemEx(0x08006F80, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08006F80) -- Updating C cache (64 bytes @ 0x08006F80) -- Read from C cache (60 bytes @ 0x08006F80) - Data: 08 48 40 5C 40 1C C1 B2 04 EB C4 00 00 EB 44 12 ... returns 0x3C (0002ms, 2707ms total)
T2914 357:825 JLINK_ReadMemEx(0x08006F80, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F80) - Data: 08 48 returns 0x02 (0000ms, 2707ms total)
T2914 357:825 JLINK_ReadMemEx(0x08006F80, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006F80) - Data: 08 48 40 5C 40 1C C1 B2 04 EB C4 00 00 EB 44 12 ... returns 0x3C (0001ms, 2708ms total)
T2914 357:826 JLINK_ReadMemEx(0x08006F80, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F80) - Data: 08 48 returns 0x02 (0000ms, 2708ms total)
T2914 357:826 JLINK_ReadMemEx(0x08006F82, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F82) - Data: 40 5C returns 0x02 (0000ms, 2708ms total)
T2914 357:826 JLINK_Step() -- Read from C cache (2 bytes @ 0x08006F80) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Read from C cache (4 bytes @ 0x08006FA4) -- Simulated returns 0x00 (0002ms, 2710ms total)
T2914 357:828 JLINK_ReadReg(R15 (PC)) returns 0x08006F82 (0000ms, 2710ms total)
T2914 357:828 JLINK_ReadReg(XPSR) returns 0x01000027 (0000ms, 2710ms total)
T2914 357:828 JLINK_ReadMemEx(0x08006F82, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F82) - Data: 40 5C returns 0x02 (0000ms, 2710ms total)
T2914 357:828 JLINK_ReadMemEx(0x08006F84, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006F84) - Data: 40 1C C1 B2 04 EB C4 00 00 EB 44 12 04 48 81 54 ... returns 0x3C (0000ms, 2710ms total)
T2914 357:828 JLINK_ReadMemEx(0x08006F84, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F84) - Data: 40 1C returns 0x02 (0000ms, 2710ms total)
T2914 357:828 JLINK_Step() -- Read from C cache (2 bytes @ 0x08006F82) -- CPU_ReadMem(64 bytes @ 0x20002040) -- Updating C cache (64 bytes @ 0x20002040) -- Read from C cache (1 bytes @ 0x20002074) -- Simulated returns 0x00 (0002ms, 2712ms total)
T2914 357:831 JLINK_ReadReg(R15 (PC)) returns 0x08006F84 (0000ms, 2712ms total)
T2914 357:831 JLINK_ReadReg(XPSR) returns 0x01000027 (0000ms, 2712ms total)
T2914 357:831 JLINK_ReadMemEx(0x08006F84, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006F84) - Data: 40 1C C1 B2 04 EB C4 00 00 EB 44 12 04 48 81 54 ... returns 0x3C (0000ms, 2712ms total)
T2914 357:831 JLINK_ReadMemEx(0x08006F84, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F84) - Data: 40 1C returns 0x02 (0000ms, 2712ms total)
T2914 357:831 JLINK_ReadMemEx(0x08006F86, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F86) - Data: C1 B2 returns 0x02 (0000ms, 2712ms total)
T2914 357:831 JLINK_Step() -- Read from C cache (2 bytes @ 0x08006F84) -- Simulated returns 0x00 (0000ms, 2712ms total)
T2914 357:831 JLINK_ReadReg(R15 (PC)) returns 0x08006F86 (0000ms, 2712ms total)
T2914 357:831 JLINK_ReadReg(XPSR) returns 0x01000027 (0000ms, 2712ms total)
T2914 357:831 JLINK_ReadMemEx(0x08006F86, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F86) - Data: C1 B2 returns 0x02 (0000ms, 2712ms total)
T2914 357:831 JLINK_ReadMemEx(0x08006F88, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08006FC0) -- Updating C cache (64 bytes @ 0x08006FC0) -- Read from C cache (60 bytes @ 0x08006F88) - Data: 04 EB C4 00 00 EB 44 12 04 48 81 54 02 49 48 68 ... returns 0x3C (0002ms, 2714ms total)
T2914 357:834 JLINK_ReadMemEx(0x08006F88, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F88) - Data: 04 EB returns 0x02 (0000ms, 2714ms total)
T2914 357:834 JLINK_Step() -- Read from C cache (2 bytes @ 0x08006F86) -- Simulated returns 0x00 (0000ms, 2714ms total)
T2914 357:834 JLINK_ReadReg(R15 (PC)) returns 0x08006F88 (0000ms, 2714ms total)
T2914 357:834 JLINK_ReadReg(XPSR) returns 0x01000027 (0000ms, 2714ms total)
T2914 357:834 JLINK_ReadMemEx(0x08006F88, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006F88) - Data: 04 EB C4 00 00 EB 44 12 04 48 81 54 02 49 48 68 ... returns 0x3C (0000ms, 2714ms total)
T2914 357:834 JLINK_ReadMemEx(0x08006F88, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F88) - Data: 04 EB returns 0x02 (0000ms, 2714ms total)
T2914 357:834 JLINK_ReadMemEx(0x08006F8A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F8A) - Data: C4 00 returns 0x02 (0000ms, 2714ms total)
T2914 357:834 JLINK_Step() -- Read from C cache (2 bytes @ 0x08006F88) -- Read from C cache (2 bytes @ 0x08006F8A) -- Not simulated -- CPU_WriteMem(4 bytes @ 0xE0001004) returns 0x00 (0011ms, 2725ms total)
T2914 357:845 JLINK_ReadReg(R15 (PC)) returns 0x08006F8C (0000ms, 2725ms total)
T2914 357:845 JLINK_ReadReg(XPSR) returns 0x01000027 (0000ms, 2725ms total)
T2914 357:845 JLINK_ReadMemEx(0x08006F8A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08006F80) -- Updating C cache (64 bytes @ 0x08006F80) -- Read from C cache (2 bytes @ 0x08006F8A) - Data: C4 00 returns 0x02 (0003ms, 2728ms total)
T2914 357:848 JLINK_ReadMemEx(0x08006F8C, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08006FC0) -- Updating C cache (64 bytes @ 0x08006FC0) -- Read from C cache (60 bytes @ 0x08006F8C) - Data: 00 EB 44 12 04 48 81 54 02 49 48 68 80 47 01 20 ... returns 0x3C (0003ms, 2731ms total)
T2914 357:851 JLINK_ReadMemEx(0x08006F8C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F8C) - Data: 00 EB returns 0x02 (0000ms, 2731ms total)
T2914 357:851 JLINK_ReadMemEx(0x08006F8C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006F8C) - Data: 00 EB 44 12 04 48 81 54 02 49 48 68 80 47 01 20 ... returns 0x3C (0000ms, 2731ms total)
T2914 357:851 JLINK_ReadMemEx(0x08006F8C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F8C) - Data: 00 EB returns 0x02 (0000ms, 2731ms total)
T2914 357:851 JLINK_ReadMemEx(0x08006F8E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F8E) - Data: 44 12 returns 0x02 (0000ms, 2731ms total)
T2914 357:851 JLINK_Step() -- Read from C cache (2 bytes @ 0x08006F8C) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Read from C cache (2 bytes @ 0x08006F8E) -- Not simulated returns 0x00 (0010ms, 2741ms total)
T2914 357:861 JLINK_ReadReg(R15 (PC)) returns 0x08006F90 (0000ms, 2741ms total)
T2914 357:861 JLINK_ReadReg(XPSR) returns 0x01000027 (0000ms, 2741ms total)
T2914 357:861 JLINK_ReadMemEx(0x08006F8E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08006F80) -- Updating C cache (64 bytes @ 0x08006F80) -- Read from C cache (2 bytes @ 0x08006F8E) - Data: 44 12 returns 0x02 (0003ms, 2744ms total)
T2914 357:864 JLINK_ReadMemEx(0x08006F90, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08006FC0) -- Updating C cache (64 bytes @ 0x08006FC0) -- Read from C cache (60 bytes @ 0x08006F90) - Data: 04 48 81 54 02 49 48 68 80 47 01 20 96 E7 00 00 ... returns 0x3C (0002ms, 2746ms total)
T2914 357:866 JLINK_ReadMemEx(0x08006F90, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F90) - Data: 04 48 returns 0x02 (0000ms, 2746ms total)
T2914 357:866 JLINK_ReadMemEx(0x08006F90, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006F90) - Data: 04 48 81 54 02 49 48 68 80 47 01 20 96 E7 00 00 ... returns 0x3C (0000ms, 2746ms total)
T2914 357:866 JLINK_ReadMemEx(0x08006F90, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F90) - Data: 04 48 returns 0x02 (0000ms, 2746ms total)
T2914 357:866 JLINK_ReadMemEx(0x08006F92, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F92) - Data: 81 54 returns 0x02 (0001ms, 2747ms total)
T2914 357:867 JLINK_Step() -- Read from C cache (2 bytes @ 0x08006F90) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Read from C cache (4 bytes @ 0x08006FA4) -- Simulated returns 0x00 (0002ms, 2749ms total)
T2914 357:869 JLINK_ReadReg(R15 (PC)) returns 0x08006F92 (0000ms, 2749ms total)
T2914 357:869 JLINK_ReadReg(XPSR) returns 0x01000027 (0000ms, 2749ms total)
T2914 357:869 JLINK_ReadMemEx(0x08006F92, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F92) - Data: 81 54 returns 0x02 (0000ms, 2749ms total)
T2914 357:869 JLINK_ReadMemEx(0x08006F94, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006F94) - Data: 02 49 48 68 80 47 01 20 96 E7 00 00 B8 02 00 20 ... returns 0x3C (0000ms, 2749ms total)
T2914 357:869 JLINK_ReadMemEx(0x08006F94, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F94) - Data: 02 49 returns 0x02 (0000ms, 2749ms total)
T2914 357:869 JLINK_Step() -- Read from C cache (2 bytes @ 0x08006F92) -- CPU_WriteMem(1 bytes @ 0x20002074) -- Simulated returns 0x00 (0002ms, 2751ms total)
T2914 357:872 JLINK_ReadReg(R15 (PC)) returns 0x08006F94 (0000ms, 2751ms total)
T2914 357:872 JLINK_ReadReg(XPSR) returns 0x01000027 (0000ms, 2751ms total)
T2914 357:872 JLINK_ReadReg(R0) returns 0x20002074 (0000ms, 2751ms total)
T2914 357:872 JLINK_ReadReg(R1) returns 0x00000001 (0000ms, 2751ms total)
T2914 357:872 JLINK_ReadReg(R2) returns 0x00000000 (0000ms, 2751ms total)
T2914 357:872 JLINK_ReadReg(R3) returns 0x20008F24 (0000ms, 2751ms total)
T2914 357:872 JLINK_ReadReg(R4) returns 0x00000000 (0000ms, 2751ms total)
T2914 357:872 JLINK_ReadReg(R5) returns 0x00000000 (0000ms, 2751ms total)
T2914 357:872 JLINK_ReadReg(R6) returns 0x20008F24 (0000ms, 2751ms total)
T2914 357:872 JLINK_ReadReg(R7) returns 0x00000004 (0001ms, 2752ms total)
T2914 357:873 JLINK_ReadReg(R8) returns 0x20008FB4 (0000ms, 2752ms total)
T2914 357:873 JLINK_ReadReg(R9) returns 0x20000134 (0000ms, 2752ms total)
T2914 357:873 JLINK_ReadReg(R10) returns 0x00000000 (0000ms, 2752ms total)
T2914 357:873 JLINK_ReadReg(R11) returns 0x00000000 (0000ms, 2752ms total)
T2914 357:873 JLINK_ReadReg(R12) returns 0x00000004 (0000ms, 2752ms total)
T2914 357:873 JLINK_ReadReg(R13 (SP)) returns 0x20008E90 (0000ms, 2752ms total)
T2914 357:873 JLINK_ReadReg(R14) returns 0x08006F49 (0000ms, 2752ms total)
T2914 357:873 JLINK_ReadReg(R15 (PC)) returns 0x08006F94 (0000ms, 2752ms total)
T2914 357:873 JLINK_ReadReg(XPSR) returns 0x01000027 (0000ms, 2752ms total)
T2914 357:873 JLINK_ReadReg(MSP) returns 0x20008E90 (0000ms, 2752ms total)
T2914 357:873 JLINK_ReadReg(PSP) returns 0x20001000 (0000ms, 2752ms total)
T2914 357:873 JLINK_ReadReg(CFBP) returns 0x00000001 (0000ms, 2752ms total)
T2914 357:873 JLINK_ReadReg(FPSCR) returns 0x00000000 (0006ms, 2758ms total)
T2914 357:880 JLINK_ReadReg(FPS0) returns 0xFB068412 (0000ms, 2758ms total)
T2914 357:880 JLINK_ReadReg(FPS1) returns 0x10110C5A (0000ms, 2758ms total)
T2914 357:880 JLINK_ReadReg(FPS2) returns 0x04341E1B (0000ms, 2758ms total)
T2914 357:880 JLINK_ReadReg(FPS3) returns 0x80412402 (0000ms, 2758ms total)
T2914 357:880 JLINK_ReadReg(FPS4) returns 0x18248A00 (0000ms, 2758ms total)
T2914 357:880 JLINK_ReadReg(FPS5) returns 0x20102094 (0000ms, 2758ms total)
T2914 357:880 JLINK_ReadReg(FPS6) returns 0x82C0846D (0000ms, 2758ms total)
T2914 357:880 JLINK_ReadReg(FPS7) returns 0x08A02089 (0000ms, 2758ms total)
T2914 357:880 JLINK_ReadReg(FPS8) returns 0x05488443 (0000ms, 2758ms total)
T2914 357:880 JLINK_ReadReg(FPS9) returns 0xF372B940 (0000ms, 2758ms total)
T2914 357:880 JLINK_ReadReg(FPS10) returns 0x11B25004 (0000ms, 2758ms total)
T2914 357:880 JLINK_ReadReg(FPS11) returns 0x00024120 (0000ms, 2758ms total)
T2914 357:880 JLINK_ReadReg(FPS12) returns 0x023C5609 (0000ms, 2758ms total)
T2914 357:880 JLINK_ReadReg(FPS13) returns 0x8600710B (0000ms, 2758ms total)
T2914 357:880 JLINK_ReadReg(FPS14) returns 0xA03D9BF0 (0000ms, 2758ms total)
T2914 357:880 JLINK_ReadReg(FPS15) returns 0x5812A440 (0000ms, 2758ms total)
T2914 357:880 JLINK_ReadReg(FPS16) returns 0x15918209 (0000ms, 2758ms total)
T2914 357:880 JLINK_ReadReg(FPS17) returns 0xD015225C (0000ms, 2758ms total)
T2914 357:881 JLINK_ReadReg(FPS18) returns 0x0C0013B7 (0000ms, 2758ms total)
T2914 357:881 JLINK_ReadReg(FPS19) returns 0x1C58D420 (0000ms, 2758ms total)
T2914 357:881 JLINK_ReadReg(FPS20) returns 0xA4974081 (0000ms, 2758ms total)
T2914 357:881 JLINK_ReadReg(FPS21) returns 0x108D0118 (0000ms, 2758ms total)
T2914 357:881 JLINK_ReadReg(FPS22) returns 0x9044A200 (0000ms, 2758ms total)
T2914 357:881 JLINK_ReadReg(FPS23) returns 0x781049E0 (0000ms, 2758ms total)
T2914 357:881 JLINK_ReadReg(FPS24) returns 0x1C330E11 (0000ms, 2758ms total)
T2914 357:881 JLINK_ReadReg(FPS25) returns 0xC604704C (0000ms, 2758ms total)
T2914 357:881 JLINK_ReadReg(FPS26) returns 0x2C70E395 (0000ms, 2758ms total)
T2914 357:881 JLINK_ReadReg(FPS27) returns 0x8012365D (0000ms, 2758ms total)
T2914 357:881 JLINK_ReadReg(FPS28) returns 0x028512B3 (0000ms, 2758ms total)
T2914 357:881 JLINK_ReadReg(FPS29) returns 0x321C1711 (0000ms, 2758ms total)
T2914 357:881 JLINK_ReadReg(FPS30) returns 0x40000912 (0000ms, 2758ms total)
T2914 357:881 JLINK_ReadReg(FPS31) returns 0x11A67042 (0000ms, 2758ms total)
T29C8 357:882 JLINK_ReadMemEx(0x20008EA4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20008E80) -- Updating C cache (64 bytes @ 0x20008E80) -- Read from C cache (4 bytes @ 0x20008EA4) - Data: BD 6C 00 08 returns 0x04 (0002ms, 2760ms total)
T29C8 357:885 JLINK_ReadMemEx(0x20008E90, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008E90) - Data: 21 8F 00 20 returns 0x04 (0000ms, 2760ms total)
T29C8 357:885 JLINK_ReadMemEx(0x20008E94, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008E94) - Data: 10 00 00 00 returns 0x04 (0000ms, 2760ms total)
T29C8 357:885 JLINK_ReadMemEx(0x20008E98, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008E98) - Data: 15 00 00 00 returns 0x04 (0000ms, 2760ms total)
T29C8 357:885 JLINK_ReadMemEx(0x20008E9C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008E9C) - Data: 00 00 00 00 returns 0x04 (0000ms, 2760ms total)
T29C8 357:885 JLINK_ReadMemEx(0x20008EA0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008EA0) - Data: B4 8F 00 20 returns 0x04 (0000ms, 2760ms total)
T29C8 357:885 JLINK_ReadMemEx(0x20008EA4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008EA4) - Data: BD 6C 00 08 returns 0x04 (0000ms, 2760ms total)
T29C8 357:885 JLINK_ReadMemEx(0x20008EFC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20008EC0) -- Updating C cache (64 bytes @ 0x20008EC0) -- Read from C cache (4 bytes @ 0x20008EFC) - Data: 5B 71 00 08 returns 0x04 (0002ms, 2762ms total)
T29C8 357:887 JLINK_ReadMemEx(0x20008EEC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008EEC) - Data: 21 8F 00 20 returns 0x04 (0001ms, 2763ms total)
T29C8 357:888 JLINK_ReadMemEx(0x20008EF0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008EF0) - Data: 5B AB 00 00 returns 0x04 (0000ms, 2763ms total)
T29C8 357:888 JLINK_ReadMemEx(0x20008EF4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008EF4) - Data: 20 8F 00 20 returns 0x04 (0000ms, 2763ms total)
T29C8 357:888 JLINK_ReadMemEx(0x20008EF8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008EF8) - Data: 00 00 00 00 returns 0x04 (0000ms, 2763ms total)
T29C8 357:888 JLINK_ReadMemEx(0x20008EFC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008EFC) - Data: 5B 71 00 08 returns 0x04 (0000ms, 2763ms total)
T29C8 357:888 JLINK_ReadMemEx(0x20008F14, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20008F00) -- Updating C cache (64 bytes @ 0x20008F00) -- Read from C cache (4 bytes @ 0x20008F14) - Data: CF 71 00 08 returns 0x04 (0002ms, 2765ms total)
T29C8 357:890 JLINK_ReadMemEx(0x20008F00, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F00) - Data: 20 8F 00 20 returns 0x04 (0000ms, 2765ms total)
T29C8 357:890 JLINK_ReadMemEx(0x20008F04, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F04) - Data: 40 00 00 00 returns 0x04 (0001ms, 2766ms total)
T29C8 357:891 JLINK_ReadMemEx(0x20008F08, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F08) - Data: 00 00 00 00 returns 0x04 (0000ms, 2766ms total)
T29C8 357:891 JLINK_ReadMemEx(0x20008F0C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F0C) - Data: 0A 00 00 00 returns 0x04 (0000ms, 2766ms total)
T29C8 357:891 JLINK_ReadMemEx(0x20008F10, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F10) - Data: B4 8F 00 20 returns 0x04 (0000ms, 2766ms total)
T29C8 357:891 JLINK_ReadMemEx(0x20008F14, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F14) - Data: CF 71 00 08 returns 0x04 (0000ms, 2766ms total)
T29C8 357:891 JLINK_ReadMemEx(0x20008F1C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F1C) - Data: 57 8F 00 08 returns 0x04 (0000ms, 2766ms total)
T29C8 357:891 JLINK_ReadMemEx(0x20008F18, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F18) - Data: 03 00 00 00 returns 0x04 (0000ms, 2766ms total)
T29C8 357:891 JLINK_ReadMemEx(0x20008F1C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F1C) - Data: 57 8F 00 08 returns 0x04 (0000ms, 2766ms total)
T29C8 357:891 JLINK_ReadMemEx(0x20008F6C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20008F40) -- Updating C cache (64 bytes @ 0x20008F40) -- Read from C cache (4 bytes @ 0x20008F6C) - Data: E7 11 00 08 returns 0x04 (0002ms, 2768ms total)
T29C8 357:893 JLINK_ReadMemEx(0x20008F64, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F64) - Data: 38 21 00 20 returns 0x04 (0001ms, 2769ms total)
T29C8 357:894 JLINK_ReadMemEx(0x20008F68, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F68) - Data: 40 00 00 00 returns 0x04 (0000ms, 2769ms total)
T29C8 357:894 JLINK_ReadMemEx(0x20008F6C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F6C) - Data: E7 11 00 08 returns 0x04 (0000ms, 2769ms total)
T29C8 357:894 JLINK_ReadMemEx(0x20008F74, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F74) - Data: F9 FF FF FF returns 0x04 (0000ms, 2769ms total)
T29C8 357:894 JLINK_ReadMemEx(0x20008F90, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20008F80) -- Updating C cache (64 bytes @ 0x20008F80) -- Read from C cache (4 bytes @ 0x20008F90) - Data: AA 88 00 08 returns 0x04 (0002ms, 2771ms total)
T29C8 357:896 JLINK_ReadMemEx(0x20008F94, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F94) - Data: 00 00 00 61 returns 0x04 (0000ms, 2771ms total)
T29C8 357:896 JLINK_ReadMemEx(0x20008F8C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F8C) - Data: AB 88 00 08 returns 0x04 (0000ms, 2771ms total)
T29C8 357:896 JLINK_ReadMemEx(0xE000ED28, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0xE000ED28) - Data: 00 00 00 00 returns 0x04 (0003ms, 2774ms total)
T29C8 357:899 JLINK_ReadMemEx(0x20008F90, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F90) - Data: AA 88 00 08 returns 0x04 (0000ms, 2774ms total)
T29C8 357:899 JLINK_ReadMemEx(0x20008F94, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F94) - Data: 00 00 00 61 returns 0x04 (0000ms, 2774ms total)
T29C8 357:899 JLINK_ReadMemEx(0x20008FAC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FAC) - Data: 4F 72 00 08 returns 0x04 (0000ms, 2774ms total)
T29C8 357:899 JLINK_ReadMemEx(0x20008F98, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F98) - Data: 84 D1 00 08 returns 0x04 (0000ms, 2774ms total)
T29C8 357:899 JLINK_ReadMemEx(0x20008F9C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F9C) - Data: 84 D1 00 08 returns 0x04 (0000ms, 2774ms total)
T29C8 357:899 JLINK_ReadMemEx(0x20008FA0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FA0) - Data: 00 00 00 00 returns 0x04 (0000ms, 2774ms total)
T29C8 357:899 JLINK_ReadMemEx(0x20008FA4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FA4) - Data: 00 00 00 00 returns 0x04 (0001ms, 2775ms total)
T29C8 357:900 JLINK_ReadMemEx(0x20008FA8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FA8) - Data: 00 00 00 00 returns 0x04 (0000ms, 2775ms total)
T29C8 357:900 JLINK_ReadMemEx(0x20008FAC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FAC) - Data: 4F 72 00 08 returns 0x04 (0000ms, 2775ms total)
T29C8 357:900 JLINK_ReadMemEx(0x20008FFC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20008FC0) -- Updating C cache (64 bytes @ 0x20008FC0) -- Read from C cache (4 bytes @ 0x20008FFC) - Data: EF 4A 00 08 returns 0x04 (0002ms, 2777ms total)
T29C8 357:902 JLINK_ReadMemEx(0x20008FF8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FF8) - Data: 84 D1 00 08 returns 0x04 (0000ms, 2777ms total)
T29C8 357:902 JLINK_ReadMemEx(0x20008FFC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FFC) - Data: EF 4A 00 08 returns 0x04 (0000ms, 2777ms total)
T29C8 357:902 JLINK_ReadMemEx(0x20009004, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20009000) -- Updating C cache (64 bytes @ 0x20009000) -- Read from C cache (4 bytes @ 0x20009004) - Data: C1 75 00 08 returns 0x04 (0003ms, 2780ms total)
T29C8 357:905 JLINK_ReadMemEx(0x20009000, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20009000) - Data: 84 D1 00 08 returns 0x04 (0000ms, 2780ms total)
T29C8 357:905 JLINK_ReadMemEx(0x20009004, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20009004) - Data: C1 75 00 08 returns 0x04 (0000ms, 2780ms total)
T29C8 357:905 JLINK_ReadMemEx(0x20008F24, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x20008F24) - Data: 6F 06 C7 55 00 01 43 00 00 02 0A 3E 01 00 01 00 ... returns 0x20 (0000ms, 2780ms total)
T29C8 357:905 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000500) -- Updating C cache (64 bytes @ 0x20000500) -- Read from C cache (1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0003ms, 2783ms total)
T29C8 357:908 JLINK_ReadMemEx(0x08006F94, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006F94) - Data: 02 49 48 68 80 47 01 20 96 E7 00 00 B8 02 00 20 ... returns 0x3C (0000ms, 2783ms total)
T29C8 357:908 JLINK_ReadMemEx(0x08006F94, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F94) - Data: 02 49 returns 0x02 (0000ms, 2783ms total)
T29C8 357:908 JLINK_ReadMemEx(0x08006F96, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F96) - Data: 48 68 returns 0x02 (0000ms, 2783ms total)
T2914 360:026 JLINK_ReadMemEx(0x08006F94, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006F94) - Data: 02 49 returns 0x02 (0000ms, 2783ms total)
T2914 360:026 JLINK_SetBPEx(Addr = 0x08006F2C, Type = 0xFFFFFFF2) returns 0x00000007 (0001ms, 2784ms total)
T2914 360:027 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0011ms, 2795ms total)
T2914 360:139 JLINK_IsHalted() returns FALSE (0001ms, 2797ms total)
T2914 360:240 JLINK_IsHalted() returns FALSE (0001ms, 2797ms total)
T2914 360:341 JLINK_IsHalted() returns TRUE (0003ms, 2799ms total)
T2914 360:344 JLINK_Halt() returns 0x00 (0000ms, 2796ms total)
T2914 360:344 JLINK_IsHalted() returns TRUE (0000ms, 2796ms total)
T2914 360:344 JLINK_IsHalted() returns TRUE (0000ms, 2796ms total)
T2914 360:344 JLINK_IsHalted() returns TRUE (0000ms, 2796ms total)
T2914 360:344 JLINK_ReadReg(R15 (PC)) returns 0x08006F2C (0000ms, 2796ms total)
T2914 360:344 JLINK_ReadReg(XPSR) returns 0x61000027 (0000ms, 2796ms total)
T2914 360:344 JLINK_ClrBPEx(BPHandle = 0x00000007) returns 0x00 (0000ms, 2796ms total)
T2914 360:344 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 02 00 00 00 returns 1 (0002ms, 2798ms total)
T2914 360:346 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00 returns 1 (0001ms, 2799ms total)
T2914 360:347 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 02 00 00 returns 1 (0002ms, 2801ms total)
T2914 360:349 JLINK_ReadMemU32(0xE0001048, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001048) - Data: 00 00 00 00 returns 1 (0001ms, 2802ms total)
T2914 360:350 JLINK_ReadMemU32(0xE0001058, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001058) - Data: 00 00 00 00 returns 1 (0001ms, 2803ms total)
T2914 360:351 JLINK_ReadReg(R0) returns 0x00000001 (0000ms, 2803ms total)
T2914 360:351 JLINK_ReadReg(R1) returns 0x00000001 (0000ms, 2803ms total)
T2914 360:351 JLINK_ReadReg(R2) returns 0x00000000 (0000ms, 2803ms total)
T2914 360:351 JLINK_ReadReg(R3) returns 0x20008F34 (0000ms, 2803ms total)
T2914 360:351 JLINK_ReadReg(R4) returns 0x00000000 (0000ms, 2803ms total)
T2914 360:351 JLINK_ReadReg(R5) returns 0x00000000 (0000ms, 2803ms total)
T2914 360:351 JLINK_ReadReg(R6) returns 0x20008F34 (0000ms, 2803ms total)
T2914 360:351 JLINK_ReadReg(R7) returns 0x00000004 (0000ms, 2803ms total)
T2914 360:351 JLINK_ReadReg(R8) returns 0x00000000 (0000ms, 2803ms total)
T2914 360:351 JLINK_ReadReg(R9) returns 0x20000134 (0000ms, 2803ms total)
T2914 360:352 JLINK_ReadReg(R10) returns 0x00000000 (0000ms, 2804ms total)
T2914 360:352 JLINK_ReadReg(R11) returns 0x00000000 (0000ms, 2804ms total)
T2914 360:352 JLINK_ReadReg(R12) returns 0x00000004 (0000ms, 2804ms total)
T2914 360:352 JLINK_ReadReg(R13 (SP)) returns 0x20008EA0 (0000ms, 2804ms total)
T2914 360:352 JLINK_ReadReg(R14) returns 0x08006F09 (0000ms, 2804ms total)
T2914 360:352 JLINK_ReadReg(R15 (PC)) returns 0x08006F2C (0000ms, 2804ms total)
T2914 360:352 JLINK_ReadReg(XPSR) returns 0x61000027 (0000ms, 2804ms total)
T2914 360:352 JLINK_ReadReg(MSP) returns 0x20008EA0 (0000ms, 2804ms total)
T2914 360:352 JLINK_ReadReg(PSP) returns 0x20001000 (0000ms, 2804ms total)
T2914 360:352 JLINK_ReadReg(CFBP) returns 0x00000001 (0000ms, 2804ms total)
T2914 360:352 JLINK_ReadReg(FPSCR) returns 0x00000000 (0005ms, 2809ms total)
T2914 360:357 JLINK_ReadReg(FPS0) returns 0xFB068412 (0000ms, 2809ms total)
T2914 360:357 JLINK_ReadReg(FPS1) returns 0x10110C5A (0000ms, 2809ms total)
T2914 360:357 JLINK_ReadReg(FPS2) returns 0x04341E1B (0000ms, 2809ms total)
T2914 360:357 JLINK_ReadReg(FPS3) returns 0x80412402 (0000ms, 2809ms total)
T2914 360:357 JLINK_ReadReg(FPS4) returns 0x18248A00 (0000ms, 2809ms total)
T2914 360:357 JLINK_ReadReg(FPS5) returns 0x20102094 (0000ms, 2809ms total)
T2914 360:357 JLINK_ReadReg(FPS6) returns 0x82C0846D (0000ms, 2809ms total)
T2914 360:357 JLINK_ReadReg(FPS7) returns 0x08A02089 (0000ms, 2809ms total)
T2914 360:357 JLINK_ReadReg(FPS8) returns 0x05488443 (0000ms, 2809ms total)
T2914 360:357 JLINK_ReadReg(FPS9) returns 0xF372B940 (0000ms, 2809ms total)
T2914 360:357 JLINK_ReadReg(FPS10) returns 0x11B25004 (0000ms, 2809ms total)
T2914 360:357 JLINK_ReadReg(FPS11) returns 0x00024120 (0000ms, 2809ms total)
T2914 360:357 JLINK_ReadReg(FPS12) returns 0x023C5609 (0000ms, 2809ms total)
T2914 360:357 JLINK_ReadReg(FPS13) returns 0x8600710B (0000ms, 2809ms total)
T2914 360:357 JLINK_ReadReg(FPS14) returns 0xA03D9BF0 (0000ms, 2809ms total)
T2914 360:357 JLINK_ReadReg(FPS15) returns 0x5812A440 (0001ms, 2810ms total)
T2914 360:358 JLINK_ReadReg(FPS16) returns 0x15918209 (0000ms, 2810ms total)
T2914 360:358 JLINK_ReadReg(FPS17) returns 0xD015225C (0000ms, 2810ms total)
T2914 360:358 JLINK_ReadReg(FPS18) returns 0x0C0013B7 (0000ms, 2810ms total)
T2914 360:358 JLINK_ReadReg(FPS19) returns 0x1C58D420 (0000ms, 2810ms total)
T2914 360:358 JLINK_ReadReg(FPS20) returns 0xA4974081 (0000ms, 2810ms total)
T2914 360:358 JLINK_ReadReg(FPS21) returns 0x108D0118 (0000ms, 2810ms total)
T2914 360:358 JLINK_ReadReg(FPS22) returns 0x9044A200 (0000ms, 2810ms total)
T2914 360:358 JLINK_ReadReg(FPS23) returns 0x781049E0 (0000ms, 2810ms total)
T2914 360:358 JLINK_ReadReg(FPS24) returns 0x1C330E11 (0000ms, 2810ms total)
T2914 360:358 JLINK_ReadReg(FPS25) returns 0xC604704C (0000ms, 2810ms total)
T2914 360:358 JLINK_ReadReg(FPS26) returns 0x2C70E395 (0000ms, 2810ms total)
T2914 360:358 JLINK_ReadReg(FPS27) returns 0x8012365D (0000ms, 2810ms total)
T2914 360:358 JLINK_ReadReg(FPS28) returns 0x028512B3 (0000ms, 2810ms total)
T2914 360:358 JLINK_ReadReg(FPS29) returns 0x321C1711 (0000ms, 2810ms total)
T2914 360:358 JLINK_ReadReg(FPS30) returns 0x40000912 (0000ms, 2810ms total)
T2914 360:358 JLINK_ReadReg(FPS31) returns 0x11A67042 (0000ms, 2810ms total)
T29C8 360:358 JLINK_ReadMemEx(0x20008EB4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20008E80) -- Updating C cache (64 bytes @ 0x20008E80) -- Read from C cache (4 bytes @ 0x20008EB4) - Data: BD 6C 00 08 returns 0x04 (0003ms, 2813ms total)
T29C8 360:361 JLINK_ReadMemEx(0x20008EA0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008EA0) - Data: 31 8F 00 20 returns 0x04 (0000ms, 2813ms total)
T29C8 360:361 JLINK_ReadMemEx(0x20008EA4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008EA4) - Data: 10 00 00 00 returns 0x04 (0000ms, 2813ms total)
T29C8 360:361 JLINK_ReadMemEx(0x20008EA8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008EA8) - Data: 15 00 00 00 returns 0x04 (0000ms, 2813ms total)
T29C8 360:361 JLINK_ReadMemEx(0x20008EAC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008EAC) - Data: 00 00 00 00 returns 0x04 (0000ms, 2813ms total)
T29C8 360:361 JLINK_ReadMemEx(0x20008EB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008EB0) - Data: 00 00 00 00 returns 0x04 (0000ms, 2813ms total)
T29C8 360:361 JLINK_ReadMemEx(0x20008EB4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008EB4) - Data: BD 6C 00 08 returns 0x04 (0000ms, 2813ms total)
T29C8 360:361 JLINK_ReadMemEx(0x20008F0C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20008F00) -- Updating C cache (64 bytes @ 0x20008F00) -- Read from C cache (4 bytes @ 0x20008F0C) - Data: 5B 71 00 08 returns 0x04 (0001ms, 2814ms total)
T29C8 360:363 JLINK_ReadMemEx(0x20008EFC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20008EC0) -- Updating C cache (64 bytes @ 0x20008EC0) -- Read from C cache (4 bytes @ 0x20008EFC) - Data: 31 8F 00 20 returns 0x04 (0000ms, 2814ms total)
T29C8 360:363 JLINK_ReadMemEx(0x20008F00, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F00) - Data: 5B AB 00 00 returns 0x04 (0001ms, 2815ms total)
T29C8 360:364 JLINK_ReadMemEx(0x20008F04, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F04) - Data: 30 8F 00 20 returns 0x04 (0000ms, 2815ms total)
T29C8 360:364 JLINK_ReadMemEx(0x20008F08, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F08) - Data: 00 00 00 00 returns 0x04 (0000ms, 2815ms total)
T29C8 360:364 JLINK_ReadMemEx(0x20008F0C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F0C) - Data: 5B 71 00 08 returns 0x04 (0000ms, 2815ms total)
T29C8 360:364 JLINK_ReadMemEx(0x20008F24, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F24) - Data: CF 71 00 08 returns 0x04 (0000ms, 2815ms total)
T29C8 360:364 JLINK_ReadMemEx(0x20008F10, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F10) - Data: 30 8F 00 20 returns 0x04 (0000ms, 2815ms total)
T29C8 360:364 JLINK_ReadMemEx(0x20008F14, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F14) - Data: 40 00 00 00 returns 0x04 (0000ms, 2815ms total)
T29C8 360:364 JLINK_ReadMemEx(0x20008F18, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F18) - Data: 00 00 00 00 returns 0x04 (0000ms, 2815ms total)
T29C8 360:364 JLINK_ReadMemEx(0x20008F1C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F1C) - Data: 00 00 00 00 returns 0x04 (0000ms, 2815ms total)
T29C8 360:364 JLINK_ReadMemEx(0x20008F20, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F20) - Data: 00 00 00 00 returns 0x04 (0000ms, 2815ms total)
T29C8 360:364 JLINK_ReadMemEx(0x20008F24, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F24) - Data: CF 71 00 08 returns 0x04 (0000ms, 2815ms total)
T29C8 360:364 JLINK_ReadMemEx(0x20008F2C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F2C) - Data: 57 8F 00 08 returns 0x04 (0000ms, 2815ms total)
T29C8 360:364 JLINK_ReadMemEx(0x20008F28, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F28) - Data: 03 00 00 00 returns 0x04 (0000ms, 2815ms total)
T29C8 360:364 JLINK_ReadMemEx(0x20008F2C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F2C) - Data: 57 8F 00 08 returns 0x04 (0000ms, 2815ms total)
T29C8 360:364 JLINK_ReadMemEx(0x20008F7C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20008F40) -- Updating C cache (64 bytes @ 0x20008F40) -- Read from C cache (4 bytes @ 0x20008F7C) - Data: E7 11 00 08 returns 0x04 (0001ms, 2816ms total)
T29C8 360:365 JLINK_ReadMemEx(0x20008F74, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F74) - Data: B8 8F 00 20 returns 0x04 (0000ms, 2816ms total)
T29C8 360:365 JLINK_ReadMemEx(0x20008F78, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F78) - Data: 00 00 00 00 returns 0x04 (0001ms, 2817ms total)
T29C8 360:366 JLINK_ReadMemEx(0x20008F7C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F7C) - Data: E7 11 00 08 returns 0x04 (0000ms, 2817ms total)
T29C8 360:366 JLINK_ReadMemEx(0x20008F84, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20008F80) -- Updating C cache (64 bytes @ 0x20008F80) -- Read from C cache (4 bytes @ 0x20008F84) - Data: F9 FF FF FF returns 0x04 (0000ms, 2817ms total)
T29C8 360:367 JLINK_ReadMemEx(0x20008FA0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FA0) - Data: A8 86 00 08 returns 0x04 (0000ms, 2817ms total)
T29C8 360:367 JLINK_ReadMemEx(0x20008FA4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FA4) - Data: 00 00 00 61 returns 0x04 (0000ms, 2817ms total)
T29C8 360:367 JLINK_ReadMemEx(0x20008F9C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F9C) - Data: AB 88 00 08 returns 0x04 (0000ms, 2817ms total)
T29C8 360:367 JLINK_ReadMemEx(0xE000ED28, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0xE000ED28) - Data: 00 00 00 00 returns 0x04 (0000ms, 2817ms total)
T29C8 360:368 JLINK_ReadMemEx(0x20008FA0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FA0) - Data: A8 86 00 08 returns 0x04 (0000ms, 2817ms total)
T29C8 360:368 JLINK_ReadMemEx(0x20008FA4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FA4) - Data: 00 00 00 61 returns 0x04 (0000ms, 2817ms total)
T29C8 360:368 JLINK_ReadMemEx(0x20008FB4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FB4) - Data: 55 4B 00 08 returns 0x04 (0000ms, 2817ms total)
T29C8 360:368 JLINK_ReadMemEx(0x20008FA8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FA8) - Data: 84 D1 00 08 returns 0x04 (0000ms, 2817ms total)
T29C8 360:368 JLINK_ReadMemEx(0x20008FAC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FAC) - Data: 84 D1 00 08 returns 0x04 (0000ms, 2817ms total)
T29C8 360:368 JLINK_ReadMemEx(0x20008FB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FB0) - Data: 00 00 00 00 returns 0x04 (0000ms, 2817ms total)
T29C8 360:368 JLINK_ReadMemEx(0x20008FB4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FB4) - Data: 55 4B 00 08 returns 0x04 (0000ms, 2817ms total)
T29C8 360:368 JLINK_ReadMemEx(0x20008FFC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20008FC0) -- Updating C cache (64 bytes @ 0x20008FC0) -- Read from C cache (4 bytes @ 0x20008FFC) - Data: EB 4A 00 08 returns 0x04 (0001ms, 2818ms total)
T29C8 360:369 JLINK_ReadMemEx(0x20008FFC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FFC) - Data: EB 4A 00 08 returns 0x04 (0000ms, 2818ms total)
T29C8 360:369 JLINK_ReadMemEx(0x20009004, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20009000) -- Updating C cache (64 bytes @ 0x20009000) -- Read from C cache (4 bytes @ 0x20009004) - Data: C1 75 00 08 returns 0x04 (0001ms, 2819ms total)
T29C8 360:370 JLINK_ReadMemEx(0x20009000, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20009000) - Data: 84 D1 00 08 returns 0x04 (0000ms, 2819ms total)
T29C8 360:370 JLINK_ReadMemEx(0x20009004, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20009004) - Data: C1 75 00 08 returns 0x04 (0000ms, 2819ms total)
T29C8 360:400 JLINK_ReadMemEx(0x20008F34, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x20008F34) - Data: 6F 06 C7 55 00 01 43 00 00 02 0A 3E 01 00 01 00 ... returns 0x20 (0000ms, 2819ms total)
T29C8 360:404 JLINK_ReadMemEx(0x20008F34, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x20008F34) - Data: 6F 06 C7 55 00 01 43 00 00 02 0A 3E 01 00 01 00 ... returns 0x20 (0000ms, 2819ms total)
T29C8 360:404 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000500) -- Updating C cache (64 bytes @ 0x20000500) -- Read from C cache (1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0002ms, 2821ms total)
T2914 363:475 JLINK_ReadMemEx(0x08006F2C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08006F00) -- Updating C cache (64 bytes @ 0x08006F00) -- Read from C cache (2 bytes @ 0x08006F2C) - Data: 1E 49 returns 0x02 (0003ms, 2824ms total)
T2914 363:479 JLINK_Go() -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) (0008ms, 2832ms total)
T2914 363:587 JLINK_IsHalted() returns FALSE (0001ms, 2833ms total)
T2914 363:688 JLINK_IsHalted() returns FALSE (0001ms, 2833ms total)
T2914 363:789 JLINK_IsHalted() returns FALSE (0001ms, 2833ms total)
T2914 363:890 JLINK_IsHalted() returns FALSE (0001ms, 2833ms total)
T2914 363:991 JLINK_IsHalted() returns FALSE (0001ms, 2833ms total)
T2914 364:092 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001004) - Data: 1C 5A 93 0A returns 1 (0001ms, 2833ms total)
T29C8 364:094 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2834ms total)
T2914 364:095 JLINK_IsHalted() returns FALSE (0001ms, 2835ms total)
T2914 364:196 JLINK_IsHalted() returns FALSE (0001ms, 2835ms total)
T2914 364:297 JLINK_IsHalted() returns FALSE (0001ms, 2835ms total)
T2914 364:398 JLINK_IsHalted() returns FALSE (0001ms, 2835ms total)
T2914 364:499 JLINK_IsHalted() returns FALSE (0001ms, 2835ms total)
T2914 364:600 JLINK_IsHalted() returns FALSE (0001ms, 2835ms total)
T2914 364:701 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2834ms total)
T29C8 364:701 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2835ms total)
T2914 364:702 JLINK_IsHalted() returns FALSE (0001ms, 2836ms total)
T2914 364:803 JLINK_IsHalted() returns FALSE (0001ms, 2836ms total)
T2914 364:904 JLINK_IsHalted() returns FALSE (0001ms, 2836ms total)
T2914 365:005 JLINK_IsHalted() returns FALSE (0001ms, 2836ms total)
T2914 365:106 JLINK_IsHalted() returns FALSE (0001ms, 2836ms total)
T2914 365:207 JLINK_IsHalted() returns FALSE (0001ms, 2836ms total)
T2914 365:308 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2835ms total)
T29C8 365:308 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2836ms total)
T2914 365:310 JLINK_IsHalted() returns FALSE (0000ms, 2836ms total)
T2914 365:411 JLINK_IsHalted() returns FALSE (0001ms, 2837ms total)
T2914 365:512 JLINK_IsHalted() returns FALSE (0001ms, 2837ms total)
T2914 365:613 JLINK_IsHalted() returns FALSE (0001ms, 2837ms total)
T2914 365:714 JLINK_IsHalted() returns FALSE (0001ms, 2837ms total)
T2914 365:815 JLINK_IsHalted() returns FALSE (0001ms, 2837ms total)
T2914 365:916 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2836ms total)
T29C8 365:916 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2837ms total)
T2914 365:917 JLINK_IsHalted() returns FALSE (0001ms, 2838ms total)
T2914 366:018 JLINK_IsHalted() returns FALSE (0001ms, 2838ms total)
T2914 366:119 JLINK_IsHalted() returns FALSE (0001ms, 2838ms total)
T2914 366:220 JLINK_IsHalted() returns FALSE (0001ms, 2838ms total)
T2914 366:321 JLINK_IsHalted() returns FALSE (0001ms, 2838ms total)
T2914 366:422 JLINK_IsHalted() returns FALSE (0001ms, 2838ms total)
T2914 366:523 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2837ms total)
T29C8 366:523 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2838ms total)
T2914 366:524 JLINK_IsHalted() returns FALSE (0001ms, 2839ms total)
T2914 366:625 JLINK_IsHalted() returns FALSE (0001ms, 2839ms total)
T2914 366:726 JLINK_IsHalted() returns FALSE (0001ms, 2839ms total)
T2914 366:827 JLINK_IsHalted() returns FALSE (0001ms, 2839ms total)
T2914 366:928 JLINK_IsHalted() returns FALSE (0001ms, 2839ms total)
T2914 367:029 JLINK_IsHalted() returns FALSE (0001ms, 2839ms total)
T2914 367:130 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2838ms total)
T29C8 367:130 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2839ms total)
T2914 367:131 JLINK_IsHalted() returns FALSE (0001ms, 2840ms total)
T2914 367:232 JLINK_IsHalted() returns FALSE (0001ms, 2840ms total)
T2914 367:333 JLINK_IsHalted() returns FALSE (0001ms, 2840ms total)
T2914 367:434 JLINK_IsHalted() returns FALSE (0001ms, 2840ms total)
T2914 367:535 JLINK_IsHalted() returns FALSE (0002ms, 2841ms total)
T2914 367:637 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2839ms total)
T29C8 367:637 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0002ms, 2841ms total)
T2914 367:639 JLINK_IsHalted() returns FALSE (0001ms, 2842ms total)
T2914 367:740 JLINK_IsHalted() returns FALSE (0001ms, 2842ms total)
T2914 367:841 JLINK_IsHalted() returns FALSE (0001ms, 2842ms total)
T2914 367:942 JLINK_IsHalted() returns FALSE (0001ms, 2842ms total)
T2914 368:043 JLINK_IsHalted() returns FALSE (0001ms, 2842ms total)
T2914 368:144 JLINK_IsHalted() returns FALSE (0001ms, 2842ms total)
T2914 368:245 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2841ms total)
T29C8 368:245 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2842ms total)
T2914 368:246 JLINK_IsHalted() returns FALSE (0001ms, 2843ms total)
T2914 368:347 JLINK_IsHalted() returns FALSE (0001ms, 2843ms total)
T2914 368:448 JLINK_IsHalted() returns FALSE (0001ms, 2843ms total)
T2914 368:549 JLINK_IsHalted() returns FALSE (0001ms, 2843ms total)
T2914 368:650 JLINK_IsHalted() returns FALSE (0001ms, 2843ms total)
T2914 368:751 JLINK_IsHalted() returns FALSE (0001ms, 2843ms total)
T2914 368:852 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2842ms total)
T29C8 368:852 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2843ms total)
T2914 368:853 JLINK_IsHalted() returns FALSE (0001ms, 2844ms total)
T2914 368:954 JLINK_IsHalted() returns FALSE (0001ms, 2844ms total)
T2914 369:055 JLINK_IsHalted() returns FALSE (0001ms, 2844ms total)
T2914 369:156 JLINK_IsHalted() returns FALSE (0001ms, 2844ms total)
T2914 369:258 JLINK_IsHalted() returns FALSE (0001ms, 2844ms total)
T2914 369:359 JLINK_IsHalted() returns FALSE (0001ms, 2844ms total)
T2914 369:460 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2843ms total)
T29C8 369:460 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2844ms total)
T2914 369:461 JLINK_IsHalted() returns FALSE (0001ms, 2845ms total)
T2914 369:562 JLINK_IsHalted() returns FALSE (0001ms, 2845ms total)
T2914 369:663 JLINK_IsHalted() returns FALSE (0001ms, 2845ms total)
T2914 369:764 JLINK_IsHalted() returns FALSE (0001ms, 2845ms total)
T2914 369:865 JLINK_IsHalted() returns FALSE (0001ms, 2845ms total)
T2914 369:966 JLINK_IsHalted() returns FALSE (0001ms, 2845ms total)
T2914 370:067 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2844ms total)
T29C8 370:067 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0002ms, 2846ms total)
T2914 370:069 JLINK_IsHalted() returns FALSE (0001ms, 2847ms total)
T2914 370:170 JLINK_IsHalted() returns FALSE (0001ms, 2847ms total)
T2914 370:271 JLINK_IsHalted() returns FALSE (0001ms, 2847ms total)
T2914 370:372 JLINK_IsHalted() returns FALSE (0001ms, 2847ms total)
T2914 370:473 JLINK_IsHalted() returns FALSE (0001ms, 2847ms total)
T2914 370:574 JLINK_IsHalted() returns FALSE (0001ms, 2847ms total)
T2914 370:675 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2846ms total)
T29C8 370:675 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2847ms total)
T2914 370:677 JLINK_IsHalted() returns FALSE (0000ms, 2847ms total)
T2914 370:778 JLINK_IsHalted() returns FALSE (0001ms, 2848ms total)
T2914 370:879 JLINK_IsHalted() returns FALSE (0001ms, 2848ms total)
T2914 370:980 JLINK_IsHalted() returns FALSE (0001ms, 2848ms total)
T2914 371:082 JLINK_IsHalted() returns FALSE (0001ms, 2848ms total)
T2914 371:183 JLINK_IsHalted() returns FALSE (0001ms, 2848ms total)
T2914 371:284 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2847ms total)
T29C8 371:284 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2848ms total)
T2914 371:285 JLINK_IsHalted() returns FALSE (0001ms, 2849ms total)
T2914 371:386 JLINK_IsHalted() returns FALSE (0001ms, 2849ms total)
T2914 371:487 JLINK_IsHalted() returns FALSE (0001ms, 2849ms total)
T2914 371:588 JLINK_IsHalted() returns FALSE (0001ms, 2849ms total)
T2914 371:689 JLINK_IsHalted() returns FALSE (0001ms, 2849ms total)
T2914 371:790 JLINK_IsHalted() returns FALSE (0001ms, 2849ms total)
T2914 371:891 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2848ms total)
T29C8 371:891 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2849ms total)
T2914 371:892 JLINK_IsHalted() returns FALSE (0001ms, 2850ms total)
T2914 371:993 JLINK_IsHalted() returns FALSE (0001ms, 2850ms total)
T2914 372:094 JLINK_IsHalted() returns FALSE (0001ms, 2850ms total)
T2914 372:195 JLINK_IsHalted() returns FALSE (0001ms, 2850ms total)
T2914 372:296 JLINK_IsHalted() returns FALSE (0001ms, 2850ms total)
T2914 372:397 JLINK_IsHalted() returns FALSE (0001ms, 2850ms total)
T2914 372:498 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2849ms total)
T29C8 372:500 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2850ms total)
T2914 372:501 JLINK_IsHalted() returns FALSE (0001ms, 2851ms total)
T2914 372:602 JLINK_IsHalted() returns FALSE (0001ms, 2851ms total)
T2914 372:703 JLINK_IsHalted() returns FALSE (0001ms, 2851ms total)
T2914 372:804 JLINK_IsHalted() returns FALSE (0001ms, 2851ms total)
T2914 372:905 JLINK_IsHalted() returns FALSE (0001ms, 2851ms total)
T2914 373:006 JLINK_IsHalted() returns FALSE (0001ms, 2851ms total)
T2914 373:107 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2850ms total)
T29C8 373:107 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2851ms total)
T2914 373:109 JLINK_IsHalted() returns FALSE (0001ms, 2852ms total)
T2914 373:210 JLINK_IsHalted() returns FALSE (0001ms, 2852ms total)
T2914 373:311 JLINK_IsHalted() returns FALSE (0001ms, 2852ms total)
T2914 373:412 JLINK_IsHalted() returns FALSE (0001ms, 2852ms total)
T2914 373:513 JLINK_IsHalted() returns FALSE (0001ms, 2852ms total)
T2914 373:614 JLINK_IsHalted() returns FALSE (0001ms, 2852ms total)
T2914 373:715 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2851ms total)
T29C8 373:715 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2852ms total)
T2914 373:717 JLINK_IsHalted() returns FALSE (0000ms, 2852ms total)
T2914 373:818 JLINK_IsHalted() returns FALSE (0001ms, 2853ms total)
T2914 373:919 JLINK_IsHalted() returns FALSE (0001ms, 2853ms total)
T2914 374:020 JLINK_IsHalted() returns FALSE (0001ms, 2853ms total)
T2914 374:121 JLINK_IsHalted() returns FALSE (0001ms, 2853ms total)
T2914 374:222 JLINK_IsHalted() returns FALSE (0001ms, 2853ms total)
T2914 374:323 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2852ms total)
T29C8 374:323 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0002ms, 2854ms total)
T2914 374:325 JLINK_IsHalted() returns FALSE (0001ms, 2855ms total)
T2914 374:426 JLINK_IsHalted() returns FALSE (0001ms, 2855ms total)
T2914 374:527 JLINK_IsHalted() returns FALSE (0001ms, 2855ms total)
T2914 374:628 JLINK_IsHalted() returns FALSE (0001ms, 2855ms total)
T2914 374:730 JLINK_IsHalted() returns FALSE (0001ms, 2855ms total)
T2914 374:831 JLINK_IsHalted() returns FALSE (0002ms, 2856ms total)
T2914 374:933 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2854ms total)
T29C8 374:933 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2855ms total)
T2914 374:934 JLINK_IsHalted() returns FALSE (0001ms, 2856ms total)
T2914 375:035 JLINK_IsHalted() returns FALSE (0001ms, 2856ms total)
T2914 375:136 JLINK_IsHalted() returns FALSE (0001ms, 2856ms total)
T2914 375:237 JLINK_IsHalted() returns FALSE (0001ms, 2856ms total)
T2914 375:338 JLINK_IsHalted() returns FALSE (0001ms, 2856ms total)
T2914 375:439 JLINK_IsHalted() returns FALSE (0001ms, 2856ms total)
T2914 375:540 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2855ms total)
T29C8 375:540 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2856ms total)
T2914 375:541 JLINK_IsHalted() returns FALSE (0001ms, 2857ms total)
T2914 375:642 JLINK_IsHalted() returns FALSE (0001ms, 2857ms total)
T2914 375:743 JLINK_IsHalted() returns FALSE (0001ms, 2857ms total)
T2914 375:844 JLINK_IsHalted() returns FALSE (0001ms, 2857ms total)
T2914 375:945 JLINK_IsHalted() returns FALSE (0001ms, 2857ms total)
T2914 376:046 JLINK_IsHalted() returns FALSE (0001ms, 2857ms total)
T2914 376:147 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2856ms total)
T29C8 376:147 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2857ms total)
T2914 376:149 JLINK_IsHalted() returns FALSE (0000ms, 2857ms total)
T2914 376:249 JLINK_IsHalted() returns FALSE (0001ms, 2858ms total)
T2914 376:350 JLINK_IsHalted() returns FALSE (0001ms, 2858ms total)
T2914 376:451 JLINK_IsHalted() returns FALSE (0001ms, 2858ms total)
T2914 376:552 JLINK_IsHalted() returns FALSE (0001ms, 2858ms total)
T2914 376:653 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2857ms total)
T29C8 376:653 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2858ms total)
T2914 376:654 JLINK_IsHalted() returns FALSE (0001ms, 2859ms total)
T2914 376:755 JLINK_IsHalted() returns FALSE (0001ms, 2859ms total)
T2914 376:856 JLINK_IsHalted() returns FALSE (0001ms, 2859ms total)
T2914 376:957 JLINK_IsHalted() returns FALSE (0001ms, 2859ms total)
T2914 377:058 JLINK_IsHalted() returns FALSE (0001ms, 2859ms total)
T2914 377:159 JLINK_IsHalted() returns FALSE (0001ms, 2859ms total)
T2914 377:260 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2858ms total)
T29C8 377:260 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2859ms total)
T2914 377:261 JLINK_IsHalted() returns FALSE (0003ms, 2862ms total)
T2914 377:364 JLINK_IsHalted() returns FALSE (0001ms, 2860ms total)
T2914 377:465 JLINK_IsHalted() returns FALSE (0001ms, 2860ms total)
T2914 377:566 JLINK_IsHalted() returns FALSE (0001ms, 2860ms total)
T2914 377:667 JLINK_IsHalted() returns FALSE (0001ms, 2860ms total)
T2914 377:768 JLINK_IsHalted() returns FALSE (0002ms, 2861ms total)
T2914 377:870 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2859ms total)
T29C8 377:870 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2860ms total)
T2914 377:871 JLINK_IsHalted() returns FALSE (0001ms, 2861ms total)
T2914 377:972 JLINK_IsHalted() returns FALSE (0001ms, 2861ms total)
T2914 378:073 JLINK_IsHalted() returns FALSE (0001ms, 2861ms total)
T2914 378:174 JLINK_IsHalted() returns FALSE (0001ms, 2861ms total)
T2914 378:275 JLINK_IsHalted() returns FALSE (0001ms, 2861ms total)
T2914 378:376 JLINK_IsHalted() returns FALSE (0001ms, 2861ms total)
T2914 378:477 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2860ms total)
T29C8 378:477 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2861ms total)
T2914 378:478 JLINK_IsHalted() returns FALSE (0001ms, 2862ms total)
T2914 378:579 JLINK_IsHalted() returns FALSE (0001ms, 2862ms total)
T2914 378:680 JLINK_IsHalted() returns FALSE (0001ms, 2862ms total)
T2914 378:781 JLINK_IsHalted() returns FALSE (0001ms, 2862ms total)
T2914 378:882 JLINK_IsHalted() returns FALSE (0001ms, 2862ms total)
T2914 378:983 JLINK_IsHalted() returns FALSE (0001ms, 2862ms total)
T2914 379:084 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2861ms total)
T29C8 379:084 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2862ms total)
T2914 379:085 JLINK_IsHalted() returns FALSE (0001ms, 2863ms total)
T2914 379:186 JLINK_IsHalted() returns FALSE (0001ms, 2863ms total)
T2914 379:287 JLINK_IsHalted() returns FALSE (0001ms, 2863ms total)
T2914 379:388 JLINK_IsHalted() returns FALSE (0001ms, 2863ms total)
T2914 379:489 JLINK_IsHalted() returns FALSE (0001ms, 2863ms total)
T2914 379:590 JLINK_IsHalted() returns FALSE (0001ms, 2863ms total)
T2914 379:691 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2862ms total)
T29C8 379:691 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0002ms, 2864ms total)
T2914 379:693 JLINK_IsHalted() returns FALSE (0001ms, 2865ms total)
T2914 379:794 JLINK_IsHalted() returns FALSE (0002ms, 2866ms total)
T2914 379:896 JLINK_IsHalted() returns FALSE (0001ms, 2865ms total)
T2914 379:997 JLINK_IsHalted() returns FALSE (0001ms, 2865ms total)
T2914 380:098 JLINK_IsHalted() returns FALSE (0001ms, 2865ms total)
T2914 380:199 JLINK_IsHalted() returns FALSE (0001ms, 2865ms total)
T2914 380:300 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2864ms total)
T29C8 380:300 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2865ms total)
T2914 380:301 JLINK_IsHalted() returns FALSE (0001ms, 2866ms total)
T2914 380:402 JLINK_IsHalted() returns FALSE (0001ms, 2866ms total)
T2914 380:503 JLINK_IsHalted() returns FALSE (0001ms, 2866ms total)
T2914 380:604 JLINK_IsHalted() returns FALSE (0001ms, 2866ms total)
T2914 380:705 JLINK_IsHalted() returns FALSE (0001ms, 2866ms total)
T2914 380:806 JLINK_IsHalted() returns FALSE (0001ms, 2866ms total)
T2914 380:907 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2865ms total)
T29C8 380:907 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2866ms total)
T2914 380:909 JLINK_IsHalted() returns FALSE (0001ms, 2867ms total)
T2914 381:010 JLINK_IsHalted() returns FALSE (0001ms, 2867ms total)
T2914 381:111 JLINK_IsHalted() returns FALSE (0001ms, 2867ms total)
T2914 381:212 JLINK_IsHalted() returns FALSE (0001ms, 2867ms total)
T2914 381:313 JLINK_IsHalted() returns FALSE (0001ms, 2867ms total)
T2914 381:414 JLINK_IsHalted() returns FALSE (0001ms, 2867ms total)
T2914 381:515 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2866ms total)
T29C8 381:515 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2867ms total)
T2914 381:516 JLINK_IsHalted() returns FALSE (0001ms, 2868ms total)
T2914 381:617 JLINK_IsHalted() returns FALSE (0001ms, 2868ms total)
T2914 381:718 JLINK_IsHalted() returns FALSE (0001ms, 2868ms total)
T2914 381:820 JLINK_IsHalted() returns FALSE (0001ms, 2868ms total)
T2914 381:921 JLINK_IsHalted() returns FALSE (0001ms, 2868ms total)
T2914 382:022 JLINK_IsHalted() returns FALSE (0001ms, 2868ms total)
T2914 382:123 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2867ms total)
T29C8 382:123 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2868ms total)
T2914 382:124 JLINK_IsHalted() returns FALSE (0001ms, 2869ms total)
T2914 382:225 JLINK_IsHalted() returns FALSE (0001ms, 2869ms total)
T2914 382:326 JLINK_IsHalted() returns FALSE (0001ms, 2869ms total)
T2914 382:427 JLINK_IsHalted() returns FALSE (0001ms, 2869ms total)
T2914 382:528 JLINK_IsHalted() returns FALSE (0001ms, 2869ms total)
T2914 382:630 JLINK_IsHalted() returns FALSE (0001ms, 2869ms total)
T2914 382:731 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2868ms total)
T29C8 382:731 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0002ms, 2870ms total)
T2914 382:733 JLINK_IsHalted() returns FALSE (0001ms, 2871ms total)
T2914 382:834 JLINK_IsHalted() returns FALSE (0001ms, 2871ms total)
T2914 382:935 JLINK_IsHalted() returns FALSE (0001ms, 2871ms total)
T2914 383:036 JLINK_IsHalted() returns FALSE (0001ms, 2871ms total)
T2914 383:137 JLINK_IsHalted() returns FALSE (0001ms, 2871ms total)
T2914 383:238 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2870ms total)
T29C8 383:238 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2871ms total)
T2914 383:239 JLINK_IsHalted() returns FALSE (0001ms, 2872ms total)
T2914 383:340 JLINK_IsHalted() returns FALSE (0001ms, 2872ms total)
T2914 383:441 JLINK_IsHalted() returns FALSE (0001ms, 2872ms total)
T2914 383:542 JLINK_IsHalted() returns FALSE (0001ms, 2872ms total)
T2914 383:643 JLINK_IsHalted() returns FALSE (0001ms, 2872ms total)
T2914 383:744 JLINK_IsHalted() returns FALSE (0001ms, 2872ms total)
T2914 383:845 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2871ms total)
T29C8 383:845 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2872ms total)
T2914 383:847 JLINK_IsHalted() returns FALSE (0000ms, 2872ms total)
T2914 383:947 JLINK_IsHalted() returns FALSE (0001ms, 2873ms total)
T2914 384:048 JLINK_IsHalted() returns FALSE (0002ms, 2874ms total)
T2914 384:150 JLINK_IsHalted() returns FALSE (0002ms, 2874ms total)
T2914 384:252 JLINK_IsHalted() returns FALSE (0001ms, 2873ms total)
T2914 384:353 JLINK_IsHalted() returns FALSE (0001ms, 2873ms total)
T2914 384:454 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2872ms total)
T29C8 384:454 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2873ms total)
T2914 384:455 JLINK_IsHalted() returns FALSE (0001ms, 2874ms total)
T2914 384:556 JLINK_IsHalted() returns FALSE (0001ms, 2874ms total)
T2914 384:657 JLINK_IsHalted() returns FALSE (0001ms, 2874ms total)
T2914 384:758 JLINK_IsHalted() returns FALSE (0001ms, 2874ms total)
T2914 384:859 JLINK_IsHalted() returns FALSE (0001ms, 2874ms total)
T2914 384:960 JLINK_IsHalted() returns FALSE (0001ms, 2874ms total)
T2914 385:061 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2873ms total)
T29C8 385:061 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2874ms total)
T2914 385:062 JLINK_IsHalted() returns FALSE (0001ms, 2875ms total)
T2914 385:163 JLINK_IsHalted() returns FALSE (0001ms, 2875ms total)
T2914 385:264 JLINK_IsHalted() returns FALSE (0001ms, 2875ms total)
T2914 385:365 JLINK_IsHalted() returns FALSE (0001ms, 2875ms total)
T2914 385:466 JLINK_IsHalted() returns FALSE (0001ms, 2875ms total)
T2914 385:567 JLINK_IsHalted() returns FALSE (0001ms, 2875ms total)
T2914 385:668 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2874ms total)
T29C8 385:668 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2875ms total)
T2914 385:669 JLINK_IsHalted() returns FALSE (0001ms, 2876ms total)
T2914 385:770 JLINK_IsHalted() returns FALSE (0001ms, 2876ms total)
T2914 385:871 JLINK_IsHalted() returns FALSE (0001ms, 2876ms total)
T2914 385:972 JLINK_IsHalted() returns FALSE (0001ms, 2876ms total)
T2914 386:073 JLINK_IsHalted() returns FALSE (0001ms, 2876ms total)
T2914 386:174 JLINK_IsHalted() returns FALSE (0001ms, 2876ms total)
T2914 386:275 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2875ms total)
T29C8 386:275 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2876ms total)
T2914 386:277 JLINK_IsHalted() returns FALSE (0000ms, 2876ms total)
T2914 386:377 JLINK_IsHalted() returns FALSE (0001ms, 2877ms total)
T2914 386:478 JLINK_IsHalted() returns FALSE (0001ms, 2877ms total)
T2914 386:579 JLINK_IsHalted() returns FALSE (0001ms, 2877ms total)
T2914 386:680 JLINK_IsHalted() returns FALSE (0001ms, 2877ms total)
T2914 386:781 JLINK_IsHalted() returns FALSE (0001ms, 2877ms total)
T2914 386:882 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2876ms total)
T29C8 386:883 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2877ms total)
T2914 386:884 JLINK_IsHalted() returns FALSE (0001ms, 2878ms total)
T2914 386:985 JLINK_IsHalted() returns FALSE (0001ms, 2878ms total)
T2914 387:086 JLINK_IsHalted() returns FALSE (0001ms, 2878ms total)
T2914 387:187 JLINK_IsHalted() returns FALSE (0001ms, 2878ms total)
T2914 387:288 JLINK_IsHalted() returns FALSE (0001ms, 2878ms total)
T2914 387:389 JLINK_IsHalted() returns FALSE (0001ms, 2878ms total)
T2914 387:490 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2877ms total)
T29C8 387:492 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2878ms total)
T2914 387:494 JLINK_IsHalted() returns FALSE (0001ms, 2879ms total)
T2914 387:596 JLINK_IsHalted() returns FALSE (0001ms, 2879ms total)
T2914 387:697 JLINK_IsHalted() returns FALSE (0001ms, 2879ms total)
T2914 387:798 JLINK_IsHalted() returns FALSE (0001ms, 2879ms total)
T2914 387:900 JLINK_IsHalted() returns FALSE (0001ms, 2879ms total)
T2914 388:001 JLINK_IsHalted() returns FALSE (0001ms, 2879ms total)
T2914 388:102 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2878ms total)
T29C8 388:102 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2879ms total)
T2914 388:103 JLINK_IsHalted() returns FALSE (0001ms, 2880ms total)
T2914 388:204 JLINK_IsHalted() returns FALSE (0001ms, 2880ms total)
T2914 388:305 JLINK_IsHalted() returns FALSE (0001ms, 2880ms total)
T2914 388:406 JLINK_IsHalted() returns FALSE (0001ms, 2880ms total)
T2914 388:507 JLINK_IsHalted() returns FALSE (0001ms, 2880ms total)
T2914 388:608 JLINK_IsHalted() returns FALSE (0001ms, 2880ms total)
T2914 388:709 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2879ms total)
T29C8 388:709 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2880ms total)
T2914 388:710 JLINK_IsHalted() returns FALSE (0002ms, 2882ms total)
T2914 388:812 JLINK_IsHalted() returns FALSE (0001ms, 2881ms total)
T2914 388:913 JLINK_IsHalted() returns FALSE (0001ms, 2881ms total)
T2914 389:014 JLINK_IsHalted() returns FALSE (0001ms, 2881ms total)
T2914 389:115 JLINK_IsHalted() returns FALSE (0001ms, 2881ms total)
T2914 389:216 JLINK_IsHalted() returns FALSE (0001ms, 2881ms total)
T2914 389:317 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2880ms total)
T29C8 389:317 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2881ms total)
T2914 389:318 JLINK_IsHalted() returns FALSE (0001ms, 2882ms total)
T2914 389:419 JLINK_IsHalted() returns FALSE (0001ms, 2882ms total)
T2914 389:520 JLINK_IsHalted() returns FALSE (0001ms, 2882ms total)
T2914 389:621 JLINK_IsHalted() returns FALSE (0001ms, 2882ms total)
T2914 389:722 JLINK_IsHalted() returns FALSE (0002ms, 2883ms total)
T2914 389:824 JLINK_IsHalted() returns FALSE (0001ms, 2882ms total)
T2914 389:925 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2881ms total)
T29C8 389:925 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0002ms, 2883ms total)
T2914 389:927 JLINK_IsHalted() returns FALSE (0001ms, 2884ms total)
T2914 390:028 JLINK_IsHalted() returns FALSE (0001ms, 2884ms total)
T2914 390:129 JLINK_IsHalted() returns FALSE (0001ms, 2884ms total)
T2914 390:230 JLINK_IsHalted() returns FALSE (0001ms, 2884ms total)
T2914 390:331 JLINK_IsHalted() returns FALSE (0001ms, 2884ms total)
T2914 390:432 JLINK_IsHalted() returns FALSE (0001ms, 2884ms total)
T2914 390:533 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2883ms total)
T29C8 390:533 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2884ms total)
T2914 390:534 JLINK_IsHalted() returns FALSE (0001ms, 2885ms total)
T2914 390:635 JLINK_IsHalted() returns FALSE (0002ms, 2886ms total)
T2914 390:737 JLINK_IsHalted() returns FALSE (0001ms, 2885ms total)
T2914 390:838 JLINK_IsHalted() returns FALSE (0001ms, 2885ms total)
T2914 390:939 JLINK_IsHalted() returns FALSE (0001ms, 2885ms total)
T2914 391:040 JLINK_IsHalted() returns FALSE (0001ms, 2885ms total)
T2914 391:141 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2884ms total)
T29C8 391:141 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0002ms, 2886ms total)
T2914 391:143 JLINK_IsHalted() returns FALSE (0001ms, 2887ms total)
T2914 391:244 JLINK_IsHalted() returns FALSE (0001ms, 2887ms total)
T2914 391:345 JLINK_IsHalted() returns FALSE (0001ms, 2887ms total)
T2914 391:446 JLINK_IsHalted() returns FALSE (0001ms, 2887ms total)
T2914 391:547 JLINK_IsHalted() returns FALSE (0001ms, 2887ms total)
T2914 391:648 JLINK_IsHalted() returns FALSE (0001ms, 2887ms total)
T2914 391:749 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2886ms total)
T29C8 391:749 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2887ms total)
T2914 391:750 JLINK_IsHalted() returns FALSE (0001ms, 2888ms total)
T2914 391:851 JLINK_IsHalted() returns FALSE (0001ms, 2888ms total)
T2914 391:952 JLINK_IsHalted() returns FALSE (0001ms, 2888ms total)
T2914 392:053 JLINK_IsHalted() returns FALSE (0001ms, 2888ms total)
T2914 392:154 JLINK_IsHalted() returns FALSE (0001ms, 2888ms total)
T2914 392:255 JLINK_IsHalted() returns FALSE (0001ms, 2888ms total)
T2914 392:356 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2887ms total)
T29C8 392:356 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0002ms, 2889ms total)
T2914 392:358 JLINK_IsHalted() returns FALSE (0001ms, 2890ms total)
T2914 392:459 JLINK_IsHalted() returns FALSE (0001ms, 2890ms total)
T2914 392:560 JLINK_IsHalted() returns FALSE (0001ms, 2890ms total)
T2914 392:661 JLINK_IsHalted() returns FALSE (0001ms, 2890ms total)
T2914 392:762 JLINK_IsHalted() returns FALSE (0001ms, 2890ms total)
T2914 392:863 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2889ms total)
T29C8 392:863 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2890ms total)
T2914 392:864 JLINK_IsHalted() returns FALSE (0001ms, 2891ms total)
T2914 392:965 JLINK_IsHalted() returns FALSE (0001ms, 2891ms total)
T2914 393:066 JLINK_IsHalted() returns FALSE (0001ms, 2891ms total)
T2914 393:167 JLINK_IsHalted() returns FALSE (0001ms, 2891ms total)
T2914 393:268 JLINK_IsHalted() returns FALSE (0001ms, 2891ms total)
T2914 393:369 JLINK_IsHalted() returns FALSE (0001ms, 2891ms total)
T2914 393:470 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2890ms total)
T29C8 393:470 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2891ms total)
T2914 393:471 JLINK_IsHalted() returns FALSE (0001ms, 2892ms total)
T2914 393:572 JLINK_IsHalted() returns FALSE (0001ms, 2892ms total)
T2914 393:673 JLINK_IsHalted() returns FALSE (0001ms, 2892ms total)
T2914 393:774 JLINK_IsHalted() returns FALSE (0001ms, 2892ms total)
T2914 393:875 JLINK_IsHalted() returns FALSE (0001ms, 2892ms total)
T2914 393:976 JLINK_IsHalted() returns FALSE (0001ms, 2892ms total)
T2914 394:077 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2891ms total)
T29C8 394:077 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2892ms total)
T2914 394:078 JLINK_IsHalted() returns FALSE (0002ms, 2894ms total)
T2914 394:180 JLINK_IsHalted() returns FALSE (0001ms, 2893ms total)
T29C8 394:246 JLINK_ReadMemEx(0x200006F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200006F8) - Data: 00 returns 0x01 (0002ms, 2894ms total)
T2914 394:281 JLINK_IsHalted() returns FALSE (0001ms, 2895ms total)
T2914 394:382 JLINK_IsHalted() returns FALSE (0001ms, 2895ms total)
T2914 394:483 JLINK_IsHalted() returns FALSE (0001ms, 2895ms total)
T2914 394:584 JLINK_IsHalted() returns FALSE (0001ms, 2895ms total)
T2914 394:685 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2894ms total)
T29C8 394:685 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2895ms total)
T2914 394:686 JLINK_IsHalted() returns FALSE (0001ms, 2896ms total)
T2914 394:787 JLINK_IsHalted() returns FALSE (0001ms, 2896ms total)
T2914 394:888 JLINK_IsHalted() returns FALSE (0001ms, 2896ms total)
T29C8 394:983 JLINK_ReadMemEx(0x200006F8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200006F8) - Data: 00 returns 0x01 (0002ms, 2897ms total)
T2914 394:989 JLINK_IsHalted() returns FALSE (0001ms, 2898ms total)
T2914 395:090 JLINK_IsHalted() returns FALSE (0001ms, 2898ms total)
T2914 395:191 JLINK_IsHalted() returns FALSE (0001ms, 2898ms total)
T2914 395:292 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2897ms total)
T29C8 395:292 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2898ms total)
T2914 395:293 JLINK_IsHalted() returns FALSE (0002ms, 2900ms total)
T29C8 395:369 JLINK_ReadMemEx(0x20002068, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20002068) - Data: 03 returns 0x01 (0001ms, 2899ms total)
T29C8 395:371 JLINK_ReadMemEx(0x20002069, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20002069) - Data: FF returns 0x01 (0000ms, 2899ms total)
T29C8 395:371 JLINK_ReadMemEx(0x2000206A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000206A) - Data: FF returns 0x01 (0001ms, 2900ms total)
T29C8 395:372 JLINK_ReadMemEx(0x2000206B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000206B) - Data: FF returns 0x01 (0001ms, 2901ms total)
T29C8 395:374 JLINK_ReadMemEx(0x2000206C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000206C) - Data: 1C returns 0x01 (0000ms, 2901ms total)
T29C8 395:375 JLINK_ReadMemEx(0x2000206D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000206D) - Data: 00 returns 0x01 (0000ms, 2901ms total)
T29C8 395:376 JLINK_ReadMemEx(0x2000206E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000206E) - Data: 00 returns 0x01 (0000ms, 2902ms total)
T29C8 395:377 JLINK_ReadMemEx(0x2000206F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000206F) - Data: 00 returns 0x01 (0000ms, 2902ms total)
T29C8 395:378 JLINK_ReadMemEx(0x20002070, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20002070) - Data: 01 returns 0x01 (0000ms, 2903ms total)
T29C8 395:379 JLINK_ReadMemEx(0x20002071, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20002071) - Data: 01 returns 0x01 (0000ms, 2903ms total)
T29C8 395:380 JLINK_ReadMemEx(0x20002072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20002072) - Data: 00 returns 0x01 (0000ms, 2903ms total)
T29C8 395:381 JLINK_ReadMemEx(0x20002073, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20002073) - Data: FF returns 0x01 (0000ms, 2903ms total)
T29C8 395:382 JLINK_ReadMemEx(0x20002074, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20002074) - Data: 00 returns 0x01 (0000ms, 2903ms total)
T29C8 395:383 JLINK_ReadMemEx(0x20002075, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20002075) - Data: 00 returns 0x01 (0000ms, 2903ms total)
T29C8 395:383 JLINK_ReadMemEx(0x20002076, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20002076) - Data: 00 returns 0x01 (0001ms, 2904ms total)
T29C8 395:385 JLINK_ReadMemEx(0x20002077, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20002077) - Data: 00 returns 0x01 (0000ms, 2904ms total)
T29C8 395:385 JLINK_ReadMemEx(0x20002078, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20002078) - Data: 00 returns 0x01 (0001ms, 2905ms total)
T29C8 395:386 JLINK_ReadMemEx(0x20002079, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20002079) - Data: 00 returns 0x01 (0001ms, 2906ms total)
T29C8 395:387 JLINK_ReadMemEx(0x2000207A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000207A) - Data: 00 returns 0x01 (0001ms, 2907ms total)
T29C8 395:388 JLINK_ReadMemEx(0x2000207B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000207B) - Data: 00 returns 0x01 (0001ms, 2908ms total)
T29C8 395:389 JLINK_ReadMemEx(0x2000207C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000207C) - Data: 00 returns 0x01 (0001ms, 2909ms total)
T29C8 395:390 JLINK_ReadMemEx(0x2000207D, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000207D) - Data: 00 returns 0x01 (0001ms, 2910ms total)
T29C8 395:391 JLINK_ReadMemEx(0x2000207E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000207E) - Data: 00 returns 0x01 (0001ms, 2911ms total)
T29C8 395:393 JLINK_ReadMemEx(0x2000207F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000207F) - Data: 00 returns 0x01 (0000ms, 2912ms total)
T29C8 395:393 JLINK_ReadMemEx(0x20002080, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20002080) - Data: 00 returns 0x01 (0001ms, 2913ms total)
T2914 395:395 JLINK_IsHalted() returns FALSE (0000ms, 2913ms total)
T29C8 395:395 JLINK_ReadMemEx(0x20002081, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20002081) - Data: 00 returns 0x01 (0001ms, 2914ms total)
T29C8 395:397 JLINK_ReadMemEx(0x20002082, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20002082) - Data: 00 returns 0x01 (0000ms, 2914ms total)
T29C8 395:398 JLINK_ReadMemEx(0x20002083, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20002083) - Data: 00 returns 0x01 (0000ms, 2914ms total)
T29C8 395:399 JLINK_ReadMemEx(0x20002084, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20002084) - Data: 00 returns 0x01 (0000ms, 2914ms total)
T29C8 395:400 JLINK_ReadMemEx(0x20002085, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20002085) - Data: 00 returns 0x01 (0000ms, 2914ms total)
T29C8 395:400 JLINK_ReadMemEx(0x20002086, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20002086) - Data: 00 returns 0x01 (0002ms, 2916ms total)
T29C8 395:402 JLINK_ReadMemEx(0x20002087, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20002087) - Data: 00 returns 0x01 (0000ms, 2916ms total)
T29C8 395:402 JLINK_ReadMemEx(0x20002088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20002088) - Data: 00 returns 0x01 (0002ms, 2918ms total)
T2914 395:495 JLINK_IsHalted() returns FALSE (0001ms, 2919ms total)
T2914 395:596 JLINK_IsHalted() returns FALSE (0001ms, 2919ms total)
T2914 395:698 JLINK_IsHalted() returns FALSE (0001ms, 2919ms total)
T2914 395:799 JLINK_IsHalted() returns FALSE (0001ms, 2919ms total)
T2914 395:900 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2918ms total)
T29C8 395:900 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2919ms total)
T2914 395:901 JLINK_IsHalted() returns FALSE (0002ms, 2921ms total)
T2914 396:003 JLINK_IsHalted() returns FALSE (0001ms, 2920ms total)
T2914 396:104 JLINK_IsHalted() returns FALSE (0001ms, 2920ms total)
T2914 396:205 JLINK_IsHalted() returns FALSE (0001ms, 2920ms total)
T2914 396:306 JLINK_IsHalted() returns FALSE (0001ms, 2920ms total)
T2914 396:407 JLINK_IsHalted() returns FALSE (0001ms, 2920ms total)
T2914 396:509 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2919ms total)
T29C8 396:509 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2920ms total)
T2914 396:510 JLINK_IsHalted() returns FALSE (0001ms, 2921ms total)
T2914 396:611 JLINK_IsHalted() returns FALSE (0001ms, 2921ms total)
T2914 396:712 JLINK_IsHalted() returns FALSE (0001ms, 2921ms total)
T2914 396:813 JLINK_IsHalted() returns FALSE (0001ms, 2921ms total)
T2914 396:914 JLINK_IsHalted() returns FALSE (0001ms, 2921ms total)
T2914 397:015 JLINK_IsHalted() returns FALSE (0001ms, 2921ms total)
T2914 397:116 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2920ms total)
T29C8 397:116 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2921ms total)
T2914 397:118 JLINK_IsHalted() returns FALSE (0000ms, 2921ms total)
T2914 397:219 JLINK_IsHalted() returns FALSE (0000ms, 2921ms total)
T2914 397:319 JLINK_IsHalted() returns FALSE (0001ms, 2922ms total)
T2914 397:420 JLINK_IsHalted() returns FALSE (0001ms, 2922ms total)
T2914 397:521 JLINK_IsHalted() returns FALSE (0001ms, 2922ms total)
T2914 397:622 JLINK_IsHalted() returns FALSE (0001ms, 2922ms total)
T2914 397:723 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2921ms total)
T29C8 397:723 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2922ms total)
T2914 397:724 JLINK_IsHalted() returns FALSE (0001ms, 2923ms total)
T2914 397:825 JLINK_IsHalted() returns FALSE (0001ms, 2923ms total)
T2914 397:926 JLINK_IsHalted() returns FALSE (0001ms, 2923ms total)
T2914 398:027 JLINK_IsHalted() returns FALSE (0001ms, 2923ms total)
T2914 398:128 JLINK_IsHalted() returns FALSE (0001ms, 2923ms total)
T2914 398:229 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2922ms total)
T29C8 398:229 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2923ms total)
T2914 398:230 JLINK_IsHalted() returns FALSE (0001ms, 2924ms total)
T2914 398:331 JLINK_IsHalted() returns FALSE (0001ms, 2924ms total)
T2914 398:432 JLINK_IsHalted() returns FALSE (0001ms, 2924ms total)
T2914 398:533 JLINK_IsHalted() returns FALSE (0001ms, 2924ms total)
T2914 398:634 JLINK_IsHalted() returns FALSE (0001ms, 2924ms total)
T2914 398:735 JLINK_IsHalted() returns FALSE (0001ms, 2924ms total)
T2914 398:836 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2923ms total)
T29C8 398:836 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2924ms total)
T2914 398:837 JLINK_IsHalted() returns FALSE (0001ms, 2925ms total)
T2914 398:938 JLINK_IsHalted() returns FALSE (0001ms, 2925ms total)
T2914 399:039 JLINK_IsHalted() returns FALSE (0001ms, 2925ms total)
T2914 399:140 JLINK_IsHalted() returns FALSE (0001ms, 2925ms total)
T2914 399:241 JLINK_IsHalted() returns FALSE (0001ms, 2925ms total)
T2914 399:343 JLINK_IsHalted() returns FALSE (0001ms, 2925ms total)
T2914 399:444 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2924ms total)
T29C8 399:444 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0002ms, 2926ms total)
T2914 399:446 JLINK_IsHalted() returns FALSE (0001ms, 2927ms total)
T2914 399:547 JLINK_IsHalted() returns FALSE (0001ms, 2927ms total)
T2914 399:648 JLINK_IsHalted() returns FALSE (0001ms, 2927ms total)
T2914 399:749 JLINK_IsHalted() returns FALSE (0001ms, 2927ms total)
T2914 399:850 JLINK_IsHalted() returns FALSE (0001ms, 2927ms total)
T2914 399:951 JLINK_IsHalted() returns FALSE (0001ms, 2927ms total)
T2914 400:052 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2926ms total)
T29C8 400:052 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0002ms, 2928ms total)
T2914 400:054 JLINK_IsHalted() returns FALSE (0001ms, 2929ms total)
T2914 400:155 JLINK_IsHalted() returns FALSE (0001ms, 2929ms total)
T2914 400:256 JLINK_IsHalted() returns FALSE (0001ms, 2929ms total)
T2914 400:357 JLINK_IsHalted() returns FALSE (0001ms, 2929ms total)
T2914 400:458 JLINK_IsHalted() returns FALSE (0001ms, 2929ms total)
T2914 400:559 JLINK_IsHalted() returns FALSE (0001ms, 2929ms total)
T2914 400:660 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2928ms total)
T29C8 400:660 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2929ms total)
T2914 400:661 JLINK_IsHalted() returns FALSE (0001ms, 2930ms total)
T2914 400:762 JLINK_IsHalted() returns FALSE (0001ms, 2930ms total)
T2914 400:863 JLINK_IsHalted() returns FALSE (0001ms, 2930ms total)
T2914 400:964 JLINK_IsHalted() returns FALSE (0001ms, 2930ms total)
T2914 401:065 JLINK_IsHalted() returns FALSE (0001ms, 2930ms total)
T2914 401:166 JLINK_IsHalted() returns FALSE (0001ms, 2930ms total)
T2914 401:267 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2929ms total)
T29C8 401:267 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2930ms total)
T2914 401:268 JLINK_IsHalted() returns FALSE (0001ms, 2931ms total)
T2914 401:369 JLINK_IsHalted() returns FALSE (0001ms, 2931ms total)
T2914 401:470 JLINK_IsHalted() returns FALSE (0001ms, 2931ms total)
T2914 401:571 JLINK_IsHalted() returns FALSE (0001ms, 2931ms total)
T2914 401:672 JLINK_IsHalted() returns FALSE (0001ms, 2931ms total)
T2914 401:773 JLINK_IsHalted() returns FALSE (0001ms, 2931ms total)
T2914 401:874 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2930ms total)
T29C8 401:874 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2931ms total)
T2914 401:875 JLINK_IsHalted() returns FALSE (0001ms, 2932ms total)
T2914 401:976 JLINK_IsHalted() returns FALSE (0001ms, 2932ms total)
T2914 402:077 JLINK_IsHalted() returns FALSE (0001ms, 2932ms total)
T2914 402:178 JLINK_IsHalted() returns FALSE (0002ms, 2933ms total)
T2914 402:280 JLINK_IsHalted() returns FALSE (0001ms, 2932ms total)
T2914 402:381 JLINK_IsHalted() returns FALSE (0002ms, 2933ms total)
T2914 402:483 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2931ms total)
T29C8 402:483 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2932ms total)
T2914 402:484 JLINK_IsHalted() returns FALSE (0001ms, 2933ms total)
T2914 402:585 JLINK_IsHalted() returns FALSE (0001ms, 2933ms total)
T2914 402:686 JLINK_IsHalted() returns FALSE (0001ms, 2933ms total)
T2914 402:787 JLINK_IsHalted() returns FALSE (0001ms, 2933ms total)
T2914 402:888 JLINK_IsHalted() returns FALSE (0001ms, 2933ms total)
T2914 402:989 JLINK_IsHalted() returns FALSE (0001ms, 2933ms total)
T2914 403:090 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2932ms total)
T29C8 403:090 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2933ms total)
T2914 403:091 JLINK_IsHalted() returns FALSE (0001ms, 2934ms total)
T2914 403:192 JLINK_IsHalted() returns FALSE (0001ms, 2934ms total)
T2914 403:293 JLINK_IsHalted() returns FALSE (0001ms, 2934ms total)
T2914 403:394 JLINK_IsHalted() returns FALSE (0001ms, 2934ms total)
T2914 403:495 JLINK_IsHalted() returns FALSE (0001ms, 2934ms total)
T2914 403:596 JLINK_IsHalted() returns FALSE (0001ms, 2934ms total)
T2914 403:697 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2933ms total)
T29C8 403:697 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2934ms total)
T2914 403:698 JLINK_IsHalted() returns FALSE (0002ms, 2936ms total)
T2914 403:800 JLINK_IsHalted() returns FALSE (0001ms, 2935ms total)
T2914 403:901 JLINK_IsHalted() returns FALSE (0001ms, 2935ms total)
T2914 404:002 JLINK_IsHalted() returns FALSE (0001ms, 2935ms total)
T2914 404:103 JLINK_IsHalted() returns FALSE (0001ms, 2935ms total)
T2914 404:204 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2934ms total)
T29C8 404:204 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2935ms total)
T2914 404:205 JLINK_IsHalted() returns FALSE (0001ms, 2936ms total)
T2914 404:306 JLINK_IsHalted() returns FALSE (0001ms, 2936ms total)
T2914 404:407 JLINK_IsHalted() returns FALSE (0001ms, 2936ms total)
T2914 404:508 JLINK_IsHalted() returns FALSE (0001ms, 2936ms total)
T2914 404:609 JLINK_IsHalted() returns FALSE (0001ms, 2936ms total)
T2914 404:710 JLINK_IsHalted() returns FALSE (0001ms, 2936ms total)
T2914 404:811 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2935ms total)
T29C8 404:811 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2936ms total)
T2914 404:812 JLINK_IsHalted() returns FALSE (0001ms, 2937ms total)
T2914 404:913 JLINK_IsHalted() returns FALSE (0001ms, 2937ms total)
T2914 405:014 JLINK_IsHalted() returns FALSE (0001ms, 2937ms total)
T2914 405:115 JLINK_IsHalted() returns FALSE (0001ms, 2937ms total)
T2914 405:216 JLINK_IsHalted() returns FALSE (0001ms, 2937ms total)
T2914 405:317 JLINK_IsHalted() returns FALSE (0001ms, 2937ms total)
T2914 405:418 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2936ms total)
T29C8 405:418 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2937ms total)
T2914 405:420 JLINK_IsHalted() returns FALSE (0001ms, 2938ms total)
T2914 405:521 JLINK_IsHalted() returns FALSE (0001ms, 2938ms total)
T2914 405:622 JLINK_IsHalted() returns FALSE (0001ms, 2938ms total)
T2914 405:723 JLINK_IsHalted() returns FALSE (0001ms, 2938ms total)
T2914 405:824 JLINK_IsHalted() returns FALSE (0001ms, 2938ms total)
T2914 405:925 JLINK_IsHalted() returns FALSE (0001ms, 2938ms total)
T2914 406:026 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2937ms total)
T29C8 406:026 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2938ms total)
T2914 406:027 JLINK_IsHalted() returns FALSE (0001ms, 2939ms total)
T2914 406:128 JLINK_IsHalted() returns FALSE (0001ms, 2939ms total)
T2914 406:229 JLINK_IsHalted() returns FALSE (0001ms, 2939ms total)
T2914 406:330 JLINK_IsHalted() returns FALSE (0001ms, 2939ms total)
T2914 406:431 JLINK_IsHalted() returns FALSE (0002ms, 2940ms total)
T2914 406:533 JLINK_IsHalted() returns FALSE (0001ms, 2939ms total)
T2914 406:634 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2938ms total)
T29C8 406:634 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2939ms total)
T2914 406:635 JLINK_IsHalted() returns FALSE (0001ms, 2940ms total)
T2914 406:736 JLINK_IsHalted() returns FALSE (0001ms, 2940ms total)
T2914 406:837 JLINK_IsHalted() returns FALSE (0001ms, 2940ms total)
T2914 406:938 JLINK_IsHalted() returns FALSE (0001ms, 2940ms total)
T2914 407:039 JLINK_IsHalted() returns FALSE (0001ms, 2940ms total)
T2914 407:140 JLINK_IsHalted() returns FALSE (0001ms, 2940ms total)
T2914 407:241 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2939ms total)
T29C8 407:241 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2940ms total)
T2914 407:242 JLINK_IsHalted() returns FALSE (0001ms, 2941ms total)
T2914 407:343 JLINK_IsHalted() returns FALSE (0001ms, 2941ms total)
T2914 407:444 JLINK_IsHalted() returns FALSE (0002ms, 2942ms total)
T2914 407:546 JLINK_IsHalted() returns FALSE (0001ms, 2941ms total)
T2914 407:647 JLINK_IsHalted() returns FALSE (0001ms, 2941ms total)
T2914 407:748 JLINK_IsHalted() returns FALSE (0001ms, 2941ms total)
T2914 407:849 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2940ms total)
T29C8 407:850 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2941ms total)
T2914 407:851 JLINK_IsHalted() returns FALSE (0001ms, 2942ms total)
T2914 407:952 JLINK_IsHalted() returns FALSE (0001ms, 2942ms total)
T2914 408:053 JLINK_IsHalted() returns FALSE (0001ms, 2942ms total)
T2914 408:154 JLINK_IsHalted() returns FALSE (0001ms, 2942ms total)
T2914 408:255 JLINK_IsHalted() returns FALSE (0001ms, 2942ms total)
T2914 408:356 JLINK_IsHalted() returns FALSE (0001ms, 2942ms total)
T2914 408:457 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2941ms total)
T29C8 408:457 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2942ms total)
T2914 408:458 JLINK_IsHalted() returns FALSE (0002ms, 2944ms total)
T2914 408:560 JLINK_IsHalted() returns FALSE (0001ms, 2943ms total)
T2914 408:661 JLINK_IsHalted() returns FALSE (0001ms, 2943ms total)
T2914 408:762 JLINK_IsHalted() returns FALSE (0001ms, 2943ms total)
T2914 408:863 JLINK_IsHalted() returns FALSE (0001ms, 2943ms total)
T2914 408:964 JLINK_IsHalted() returns FALSE (0001ms, 2943ms total)
T2914 409:065 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2942ms total)
T29C8 409:065 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2943ms total)
T2914 409:067 JLINK_IsHalted() returns FALSE (0000ms, 2943ms total)
T2914 409:168 JLINK_IsHalted() returns FALSE (0001ms, 2944ms total)
T2914 409:269 JLINK_IsHalted() returns FALSE (0001ms, 2944ms total)
T2914 409:370 JLINK_IsHalted() returns FALSE (0001ms, 2944ms total)
T2914 409:471 JLINK_IsHalted() returns FALSE (0001ms, 2944ms total)
T2914 409:572 JLINK_IsHalted() returns FALSE (0001ms, 2944ms total)
T2914 409:673 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2943ms total)
T29C8 409:673 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0002ms, 2945ms total)
T2914 409:675 JLINK_IsHalted() returns FALSE (0001ms, 2946ms total)
T2914 409:776 JLINK_IsHalted() returns FALSE (0001ms, 2946ms total)
T2914 409:877 JLINK_IsHalted() returns FALSE (0001ms, 2946ms total)
T2914 409:978 JLINK_IsHalted() returns FALSE (0001ms, 2946ms total)
T2914 410:079 JLINK_IsHalted() returns FALSE (0001ms, 2946ms total)
T2914 410:180 JLINK_IsHalted() returns FALSE (0001ms, 2946ms total)
T2914 410:281 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2945ms total)
T29C8 410:281 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2946ms total)
T2914 410:284 JLINK_IsHalted() returns FALSE (0001ms, 2947ms total)
T2914 410:385 JLINK_IsHalted() returns FALSE (0001ms, 2947ms total)
T2914 410:486 JLINK_IsHalted() returns FALSE (0001ms, 2947ms total)
T2914 410:587 JLINK_IsHalted() returns FALSE (0001ms, 2947ms total)
T2914 410:688 JLINK_IsHalted() returns FALSE (0001ms, 2947ms total)
T2914 410:789 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2946ms total)
T29C8 410:789 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2947ms total)
T2914 410:792 JLINK_IsHalted() returns FALSE (0001ms, 2948ms total)
T2914 410:893 JLINK_IsHalted() returns FALSE (0001ms, 2948ms total)
T2914 410:994 JLINK_IsHalted() returns FALSE (0001ms, 2948ms total)
T2914 411:096 JLINK_IsHalted() returns FALSE (0001ms, 2948ms total)
T2914 411:197 JLINK_IsHalted() returns FALSE (0001ms, 2948ms total)
T2914 411:298 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2947ms total)
T29C8 411:298 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2948ms total)
T2914 411:300 JLINK_IsHalted() returns FALSE (0001ms, 2949ms total)
T2914 411:401 JLINK_IsHalted() returns FALSE (0001ms, 2949ms total)
T2914 411:502 JLINK_IsHalted() returns FALSE (0001ms, 2949ms total)
T2914 411:603 JLINK_IsHalted() returns FALSE (0001ms, 2949ms total)
T2914 411:704 JLINK_IsHalted() returns FALSE (0001ms, 2949ms total)
T2914 411:805 JLINK_IsHalted() returns FALSE (0001ms, 2949ms total)
T2914 411:906 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2948ms total)
T29C8 411:906 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2949ms total)
T2914 411:908 JLINK_IsHalted() returns FALSE (0001ms, 2950ms total)
T2914 412:009 JLINK_IsHalted() returns FALSE (0001ms, 2950ms total)
T2914 412:110 JLINK_IsHalted() returns FALSE (0001ms, 2950ms total)
T2914 412:211 JLINK_IsHalted() returns FALSE (0001ms, 2950ms total)
T2914 412:312 JLINK_IsHalted() returns FALSE (0001ms, 2950ms total)
T2914 412:413 JLINK_IsHalted() returns FALSE (0001ms, 2950ms total)
T2914 412:514 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2949ms total)
T29C8 412:514 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2950ms total)
T2914 412:517 JLINK_IsHalted() returns FALSE (0001ms, 2951ms total)
T2914 412:618 JLINK_IsHalted() returns FALSE (0001ms, 2951ms total)
T2914 412:719 JLINK_IsHalted() returns FALSE (0001ms, 2951ms total)
T2914 412:820 JLINK_IsHalted() returns FALSE (0002ms, 2952ms total)
T2914 412:922 JLINK_IsHalted() returns FALSE (0001ms, 2951ms total)
T2914 413:024 JLINK_IsHalted() returns FALSE (0001ms, 2951ms total)
T2914 413:126 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2950ms total)
T29C8 413:126 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2951ms total)
T2914 413:129 JLINK_IsHalted() returns FALSE (0001ms, 2952ms total)
T2914 413:230 JLINK_IsHalted() returns FALSE (0001ms, 2952ms total)
T2914 413:331 JLINK_IsHalted() returns FALSE (0001ms, 2952ms total)
T2914 413:432 JLINK_IsHalted() returns FALSE (0001ms, 2952ms total)
T2914 413:533 JLINK_IsHalted() returns FALSE (0001ms, 2952ms total)
T2914 413:634 JLINK_IsHalted() returns FALSE (0001ms, 2952ms total)
T2914 413:735 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2951ms total)
T29C8 413:736 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0002ms, 2953ms total)
T2914 413:739 JLINK_IsHalted() returns FALSE (0001ms, 2954ms total)
T2914 413:840 JLINK_IsHalted() returns FALSE (0001ms, 2954ms total)
T2914 413:941 JLINK_IsHalted() returns FALSE (0001ms, 2954ms total)
T2914 414:042 JLINK_IsHalted() returns FALSE (0001ms, 2954ms total)
T2914 414:143 JLINK_IsHalted() returns FALSE (0001ms, 2954ms total)
T2914 414:244 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2953ms total)
T29C8 414:244 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2954ms total)
T2914 414:248 JLINK_IsHalted() returns FALSE (0001ms, 2955ms total)
T2914 414:349 JLINK_IsHalted() returns FALSE (0001ms, 2955ms total)
T2914 414:450 JLINK_IsHalted() returns FALSE (0001ms, 2955ms total)
T2914 414:551 JLINK_IsHalted() returns FALSE (0001ms, 2955ms total)
T2914 414:652 JLINK_IsHalted() returns FALSE (0001ms, 2955ms total)
T2914 414:753 JLINK_IsHalted() returns FALSE (0001ms, 2955ms total)
T2914 414:854 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2954ms total)
T29C8 414:854 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2955ms total)
T2914 414:856 JLINK_IsHalted() returns FALSE (0000ms, 2955ms total)
T2914 414:956 JLINK_IsHalted() returns FALSE (0001ms, 2956ms total)
T2914 415:057 JLINK_IsHalted() returns FALSE (0001ms, 2956ms total)
T2914 415:158 JLINK_IsHalted() returns FALSE (0001ms, 2956ms total)
T2914 415:259 JLINK_IsHalted() returns FALSE (0001ms, 2956ms total)
T2914 415:360 JLINK_IsHalted() returns FALSE (0001ms, 2956ms total)
T2914 415:461 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2955ms total)
T29C8 415:461 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2956ms total)
T2914 415:463 JLINK_IsHalted() returns FALSE (0000ms, 2956ms total)
T2914 415:563 JLINK_IsHalted() returns FALSE (0001ms, 2957ms total)
T2914 415:664 JLINK_IsHalted() returns FALSE (0001ms, 2957ms total)
T2914 415:765 JLINK_IsHalted() returns FALSE (0001ms, 2957ms total)
T2914 415:866 JLINK_IsHalted() returns FALSE (0001ms, 2957ms total)
T2914 415:967 JLINK_IsHalted() returns FALSE (0001ms, 2957ms total)
T2914 416:068 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2956ms total)
T29C8 416:068 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2957ms total)
T2914 416:069 JLINK_IsHalted() returns FALSE (0001ms, 2958ms total)
T2914 416:170 JLINK_IsHalted() returns FALSE (0001ms, 2958ms total)
T2914 416:271 JLINK_IsHalted() returns FALSE (0001ms, 2958ms total)
T2914 416:372 JLINK_IsHalted() returns FALSE (0001ms, 2958ms total)
T2914 416:473 JLINK_IsHalted() returns FALSE (0001ms, 2958ms total)
T2914 416:574 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2957ms total)
T29C8 416:574 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2958ms total)
T2914 416:575 JLINK_IsHalted() returns FALSE (0001ms, 2959ms total)
T2914 416:676 JLINK_IsHalted() returns FALSE (0001ms, 2959ms total)
T2914 416:777 JLINK_IsHalted() returns FALSE (0001ms, 2959ms total)
T2914 416:878 JLINK_IsHalted() returns FALSE (0001ms, 2959ms total)
T2914 416:979 JLINK_IsHalted() returns FALSE (0001ms, 2959ms total)
T2914 417:080 JLINK_IsHalted() returns FALSE (0001ms, 2959ms total)
T2914 417:181 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2958ms total)
T29C8 417:181 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0002ms, 2960ms total)
T2914 417:183 JLINK_IsHalted() returns FALSE (0001ms, 2961ms total)
T2914 417:284 JLINK_IsHalted() returns FALSE (0001ms, 2961ms total)
T2914 417:385 JLINK_IsHalted() returns FALSE (0001ms, 2961ms total)
T2914 417:486 JLINK_IsHalted() returns FALSE (0001ms, 2961ms total)
T2914 417:587 JLINK_IsHalted() returns FALSE (0001ms, 2961ms total)
T2914 417:688 JLINK_IsHalted() returns FALSE (0001ms, 2961ms total)
T2914 417:789 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2960ms total)
T29C8 417:790 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2961ms total)
T2914 417:791 JLINK_IsHalted() returns FALSE (0001ms, 2962ms total)
T2914 417:892 JLINK_IsHalted() returns FALSE (0001ms, 2962ms total)
T2914 417:993 JLINK_IsHalted() returns FALSE (0001ms, 2962ms total)
T2914 418:094 JLINK_IsHalted() returns FALSE (0001ms, 2962ms total)
T2914 418:195 JLINK_IsHalted() returns FALSE (0001ms, 2962ms total)
T2914 418:296 JLINK_IsHalted() returns FALSE (0001ms, 2962ms total)
T2914 418:397 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2961ms total)
T29C8 418:397 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2962ms total)
T2914 418:398 JLINK_IsHalted() returns FALSE (0001ms, 2963ms total)
T2914 418:499 JLINK_IsHalted() returns FALSE (0001ms, 2963ms total)
T2914 418:600 JLINK_IsHalted() returns FALSE (0001ms, 2963ms total)
T2914 418:701 JLINK_IsHalted() returns FALSE (0001ms, 2963ms total)
T2914 418:802 JLINK_IsHalted() returns FALSE (0001ms, 2963ms total)
T2914 418:903 JLINK_IsHalted() returns FALSE (0001ms, 2963ms total)
T2914 419:004 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2962ms total)
T29C8 419:004 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2963ms total)
T2914 419:007 JLINK_IsHalted() returns FALSE (0001ms, 2964ms total)
T2914 419:108 JLINK_IsHalted() returns FALSE (0001ms, 2964ms total)
T2914 419:209 JLINK_IsHalted() returns FALSE (0001ms, 2964ms total)
T2914 419:310 JLINK_IsHalted() returns FALSE (0001ms, 2964ms total)
T2914 419:411 JLINK_IsHalted() returns FALSE (0001ms, 2964ms total)
T2914 419:513 JLINK_IsHalted() returns FALSE (0001ms, 2964ms total)
T2914 419:614 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2963ms total)
T29C8 419:615 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2964ms total)
T2914 419:618 JLINK_IsHalted() returns FALSE (0001ms, 2965ms total)
T2914 419:719 JLINK_IsHalted() returns FALSE (0001ms, 2965ms total)
T2914 419:820 JLINK_IsHalted() returns FALSE (0001ms, 2965ms total)
T2914 419:921 JLINK_IsHalted() returns FALSE (0001ms, 2965ms total)
T2914 420:022 JLINK_IsHalted() returns FALSE (0001ms, 2965ms total)
T2914 420:123 JLINK_IsHalted() returns FALSE (0001ms, 2965ms total)
T2914 420:224 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2964ms total)
T29C8 420:224 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2965ms total)
T2914 420:227 JLINK_IsHalted() returns FALSE (0001ms, 2966ms total)
T2914 420:328 JLINK_IsHalted() returns FALSE (0001ms, 2966ms total)
T2914 420:429 JLINK_IsHalted() returns FALSE (0001ms, 2966ms total)
T2914 420:530 JLINK_IsHalted() returns FALSE (0001ms, 2966ms total)
T2914 420:631 JLINK_IsHalted() returns FALSE (0001ms, 2966ms total)
T2914 420:732 JLINK_IsHalted() returns FALSE (0001ms, 2966ms total)
T2914 420:833 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2965ms total)
T29C8 420:833 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2966ms total)
T2914 420:836 JLINK_IsHalted() returns FALSE (0002ms, 2968ms total)
T2914 420:938 JLINK_IsHalted() returns FALSE (0001ms, 2967ms total)
T29C8 420:996 JLINK_ReadMemEx(0x20008DB0, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008DB0) - Data: 03 00 00 00 D1 5F 00 08 03 00 00 00 20 00 00 00 ... returns 0x130 (0003ms, 2969ms total)
T29C8 420:999 JLINK_ReadMemEx(0x20008DB0, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008DB0) - Data: 03 00 00 00 D1 5F 00 08 03 00 00 00 20 00 00 00 ... returns 0x130 (0003ms, 2972ms total)
T29C8 421:004 JLINK_ReadMemEx(0x20008DB0, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008DB0) - Data: 03 00 00 00 D1 5F 00 08 03 00 00 00 20 00 00 00 ... returns 0x130 (0002ms, 2974ms total)
T29C8 421:007 JLINK_ReadMemEx(0x20008DB0, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008DB0) - Data: 03 00 00 00 D1 5F 00 08 03 00 00 00 20 00 00 00 ... returns 0x130 (0002ms, 2976ms total)
T2914 421:039 JLINK_IsHalted() returns FALSE (0001ms, 2977ms total)
T2914 421:140 JLINK_IsHalted() returns FALSE (0001ms, 2977ms total)
T2914 421:241 JLINK_IsHalted() returns FALSE (0001ms, 2977ms total)
T2914 421:342 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2976ms total)
T29C8 421:342 JLINK_ReadMemEx(0x20008DB0, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008DB0) - Data: 00 00 00 00 00 00 00 00 03 00 00 00 20 00 00 00 ... returns 0x130 (0002ms, 2978ms total)
T29C8 421:344 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2979ms total)
T2914 421:345 JLINK_IsHalted() returns FALSE (0001ms, 2980ms total)
T2914 421:446 JLINK_IsHalted() returns FALSE (0001ms, 2980ms total)
T2914 421:547 JLINK_IsHalted() returns FALSE (0001ms, 2980ms total)
T2914 421:648 JLINK_IsHalted() returns FALSE (0001ms, 2980ms total)
T2914 421:749 JLINK_IsHalted() returns FALSE (0001ms, 2980ms total)
T2914 421:850 JLINK_IsHalted() returns FALSE (0001ms, 2980ms total)
T2914 421:951 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2979ms total)
T29C8 421:951 JLINK_ReadMemEx(0x20008DB0, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008DB0) - Data: 03 00 00 00 D1 5F 00 08 03 00 00 00 20 00 00 00 ... returns 0x130 (0002ms, 2981ms total)
T29C8 421:953 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2982ms total)
T2914 421:954 JLINK_IsHalted() returns FALSE (0001ms, 2983ms total)
T2914 422:055 JLINK_IsHalted() returns FALSE (0001ms, 2983ms total)
T2914 422:156 JLINK_IsHalted() returns FALSE (0001ms, 2983ms total)
T2914 422:257 JLINK_IsHalted() returns FALSE (0001ms, 2983ms total)
T2914 422:358 JLINK_IsHalted() returns FALSE (0001ms, 2983ms total)
T2914 422:459 JLINK_IsHalted() returns FALSE (0002ms, 2984ms total)
T2914 422:561 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2982ms total)
T29C8 422:561 JLINK_ReadMemEx(0x20008DB0, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008DB0) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 2984ms total)
T29C8 422:563 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2985ms total)
T2914 422:564 JLINK_IsHalted() returns FALSE (0002ms, 2987ms total)
T2914 422:666 JLINK_IsHalted() returns FALSE (0001ms, 2986ms total)
T2914 422:767 JLINK_IsHalted() returns FALSE (0001ms, 2986ms total)
T2914 422:868 JLINK_IsHalted() returns FALSE (0001ms, 2986ms total)
T2914 422:969 JLINK_IsHalted() returns FALSE (0001ms, 2986ms total)
T2914 423:070 JLINK_IsHalted() returns FALSE (0001ms, 2986ms total)
T2914 423:171 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2985ms total)
T29C8 423:171 JLINK_ReadMemEx(0x20008DB0, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008DB0) - Data: 31 8F 00 20 10 8E 00 20 20 00 00 00 21 14 00 08 ... returns 0x130 (0002ms, 2987ms total)
T29C8 423:173 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2988ms total)
T2914 423:174 JLINK_IsHalted() returns FALSE (0003ms, 2991ms total)
T2914 423:277 JLINK_IsHalted() returns FALSE (0001ms, 2989ms total)
T2914 423:378 JLINK_IsHalted() returns FALSE (0001ms, 2989ms total)
T2914 423:479 JLINK_IsHalted() returns FALSE (0001ms, 2989ms total)
T2914 423:580 JLINK_IsHalted() returns FALSE (0001ms, 2989ms total)
T2914 423:681 JLINK_IsHalted() returns FALSE (0001ms, 2989ms total)
T2914 423:782 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2988ms total)
T29C8 423:782 JLINK_ReadMemEx(0x0020008F, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x0020008F) - Data: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF ... returns 0x130 (0002ms, 2990ms total)
T29C8 423:784 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2991ms total)
T2914 423:785 JLINK_IsHalted() returns FALSE (0001ms, 2992ms total)
T2914 423:886 JLINK_IsHalted() returns FALSE (0001ms, 2992ms total)
T2914 423:987 JLINK_IsHalted() returns FALSE (0001ms, 2992ms total)
T2914 424:088 JLINK_IsHalted() returns FALSE (0001ms, 2992ms total)
T2914 424:189 JLINK_IsHalted() returns FALSE (0001ms, 2992ms total)
T2914 424:290 JLINK_IsHalted() returns FALSE (0001ms, 2992ms total)
T2914 424:391 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2991ms total)
T29C8 424:391 JLINK_ReadMemEx(0x020008F3, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x020008F3) - Data: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF ... returns 0x130 (0002ms, 2993ms total)
T29C8 424:394 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0000ms, 2993ms total)
T2914 424:395 JLINK_IsHalted() returns FALSE (0000ms, 2993ms total)
T2914 424:495 JLINK_IsHalted() returns FALSE (0001ms, 2994ms total)
T2914 424:596 JLINK_IsHalted() returns FALSE (0001ms, 2994ms total)
T2914 424:697 JLINK_IsHalted() returns FALSE (0001ms, 2994ms total)
T2914 424:798 JLINK_IsHalted() returns FALSE (0001ms, 2994ms total)
T2914 424:899 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2993ms total)
T29C8 424:899 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 2995ms total)
T29C8 424:901 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2996ms total)
T2914 424:902 JLINK_IsHalted() returns FALSE (0001ms, 2997ms total)
T2914 425:003 JLINK_IsHalted() returns FALSE (0001ms, 2997ms total)
T2914 425:104 JLINK_IsHalted() returns FALSE (0001ms, 2997ms total)
T2914 425:205 JLINK_IsHalted() returns FALSE (0001ms, 2997ms total)
T2914 425:306 JLINK_IsHalted() returns FALSE (0001ms, 2997ms total)
T2914 425:407 JLINK_IsHalted() returns FALSE (0001ms, 2997ms total)
T2914 425:508 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2996ms total)
T29C8 425:508 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 4B 9D 00 08 94 06 00 20 D8 05 00 20 01 00 00 00 ... returns 0x130 (0002ms, 2998ms total)
T29C8 425:510 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 2999ms total)
T2914 425:511 JLINK_IsHalted() returns FALSE (0001ms, 3000ms total)
T2914 425:612 JLINK_IsHalted() returns FALSE (0001ms, 3000ms total)
T2914 425:713 JLINK_IsHalted() returns FALSE (0001ms, 3000ms total)
T2914 425:814 JLINK_IsHalted() returns FALSE (0001ms, 3000ms total)
T2914 425:915 JLINK_IsHalted() returns FALSE (0001ms, 3000ms total)
T2914 426:016 JLINK_IsHalted() returns FALSE (0001ms, 3000ms total)
T2914 426:117 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 2999ms total)
T29C8 426:117 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 1F 00 00 00 03 00 00 00 5D 1F 00 08 03 00 00 00 ... returns 0x130 (0002ms, 3001ms total)
T29C8 426:119 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3002ms total)
T2914 426:120 JLINK_IsHalted() returns FALSE (0001ms, 3003ms total)
T29C8 426:209 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 05 00 00 00 00 00 00 00 AB 47 00 08 20 FF FF FF ... returns 0x130 (0002ms, 3004ms total)
T29C8 426:212 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 05 00 00 00 00 00 00 00 AB 47 00 08 20 FF FF FF ... returns 0x130 (0002ms, 3006ms total)
T2914 426:221 JLINK_IsHalted() returns FALSE (0001ms, 3007ms total)
T2914 426:322 JLINK_IsHalted() returns FALSE (0001ms, 3007ms total)
T2914 426:423 JLINK_IsHalted() returns FALSE (0001ms, 3007ms total)
T2914 426:524 JLINK_IsHalted() returns FALSE (0001ms, 3007ms total)
T2914 426:625 JLINK_IsHalted() returns FALSE (0001ms, 3007ms total)
T2914 426:726 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3006ms total)
T29C8 426:726 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 40 00 00 00 B4 8F 00 20 1F E0 01 05 FF 00 00 00 ... returns 0x130 (0002ms, 3008ms total)
T29C8 426:728 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3009ms total)
T2914 426:729 JLINK_IsHalted() returns FALSE (0001ms, 3010ms total)
T2914 426:830 JLINK_IsHalted() returns FALSE (0001ms, 3010ms total)
T2914 426:931 JLINK_IsHalted() returns FALSE (0001ms, 3010ms total)
T2914 427:032 JLINK_IsHalted() returns FALSE (0002ms, 3011ms total)
T2914 427:134 JLINK_IsHalted() returns FALSE (0001ms, 3010ms total)
T2914 427:235 JLINK_IsHalted() returns FALSE (0001ms, 3010ms total)
T2914 427:336 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3009ms total)
T29C8 427:336 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 00 00 00 00 00 00 00 00 08 18 00 20 40 00 00 00 ... returns 0x130 (0002ms, 3011ms total)
T29C8 427:338 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3012ms total)
T2914 427:339 JLINK_IsHalted() returns FALSE (0001ms, 3013ms total)
T2914 427:440 JLINK_IsHalted() returns FALSE (0001ms, 3013ms total)
T2914 427:541 JLINK_IsHalted() returns FALSE (0001ms, 3013ms total)
T2914 427:642 JLINK_IsHalted() returns FALSE (0001ms, 3013ms total)
T2914 427:743 JLINK_IsHalted() returns FALSE (0001ms, 3013ms total)
T2914 427:844 JLINK_IsHalted() returns FALSE (0001ms, 3013ms total)
T2914 427:945 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3012ms total)
T29C8 427:946 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 40 00 00 00 B4 8F 00 20 51 5C 00 08 D8 05 00 20 ... returns 0x130 (0002ms, 3014ms total)
T29C8 427:948 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3015ms total)
T2914 427:949 JLINK_IsHalted() returns FALSE (0001ms, 3016ms total)
T2914 428:050 JLINK_IsHalted() returns FALSE (0001ms, 3016ms total)
T2914 428:151 JLINK_IsHalted() returns FALSE (0001ms, 3016ms total)
T2914 428:252 JLINK_IsHalted() returns FALSE (0001ms, 3016ms total)
T2914 428:353 JLINK_IsHalted() returns FALSE (0001ms, 3016ms total)
T2914 428:454 JLINK_IsHalted() returns FALSE (0001ms, 3016ms total)
T2914 428:555 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3015ms total)
T29C8 428:555 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 1F 00 00 00 03 00 00 00 5D 1F 00 08 03 00 00 00 ... returns 0x130 (0002ms, 3017ms total)
T29C8 428:557 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3018ms total)
T2914 428:558 JLINK_IsHalted() returns FALSE (0001ms, 3019ms total)
T2914 428:659 JLINK_IsHalted() returns FALSE (0001ms, 3019ms total)
T2914 428:760 JLINK_IsHalted() returns FALSE (0001ms, 3019ms total)
T2914 428:861 JLINK_IsHalted() returns FALSE (0001ms, 3019ms total)
T2914 428:962 JLINK_IsHalted() returns FALSE (0001ms, 3019ms total)
T2914 429:063 JLINK_IsHalted() returns FALSE (0001ms, 3019ms total)
T2914 429:164 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3018ms total)
T29C8 429:164 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 25 88 00 08 D8 05 00 20 4B 9D 00 08 94 06 00 20 ... returns 0x130 (0002ms, 3020ms total)
T29C8 429:166 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3021ms total)
T2914 429:167 JLINK_IsHalted() returns FALSE (0001ms, 3022ms total)
T2914 429:268 JLINK_IsHalted() returns FALSE (0001ms, 3022ms total)
T2914 429:369 JLINK_IsHalted() returns FALSE (0001ms, 3022ms total)
T2914 429:470 JLINK_IsHalted() returns FALSE (0002ms, 3023ms total)
T2914 429:574 JLINK_IsHalted() returns FALSE (0000ms, 3021ms total)
T2914 429:674 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3021ms total)
T29C8 429:674 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3023ms total)
T29C8 429:676 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3024ms total)
T2914 429:677 JLINK_IsHalted() returns FALSE (0001ms, 3025ms total)
T2914 429:778 JLINK_IsHalted() returns FALSE (0001ms, 3025ms total)
T2914 429:879 JLINK_IsHalted() returns FALSE (0001ms, 3025ms total)
T2914 429:981 JLINK_IsHalted() returns FALSE (0001ms, 3025ms total)
T2914 430:082 JLINK_IsHalted() returns FALSE (0001ms, 3025ms total)
T2914 430:183 JLINK_IsHalted() returns FALSE (0001ms, 3025ms total)
T2914 430:284 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3024ms total)
T29C8 430:284 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 09 A9 00 08 B4 8F 00 20 51 5C 00 08 D8 05 00 20 ... returns 0x130 (0002ms, 3026ms total)
T29C8 430:286 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3027ms total)
T2914 430:287 JLINK_IsHalted() returns FALSE (0001ms, 3028ms total)
T2914 430:388 JLINK_IsHalted() returns FALSE (0001ms, 3028ms total)
T2914 430:489 JLINK_IsHalted() returns FALSE (0001ms, 3028ms total)
T2914 430:590 JLINK_IsHalted() returns FALSE (0001ms, 3028ms total)
T2914 430:691 JLINK_IsHalted() returns FALSE (0001ms, 3028ms total)
T2914 430:792 JLINK_IsHalted() returns FALSE (0001ms, 3028ms total)
T2914 430:893 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0001ms, 3028ms total)
T29C8 430:895 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3030ms total)
T29C8 430:897 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3031ms total)
T2914 430:898 JLINK_IsHalted() returns FALSE (0001ms, 3032ms total)
T2914 430:999 JLINK_IsHalted() returns FALSE (0001ms, 3032ms total)
T2914 431:101 JLINK_IsHalted() returns FALSE (0001ms, 3032ms total)
T2914 431:202 JLINK_IsHalted() returns FALSE (0001ms, 3032ms total)
T2914 431:303 JLINK_IsHalted() returns FALSE (0001ms, 3032ms total)
T2914 431:404 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3031ms total)
T29C8 431:404 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 00 00 00 00 00 00 00 00 1F E0 01 05 FF 00 00 00 ... returns 0x130 (0002ms, 3033ms total)
T29C8 431:406 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3034ms total)
T2914 431:407 JLINK_IsHalted() returns FALSE (0001ms, 3035ms total)
T2914 431:508 JLINK_IsHalted() returns FALSE (0001ms, 3035ms total)
T2914 431:609 JLINK_IsHalted() returns FALSE (0001ms, 3035ms total)
T2914 431:710 JLINK_IsHalted() returns FALSE (0001ms, 3035ms total)
T2914 431:811 JLINK_IsHalted() returns FALSE (0001ms, 3035ms total)
T2914 431:912 JLINK_IsHalted() returns FALSE (0001ms, 3035ms total)
T2914 432:013 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3034ms total)
T29C8 432:013 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 09 A9 00 08 94 06 00 20 D8 05 00 20 01 00 00 00 ... returns 0x130 (0002ms, 3036ms total)
T29C8 432:015 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3037ms total)
T2914 432:016 JLINK_IsHalted() returns FALSE (0001ms, 3038ms total)
T2914 432:117 JLINK_IsHalted() returns FALSE (0001ms, 3038ms total)
T2914 432:218 JLINK_IsHalted() returns FALSE (0001ms, 3038ms total)
T2914 432:320 JLINK_IsHalted() returns FALSE (0001ms, 3038ms total)
T2914 432:421 JLINK_IsHalted() returns FALSE (0001ms, 3038ms total)
T2914 432:522 JLINK_IsHalted() returns FALSE (0001ms, 3038ms total)
T2914 432:623 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3037ms total)
T29C8 432:624 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 00 00 00 00 00 00 00 00 B8 8F 00 20 84 D1 00 08 ... returns 0x130 (0003ms, 3040ms total)
T29C8 432:627 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3041ms total)
T2914 432:628 JLINK_IsHalted() returns FALSE (0001ms, 3042ms total)
T2914 432:729 JLINK_IsHalted() returns FALSE (0001ms, 3042ms total)
T2914 432:830 JLINK_IsHalted() returns FALSE (0001ms, 3042ms total)
T2914 432:931 JLINK_IsHalted() returns FALSE (0001ms, 3042ms total)
T2914 433:032 JLINK_IsHalted() returns FALSE (0001ms, 3042ms total)
T2914 433:133 JLINK_IsHalted() returns FALSE (0001ms, 3042ms total)
T2914 433:234 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3041ms total)
T29C8 433:234 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 51 5C 00 08 D8 05 00 20 01 00 00 00 F8 05 00 20 ... returns 0x130 (0001ms, 3042ms total)
T29C8 433:236 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0000ms, 3042ms total)
T2914 433:237 JLINK_IsHalted() returns FALSE (0001ms, 3043ms total)
T2914 433:338 JLINK_IsHalted() returns FALSE (0001ms, 3043ms total)
T2914 433:439 JLINK_IsHalted() returns FALSE (0001ms, 3043ms total)
T2914 433:540 JLINK_IsHalted() returns FALSE (0001ms, 3043ms total)
T2914 433:641 JLINK_IsHalted() returns FALSE (0001ms, 3043ms total)
T2914 433:742 JLINK_IsHalted() returns FALSE (0001ms, 3043ms total)
T2914 433:843 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3042ms total)
T29C8 433:843 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3044ms total)
T29C8 433:845 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3045ms total)
T2914 433:846 JLINK_IsHalted() returns FALSE (0001ms, 3046ms total)
T2914 433:947 JLINK_IsHalted() returns FALSE (0001ms, 3046ms total)
T2914 434:048 JLINK_IsHalted() returns FALSE (0001ms, 3046ms total)
T2914 434:149 JLINK_IsHalted() returns FALSE (0001ms, 3046ms total)
T2914 434:250 JLINK_IsHalted() returns FALSE (0001ms, 3046ms total)
T2914 434:351 JLINK_IsHalted() returns FALSE (0001ms, 3046ms total)
T2914 434:452 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3045ms total)
T29C8 434:452 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0003ms, 3048ms total)
T29C8 434:455 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3049ms total)
T2914 434:457 JLINK_IsHalted() returns FALSE (0000ms, 3049ms total)
T2914 434:557 JLINK_IsHalted() returns FALSE (0001ms, 3050ms total)
T2914 434:658 JLINK_IsHalted() returns FALSE (0001ms, 3050ms total)
T2914 434:759 JLINK_IsHalted() returns FALSE (0001ms, 3050ms total)
T2914 434:860 JLINK_IsHalted() returns FALSE (0001ms, 3050ms total)
T2914 434:961 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3049ms total)
T29C8 434:961 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 1F 00 00 00 03 00 00 00 1F E0 01 05 FF 00 00 00 ... returns 0x130 (0003ms, 3052ms total)
T29C8 434:964 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3053ms total)
T2914 434:965 JLINK_IsHalted() returns FALSE (0001ms, 3054ms total)
T2914 435:066 JLINK_IsHalted() returns FALSE (0001ms, 3054ms total)
T2914 435:167 JLINK_IsHalted() returns FALSE (0001ms, 3054ms total)
T2914 435:268 JLINK_IsHalted() returns FALSE (0001ms, 3054ms total)
T2914 435:369 JLINK_IsHalted() returns FALSE (0001ms, 3054ms total)
T2914 435:470 JLINK_IsHalted() returns FALSE (0001ms, 3054ms total)
T2914 435:571 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3053ms total)
T29C8 435:571 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 00 00 00 00 00 00 00 00 AD 5F 00 08 00 00 00 00 ... returns 0x130 (0002ms, 3055ms total)
T29C8 435:573 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3056ms total)
T2914 435:574 JLINK_IsHalted() returns FALSE (0002ms, 3058ms total)
T2914 435:676 JLINK_IsHalted() returns FALSE (0001ms, 3057ms total)
T2914 435:777 JLINK_IsHalted() returns FALSE (0001ms, 3057ms total)
T2914 435:878 JLINK_IsHalted() returns FALSE (0001ms, 3057ms total)
T2914 435:979 JLINK_IsHalted() returns FALSE (0001ms, 3057ms total)
T2914 436:080 JLINK_IsHalted() returns FALSE (0001ms, 3057ms total)
T2914 436:181 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3056ms total)
T29C8 436:181 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3058ms total)
T29C8 436:183 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3059ms total)
T2914 436:184 JLINK_IsHalted() returns FALSE (0001ms, 3060ms total)
T2914 436:285 JLINK_IsHalted() returns FALSE (0001ms, 3060ms total)
T2914 436:386 JLINK_IsHalted() returns FALSE (0001ms, 3060ms total)
T2914 436:488 JLINK_IsHalted() returns FALSE (0001ms, 3060ms total)
T2914 436:589 JLINK_IsHalted() returns FALSE (0001ms, 3060ms total)
T2914 436:690 JLINK_IsHalted() returns FALSE (0001ms, 3060ms total)
T2914 436:791 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3059ms total)
T29C8 436:791 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3061ms total)
T29C8 436:793 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3062ms total)
T2914 436:794 JLINK_IsHalted() returns FALSE (0001ms, 3063ms total)
T2914 436:895 JLINK_IsHalted() returns FALSE (0001ms, 3063ms total)
T2914 436:996 JLINK_IsHalted() returns FALSE (0001ms, 3063ms total)
T2914 437:097 JLINK_IsHalted() returns FALSE (0001ms, 3063ms total)
T2914 437:198 JLINK_IsHalted() returns FALSE (0001ms, 3063ms total)
T2914 437:299 JLINK_IsHalted() returns FALSE (0001ms, 3063ms total)
T2914 437:400 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3062ms total)
T29C8 437:400 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3064ms total)
T29C8 437:402 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3065ms total)
T2914 437:403 JLINK_IsHalted() returns FALSE (0001ms, 3066ms total)
T2914 437:504 JLINK_IsHalted() returns FALSE (0001ms, 3066ms total)
T2914 437:605 JLINK_IsHalted() returns FALSE (0001ms, 3066ms total)
T2914 437:706 JLINK_IsHalted() returns FALSE (0001ms, 3066ms total)
T2914 437:807 JLINK_IsHalted() returns FALSE (0001ms, 3066ms total)
T2914 437:908 JLINK_IsHalted() returns FALSE (0001ms, 3066ms total)
T2914 438:009 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3065ms total)
T29C8 438:009 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 85 8F 00 08 00 00 00 00 1F E0 01 05 FF 00 00 00 ... returns 0x130 (0002ms, 3067ms total)
T29C8 438:011 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3068ms total)
T2914 438:012 JLINK_IsHalted() returns FALSE (0001ms, 3069ms total)
T2914 438:113 JLINK_IsHalted() returns FALSE (0002ms, 3070ms total)
T2914 438:215 JLINK_IsHalted() returns FALSE (0001ms, 3069ms total)
T2914 438:316 JLINK_IsHalted() returns FALSE (0001ms, 3069ms total)
T2914 438:417 JLINK_IsHalted() returns FALSE (0002ms, 3070ms total)
T2914 438:519 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3068ms total)
T29C8 438:519 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3070ms total)
T29C8 438:521 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3071ms total)
T2914 438:522 JLINK_IsHalted() returns FALSE (0001ms, 3072ms total)
T2914 438:623 JLINK_IsHalted() returns FALSE (0001ms, 3072ms total)
T2914 438:724 JLINK_IsHalted() returns FALSE (0001ms, 3072ms total)
T2914 438:825 JLINK_IsHalted() returns FALSE (0001ms, 3072ms total)
T2914 438:926 JLINK_IsHalted() returns FALSE (0001ms, 3072ms total)
T2914 439:027 JLINK_IsHalted() returns FALSE (0002ms, 3073ms total)
T2914 439:129 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3071ms total)
T29C8 439:129 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 00 00 00 00 01 00 00 00 09 A9 00 08 00 00 00 00 ... returns 0x130 (0002ms, 3073ms total)
T29C8 439:131 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0002ms, 3075ms total)
T2914 439:133 JLINK_IsHalted() returns FALSE (0001ms, 3076ms total)
T2914 439:234 JLINK_IsHalted() returns FALSE (0001ms, 3076ms total)
T2914 439:335 JLINK_IsHalted() returns FALSE (0001ms, 3076ms total)
T2914 439:436 JLINK_IsHalted() returns FALSE (0001ms, 3076ms total)
T2914 439:537 JLINK_IsHalted() returns FALSE (0001ms, 3076ms total)
T2914 439:638 JLINK_IsHalted() returns FALSE (0001ms, 3076ms total)
T2914 439:739 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3075ms total)
T29C8 439:739 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3077ms total)
T29C8 439:741 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3078ms total)
T2914 439:742 JLINK_IsHalted() returns FALSE (0001ms, 3079ms total)
T2914 439:843 JLINK_IsHalted() returns FALSE (0001ms, 3079ms total)
T2914 439:944 JLINK_IsHalted() returns FALSE (0001ms, 3079ms total)
T2914 440:045 JLINK_IsHalted() returns FALSE (0001ms, 3079ms total)
T2914 440:146 JLINK_IsHalted() returns FALSE (0001ms, 3079ms total)
T2914 440:247 JLINK_IsHalted() returns FALSE (0001ms, 3079ms total)
T2914 440:348 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3078ms total)
T29C8 440:348 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 05 00 00 00 03 00 00 00 6D 1A 00 08 03 00 00 00 ... returns 0x130 (0002ms, 3080ms total)
T29C8 440:350 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3081ms total)
T2914 440:351 JLINK_IsHalted() returns FALSE (0001ms, 3082ms total)
T2914 440:452 JLINK_IsHalted() returns FALSE (0001ms, 3082ms total)
T2914 440:554 JLINK_IsHalted() returns FALSE (0001ms, 3082ms total)
T2914 440:655 JLINK_IsHalted() returns FALSE (0001ms, 3082ms total)
T2914 440:756 JLINK_IsHalted() returns FALSE (0001ms, 3082ms total)
T2914 440:857 JLINK_IsHalted() returns FALSE (0001ms, 3082ms total)
T2914 440:958 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3081ms total)
T29C8 440:958 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3083ms total)
T29C8 440:960 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3084ms total)
T2914 440:961 JLINK_IsHalted() returns FALSE (0002ms, 3086ms total)
T2914 441:063 JLINK_IsHalted() returns FALSE (0001ms, 3085ms total)
T2914 441:164 JLINK_IsHalted() returns FALSE (0001ms, 3085ms total)
T2914 441:265 JLINK_IsHalted() returns FALSE (0001ms, 3085ms total)
T2914 441:366 JLINK_IsHalted() returns FALSE (0001ms, 3085ms total)
T2914 441:467 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3084ms total)
T29C8 441:467 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3086ms total)
T29C8 441:469 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3087ms total)
T2914 441:471 JLINK_IsHalted() returns FALSE (0000ms, 3087ms total)
T2914 441:571 JLINK_IsHalted() returns FALSE (0001ms, 3088ms total)
T2914 441:672 JLINK_IsHalted() returns FALSE (0001ms, 3088ms total)
T2914 441:773 JLINK_IsHalted() returns FALSE (0001ms, 3088ms total)
T2914 441:874 JLINK_IsHalted() returns FALSE (0001ms, 3088ms total)
T2914 441:975 JLINK_IsHalted() returns FALSE (0001ms, 3088ms total)
T2914 442:076 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3087ms total)
T29C8 442:078 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 1F 00 00 00 03 00 00 00 1F E0 01 05 FF 00 00 00 ... returns 0x130 (0002ms, 3089ms total)
T29C8 442:080 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3090ms total)
T2914 442:081 JLINK_IsHalted() returns FALSE (0001ms, 3091ms total)
T2914 442:182 JLINK_IsHalted() returns FALSE (0001ms, 3091ms total)
T2914 442:283 JLINK_IsHalted() returns FALSE (0001ms, 3091ms total)
T2914 442:384 JLINK_IsHalted() returns FALSE (0001ms, 3091ms total)
T2914 442:485 JLINK_IsHalted() returns FALSE (0001ms, 3091ms total)
T2914 442:586 JLINK_IsHalted() returns FALSE (0001ms, 3091ms total)
T2914 442:687 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3090ms total)
T29C8 442:687 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 1F 00 00 00 03 00 00 00 03 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3092ms total)
T29C8 442:689 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3093ms total)
T2914 442:690 JLINK_IsHalted() returns FALSE (0001ms, 3094ms total)
T2914 442:791 JLINK_IsHalted() returns FALSE (0001ms, 3094ms total)
T2914 442:892 JLINK_IsHalted() returns FALSE (0002ms, 3095ms total)
T2914 442:994 JLINK_IsHalted() returns FALSE (0001ms, 3094ms total)
T2914 443:095 JLINK_IsHalted() returns FALSE (0001ms, 3094ms total)
T2914 443:196 JLINK_IsHalted() returns FALSE (0001ms, 3094ms total)
T2914 443:297 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3093ms total)
T29C8 443:297 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3095ms total)
T29C8 443:299 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3096ms total)
T2914 443:300 JLINK_IsHalted() returns FALSE (0001ms, 3097ms total)
T2914 443:401 JLINK_IsHalted() returns FALSE (0001ms, 3097ms total)
T2914 443:502 JLINK_IsHalted() returns FALSE (0001ms, 3097ms total)
T2914 443:603 JLINK_IsHalted() returns FALSE (0001ms, 3097ms total)
T2914 443:704 JLINK_IsHalted() returns FALSE (0001ms, 3097ms total)
T2914 443:805 JLINK_IsHalted() returns FALSE (0001ms, 3097ms total)
T2914 443:906 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3096ms total)
T29C8 443:906 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0003ms, 3099ms total)
T29C8 443:909 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3100ms total)
T2914 443:910 JLINK_IsHalted() returns FALSE (0001ms, 3101ms total)
T2914 444:011 JLINK_IsHalted() returns FALSE (0001ms, 3101ms total)
T2914 444:112 JLINK_IsHalted() returns FALSE (0001ms, 3101ms total)
T2914 444:213 JLINK_IsHalted() returns FALSE (0001ms, 3101ms total)
T2914 444:314 JLINK_IsHalted() returns FALSE (0001ms, 3101ms total)
T2914 444:415 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3100ms total)
T29C8 444:415 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 16 09 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3102ms total)
T29C8 444:417 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3103ms total)
T2914 444:419 JLINK_IsHalted() returns FALSE (0000ms, 3103ms total)
T2914 444:519 JLINK_IsHalted() returns FALSE (0001ms, 3104ms total)
T2914 444:620 JLINK_IsHalted() returns FALSE (0001ms, 3104ms total)
T2914 444:721 JLINK_IsHalted() returns FALSE (0001ms, 3104ms total)
T2914 444:822 JLINK_IsHalted() returns FALSE (0001ms, 3104ms total)
T2914 444:923 JLINK_IsHalted() returns FALSE (0001ms, 3104ms total)
T2914 445:024 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3103ms total)
T29C8 445:024 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3105ms total)
T29C8 445:026 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3106ms total)
T2914 445:027 JLINK_IsHalted() returns FALSE (0002ms, 3108ms total)
T2914 445:129 JLINK_IsHalted() returns FALSE (0001ms, 3107ms total)
T2914 445:230 JLINK_IsHalted() returns FALSE (0001ms, 3107ms total)
T2914 445:331 JLINK_IsHalted() returns FALSE (0001ms, 3107ms total)
T2914 445:432 JLINK_IsHalted() returns FALSE (0001ms, 3107ms total)
T2914 445:533 JLINK_IsHalted() returns FALSE (0001ms, 3107ms total)
T2914 445:635 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3106ms total)
T29C8 445:635 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3108ms total)
T29C8 445:637 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3109ms total)
T2914 445:638 JLINK_IsHalted() returns FALSE (0001ms, 3110ms total)
T2914 445:739 JLINK_IsHalted() returns FALSE (0001ms, 3110ms total)
T2914 445:840 JLINK_IsHalted() returns FALSE (0001ms, 3110ms total)
T2914 445:941 JLINK_IsHalted() returns FALSE (0001ms, 3110ms total)
T2914 446:042 JLINK_IsHalted() returns FALSE (0001ms, 3110ms total)
T2914 446:144 JLINK_IsHalted() returns FALSE (0002ms, 3111ms total)
T2914 446:246 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3109ms total)
T29C8 446:246 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3111ms total)
T29C8 446:248 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3112ms total)
T2914 446:249 JLINK_IsHalted() returns FALSE (0001ms, 3113ms total)
T2914 446:350 JLINK_IsHalted() returns FALSE (0001ms, 3113ms total)
T2914 446:451 JLINK_IsHalted() returns FALSE (0001ms, 3113ms total)
T2914 446:552 JLINK_IsHalted() returns FALSE (0001ms, 3113ms total)
T2914 446:653 JLINK_IsHalted() returns FALSE (0001ms, 3113ms total)
T2914 446:754 JLINK_IsHalted() returns FALSE (0001ms, 3113ms total)
T2914 446:855 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3112ms total)
T29C8 446:855 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3114ms total)
T29C8 446:857 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3115ms total)
T2914 446:858 JLINK_IsHalted() returns FALSE (0001ms, 3116ms total)
T2914 446:959 JLINK_IsHalted() returns FALSE (0001ms, 3116ms total)
T2914 447:060 JLINK_IsHalted() returns FALSE (0001ms, 3116ms total)
T2914 447:161 JLINK_IsHalted() returns FALSE (0001ms, 3116ms total)
T2914 447:262 JLINK_IsHalted() returns FALSE (0001ms, 3116ms total)
T2914 447:363 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3115ms total)
T29C8 447:363 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 00 00 00 00 00 00 00 00 08 18 00 20 40 00 00 00 ... returns 0x130 (0003ms, 3118ms total)
T29C8 447:366 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3119ms total)
T2914 447:367 JLINK_IsHalted() returns FALSE (0001ms, 3120ms total)
T2914 447:468 JLINK_IsHalted() returns FALSE (0001ms, 3120ms total)
T2914 447:569 JLINK_IsHalted() returns FALSE (0002ms, 3121ms total)
T2914 447:671 JLINK_IsHalted() returns FALSE (0001ms, 3120ms total)
T2914 447:772 JLINK_IsHalted() returns FALSE (0001ms, 3120ms total)
T2914 447:873 JLINK_IsHalted() returns FALSE (0001ms, 3120ms total)
T2914 447:974 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3119ms total)
T29C8 447:974 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3121ms total)
T29C8 447:976 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0002ms, 3123ms total)
T2914 447:979 JLINK_IsHalted() returns FALSE (0001ms, 3124ms total)
T2914 448:080 JLINK_IsHalted() returns FALSE (0001ms, 3124ms total)
T2914 448:181 JLINK_IsHalted() returns FALSE (0001ms, 3124ms total)
T2914 448:282 JLINK_IsHalted() returns FALSE (0002ms, 3125ms total)
T2914 448:384 JLINK_IsHalted() returns FALSE (0001ms, 3124ms total)
T2914 448:485 JLINK_IsHalted() returns FALSE (0001ms, 3124ms total)
T2914 448:586 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3123ms total)
T29C8 448:587 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3125ms total)
T29C8 448:589 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3126ms total)
T2914 448:590 JLINK_IsHalted() returns FALSE (0001ms, 3127ms total)
T2914 448:691 JLINK_IsHalted() returns FALSE (0001ms, 3127ms total)
T2914 448:792 JLINK_IsHalted() returns FALSE (0001ms, 3127ms total)
T2914 448:893 JLINK_IsHalted() returns FALSE (0001ms, 3127ms total)
T2914 448:994 JLINK_IsHalted() returns FALSE (0001ms, 3127ms total)
T2914 449:095 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3126ms total)
T29C8 449:095 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 94 8F 00 20 00 00 00 00 05 54 00 08 20 FF FF FF ... returns 0x130 (0002ms, 3128ms total)
T29C8 449:097 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3129ms total)
T2914 449:098 JLINK_IsHalted() returns FALSE (0001ms, 3130ms total)
T2914 449:199 JLINK_IsHalted() returns FALSE (0001ms, 3130ms total)
T2914 449:300 JLINK_IsHalted() returns FALSE (0001ms, 3130ms total)
T2914 449:402 JLINK_IsHalted() returns FALSE (0001ms, 3130ms total)
T2914 449:503 JLINK_IsHalted() returns FALSE (0001ms, 3130ms total)
T2914 449:604 JLINK_IsHalted() returns FALSE (0001ms, 3130ms total)
T2914 449:705 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3129ms total)
T29C8 449:705 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3131ms total)
T29C8 449:707 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3132ms total)
T2914 449:708 JLINK_IsHalted() returns FALSE (0001ms, 3133ms total)
T2914 449:809 JLINK_IsHalted() returns FALSE (0001ms, 3133ms total)
T2914 449:910 JLINK_IsHalted() returns FALSE (0001ms, 3133ms total)
T2914 450:011 JLINK_IsHalted() returns FALSE (0001ms, 3133ms total)
T2914 450:112 JLINK_IsHalted() returns FALSE (0001ms, 3133ms total)
T2914 450:213 JLINK_IsHalted() returns FALSE (0001ms, 3133ms total)
T2914 450:314 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3132ms total)
T29C8 450:314 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3134ms total)
T29C8 450:316 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3135ms total)
T2914 450:317 JLINK_IsHalted() returns FALSE (0001ms, 3136ms total)
T2914 450:418 JLINK_IsHalted() returns FALSE (0001ms, 3136ms total)
T2914 450:519 JLINK_IsHalted() returns FALSE (0001ms, 3136ms total)
T2914 450:620 JLINK_IsHalted() returns FALSE (0001ms, 3136ms total)
T2914 450:721 JLINK_IsHalted() returns FALSE (0001ms, 3136ms total)
T2914 450:822 JLINK_IsHalted() returns FALSE (0001ms, 3136ms total)
T2914 450:923 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3135ms total)
T29C8 450:923 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3137ms total)
T29C8 450:925 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3138ms total)
T2914 450:926 JLINK_IsHalted() returns FALSE (0001ms, 3139ms total)
T2914 451:027 JLINK_IsHalted() returns FALSE (0001ms, 3139ms total)
T2914 451:128 JLINK_IsHalted() returns FALSE (0001ms, 3139ms total)
T2914 451:229 JLINK_IsHalted() returns FALSE (0001ms, 3139ms total)
T2914 451:330 JLINK_IsHalted() returns FALSE (0001ms, 3139ms total)
T2914 451:431 JLINK_IsHalted() returns FALSE (0001ms, 3139ms total)
T2914 451:532 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3138ms total)
T29C8 451:533 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 51 5C 00 08 D8 05 00 20 01 00 00 00 F8 05 00 20 ... returns 0x130 (0002ms, 3140ms total)
T29C8 451:535 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3141ms total)
T2914 451:536 JLINK_IsHalted() returns FALSE (0001ms, 3142ms total)
T2914 451:637 JLINK_IsHalted() returns FALSE (0002ms, 3143ms total)
T2914 451:739 JLINK_IsHalted() returns FALSE (0001ms, 3142ms total)
T2914 451:840 JLINK_IsHalted() returns FALSE (0001ms, 3142ms total)
T2914 451:941 JLINK_IsHalted() returns FALSE (0001ms, 3142ms total)
T2914 452:042 JLINK_IsHalted() returns FALSE (0001ms, 3142ms total)
T2914 452:143 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3141ms total)
T29C8 452:143 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 40 00 00 00 B4 8F 00 20 51 5C 00 08 D8 05 00 20 ... returns 0x130 (0002ms, 3143ms total)
T29C8 452:145 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3144ms total)
T2914 452:146 JLINK_IsHalted() returns FALSE (0001ms, 3145ms total)
T2914 452:247 JLINK_IsHalted() returns FALSE (0001ms, 3145ms total)
T2914 452:348 JLINK_IsHalted() returns FALSE (0001ms, 3145ms total)
T2914 452:449 JLINK_IsHalted() returns FALSE (0001ms, 3145ms total)
T2914 452:550 JLINK_IsHalted() returns FALSE (0001ms, 3145ms total)
T2914 452:651 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3144ms total)
T29C8 452:651 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 40 00 00 00 B4 8F 00 20 1F E0 01 05 FF 00 00 00 ... returns 0x130 (0002ms, 3146ms total)
T29C8 452:653 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3147ms total)
T2914 452:655 JLINK_IsHalted() returns FALSE (0001ms, 3148ms total)
T2914 452:756 JLINK_IsHalted() returns FALSE (0001ms, 3148ms total)
T2914 452:857 JLINK_IsHalted() returns FALSE (0001ms, 3148ms total)
T2914 452:958 JLINK_IsHalted() returns FALSE (0001ms, 3148ms total)
T2914 453:059 JLINK_IsHalted() returns FALSE (0001ms, 3148ms total)
T2914 453:160 JLINK_IsHalted() returns FALSE (0001ms, 3148ms total)
T2914 453:261 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3147ms total)
T29C8 453:261 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0003ms, 3150ms total)
T29C8 453:264 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3151ms total)
T2914 453:265 JLINK_IsHalted() returns FALSE (0001ms, 3152ms total)
T2914 453:366 JLINK_IsHalted() returns FALSE (0001ms, 3152ms total)
T2914 453:467 JLINK_IsHalted() returns FALSE (0001ms, 3152ms total)
T2914 453:568 JLINK_IsHalted() returns FALSE (0001ms, 3152ms total)
T2914 453:669 JLINK_IsHalted() returns FALSE (0001ms, 3152ms total)
T2914 453:770 JLINK_IsHalted() returns FALSE (0001ms, 3152ms total)
T2914 453:871 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3151ms total)
T29C8 453:871 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 03 00 00 00 1F 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3153ms total)
T29C8 453:873 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3154ms total)
T2914 453:874 JLINK_IsHalted() returns FALSE (0001ms, 3155ms total)
T2914 453:975 JLINK_IsHalted() returns FALSE (0001ms, 3155ms total)
T2914 454:076 JLINK_IsHalted() returns FALSE (0001ms, 3155ms total)
T2914 454:177 JLINK_IsHalted() returns FALSE (0001ms, 3155ms total)
T2914 454:278 JLINK_IsHalted() returns FALSE (0001ms, 3155ms total)
T2914 454:379 JLINK_IsHalted() returns FALSE (0001ms, 3155ms total)
T2914 454:480 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3154ms total)
T29C8 454:480 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3156ms total)
T29C8 454:482 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3157ms total)
T2914 454:484 JLINK_IsHalted() returns FALSE (0000ms, 3157ms total)
T2914 454:584 JLINK_IsHalted() returns FALSE (0001ms, 3158ms total)
T2914 454:685 JLINK_IsHalted() returns FALSE (0001ms, 3158ms total)
T2914 454:786 JLINK_IsHalted() returns FALSE (0001ms, 3158ms total)
T2914 454:887 JLINK_IsHalted() returns FALSE (0001ms, 3158ms total)
T2914 454:988 JLINK_IsHalted() returns FALSE (0001ms, 3158ms total)
T2914 455:089 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3157ms total)
T29C8 455:089 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 09 A9 00 08 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3159ms total)
T29C8 455:091 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3160ms total)
T2914 455:092 JLINK_IsHalted() returns FALSE (0001ms, 3161ms total)
T2914 455:193 JLINK_IsHalted() returns FALSE (0001ms, 3161ms total)
T2914 455:295 JLINK_IsHalted() returns FALSE (0001ms, 3161ms total)
T2914 455:396 JLINK_IsHalted() returns FALSE (0002ms, 3162ms total)
T2914 455:498 JLINK_IsHalted() returns FALSE (0001ms, 3161ms total)
T2914 455:599 JLINK_IsHalted() returns FALSE (0001ms, 3161ms total)
T2914 455:701 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3160ms total)
T29C8 455:701 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0003ms, 3163ms total)
T29C8 455:704 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3164ms total)
T2914 455:705 JLINK_IsHalted() returns FALSE (0001ms, 3165ms total)
T2914 455:806 JLINK_IsHalted() returns FALSE (0001ms, 3165ms total)
T2914 455:907 JLINK_IsHalted() returns FALSE (0001ms, 3165ms total)
T2914 456:008 JLINK_IsHalted() returns FALSE (0001ms, 3165ms total)
T2914 456:109 JLINK_IsHalted() returns FALSE (0001ms, 3165ms total)
T2914 456:210 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3164ms total)
T29C8 456:210 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3166ms total)
T29C8 456:212 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3167ms total)
T2914 456:213 JLINK_IsHalted() returns FALSE (0001ms, 3168ms total)
T2914 456:314 JLINK_IsHalted() returns FALSE (0001ms, 3168ms total)
T2914 456:415 JLINK_IsHalted() returns FALSE (0001ms, 3168ms total)
T2914 456:516 JLINK_IsHalted() returns FALSE (0001ms, 3168ms total)
T2914 456:617 JLINK_IsHalted() returns FALSE (0001ms, 3168ms total)
T2914 456:718 JLINK_IsHalted() returns FALSE (0001ms, 3168ms total)
T2914 456:819 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3167ms total)
T29C8 456:819 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3169ms total)
T29C8 456:821 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3170ms total)
T2914 456:822 JLINK_IsHalted() returns FALSE (0001ms, 3171ms total)
T2914 456:923 JLINK_IsHalted() returns FALSE (0001ms, 3171ms total)
T2914 457:024 JLINK_IsHalted() returns FALSE (0001ms, 3171ms total)
T2914 457:125 JLINK_IsHalted() returns FALSE (0001ms, 3171ms total)
T2914 457:226 JLINK_IsHalted() returns FALSE (0001ms, 3171ms total)
T2914 457:327 JLINK_IsHalted() returns FALSE (0002ms, 3172ms total)
T2914 457:429 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3170ms total)
T29C8 457:429 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3172ms total)
T29C8 457:431 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0002ms, 3174ms total)
T2914 457:433 JLINK_IsHalted() returns FALSE (0001ms, 3175ms total)
T2914 457:534 JLINK_IsHalted() returns FALSE (0001ms, 3175ms total)
T2914 457:635 JLINK_IsHalted() returns FALSE (0001ms, 3175ms total)
T2914 457:737 JLINK_IsHalted() returns FALSE (0001ms, 3175ms total)
T2914 457:838 JLINK_IsHalted() returns FALSE (0001ms, 3175ms total)
T2914 457:939 JLINK_IsHalted() returns FALSE (0001ms, 3175ms total)
T2914 458:040 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3174ms total)
T29C8 458:040 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3176ms total)
T29C8 458:043 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0000ms, 3176ms total)
T2914 458:044 JLINK_IsHalted() returns FALSE (0000ms, 3176ms total)
T2914 458:145 JLINK_IsHalted() returns FALSE (0001ms, 3177ms total)
T2914 458:246 JLINK_IsHalted() returns FALSE (0001ms, 3177ms total)
T2914 458:347 JLINK_IsHalted() returns FALSE (0001ms, 3177ms total)
T2914 458:448 JLINK_IsHalted() returns FALSE (0001ms, 3177ms total)
T2914 458:549 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3176ms total)
T29C8 458:549 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 1F 00 00 00 03 00 00 00 03 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3178ms total)
T29C8 458:551 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3179ms total)
T2914 458:552 JLINK_IsHalted() returns FALSE (0001ms, 3180ms total)
T2914 458:653 JLINK_IsHalted() returns FALSE (0001ms, 3180ms total)
T2914 458:754 JLINK_IsHalted() returns FALSE (0001ms, 3180ms total)
T2914 458:855 JLINK_IsHalted() returns FALSE (0001ms, 3180ms total)
T2914 458:956 JLINK_IsHalted() returns FALSE (0002ms, 3181ms total)
T2914 459:058 JLINK_IsHalted() returns FALSE (0001ms, 3180ms total)
T2914 459:159 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3179ms total)
T29C8 459:159 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3181ms total)
T29C8 459:161 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0002ms, 3183ms total)
T2914 459:163 JLINK_IsHalted() returns FALSE (0001ms, 3184ms total)
T2914 459:264 JLINK_IsHalted() returns FALSE (0001ms, 3184ms total)
T2914 459:365 JLINK_IsHalted() returns FALSE (0001ms, 3184ms total)
T2914 459:466 JLINK_IsHalted() returns FALSE (0001ms, 3184ms total)
T2914 459:567 JLINK_IsHalted() returns FALSE (0001ms, 3184ms total)
T2914 459:668 JLINK_IsHalted() returns FALSE (0001ms, 3184ms total)
T2914 459:769 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3183ms total)
T29C8 459:770 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3185ms total)
T29C8 459:772 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3186ms total)
T2914 459:773 JLINK_IsHalted() returns FALSE (0001ms, 3187ms total)
T2914 459:874 JLINK_IsHalted() returns FALSE (0001ms, 3187ms total)
T2914 459:975 JLINK_IsHalted() returns FALSE (0001ms, 3187ms total)
T2914 460:076 JLINK_IsHalted() returns FALSE (0001ms, 3187ms total)
T2914 460:177 JLINK_IsHalted() returns FALSE (0001ms, 3187ms total)
T2914 460:278 JLINK_IsHalted() returns FALSE (0002ms, 3188ms total)
T2914 460:380 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3186ms total)
T29C8 460:380 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3188ms total)
T29C8 460:382 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3189ms total)
T2914 460:383 JLINK_IsHalted() returns FALSE (0001ms, 3190ms total)
T2914 460:484 JLINK_IsHalted() returns FALSE (0001ms, 3190ms total)
T2914 460:585 JLINK_IsHalted() returns FALSE (0001ms, 3190ms total)
T2914 460:686 JLINK_IsHalted() returns FALSE (0001ms, 3190ms total)
T2914 460:787 JLINK_IsHalted() returns FALSE (0001ms, 3190ms total)
T2914 460:888 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3189ms total)
T29C8 460:888 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 1F 00 00 00 03 00 00 00 5D 1F 00 08 03 00 00 00 ... returns 0x130 (0003ms, 3192ms total)
T29C8 460:891 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0000ms, 3192ms total)
T2914 460:892 JLINK_IsHalted() returns FALSE (0000ms, 3192ms total)
T2914 460:992 JLINK_IsHalted() returns FALSE (0001ms, 3193ms total)
T2914 461:093 JLINK_IsHalted() returns FALSE (0001ms, 3193ms total)
T2914 461:194 JLINK_IsHalted() returns FALSE (0001ms, 3193ms total)
T2914 461:295 JLINK_IsHalted() returns FALSE (0001ms, 3193ms total)
T2914 461:396 JLINK_IsHalted() returns FALSE (0001ms, 3193ms total)
T2914 461:497 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3192ms total)
T29C8 461:497 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3194ms total)
T29C8 461:499 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0000ms, 3194ms total)
T2914 461:500 JLINK_IsHalted() returns FALSE (0001ms, 3196ms total)
T2914 461:601 JLINK_IsHalted() returns FALSE (0001ms, 3196ms total)
T2914 461:702 JLINK_IsHalted() returns FALSE (0001ms, 3196ms total)
T2914 461:803 JLINK_IsHalted() returns FALSE (0002ms, 3197ms total)
T2914 461:905 JLINK_IsHalted() returns FALSE (0001ms, 3196ms total)
T2914 462:006 JLINK_IsHalted() returns FALSE (0001ms, 3196ms total)
T2914 462:107 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3195ms total)
T29C8 462:107 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 21 14 00 08 03 00 00 00 1F E0 01 05 FF 00 00 00 ... returns 0x130 (0002ms, 3197ms total)
T29C8 462:109 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3198ms total)
T2914 462:110 JLINK_IsHalted() returns FALSE (0001ms, 3199ms total)
T2914 462:211 JLINK_IsHalted() returns FALSE (0001ms, 3199ms total)
T2914 462:312 JLINK_IsHalted() returns FALSE (0001ms, 3199ms total)
T2914 462:413 JLINK_IsHalted() returns FALSE (0001ms, 3199ms total)
T2914 462:514 JLINK_IsHalted() returns FALSE (0001ms, 3199ms total)
T2914 462:615 JLINK_IsHalted() returns FALSE (0002ms, 3200ms total)
T2914 462:717 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3198ms total)
T29C8 462:717 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 1F 00 00 00 03 00 00 00 03 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3200ms total)
T29C8 462:719 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3201ms total)
T2914 462:720 JLINK_IsHalted() returns FALSE (0001ms, 3202ms total)
T2914 462:821 JLINK_IsHalted() returns FALSE (0001ms, 3202ms total)
T2914 462:922 JLINK_IsHalted() returns FALSE (0001ms, 3202ms total)
T2914 463:023 JLINK_IsHalted() returns FALSE (0001ms, 3202ms total)
T2914 463:124 JLINK_IsHalted() returns FALSE (0001ms, 3202ms total)
T2914 463:225 JLINK_IsHalted() returns FALSE (0000ms, 3201ms total)
T2914 463:325 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3201ms total)
T29C8 463:327 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 1F 00 00 00 03 00 00 00 5D 1F 00 08 03 00 00 00 ... returns 0x130 (0003ms, 3204ms total)
T29C8 463:330 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3205ms total)
T2914 463:331 JLINK_IsHalted() returns FALSE (0002ms, 3207ms total)
T2914 463:433 JLINK_IsHalted() returns FALSE (0001ms, 3206ms total)
T2914 463:534 JLINK_IsHalted() returns FALSE (0001ms, 3206ms total)
T2914 463:635 JLINK_IsHalted() returns FALSE (0001ms, 3206ms total)
T2914 463:736 JLINK_IsHalted() returns FALSE (0001ms, 3206ms total)
T2914 463:838 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3205ms total)
T29C8 463:838 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 40 00 00 00 B4 8F 00 20 51 5C 00 08 D8 05 00 20 ... returns 0x130 (0002ms, 3207ms total)
T29C8 463:840 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3208ms total)
T2914 463:841 JLINK_IsHalted() returns FALSE (0001ms, 3209ms total)
T2914 463:942 JLINK_IsHalted() returns FALSE (0001ms, 3209ms total)
T2914 464:043 JLINK_IsHalted() returns FALSE (0001ms, 3209ms total)
T2914 464:144 JLINK_IsHalted() returns FALSE (0001ms, 3209ms total)
T2914 464:245 JLINK_IsHalted() returns FALSE (0002ms, 3210ms total)
T2914 464:347 JLINK_IsHalted() returns FALSE (0001ms, 3209ms total)
T2914 464:448 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3208ms total)
T29C8 464:448 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3210ms total)
T29C8 464:450 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3211ms total)
T2914 464:451 JLINK_IsHalted() returns FALSE (0001ms, 3212ms total)
T2914 464:552 JLINK_IsHalted() returns FALSE (0001ms, 3212ms total)
T2914 464:653 JLINK_IsHalted() returns FALSE (0001ms, 3212ms total)
T2914 464:754 JLINK_IsHalted() returns FALSE (0001ms, 3212ms total)
T2914 464:855 JLINK_IsHalted() returns FALSE (0001ms, 3212ms total)
T2914 464:956 JLINK_IsHalted() returns FALSE (0001ms, 3212ms total)
T2914 465:057 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3211ms total)
T29C8 465:057 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3213ms total)
T29C8 465:059 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3214ms total)
T2914 465:060 JLINK_IsHalted() returns FALSE (0001ms, 3215ms total)
T2914 465:161 JLINK_IsHalted() returns FALSE (0002ms, 3216ms total)
T2914 465:263 JLINK_IsHalted() returns FALSE (0001ms, 3215ms total)
T2914 465:364 JLINK_IsHalted() returns FALSE (0001ms, 3215ms total)
T2914 465:465 JLINK_IsHalted() returns FALSE (0001ms, 3215ms total)
T2914 465:566 JLINK_IsHalted() returns FALSE (0001ms, 3215ms total)
T2914 465:668 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3214ms total)
T29C8 465:668 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 1F 00 00 00 03 00 00 00 5D 1F 00 08 03 00 00 00 ... returns 0x130 (0002ms, 3216ms total)
T29C8 465:670 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3217ms total)
T2914 465:671 JLINK_IsHalted() returns FALSE (0001ms, 3218ms total)
T2914 465:772 JLINK_IsHalted() returns FALSE (0001ms, 3218ms total)
T2914 465:873 JLINK_IsHalted() returns FALSE (0001ms, 3218ms total)
T2914 465:974 JLINK_IsHalted() returns FALSE (0001ms, 3218ms total)
T2914 466:075 JLINK_IsHalted() returns FALSE (0001ms, 3218ms total)
T2914 466:176 JLINK_IsHalted() returns FALSE (0001ms, 3218ms total)
T2914 466:277 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3217ms total)
T29C8 466:277 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3219ms total)
T29C8 466:279 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3220ms total)
T2914 466:280 JLINK_IsHalted() returns FALSE (0001ms, 3221ms total)
T2914 466:381 JLINK_IsHalted() returns FALSE (0002ms, 3222ms total)
T2914 466:483 JLINK_IsHalted() returns FALSE (0001ms, 3221ms total)
T2914 466:584 JLINK_IsHalted() returns FALSE (0001ms, 3221ms total)
T2914 466:685 JLINK_IsHalted() returns FALSE (0001ms, 3221ms total)
T2914 466:786 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3220ms total)
T29C8 466:786 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3222ms total)
T29C8 466:788 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3223ms total)
T2914 466:789 JLINK_IsHalted() returns FALSE (0001ms, 3224ms total)
T2914 466:890 JLINK_IsHalted() returns FALSE (0001ms, 3224ms total)
T2914 466:991 JLINK_IsHalted() returns FALSE (0001ms, 3224ms total)
T2914 467:092 JLINK_IsHalted() returns FALSE (0001ms, 3224ms total)
T2914 467:193 JLINK_IsHalted() returns FALSE (0001ms, 3224ms total)
T2914 467:294 JLINK_IsHalted() returns FALSE (0001ms, 3224ms total)
T2914 467:395 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3223ms total)
T29C8 467:395 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 03 00 00 00 1F 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3225ms total)
T29C8 467:397 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3226ms total)
T2914 467:398 JLINK_IsHalted() returns FALSE (0001ms, 3227ms total)
T2914 467:499 JLINK_IsHalted() returns FALSE (0001ms, 3227ms total)
T2914 467:600 JLINK_IsHalted() returns FALSE (0001ms, 3227ms total)
T2914 467:701 JLINK_IsHalted() returns FALSE (0001ms, 3227ms total)
T2914 467:802 JLINK_IsHalted() returns FALSE (0001ms, 3227ms total)
T2914 467:903 JLINK_IsHalted() returns FALSE (0001ms, 3227ms total)
T2914 468:004 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3226ms total)
T29C8 468:004 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 21 14 00 08 03 00 00 00 03 00 00 00 1F 00 00 00 ... returns 0x130 (0002ms, 3228ms total)
T29C8 468:006 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3229ms total)
T2914 468:007 JLINK_IsHalted() returns FALSE (0001ms, 3230ms total)
T2914 468:108 JLINK_IsHalted() returns FALSE (0001ms, 3230ms total)
T2914 468:209 JLINK_IsHalted() returns FALSE (0001ms, 3230ms total)
T2914 468:310 JLINK_IsHalted() returns FALSE (0001ms, 3230ms total)
T2914 468:411 JLINK_IsHalted() returns FALSE (0002ms, 3231ms total)
T2914 468:513 JLINK_IsHalted() returns FALSE (0001ms, 3230ms total)
T2914 468:614 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3229ms total)
T29C8 468:614 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3231ms total)
T29C8 468:616 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3232ms total)
T2914 468:617 JLINK_IsHalted() returns FALSE (0001ms, 3233ms total)
T2914 468:718 JLINK_IsHalted() returns FALSE (0001ms, 3233ms total)
T2914 468:819 JLINK_IsHalted() returns FALSE (0001ms, 3233ms total)
T2914 468:920 JLINK_IsHalted() returns FALSE (0001ms, 3233ms total)
T2914 469:021 JLINK_IsHalted() returns FALSE (0001ms, 3233ms total)
T2914 469:122 JLINK_IsHalted() returns FALSE (0001ms, 3233ms total)
T2914 469:223 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3232ms total)
T29C8 469:223 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3234ms total)
T29C8 469:226 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0000ms, 3234ms total)
T2914 469:227 JLINK_IsHalted() returns FALSE (0001ms, 3235ms total)
T2914 469:328 JLINK_IsHalted() returns FALSE (0001ms, 3235ms total)
T2914 469:430 JLINK_IsHalted() returns FALSE (0001ms, 3235ms total)
T2914 469:531 JLINK_IsHalted() returns FALSE (0001ms, 3235ms total)
T2914 469:632 JLINK_IsHalted() returns FALSE (0001ms, 3235ms total)
T2914 469:733 JLINK_IsHalted() returns FALSE (0001ms, 3235ms total)
T2914 469:834 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3234ms total)
T29C8 469:834 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F34) - Data: 15 1F 00 08 03 00 00 00 81 92 00 08 50 8F 00 20 ... returns 0x130 (0002ms, 3236ms total)
T29C8 469:836 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3237ms total)
T2914 469:837 JLINK_IsHalted() returns FALSE (0001ms, 3238ms total)
T2914 469:938 JLINK_IsHalted() returns FALSE (0001ms, 3238ms total)
T2914 470:039 JLINK_IsHalted() returns FALSE (0001ms, 3238ms total)
T2914 470:140 JLINK_IsHalted() returns FALSE (0001ms, 3238ms total)
T2914 470:241 JLINK_IsHalted() returns FALSE (0001ms, 3238ms total)
T2914 470:342 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3237ms total)
T29C8 470:342 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3238ms total)
T2914 470:343 JLINK_IsHalted() returns FALSE (0001ms, 3239ms total)
T2914 470:444 JLINK_IsHalted() returns FALSE (0001ms, 3239ms total)
T2914 470:545 JLINK_IsHalted() returns FALSE (0001ms, 3239ms total)
T2914 470:646 JLINK_IsHalted() returns FALSE (0001ms, 3239ms total)
T2914 470:747 JLINK_IsHalted() returns FALSE (0001ms, 3239ms total)
T2914 470:848 JLINK_IsHalted() returns FALSE (0001ms, 3239ms total)
T2914 470:949 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3238ms total)
T29C8 470:949 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3239ms total)
T2914 470:950 JLINK_IsHalted() returns FALSE (0001ms, 3240ms total)
T2914 471:051 JLINK_IsHalted() returns FALSE (0001ms, 3240ms total)
T2914 471:152 JLINK_IsHalted() returns FALSE (0001ms, 3240ms total)
T2914 471:253 JLINK_IsHalted() returns FALSE (0001ms, 3240ms total)
T2914 471:354 JLINK_IsHalted() returns FALSE (0001ms, 3240ms total)
T2914 471:455 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3239ms total)
T29C8 471:455 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0002ms, 3241ms total)
T2914 471:457 JLINK_IsHalted() returns FALSE (0001ms, 3242ms total)
T2914 471:558 JLINK_IsHalted() returns FALSE (0001ms, 3242ms total)
T2914 471:659 JLINK_IsHalted() returns FALSE (0001ms, 3242ms total)
T2914 471:760 JLINK_IsHalted() returns FALSE (0001ms, 3242ms total)
T2914 471:861 JLINK_IsHalted() returns FALSE (0001ms, 3242ms total)
T2914 471:963 JLINK_IsHalted() returns FALSE (0001ms, 3242ms total)
T2914 472:064 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3241ms total)
T29C8 472:064 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3242ms total)
T2914 472:065 JLINK_IsHalted() returns FALSE (0002ms, 3244ms total)
T2914 472:167 JLINK_IsHalted() returns FALSE (0001ms, 3243ms total)
T2914 472:268 JLINK_IsHalted() returns FALSE (0001ms, 3243ms total)
T2914 472:369 JLINK_IsHalted() returns FALSE (0001ms, 3243ms total)
T2914 472:470 JLINK_IsHalted() returns FALSE (0001ms, 3243ms total)
T2914 472:571 JLINK_IsHalted() returns FALSE (0001ms, 3243ms total)
T2914 472:672 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3242ms total)
T29C8 472:672 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3243ms total)
T2914 472:673 JLINK_IsHalted() returns FALSE (0001ms, 3244ms total)
T2914 472:774 JLINK_IsHalted() returns FALSE (0001ms, 3244ms total)
T2914 472:875 JLINK_IsHalted() returns FALSE (0001ms, 3244ms total)
T2914 472:976 JLINK_IsHalted() returns FALSE (0001ms, 3244ms total)
T2914 473:077 JLINK_IsHalted() returns FALSE (0001ms, 3244ms total)
T2914 473:178 JLINK_IsHalted() returns FALSE (0001ms, 3244ms total)
T2914 473:279 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3243ms total)
T29C8 473:279 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3244ms total)
T2914 473:280 JLINK_IsHalted() returns FALSE (0001ms, 3245ms total)
T2914 473:381 JLINK_IsHalted() returns FALSE (0001ms, 3245ms total)
T2914 473:482 JLINK_IsHalted() returns FALSE (0002ms, 3246ms total)
T2914 473:584 JLINK_IsHalted() returns FALSE (0001ms, 3245ms total)
T2914 473:685 JLINK_IsHalted() returns FALSE (0001ms, 3245ms total)
T2914 473:786 JLINK_IsHalted() returns FALSE (0001ms, 3245ms total)
T2914 473:887 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3244ms total)
T29C8 473:887 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3245ms total)
T2914 473:889 JLINK_IsHalted() returns FALSE (0000ms, 3245ms total)
T2914 473:989 JLINK_IsHalted() returns FALSE (0001ms, 3246ms total)
T2914 474:090 JLINK_IsHalted() returns FALSE (0001ms, 3246ms total)
T2914 474:191 JLINK_IsHalted() returns FALSE (0001ms, 3246ms total)
T2914 474:292 JLINK_IsHalted() returns FALSE (0001ms, 3246ms total)
T2914 474:393 JLINK_IsHalted() returns FALSE (0001ms, 3246ms total)
T2914 474:494 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3245ms total)
T29C8 474:494 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3246ms total)
T2914 474:496 JLINK_IsHalted() returns FALSE (0000ms, 3246ms total)
T2914 474:596 JLINK_IsHalted() returns FALSE (0001ms, 3247ms total)
T2914 474:697 JLINK_IsHalted() returns FALSE (0001ms, 3247ms total)
T2914 474:798 JLINK_IsHalted() returns FALSE (0001ms, 3247ms total)
T2914 474:899 JLINK_IsHalted() returns FALSE (0001ms, 3247ms total)
T29C8 474:947 JLINK_SetBPEx(Addr = 0x08006F26, Type = 0xFFFFFFF2) -- CPU is running -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002008) returns 0x00000008 (0002ms, 3248ms total)
T2914 475:000 JLINK_IsHalted() returns FALSE (0001ms, 3249ms total)
T2914 475:101 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3248ms total)
T29C8 475:101 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3249ms total)
T2914 475:103 JLINK_IsHalted() returns FALSE (0000ms, 3249ms total)
T2914 475:203 JLINK_IsHalted() returns FALSE (0001ms, 3250ms total)
T2914 475:304 JLINK_IsHalted() returns FALSE (0001ms, 3250ms total)
T2914 475:406 JLINK_IsHalted() returns FALSE (0001ms, 3250ms total)
T2914 475:507 JLINK_IsHalted() returns FALSE (0001ms, 3250ms total)
T2914 475:608 JLINK_IsHalted() returns FALSE (0001ms, 3250ms total)
T2914 475:709 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3249ms total)
T29C8 475:709 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3250ms total)
T2914 475:710 JLINK_IsHalted() returns FALSE (0003ms, 3253ms total)
T2914 475:813 JLINK_IsHalted() returns FALSE (0001ms, 3251ms total)
T2914 475:914 JLINK_IsHalted() returns FALSE (0001ms, 3251ms total)
T2914 476:016 JLINK_IsHalted() returns FALSE (0001ms, 3251ms total)
T2914 476:117 JLINK_IsHalted() returns FALSE (0001ms, 3251ms total)
T2914 476:219 JLINK_IsHalted() returns FALSE (0001ms, 3251ms total)
T2914 476:320 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3250ms total)
T29C8 476:321 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0002ms, 3252ms total)
T2914 476:323 JLINK_IsHalted() returns FALSE (0001ms, 3253ms total)
T2914 476:425 JLINK_IsHalted() returns FALSE (0001ms, 3253ms total)
T2914 476:526 JLINK_IsHalted() returns FALSE (0001ms, 3253ms total)
T2914 476:627 JLINK_IsHalted() returns FALSE (0001ms, 3253ms total)
T2914 476:728 JLINK_IsHalted() returns FALSE (0001ms, 3253ms total)
T2914 476:830 JLINK_IsHalted() returns FALSE (0001ms, 3253ms total)
T2914 476:931 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3252ms total)
T29C8 476:931 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3253ms total)
T2914 476:932 JLINK_IsHalted() returns FALSE (0001ms, 3254ms total)
T2914 477:033 JLINK_IsHalted() returns FALSE (0002ms, 3255ms total)
T2914 477:135 JLINK_IsHalted() returns FALSE (0001ms, 3254ms total)
T2914 477:236 JLINK_IsHalted() returns FALSE (0001ms, 3254ms total)
T2914 477:337 JLINK_IsHalted() returns FALSE (0001ms, 3254ms total)
T2914 477:438 JLINK_IsHalted() returns FALSE (0001ms, 3254ms total)
T2914 477:539 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3253ms total)
T29C8 477:539 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3254ms total)
T2914 477:540 JLINK_IsHalted() returns FALSE (0001ms, 3255ms total)
T2914 477:641 JLINK_IsHalted() returns FALSE (0001ms, 3255ms total)
T2914 477:742 JLINK_IsHalted() returns FALSE (0001ms, 3255ms total)
T2914 477:843 JLINK_IsHalted() returns FALSE (0001ms, 3255ms total)
T2914 477:944 JLINK_IsHalted() returns FALSE (0001ms, 3255ms total)
T2914 478:045 JLINK_IsHalted() returns FALSE (0002ms, 3256ms total)
T2914 478:147 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3254ms total)
T29C8 478:147 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3255ms total)
T2914 478:149 JLINK_IsHalted() returns FALSE (0000ms, 3255ms total)
T2914 478:249 JLINK_IsHalted() returns FALSE (0001ms, 3256ms total)
T2914 478:350 JLINK_IsHalted() returns FALSE (0001ms, 3256ms total)
T2914 478:451 JLINK_IsHalted() returns FALSE (0001ms, 3256ms total)
T2914 478:552 JLINK_IsHalted() returns FALSE (0001ms, 3256ms total)
T2914 478:653 JLINK_IsHalted() returns FALSE (0001ms, 3256ms total)
T2914 478:754 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3255ms total)
T29C8 478:755 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3256ms total)
T2914 478:756 JLINK_IsHalted() returns FALSE (0001ms, 3257ms total)
T2914 478:857 JLINK_IsHalted() returns FALSE (0001ms, 3257ms total)
T2914 478:958 JLINK_IsHalted() returns FALSE (0001ms, 3257ms total)
T2914 479:059 JLINK_IsHalted() returns FALSE (0001ms, 3257ms total)
T2914 479:160 JLINK_IsHalted() returns FALSE (0001ms, 3257ms total)
T2914 479:261 JLINK_IsHalted() returns FALSE (0002ms, 3258ms total)
T2914 479:363 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3256ms total)
T29C8 479:363 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3257ms total)
T2914 479:364 JLINK_IsHalted() returns FALSE (0001ms, 3258ms total)
T2914 479:465 JLINK_IsHalted() returns FALSE (0001ms, 3258ms total)
T2914 479:566 JLINK_IsHalted() returns FALSE (0001ms, 3258ms total)
T2914 479:667 JLINK_IsHalted() returns FALSE (0001ms, 3258ms total)
T2914 479:768 JLINK_IsHalted() returns FALSE (0001ms, 3258ms total)
T2914 479:869 JLINK_IsHalted() returns FALSE (0001ms, 3258ms total)
T2914 479:970 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 1C 5A 93 0A returns 1 (0000ms, 3257ms total)
T29C8 479:970 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3258ms total)
T2914 479:972 JLINK_IsHalted() returns FALSE (0001ms, 3259ms total)
T2914 480:073 JLINK_IsHalted() returns FALSE (0001ms, 3259ms total)
T2914 480:174 JLINK_IsHalted() returns TRUE (0003ms, 3261ms total)
T2914 480:178 JLINK_Halt() returns 0x00 (0000ms, 3258ms total)
T2914 480:178 JLINK_IsHalted() returns TRUE (0000ms, 3258ms total)
T2914 480:178 JLINK_IsHalted() returns TRUE (0000ms, 3258ms total)
T2914 480:178 JLINK_IsHalted() returns TRUE (0000ms, 3258ms total)
T2914 480:178 JLINK_ReadReg(R15 (PC)) returns 0x08006F26 (0000ms, 3258ms total)
T2914 480:178 JLINK_ReadReg(XPSR) returns 0x01000027 (0000ms, 3258ms total)
T2914 480:178 JLINK_ClrBPEx(BPHandle = 0x00000008) returns 0x00 (0000ms, 3258ms total)
T2914 480:178 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 02 00 00 00 returns 1 (0001ms, 3259ms total)
T2914 480:179 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00 returns 1 (0001ms, 3260ms total)
T2914 480:180 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 02 00 00 returns 1 (0001ms, 3261ms total)
T2914 480:181 JLINK_ReadMemU32(0xE0001048, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001048) - Data: 00 00 00 00 returns 1 (0001ms, 3262ms total)
T2914 480:182 JLINK_ReadMemU32(0xE0001058, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001058) - Data: 00 00 00 00 returns 1 (0001ms, 3263ms total)
T2914 480:183 JLINK_ReadReg(R0) returns 0x20002075 (0000ms, 3263ms total)
T2914 480:183 JLINK_ReadReg(R1) returns 0x00000001 (0000ms, 3263ms total)
T2914 480:183 JLINK_ReadReg(R2) returns 0x00000000 (0001ms, 3264ms total)
T2914 480:184 JLINK_ReadReg(R3) returns 0x20008F5C (0000ms, 3264ms total)
T2914 480:184 JLINK_ReadReg(R4) returns 0x00000000 (0000ms, 3264ms total)
T2914 480:184 JLINK_ReadReg(R5) returns 0x00000000 (0000ms, 3264ms total)
T2914 480:184 JLINK_ReadReg(R6) returns 0x20008F5C (0000ms, 3264ms total)
T2914 480:184 JLINK_ReadReg(R7) returns 0x00000004 (0000ms, 3264ms total)
T2914 480:184 JLINK_ReadReg(R8) returns 0x00000000 (0000ms, 3264ms total)
T2914 480:184 JLINK_ReadReg(R9) returns 0x20000134 (0000ms, 3264ms total)
T2914 480:184 JLINK_ReadReg(R10) returns 0x00000000 (0000ms, 3264ms total)
T2914 480:184 JLINK_ReadReg(R11) returns 0x00000000 (0000ms, 3264ms total)
T2914 480:184 JLINK_ReadReg(R12) returns 0x00000004 (0000ms, 3264ms total)
T2914 480:184 JLINK_ReadReg(R13 (SP)) returns 0x20008EC8 (0000ms, 3264ms total)
T2914 480:184 JLINK_ReadReg(R14) returns 0x08006F09 (0000ms, 3264ms total)
T2914 480:184 JLINK_ReadReg(R15 (PC)) returns 0x08006F26 (0000ms, 3264ms total)
T2914 480:184 JLINK_ReadReg(XPSR) returns 0x01000027 (0000ms, 3264ms total)
T2914 480:184 JLINK_ReadReg(MSP) returns 0x20008EC8 (0000ms, 3264ms total)
T2914 480:184 JLINK_ReadReg(PSP) returns 0x20001000 (0000ms, 3264ms total)
T2914 480:184 JLINK_ReadReg(CFBP) returns 0x00000001 (0000ms, 3264ms total)
T2914 480:184 JLINK_ReadReg(FPSCR) returns 0x00000000 (0004ms, 3268ms total)
T2914 480:188 JLINK_ReadReg(FPS0) returns 0xFB068412 (0000ms, 3268ms total)
T2914 480:188 JLINK_ReadReg(FPS1) returns 0x10110C5A (0000ms, 3268ms total)
T2914 480:188 JLINK_ReadReg(FPS2) returns 0x04341E1B (0000ms, 3268ms total)
T2914 480:188 JLINK_ReadReg(FPS3) returns 0x80412402 (0000ms, 3268ms total)
T2914 480:188 JLINK_ReadReg(FPS4) returns 0x18248A00 (0000ms, 3268ms total)
T2914 480:188 JLINK_ReadReg(FPS5) returns 0x20102094 (0000ms, 3268ms total)
T2914 480:188 JLINK_ReadReg(FPS6) returns 0x82C0846D (0000ms, 3268ms total)
T2914 480:188 JLINK_ReadReg(FPS7) returns 0x08A02089 (0000ms, 3268ms total)
T2914 480:188 JLINK_ReadReg(FPS8) returns 0x05488443 (0000ms, 3268ms total)
T2914 480:188 JLINK_ReadReg(FPS9) returns 0xF372B940 (0000ms, 3268ms total)
T2914 480:188 JLINK_ReadReg(FPS10) returns 0x11B25004 (0000ms, 3268ms total)
T2914 480:188 JLINK_ReadReg(FPS11) returns 0x00024120 (0000ms, 3268ms total)
T2914 480:188 JLINK_ReadReg(FPS12) returns 0x023C5609 (0000ms, 3268ms total)
T2914 480:188 JLINK_ReadReg(FPS13) returns 0x8600710B (0000ms, 3268ms total)
T2914 480:188 JLINK_ReadReg(FPS14) returns 0xA03D9BF0 (0000ms, 3268ms total)
T2914 480:188 JLINK_ReadReg(FPS15) returns 0x5812A440 (0000ms, 3268ms total)
T2914 480:188 JLINK_ReadReg(FPS16) returns 0x15918209 (0000ms, 3268ms total)
T2914 480:188 JLINK_ReadReg(FPS17) returns 0xD015225C (0000ms, 3268ms total)
T2914 480:188 JLINK_ReadReg(FPS18) returns 0x0C0013B7 (0000ms, 3268ms total)
T2914 480:188 JLINK_ReadReg(FPS19) returns 0x1C58D420 (0000ms, 3268ms total)
T2914 480:188 JLINK_ReadReg(FPS20) returns 0xA4974081 (0000ms, 3268ms total)
T2914 480:188 JLINK_ReadReg(FPS21) returns 0x108D0118 (0000ms, 3268ms total)
T2914 480:188 JLINK_ReadReg(FPS22) returns 0x9044A200 (0000ms, 3268ms total)
T2914 480:188 JLINK_ReadReg(FPS23) returns 0x781049E0 (0000ms, 3268ms total)
T2914 480:188 JLINK_ReadReg(FPS24) returns 0x1C330E11 (0000ms, 3268ms total)
T2914 480:188 JLINK_ReadReg(FPS25) returns 0xC604704C (0000ms, 3268ms total)
T2914 480:188 JLINK_ReadReg(FPS26) returns 0x2C70E395 (0000ms, 3268ms total)
T2914 480:188 JLINK_ReadReg(FPS27) returns 0x8012365D (0000ms, 3268ms total)
T2914 480:188 JLINK_ReadReg(FPS28) returns 0x028512B3 (0000ms, 3268ms total)
T2914 480:188 JLINK_ReadReg(FPS29) returns 0x321C1711 (0000ms, 3268ms total)
T2914 480:188 JLINK_ReadReg(FPS30) returns 0x40000912 (0000ms, 3268ms total)
T2914 480:188 JLINK_ReadReg(FPS31) returns 0x11A67042 (0000ms, 3268ms total)
T29C8 480:189 JLINK_ReadMemEx(0x20008EDC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20008EC0) -- Updating C cache (64 bytes @ 0x20008EC0) -- Read from C cache (4 bytes @ 0x20008EDC) - Data: BD 6C 00 08 returns 0x04 (0001ms, 3269ms total)
T29C8 480:190 JLINK_ReadMemEx(0x20008EC8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008EC8) - Data: 59 8F 00 20 returns 0x04 (0000ms, 3269ms total)
T29C8 480:190 JLINK_ReadMemEx(0x20008ECC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008ECC) - Data: 10 00 00 00 returns 0x04 (0000ms, 3269ms total)
T29C8 480:190 JLINK_ReadMemEx(0x20008ED0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008ED0) - Data: 15 00 00 00 returns 0x04 (0000ms, 3269ms total)
T29C8 480:190 JLINK_ReadMemEx(0x20008ED4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008ED4) - Data: 00 00 00 00 returns 0x04 (0000ms, 3269ms total)
T29C8 480:190 JLINK_ReadMemEx(0x20008ED8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008ED8) - Data: 00 00 00 00 returns 0x04 (0000ms, 3269ms total)
T29C8 480:190 JLINK_ReadMemEx(0x20008EDC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008EDC) - Data: BD 6C 00 08 returns 0x04 (0000ms, 3269ms total)
T29C8 480:190 JLINK_ReadMemEx(0x20008F34, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20008F00) -- Updating C cache (64 bytes @ 0x20008F00) -- Read from C cache (4 bytes @ 0x20008F34) - Data: 5B 71 00 08 returns 0x04 (0002ms, 3271ms total)
T29C8 480:192 JLINK_ReadMemEx(0x20008F24, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F24) - Data: 59 8F 00 20 returns 0x04 (0000ms, 3271ms total)
T29C8 480:192 JLINK_ReadMemEx(0x20008F28, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F28) - Data: D7 6A 00 00 returns 0x04 (0000ms, 3271ms total)
T29C8 480:192 JLINK_ReadMemEx(0x20008F2C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F2C) - Data: 58 8F 00 20 returns 0x04 (0000ms, 3271ms total)
T29C8 480:192 JLINK_ReadMemEx(0x20008F30, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F30) - Data: 00 00 00 00 returns 0x04 (0000ms, 3271ms total)
T29C8 480:192 JLINK_ReadMemEx(0x20008F34, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F34) - Data: 5B 71 00 08 returns 0x04 (0000ms, 3271ms total)
T29C8 480:192 JLINK_ReadMemEx(0x20008F4C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20008F40) -- Updating C cache (64 bytes @ 0x20008F40) -- Read from C cache (4 bytes @ 0x20008F4C) - Data: CF 71 00 08 returns 0x04 (0001ms, 3272ms total)
T29C8 480:193 JLINK_ReadMemEx(0x20008F38, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F38) - Data: 58 8F 00 20 returns 0x04 (0000ms, 3272ms total)
T29C8 480:193 JLINK_ReadMemEx(0x20008F3C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F3C) - Data: 40 00 00 00 returns 0x04 (0000ms, 3272ms total)
T29C8 480:193 JLINK_ReadMemEx(0x20008F40, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F40) - Data: 10 00 00 00 returns 0x04 (0000ms, 3272ms total)
T29C8 480:193 JLINK_ReadMemEx(0x20008F44, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F44) - Data: 00 00 00 00 returns 0x04 (0000ms, 3272ms total)
T29C8 480:193 JLINK_ReadMemEx(0x20008F48, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F48) - Data: 00 00 00 00 returns 0x04 (0000ms, 3272ms total)
T29C8 480:193 JLINK_ReadMemEx(0x20008F4C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F4C) - Data: CF 71 00 08 returns 0x04 (0000ms, 3272ms total)
T29C8 480:193 JLINK_ReadMemEx(0x20008F54, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F54) - Data: 57 8F 00 08 returns 0x04 (0000ms, 3272ms total)
T29C8 480:193 JLINK_ReadMemEx(0x20008F50, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F50) - Data: 03 00 00 00 returns 0x04 (0000ms, 3272ms total)
T29C8 480:193 JLINK_ReadMemEx(0x20008F54, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F54) - Data: 57 8F 00 08 returns 0x04 (0000ms, 3272ms total)
T29C8 480:193 JLINK_ReadMemEx(0x20008FA4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20008F80) -- Updating C cache (64 bytes @ 0x20008F80) -- Read from C cache (4 bytes @ 0x20008FA4) - Data: E7 11 00 08 returns 0x04 (0002ms, 3274ms total)
T29C8 480:195 JLINK_ReadMemEx(0x20008F9C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F9C) - Data: 00 00 00 00 returns 0x04 (0000ms, 3274ms total)
T29C8 480:195 JLINK_ReadMemEx(0x20008FA0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FA0) - Data: E8 8F 00 20 returns 0x04 (0000ms, 3274ms total)
T29C8 480:195 JLINK_ReadMemEx(0x20008FA4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FA4) - Data: E7 11 00 08 returns 0x04 (0000ms, 3274ms total)
T29C8 480:195 JLINK_ReadMemEx(0x20008FAC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FAC) - Data: F9 FF FF FF returns 0x04 (0000ms, 3274ms total)
T29C8 480:195 JLINK_ReadMemEx(0x20008FC8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20008FC0) -- Updating C cache (64 bytes @ 0x20008FC0) -- Read from C cache (4 bytes @ 0x20008FC8) - Data: 06 20 00 08 returns 0x04 (0003ms, 3277ms total)
T29C8 480:198 JLINK_ReadMemEx(0x20008FCC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FCC) - Data: 00 00 00 61 returns 0x04 (0000ms, 3277ms total)
T29C8 480:198 JLINK_ReadMemEx(0x20008FC4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FC4) - Data: F9 1F 00 08 returns 0x04 (0000ms, 3277ms total)
T29C8 480:198 JLINK_ReadMemEx(0xE000ED28, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0xE000ED28) - Data: 00 00 00 00 returns 0x04 (0002ms, 3279ms total)
T29C8 480:226 JLINK_ReadMemEx(0x20008FC8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FC8) - Data: 06 20 00 08 returns 0x04 (0000ms, 3279ms total)
T29C8 480:226 JLINK_ReadMemEx(0x20008FCC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FCC) - Data: 00 00 00 61 returns 0x04 (0000ms, 3279ms total)
T29C8 480:226 JLINK_ReadMemEx(0x20008FE4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FE4) - Data: 79 38 00 08 returns 0x04 (0000ms, 3279ms total)
T29C8 480:226 JLINK_ReadMemEx(0x20008FD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FD0) - Data: 84 D1 00 08 returns 0x04 (0000ms, 3279ms total)
T29C8 480:226 JLINK_ReadMemEx(0x20008FD4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FD4) - Data: 84 D1 00 08 returns 0x04 (0000ms, 3279ms total)
T29C8 480:226 JLINK_ReadMemEx(0x20008FD8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FD8) - Data: 00 00 00 00 returns 0x04 (0000ms, 3279ms total)
T29C8 480:226 JLINK_ReadMemEx(0x20008FDC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FDC) - Data: 00 00 00 00 returns 0x04 (0000ms, 3279ms total)
T29C8 480:226 JLINK_ReadMemEx(0x20008FE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FE0) - Data: 00 00 00 00 returns 0x04 (0000ms, 3279ms total)
T29C8 480:226 JLINK_ReadMemEx(0x20008FE4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FE4) - Data: 79 38 00 08 returns 0x04 (0000ms, 3279ms total)
T29C8 480:226 JLINK_ReadMemEx(0x20008FFC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FFC) - Data: F3 4A 00 08 returns 0x04 (0000ms, 3279ms total)
T29C8 480:226 JLINK_ReadMemEx(0x20008FF8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FF8) - Data: 84 D1 00 08 returns 0x04 (0000ms, 3279ms total)
T29C8 480:226 JLINK_ReadMemEx(0x20008FFC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FFC) - Data: F3 4A 00 08 returns 0x04 (0000ms, 3279ms total)
T29C8 480:226 JLINK_ReadMemEx(0x20009004, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20009000) -- Updating C cache (64 bytes @ 0x20009000) -- Read from C cache (4 bytes @ 0x20009004) - Data: C1 75 00 08 returns 0x04 (0002ms, 3281ms total)
T29C8 480:228 JLINK_ReadMemEx(0x20009000, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20009000) - Data: 84 D1 00 08 returns 0x04 (0000ms, 3281ms total)
T29C8 480:228 JLINK_ReadMemEx(0x20009004, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20009004) - Data: C1 75 00 08 returns 0x04 (0000ms, 3281ms total)
T29C8 480:259 JLINK_ReadMemEx(0x20008F5C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x20008F5C) - Data: 6F 06 C7 55 00 01 43 00 00 02 0A 3E 01 00 01 00 ... returns 0x20 (0000ms, 3281ms total)
T29C8 480:263 JLINK_ReadMemEx(0x20008F5C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x20008F5C) - Data: 6F 06 C7 55 00 01 43 00 00 02 0A 3E 01 00 01 00 ... returns 0x20 (0000ms, 3281ms total)
T29C8 480:263 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000500) -- Updating C cache (64 bytes @ 0x20000500) -- Read from C cache (1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0002ms, 3283ms total)
T29C8 480:266 JLINK_ReadMemEx(0x20008F5C, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x20008F5C) - Data: 6F 06 C7 55 00 01 43 00 00 02 0A 3E 01 00 01 00 ... returns 0x20 (0000ms, 3283ms total)
T2914 484:507 JLINK_ReadMemEx(0x08006F26, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08006F00) -- Updating C cache (64 bytes @ 0x08006F00) -- Read from C cache (2 bytes @ 0x08006F26) - Data: B0 7B returns 0x02 (0003ms, 3286ms total)
T2914 484:510 JLINK_Step() -- Read from C cache (2 bytes @ 0x08006F26) -- Read from C cache (1 bytes @ 0x20008F6A) -- Simulated returns 0x00 (0001ms, 3287ms total)
T2914 484:512 JLINK_ReadReg(R15 (PC)) returns 0x08006F28 (0000ms, 3287ms total)
T2914 484:512 JLINK_ReadReg(XPSR) returns 0x01000027 (0000ms, 3287ms total)
T2914 484:512 JLINK_SetBPEx(Addr = 0x08006F26, Type = 0xFFFFFFF2) returns 0x00000009 (0000ms, 3287ms total)
T2914 484:512 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0007ms, 3294ms total)
T2914 484:619 JLINK_IsHalted() returns FALSE (0001ms, 3295ms total)
T2914 484:721 JLINK_IsHalted() returns FALSE (0001ms, 3295ms total)
T2914 484:823 JLINK_IsHalted() returns FALSE (0001ms, 3295ms total)
T2914 484:924 JLINK_IsHalted() returns FALSE (0001ms, 3295ms total)
T2914 485:025 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001004) - Data: 7D 3A 32 0E returns 1 (0001ms, 3295ms total)
T29C8 485:026 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3296ms total)
T2914 485:027 JLINK_IsHalted() returns FALSE (0001ms, 3297ms total)
T2914 485:128 JLINK_IsHalted() returns FALSE (0001ms, 3297ms total)
T2914 485:229 JLINK_IsHalted() returns FALSE (0001ms, 3297ms total)
T2914 485:330 JLINK_IsHalted() returns FALSE (0001ms, 3297ms total)
T2914 485:431 JLINK_IsHalted() returns FALSE (0001ms, 3297ms total)
T2914 485:533 JLINK_IsHalted() returns FALSE (0001ms, 3297ms total)
T2914 485:634 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 7D 3A 32 0E returns 1 (0000ms, 3296ms total)
T29C8 485:634 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3297ms total)
T2914 485:635 JLINK_IsHalted() returns FALSE (0001ms, 3298ms total)
T2914 485:736 JLINK_IsHalted() returns FALSE (0001ms, 3298ms total)
T2914 485:837 JLINK_IsHalted() returns FALSE (0001ms, 3298ms total)
T2914 485:938 JLINK_IsHalted() returns FALSE (0001ms, 3298ms total)
T2914 486:040 JLINK_IsHalted() returns FALSE (0001ms, 3298ms total)
T2914 486:141 JLINK_IsHalted() returns FALSE (0001ms, 3298ms total)
T2914 486:242 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 7D 3A 32 0E returns 1 (0000ms, 3297ms total)
T29C8 486:242 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3298ms total)
T2914 486:243 JLINK_IsHalted() returns FALSE (0001ms, 3299ms total)
T2914 486:344 JLINK_IsHalted() returns FALSE (0001ms, 3299ms total)
T2914 486:445 JLINK_IsHalted() returns FALSE (0001ms, 3299ms total)
T2914 486:546 JLINK_IsHalted() returns FALSE (0001ms, 3299ms total)
T2914 486:647 JLINK_IsHalted() returns FALSE (0001ms, 3299ms total)
T2914 486:748 JLINK_IsHalted() returns FALSE (0001ms, 3299ms total)
T2914 486:849 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 7D 3A 32 0E returns 1 (0000ms, 3298ms total)
T29C8 486:849 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3299ms total)
T2914 486:851 JLINK_IsHalted() returns FALSE (0000ms, 3299ms total)
T2914 486:951 JLINK_IsHalted() returns FALSE (0001ms, 3300ms total)
T2914 487:052 JLINK_IsHalted() returns FALSE (0001ms, 3300ms total)
T2914 487:153 JLINK_IsHalted() returns FALSE (0001ms, 3300ms total)
T2914 487:254 JLINK_IsHalted() returns FALSE (0001ms, 3300ms total)
T2914 487:355 JLINK_IsHalted() returns FALSE (0001ms, 3300ms total)
T2914 487:456 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 7D 3A 32 0E returns 1 (0000ms, 3299ms total)
T29C8 487:456 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3300ms total)
T2914 487:457 JLINK_IsHalted() returns FALSE (0001ms, 3301ms total)
T2914 487:558 JLINK_IsHalted() returns FALSE (0001ms, 3301ms total)
T2914 487:659 JLINK_IsHalted() returns FALSE (0001ms, 3301ms total)
T2914 487:760 JLINK_IsHalted() returns FALSE (0001ms, 3301ms total)
T2914 487:861 JLINK_IsHalted() returns FALSE (0001ms, 3301ms total)
T2914 487:962 JLINK_IsHalted() returns FALSE (0001ms, 3301ms total)
T2914 488:063 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 7D 3A 32 0E returns 1 (0000ms, 3300ms total)
T29C8 488:063 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3301ms total)
T2914 488:064 JLINK_IsHalted() returns FALSE (0001ms, 3302ms total)
T2914 488:165 JLINK_IsHalted() returns FALSE (0001ms, 3302ms total)
T2914 488:266 JLINK_IsHalted() returns FALSE (0001ms, 3302ms total)
T2914 488:367 JLINK_IsHalted() returns FALSE (0001ms, 3302ms total)
T2914 488:468 JLINK_IsHalted() returns FALSE (0001ms, 3302ms total)
T2914 488:569 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 7D 3A 32 0E returns 1 (0000ms, 3301ms total)
T29C8 488:569 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3302ms total)
T2914 488:570 JLINK_IsHalted() returns FALSE (0001ms, 3303ms total)
T2914 488:671 JLINK_IsHalted() returns FALSE (0001ms, 3303ms total)
T2914 488:772 JLINK_IsHalted() returns FALSE (0001ms, 3303ms total)
T2914 488:873 JLINK_IsHalted() returns FALSE (0001ms, 3303ms total)
T2914 488:974 JLINK_IsHalted() returns FALSE (0001ms, 3303ms total)
T2914 489:075 JLINK_IsHalted() returns FALSE (0001ms, 3303ms total)
T2914 489:176 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 7D 3A 32 0E returns 1 (0000ms, 3302ms total)
T29C8 489:176 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3303ms total)
T2914 489:177 JLINK_IsHalted() returns FALSE (0001ms, 3304ms total)
T2914 489:278 JLINK_IsHalted() returns FALSE (0001ms, 3304ms total)
T2914 489:379 JLINK_IsHalted() returns FALSE (0001ms, 3304ms total)
T2914 489:480 JLINK_IsHalted() returns FALSE (0001ms, 3304ms total)
T2914 489:581 JLINK_IsHalted() returns FALSE (0001ms, 3304ms total)
T2914 489:682 JLINK_IsHalted() returns FALSE (0001ms, 3304ms total)
T2914 489:783 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 7D 3A 32 0E returns 1 (0000ms, 3303ms total)
T29C8 489:783 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3304ms total)
T2914 489:784 JLINK_IsHalted() returns FALSE (0001ms, 3305ms total)
T2914 489:885 JLINK_IsHalted() returns FALSE (0001ms, 3305ms total)
T2914 489:986 JLINK_IsHalted() returns FALSE (0001ms, 3305ms total)
T2914 490:087 JLINK_IsHalted() returns FALSE (0001ms, 3305ms total)
T2914 490:189 JLINK_IsHalted() returns FALSE (0001ms, 3305ms total)
T2914 490:290 JLINK_IsHalted() returns FALSE (0001ms, 3305ms total)
T2914 490:391 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 7D 3A 32 0E returns 1 (0000ms, 3304ms total)
T29C8 490:391 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3305ms total)
T2914 490:392 JLINK_IsHalted() returns FALSE (0001ms, 3306ms total)
T2914 490:493 JLINK_IsHalted() returns FALSE (0001ms, 3306ms total)
T2914 490:594 JLINK_IsHalted() returns FALSE (0001ms, 3306ms total)
T2914 490:695 JLINK_IsHalted() returns FALSE (0001ms, 3306ms total)
T2914 490:796 JLINK_IsHalted() returns FALSE (0001ms, 3306ms total)
T2914 490:897 JLINK_IsHalted() returns FALSE (0001ms, 3306ms total)
T2914 490:998 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 7D 3A 32 0E returns 1 (0000ms, 3305ms total)
T29C8 490:998 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3306ms total)
T2914 490:999 JLINK_IsHalted() returns FALSE (0001ms, 3307ms total)
T2914 491:100 JLINK_IsHalted() returns FALSE (0001ms, 3307ms total)
T2914 491:201 JLINK_IsHalted() returns FALSE (0001ms, 3307ms total)
T2914 491:302 JLINK_IsHalted() returns FALSE (0001ms, 3307ms total)
T2914 491:403 JLINK_IsHalted() returns FALSE (0001ms, 3307ms total)
T2914 491:504 JLINK_IsHalted() returns FALSE (0001ms, 3307ms total)
T2914 491:606 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 7D 3A 32 0E returns 1 (0000ms, 3306ms total)
T29C8 491:607 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3307ms total)
T2914 491:608 JLINK_IsHalted() returns FALSE (0001ms, 3308ms total)
T2914 491:709 JLINK_IsHalted() returns FALSE (0001ms, 3308ms total)
T2914 491:810 JLINK_IsHalted() returns FALSE (0001ms, 3308ms total)
T2914 491:911 JLINK_IsHalted() returns FALSE (0001ms, 3308ms total)
T2914 492:012 JLINK_IsHalted() returns TRUE (0004ms, 3311ms total)
T2914 492:016 JLINK_Halt() returns 0x00 (0000ms, 3307ms total)
T2914 492:016 JLINK_IsHalted() returns TRUE (0000ms, 3307ms total)
T2914 492:016 JLINK_IsHalted() returns TRUE (0000ms, 3307ms total)
T2914 492:016 JLINK_IsHalted() returns TRUE (0000ms, 3307ms total)
T2914 492:016 JLINK_ReadReg(R15 (PC)) returns 0x08006F26 (0000ms, 3307ms total)
T2914 492:016 JLINK_ReadReg(XPSR) returns 0x01000027 (0000ms, 3307ms total)
T2914 492:016 JLINK_ClrBPEx(BPHandle = 0x00000009) returns 0x00 (0000ms, 3307ms total)
T2914 492:016 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 02 00 00 00 returns 1 (0002ms, 3309ms total)
T2914 492:018 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00 returns 1 (0001ms, 3310ms total)
T2914 492:019 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 02 00 00 returns 1 (0001ms, 3311ms total)
T2914 492:020 JLINK_ReadMemU32(0xE0001048, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001048) - Data: 00 00 00 00 returns 1 (0001ms, 3312ms total)
T2914 492:021 JLINK_ReadMemU32(0xE0001058, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001058) - Data: 00 00 00 00 returns 1 (0001ms, 3313ms total)
T2914 492:023 JLINK_ReadReg(R0) returns 0x20002075 (0000ms, 3313ms total)
T2914 492:023 JLINK_ReadReg(R1) returns 0x00000001 (0000ms, 3313ms total)
T2914 492:023 JLINK_ReadReg(R2) returns 0x00000000 (0000ms, 3313ms total)
T2914 492:023 JLINK_ReadReg(R3) returns 0x20008F24 (0000ms, 3313ms total)
T2914 492:023 JLINK_ReadReg(R4) returns 0x00000000 (0000ms, 3313ms total)
T2914 492:023 JLINK_ReadReg(R5) returns 0x00000000 (0000ms, 3313ms total)
T2914 492:023 JLINK_ReadReg(R6) returns 0x20008F24 (0000ms, 3313ms total)
T2914 492:023 JLINK_ReadReg(R7) returns 0x00000004 (0000ms, 3313ms total)
T2914 492:023 JLINK_ReadReg(R8) returns 0x20008FB4 (0000ms, 3313ms total)
T2914 492:023 JLINK_ReadReg(R9) returns 0x20000134 (0000ms, 3313ms total)
T2914 492:023 JLINK_ReadReg(R10) returns 0x00000000 (0000ms, 3313ms total)
T2914 492:023 JLINK_ReadReg(R11) returns 0x00000000 (0000ms, 3313ms total)
T2914 492:023 JLINK_ReadReg(R12) returns 0x00000004 (0000ms, 3313ms total)
T2914 492:023 JLINK_ReadReg(R13 (SP)) returns 0x20008E90 (0000ms, 3313ms total)
T2914 492:023 JLINK_ReadReg(R14) returns 0x08006F09 (0000ms, 3313ms total)
T2914 492:023 JLINK_ReadReg(R15 (PC)) returns 0x08006F26 (0000ms, 3313ms total)
T2914 492:023 JLINK_ReadReg(XPSR) returns 0x01000027 (0000ms, 3313ms total)
T2914 492:023 JLINK_ReadReg(MSP) returns 0x20008E90 (0000ms, 3313ms total)
T2914 492:023 JLINK_ReadReg(PSP) returns 0x20001000 (0000ms, 3313ms total)
T2914 492:023 JLINK_ReadReg(CFBP) returns 0x00000001 (0000ms, 3313ms total)
T2914 492:023 JLINK_ReadReg(FPSCR) returns 0x00000000 (0004ms, 3317ms total)
T2914 492:027 JLINK_ReadReg(FPS0) returns 0xFB068412 (0000ms, 3317ms total)
T2914 492:027 JLINK_ReadReg(FPS1) returns 0x10110C5A (0000ms, 3317ms total)
T2914 492:027 JLINK_ReadReg(FPS2) returns 0x04341E1B (0000ms, 3317ms total)
T2914 492:027 JLINK_ReadReg(FPS3) returns 0x80412402 (0000ms, 3317ms total)
T2914 492:027 JLINK_ReadReg(FPS4) returns 0x18248A00 (0000ms, 3317ms total)
T2914 492:027 JLINK_ReadReg(FPS5) returns 0x20102094 (0000ms, 3317ms total)
T2914 492:027 JLINK_ReadReg(FPS6) returns 0x82C0846D (0000ms, 3317ms total)
T2914 492:027 JLINK_ReadReg(FPS7) returns 0x08A02089 (0000ms, 3317ms total)
T2914 492:027 JLINK_ReadReg(FPS8) returns 0x05488443 (0000ms, 3317ms total)
T2914 492:027 JLINK_ReadReg(FPS9) returns 0xF372B940 (0000ms, 3317ms total)
T2914 492:027 JLINK_ReadReg(FPS10) returns 0x11B25004 (0000ms, 3317ms total)
T2914 492:027 JLINK_ReadReg(FPS11) returns 0x00024120 (0000ms, 3317ms total)
T2914 492:027 JLINK_ReadReg(FPS12) returns 0x023C5609 (0000ms, 3317ms total)
T2914 492:027 JLINK_ReadReg(FPS13) returns 0x8600710B (0000ms, 3317ms total)
T2914 492:027 JLINK_ReadReg(FPS14) returns 0xA03D9BF0 (0000ms, 3317ms total)
T2914 492:027 JLINK_ReadReg(FPS15) returns 0x5812A440 (0000ms, 3317ms total)
T2914 492:027 JLINK_ReadReg(FPS16) returns 0x15918209 (0000ms, 3317ms total)
T2914 492:027 JLINK_ReadReg(FPS17) returns 0xD015225C (0000ms, 3317ms total)
T2914 492:027 JLINK_ReadReg(FPS18) returns 0x0C0013B7 (0000ms, 3317ms total)
T2914 492:027 JLINK_ReadReg(FPS19) returns 0x1C58D420 (0000ms, 3317ms total)
T2914 492:027 JLINK_ReadReg(FPS20) returns 0xA4974081 (0000ms, 3317ms total)
T2914 492:027 JLINK_ReadReg(FPS21) returns 0x108D0118 (0000ms, 3317ms total)
T2914 492:027 JLINK_ReadReg(FPS22) returns 0x9044A200 (0000ms, 3317ms total)
T2914 492:027 JLINK_ReadReg(FPS23) returns 0x781049E0 (0000ms, 3317ms total)
T2914 492:027 JLINK_ReadReg(FPS24) returns 0x1C330E11 (0000ms, 3317ms total)
T2914 492:027 JLINK_ReadReg(FPS25) returns 0xC604704C (0000ms, 3317ms total)
T2914 492:027 JLINK_ReadReg(FPS26) returns 0x2C70E395 (0000ms, 3317ms total)
T2914 492:027 JLINK_ReadReg(FPS27) returns 0x8012365D (0000ms, 3317ms total)
T2914 492:027 JLINK_ReadReg(FPS28) returns 0x028512B3 (0000ms, 3317ms total)
T2914 492:027 JLINK_ReadReg(FPS29) returns 0x321C1711 (0001ms, 3318ms total)
T2914 492:028 JLINK_ReadReg(FPS30) returns 0x40000912 (0000ms, 3318ms total)
T2914 492:028 JLINK_ReadReg(FPS31) returns 0x11A67042 (0000ms, 3318ms total)
T29C8 492:028 JLINK_ReadMemEx(0x20008EA4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20008E80) -- Updating C cache (64 bytes @ 0x20008E80) -- Read from C cache (4 bytes @ 0x20008EA4) - Data: BD 6C 00 08 returns 0x04 (0001ms, 3319ms total)
T29C8 492:030 JLINK_ReadMemEx(0x20008E90, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008E90) - Data: 21 8F 00 20 returns 0x04 (0000ms, 3319ms total)
T29C8 492:030 JLINK_ReadMemEx(0x20008E94, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008E94) - Data: 10 00 00 00 returns 0x04 (0000ms, 3319ms total)
T29C8 492:030 JLINK_ReadMemEx(0x20008E98, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008E98) - Data: 15 00 00 00 returns 0x04 (0000ms, 3319ms total)
T29C8 492:030 JLINK_ReadMemEx(0x20008E9C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008E9C) - Data: 00 00 00 00 returns 0x04 (0000ms, 3319ms total)
T29C8 492:030 JLINK_ReadMemEx(0x20008EA0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008EA0) - Data: B4 8F 00 20 returns 0x04 (0000ms, 3319ms total)
T29C8 492:030 JLINK_ReadMemEx(0x20008EA4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008EA4) - Data: BD 6C 00 08 returns 0x04 (0000ms, 3319ms total)
T29C8 492:030 JLINK_ReadMemEx(0x20008EFC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20008EC0) -- Updating C cache (64 bytes @ 0x20008EC0) -- Read from C cache (4 bytes @ 0x20008EFC) - Data: 5B 71 00 08 returns 0x04 (0001ms, 3320ms total)
T29C8 492:032 JLINK_ReadMemEx(0x20008EEC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008EEC) - Data: 21 8F 00 20 returns 0x04 (0000ms, 3320ms total)
T29C8 492:032 JLINK_ReadMemEx(0x20008EF0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008EF0) - Data: F6 7A 00 00 returns 0x04 (0000ms, 3320ms total)
T29C8 492:032 JLINK_ReadMemEx(0x20008EF4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008EF4) - Data: 20 8F 00 20 returns 0x04 (0000ms, 3320ms total)
T29C8 492:032 JLINK_ReadMemEx(0x20008EF8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008EF8) - Data: 00 00 00 00 returns 0x04 (0000ms, 3320ms total)
T29C8 492:032 JLINK_ReadMemEx(0x20008EFC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008EFC) - Data: 5B 71 00 08 returns 0x04 (0000ms, 3320ms total)
T29C8 492:032 JLINK_ReadMemEx(0x20008F14, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20008F00) -- Updating C cache (64 bytes @ 0x20008F00) -- Read from C cache (4 bytes @ 0x20008F14) - Data: CF 71 00 08 returns 0x04 (0001ms, 3321ms total)
T29C8 492:034 JLINK_ReadMemEx(0x20008F00, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F00) - Data: 20 8F 00 20 returns 0x04 (0000ms, 3321ms total)
T29C8 492:034 JLINK_ReadMemEx(0x20008F04, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F04) - Data: 40 00 00 00 returns 0x04 (0000ms, 3321ms total)
T29C8 492:034 JLINK_ReadMemEx(0x20008F08, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F08) - Data: 00 00 00 00 returns 0x04 (0000ms, 3321ms total)
T29C8 492:034 JLINK_ReadMemEx(0x20008F0C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F0C) - Data: 0A 00 00 00 returns 0x04 (0000ms, 3321ms total)
T29C8 492:034 JLINK_ReadMemEx(0x20008F10, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F10) - Data: B4 8F 00 20 returns 0x04 (0000ms, 3321ms total)
T29C8 492:034 JLINK_ReadMemEx(0x20008F14, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F14) - Data: CF 71 00 08 returns 0x04 (0000ms, 3321ms total)
T29C8 492:034 JLINK_ReadMemEx(0x20008F1C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F1C) - Data: 57 8F 00 08 returns 0x04 (0000ms, 3321ms total)
T29C8 492:034 JLINK_ReadMemEx(0x20008F18, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F18) - Data: 03 00 00 00 returns 0x04 (0000ms, 3321ms total)
T29C8 492:034 JLINK_ReadMemEx(0x20008F1C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F1C) - Data: 57 8F 00 08 returns 0x04 (0000ms, 3321ms total)
T29C8 492:034 JLINK_ReadMemEx(0x20008F6C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20008F40) -- Updating C cache (64 bytes @ 0x20008F40) -- Read from C cache (4 bytes @ 0x20008F6C) - Data: E7 11 00 08 returns 0x04 (0001ms, 3322ms total)
T29C8 492:036 JLINK_ReadMemEx(0x20008F64, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F64) - Data: 38 21 00 20 returns 0x04 (0000ms, 3322ms total)
T29C8 492:036 JLINK_ReadMemEx(0x20008F68, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F68) - Data: 40 00 00 00 returns 0x04 (0000ms, 3322ms total)
T29C8 492:036 JLINK_ReadMemEx(0x20008F6C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F6C) - Data: E7 11 00 08 returns 0x04 (0000ms, 3322ms total)
T29C8 492:036 JLINK_ReadMemEx(0x20008F74, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F74) - Data: F9 FF FF FF returns 0x04 (0000ms, 3322ms total)
T29C8 492:036 JLINK_ReadMemEx(0x20008F90, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20008F80) -- Updating C cache (64 bytes @ 0x20008F80) -- Read from C cache (4 bytes @ 0x20008F90) - Data: AA 88 00 08 returns 0x04 (0002ms, 3324ms total)
T29C8 492:038 JLINK_ReadMemEx(0x20008F94, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F94) - Data: 00 00 00 61 returns 0x04 (0000ms, 3324ms total)
T29C8 492:038 JLINK_ReadMemEx(0x20008F8C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F8C) - Data: AB 88 00 08 returns 0x04 (0000ms, 3324ms total)
T29C8 492:038 JLINK_ReadMemEx(0xE000ED28, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0xE000ED28) - Data: 00 00 00 00 returns 0x04 (0003ms, 3327ms total)
T29C8 492:041 JLINK_ReadMemEx(0x20008F90, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F90) - Data: AA 88 00 08 returns 0x04 (0000ms, 3327ms total)
T29C8 492:041 JLINK_ReadMemEx(0x20008F94, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F94) - Data: 00 00 00 61 returns 0x04 (0000ms, 3327ms total)
T29C8 492:041 JLINK_ReadMemEx(0x20008FAC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FAC) - Data: 4F 72 00 08 returns 0x04 (0000ms, 3327ms total)
T29C8 492:041 JLINK_ReadMemEx(0x20008F98, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F98) - Data: 84 D1 00 08 returns 0x04 (0000ms, 3327ms total)
T29C8 492:041 JLINK_ReadMemEx(0x20008F9C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F9C) - Data: 84 D1 00 08 returns 0x04 (0000ms, 3327ms total)
T29C8 492:041 JLINK_ReadMemEx(0x20008FA0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FA0) - Data: 00 00 00 00 returns 0x04 (0000ms, 3327ms total)
T29C8 492:041 JLINK_ReadMemEx(0x20008FA4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FA4) - Data: 00 00 00 00 returns 0x04 (0000ms, 3327ms total)
T29C8 492:041 JLINK_ReadMemEx(0x20008FA8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FA8) - Data: 00 00 00 00 returns 0x04 (0000ms, 3327ms total)
T29C8 492:041 JLINK_ReadMemEx(0x20008FAC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FAC) - Data: 4F 72 00 08 returns 0x04 (0000ms, 3327ms total)
T29C8 492:041 JLINK_ReadMemEx(0x20008FFC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20008FC0) -- Updating C cache (64 bytes @ 0x20008FC0) -- Read from C cache (4 bytes @ 0x20008FFC) - Data: EF 4A 00 08 returns 0x04 (0003ms, 3330ms total)
T29C8 492:044 JLINK_ReadMemEx(0x20008FF8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FF8) - Data: 84 D1 00 08 returns 0x04 (0000ms, 3330ms total)
T29C8 492:044 JLINK_ReadMemEx(0x20008FFC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FFC) - Data: EF 4A 00 08 returns 0x04 (0000ms, 3330ms total)
T29C8 492:044 JLINK_ReadMemEx(0x20009004, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20009000) -- Updating C cache (64 bytes @ 0x20009000) -- Read from C cache (4 bytes @ 0x20009004) - Data: C1 75 00 08 returns 0x04 (0002ms, 3332ms total)
T29C8 492:046 JLINK_ReadMemEx(0x20009000, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20009000) - Data: 84 D1 00 08 returns 0x04 (0000ms, 3332ms total)
T29C8 492:046 JLINK_ReadMemEx(0x20009004, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20009004) - Data: C1 75 00 08 returns 0x04 (0000ms, 3332ms total)
T29C8 492:074 JLINK_ReadMemEx(0x20008F24, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x20008F24) - Data: 6F 06 C7 55 00 01 43 00 00 02 0A 3E 01 00 01 00 ... returns 0x20 (0000ms, 3332ms total)
T29C8 492:078 JLINK_ReadMemEx(0x20008F24, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x20008F24) - Data: 6F 06 C7 55 00 01 43 00 00 02 0A 3E 01 00 01 00 ... returns 0x20 (0000ms, 3332ms total)
T29C8 492:078 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000500) -- Updating C cache (64 bytes @ 0x20000500) -- Read from C cache (1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0002ms, 3334ms total)
T29C8 492:080 JLINK_ReadMemEx(0x20008F24, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x20008F24) - Data: 6F 06 C7 55 00 01 43 00 00 02 0A 3E 01 00 01 00 ... returns 0x20 (0000ms, 3334ms total)
T29C8 496:542 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20009040) -- Updating C cache (64 bytes @ 0x20009040) -- Read from C cache (304 bytes @ 0x20008F34) - Data: 00 00 00 89 7A F6 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3336ms total)
T29C8 496:545 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- Read from C cache (304 bytes @ 0x20008F34) - Data: 00 00 00 89 7A F6 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0000ms, 3336ms total)
T29C8 496:551 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- Read from C cache (304 bytes @ 0x20008F34) - Data: 00 00 00 89 7A F6 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0000ms, 3336ms total)
T29C8 496:554 JLINK_ReadMemEx(0x20008F34, 0x0130 Bytes, ..., Flags = 0x02000000) -- Read from C cache (304 bytes @ 0x20008F34) - Data: 00 00 00 89 7A F6 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0000ms, 3336ms total)
T29C8 502:562 JLINK_ReadMemEx(0x20008F24, 0x0130 Bytes, ..., Flags = 0x02000000) -- Read from C cache (304 bytes @ 0x20008F24) - Data: 6F 06 C7 55 00 01 43 00 00 02 0A 3E 01 00 01 00 ... returns 0x130 (0001ms, 3337ms total)
T29C8 502:563 JLINK_ReadMemEx(0x20008F24, 0x0130 Bytes, ..., Flags = 0x02000000) -- Read from C cache (304 bytes @ 0x20008F24) - Data: 6F 06 C7 55 00 01 43 00 00 02 0A 3E 01 00 01 00 ... returns 0x130 (0000ms, 3337ms total)
T29C8 510:846 JLINK_ReadMemEx(0x20008F32, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20008F32) - Data: 01 returns 0x01 (0000ms, 3337ms total)
T29C8 517:176 JLINK_ReadMemEx(0x20002074, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20002040) -- Updating C cache (64 bytes @ 0x20002040) -- Read from C cache (1 bytes @ 0x20002074) - Data: 00 returns 0x01 (0002ms, 3339ms total)
T29C8 517:179 JLINK_ReadMemEx(0x20002075, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20002075) - Data: 6F returns 0x01 (0000ms, 3339ms total)
T29C8 517:179 JLINK_ReadMemEx(0x20002076, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20002076) - Data: 06 returns 0x01 (0000ms, 3339ms total)
T29C8 517:179 JLINK_ReadMemEx(0x20002077, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20002077) - Data: C7 returns 0x01 (0000ms, 3339ms total)
T29C8 517:179 JLINK_ReadMemEx(0x20002078, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20002078) - Data: 55 returns 0x01 (0000ms, 3339ms total)
T29C8 517:179 JLINK_ReadMemEx(0x20002079, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20002079) - Data: 01 returns 0x01 (0000ms, 3339ms total)
T29C8 517:179 JLINK_ReadMemEx(0x2000207A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000207A) - Data: 00 returns 0x01 (0000ms, 3339ms total)
T29C8 517:179 JLINK_ReadMemEx(0x2000207B, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000207B) - Data: 00 returns 0x01 (0000ms, 3339ms total)
T29C8 517:179 JLINK_ReadMemEx(0x2000207C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000207C) - Data: 00 returns 0x01 (0000ms, 3339ms total)
T29C8 517:179 JLINK_ReadMemEx(0x2000207D, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000207D) - Data: 00 returns 0x01 (0000ms, 3339ms total)
T29C8 517:179 JLINK_ReadMemEx(0x2000207E, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000207E) - Data: 00 returns 0x01 (0000ms, 3339ms total)
T29C8 517:179 JLINK_ReadMemEx(0x2000207F, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000207F) - Data: 00 returns 0x01 (0000ms, 3339ms total)
T29C8 517:179 JLINK_ReadMemEx(0x20002080, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20002080) -- Updating C cache (64 bytes @ 0x20002080) -- Read from C cache (1 bytes @ 0x20002080) - Data: 00 returns 0x01 (0002ms, 3341ms total)
T29C8 517:181 JLINK_ReadMemEx(0x20002081, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20002081) - Data: 00 returns 0x01 (0000ms, 3341ms total)
T29C8 517:181 JLINK_ReadMemEx(0x20002082, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20002082) - Data: 00 returns 0x01 (0001ms, 3342ms total)
T29C8 517:182 JLINK_ReadMemEx(0x20002083, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20002083) - Data: 00 returns 0x01 (0000ms, 3342ms total)
T29C8 517:182 JLINK_ReadMemEx(0x20002084, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20002084) - Data: 00 returns 0x01 (0000ms, 3342ms total)
T29C8 517:182 JLINK_ReadMemEx(0x20002085, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20002085) - Data: 00 returns 0x01 (0000ms, 3342ms total)
T29C8 517:182 JLINK_ReadMemEx(0x20002086, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20002086) - Data: 00 returns 0x01 (0000ms, 3342ms total)
T29C8 517:182 JLINK_ReadMemEx(0x20002087, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20002087) - Data: 00 returns 0x01 (0000ms, 3342ms total)
T29C8 517:182 JLINK_ReadMemEx(0x20002088, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20002088) - Data: 00 returns 0x01 (0000ms, 3342ms total)
T29C8 517:182 JLINK_ReadMemEx(0x20002089, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20002089) - Data: 00 returns 0x01 (0000ms, 3342ms total)
T29C8 517:182 JLINK_ReadMemEx(0x2000208A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000208A) - Data: 00 returns 0x01 (0000ms, 3342ms total)
T29C8 517:182 JLINK_ReadMemEx(0x2000208B, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000208B) - Data: 00 returns 0x01 (0000ms, 3342ms total)
T29C8 517:182 JLINK_ReadMemEx(0x2000208C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000208C) - Data: 00 returns 0x01 (0000ms, 3342ms total)
T29C8 517:182 JLINK_ReadMemEx(0x2000208D, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000208D) - Data: 00 returns 0x01 (0000ms, 3342ms total)
T29C8 517:182 JLINK_ReadMemEx(0x2000208E, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000208E) - Data: 00 returns 0x01 (0000ms, 3342ms total)
T29C8 517:182 JLINK_ReadMemEx(0x2000208F, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000208F) - Data: 00 returns 0x01 (0000ms, 3342ms total)
T29C8 517:182 JLINK_ReadMemEx(0x20002090, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20002090) - Data: 00 returns 0x01 (0000ms, 3342ms total)
T29C8 517:182 JLINK_ReadMemEx(0x20002091, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20002091) - Data: 00 returns 0x01 (0000ms, 3342ms total)
T29C8 517:182 JLINK_ReadMemEx(0x20002092, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20002092) - Data: 00 returns 0x01 (0000ms, 3342ms total)
T29C8 517:182 JLINK_ReadMemEx(0x20002093, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20002093) - Data: 00 returns 0x01 (0000ms, 3342ms total)
T29C8 517:182 JLINK_ReadMemEx(0x20002094, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20002094) - Data: 00 returns 0x01 (0000ms, 3342ms total)
T29C8 517:182 JLINK_ReadMemEx(0x20002095, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20002095) - Data: 00 returns 0x01 (0001ms, 3343ms total)
T29C8 517:183 JLINK_ReadMemEx(0x20002096, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20002096) - Data: 00 returns 0x01 (0000ms, 3343ms total)
T29C8 517:183 JLINK_ReadMemEx(0x20002097, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20002097) - Data: 00 returns 0x01 (0000ms, 3343ms total)
T29C8 517:183 JLINK_ReadMemEx(0x20002098, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20002098) - Data: 00 returns 0x01 (0000ms, 3343ms total)
T29C8 517:183 JLINK_ReadMemEx(0x20002099, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20002099) - Data: 00 returns 0x01 (0000ms, 3343ms total)
T29C8 517:183 JLINK_ReadMemEx(0x2000209A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000209A) - Data: 00 returns 0x01 (0000ms, 3343ms total)
T29C8 517:183 JLINK_ReadMemEx(0x2000209B, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000209B) - Data: 00 returns 0x01 (0000ms, 3343ms total)
T29C8 517:727 JLINK_ReadMemEx(0x200003E8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200003C0) -- Updating C cache (64 bytes @ 0x200003C0) -- Read from C cache (1 bytes @ 0x200003E8) - Data: 00 returns 0x01 (0002ms, 3345ms total)
T29C8 517:730 JLINK_ReadMemEx(0x200003EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200003EC) - Data: 19 B0 00 08 returns 0x04 (0000ms, 3345ms total)
T29C8 517:730 JLINK_ReadMemEx(0x200003F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200003F0) - Data: 6D AF 00 08 returns 0x04 (0000ms, 3345ms total)
T29C8 517:730 JLINK_ReadMemEx(0x200003F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200003F4) - Data: A9 92 00 08 returns 0x04 (0000ms, 3345ms total)
T29C8 517:730 JLINK_ReadMemEx(0x200003F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200003F8) - Data: 99 49 00 08 returns 0x04 (0000ms, 3345ms total)
T29C8 517:730 JLINK_ReadMemEx(0x200003FC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200003FC) - Data: 91 6E 00 08 returns 0x04 (0000ms, 3345ms total)
T29C8 517:730 JLINK_ReadMemEx(0x20000400, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000400) -- Updating C cache (64 bytes @ 0x20000400) -- Read from C cache (1 bytes @ 0x20000400) - Data: 01 returns 0x01 (0002ms, 3347ms total)
T29C8 517:732 JLINK_ReadMemEx(0x20000404, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000404) - Data: 79 61 00 08 returns 0x04 (0000ms, 3347ms total)
T29C8 517:732 JLINK_ReadMemEx(0x20000408, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000408) - Data: F1 61 00 08 returns 0x04 (0000ms, 3347ms total)
T29C8 517:732 JLINK_ReadMemEx(0x2000040C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000040C) - Data: 2D 63 00 08 returns 0x04 (0000ms, 3347ms total)
T29C8 517:732 JLINK_ReadMemEx(0x20000410, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000410) - Data: 15 63 00 08 returns 0x04 (0000ms, 3347ms total)
T29C8 517:732 JLINK_ReadMemEx(0x20000414, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000414) - Data: AD 62 00 08 returns 0x04 (0000ms, 3347ms total)
T29C8 517:732 JLINK_ReadMemEx(0x20000418, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000418) - Data: 21 63 00 08 returns 0x04 (0001ms, 3348ms total)
T29C8 517:733 JLINK_ReadMemEx(0x2000041C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000041C) - Data: 01 returns 0x01 (0000ms, 3348ms total)
T29C8 519:328 JLINK_ReadMemEx(0x20008F32, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20008F32) - Data: 01 returns 0x01 (0000ms, 3348ms total)
T2914 543:443 JLINK_ReadMemEx(0x08006F26, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08006F00) -- Updating C cache (64 bytes @ 0x08006F00) -- Read from C cache (2 bytes @ 0x08006F26) - Data: B0 7B returns 0x02 (0003ms, 3351ms total)
T2914 543:446 JLINK_Step() -- Read from C cache (2 bytes @ 0x08006F26) -- Read from C cache (1 bytes @ 0x20008F32) -- Simulated returns 0x00 (0002ms, 3353ms total)
T2914 543:448 JLINK_ReadReg(R15 (PC)) returns 0x08006F28 (0000ms, 3353ms total)
T2914 543:448 JLINK_ReadReg(XPSR) returns 0x01000027 (0000ms, 3353ms total)
T2914 543:448 JLINK_SetBPEx(Addr = 0x08006F26, Type = 0xFFFFFFF2) returns 0x0000000A (0000ms, 3353ms total)
T2914 543:449 JLINK_SetBPEx(Addr = 0x08006C7C, Type = 0xFFFFFFF2) returns 0x0000000B (0000ms, 3354ms total)
T2914 543:449 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0014ms, 3368ms total)
T2914 543:564 JLINK_IsHalted() returns FALSE (0001ms, 3369ms total)
T2914 543:665 JLINK_IsHalted() returns FALSE (0001ms, 3369ms total)
T2914 543:766 JLINK_IsHalted() returns FALSE (0001ms, 3369ms total)
T2914 543:867 JLINK_IsHalted() returns FALSE (0001ms, 3369ms total)
T2914 543:968 JLINK_IsHalted() returns FALSE (0001ms, 3369ms total)
T2914 544:069 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001004) - Data: 39 92 89 12 returns 1 (0001ms, 3369ms total)
T29C8 544:071 JLINK_ReadMemEx(0x20008F24, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F24) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 ... returns 0x130 (0002ms, 3371ms total)
T29C8 544:074 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3372ms total)
T2914 544:076 JLINK_IsHalted() returns FALSE (0000ms, 3372ms total)
T2914 544:176 JLINK_IsHalted() returns FALSE (0001ms, 3373ms total)
T2914 544:277 JLINK_IsHalted() returns FALSE (0001ms, 3373ms total)
T2914 544:378 JLINK_IsHalted() returns FALSE (0001ms, 3373ms total)
T2914 544:479 JLINK_IsHalted() returns FALSE (0001ms, 3373ms total)
T2914 544:580 JLINK_IsHalted() returns FALSE (0001ms, 3373ms total)
T2914 544:681 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 39 92 89 12 returns 1 (0000ms, 3372ms total)
T29C8 544:682 JLINK_ReadMemEx(0x20008F24, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F24) - Data: 4B 9D 00 08 94 06 00 20 D8 05 00 20 01 00 00 00 ... returns 0x130 (0002ms, 3374ms total)
T29C8 544:684 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0002ms, 3376ms total)
T2914 544:686 JLINK_IsHalted() returns FALSE (0001ms, 3377ms total)
T2914 544:787 JLINK_IsHalted() returns FALSE (0001ms, 3377ms total)
T2914 544:888 JLINK_IsHalted() returns FALSE (0001ms, 3377ms total)
T2914 544:990 JLINK_IsHalted() returns FALSE (0001ms, 3377ms total)
T2914 545:091 JLINK_IsHalted() returns FALSE (0001ms, 3377ms total)
T2914 545:192 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 39 92 89 12 returns 1 (0000ms, 3376ms total)
T29C8 545:192 JLINK_ReadMemEx(0x20008F24, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F24) - Data: 00 00 00 00 00 00 00 00 AD 5F 00 08 00 00 00 00 ... returns 0x130 (0003ms, 3379ms total)
T29C8 545:195 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3380ms total)
T2914 545:196 JLINK_IsHalted() returns FALSE (0001ms, 3381ms total)
T2914 545:297 JLINK_IsHalted() returns FALSE (0002ms, 3382ms total)
T2914 545:399 JLINK_IsHalted() returns FALSE (0001ms, 3381ms total)
T2914 545:500 JLINK_IsHalted() returns FALSE (0001ms, 3381ms total)
T2914 545:601 JLINK_IsHalted() returns FALSE (0001ms, 3381ms total)
T2914 545:702 JLINK_IsHalted() returns FALSE (0001ms, 3381ms total)
T2914 545:803 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 39 92 89 12 returns 1 (0000ms, 3380ms total)
T29C8 545:803 JLINK_ReadMemEx(0x20008F24, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F24) - Data: 00 00 00 00 55 8F 00 20 51 8F 00 20 01 00 00 00 ... returns 0x130 (0002ms, 3382ms total)
T29C8 545:805 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3383ms total)
T2914 545:806 JLINK_IsHalted() returns FALSE (0001ms, 3384ms total)
T2914 545:907 JLINK_IsHalted() returns FALSE (0001ms, 3384ms total)
T2914 546:008 JLINK_IsHalted() returns FALSE (0001ms, 3384ms total)
T2914 546:109 JLINK_IsHalted() returns FALSE (0001ms, 3384ms total)
T2914 546:210 JLINK_IsHalted() returns FALSE (0001ms, 3384ms total)
T2914 546:311 JLINK_IsHalted() returns FALSE (0001ms, 3384ms total)
T2914 546:412 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 39 92 89 12 returns 1 (0000ms, 3383ms total)
T29C8 546:412 JLINK_ReadMemEx(0x20008F24, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F24) - Data: 1F E0 01 05 FF 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3385ms total)
T29C8 546:414 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3386ms total)
T2914 546:415 JLINK_IsHalted() returns FALSE (0001ms, 3387ms total)
T2914 546:516 JLINK_IsHalted() returns FALSE (0001ms, 3387ms total)
T2914 546:617 JLINK_IsHalted() returns FALSE (0000ms, 3386ms total)
T2914 546:717 JLINK_IsHalted() returns FALSE (0001ms, 3387ms total)
T2914 546:818 JLINK_IsHalted() returns FALSE (0001ms, 3387ms total)
T2914 546:919 JLINK_IsHalted() returns FALSE (0001ms, 3387ms total)
T2914 547:020 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 39 92 89 12 returns 1 (0000ms, 3386ms total)
T29C8 547:020 JLINK_ReadMemEx(0x20008F24, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F24) - Data: 1F E0 01 05 FF 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3388ms total)
T29C8 547:022 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3389ms total)
T2914 547:024 JLINK_IsHalted() returns FALSE (0000ms, 3389ms total)
T2914 547:124 JLINK_IsHalted() returns FALSE (0001ms, 3390ms total)
T2914 547:225 JLINK_IsHalted() returns FALSE (0001ms, 3390ms total)
T2914 547:326 JLINK_IsHalted() returns FALSE (0001ms, 3390ms total)
T2914 547:427 JLINK_IsHalted() returns FALSE (0001ms, 3390ms total)
T2914 547:528 JLINK_IsHalted() returns FALSE (0001ms, 3390ms total)
T2914 547:629 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 39 92 89 12 returns 1 (0000ms, 3389ms total)
T29C8 547:629 JLINK_ReadMemEx(0x20008F24, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F24) - Data: 05 54 00 08 20 FF FF FF 28 17 00 ED 17 09 01 00 ... returns 0x130 (0003ms, 3392ms total)
T29C8 547:632 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3393ms total)
T2914 547:633 JLINK_IsHalted() returns FALSE (0001ms, 3394ms total)
T2914 547:734 JLINK_IsHalted() returns FALSE (0001ms, 3394ms total)
T2914 547:835 JLINK_IsHalted() returns FALSE (0001ms, 3394ms total)
T2914 547:936 JLINK_IsHalted() returns FALSE (0001ms, 3394ms total)
T2914 548:037 JLINK_IsHalted() returns FALSE (0001ms, 3394ms total)
T2914 548:138 JLINK_IsHalted() returns FALSE (0001ms, 3394ms total)
T2914 548:239 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 39 92 89 12 returns 1 (0000ms, 3393ms total)
T29C8 548:239 JLINK_ReadMemEx(0x20008F24, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F24) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 41 8F 00 20 ... returns 0x130 (0002ms, 3395ms total)
T29C8 548:241 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3396ms total)
T2914 548:242 JLINK_IsHalted() returns FALSE (0001ms, 3397ms total)
T2914 548:343 JLINK_IsHalted() returns FALSE (0001ms, 3397ms total)
T2914 548:444 JLINK_IsHalted() returns FALSE (0001ms, 3397ms total)
T2914 548:545 JLINK_IsHalted() returns FALSE (0001ms, 3397ms total)
T2914 548:646 JLINK_IsHalted() returns FALSE (0001ms, 3397ms total)
T2914 548:747 JLINK_IsHalted() returns FALSE (0001ms, 3397ms total)
T2914 548:848 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 39 92 89 12 returns 1 (0000ms, 3396ms total)
T29C8 548:848 JLINK_ReadMemEx(0x20008F24, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F24) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3398ms total)
T29C8 548:850 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3399ms total)
T2914 548:851 JLINK_IsHalted() returns FALSE (0001ms, 3400ms total)
T2914 548:952 JLINK_IsHalted() returns FALSE (0001ms, 3400ms total)
T2914 549:053 JLINK_IsHalted() returns FALSE (0001ms, 3400ms total)
T2914 549:154 JLINK_IsHalted() returns FALSE (0001ms, 3400ms total)
T2914 549:255 JLINK_IsHalted() returns FALSE (0001ms, 3400ms total)
T2914 549:356 JLINK_IsHalted() returns FALSE (0001ms, 3400ms total)
T2914 549:457 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 39 92 89 12 returns 1 (0000ms, 3399ms total)
T29C8 549:457 JLINK_ReadMemEx(0x20008F24, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F24) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3401ms total)
T29C8 549:459 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3402ms total)
T2914 549:460 JLINK_IsHalted() returns FALSE (0001ms, 3403ms total)
T2914 549:561 JLINK_IsHalted() returns FALSE (0001ms, 3403ms total)
T2914 549:662 JLINK_IsHalted() returns FALSE (0002ms, 3404ms total)
T2914 549:764 JLINK_IsHalted() returns FALSE (0001ms, 3403ms total)
T2914 549:865 JLINK_IsHalted() returns FALSE (0001ms, 3403ms total)
T2914 549:966 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 39 92 89 12 returns 1 (0000ms, 3402ms total)
T29C8 549:966 JLINK_ReadMemEx(0x20008F24, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F24) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3404ms total)
T29C8 549:968 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3405ms total)
T2914 549:969 JLINK_IsHalted() returns FALSE (0001ms, 3406ms total)
T2914 550:070 JLINK_IsHalted() returns FALSE (0001ms, 3406ms total)
T2914 550:171 JLINK_IsHalted() returns FALSE (0001ms, 3406ms total)
T2914 550:272 JLINK_IsHalted() returns FALSE (0001ms, 3406ms total)
T2914 550:373 JLINK_IsHalted() returns FALSE (0001ms, 3406ms total)
T2914 550:474 JLINK_IsHalted() returns FALSE (0001ms, 3406ms total)
T2914 550:575 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 39 92 89 12 returns 1 (0000ms, 3405ms total)
T29C8 550:575 JLINK_ReadMemEx(0x20008F24, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F24) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3407ms total)
T29C8 550:577 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3408ms total)
T2914 550:578 JLINK_IsHalted() returns FALSE (0001ms, 3409ms total)
T2914 550:679 JLINK_IsHalted() returns FALSE (0001ms, 3409ms total)
T2914 550:780 JLINK_IsHalted() returns FALSE (0001ms, 3409ms total)
T2914 550:881 JLINK_IsHalted() returns FALSE (0001ms, 3409ms total)
T2914 550:982 JLINK_IsHalted() returns FALSE (0001ms, 3409ms total)
T2914 551:083 JLINK_IsHalted() returns FALSE (0001ms, 3409ms total)
T2914 551:184 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 39 92 89 12 returns 1 (0000ms, 3408ms total)
T29C8 551:184 JLINK_ReadMemEx(0x20008F24, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F24) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3410ms total)
T29C8 551:186 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3411ms total)
T2914 551:187 JLINK_IsHalted() returns FALSE (0001ms, 3412ms total)
T2914 551:288 JLINK_IsHalted() returns FALSE (0001ms, 3412ms total)
T2914 551:389 JLINK_IsHalted() returns FALSE (0001ms, 3412ms total)
T2914 551:490 JLINK_IsHalted() returns FALSE (0001ms, 3412ms total)
T2914 551:591 JLINK_IsHalted() returns FALSE (0001ms, 3412ms total)
T2914 551:693 JLINK_IsHalted() returns FALSE (0001ms, 3412ms total)
T2914 551:794 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 39 92 89 12 returns 1 (0000ms, 3411ms total)
T29C8 551:794 JLINK_ReadMemEx(0x20008F24, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F24) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3413ms total)
T29C8 551:796 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3414ms total)
T2914 551:797 JLINK_IsHalted() returns FALSE (0001ms, 3415ms total)
T2914 551:898 JLINK_IsHalted() returns FALSE (0001ms, 3415ms total)
T2914 551:999 JLINK_IsHalted() returns FALSE (0001ms, 3415ms total)
T2914 552:100 JLINK_IsHalted() returns FALSE (0001ms, 3415ms total)
T2914 552:201 JLINK_IsHalted() returns FALSE (0001ms, 3415ms total)
T2914 552:302 JLINK_IsHalted() returns FALSE (0001ms, 3415ms total)
T2914 552:403 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 39 92 89 12 returns 1 (0000ms, 3414ms total)
T29C8 552:403 JLINK_ReadMemEx(0x20008F24, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F24) - Data: 03 00 00 00 00 00 00 00 BB 1D 00 08 01 00 00 00 ... returns 0x130 (0002ms, 3416ms total)
T29C8 552:405 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0002ms, 3418ms total)
T2914 552:407 JLINK_IsHalted() returns FALSE (0001ms, 3419ms total)
T2914 552:508 JLINK_IsHalted() returns FALSE (0001ms, 3419ms total)
T2914 552:609 JLINK_IsHalted() returns FALSE (0001ms, 3419ms total)
T2914 552:710 JLINK_IsHalted() returns FALSE (0001ms, 3419ms total)
T2914 552:811 JLINK_IsHalted() returns FALSE (0001ms, 3419ms total)
T2914 552:912 JLINK_IsHalted() returns FALSE (0001ms, 3419ms total)
T2914 553:013 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 39 92 89 12 returns 1 (0000ms, 3418ms total)
T29C8 553:013 JLINK_ReadMemEx(0x20008F24, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F24) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3420ms total)
T29C8 553:015 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3421ms total)
T2914 553:016 JLINK_IsHalted() returns FALSE (0001ms, 3422ms total)
T2914 553:117 JLINK_IsHalted() returns FALSE (0001ms, 3422ms total)
T2914 553:218 JLINK_IsHalted() returns FALSE (0001ms, 3422ms total)
T2914 553:319 JLINK_IsHalted() returns FALSE (0001ms, 3422ms total)
T2914 553:420 JLINK_IsHalted() returns FALSE (0001ms, 3422ms total)
T2914 553:521 JLINK_IsHalted() returns FALSE (0001ms, 3422ms total)
T2914 553:622 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 39 92 89 12 returns 1 (0000ms, 3421ms total)
T29C8 553:622 JLINK_ReadMemEx(0x20008F24, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F24) - Data: 00 00 00 00 00 00 00 00 AD 5F 00 08 00 00 00 00 ... returns 0x130 (0002ms, 3423ms total)
T29C8 553:624 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3424ms total)
T2914 553:625 JLINK_IsHalted() returns FALSE (0001ms, 3425ms total)
T2914 553:726 JLINK_IsHalted() returns FALSE (0001ms, 3425ms total)
T2914 553:827 JLINK_IsHalted() returns FALSE (0001ms, 3425ms total)
T2914 553:929 JLINK_IsHalted() returns FALSE (0001ms, 3425ms total)
T2914 554:030 JLINK_IsHalted() returns FALSE (0001ms, 3425ms total)
T2914 554:131 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 39 92 89 12 returns 1 (0000ms, 3424ms total)
T29C8 554:131 JLINK_ReadMemEx(0x20008F24, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F24) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3426ms total)
T29C8 554:133 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3427ms total)
T2914 554:134 JLINK_IsHalted() returns FALSE (0001ms, 3428ms total)
T2914 554:235 JLINK_IsHalted() returns FALSE (0001ms, 3428ms total)
T2914 554:336 JLINK_IsHalted() returns FALSE (0001ms, 3428ms total)
T2914 554:437 JLINK_IsHalted() returns FALSE (0001ms, 3428ms total)
T2914 554:538 JLINK_IsHalted() returns FALSE (0001ms, 3428ms total)
T2914 554:639 JLINK_IsHalted() returns FALSE (0001ms, 3428ms total)
T2914 554:740 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 39 92 89 12 returns 1 (0000ms, 3427ms total)
T29C8 554:740 JLINK_ReadMemEx(0x20008F24, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F24) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3429ms total)
T29C8 554:742 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3430ms total)
T2914 554:743 JLINK_IsHalted() returns FALSE (0001ms, 3431ms total)
T2914 554:844 JLINK_IsHalted() returns FALSE (0001ms, 3431ms total)
T2914 554:945 JLINK_IsHalted() returns FALSE (0001ms, 3431ms total)
T2914 555:046 JLINK_IsHalted() returns FALSE (0001ms, 3431ms total)
T2914 555:147 JLINK_IsHalted() returns FALSE (0001ms, 3431ms total)
T2914 555:248 JLINK_IsHalted() returns FALSE (0001ms, 3431ms total)
T2914 555:349 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 39 92 89 12 returns 1 (0000ms, 3430ms total)
T29C8 555:349 JLINK_ReadMemEx(0x20008F24, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F24) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3432ms total)
T29C8 555:351 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3433ms total)
T2914 555:352 JLINK_IsHalted() returns FALSE (0001ms, 3434ms total)
T2914 555:453 JLINK_IsHalted() returns FALSE (0001ms, 3434ms total)
T2914 555:554 JLINK_IsHalted() returns FALSE (0001ms, 3434ms total)
T2914 555:655 JLINK_IsHalted() returns FALSE (0001ms, 3434ms total)
T2914 555:756 JLINK_IsHalted() returns FALSE (0001ms, 3434ms total)
T2914 555:857 JLINK_IsHalted() returns FALSE (0001ms, 3434ms total)
T2914 555:958 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 39 92 89 12 returns 1 (0000ms, 3433ms total)
T29C8 555:958 JLINK_ReadMemEx(0x20008F24, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F24) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3435ms total)
T29C8 555:960 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3436ms total)
T2914 555:961 JLINK_IsHalted() returns FALSE (0002ms, 3438ms total)
T2914 556:063 JLINK_IsHalted() returns FALSE (0001ms, 3437ms total)
T2914 556:164 JLINK_IsHalted() returns FALSE (0001ms, 3437ms total)
T2914 556:265 JLINK_IsHalted() returns FALSE (0001ms, 3437ms total)
T2914 556:366 JLINK_IsHalted() returns FALSE (0001ms, 3437ms total)
T2914 556:467 JLINK_IsHalted() returns FALSE (0001ms, 3437ms total)
T2914 556:568 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 39 92 89 12 returns 1 (0000ms, 3436ms total)
T29C8 556:568 JLINK_ReadMemEx(0x20008F24, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F24) - Data: 03 00 00 00 00 00 00 00 BB 1D 00 08 01 00 00 00 ... returns 0x130 (0002ms, 3438ms total)
T29C8 556:570 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3439ms total)
T2914 556:571 JLINK_IsHalted() returns FALSE (0003ms, 3442ms total)
T2914 556:674 JLINK_IsHalted() returns FALSE (0001ms, 3440ms total)
T2914 556:775 JLINK_IsHalted() returns FALSE (0001ms, 3440ms total)
T2914 556:876 JLINK_IsHalted() returns FALSE (0001ms, 3440ms total)
T2914 556:977 JLINK_IsHalted() returns FALSE (0001ms, 3440ms total)
T2914 557:078 JLINK_IsHalted() returns FALSE (0001ms, 3440ms total)
T2914 557:179 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 39 92 89 12 returns 1 (0000ms, 3439ms total)
T29C8 557:179 JLINK_ReadMemEx(0x20008F24, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F24) - Data: 03 00 00 00 00 00 00 00 BB 1D 00 08 01 00 00 00 ... returns 0x130 (0002ms, 3441ms total)
T29C8 557:181 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3442ms total)
T2914 557:182 JLINK_IsHalted() returns FALSE (0001ms, 3443ms total)
T2914 557:283 JLINK_IsHalted() returns FALSE (0001ms, 3443ms total)
T2914 557:384 JLINK_IsHalted() returns FALSE (0002ms, 3444ms total)
T2914 557:486 JLINK_IsHalted() returns FALSE (0001ms, 3443ms total)
T2914 557:587 JLINK_IsHalted() returns FALSE (0001ms, 3443ms total)
T2914 557:688 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 39 92 89 12 returns 1 (0000ms, 3442ms total)
T29C8 557:688 JLINK_ReadMemEx(0x20008F24, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F24) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3444ms total)
T29C8 557:690 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3445ms total)
T2914 557:691 JLINK_IsHalted() returns FALSE (0001ms, 3446ms total)
T2914 557:792 JLINK_IsHalted() returns FALSE (0001ms, 3446ms total)
T2914 557:893 JLINK_IsHalted() returns FALSE (0002ms, 3447ms total)
T2914 557:995 JLINK_IsHalted() returns FALSE (0001ms, 3446ms total)
T2914 558:096 JLINK_IsHalted() returns FALSE (0001ms, 3446ms total)
T2914 558:197 JLINK_IsHalted() returns FALSE (0001ms, 3446ms total)
T2914 558:298 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 39 92 89 12 returns 1 (0000ms, 3445ms total)
T29C8 558:298 JLINK_ReadMemEx(0x20008F24, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F24) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3447ms total)
T29C8 558:300 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0000ms, 3447ms total)
T2914 558:301 JLINK_IsHalted() returns FALSE (0001ms, 3448ms total)
T2914 558:402 JLINK_IsHalted() returns FALSE (0001ms, 3448ms total)
T2914 558:503 JLINK_IsHalted() returns FALSE (0001ms, 3448ms total)
T2914 558:604 JLINK_IsHalted() returns FALSE (0001ms, 3448ms total)
T2914 558:705 JLINK_IsHalted() returns FALSE (0001ms, 3448ms total)
T2914 558:806 JLINK_IsHalted() returns FALSE (0001ms, 3448ms total)
T2914 558:907 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 39 92 89 12 returns 1 (0000ms, 3447ms total)
T29C8 558:907 JLINK_ReadMemEx(0x20008F24, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F24) - Data: 03 00 00 00 00 00 00 00 BB 1D 00 08 01 00 00 00 ... returns 0x130 (0002ms, 3449ms total)
T29C8 558:909 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3450ms total)
T2914 558:910 JLINK_IsHalted() returns FALSE (0001ms, 3451ms total)
T2914 559:011 JLINK_IsHalted() returns FALSE (0001ms, 3451ms total)
T2914 559:112 JLINK_IsHalted() returns FALSE (0001ms, 3451ms total)
T2914 559:213 JLINK_IsHalted() returns FALSE (0001ms, 3451ms total)
T2914 559:314 JLINK_IsHalted() returns FALSE (0001ms, 3451ms total)
T2914 559:415 JLINK_IsHalted() returns FALSE (0001ms, 3451ms total)
T2914 559:516 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 39 92 89 12 returns 1 (0000ms, 3450ms total)
T29C8 559:516 JLINK_ReadMemEx(0x20008F24, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F24) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 ... returns 0x130 (0002ms, 3452ms total)
T29C8 559:518 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3453ms total)
T2914 559:519 JLINK_IsHalted() returns FALSE (0001ms, 3454ms total)
T2914 559:620 JLINK_IsHalted() returns FALSE (0001ms, 3454ms total)
T2914 559:721 JLINK_IsHalted() returns FALSE (0001ms, 3454ms total)
T2914 559:822 JLINK_IsHalted() returns FALSE (0001ms, 3454ms total)
T2914 559:923 JLINK_IsHalted() returns FALSE (0001ms, 3454ms total)
T2914 560:024 JLINK_IsHalted() returns FALSE (0001ms, 3454ms total)
T2914 560:125 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 39 92 89 12 returns 1 (0000ms, 3453ms total)
T29C8 560:125 JLINK_ReadMemEx(0x20008F24, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F24) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3455ms total)
T29C8 560:127 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3456ms total)
T2914 560:128 JLINK_IsHalted() returns FALSE (0001ms, 3457ms total)
T2914 560:229 JLINK_IsHalted() returns FALSE (0001ms, 3457ms total)
T2914 560:330 JLINK_IsHalted() returns FALSE (0001ms, 3457ms total)
T2914 560:431 JLINK_IsHalted() returns FALSE (0001ms, 3457ms total)
T2914 560:532 JLINK_IsHalted() returns FALSE (0001ms, 3457ms total)
T2914 560:633 JLINK_IsHalted() returns FALSE (0001ms, 3457ms total)
T2914 560:734 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 39 92 89 12 returns 1 (0000ms, 3456ms total)
T29C8 560:735 JLINK_ReadMemEx(0x20008F24, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F24) - Data: 4B 9D 00 08 94 06 00 20 D8 05 00 20 01 00 00 00 ... returns 0x130 (0002ms, 3458ms total)
T29C8 560:737 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0002ms, 3460ms total)
T2914 560:739 JLINK_IsHalted() returns FALSE (0001ms, 3461ms total)
T2914 560:840 JLINK_IsHalted() returns FALSE (0001ms, 3461ms total)
T2914 560:941 JLINK_IsHalted() returns FALSE (0001ms, 3461ms total)
T2914 561:042 JLINK_IsHalted() returns FALSE (0001ms, 3461ms total)
T2914 561:143 JLINK_IsHalted() returns FALSE (0001ms, 3461ms total)
T2914 561:244 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 39 92 89 12 returns 1 (0000ms, 3460ms total)
T29C8 561:244 JLINK_ReadMemEx(0x20008F24, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F24) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3462ms total)
T29C8 561:246 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3463ms total)
T2914 561:247 JLINK_IsHalted() returns FALSE (0001ms, 3464ms total)
T2914 561:348 JLINK_IsHalted() returns FALSE (0001ms, 3464ms total)
T2914 561:449 JLINK_IsHalted() returns FALSE (0001ms, 3464ms total)
T2914 561:550 JLINK_IsHalted() returns FALSE (0001ms, 3464ms total)
T2914 561:651 JLINK_IsHalted() returns FALSE (0001ms, 3464ms total)
T2914 561:752 JLINK_IsHalted() returns FALSE (0001ms, 3464ms total)
T2914 561:853 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 39 92 89 12 returns 1 (0000ms, 3463ms total)
T29C8 561:853 JLINK_ReadMemEx(0x20008F24, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F24) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3465ms total)
T29C8 561:855 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3466ms total)
T2914 561:856 JLINK_IsHalted() returns FALSE (0001ms, 3467ms total)
T2914 561:957 JLINK_IsHalted() returns FALSE (0001ms, 3467ms total)
T2914 562:058 JLINK_IsHalted() returns FALSE (0001ms, 3467ms total)
T2914 562:159 JLINK_IsHalted() returns FALSE (0002ms, 3468ms total)
T2914 562:261 JLINK_IsHalted() returns FALSE (0001ms, 3467ms total)
T2914 562:362 JLINK_IsHalted() returns FALSE (0001ms, 3467ms total)
T2914 562:463 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 39 92 89 12 returns 1 (0000ms, 3466ms total)
T29C8 562:463 JLINK_ReadMemEx(0x20008F24, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F24) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3468ms total)
T29C8 562:465 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3469ms total)
T2914 562:466 JLINK_IsHalted() returns FALSE (0001ms, 3470ms total)
T2914 562:567 JLINK_IsHalted() returns FALSE (0001ms, 3470ms total)
T2914 562:668 JLINK_IsHalted() returns FALSE (0001ms, 3470ms total)
T2914 562:769 JLINK_IsHalted() returns FALSE (0001ms, 3470ms total)
T2914 562:870 JLINK_IsHalted() returns FALSE (0001ms, 3470ms total)
T2914 562:971 JLINK_IsHalted() returns FALSE (0001ms, 3470ms total)
T2914 563:072 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 39 92 89 12 returns 1 (0000ms, 3469ms total)
T29C8 563:072 JLINK_ReadMemEx(0x20008F24, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F24) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3471ms total)
T29C8 563:074 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3472ms total)
T2914 563:075 JLINK_IsHalted() returns FALSE (0001ms, 3473ms total)
T2914 563:176 JLINK_IsHalted() returns FALSE (0001ms, 3473ms total)
T2914 563:277 JLINK_IsHalted() returns FALSE (0001ms, 3473ms total)
T2914 563:378 JLINK_IsHalted() returns FALSE (0001ms, 3473ms total)
T2914 563:479 JLINK_IsHalted() returns FALSE (0001ms, 3473ms total)
T2914 563:580 JLINK_IsHalted() returns FALSE (0001ms, 3473ms total)
T2914 563:681 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 39 92 89 12 returns 1 (0000ms, 3472ms total)
T29C8 563:682 JLINK_ReadMemEx(0x20008F24, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F24) - Data: DD 85 00 08 00 00 00 00 15 1F 00 08 00 00 00 00 ... returns 0x130 (0002ms, 3474ms total)
T29C8 563:684 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3475ms total)
T2914 563:685 JLINK_IsHalted() returns FALSE (0001ms, 3476ms total)
T2914 563:786 JLINK_IsHalted() returns FALSE (0001ms, 3476ms total)
T2914 563:887 JLINK_IsHalted() returns FALSE (0001ms, 3476ms total)
T2914 563:988 JLINK_IsHalted() returns FALSE (0001ms, 3476ms total)
T2914 564:089 JLINK_IsHalted() returns FALSE (0001ms, 3476ms total)
T2914 564:190 JLINK_IsHalted() returns FALSE (0001ms, 3476ms total)
T2914 564:291 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 39 92 89 12 returns 1 (0000ms, 3475ms total)
T29C8 564:291 JLINK_ReadMemEx(0x20008F24, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F24) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3477ms total)
T29C8 564:293 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3478ms total)
T2914 564:294 JLINK_IsHalted() returns FALSE (0001ms, 3479ms total)
T2914 564:395 JLINK_IsHalted() returns FALSE (0001ms, 3479ms total)
T2914 564:496 JLINK_IsHalted() returns FALSE (0001ms, 3479ms total)
T2914 564:597 JLINK_IsHalted() returns FALSE (0002ms, 3480ms total)
T2914 564:699 JLINK_IsHalted() returns FALSE (0001ms, 3479ms total)
T2914 564:800 JLINK_IsHalted() returns FALSE (0001ms, 3479ms total)
T2914 564:901 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 39 92 89 12 returns 1 (0000ms, 3478ms total)
T29C8 564:901 JLINK_ReadMemEx(0x20008F24, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F24) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3480ms total)
T29C8 564:903 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3481ms total)
T2914 564:904 JLINK_IsHalted() returns FALSE (0001ms, 3482ms total)
T2914 565:005 JLINK_IsHalted() returns FALSE (0001ms, 3482ms total)
T2914 565:106 JLINK_IsHalted() returns FALSE (0001ms, 3482ms total)
T2914 565:207 JLINK_IsHalted() returns FALSE (0001ms, 3482ms total)
T2914 565:308 JLINK_IsHalted() returns FALSE (0001ms, 3482ms total)
T2914 565:409 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 39 92 89 12 returns 1 (0000ms, 3481ms total)
T29C8 565:409 JLINK_ReadMemEx(0x20008F24, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F24) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3483ms total)
T29C8 565:411 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3484ms total)
T2914 565:412 JLINK_IsHalted() returns FALSE (0001ms, 3485ms total)
T2914 565:513 JLINK_IsHalted() returns FALSE (0001ms, 3485ms total)
T2914 565:614 JLINK_IsHalted() returns FALSE (0001ms, 3485ms total)
T2914 565:715 JLINK_IsHalted() returns FALSE (0001ms, 3485ms total)
T2914 565:816 JLINK_IsHalted() returns FALSE (0001ms, 3485ms total)
T2914 565:917 JLINK_IsHalted() returns FALSE (0001ms, 3485ms total)
T2914 566:018 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 39 92 89 12 returns 1 (0000ms, 3484ms total)
T29C8 566:018 JLINK_ReadMemEx(0x20008F24, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F24) - Data: 28 18 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3486ms total)
T29C8 566:020 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3487ms total)
T2914 566:021 JLINK_IsHalted() returns FALSE (0001ms, 3488ms total)
T2914 566:122 JLINK_IsHalted() returns FALSE (0001ms, 3488ms total)
T2914 566:224 JLINK_IsHalted() returns FALSE (0001ms, 3488ms total)
T2914 566:325 JLINK_IsHalted() returns FALSE (0001ms, 3488ms total)
T2914 566:426 JLINK_IsHalted() returns FALSE (0001ms, 3488ms total)
T2914 566:528 JLINK_IsHalted() returns FALSE (0001ms, 3488ms total)
T2914 566:629 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 39 92 89 12 returns 1 (0000ms, 3487ms total)
T29C8 566:630 JLINK_ReadMemEx(0x20008F24, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F24) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3489ms total)
T29C8 566:633 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0000ms, 3489ms total)
T2914 566:634 JLINK_IsHalted() returns FALSE (0000ms, 3489ms total)
T2914 566:735 JLINK_IsHalted() returns FALSE (0001ms, 3490ms total)
T2914 566:836 JLINK_IsHalted() returns FALSE (0001ms, 3490ms total)
T2914 566:937 JLINK_IsHalted() returns FALSE (0001ms, 3490ms total)
T2914 567:038 JLINK_IsHalted() returns FALSE (0001ms, 3490ms total)
T2914 567:139 JLINK_IsHalted() returns FALSE (0001ms, 3490ms total)
T2914 567:240 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 39 92 89 12 returns 1 (0000ms, 3489ms total)
T29C8 567:240 JLINK_ReadMemEx(0x20008F24, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F24) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3491ms total)
T29C8 567:242 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3492ms total)
T2914 567:243 JLINK_IsHalted() returns FALSE (0001ms, 3493ms total)
T2914 567:344 JLINK_IsHalted() returns FALSE (0001ms, 3493ms total)
T2914 567:445 JLINK_IsHalted() returns FALSE (0001ms, 3493ms total)
T2914 567:546 JLINK_IsHalted() returns FALSE (0001ms, 3493ms total)
T2914 567:647 JLINK_IsHalted() returns FALSE (0001ms, 3493ms total)
T2914 567:748 JLINK_IsHalted() returns FALSE (0001ms, 3493ms total)
T2914 567:849 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 39 92 89 12 returns 1 (0000ms, 3492ms total)
T29C8 567:849 JLINK_ReadMemEx(0x20008F24, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F24) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3494ms total)
T29C8 567:851 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3495ms total)
T2914 567:852 JLINK_IsHalted() returns FALSE (0001ms, 3496ms total)
T2914 567:953 JLINK_IsHalted() returns FALSE (0001ms, 3496ms total)
T2914 568:054 JLINK_IsHalted() returns FALSE (0001ms, 3496ms total)
T2914 568:155 JLINK_IsHalted() returns FALSE (0001ms, 3496ms total)
T2914 568:256 JLINK_IsHalted() returns FALSE (0001ms, 3496ms total)
T2914 568:357 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 39 92 89 12 returns 1 (0000ms, 3495ms total)
T29C8 568:357 JLINK_ReadMemEx(0x20008F24, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F24) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3497ms total)
T29C8 568:359 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3498ms total)
T2914 568:360 JLINK_IsHalted() returns FALSE (0001ms, 3499ms total)
T2914 568:461 JLINK_IsHalted() returns FALSE (0001ms, 3499ms total)
T2914 568:562 JLINK_IsHalted() returns FALSE (0001ms, 3499ms total)
T2914 568:663 JLINK_IsHalted() returns FALSE (0001ms, 3499ms total)
T2914 568:765 JLINK_IsHalted() returns FALSE (0001ms, 3499ms total)
T2914 568:866 JLINK_IsHalted() returns FALSE (0001ms, 3499ms total)
T2914 568:967 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 39 92 89 12 returns 1 (0000ms, 3498ms total)
T29C8 568:967 JLINK_ReadMemEx(0x20008F24, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F24) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3500ms total)
T29C8 568:969 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3501ms total)
T2914 568:970 JLINK_IsHalted() returns FALSE (0001ms, 3502ms total)
T2914 569:071 JLINK_IsHalted() returns FALSE (0001ms, 3502ms total)
T2914 569:172 JLINK_IsHalted() returns FALSE (0001ms, 3502ms total)
T2914 569:273 JLINK_IsHalted() returns FALSE (0001ms, 3502ms total)
T2914 569:374 JLINK_IsHalted() returns FALSE (0001ms, 3502ms total)
T2914 569:475 JLINK_IsHalted() returns FALSE (0001ms, 3502ms total)
T2914 569:576 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 39 92 89 12 returns 1 (0000ms, 3501ms total)
T29C8 569:576 JLINK_ReadMemEx(0x20008F24, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(304 bytes @ 0x20008F24) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x130 (0002ms, 3503ms total)
T29C8 569:578 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0001ms, 3504ms total)
T2914 569:579 JLINK_IsHalted() returns FALSE (0001ms, 3505ms total)
T2914 569:680 JLINK_IsHalted() returns FALSE (0001ms, 3505ms total)
T2914 569:781 JLINK_IsHalted() returns FALSE (0001ms, 3505ms total)
T2914 569:882 JLINK_IsHalted() returns FALSE (0001ms, 3505ms total)
T2914 569:983 JLINK_IsHalted() returns FALSE (0001ms, 3505ms total)
T2914 570:084 JLINK_IsHalted() returns TRUE (0005ms, 3509ms total)
T2914 570:089 JLINK_Halt() returns 0x00 (0000ms, 3504ms total)
T2914 570:089 JLINK_IsHalted() returns TRUE (0000ms, 3504ms total)
T2914 570:089 JLINK_IsHalted() returns TRUE (0000ms, 3504ms total)
T2914 570:089 JLINK_IsHalted() returns TRUE (0000ms, 3504ms total)
T2914 570:089 JLINK_ReadReg(R15 (PC)) returns 0x08006C7C (0001ms, 3505ms total)
T2914 570:090 JLINK_ReadReg(XPSR) returns 0x61000027 (0000ms, 3505ms total)
T2914 570:090 JLINK_ClrBPEx(BPHandle = 0x0000000A) returns 0x00 (0000ms, 3505ms total)
T2914 570:090 JLINK_ClrBPEx(BPHandle = 0x0000000B) returns 0x00 (0000ms, 3505ms total)
T2914 570:090 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 02 00 00 00 returns 1 (0002ms, 3507ms total)
T2914 570:092 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00 returns 1 (0002ms, 3509ms total)
T2914 570:095 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 02 00 00 returns 1 (0002ms, 3511ms total)
T2914 570:097 JLINK_ReadMemU32(0xE0001048, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001048) - Data: 00 00 00 00 returns 1 (0002ms, 3513ms total)
T2914 570:099 JLINK_ReadMemU32(0xE0001058, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001058) - Data: 00 00 00 00 returns 1 (0001ms, 3514ms total)
T2914 570:100 JLINK_ReadReg(R0) returns 0x00000001 (0000ms, 3514ms total)
T2914 570:100 JLINK_ReadReg(R1) returns 0x20008EBD (0000ms, 3514ms total)
T2914 570:100 JLINK_ReadReg(R2) returns 0x00000010 (0000ms, 3514ms total)
T2914 570:100 JLINK_ReadReg(R3) returns 0x20008F33 (0000ms, 3514ms total)
T2914 570:100 JLINK_ReadReg(R4) returns 0x20008F31 (0000ms, 3514ms total)
T2914 570:100 JLINK_ReadReg(R5) returns 0x00000010 (0000ms, 3514ms total)
T2914 570:100 JLINK_ReadReg(R6) returns 0x00000015 (0000ms, 3514ms total)
T2914 570:100 JLINK_ReadReg(R7) returns 0x00000000 (0001ms, 3515ms total)
T2914 570:101 JLINK_ReadReg(R8) returns 0x00000000 (0000ms, 3515ms total)
T2914 570:101 JLINK_ReadReg(R9) returns 0x20000134 (0000ms, 3515ms total)
T2914 570:101 JLINK_ReadReg(R10) returns 0x00000000 (0000ms, 3515ms total)
T2914 570:101 JLINK_ReadReg(R11) returns 0x00000000 (0000ms, 3515ms total)
T2914 570:101 JLINK_ReadReg(R12) returns 0x00000004 (0000ms, 3515ms total)
T2914 570:101 JLINK_ReadReg(R13 (SP)) returns 0x20008EB8 (0000ms, 3515ms total)
T2914 570:101 JLINK_ReadReg(R14) returns 0x08006C77 (0000ms, 3515ms total)
T2914 570:101 JLINK_ReadReg(R15 (PC)) returns 0x08006C7C (0000ms, 3515ms total)
T2914 570:101 JLINK_ReadReg(XPSR) returns 0x61000027 (0000ms, 3515ms total)
T2914 570:101 JLINK_ReadReg(MSP) returns 0x20008EB8 (0000ms, 3515ms total)
T2914 570:101 JLINK_ReadReg(PSP) returns 0x20001000 (0000ms, 3515ms total)
T2914 570:101 JLINK_ReadReg(CFBP) returns 0x00000000 (0000ms, 3515ms total)
T2914 570:101 JLINK_ReadReg(FPSCR) returns 0x00000000 (0005ms, 3520ms total)
T2914 570:106 JLINK_ReadReg(FPS0) returns 0xFB068412 (0000ms, 3520ms total)
T2914 570:106 JLINK_ReadReg(FPS1) returns 0x10110C5A (0000ms, 3520ms total)
T2914 570:106 JLINK_ReadReg(FPS2) returns 0x04341E1B (0000ms, 3520ms total)
T2914 570:106 JLINK_ReadReg(FPS3) returns 0x80412402 (0001ms, 3521ms total)
T2914 570:107 JLINK_ReadReg(FPS4) returns 0x18248A00 (0000ms, 3521ms total)
T2914 570:107 JLINK_ReadReg(FPS5) returns 0x20102094 (0000ms, 3521ms total)
T2914 570:107 JLINK_ReadReg(FPS6) returns 0x82C0846D (0000ms, 3521ms total)
T2914 570:107 JLINK_ReadReg(FPS7) returns 0x08A02089 (0000ms, 3521ms total)
T2914 570:107 JLINK_ReadReg(FPS8) returns 0x05488443 (0000ms, 3521ms total)
T2914 570:107 JLINK_ReadReg(FPS9) returns 0xF372B940 (0000ms, 3521ms total)
T2914 570:107 JLINK_ReadReg(FPS10) returns 0x11B25004 (0000ms, 3521ms total)
T2914 570:107 JLINK_ReadReg(FPS11) returns 0x00024120 (0000ms, 3521ms total)
T2914 570:107 JLINK_ReadReg(FPS12) returns 0x023C5609 (0000ms, 3521ms total)
T2914 570:107 JLINK_ReadReg(FPS13) returns 0x8600710B (0000ms, 3521ms total)
T2914 570:107 JLINK_ReadReg(FPS14) returns 0xA03D9BF0 (0000ms, 3521ms total)
T2914 570:107 JLINK_ReadReg(FPS15) returns 0x5812A440 (0000ms, 3521ms total)
T2914 570:107 JLINK_ReadReg(FPS16) returns 0x15918209 (0000ms, 3521ms total)
T2914 570:107 JLINK_ReadReg(FPS17) returns 0xD015225C (0000ms, 3521ms total)
T2914 570:107 JLINK_ReadReg(FPS18) returns 0x0C0013B7 (0000ms, 3521ms total)
T2914 570:107 JLINK_ReadReg(FPS19) returns 0x1C58D420 (0000ms, 3521ms total)
T2914 570:107 JLINK_ReadReg(FPS20) returns 0xA4974081 (0000ms, 3521ms total)
T2914 570:107 JLINK_ReadReg(FPS21) returns 0x108D0118 (0000ms, 3521ms total)
T2914 570:107 JLINK_ReadReg(FPS22) returns 0x9044A200 (0000ms, 3521ms total)
T2914 570:107 JLINK_ReadReg(FPS23) returns 0x781049E0 (0000ms, 3521ms total)
T2914 570:107 JLINK_ReadReg(FPS24) returns 0x1C330E11 (0000ms, 3521ms total)
T2914 570:107 JLINK_ReadReg(FPS25) returns 0xC604704C (0000ms, 3521ms total)
T2914 570:107 JLINK_ReadReg(FPS26) returns 0x2C70E395 (0000ms, 3521ms total)
T2914 570:107 JLINK_ReadReg(FPS27) returns 0x8012365D (0000ms, 3521ms total)
T2914 570:107 JLINK_ReadReg(FPS28) returns 0x028512B3 (0000ms, 3521ms total)
T2914 570:107 JLINK_ReadReg(FPS29) returns 0x321C1711 (0000ms, 3521ms total)
T2914 570:107 JLINK_ReadReg(FPS30) returns 0x40000912 (0000ms, 3521ms total)
T2914 570:107 JLINK_ReadReg(FPS31) returns 0x11A67042 (0000ms, 3521ms total)
T29C8 570:108 JLINK_ReadMemEx(0x20008F0C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20008F00) -- Updating C cache (64 bytes @ 0x20008F00) -- Read from C cache (4 bytes @ 0x20008F0C) - Data: 5B 71 00 08 returns 0x04 (0002ms, 3523ms total)
T29C8 570:110 JLINK_ReadMemEx(0x20008EFC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20008EC0) -- Updating C cache (64 bytes @ 0x20008EC0) -- Read from C cache (4 bytes @ 0x20008EFC) - Data: 31 8F 00 20 returns 0x04 (0002ms, 3525ms total)
T29C8 570:112 JLINK_ReadMemEx(0x20008F00, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F00) - Data: 95 4A 00 00 returns 0x04 (0000ms, 3525ms total)
T29C8 570:112 JLINK_ReadMemEx(0x20008F04, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F04) - Data: 30 8F 00 20 returns 0x04 (0000ms, 3525ms total)
T29C8 570:112 JLINK_ReadMemEx(0x20008F08, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F08) - Data: 00 00 00 00 returns 0x04 (0000ms, 3525ms total)
T29C8 570:112 JLINK_ReadMemEx(0x20008F0C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F0C) - Data: 5B 71 00 08 returns 0x04 (0000ms, 3525ms total)
T29C8 570:112 JLINK_ReadMemEx(0x20008F24, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F24) - Data: CF 71 00 08 returns 0x04 (0000ms, 3525ms total)
T29C8 570:112 JLINK_ReadMemEx(0x20008F10, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F10) - Data: 30 8F 00 20 returns 0x04 (0000ms, 3525ms total)
T29C8 570:112 JLINK_ReadMemEx(0x20008F14, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F14) - Data: 40 00 00 00 returns 0x04 (0001ms, 3526ms total)
T29C8 570:113 JLINK_ReadMemEx(0x20008F18, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F18) - Data: 00 00 00 00 returns 0x04 (0000ms, 3526ms total)
T29C8 570:113 JLINK_ReadMemEx(0x20008F1C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F1C) - Data: 00 00 00 00 returns 0x04 (0000ms, 3526ms total)
T29C8 570:113 JLINK_ReadMemEx(0x20008F20, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F20) - Data: 00 00 00 00 returns 0x04 (0000ms, 3526ms total)
T29C8 570:113 JLINK_ReadMemEx(0x20008F24, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F24) - Data: CF 71 00 08 returns 0x04 (0000ms, 3526ms total)
T29C8 570:113 JLINK_ReadMemEx(0x20008F2C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F2C) - Data: 57 8F 00 08 returns 0x04 (0000ms, 3526ms total)
T29C8 570:113 JLINK_ReadMemEx(0x20008F28, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F28) - Data: 03 00 00 00 returns 0x04 (0000ms, 3526ms total)
T29C8 570:113 JLINK_ReadMemEx(0x20008F2C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F2C) - Data: 57 8F 00 08 returns 0x04 (0000ms, 3526ms total)
T29C8 570:113 JLINK_ReadMemEx(0x20008F7C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20008F40) -- Updating C cache (64 bytes @ 0x20008F40) -- Read from C cache (4 bytes @ 0x20008F7C) - Data: E7 11 00 08 returns 0x04 (0002ms, 3528ms total)
T29C8 570:115 JLINK_ReadMemEx(0x20008F74, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F74) - Data: 84 D1 00 08 returns 0x04 (0000ms, 3528ms total)
T29C8 570:115 JLINK_ReadMemEx(0x20008F78, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F78) - Data: 84 D1 00 08 returns 0x04 (0000ms, 3528ms total)
T29C8 570:115 JLINK_ReadMemEx(0x20008F7C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F7C) - Data: E7 11 00 08 returns 0x04 (0000ms, 3528ms total)
T29C8 570:115 JLINK_ReadMemEx(0x20008F84, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20008F80) -- Updating C cache (64 bytes @ 0x20008F80) -- Read from C cache (4 bytes @ 0x20008F84) - Data: F9 FF FF FF returns 0x04 (0002ms, 3530ms total)
T29C8 570:117 JLINK_ReadMemEx(0x20008FA0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FA0) - Data: 94 86 00 08 returns 0x04 (0000ms, 3530ms total)
T29C8 570:117 JLINK_ReadMemEx(0x20008FA4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FA4) - Data: 00 60 00 61 returns 0x04 (0000ms, 3530ms total)
T29C8 570:117 JLINK_ReadMemEx(0x20008F9C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F9C) - Data: 55 4B 00 08 returns 0x04 (0000ms, 3530ms total)
T29C8 570:117 JLINK_ReadMemEx(0xE000ED28, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0xE000ED28) - Data: 00 00 00 00 returns 0x04 (0002ms, 3532ms total)
T29C8 570:119 JLINK_ReadMemEx(0x20008FA0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FA0) - Data: 94 86 00 08 returns 0x04 (0000ms, 3532ms total)
T29C8 570:119 JLINK_ReadMemEx(0x20008FA4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FA4) - Data: 00 60 00 61 returns 0x04 (0000ms, 3532ms total)
T29C8 570:126 JLINK_ReadMemEx(0x20008F31, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x20008F31) - Data: 1C 94 00 6F 06 C7 55 00 01 43 00 00 02 0A 3E 01 ... returns 0x20 (0000ms, 3532ms total)
T29C8 570:126 JLINK_ReadMemEx(0x20008EBC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20008E80) -- Updating C cache (64 bytes @ 0x20008E80) -- Read from C cache (32 bytes @ 0x20008EBC) - Data: 15 00 6F 06 C7 55 00 01 43 00 00 02 0A 3E 01 00 ... returns 0x20 (0002ms, 3534ms total)
T29C8 570:129 JLINK_ReadMemEx(0x20008F31, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x20008F31) - Data: 1C 94 00 6F 06 C7 55 00 01 43 00 00 02 0A 3E 01 ... returns 0x20 (0000ms, 3534ms total)
T29C8 570:129 JLINK_ReadMemEx(0x20008EBC, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x20008EBC) - Data: 15 00 6F 06 C7 55 00 01 43 00 00 02 0A 3E 01 00 ... returns 0x20 (0000ms, 3534ms total)
T29C8 570:129 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000500) -- Updating C cache (64 bytes @ 0x20000500) -- Read from C cache (1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0002ms, 3536ms total)
T29C8 570:131 JLINK_ReadMemEx(0x20008F24, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(192 bytes @ 0x20008FC0) -- Updating C cache (192 bytes @ 0x20008FC0) -- Read from C cache (304 bytes @ 0x20008F24) - Data: CF 71 00 08 03 00 00 00 57 8F 00 08 03 1C 94 00 ... returns 0x130 (0002ms, 3538ms total)
T29C8 573:453 JLINK_ReadMemEx(0x20008F41, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20008F41) - Data: 00 returns 0x01 (0000ms, 3538ms total)
T29C8 576:689 JLINK_ReadMemEx(0x20008F40, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20008F40) - Data: 01 returns 0x01 (0000ms, 3538ms total)
T29C8 579:122 JLINK_ReadMemEx(0x200004E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200004C0) -- Updating C cache (64 bytes @ 0x200004C0) -- Read from C cache (4 bytes @ 0x200004E8) - Data: 81 7D 00 08 returns 0x04 (0003ms, 3541ms total)
T2914 582:211 JLINK_ReadMemEx(0x08006C7C, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x08006C40) -- Updating C cache (128 bytes @ 0x08006C40) -- Read from C cache (60 bytes @ 0x08006C7C) - Data: 16 49 D1 F8 00 01 80 47 22 7C E1 7B 02 EB 01 21 ... returns 0x3C (0003ms, 3544ms total)
T2914 582:214 JLINK_ReadMemEx(0x08006C7C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006C7C) - Data: 16 49 returns 0x02 (0000ms, 3544ms total)
T2914 582:214 JLINK_ReadMemEx(0x08006C7E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006C7E) - Data: D1 F8 returns 0x02 (0000ms, 3544ms total)
T2914 582:214 JLINK_ReadMemEx(0x08006C7C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006C7C) - Data: 16 49 returns 0x02 (0000ms, 3544ms total)
T2914 582:214 JLINK_Step() -- Read from C cache (2 bytes @ 0x08006C7C) -- CPU_ReadMem(64 bytes @ 0x08006CC0) -- Updating C cache (64 bytes @ 0x08006CC0) -- Read from C cache (4 bytes @ 0x08006CD8) -- Simulated returns 0x00 (0004ms, 3548ms total)
T2914 582:219 JLINK_ReadReg(R15 (PC)) returns 0x08006C7E (0000ms, 3548ms total)
T2914 582:219 JLINK_ReadReg(XPSR) returns 0x61000027 (0000ms, 3548ms total)
T2914 582:219 JLINK_ReadMemEx(0x08006C7E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006C7E) - Data: D1 F8 returns 0x02 (0000ms, 3548ms total)
T2914 582:219 JLINK_ReadMemEx(0x08006C80, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006C80) - Data: 00 01 80 47 22 7C E1 7B 02 EB 01 21 88 42 04 D0 ... returns 0x3C (0000ms, 3548ms total)
T2914 582:219 JLINK_ReadMemEx(0x08006C80, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006C80) - Data: 00 01 returns 0x02 (0000ms, 3548ms total)
T2914 582:219 JLINK_Step() -- Read from C cache (2 bytes @ 0x08006C7E) -- Read from C cache (2 bytes @ 0x08006C80) -- Not simulated -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0001004) returns 0x00 (0014ms, 3562ms total)
T2914 582:233 JLINK_ReadReg(R15 (PC)) returns 0x08006C82 (0000ms, 3562ms total)
T2914 582:233 JLINK_ReadReg(XPSR) returns 0x61000027 (0000ms, 3562ms total)
T2914 582:233 JLINK_ReadMemEx(0x08006C80, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08006C80) -- Updating C cache (64 bytes @ 0x08006C80) -- Read from C cache (60 bytes @ 0x08006C80) - Data: 00 01 80 47 22 7C E1 7B 02 EB 01 21 88 42 04 D0 ... returns 0x3C (0003ms, 3565ms total)
T2914 582:236 JLINK_ReadMemEx(0x08006C80, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006C80) - Data: 00 01 returns 0x02 (0000ms, 3565ms total)
T2914 582:236 JLINK_ReadMemEx(0x08006C82, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006C82) - Data: 80 47 returns 0x02 (0000ms, 3565ms total)
T2914 582:236 JLINK_ReadMemEx(0x08006C82, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006C82) - Data: 80 47 returns 0x02 (0000ms, 3565ms total)
T2914 582:236 JLINK_ReadMemEx(0x08006C84, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006C84) - Data: 22 7C E1 7B 02 EB 01 21 88 42 04 D0 11 49 D1 F8 ... returns 0x3C (0000ms, 3565ms total)
T2914 582:236 JLINK_ReadMemEx(0x08006C84, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006C84) - Data: 22 7C returns 0x02 (0000ms, 3565ms total)
T2914 582:236 JLINK_ReadReg(R0) returns 0x08007D81 (0000ms, 3565ms total)
T2914 582:236 JLINK_ReadReg(R1) returns 0x200003E8 (0000ms, 3565ms total)
T2914 582:236 JLINK_ReadReg(R2) returns 0x00000010 (0000ms, 3565ms total)
T2914 582:236 JLINK_ReadReg(R3) returns 0x20008F33 (0000ms, 3565ms total)
T2914 582:236 JLINK_ReadReg(R4) returns 0x20008F31 (0000ms, 3565ms total)
T2914 582:236 JLINK_ReadReg(R5) returns 0x00000010 (0001ms, 3566ms total)
T2914 582:237 JLINK_ReadReg(R6) returns 0x00000015 (0000ms, 3566ms total)
T2914 582:237 JLINK_ReadReg(R7) returns 0x00000000 (0000ms, 3566ms total)
T2914 582:237 JLINK_ReadReg(R8) returns 0x00000000 (0000ms, 3566ms total)
T2914 582:237 JLINK_ReadReg(R9) returns 0x20000134 (0000ms, 3566ms total)
T2914 582:237 JLINK_ReadReg(R10) returns 0x00000000 (0000ms, 3566ms total)
T2914 582:237 JLINK_ReadReg(R11) returns 0x00000000 (0000ms, 3566ms total)
T2914 582:237 JLINK_ReadReg(R12) returns 0x00000004 (0000ms, 3566ms total)
T2914 582:237 JLINK_ReadReg(R13 (SP)) returns 0x20008EB8 (0000ms, 3566ms total)
T2914 582:237 JLINK_ReadReg(R14) returns 0x08006C77 (0000ms, 3566ms total)
T2914 582:237 JLINK_ReadReg(R15 (PC)) returns 0x08006C82 (0000ms, 3566ms total)
T2914 582:237 JLINK_ReadReg(XPSR) returns 0x61000027 (0000ms, 3566ms total)
T2914 582:237 JLINK_ReadReg(MSP) returns 0x20008EB8 (0000ms, 3566ms total)
T2914 582:237 JLINK_ReadReg(PSP) returns 0x20001000 (0000ms, 3566ms total)
T2914 582:237 JLINK_ReadReg(CFBP) returns 0x00000000 (0000ms, 3566ms total)
T2914 582:237 JLINK_ReadReg(FPSCR) returns 0x00000000 (0006ms, 3572ms total)
T2914 582:244 JLINK_ReadReg(FPS0) returns 0xFB068412 (0000ms, 3572ms total)
T2914 582:244 JLINK_ReadReg(FPS1) returns 0x10110C5A (0000ms, 3572ms total)
T2914 582:244 JLINK_ReadReg(FPS2) returns 0x04341E1B (0000ms, 3572ms total)
T2914 582:244 JLINK_ReadReg(FPS3) returns 0x80412402 (0000ms, 3572ms total)
T2914 582:244 JLINK_ReadReg(FPS4) returns 0x18248A00 (0000ms, 3572ms total)
T2914 582:244 JLINK_ReadReg(FPS5) returns 0x20102094 (0000ms, 3572ms total)
T2914 582:244 JLINK_ReadReg(FPS6) returns 0x82C0846D (0000ms, 3572ms total)
T2914 582:244 JLINK_ReadReg(FPS7) returns 0x08A02089 (0000ms, 3572ms total)
T2914 582:244 JLINK_ReadReg(FPS8) returns 0x05488443 (0000ms, 3572ms total)
T2914 582:244 JLINK_ReadReg(FPS9) returns 0xF372B940 (0000ms, 3572ms total)
T2914 582:244 JLINK_ReadReg(FPS10) returns 0x11B25004 (0000ms, 3572ms total)
T2914 582:244 JLINK_ReadReg(FPS11) returns 0x00024120 (0000ms, 3572ms total)
T2914 582:244 JLINK_ReadReg(FPS12) returns 0x023C5609 (0000ms, 3572ms total)
T2914 582:244 JLINK_ReadReg(FPS13) returns 0x8600710B (0000ms, 3572ms total)
T2914 582:244 JLINK_ReadReg(FPS14) returns 0xA03D9BF0 (0000ms, 3572ms total)
T2914 582:244 JLINK_ReadReg(FPS15) returns 0x5812A440 (0000ms, 3572ms total)
T2914 582:244 JLINK_ReadReg(FPS16) returns 0x15918209 (0000ms, 3572ms total)
T2914 582:244 JLINK_ReadReg(FPS17) returns 0xD015225C (0001ms, 3573ms total)
T2914 582:245 JLINK_ReadReg(FPS18) returns 0x0C0013B7 (0000ms, 3573ms total)
T2914 582:245 JLINK_ReadReg(FPS19) returns 0x1C58D420 (0000ms, 3573ms total)
T2914 582:245 JLINK_ReadReg(FPS20) returns 0xA4974081 (0000ms, 3573ms total)
T2914 582:245 JLINK_ReadReg(FPS21) returns 0x108D0118 (0000ms, 3573ms total)
T2914 582:245 JLINK_ReadReg(FPS22) returns 0x9044A200 (0000ms, 3573ms total)
T2914 582:245 JLINK_ReadReg(FPS23) returns 0x781049E0 (0000ms, 3573ms total)
T2914 582:245 JLINK_ReadReg(FPS24) returns 0x1C330E11 (0000ms, 3573ms total)
T2914 582:245 JLINK_ReadReg(FPS25) returns 0xC604704C (0000ms, 3573ms total)
T2914 582:245 JLINK_ReadReg(FPS26) returns 0x2C70E395 (0000ms, 3573ms total)
T2914 582:245 JLINK_ReadReg(FPS27) returns 0x8012365D (0000ms, 3573ms total)
T2914 582:245 JLINK_ReadReg(FPS28) returns 0x028512B3 (0000ms, 3573ms total)
T2914 582:245 JLINK_ReadReg(FPS29) returns 0x321C1711 (0000ms, 3573ms total)
T2914 582:245 JLINK_ReadReg(FPS30) returns 0x40000912 (0000ms, 3573ms total)
T2914 582:245 JLINK_ReadReg(FPS31) returns 0x11A67042 (0000ms, 3573ms total)
T2914 582:245 JLINK_SetBPEx(Addr = 0x08006C84, Type = 0xFFFFFFF2) returns 0x0000000C (0000ms, 3573ms total)
T2914 582:245 JLINK_SetBPEx(Addr = 0x08006F26, Type = 0xFFFFFFF2) returns 0x0000000D (0000ms, 3573ms total)
T2914 582:245 JLINK_SetBPEx(Addr = 0x08006C7C, Type = 0xFFFFFFF2) returns 0x0000000E (0001ms, 3574ms total)
T2914 582:246 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0002010) (0009ms, 3583ms total)
T2914 582:355 JLINK_IsHalted() returns TRUE (0005ms, 3588ms total)
T2914 582:360 JLINK_Halt() returns 0x00 (0000ms, 3583ms total)
T2914 582:360 JLINK_IsHalted() returns TRUE (0000ms, 3583ms total)
T2914 582:360 JLINK_IsHalted() returns TRUE (0000ms, 3583ms total)
T2914 582:360 JLINK_IsHalted() returns TRUE (0000ms, 3583ms total)
T2914 582:360 JLINK_ReadReg(R15 (PC)) returns 0x08006C84 (0000ms, 3583ms total)
T2914 582:360 JLINK_ReadReg(XPSR) returns 0x61000027 (0000ms, 3583ms total)
T2914 582:360 JLINK_ClrBPEx(BPHandle = 0x0000000C) returns 0x00 (0000ms, 3583ms total)
T2914 582:360 JLINK_ClrBPEx(BPHandle = 0x0000000D) returns 0x00 (0000ms, 3583ms total)
T2914 582:360 JLINK_ClrBPEx(BPHandle = 0x0000000E) returns 0x00 (0001ms, 3584ms total)
T2914 582:361 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 02 00 00 00 returns 1 (0002ms, 3586ms total)
T2914 582:363 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00 returns 1 (0002ms, 3588ms total)
T2914 582:366 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 02 00 00 returns 1 (0002ms, 3590ms total)
T2914 582:368 JLINK_ReadMemU32(0xE0001048, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001048) - Data: 00 00 00 00 returns 1 (0001ms, 3591ms total)
T2914 582:370 JLINK_ReadMemU32(0xE0001058, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001058) - Data: 00 00 00 00 returns 1 (0002ms, 3593ms total)
T2914 582:372 JLINK_ReadMemEx(0x08006C84, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08006C80) -- Updating C cache (64 bytes @ 0x08006C80) -- Read from C cache (60 bytes @ 0x08006C84) - Data: 22 7C E1 7B 02 EB 01 21 88 42 04 D0 11 49 D1 F8 ... returns 0x3C (0002ms, 3595ms total)
T2914 582:374 JLINK_ReadMemEx(0x08006C84, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006C84) - Data: 22 7C returns 0x02 (0000ms, 3595ms total)
T2914 582:374 JLINK_ReadMemEx(0x08006C86, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006C86) - Data: E1 7B returns 0x02 (0001ms, 3596ms total)
T2914 582:375 JLINK_Step() -- Read from C cache (2 bytes @ 0x08006C84) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- CPU_ReadMem(64 bytes @ 0x20008F40) -- Updating C cache (64 bytes @ 0x20008F40) -- Read from C cache (1 bytes @ 0x20008F41) -- Simulated returns 0x00 (0004ms, 3600ms total)
T2914 582:379 JLINK_ReadReg(R15 (PC)) returns 0x08006C86 (0000ms, 3600ms total)
T2914 582:379 JLINK_ReadReg(XPSR) returns 0x61000027 (0000ms, 3600ms total)
T2914 582:379 JLINK_ReadMemEx(0x08006C86, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006C86) - Data: E1 7B returns 0x02 (0000ms, 3600ms total)
T2914 582:379 JLINK_ReadMemEx(0x08006C88, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08006CC0) -- Updating C cache (64 bytes @ 0x08006CC0) -- Read from C cache (60 bytes @ 0x08006C88) - Data: 02 EB 01 21 88 42 04 D0 11 49 D1 F8 00 01 80 47 ... returns 0x3C (0002ms, 3602ms total)
T2914 582:381 JLINK_ReadMemEx(0x08006C88, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006C88) - Data: 02 EB returns 0x02 (0000ms, 3602ms total)
T2914 582:381 JLINK_Step() -- Read from C cache (2 bytes @ 0x08006C86) -- Read from C cache (1 bytes @ 0x20008F40) -- Simulated returns 0x00 (0001ms, 3603ms total)
T2914 582:382 JLINK_ReadReg(R15 (PC)) returns 0x08006C88 (0000ms, 3603ms total)
T2914 582:382 JLINK_ReadReg(XPSR) returns 0x61000027 (0000ms, 3603ms total)
T2914 582:382 JLINK_ReadMemEx(0x08006C88, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006C88) - Data: 02 EB 01 21 88 42 04 D0 11 49 D1 F8 00 01 80 47 ... returns 0x3C (0000ms, 3603ms total)
T2914 582:382 JLINK_ReadMemEx(0x08006C88, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006C88) - Data: 02 EB returns 0x02 (0000ms, 3603ms total)
T2914 582:382 JLINK_ReadMemEx(0x08006C8A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006C8A) - Data: 01 21 returns 0x02 (0000ms, 3603ms total)
T2914 582:382 JLINK_Step() -- Read from C cache (2 bytes @ 0x08006C88) -- Read from C cache (2 bytes @ 0x08006C8A) -- Not simulated -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU_WriteMem(4 bytes @ 0xE0001004) returns 0x00 (0011ms, 3614ms total)
T2914 582:393 JLINK_ReadReg(R15 (PC)) returns 0x08006C8C (0000ms, 3614ms total)
T2914 582:393 JLINK_ReadReg(XPSR) returns 0x61000027 (0000ms, 3614ms total)
T2914 582:393 JLINK_ReadMemEx(0x08006C8A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08006C80) -- Updating C cache (64 bytes @ 0x08006C80) -- Read from C cache (2 bytes @ 0x08006C8A) - Data: 01 21 returns 0x02 (0003ms, 3617ms total)
T2914 582:396 JLINK_ReadMemEx(0x08006C8C, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08006CC0) -- Updating C cache (64 bytes @ 0x08006CC0) -- Read from C cache (60 bytes @ 0x08006C8C) - Data: 88 42 04 D0 11 49 D1 F8 00 01 80 47 58 B9 01 A8 ... returns 0x3C (0002ms, 3619ms total)
T2914 582:398 JLINK_ReadMemEx(0x08006C8C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006C8C) - Data: 88 42 returns 0x02 (0000ms, 3619ms total)
T2914 582:398 JLINK_ReadMemEx(0x08006C8C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006C8C) - Data: 88 42 04 D0 11 49 D1 F8 00 01 80 47 58 B9 01 A8 ... returns 0x3C (0000ms, 3619ms total)
T2914 582:398 JLINK_ReadMemEx(0x08006C8C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006C8C) - Data: 88 42 returns 0x02 (0000ms, 3619ms total)
T2914 582:398 JLINK_ReadMemEx(0x08006C8E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006C8E) - Data: 04 D0 returns 0x02 (0000ms, 3619ms total)
T2914 582:398 JLINK_Step() -- Read from C cache (2 bytes @ 0x08006C8C) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Simulated returns 0x00 (0003ms, 3622ms total)
T2914 582:401 JLINK_ReadReg(R15 (PC)) returns 0x08006C8E (0000ms, 3622ms total)
T2914 582:401 JLINK_ReadReg(XPSR) returns 0x81000027 (0000ms, 3622ms total)
T2914 582:401 JLINK_ReadMemEx(0x08006C8E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006C8E) - Data: 04 D0 returns 0x02 (0000ms, 3622ms total)
T2914 582:401 JLINK_ReadMemEx(0x08006C90, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006C90) - Data: 11 49 D1 F8 00 01 80 47 58 B9 01 A8 03 F0 72 FF ... returns 0x3C (0000ms, 3622ms total)
T2914 582:401 JLINK_ReadMemEx(0x08006C90, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006C90) - Data: 11 49 returns 0x02 (0000ms, 3622ms total)
T2914 582:401 JLINK_Step() -- Read from C cache (2 bytes @ 0x08006C8E) -- Simulated returns 0x00 (0000ms, 3622ms total)
T2914 582:401 JLINK_ReadReg(R15 (PC)) returns 0x08006C90 (0000ms, 3622ms total)
T2914 582:401 JLINK_ReadReg(XPSR) returns 0x81000027 (0000ms, 3622ms total)
T2914 582:401 JLINK_ReadMemEx(0x08006C90, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006C90) - Data: 11 49 D1 F8 00 01 80 47 58 B9 01 A8 03 F0 72 FF ... returns 0x3C (0000ms, 3622ms total)
T2914 582:401 JLINK_ReadMemEx(0x08006C90, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006C90) - Data: 11 49 returns 0x02 (0001ms, 3623ms total)
T2914 582:402 JLINK_ReadMemEx(0x08006C92, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006C92) - Data: D1 F8 returns 0x02 (0000ms, 3623ms total)
T2914 582:402 JLINK_Step() -- Read from C cache (2 bytes @ 0x08006C90) -- Read from C cache (4 bytes @ 0x08006CD8) -- Simulated returns 0x00 (0000ms, 3623ms total)
T2914 582:402 JLINK_ReadReg(R15 (PC)) returns 0x08006C92 (0000ms, 3623ms total)
T2914 582:402 JLINK_ReadReg(XPSR) returns 0x81000027 (0000ms, 3623ms total)
T2914 582:402 JLINK_ReadMemEx(0x08006C92, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006C92) - Data: D1 F8 returns 0x02 (0000ms, 3623ms total)
T2914 582:402 JLINK_ReadMemEx(0x08006C94, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006C94) - Data: 00 01 80 47 58 B9 01 A8 03 F0 72 FF 38 B9 00 20 ... returns 0x3C (0000ms, 3623ms total)
T2914 582:402 JLINK_ReadMemEx(0x08006C94, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006C94) - Data: 00 01 returns 0x02 (0000ms, 3623ms total)
T2914 582:402 JLINK_Step() -- Read from C cache (2 bytes @ 0x08006C92) -- Read from C cache (2 bytes @ 0x08006C94) -- Not simulated -- CPU_WriteMem(4 bytes @ 0xE0001004) returns 0x00 (0009ms, 3632ms total)
T2914 582:411 JLINK_ReadReg(R15 (PC)) returns 0x08006C96 (0000ms, 3632ms total)
T2914 582:411 JLINK_ReadReg(XPSR) returns 0x81000027 (0000ms, 3632ms total)
T2914 582:411 JLINK_ReadMemEx(0x08006C94, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x08006C80) -- Updating C cache (128 bytes @ 0x08006C80) -- Read from C cache (60 bytes @ 0x08006C94) - Data: 00 01 80 47 58 B9 01 A8 03 F0 72 FF 38 B9 00 20 ... returns 0x3C (0002ms, 3634ms total)
T2914 582:413 JLINK_ReadMemEx(0x08006C94, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006C94) - Data: 00 01 returns 0x02 (0000ms, 3634ms total)
T2914 582:413 JLINK_ReadMemEx(0x08006C96, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006C96) - Data: 80 47 returns 0x02 (0000ms, 3634ms total)
T2914 582:413 JLINK_ReadMemEx(0x08006C96, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006C96) - Data: 80 47 returns 0x02 (0000ms, 3634ms total)
T2914 582:413 JLINK_ReadMemEx(0x08006C98, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006C98) - Data: 58 B9 01 A8 03 F0 72 FF 38 B9 00 20 90 E7 01 A8 ... returns 0x3C (0000ms, 3634ms total)
T2914 582:413 JLINK_ReadMemEx(0x08006C98, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006C98) - Data: 58 B9 returns 0x02 (0001ms, 3635ms total)
T2914 582:414 JLINK_ReadReg(R0) returns 0x08007D81 (0000ms, 3635ms total)
T2914 582:414 JLINK_ReadReg(R1) returns 0x200003E8 (0000ms, 3635ms total)
T2914 582:414 JLINK_ReadReg(R2) returns 0x00000000 (0000ms, 3635ms total)
T2914 582:414 JLINK_ReadReg(R3) returns 0x20008F33 (0000ms, 3635ms total)
T2914 582:414 JLINK_ReadReg(R4) returns 0x20008F31 (0000ms, 3635ms total)
T2914 582:414 JLINK_ReadReg(R5) returns 0x00000010 (0000ms, 3635ms total)
T2914 582:414 JLINK_ReadReg(R6) returns 0x00000015 (0000ms, 3635ms total)
T2914 582:414 JLINK_ReadReg(R7) returns 0x00000000 (0000ms, 3635ms total)
T2914 582:414 JLINK_ReadReg(R8) returns 0x00000000 (0000ms, 3635ms total)
T2914 582:414 JLINK_ReadReg(R9) returns 0x20000134 (0000ms, 3635ms total)
T2914 582:414 JLINK_ReadReg(R10) returns 0x00000000 (0000ms, 3635ms total)
T2914 582:414 JLINK_ReadReg(R11) returns 0x00000000 (0000ms, 3635ms total)
T2914 582:414 JLINK_ReadReg(R12) returns 0x00000004 (0000ms, 3635ms total)
T2914 582:414 JLINK_ReadReg(R13 (SP)) returns 0x20008EB8 (0000ms, 3635ms total)
T2914 582:414 JLINK_ReadReg(R14) returns 0x08006C85 (0000ms, 3635ms total)
T2914 582:414 JLINK_ReadReg(R15 (PC)) returns 0x08006C96 (0000ms, 3635ms total)
T2914 582:414 JLINK_ReadReg(XPSR) returns 0x81000027 (0000ms, 3635ms total)
T2914 582:414 JLINK_ReadReg(MSP) returns 0x20008EB8 (0000ms, 3635ms total)
T2914 582:414 JLINK_ReadReg(PSP) returns 0x20001000 (0001ms, 3636ms total)
T2914 582:415 JLINK_ReadReg(CFBP) returns 0x00000000 (0000ms, 3636ms total)
T2914 582:415 JLINK_ReadReg(FPSCR) returns 0x00000000 (0005ms, 3641ms total)
T2914 582:421 JLINK_ReadReg(FPS0) returns 0xFB068412 (0000ms, 3641ms total)
T2914 582:421 JLINK_ReadReg(FPS1) returns 0x10110C5A (0000ms, 3641ms total)
T2914 582:421 JLINK_ReadReg(FPS2) returns 0x04341E1B (0000ms, 3641ms total)
T2914 582:421 JLINK_ReadReg(FPS3) returns 0x80412402 (0000ms, 3641ms total)
T2914 582:421 JLINK_ReadReg(FPS4) returns 0x18248A00 (0000ms, 3641ms total)
T2914 582:421 JLINK_ReadReg(FPS5) returns 0x20102094 (0000ms, 3641ms total)
T2914 582:421 JLINK_ReadReg(FPS6) returns 0x82C0846D (0000ms, 3641ms total)
T2914 582:421 JLINK_ReadReg(FPS7) returns 0x08A02089 (0000ms, 3641ms total)
T2914 582:421 JLINK_ReadReg(FPS8) returns 0x05488443 (0000ms, 3641ms total)
T2914 582:421 JLINK_ReadReg(FPS9) returns 0xF372B940 (0000ms, 3641ms total)
T2914 582:421 JLINK_ReadReg(FPS10) returns 0x11B25004 (0000ms, 3641ms total)
T2914 582:421 JLINK_ReadReg(FPS11) returns 0x00024120 (0000ms, 3641ms total)
T2914 582:421 JLINK_ReadReg(FPS12) returns 0x023C5609 (0000ms, 3641ms total)
T2914 582:421 JLINK_ReadReg(FPS13) returns 0x8600710B (0000ms, 3641ms total)
T2914 582:421 JLINK_ReadReg(FPS14) returns 0xA03D9BF0 (0000ms, 3641ms total)
T2914 582:421 JLINK_ReadReg(FPS15) returns 0x5812A440 (0000ms, 3641ms total)
T2914 582:421 JLINK_ReadReg(FPS16) returns 0x15918209 (0000ms, 3641ms total)
T2914 582:421 JLINK_ReadReg(FPS17) returns 0xD015225C (0000ms, 3641ms total)
T2914 582:421 JLINK_ReadReg(FPS18) returns 0x0C0013B7 (0000ms, 3641ms total)
T2914 582:422 JLINK_ReadReg(FPS19) returns 0x1C58D420 (0000ms, 3642ms total)
T2914 582:422 JLINK_ReadReg(FPS20) returns 0xA4974081 (0000ms, 3642ms total)
T2914 582:422 JLINK_ReadReg(FPS21) returns 0x108D0118 (0000ms, 3642ms total)
T2914 582:422 JLINK_ReadReg(FPS22) returns 0x9044A200 (0000ms, 3642ms total)
T2914 582:422 JLINK_ReadReg(FPS23) returns 0x781049E0 (0000ms, 3642ms total)
T2914 582:422 JLINK_ReadReg(FPS24) returns 0x1C330E11 (0000ms, 3642ms total)
T2914 582:422 JLINK_ReadReg(FPS25) returns 0xC604704C (0000ms, 3642ms total)
T2914 582:422 JLINK_ReadReg(FPS26) returns 0x2C70E395 (0000ms, 3642ms total)
T2914 582:422 JLINK_ReadReg(FPS27) returns 0x8012365D (0000ms, 3642ms total)
T2914 582:422 JLINK_ReadReg(FPS28) returns 0x028512B3 (0000ms, 3642ms total)
T2914 582:422 JLINK_ReadReg(FPS29) returns 0x321C1711 (0000ms, 3642ms total)
T2914 582:422 JLINK_ReadReg(FPS30) returns 0x40000912 (0000ms, 3642ms total)
T2914 582:422 JLINK_ReadReg(FPS31) returns 0x11A67042 (0000ms, 3642ms total)
T2914 582:422 JLINK_SetBPEx(Addr = 0x08006C98, Type = 0xFFFFFFF2) returns 0x0000000F (0000ms, 3642ms total)
T2914 582:422 JLINK_SetBPEx(Addr = 0x08006F26, Type = 0xFFFFFFF2) returns 0x00000010 (0000ms, 3642ms total)
T2914 582:422 JLINK_SetBPEx(Addr = 0x08006C7C, Type = 0xFFFFFFF2) returns 0x00000011 (0000ms, 3642ms total)
T2914 582:422 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0002010) (0012ms, 3654ms total)
T2914 582:534 JLINK_IsHalted() returns TRUE (0005ms, 3659ms total)
T2914 582:539 JLINK_Halt() returns 0x00 (0000ms, 3654ms total)
T2914 582:539 JLINK_IsHalted() returns TRUE (0000ms, 3654ms total)
T2914 582:539 JLINK_IsHalted() returns TRUE (0000ms, 3654ms total)
T2914 582:539 JLINK_IsHalted() returns TRUE (0000ms, 3654ms total)
T2914 582:539 JLINK_ReadReg(R15 (PC)) returns 0x08006C98 (0000ms, 3654ms total)
T2914 582:539 JLINK_ReadReg(XPSR) returns 0x81000027 (0000ms, 3654ms total)
T2914 582:539 JLINK_ClrBPEx(BPHandle = 0x0000000F) returns 0x00 (0001ms, 3655ms total)
T2914 582:540 JLINK_ClrBPEx(BPHandle = 0x00000010) returns 0x00 (0000ms, 3655ms total)
T2914 582:540 JLINK_ClrBPEx(BPHandle = 0x00000011) returns 0x00 (0000ms, 3655ms total)
T2914 582:540 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 02 00 00 00 returns 1 (0002ms, 3657ms total)
T2914 582:542 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00 returns 1 (0002ms, 3659ms total)
T2914 582:544 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 02 00 00 returns 1 (0002ms, 3661ms total)
T2914 582:547 JLINK_ReadMemU32(0xE0001048, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001048) - Data: 00 00 00 00 returns 1 (0002ms, 3663ms total)
T2914 582:549 JLINK_ReadMemU32(0xE0001058, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001058) - Data: 00 00 00 00 returns 1 (0002ms, 3665ms total)
T2914 582:552 JLINK_ReadMemEx(0x08006C98, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x08006C80) -- Updating C cache (128 bytes @ 0x08006C80) -- Read from C cache (60 bytes @ 0x08006C98) - Data: 58 B9 01 A8 03 F0 72 FF 38 B9 00 20 90 E7 01 A8 ... returns 0x3C (0002ms, 3667ms total)
T2914 582:554 JLINK_ReadMemEx(0x08006C98, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006C98) - Data: 58 B9 returns 0x02 (0000ms, 3667ms total)
T2914 582:554 JLINK_ReadMemEx(0x08006C9A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006C9A) - Data: 01 A8 returns 0x02 (0000ms, 3667ms total)
T2914 582:554 JLINK_Step() -- Read from C cache (2 bytes @ 0x08006C98) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Simulated returns 0x00 (0003ms, 3670ms total)
T2914 582:557 JLINK_ReadReg(R15 (PC)) returns 0x08006C9A (0000ms, 3670ms total)
T2914 582:557 JLINK_ReadReg(XPSR) returns 0x81000027 (0000ms, 3670ms total)
T2914 582:557 JLINK_ReadReg(R0) returns 0x00000000 (0000ms, 3670ms total)
T2914 582:557 JLINK_ReadReg(R1) returns 0x200003E8 (0001ms, 3671ms total)
T2914 582:558 JLINK_ReadReg(R2) returns 0x00000000 (0000ms, 3671ms total)
T2914 582:558 JLINK_ReadReg(R3) returns 0x20008F33 (0000ms, 3671ms total)
T2914 582:558 JLINK_ReadReg(R4) returns 0x20008F31 (0000ms, 3671ms total)
T2914 582:558 JLINK_ReadReg(R5) returns 0x00000010 (0000ms, 3671ms total)
T2914 582:558 JLINK_ReadReg(R6) returns 0x00000015 (0000ms, 3671ms total)
T2914 582:558 JLINK_ReadReg(R7) returns 0x00000000 (0000ms, 3671ms total)
T2914 582:558 JLINK_ReadReg(R8) returns 0x00000000 (0000ms, 3671ms total)
T2914 582:558 JLINK_ReadReg(R9) returns 0x20000134 (0000ms, 3671ms total)
T2914 582:558 JLINK_ReadReg(R10) returns 0x00000000 (0000ms, 3671ms total)
T2914 582:558 JLINK_ReadReg(R11) returns 0x00000000 (0000ms, 3671ms total)
T2914 582:558 JLINK_ReadReg(R12) returns 0x00000004 (0000ms, 3671ms total)
T2914 582:558 JLINK_ReadReg(R13 (SP)) returns 0x20008EB8 (0000ms, 3671ms total)
T2914 582:558 JLINK_ReadReg(R14) returns 0x08006C99 (0000ms, 3671ms total)
T2914 582:558 JLINK_ReadReg(R15 (PC)) returns 0x08006C9A (0000ms, 3671ms total)
T2914 582:558 JLINK_ReadReg(XPSR) returns 0x81000027 (0000ms, 3671ms total)
T2914 582:558 JLINK_ReadReg(MSP) returns 0x20008EB8 (0000ms, 3671ms total)
T2914 582:558 JLINK_ReadReg(PSP) returns 0x20001000 (0000ms, 3671ms total)
T2914 582:558 JLINK_ReadReg(CFBP) returns 0x00000000 (0000ms, 3671ms total)
T2914 582:558 JLINK_ReadReg(FPSCR) returns 0x00000000 (0007ms, 3678ms total)
T2914 582:565 JLINK_ReadReg(FPS0) returns 0xFB068412 (0000ms, 3678ms total)
T2914 582:565 JLINK_ReadReg(FPS1) returns 0x10110C5A (0000ms, 3678ms total)
T2914 582:565 JLINK_ReadReg(FPS2) returns 0x04341E1B (0000ms, 3678ms total)
T2914 582:565 JLINK_ReadReg(FPS3) returns 0x80412402 (0000ms, 3678ms total)
T2914 582:565 JLINK_ReadReg(FPS4) returns 0x18248A00 (0000ms, 3678ms total)
T2914 582:565 JLINK_ReadReg(FPS5) returns 0x20102094 (0000ms, 3678ms total)
T2914 582:565 JLINK_ReadReg(FPS6) returns 0x82C0846D (0000ms, 3678ms total)
T2914 582:565 JLINK_ReadReg(FPS7) returns 0x08A02089 (0000ms, 3678ms total)
T2914 582:565 JLINK_ReadReg(FPS8) returns 0x05488443 (0001ms, 3679ms total)
T2914 582:566 JLINK_ReadReg(FPS9) returns 0xF372B940 (0000ms, 3679ms total)
T2914 582:566 JLINK_ReadReg(FPS10) returns 0x11B25004 (0000ms, 3679ms total)
T2914 582:566 JLINK_ReadReg(FPS11) returns 0x00024120 (0000ms, 3679ms total)
T2914 582:566 JLINK_ReadReg(FPS12) returns 0x023C5609 (0000ms, 3679ms total)
T2914 582:566 JLINK_ReadReg(FPS13) returns 0x8600710B (0000ms, 3679ms total)
T2914 582:566 JLINK_ReadReg(FPS14) returns 0xA03D9BF0 (0000ms, 3679ms total)
T2914 582:566 JLINK_ReadReg(FPS15) returns 0x5812A440 (0000ms, 3679ms total)
T2914 582:566 JLINK_ReadReg(FPS16) returns 0x15918209 (0000ms, 3679ms total)
T2914 582:566 JLINK_ReadReg(FPS17) returns 0xD015225C (0000ms, 3679ms total)
T2914 582:566 JLINK_ReadReg(FPS18) returns 0x0C0013B7 (0000ms, 3679ms total)
T2914 582:566 JLINK_ReadReg(FPS19) returns 0x1C58D420 (0000ms, 3679ms total)
T2914 582:566 JLINK_ReadReg(FPS20) returns 0xA4974081 (0000ms, 3679ms total)
T2914 582:566 JLINK_ReadReg(FPS21) returns 0x108D0118 (0000ms, 3679ms total)
T2914 582:566 JLINK_ReadReg(FPS22) returns 0x9044A200 (0000ms, 3679ms total)
T2914 582:566 JLINK_ReadReg(FPS23) returns 0x781049E0 (0000ms, 3679ms total)
T2914 582:566 JLINK_ReadReg(FPS24) returns 0x1C330E11 (0000ms, 3679ms total)
T2914 582:566 JLINK_ReadReg(FPS25) returns 0xC604704C (0000ms, 3679ms total)
T2914 582:566 JLINK_ReadReg(FPS26) returns 0x2C70E395 (0000ms, 3679ms total)
T2914 582:566 JLINK_ReadReg(FPS27) returns 0x8012365D (0000ms, 3679ms total)
T2914 582:566 JLINK_ReadReg(FPS28) returns 0x028512B3 (0001ms, 3680ms total)
T2914 582:567 JLINK_ReadReg(FPS29) returns 0x321C1711 (0000ms, 3680ms total)
T2914 582:567 JLINK_ReadReg(FPS30) returns 0x40000912 (0000ms, 3680ms total)
T2914 582:567 JLINK_ReadReg(FPS31) returns 0x11A67042 (0000ms, 3680ms total)
T29C8 582:567 JLINK_ReadMemEx(0x20008F0C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20008F00) -- Updating C cache (64 bytes @ 0x20008F00) -- Read from C cache (4 bytes @ 0x20008F0C) - Data: 5B 71 00 08 returns 0x04 (0003ms, 3683ms total)
T29C8 582:570 JLINK_ReadMemEx(0x20008EFC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20008EC0) -- Updating C cache (64 bytes @ 0x20008EC0) -- Read from C cache (4 bytes @ 0x20008EFC) - Data: 31 8F 00 20 returns 0x04 (0002ms, 3685ms total)
T29C8 582:572 JLINK_ReadMemEx(0x20008F00, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F00) - Data: 95 4A 00 00 returns 0x04 (0001ms, 3686ms total)
T29C8 582:573 JLINK_ReadMemEx(0x20008F04, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F04) - Data: 30 8F 00 20 returns 0x04 (0000ms, 3686ms total)
T29C8 582:573 JLINK_ReadMemEx(0x20008F08, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F08) - Data: 00 00 00 00 returns 0x04 (0000ms, 3686ms total)
T29C8 582:573 JLINK_ReadMemEx(0x20008F0C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F0C) - Data: 5B 71 00 08 returns 0x04 (0000ms, 3686ms total)
T29C8 582:573 JLINK_ReadMemEx(0x20008F24, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F24) - Data: CF 71 00 08 returns 0x04 (0000ms, 3686ms total)
T29C8 582:573 JLINK_ReadMemEx(0x20008F10, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F10) - Data: 30 8F 00 20 returns 0x04 (0000ms, 3686ms total)
T29C8 582:573 JLINK_ReadMemEx(0x20008F14, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F14) - Data: 40 00 00 00 returns 0x04 (0000ms, 3686ms total)
T29C8 582:573 JLINK_ReadMemEx(0x20008F18, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F18) - Data: 00 00 00 00 returns 0x04 (0000ms, 3686ms total)
T29C8 582:573 JLINK_ReadMemEx(0x20008F1C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F1C) - Data: 00 00 00 00 returns 0x04 (0000ms, 3686ms total)
T29C8 582:573 JLINK_ReadMemEx(0x20008F20, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F20) - Data: 00 00 00 00 returns 0x04 (0000ms, 3686ms total)
T29C8 582:573 JLINK_ReadMemEx(0x20008F24, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F24) - Data: CF 71 00 08 returns 0x04 (0000ms, 3686ms total)
T29C8 582:573 JLINK_ReadMemEx(0x20008F2C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F2C) - Data: 57 8F 00 08 returns 0x04 (0001ms, 3687ms total)
T29C8 582:574 JLINK_ReadMemEx(0x20008F28, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F28) - Data: 03 00 00 00 returns 0x04 (0000ms, 3687ms total)
T29C8 582:574 JLINK_ReadMemEx(0x20008F2C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F2C) - Data: 57 8F 00 08 returns 0x04 (0000ms, 3687ms total)
T29C8 582:574 JLINK_ReadMemEx(0x20008F7C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20008F40) -- Updating C cache (64 bytes @ 0x20008F40) -- Read from C cache (4 bytes @ 0x20008F7C) - Data: E7 11 00 08 returns 0x04 (0002ms, 3689ms total)
T29C8 582:576 JLINK_ReadMemEx(0x20008F74, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F74) - Data: 84 D1 00 08 returns 0x04 (0000ms, 3689ms total)
T29C8 582:576 JLINK_ReadMemEx(0x20008F78, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F78) - Data: 84 D1 00 08 returns 0x04 (0000ms, 3689ms total)
T29C8 582:576 JLINK_ReadMemEx(0x20008F7C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F7C) - Data: E7 11 00 08 returns 0x04 (0000ms, 3689ms total)
T29C8 582:576 JLINK_ReadMemEx(0x20008F84, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20008F80) -- Updating C cache (64 bytes @ 0x20008F80) -- Read from C cache (4 bytes @ 0x20008F84) - Data: F9 FF FF FF returns 0x04 (0002ms, 3691ms total)
T29C8 582:579 JLINK_ReadMemEx(0x20008FA0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FA0) - Data: 94 86 00 08 returns 0x04 (0000ms, 3691ms total)
T29C8 582:579 JLINK_ReadMemEx(0x20008FA4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FA4) - Data: 00 60 00 61 returns 0x04 (0000ms, 3691ms total)
T29C8 582:579 JLINK_ReadMemEx(0x20008F9C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F9C) - Data: 55 4B 00 08 returns 0x04 (0000ms, 3691ms total)
T29C8 582:579 JLINK_ReadMemEx(0xE000ED28, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0xE000ED28) - Data: 00 00 00 00 returns 0x04 (0002ms, 3693ms total)
T29C8 582:581 JLINK_ReadMemEx(0x20008FA0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FA0) - Data: 94 86 00 08 returns 0x04 (0000ms, 3693ms total)
T29C8 582:581 JLINK_ReadMemEx(0x20008FA4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FA4) - Data: 00 60 00 61 returns 0x04 (0000ms, 3693ms total)
T29C8 582:582 JLINK_ReadMemEx(0x20008F31, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x20008F31) - Data: 1C 94 00 6F 06 C7 55 00 01 43 00 00 02 0A 3E 01 ... returns 0x20 (0000ms, 3693ms total)
T29C8 582:582 JLINK_ReadMemEx(0x20008EBC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20008E80) -- Updating C cache (64 bytes @ 0x20008E80) -- Read from C cache (32 bytes @ 0x20008EBC) - Data: 15 00 6F 06 C7 55 00 01 43 00 00 02 0A 3E 01 00 ... returns 0x20 (0002ms, 3695ms total)
T29C8 582:584 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000500) -- Updating C cache (64 bytes @ 0x20000500) -- Read from C cache (1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0002ms, 3697ms total)
T29C8 582:587 JLINK_ReadMemEx(0x20008F24, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(192 bytes @ 0x20008FC0) -- Updating C cache (192 bytes @ 0x20008FC0) -- Read from C cache (304 bytes @ 0x20008F24) - Data: CF 71 00 08 03 00 00 00 57 8F 00 08 03 1C 94 00 ... returns 0x130 (0002ms, 3699ms total)
T29C8 588:847 JLINK_ReadMemEx(0x20008EBC, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20008EBC) - Data: 15 returns 0x01 (0000ms, 3699ms total)
T29C8 588:847 JLINK_ReadMemEx(0x20008EBD, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20008EBD) - Data: 00 returns 0x01 (0000ms, 3699ms total)
T29C8 588:847 JLINK_ReadMemEx(0x20008EBE, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20008EBE) - Data: 6F returns 0x01 (0000ms, 3699ms total)
T29C8 588:847 JLINK_ReadMemEx(0x20008EBF, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20008EBF) - Data: 06 returns 0x01 (0000ms, 3699ms total)
T29C8 588:847 JLINK_ReadMemEx(0x20008EC0, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20008EC0) - Data: C7 returns 0x01 (0000ms, 3699ms total)
T29C8 588:847 JLINK_ReadMemEx(0x20008EC1, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20008EC1) - Data: 55 returns 0x01 (0000ms, 3699ms total)
T29C8 588:847 JLINK_ReadMemEx(0x20008EC2, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20008EC2) - Data: 00 returns 0x01 (0000ms, 3699ms total)
T29C8 588:847 JLINK_ReadMemEx(0x20008EC3, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20008EC3) - Data: 01 returns 0x01 (0001ms, 3700ms total)
T29C8 588:848 JLINK_ReadMemEx(0x20008EC4, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20008EC4) - Data: 43 returns 0x01 (0000ms, 3700ms total)
T29C8 588:848 JLINK_ReadMemEx(0x20008EC5, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20008EC5) - Data: 00 returns 0x01 (0000ms, 3700ms total)
T29C8 588:848 JLINK_ReadMemEx(0x20008EC6, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20008EC6) - Data: 00 returns 0x01 (0000ms, 3700ms total)
T29C8 588:848 JLINK_ReadMemEx(0x20008EC7, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20008EC7) - Data: 02 returns 0x01 (0000ms, 3700ms total)
T29C8 588:848 JLINK_ReadMemEx(0x20008EC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20008EC8) - Data: 0A returns 0x01 (0000ms, 3700ms total)
T29C8 588:848 JLINK_ReadMemEx(0x20008EC9, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20008EC9) - Data: 3E returns 0x01 (0000ms, 3700ms total)
T29C8 588:848 JLINK_ReadMemEx(0x20008ECA, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20008ECA) - Data: 01 returns 0x01 (0000ms, 3700ms total)
T29C8 588:848 JLINK_ReadMemEx(0x20008ECB, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20008ECB) - Data: 00 returns 0x01 (0000ms, 3700ms total)
T29C8 588:848 JLINK_ReadMemEx(0x20008ECC, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20008ECC) - Data: 01 returns 0x01 (0000ms, 3700ms total)
T29C8 588:848 JLINK_ReadMemEx(0x20008ECD, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20008ECD) - Data: 00 returns 0x01 (0000ms, 3700ms total)
T29C8 588:848 JLINK_ReadMemEx(0x20008ECE, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20008ECE) - Data: 00 returns 0x01 (0000ms, 3700ms total)
T29C8 588:848 JLINK_ReadMemEx(0x20008ECF, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20008ECF) - Data: 00 returns 0x01 (0000ms, 3700ms total)
T29C8 588:848 JLINK_ReadMemEx(0x20008ED0, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20008ED0) - Data: 00 returns 0x01 (0000ms, 3700ms total)
T29C8 588:848 JLINK_ReadMemEx(0x20008ED1, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20008ED1) - Data: 00 returns 0x01 (0000ms, 3700ms total)
T29C8 588:848 JLINK_ReadMemEx(0x20008ED2, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20008ED2) - Data: 00 returns 0x01 (0000ms, 3700ms total)
T29C8 588:848 JLINK_ReadMemEx(0x20008ED3, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20008ED3) - Data: 00 returns 0x01 (0000ms, 3700ms total)
T29C8 588:849 JLINK_ReadMemEx(0x20008ED4, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20008ED4) - Data: 00 returns 0x01 (0000ms, 3700ms total)
T29C8 588:849 JLINK_ReadMemEx(0x20008ED5, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20008ED5) - Data: 00 returns 0x01 (0000ms, 3700ms total)
T29C8 588:849 JLINK_ReadMemEx(0x20008ED6, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20008ED6) - Data: 00 returns 0x01 (0000ms, 3700ms total)
T29C8 588:849 JLINK_ReadMemEx(0x20008ED7, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20008ED7) - Data: 00 returns 0x01 (0000ms, 3700ms total)
T29C8 588:849 JLINK_ReadMemEx(0x20008ED8, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20008ED8) - Data: 00 returns 0x01 (0000ms, 3700ms total)
T29C8 588:849 JLINK_ReadMemEx(0x20008ED9, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20008ED9) - Data: 00 returns 0x01 (0000ms, 3700ms total)
T29C8 588:849 JLINK_ReadMemEx(0x20008EDA, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20008EDA) - Data: 00 returns 0x01 (0000ms, 3700ms total)
T29C8 588:849 JLINK_ReadMemEx(0x20008EDB, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20008EDB) - Data: 00 returns 0x01 (0000ms, 3700ms total)
T29C8 588:849 JLINK_ReadMemEx(0x20008EDC, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20008EDC) - Data: 00 returns 0x01 (0000ms, 3700ms total)
T29C8 588:849 JLINK_ReadMemEx(0x20008EDD, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20008EDD) - Data: 00 returns 0x01 (0000ms, 3700ms total)
T29C8 588:849 JLINK_ReadMemEx(0x20008EDE, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20008EDE) - Data: 00 returns 0x01 (0000ms, 3700ms total)
T29C8 588:849 JLINK_ReadMemEx(0x20008EDF, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20008EDF) - Data: 00 returns 0x01 (0001ms, 3701ms total)
T29C8 588:850 JLINK_ReadMemEx(0x20008EE0, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20008EE0) - Data: 0D returns 0x01 (0000ms, 3701ms total)
T29C8 588:850 JLINK_ReadMemEx(0x20008EE1, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20008EE1) - Data: 8F returns 0x01 (0000ms, 3701ms total)
T29C8 588:850 JLINK_ReadMemEx(0x20008EE2, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20008EE2) - Data: 00 returns 0x01 (0000ms, 3701ms total)
T29C8 588:850 JLINK_ReadMemEx(0x20008EE3, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20008EE3) - Data: 20 returns 0x01 (0000ms, 3701ms total)
T29C8 588:850 JLINK_ReadMemEx(0x20008EE4, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20008EE4) - Data: 09 returns 0x01 (0000ms, 3701ms total)
T29C8 588:850 JLINK_ReadMemEx(0x20008EE5, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20008EE5) - Data: 8F returns 0x01 (0000ms, 3701ms total)
T29C8 588:850 JLINK_ReadMemEx(0x20008EE6, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20008EE6) - Data: 00 returns 0x01 (0000ms, 3701ms total)
T29C8 588:850 JLINK_ReadMemEx(0x20008EE7, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20008EE7) - Data: 20 returns 0x01 (0000ms, 3701ms total)
T29C8 588:850 JLINK_ReadMemEx(0x20008EE8, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20008EE8) - Data: 01 returns 0x01 (0000ms, 3701ms total)
T29C8 588:850 JLINK_ReadMemEx(0x20008EE9, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20008EE9) - Data: 00 returns 0x01 (0000ms, 3701ms total)
T29C8 588:850 JLINK_ReadMemEx(0x20008EEA, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20008EEA) - Data: 00 returns 0x01 (0000ms, 3701ms total)
T29C8 588:850 JLINK_ReadMemEx(0x20008EEB, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20008EEB) - Data: 00 returns 0x01 (0001ms, 3702ms total)
T29C8 588:851 JLINK_ReadMemEx(0x20008EEC, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20008EEC) - Data: 21 returns 0x01 (0000ms, 3702ms total)
T29C8 588:851 JLINK_ReadMemEx(0x20008EED, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20008EED) - Data: 14 returns 0x01 (0000ms, 3702ms total)
T29C8 588:851 JLINK_ReadMemEx(0x20008EEE, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20008EEE) - Data: 00 returns 0x01 (0000ms, 3702ms total)
T2914 591:467 JLINK_ReadMemEx(0x08006C9A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006C9A) - Data: 01 A8 returns 0x02 (0000ms, 3702ms total)
T2914 591:467 JLINK_ReadMemEx(0x08006C9C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006C9C) - Data: 03 F0 72 FF 38 B9 00 20 90 E7 01 A8 03 F0 6C FF ... returns 0x3C (0000ms, 3702ms total)
T2914 591:467 JLINK_ReadMemEx(0x08006C9C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006C9C) - Data: 03 F0 returns 0x02 (0000ms, 3702ms total)
T2914 591:467 JLINK_ReadMemEx(0x08006C9A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006C9A) - Data: 01 A8 returns 0x02 (0000ms, 3702ms total)
T2914 591:467 JLINK_Step() -- Read from C cache (2 bytes @ 0x08006C9A) -- Simulated returns 0x00 (0003ms, 3705ms total)
T2914 591:470 JLINK_ReadReg(R15 (PC)) returns 0x08006C9C (0000ms, 3705ms total)
T2914 591:470 JLINK_ReadReg(XPSR) returns 0x81000027 (0000ms, 3705ms total)
T2914 591:470 JLINK_ReadMemEx(0x08006C9C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006C9C) - Data: 03 F0 72 FF 38 B9 00 20 90 E7 01 A8 03 F0 6C FF ... returns 0x3C (0000ms, 3705ms total)
T2914 591:470 JLINK_ReadMemEx(0x08006C9C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006C9C) - Data: 03 F0 returns 0x02 (0000ms, 3705ms total)
T2914 591:470 JLINK_ReadMemEx(0x08006C9E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006C9E) - Data: 72 FF returns 0x02 (0000ms, 3705ms total)
T2914 591:470 JLINK_SetBPEx(Addr = 0x08006CA0, Type = 0xFFFFFFF2) returns 0x00000012 (0001ms, 3706ms total)
T2914 591:471 JLINK_SetBPEx(Addr = 0x08006F26, Type = 0xFFFFFFF2) returns 0x00000013 (0000ms, 3706ms total)
T2914 591:471 JLINK_SetBPEx(Addr = 0x08006C7C, Type = 0xFFFFFFF2) returns 0x00000014 (0000ms, 3706ms total)
T2914 591:471 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0016ms, 3722ms total)
T2914 591:588 JLINK_IsHalted() returns TRUE (0005ms, 3727ms total)
T2914 591:593 JLINK_Halt() returns 0x00 (0000ms, 3722ms total)
T2914 591:593 JLINK_IsHalted() returns TRUE (0000ms, 3722ms total)
T2914 591:593 JLINK_IsHalted() returns TRUE (0000ms, 3722ms total)
T2914 591:593 JLINK_IsHalted() returns TRUE (0000ms, 3722ms total)
T2914 591:593 JLINK_ReadReg(R15 (PC)) returns 0x08006CA0 (0000ms, 3722ms total)
T2914 591:593 JLINK_ReadReg(XPSR) returns 0x01000027 (0000ms, 3722ms total)
T2914 591:593 JLINK_ClrBPEx(BPHandle = 0x00000012) returns 0x00 (0001ms, 3723ms total)
T2914 591:594 JLINK_ClrBPEx(BPHandle = 0x00000013) returns 0x00 (0000ms, 3723ms total)
T2914 591:594 JLINK_ClrBPEx(BPHandle = 0x00000014) returns 0x00 (0000ms, 3723ms total)
T2914 591:594 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 02 00 00 00 returns 1 (0002ms, 3725ms total)
T2914 591:596 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00 returns 1 (0002ms, 3727ms total)
T2914 591:598 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 02 00 00 returns 1 (0002ms, 3729ms total)
T2914 591:601 JLINK_ReadMemU32(0xE0001048, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001048) - Data: 00 00 00 00 returns 1 (0002ms, 3731ms total)
T2914 591:603 JLINK_ReadMemU32(0xE0001058, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001058) - Data: 00 00 00 00 returns 1 (0002ms, 3733ms total)
T2914 591:605 JLINK_ReadMemEx(0x08006C9E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08006C80) -- Updating C cache (64 bytes @ 0x08006C80) -- Read from C cache (2 bytes @ 0x08006C9E) - Data: 72 FF returns 0x02 (0002ms, 3735ms total)
T2914 591:607 JLINK_ReadMemEx(0x08006CA0, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08006CC0) -- Updating C cache (64 bytes @ 0x08006CC0) -- Read from C cache (60 bytes @ 0x08006CA0) - Data: 38 B9 00 20 90 E7 01 A8 03 F0 6C FF 08 B9 00 20 ... returns 0x3C (0002ms, 3737ms total)
T2914 591:609 JLINK_ReadMemEx(0x08006CA0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006CA0) - Data: 38 B9 returns 0x02 (0000ms, 3737ms total)
T2914 591:609 JLINK_ReadMemEx(0x08006CA0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08006CA0) - Data: 38 B9 00 20 90 E7 01 A8 03 F0 6C FF 08 B9 00 20 ... returns 0x3C (0000ms, 3737ms total)
T2914 591:609 JLINK_ReadMemEx(0x08006CA0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006CA0) - Data: 38 B9 returns 0x02 (0001ms, 3738ms total)
T2914 591:610 JLINK_ReadMemEx(0x08006CA2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08006CA2) - Data: 00 20 returns 0x02 (0000ms, 3738ms total)
T2914 591:610 JLINK_Step() -- Read from C cache (2 bytes @ 0x08006CA0) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Simulated returns 0x00 (0002ms, 3740ms total)
T2914 591:612 JLINK_ReadReg(R15 (PC)) returns 0x08006CB2 (0000ms, 3740ms total)
T2914 591:612 JLINK_ReadReg(XPSR) returns 0x01000027 (0000ms, 3740ms total)
T2914 591:612 JLINK_ReadReg(R0) returns 0x00000001 (0000ms, 3740ms total)
T2914 591:612 JLINK_ReadReg(R1) returns 0x200002B8 (0000ms, 3740ms total)
T2914 591:612 JLINK_ReadReg(R2) returns 0x00000020 (0001ms, 3741ms total)
T2914 591:613 JLINK_ReadReg(R3) returns 0x20008EBC (0000ms, 3741ms total)
T2914 591:613 JLINK_ReadReg(R4) returns 0x20008F31 (0000ms, 3741ms total)
T2914 591:613 JLINK_ReadReg(R5) returns 0x00000010 (0000ms, 3741ms total)
T2914 591:613 JLINK_ReadReg(R6) returns 0x00000015 (0000ms, 3741ms total)
T2914 591:613 JLINK_ReadReg(R7) returns 0x00000000 (0000ms, 3741ms total)
T2914 591:613 JLINK_ReadReg(R8) returns 0x00000000 (0000ms, 3741ms total)
T2914 591:613 JLINK_ReadReg(R9) returns 0x20000134 (0000ms, 3741ms total)
T2914 591:613 JLINK_ReadReg(R10) returns 0x00000000 (0000ms, 3741ms total)
T2914 591:613 JLINK_ReadReg(R11) returns 0x00000000 (0000ms, 3741ms total)
T2914 591:613 JLINK_ReadReg(R12) returns 0x00000004 (0000ms, 3741ms total)
T2914 591:613 JLINK_ReadReg(R13 (SP)) returns 0x20008EB8 (0000ms, 3741ms total)
T2914 591:613 JLINK_ReadReg(R14) returns 0x08008841 (0000ms, 3741ms total)
T2914 591:614 JLINK_ReadReg(R15 (PC)) returns 0x08006CB2 (0000ms, 3742ms total)
T2914 591:614 JLINK_ReadReg(XPSR) returns 0x01000027 (0000ms, 3742ms total)
T2914 591:614 JLINK_ReadReg(MSP) returns 0x20008EB8 (0000ms, 3742ms total)
T2914 591:614 JLINK_ReadReg(PSP) returns 0x20001000 (0000ms, 3742ms total)
T2914 591:614 JLINK_ReadReg(CFBP) returns 0x00000000 (0000ms, 3742ms total)
T2914 591:614 JLINK_ReadReg(FPSCR) returns 0x00000000 (0006ms, 3748ms total)
T2914 591:621 JLINK_ReadReg(FPS0) returns 0xFB068412 (0000ms, 3748ms total)
T2914 591:621 JLINK_ReadReg(FPS1) returns 0x10110C5A (0000ms, 3748ms total)
T2914 591:621 JLINK_ReadReg(FPS2) returns 0x04341E1B (0000ms, 3748ms total)
T2914 591:621 JLINK_ReadReg(FPS3) returns 0x80412402 (0000ms, 3748ms total)
T2914 591:621 JLINK_ReadReg(FPS4) returns 0x18248A00 (0000ms, 3748ms total)
T2914 591:621 JLINK_ReadReg(FPS5) returns 0x20102094 (0000ms, 3748ms total)
T2914 591:621 JLINK_ReadReg(FPS6) returns 0x82C0846D (0000ms, 3748ms total)
T2914 591:621 JLINK_ReadReg(FPS7) returns 0x08A02089 (0000ms, 3748ms total)
T2914 591:621 JLINK_ReadReg(FPS8) returns 0x05488443 (0000ms, 3748ms total)
T2914 591:621 JLINK_ReadReg(FPS9) returns 0xF372B940 (0000ms, 3748ms total)
T2914 591:621 JLINK_ReadReg(FPS10) returns 0x11B25004 (0000ms, 3748ms total)
T2914 591:621 JLINK_ReadReg(FPS11) returns 0x00024120 (0000ms, 3748ms total)
T2914 591:621 JLINK_ReadReg(FPS12) returns 0x023C5609 (0000ms, 3748ms total)
T2914 591:621 JLINK_ReadReg(FPS13) returns 0x8600710B (0001ms, 3749ms total)
T2914 591:622 JLINK_ReadReg(FPS14) returns 0xA03D9BF0 (0000ms, 3749ms total)
T2914 591:622 JLINK_ReadReg(FPS15) returns 0x5812A440 (0000ms, 3749ms total)
T2914 591:622 JLINK_ReadReg(FPS16) returns 0x15918209 (0000ms, 3749ms total)
T2914 591:622 JLINK_ReadReg(FPS17) returns 0xD015225C (0000ms, 3749ms total)
T2914 591:622 JLINK_ReadReg(FPS18) returns 0x0C0013B7 (0000ms, 3749ms total)
T2914 591:622 JLINK_ReadReg(FPS19) returns 0x1C58D420 (0000ms, 3749ms total)
T2914 591:622 JLINK_ReadReg(FPS20) returns 0xA4974081 (0000ms, 3749ms total)
T2914 591:622 JLINK_ReadReg(FPS21) returns 0x108D0118 (0000ms, 3749ms total)
T2914 591:622 JLINK_ReadReg(FPS22) returns 0x9044A200 (0000ms, 3749ms total)
T2914 591:622 JLINK_ReadReg(FPS23) returns 0x781049E0 (0000ms, 3749ms total)
T2914 591:622 JLINK_ReadReg(FPS24) returns 0x1C330E11 (0000ms, 3749ms total)
T2914 591:622 JLINK_ReadReg(FPS25) returns 0xC604704C (0000ms, 3749ms total)
T2914 591:622 JLINK_ReadReg(FPS26) returns 0x2C70E395 (0000ms, 3749ms total)
T2914 591:622 JLINK_ReadReg(FPS27) returns 0x8012365D (0000ms, 3749ms total)
T2914 591:622 JLINK_ReadReg(FPS28) returns 0x028512B3 (0000ms, 3749ms total)
T2914 591:622 JLINK_ReadReg(FPS29) returns 0x321C1711 (0000ms, 3749ms total)
T2914 591:622 JLINK_ReadReg(FPS30) returns 0x40000912 (0000ms, 3749ms total)
T2914 591:622 JLINK_ReadReg(FPS31) returns 0x11A67042 (0001ms, 3750ms total)
T29C8 591:623 JLINK_ReadMemEx(0x20008F0C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20008F00) -- Updating C cache (64 bytes @ 0x20008F00) -- Read from C cache (4 bytes @ 0x20008F0C) - Data: 5B 71 00 08 returns 0x04 (0003ms, 3753ms total)
T29C8 591:626 JLINK_ReadMemEx(0x20008EFC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20008EC0) -- Updating C cache (64 bytes @ 0x20008EC0) -- Read from C cache (4 bytes @ 0x20008EFC) - Data: 31 8F 00 20 returns 0x04 (0002ms, 3755ms total)
T29C8 591:628 JLINK_ReadMemEx(0x20008F00, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F00) - Data: 95 4A 00 00 returns 0x04 (0000ms, 3755ms total)
T29C8 591:628 JLINK_ReadMemEx(0x20008F04, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F04) - Data: 30 8F 00 20 returns 0x04 (0000ms, 3755ms total)
T29C8 591:628 JLINK_ReadMemEx(0x20008F08, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F08) - Data: 00 00 00 00 returns 0x04 (0001ms, 3756ms total)
T29C8 591:629 JLINK_ReadMemEx(0x20008F0C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F0C) - Data: 5B 71 00 08 returns 0x04 (0000ms, 3756ms total)
T29C8 591:629 JLINK_ReadMemEx(0x20008F24, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F24) - Data: CF 71 00 08 returns 0x04 (0000ms, 3756ms total)
T29C8 591:629 JLINK_ReadMemEx(0x20008F10, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F10) - Data: 30 8F 00 20 returns 0x04 (0000ms, 3756ms total)
T29C8 591:629 JLINK_ReadMemEx(0x20008F14, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F14) - Data: 40 00 00 00 returns 0x04 (0000ms, 3756ms total)
T29C8 591:629 JLINK_ReadMemEx(0x20008F18, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F18) - Data: 00 00 00 00 returns 0x04 (0000ms, 3756ms total)
T29C8 591:629 JLINK_ReadMemEx(0x20008F1C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F1C) - Data: 00 00 00 00 returns 0x04 (0000ms, 3756ms total)
T29C8 591:629 JLINK_ReadMemEx(0x20008F20, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F20) - Data: 00 00 00 00 returns 0x04 (0000ms, 3756ms total)
T29C8 591:629 JLINK_ReadMemEx(0x20008F24, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F24) - Data: CF 71 00 08 returns 0x04 (0000ms, 3756ms total)
T29C8 591:629 JLINK_ReadMemEx(0x20008F2C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F2C) - Data: 57 8F 00 08 returns 0x04 (0000ms, 3756ms total)
T29C8 591:629 JLINK_ReadMemEx(0x20008F28, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F28) - Data: 03 00 00 00 returns 0x04 (0000ms, 3756ms total)
T29C8 591:629 JLINK_ReadMemEx(0x20008F2C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F2C) - Data: 57 8F 00 08 returns 0x04 (0000ms, 3756ms total)
T29C8 591:629 JLINK_ReadMemEx(0x20008F7C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20008F40) -- Updating C cache (64 bytes @ 0x20008F40) -- Read from C cache (4 bytes @ 0x20008F7C) - Data: E7 11 00 08 returns 0x04 (0003ms, 3759ms total)
T29C8 591:632 JLINK_ReadMemEx(0x20008F74, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F74) - Data: 84 D1 00 08 returns 0x04 (0000ms, 3759ms total)
T29C8 591:632 JLINK_ReadMemEx(0x20008F78, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F78) - Data: 84 D1 00 08 returns 0x04 (0000ms, 3759ms total)
T29C8 591:632 JLINK_ReadMemEx(0x20008F7C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F7C) - Data: E7 11 00 08 returns 0x04 (0000ms, 3759ms total)
T29C8 591:632 JLINK_ReadMemEx(0x20008F84, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20008F80) -- Updating C cache (64 bytes @ 0x20008F80) -- Read from C cache (4 bytes @ 0x20008F84) - Data: F9 FF FF FF returns 0x04 (0003ms, 3762ms total)
T29C8 591:635 JLINK_ReadMemEx(0x20008FA0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FA0) - Data: 94 86 00 08 returns 0x04 (0000ms, 3762ms total)
T29C8 591:635 JLINK_ReadMemEx(0x20008FA4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FA4) - Data: 00 60 00 61 returns 0x04 (0000ms, 3762ms total)
T29C8 591:635 JLINK_ReadMemEx(0x20008F9C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008F9C) - Data: 55 4B 00 08 returns 0x04 (0000ms, 3762ms total)
T29C8 591:635 JLINK_ReadMemEx(0xE000ED28, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0xE000ED28) - Data: 00 00 00 00 returns 0x04 (0002ms, 3764ms total)
T29C8 591:637 JLINK_ReadMemEx(0x20008FA0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FA0) - Data: 94 86 00 08 returns 0x04 (0001ms, 3765ms total)
T29C8 591:638 JLINK_ReadMemEx(0x20008FA4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20008FA4) - Data: 00 60 00 61 returns 0x04 (0000ms, 3765ms total)
T29C8 591:638 JLINK_ReadMemEx(0x20008F31, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x20008F31) - Data: 1C 94 00 6F 06 C7 55 00 01 43 00 00 02 0A 3E 01 ... returns 0x20 (0000ms, 3765ms total)
T29C8 591:638 JLINK_ReadMemEx(0x20008EBC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20008E80) -- Updating C cache (64 bytes @ 0x20008E80) -- Read from C cache (32 bytes @ 0x20008EBC) - Data: 15 00 6F 06 C7 55 00 01 43 00 00 02 0A 3E 01 00 ... returns 0x20 (0002ms, 3767ms total)
T29C8 591:640 JLINK_ReadMemEx(0x20000534, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000500) -- Updating C cache (64 bytes @ 0x20000500) -- Read from C cache (1 bytes @ 0x20000534) - Data: 00 returns 0x01 (0002ms, 3769ms total)
T29C8 591:643 JLINK_ReadMemEx(0x20008F24, 0x0130 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(192 bytes @ 0x20008FC0) -- Updating C cache (192 bytes @ 0x20008FC0) -- Read from C cache (304 bytes @ 0x20008F24) - Data: CF 71 00 08 03 00 00 00 57 8F 00 08 03 1C 94 00 ... returns 0x130 (0002ms, 3771ms total)
T29C8 620:246 JLINK_ReadMemEx(0x200004E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200004C0) -- Updating C cache (64 bytes @ 0x200004C0) -- Read from C cache (4 bytes @ 0x200004E8) - Data: 81 7D 00 08 returns 0x04 (0002ms, 3773ms total)
T29C8 1261:296 JLINK_Close() -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0009ms, 3782ms total)
T29C8 1261:296 (0009ms, 3782ms total)
T29C8 1261:296 Closed (0009ms, 3782ms total)