JLinkLog.txt
531 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
T0B0C 6396:139 SEGGER J-Link V6.46 Log File (0000ms, 1457ms total)
T0B0C 6396:139 DLL Compiled: May 23 2019 17:49:56 (0000ms, 1457ms total)
T0B0C 6396:139 Logging started @ 2023-01-10 11:08 (0000ms, 1457ms total)
T0B0C 6396:139 JLINK_SetWarnOutHandler(...) (0000ms, 1457ms total)
T0B0C 6396:139 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 (0038ms, 1495ms total)
T0B0C 6396:139 WEBSRV Webserver running on local port 19080 (0038ms, 1495ms total)
T0B0C 6396:139 returns O.K. (0038ms, 1495ms total)
T0B0C 6396:178 JLINK_GetEmuCaps() returns 0xB9FF7BBF (0000ms, 1495ms total)
T0B0C 6396:178 JLINK_TIF_GetAvailable(...) (0001ms, 1496ms total)
T0B0C 6396:179 JLINK_SetErrorOutHandler(...) (0000ms, 1496ms total)
T0B0C 6396:179 JLINK_ExecCommand("ProjectFile = "E:\C100B_S6\C100B_GD\Proj\JLinkSettings.ini"", ...). returns 0x00 (0002ms, 1498ms total)
T0B0C 6396:181 JLINK_ExecCommand("Device = GD32F303RE", ...). Device "GD32F303RE" selected. returns 0x00 (0001ms, 1499ms total)
T0B0C 6396:182 JLINK_ExecCommand("DisableConnectionTimeout", ...). returns 0x01 (0000ms, 1499ms total)
T0B0C 6396:182 JLINK_GetHardwareVersion() returns 0x16F30 (0000ms, 1499ms total)
T0B0C 6396:182 JLINK_GetDLLVersion() returns 64600 (0000ms, 1499ms total)
T0B0C 6396:182 JLINK_GetFirmwareString(...) (0000ms, 1499ms total)
T0B0C 6396:182 JLINK_GetDLLVersion() returns 64600 (0000ms, 1499ms total)
T0B0C 6396:182 JLINK_GetCompileDateTime() (0000ms, 1499ms total)
T0B0C 6396:182 JLINK_GetFirmwareString(...) (0000ms, 1499ms total)
T0B0C 6396:182 JLINK_GetHardwareVersion() returns 0x16F30 (0000ms, 1499ms total)
T0B0C 6396:182 JLINK_TIF_Select(JLINKARM_TIF_SWD) returns 0x00 (0004ms, 1503ms total)
T0B0C 6396:186 JLINK_SetSpeed(5000) (0001ms, 1504ms total)
T0B0C 6396:187 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: 0x00011028
-- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE0002000)FPUnit: 6 code (BP) slots and 2 literal slots -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_WriteMem(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 (0195ms, 1699ms total)
T0B0C 6396:382 JLINK_GetDLLVersion() returns 64600 (0000ms, 1699ms total)
T0B0C 6396:382 JLINK_CORE_GetFound() returns 0xE0000FF (0000ms, 1699ms total)
T0B0C 6396:382 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xE00FF000 returns 0x00 (0000ms, 1699ms total)
T0B0C 6396:382 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xE00FF000 returns 0x00 (0000ms, 1699ms total)
T0B0C 6396:382 JLINK_GetDebugInfo(0x101 = JLINKARM_DEBUG_INFO_ETM_ADDR_INDEX) -- Value=0x00000000 returns 0x00 (0000ms, 1699ms total)
T0B0C 6396:382 JLINK_ReadMemEx(0xE0041FF0, 0x0010 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(16 bytes @ 0xE0041FF0) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 returns 0x10 (0001ms, 1700ms total)
T0B0C 6396:383 JLINK_GetDebugInfo(0x102 = JLINKARM_DEBUG_INFO_MTB_ADDR_INDEX) -- Value=0x00000000 returns 0x00 (0000ms, 1700ms total)
T0B0C 6396:383 JLINK_GetDebugInfo(0x103 = JLINKARM_DEBUG_INFO_TPIU_ADDR_INDEX) -- Value=0xE0040000 returns 0x00 (0000ms, 1700ms total)
T0B0C 6396:383 JLINK_GetDebugInfo(0x104 = JLINKARM_DEBUG_INFO_ITM_ADDR_INDEX) -- Value=0xE0000000 returns 0x00 (0000ms, 1700ms total)
T0B0C 6396:383 JLINK_GetDebugInfo(0x105 = JLINKARM_DEBUG_INFO_DWT_ADDR_INDEX) -- Value=0xE0001000 returns 0x00 (0000ms, 1700ms total)
T0B0C 6396:383 JLINK_GetDebugInfo(0x106 = JLINKARM_DEBUG_INFO_FPB_ADDR_INDEX) -- Value=0xE0002000 returns 0x00 (0000ms, 1700ms total)
T0B0C 6396:383 JLINK_GetDebugInfo(0x107 = JLINKARM_DEBUG_INFO_NVIC_ADDR_INDEX) -- Value=0xE000E000 returns 0x00 (0000ms, 1700ms total)
T0B0C 6396:383 JLINK_GetDebugInfo(0x10C = JLINKARM_DEBUG_INFO_DBG_ADDR_INDEX) -- Value=0xE000EDF0 returns 0x00 (0000ms, 1700ms total)
T0B0C 6396:383 JLINK_GetDebugInfo(0x01 = Unknown) -- Value=0x00000001 returns 0x00 (0000ms, 1700ms total)
T0B0C 6396:383 JLINK_ReadMemU32(0xE000ED00, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED00) - Data: 41 C2 0F 41 returns 1 (0001ms, 1701ms total)
T0B0C 6396:384 JLINK_GetDebugInfo(0x10F = JLINKARM_DEBUG_INFO_HAS_CORTEX_M_SECURITY_EXT_INDEX) -- Value=0x00000000 returns 0x00 (0000ms, 1701ms total)
T0B0C 6396:384 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 1701ms total)
T0B0C 6396:384 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) (0073ms, 1774ms total)
T0B0C 6396:457 JLINK_ReadReg(R15 (PC)) returns 0x08000148 (0000ms, 1774ms total)
T0B0C 6396:457 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 1774ms total)
T0B0C 6396:457 JLINK_Halt() returns 0x00 (0000ms, 1774ms total)
T0B0C 6396:457 JLINK_ReadMemU32(0xE000EDF0, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) - Data: 03 00 03 00 returns 1 (0001ms, 1775ms total)
T0B0C 6396:458 JLINK_WriteU32(0xE000EDF0, 0xA05F0003) -- CPU_WriteMem(4 bytes @ 0xE000EDF0) returns 0 (0001ms, 1776ms total)
T0B0C 6396:459 JLINK_WriteU32(0xE000EDFC, 0x01000000) -- CPU_WriteMem(4 bytes @ 0xE000EDFC) returns 0 (0001ms, 1777ms total)
T0B0C 6396:460 JLINK_GetHWStatus(...) returns 0x00 (0001ms, 1778ms total)
T0B0C 6396:461 JLINK_GetNumBPUnits(Type = 0xFFFFFF00) returns 0x06 (0000ms, 1778ms total)
T0B0C 6396:461 JLINK_GetNumBPUnits(Type = 0xF0) returns 0x2000 (0000ms, 1778ms total)
T0B0C 6396:461 JLINK_GetNumWPUnits() returns 0x04 (0000ms, 1778ms total)
T0B0C 6396:461 JLINK_GetSpeed() returns 0xFA0 (0000ms, 1778ms total)
T0B0C 6396:461 JLINK_ReadMemU32(0xE000E004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000E004) - Data: 02 00 00 00 returns 1 (0001ms, 1779ms total)
T0B0C 6396:462 JLINK_ReadMemU32(0xE000E004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000E004) - Data: 02 00 00 00 returns 1 (0001ms, 1780ms total)
T0B0C 6396:463 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 (0003ms, 1783ms total)
T0B0C 6396:466 JLINK_ReadReg(R15 (PC)) returns 0x08000148 (0000ms, 1783ms total)
T0B0C 6396:466 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 1783ms total)
T0B0C 6396:472 JLINK_ReadMemEx(0xE0001004, 0x0004 Bytes, ..., Flags = 0x02000000) - Data: 00 00 00 00 returns 0x04 (0000ms, 1783ms total)
T0B0C 6396:559 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 1783ms total)
T0B0C 6396:559 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) (0074ms, 1857ms total)
T0B0C 6396:633 JLINK_ReadReg(R15 (PC)) returns 0x08000148 (0000ms, 1857ms total)
T0B0C 6396:633 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 1857ms total)
T0B0C 6396:633 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, 1859ms total)
T0B0C 6396:635 JLINK_ReadMemEx(0x08000148, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08000148) - Data: 06 48 returns 0x02 (0000ms, 1859ms total)
T0B0C 6396:635 JLINK_ReadMemEx(0x0800014A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800014A) - Data: 80 47 returns 0x02 (0000ms, 1859ms total)
T0B0C 6396:635 JLINK_ReadMemEx(0x0800014A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800014A) - Data: 80 47 returns 0x02 (0000ms, 1859ms total)
T0B0C 6396:635 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, 1859ms total)
T0B0C 6396:635 JLINK_ReadMemEx(0x0800014C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800014C) - Data: 06 48 returns 0x02 (0000ms, 1859ms total)
T0B0C 6396:635 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, 1859ms total)
T0B0C 6396:635 JLINK_ReadMemEx(0x0800014C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800014C) - Data: 06 48 returns 0x02 (0000ms, 1859ms total)
T0B0C 6396:635 JLINK_ReadMemEx(0x0800014E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800014E) - Data: 00 47 returns 0x02 (0000ms, 1859ms total)
T0B0C 6396:635 JLINK_ReadMemEx(0x0800014E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800014E) - Data: 00 47 returns 0x02 (0000ms, 1859ms total)
T0B0C 6396:635 JLINK_ReadMemEx(0x08000150, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08000150) - Data: FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 ... returns 0x3C (0000ms, 1859ms total)
T0B0C 6396:635 JLINK_ReadMemEx(0x08000150, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08000150) - Data: FE E7 returns 0x02 (0000ms, 1859ms total)
T0B0C 6396:635 JLINK_ReadMemEx(0x08000150, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08000150) - Data: FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 ... returns 0x3C (0000ms, 1859ms total)
T0B0C 6396:635 JLINK_ReadMemEx(0x08000150, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08000150) - Data: FE E7 returns 0x02 (0000ms, 1859ms total)
T0B0C 6396:635 JLINK_ReadMemEx(0x08000152, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08000152) - Data: FE E7 returns 0x02 (0000ms, 1859ms total)
T0B0C 6398:350 JLINK_ReadMemEx(0x08000152, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08000152) - Data: FE E7 returns 0x02 (0000ms, 1859ms total)
T0B0C 6398:350 JLINK_ReadMemEx(0x08000154, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08000154) - Data: FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 ... returns 0x3C (0000ms, 1859ms total)
T0B0C 6398:350 JLINK_ReadMemEx(0x08000154, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08000154) - Data: FE E7 returns 0x02 (0000ms, 1859ms total)
T0B0C 6398:350 JLINK_ReadMemEx(0x08000154, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08000154) - Data: FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 ... returns 0x3C (0000ms, 1859ms total)
T0B0C 6398:350 JLINK_ReadMemEx(0x08000154, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08000154) - Data: FE E7 returns 0x02 (0000ms, 1859ms total)
T0B0C 6398:350 JLINK_ReadMemEx(0x08000156, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08000156) - Data: FE E7 returns 0x02 (0000ms, 1859ms total)
T0B0C 6398:350 JLINK_ReadMemEx(0x08000156, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08000156) - Data: FE E7 returns 0x02 (0000ms, 1859ms total)
T0B0C 6398:350 JLINK_ReadMemEx(0x08000158, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08000158) - Data: FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 39 05 00 08 ... returns 0x3C (0000ms, 1859ms total)
T0B0C 6398:350 JLINK_ReadMemEx(0x08000158, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08000158) - Data: FE E7 returns 0x02 (0000ms, 1859ms total)
T0B0C 6398:350 JLINK_ReadMemEx(0x08000158, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08000158) - Data: FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 39 05 00 08 ... returns 0x3C (0000ms, 1859ms total)
T0B0C 6398:350 JLINK_ReadMemEx(0x08000158, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08000158) - Data: FE E7 returns 0x02 (0000ms, 1859ms total)
T0B0C 6398:350 JLINK_ReadMemEx(0x0800015A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800015A) - Data: FE E7 returns 0x02 (0000ms, 1859ms total)
T0B0C 6398:350 JLINK_ReadMemEx(0x0800015A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800015A) - Data: FE E7 returns 0x02 (0000ms, 1859ms total)
T0B0C 6398:350 JLINK_ReadMemEx(0x0800015C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800015C) - Data: FE E7 FE E7 FE E7 FE E7 39 05 00 08 31 01 00 08 ... returns 0x3C (0000ms, 1859ms total)
T0B0C 6398:350 JLINK_ReadMemEx(0x0800015C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800015C) - Data: FE E7 returns 0x02 (0000ms, 1859ms total)
T0B0C 6398:350 JLINK_ReadMemEx(0x0800015C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800015C) - Data: FE E7 FE E7 FE E7 FE E7 39 05 00 08 31 01 00 08 ... returns 0x3C (0000ms, 1859ms total)
T0B0C 6398:350 JLINK_ReadMemEx(0x0800015C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800015C) - Data: FE E7 returns 0x02 (0000ms, 1859ms total)
T0B0C 6398:350 JLINK_ReadMemEx(0x0800015E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800015E) - Data: FE E7 returns 0x02 (0000ms, 1859ms total)
T0B0C 6398:350 JLINK_ReadMemEx(0x0800015E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800015E) - Data: FE E7 returns 0x02 (0000ms, 1859ms total)
T0B0C 6398:350 JLINK_ReadMemEx(0x08000160, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08000160) - Data: FE E7 FE E7 39 05 00 08 31 01 00 08 40 EA 01 03 ... returns 0x3C (0000ms, 1859ms total)
T0B0C 6398:350 JLINK_ReadMemEx(0x08000160, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08000160) - Data: FE E7 returns 0x02 (0000ms, 1859ms total)
T0B0C 6398:350 JLINK_ReadMemEx(0x08000160, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08000160) - Data: FE E7 FE E7 39 05 00 08 31 01 00 08 40 EA 01 03 ... returns 0x3C (0001ms, 1860ms total)
T0B0C 6398:351 JLINK_ReadMemEx(0x08000160, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08000160) - Data: FE E7 returns 0x02 (0000ms, 1860ms total)
T0B0C 6398:351 JLINK_ReadMemEx(0x08000162, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08000162) - Data: FE E7 returns 0x02 (0000ms, 1860ms total)
T0B0C 6398:351 JLINK_ReadMemEx(0x08000162, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08000162) - Data: FE E7 returns 0x02 (0000ms, 1860ms total)
T0B0C 6398:351 JLINK_ReadMemEx(0x08000164, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08000164) - Data: 39 05 00 08 31 01 00 08 40 EA 01 03 9B 07 03 D0 ... returns 0x3C (0000ms, 1860ms total)
T0B0C 6398:351 JLINK_ReadMemEx(0x08000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08000164) - Data: 39 05 returns 0x02 (0000ms, 1860ms total)
T0B0C 6398:351 JLINK_ReadMemEx(0x08000164, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08000164) - Data: 39 05 00 08 31 01 00 08 40 EA 01 03 9B 07 03 D0 ... returns 0x3C (0000ms, 1860ms total)
T0B0C 6398:351 JLINK_ReadMemEx(0x08000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08000164) - Data: 39 05 returns 0x02 (0000ms, 1860ms total)
T0B0C 6398:351 JLINK_ReadMemEx(0x08000166, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08000166) - Data: 00 08 returns 0x02 (0000ms, 1860ms total)
T0B0C 6398:419 JLINK_ReadMemEx(0x08010010, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x08010000) -- Updating C cache (128 bytes @ 0x08010000) -- Read from C cache (60 bytes @ 0x08010010) - Data: FE F7 B8 FD 06 46 08 49 88 8D 05 49 32 46 8B 6B ... returns 0x3C (0002ms, 1862ms total)
T0B0C 6398:421 JLINK_ReadMemEx(0x08010010, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010010) - Data: FE F7 returns 0x02 (0000ms, 1862ms total)
T0B0C 6398:421 JLINK_ReadMemEx(0x08010012, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010012) - Data: B8 FD returns 0x02 (0000ms, 1862ms total)
T0B0C 6398:421 JLINK_ReadMemEx(0x08010014, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08010014) - Data: 06 46 08 49 88 8D 05 49 32 46 8B 6B 04 21 98 47 ... returns 0x3C (0000ms, 1862ms total)
T0B0C 6398:421 JLINK_ReadMemEx(0x08010014, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010014) - Data: 06 46 returns 0x02 (0000ms, 1862ms total)
T0B0C 6398:421 JLINK_ReadMemEx(0x08010016, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010016) - Data: 08 49 returns 0x02 (0000ms, 1862ms total)
T0B0C 6398:421 JLINK_ReadMemEx(0x08010016, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010016) - Data: 08 49 returns 0x02 (0000ms, 1862ms total)
T0B0C 6398:421 JLINK_ReadMemEx(0x08010018, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08010018) - Data: 88 8D 05 49 32 46 8B 6B 04 21 98 47 70 BD 00 00 ... returns 0x3C (0000ms, 1862ms total)
T0B0C 6398:421 JLINK_ReadMemEx(0x08010018, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010018) - Data: 88 8D returns 0x02 (0000ms, 1862ms total)
T0B0C 6398:421 JLINK_ReadMemEx(0x08010018, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08010018) - Data: 88 8D 05 49 32 46 8B 6B 04 21 98 47 70 BD 00 00 ... returns 0x3C (0000ms, 1862ms total)
T0B0C 6398:421 JLINK_ReadMemEx(0x08010018, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010018) - Data: 88 8D returns 0x02 (0000ms, 1862ms total)
T0B0C 6398:421 JLINK_ReadMemEx(0x0801001A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801001A) - Data: 05 49 returns 0x02 (0000ms, 1862ms total)
T0B0C 6398:421 JLINK_ReadMemEx(0x0801001A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801001A) - Data: 05 49 returns 0x02 (0000ms, 1862ms total)
T0B0C 6398:421 JLINK_ReadMemEx(0x0801001C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0801001C) - Data: 32 46 8B 6B 04 21 98 47 70 BD 00 00 F8 10 00 20 ... returns 0x3C (0000ms, 1862ms total)
T0B0C 6398:421 JLINK_ReadMemEx(0x0801001C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801001C) - Data: 32 46 returns 0x02 (0000ms, 1862ms total)
T0B0C 6398:421 JLINK_ReadMemEx(0x0801001C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0801001C) - Data: 32 46 8B 6B 04 21 98 47 70 BD 00 00 F8 10 00 20 ... returns 0x3C (0000ms, 1862ms total)
T0B0C 6398:421 JLINK_ReadMemEx(0x0801001C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801001C) - Data: 32 46 returns 0x02 (0000ms, 1862ms total)
T0B0C 6398:421 JLINK_ReadMemEx(0x0801001E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801001E) - Data: 8B 6B returns 0x02 (0000ms, 1862ms total)
T0B0C 6398:421 JLINK_ReadMemEx(0x0801001E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801001E) - Data: 8B 6B returns 0x02 (0000ms, 1862ms total)
T0B0C 6398:421 JLINK_ReadMemEx(0x08010020, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08010020) - Data: 04 21 98 47 70 BD 00 00 F8 10 00 20 B2 04 00 20 ... returns 0x3C (0000ms, 1862ms total)
T0B0C 6398:421 JLINK_ReadMemEx(0x08010020, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010020) - Data: 04 21 returns 0x02 (0000ms, 1862ms total)
T0B0C 6398:421 JLINK_ReadMemEx(0x08010020, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08010020) - Data: 04 21 98 47 70 BD 00 00 F8 10 00 20 B2 04 00 20 ... returns 0x3C (0000ms, 1862ms total)
T0B0C 6398:421 JLINK_ReadMemEx(0x08010020, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010020) - Data: 04 21 returns 0x02 (0000ms, 1862ms total)
T0B0C 6398:421 JLINK_ReadMemEx(0x08010022, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010022) - Data: 98 47 returns 0x02 (0000ms, 1862ms total)
T0B0C 6398:421 JLINK_ReadMemEx(0x08010022, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010022) - Data: 98 47 returns 0x02 (0000ms, 1862ms total)
T0B0C 6398:421 JLINK_ReadMemEx(0x08010024, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08010024) - Data: 70 BD 00 00 F8 10 00 20 B2 04 00 20 B8 02 00 20 ... returns 0x3C (0000ms, 1862ms total)
T0B0C 6398:421 JLINK_ReadMemEx(0x08010024, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010024) - Data: 70 BD returns 0x02 (0000ms, 1862ms total)
T0B0C 6398:566 JLINK_ReadReg(R0) returns 0x00000001 (0001ms, 1863ms total)
T0B0C 6398:567 JLINK_ReadReg(R1) returns 0x00000000 (0000ms, 1863ms total)
T0B0C 6398:567 JLINK_ReadReg(R2) returns 0x0000000A (0000ms, 1863ms total)
T0B0C 6398:567 JLINK_ReadReg(R3) returns 0x00000040 (0000ms, 1863ms total)
T0B0C 6398:567 JLINK_ReadReg(R4) returns 0x00000000 (0000ms, 1863ms total)
T0B0C 6398:567 JLINK_ReadReg(R5) returns 0x00000000 (0000ms, 1863ms total)
T0B0C 6398:567 JLINK_ReadReg(R6) returns 0x00000000 (0000ms, 1863ms total)
T0B0C 6398:567 JLINK_ReadReg(R7) returns 0x00000000 (0000ms, 1863ms total)
T0B0C 6398:567 JLINK_ReadReg(R8) returns 0x00000000 (0000ms, 1863ms total)
T0B0C 6398:567 JLINK_ReadReg(R9) returns 0x20000134 (0000ms, 1863ms total)
T0B0C 6398:567 JLINK_ReadReg(R10) returns 0x00000000 (0000ms, 1863ms total)
T0B0C 6398:567 JLINK_ReadReg(R11) returns 0x00000000 (0000ms, 1863ms total)
T0B0C 6398:567 JLINK_ReadReg(R12) returns 0x00000004 (0000ms, 1863ms total)
T0B0C 6398:567 JLINK_ReadReg(R13 (SP)) returns 0x20001450 (0000ms, 1863ms total)
T0B0C 6398:567 JLINK_ReadReg(R14) returns 0xFFFFFFFF (0000ms, 1863ms total)
T0B0C 6398:567 JLINK_ReadReg(R15 (PC)) returns 0x08000148 (0000ms, 1863ms total)
T0B0C 6398:567 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 1863ms total)
T0B0C 6398:567 JLINK_ReadReg(MSP) returns 0x20001450 (0000ms, 1863ms total)
T0B0C 6398:567 JLINK_ReadReg(PSP) returns 0x20001000 (0000ms, 1863ms total)
T0B0C 6398:567 JLINK_ReadReg(CFBP) returns 0x00000000 (0000ms, 1863ms total)
T0B0C 6398:567 JLINK_ReadReg(FPSCR) returns 0x00000000 (0004ms, 1867ms total)
T0B0C 6398:571 JLINK_ReadReg(FPS0) returns 0xFB068412 (0000ms, 1867ms total)
T0B0C 6398:571 JLINK_ReadReg(FPS1) returns 0x10110C5A (0000ms, 1867ms total)
T0B0C 6398:571 JLINK_ReadReg(FPS2) returns 0x04345E8B (0000ms, 1867ms total)
T0B0C 6398:571 JLINK_ReadReg(FPS3) returns 0x84492403 (0000ms, 1867ms total)
T0B0C 6398:571 JLINK_ReadReg(FPS4) returns 0x18248A10 (0000ms, 1867ms total)
T0B0C 6398:571 JLINK_ReadReg(FPS5) returns 0x24102496 (0000ms, 1867ms total)
T0B0C 6398:571 JLINK_ReadReg(FPS6) returns 0x82C0846D (0000ms, 1867ms total)
T0B0C 6398:571 JLINK_ReadReg(FPS7) returns 0x28E02089 (0000ms, 1867ms total)
T0B0C 6398:571 JLINK_ReadReg(FPS8) returns 0x05488443 (0000ms, 1867ms total)
T0B0C 6398:571 JLINK_ReadReg(FPS9) returns 0xF172B840 (0000ms, 1867ms total)
T0B0C 6398:571 JLINK_ReadReg(FPS10) returns 0x11B25004 (0000ms, 1867ms total)
T0B0C 6398:571 JLINK_ReadReg(FPS11) returns 0x000A0122 (0000ms, 1867ms total)
T0B0C 6398:571 JLINK_ReadReg(FPS12) returns 0x02345609 (0000ms, 1867ms total)
T0B0C 6398:571 JLINK_ReadReg(FPS13) returns 0x86007109 (0000ms, 1867ms total)
T0B0C 6398:571 JLINK_ReadReg(FPS14) returns 0xA03C9BD0 (0000ms, 1867ms total)
T0B0C 6398:571 JLINK_ReadReg(FPS15) returns 0x5012A400 (0000ms, 1867ms total)
T0B0C 6398:571 JLINK_ReadReg(FPS16) returns 0x1591822D (0000ms, 1867ms total)
T0B0C 6398:571 JLINK_ReadReg(FPS17) returns 0x9415225C (0000ms, 1867ms total)
T0B0C 6398:571 JLINK_ReadReg(FPS18) returns 0x0C0917B5 (0000ms, 1867ms total)
T0B0C 6398:571 JLINK_ReadReg(FPS19) returns 0x1C78D422 (0000ms, 1867ms total)
T0B0C 6398:571 JLINK_ReadReg(FPS20) returns 0xB4874081 (0000ms, 1867ms total)
T0B0C 6398:571 JLINK_ReadReg(FPS21) returns 0x108D0118 (0000ms, 1867ms total)
T0B0C 6398:571 JLINK_ReadReg(FPS22) returns 0x9044A200 (0000ms, 1867ms total)
T0B0C 6398:571 JLINK_ReadReg(FPS23) returns 0x781449E0 (0000ms, 1867ms total)
T0B0C 6398:571 JLINK_ReadReg(FPS24) returns 0x1C330E11 (0000ms, 1867ms total)
T0B0C 6398:571 JLINK_ReadReg(FPS25) returns 0xC605704C (0000ms, 1867ms total)
T0B0C 6398:571 JLINK_ReadReg(FPS26) returns 0x2C30E195 (0000ms, 1867ms total)
T0B0C 6398:571 JLINK_ReadReg(FPS27) returns 0x8032365D (0000ms, 1867ms total)
T0B0C 6398:571 JLINK_ReadReg(FPS28) returns 0x068522B7 (0000ms, 1867ms total)
T0B0C 6398:571 JLINK_ReadReg(FPS29) returns 0x121C1711 (0000ms, 1867ms total)
T0B0C 6398:571 JLINK_ReadReg(FPS30) returns 0x41020916 (0000ms, 1867ms total)
T0B0C 6398:571 JLINK_ReadReg(FPS31) returns 0x11A63042 (0000ms, 1867ms total)
T0B0C 6398:597 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000580) -- Updating C cache (64 bytes @ 0x20000580) -- Read from C cache (1 bytes @ 0x20000588) - Data: 00 returns 0x01 (0001ms, 1868ms total)
T0B0C 6398:601 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000588) - Data: 00 returns 0x01 (0000ms, 1868ms total)
T0B0C 6398:601 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000588) - Data: 00 returns 0x01 (0000ms, 1868ms total)
T0B0C 6398:602 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200007C0) -- Updating C cache (64 bytes @ 0x200007C0) -- Read from C cache (1 bytes @ 0x200007ED) - Data: DC returns 0x01 (0001ms, 1869ms total)
T0B0C 6398:603 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200007ED) - Data: DC returns 0x01 (0000ms, 1869ms total)
T0B0C 6398:603 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200007ED) - Data: DC returns 0x01 (0000ms, 1869ms total)
T0B0C 6398:604 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200007EE) - Data: 00 returns 0x01 (0000ms, 1869ms total)
T0B0C 6398:604 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200007EE) - Data: 00 returns 0x01 (0000ms, 1869ms total)
T0B0C 6398:604 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200007EE) - Data: 00 returns 0x01 (0000ms, 1869ms total)
T0B0C 6398:605 JLINK_ReadMemEx(0x2000042C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000400) -- Updating C cache (64 bytes @ 0x20000400) -- Read from C cache (4 bytes @ 0x2000042C) - Data: 00 00 00 00 returns 0x04 (0002ms, 1871ms total)
T0B0C 6398:607 JLINK_ReadMemEx(0x2000042C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000042C) - Data: 00 00 00 00 returns 0x04 (0000ms, 1871ms total)
T0B0C 6398:607 JLINK_ReadMemEx(0x2000042C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000042C) - Data: 00 00 00 00 returns 0x04 (0000ms, 1871ms total)
T1700 6399:114 JLINK_ReadMemEx(0x08000148, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08000148) - Data: 06 48 returns 0x02 (0000ms, 1871ms total)
T1700 6399:114 JLINK_SetBPEx(Addr = 0x0800F8CC, Type = 0xFFFFFFF2) returns 0x00000001 (0000ms, 1871ms total)
T1700 6399:114 JLINK_SetBPEx(Addr = 0x08009484, Type = 0xFFFFFFF2) returns 0x00000002 (0000ms, 1871ms total)
T1700 6399:114 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) -- 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) (0008ms, 1879ms total)
T1700 6399:222 JLINK_IsHalted() returns TRUE (0003ms, 1882ms total)
T1700 6399:225 JLINK_Halt() returns 0x00 (0000ms, 1879ms total)
T1700 6399:225 JLINK_IsHalted() returns TRUE (0000ms, 1879ms total)
T1700 6399:225 JLINK_IsHalted() returns TRUE (0000ms, 1879ms total)
T1700 6399:225 JLINK_IsHalted() returns TRUE (0000ms, 1879ms total)
T1700 6399:225 JLINK_ReadReg(R15 (PC)) returns 0x0800F8CC (0000ms, 1879ms total)
T1700 6399:225 JLINK_ReadReg(XPSR) returns 0x61000000 (0000ms, 1879ms total)
T1700 6399:225 JLINK_ClrBPEx(BPHandle = 0x00000001) returns 0x00 (0000ms, 1879ms total)
T1700 6399:225 JLINK_ClrBPEx(BPHandle = 0x00000002) returns 0x00 (0000ms, 1879ms total)
T1700 6399:225 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 02 00 00 00 returns 1 (0001ms, 1880ms total)
T1700 6399:226 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00 returns 1 (0001ms, 1881ms total)
T1700 6399:227 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 02 00 00 returns 1 (0001ms, 1882ms total)
T1700 6399:228 JLINK_ReadMemU32(0xE0001048, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001048) - Data: 00 00 00 00 returns 1 (0001ms, 1883ms total)
T1700 6399:229 JLINK_ReadMemU32(0xE0001058, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001058) - Data: 00 00 00 00 returns 1 (0001ms, 1884ms total)
T1700 6399:230 JLINK_ReadReg(R0) returns 0x0800F8CD (0000ms, 1884ms total)
T1700 6399:230 JLINK_ReadReg(R1) returns 0x2000E120 (0000ms, 1884ms total)
T1700 6399:230 JLINK_ReadReg(R2) returns 0x00000000 (0000ms, 1884ms total)
T1700 6399:230 JLINK_ReadReg(R3) returns 0x0800B0DD (0000ms, 1884ms total)
T1700 6399:230 JLINK_ReadReg(R4) returns 0x08015984 (0000ms, 1884ms total)
T1700 6399:230 JLINK_ReadReg(R5) returns 0x08015984 (0000ms, 1884ms total)
T1700 6399:230 JLINK_ReadReg(R6) returns 0x00000000 (0000ms, 1884ms total)
T1700 6399:230 JLINK_ReadReg(R7) returns 0x00000000 (0000ms, 1884ms total)
T1700 6399:230 JLINK_ReadReg(R8) returns 0x00000000 (0000ms, 1884ms total)
T1700 6399:230 JLINK_ReadReg(R9) returns 0x20000134 (0000ms, 1884ms total)
T1700 6399:230 JLINK_ReadReg(R10) returns 0x00000000 (0000ms, 1884ms total)
T1700 6399:230 JLINK_ReadReg(R11) returns 0x00000000 (0000ms, 1884ms total)
T1700 6399:230 JLINK_ReadReg(R12) returns 0x00000004 (0000ms, 1884ms total)
T1700 6399:230 JLINK_ReadReg(R13 (SP)) returns 0x2000E120 (0000ms, 1884ms total)
T1700 6399:230 JLINK_ReadReg(R14) returns 0x0800822D (0000ms, 1884ms total)
T1700 6399:230 JLINK_ReadReg(R15 (PC)) returns 0x0800F8CC (0000ms, 1884ms total)
T1700 6399:230 JLINK_ReadReg(XPSR) returns 0x61000000 (0000ms, 1884ms total)
T1700 6399:230 JLINK_ReadReg(MSP) returns 0x2000E120 (0000ms, 1884ms total)
T1700 6399:230 JLINK_ReadReg(PSP) returns 0x20001000 (0000ms, 1884ms total)
T1700 6399:230 JLINK_ReadReg(CFBP) returns 0x00000001 (0000ms, 1884ms total)
T1700 6399:230 JLINK_ReadReg(FPSCR) returns 0x00000000 (0004ms, 1888ms total)
T1700 6399:234 JLINK_ReadReg(FPS0) returns 0xFB068412 (0000ms, 1888ms total)
T1700 6399:234 JLINK_ReadReg(FPS1) returns 0x10110C5A (0000ms, 1888ms total)
T1700 6399:234 JLINK_ReadReg(FPS2) returns 0x04345E8B (0000ms, 1888ms total)
T1700 6399:234 JLINK_ReadReg(FPS3) returns 0x84492403 (0000ms, 1888ms total)
T1700 6399:234 JLINK_ReadReg(FPS4) returns 0x18248A10 (0000ms, 1888ms total)
T1700 6399:234 JLINK_ReadReg(FPS5) returns 0x24102496 (0000ms, 1888ms total)
T1700 6399:234 JLINK_ReadReg(FPS6) returns 0x82C0846D (0000ms, 1888ms total)
T1700 6399:234 JLINK_ReadReg(FPS7) returns 0x28E02089 (0000ms, 1888ms total)
T1700 6399:234 JLINK_ReadReg(FPS8) returns 0x05488443 (0000ms, 1888ms total)
T1700 6399:234 JLINK_ReadReg(FPS9) returns 0xF172B840 (0000ms, 1888ms total)
T1700 6399:234 JLINK_ReadReg(FPS10) returns 0x11B25004 (0000ms, 1888ms total)
T1700 6399:234 JLINK_ReadReg(FPS11) returns 0x000A0122 (0000ms, 1888ms total)
T1700 6399:234 JLINK_ReadReg(FPS12) returns 0x02345609 (0000ms, 1888ms total)
T1700 6399:234 JLINK_ReadReg(FPS13) returns 0x86007109 (0000ms, 1888ms total)
T1700 6399:234 JLINK_ReadReg(FPS14) returns 0xA03C9BD0 (0000ms, 1888ms total)
T1700 6399:234 JLINK_ReadReg(FPS15) returns 0x5012A400 (0000ms, 1888ms total)
T1700 6399:234 JLINK_ReadReg(FPS16) returns 0x1591822D (0000ms, 1888ms total)
T1700 6399:234 JLINK_ReadReg(FPS17) returns 0x9415225C (0000ms, 1888ms total)
T1700 6399:234 JLINK_ReadReg(FPS18) returns 0x0C0917B5 (0000ms, 1888ms total)
T1700 6399:234 JLINK_ReadReg(FPS19) returns 0x1C78D422 (0000ms, 1888ms total)
T1700 6399:234 JLINK_ReadReg(FPS20) returns 0xB4874081 (0000ms, 1888ms total)
T1700 6399:234 JLINK_ReadReg(FPS21) returns 0x108D0118 (0000ms, 1888ms total)
T1700 6399:234 JLINK_ReadReg(FPS22) returns 0x9044A200 (0000ms, 1888ms total)
T1700 6399:234 JLINK_ReadReg(FPS23) returns 0x781449E0 (0000ms, 1888ms total)
T1700 6399:234 JLINK_ReadReg(FPS24) returns 0x1C330E11 (0000ms, 1888ms total)
T1700 6399:234 JLINK_ReadReg(FPS25) returns 0xC605704C (0000ms, 1888ms total)
T1700 6399:234 JLINK_ReadReg(FPS26) returns 0x2C30E195 (0000ms, 1888ms total)
T1700 6399:234 JLINK_ReadReg(FPS27) returns 0x8032365D (0000ms, 1888ms total)
T1700 6399:234 JLINK_ReadReg(FPS28) returns 0x068522B7 (0000ms, 1888ms total)
T1700 6399:234 JLINK_ReadReg(FPS29) returns 0x121C1711 (0000ms, 1888ms total)
T1700 6399:234 JLINK_ReadReg(FPS30) returns 0x41020916 (0000ms, 1888ms total)
T1700 6399:234 JLINK_ReadReg(FPS31) returns 0x11A63042 (0000ms, 1888ms total)
T0B0C 6399:240 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001004) - Data: BB 74 09 00 returns 1 (0002ms, 1890ms total)
T0B0C 6399:242 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000580) -- Updating C cache (64 bytes @ 0x20000580) -- Read from C cache (1 bytes @ 0x20000588) - Data: 00 returns 0x01 (0001ms, 1891ms total)
T0B0C 6399:243 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200007C0) -- Updating C cache (64 bytes @ 0x200007C0) -- Read from C cache (1 bytes @ 0x200007ED) - Data: 00 returns 0x01 (0001ms, 1892ms total)
T0B0C 6399:244 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200007EE) - Data: 00 returns 0x01 (0000ms, 1892ms total)
T0B0C 6399:244 JLINK_ReadMemEx(0x2000042C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000400) -- Updating C cache (64 bytes @ 0x20000400) -- Read from C cache (4 bytes @ 0x2000042C) - Data: 00 00 00 00 returns 0x04 (0001ms, 1893ms total)
T0B0C 6399:246 JLINK_ReadMemEx(0x0800F7CC, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x0800F7C0) -- Updating C cache (128 bytes @ 0x0800F7C0) -- Read from C cache (60 bytes @ 0x0800F7CC) - Data: 00 00 68 46 FD F7 74 FB 01 20 F2 E7 18 12 00 20 ... returns 0x3C (0001ms, 1894ms total)
T0B0C 6399:247 JLINK_ReadMemEx(0x0800F7CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F7CC) - Data: 00 00 returns 0x02 (0000ms, 1894ms total)
T0B0C 6399:247 JLINK_ReadMemEx(0x0800F7CE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F7CE) - Data: 68 46 returns 0x02 (0000ms, 1894ms total)
T0B0C 6399:247 JLINK_ReadMemEx(0x0800F7CE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F7CE) - Data: 68 46 returns 0x02 (0000ms, 1894ms total)
T0B0C 6399:247 JLINK_ReadMemEx(0x0800F7D0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F7D0) - Data: FD F7 74 FB 01 20 F2 E7 18 12 00 20 10 B5 04 46 ... returns 0x3C (0000ms, 1894ms total)
T0B0C 6399:247 JLINK_ReadMemEx(0x0800F7D0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F7D0) - Data: FD F7 returns 0x02 (0000ms, 1894ms total)
T0B0C 6399:247 JLINK_ReadMemEx(0x0800F7D0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F7D0) - Data: FD F7 74 FB 01 20 F2 E7 18 12 00 20 10 B5 04 46 ... returns 0x3C (0000ms, 1894ms total)
T0B0C 6399:247 JLINK_ReadMemEx(0x0800F7D0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F7D0) - Data: FD F7 returns 0x02 (0000ms, 1894ms total)
T0B0C 6399:247 JLINK_ReadMemEx(0x0800F7D2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F7D2) - Data: 74 FB returns 0x02 (0000ms, 1894ms total)
T0B0C 6399:247 JLINK_ReadMemEx(0x0800F7D4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F7D4) - Data: 01 20 F2 E7 18 12 00 20 10 B5 04 46 40 23 0A 22 ... returns 0x3C (0000ms, 1894ms total)
T0B0C 6399:247 JLINK_ReadMemEx(0x0800F7D4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F7D4) - Data: 01 20 returns 0x02 (0000ms, 1894ms total)
T0B0C 6399:247 JLINK_ReadMemEx(0x0800F7D6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F7D6) - Data: F2 E7 returns 0x02 (0000ms, 1894ms total)
T0B0C 6399:247 JLINK_ReadMemEx(0x0800F7D6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F7D6) - Data: F2 E7 returns 0x02 (0001ms, 1895ms total)
T0B0C 6399:248 JLINK_ReadMemEx(0x0800F7D8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F7D8) - Data: 18 12 00 20 10 B5 04 46 40 23 0A 22 21 46 02 48 ... returns 0x3C (0000ms, 1895ms total)
T0B0C 6399:248 JLINK_ReadMemEx(0x0800F7D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F7D8) - Data: 18 12 returns 0x02 (0000ms, 1895ms total)
T0B0C 6399:248 JLINK_ReadMemEx(0x0800F7DC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F7DC) - Data: 10 B5 04 46 40 23 0A 22 21 46 02 48 01 F0 CC FC ... returns 0x3C (0000ms, 1895ms total)
T0B0C 6399:248 JLINK_ReadMemEx(0x0800F7DC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F7DC) - Data: 10 B5 returns 0x02 (0000ms, 1895ms total)
T0B0C 6399:248 JLINK_ReadMemEx(0x0800F7DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F7DE) - Data: 04 46 returns 0x02 (0000ms, 1895ms total)
T0B0C 6399:248 JLINK_ReadMemEx(0x0800F7DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F7DE) - Data: 04 46 returns 0x02 (0000ms, 1895ms total)
T0B0C 6399:248 JLINK_ReadMemEx(0x0800F7E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F7E0) - Data: 40 23 0A 22 21 46 02 48 01 F0 CC FC 10 BD 00 00 ... returns 0x3C (0000ms, 1895ms total)
T0B0C 6399:248 JLINK_ReadMemEx(0x0800F7E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F7E0) - Data: 40 23 returns 0x02 (0000ms, 1895ms total)
T0B0C 6399:248 JLINK_ReadMemEx(0x0800F7E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F7E0) - Data: 40 23 0A 22 21 46 02 48 01 F0 CC FC 10 BD 00 00 ... returns 0x3C (0000ms, 1895ms total)
T0B0C 6399:248 JLINK_ReadMemEx(0x0800F7E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F7E0) - Data: 40 23 returns 0x02 (0000ms, 1895ms total)
T0B0C 6399:248 JLINK_ReadMemEx(0x0800F7E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F7E2) - Data: 0A 22 returns 0x02 (0000ms, 1895ms total)
T0B0C 6399:248 JLINK_ReadMemEx(0x0800F7E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F7E2) - Data: 0A 22 returns 0x02 (0000ms, 1895ms total)
T0B0C 6399:248 JLINK_ReadMemEx(0x0800F7E4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F7E4) - Data: 21 46 02 48 01 F0 CC FC 10 BD 00 00 18 12 00 20 ... returns 0x3C (0000ms, 1895ms total)
T0B0C 6399:248 JLINK_ReadMemEx(0x0800F7E4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F7E4) - Data: 21 46 returns 0x02 (0000ms, 1895ms total)
T0B0C 6399:248 JLINK_ReadMemEx(0x0800F7E4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F7E4) - Data: 21 46 02 48 01 F0 CC FC 10 BD 00 00 18 12 00 20 ... returns 0x3C (0000ms, 1895ms total)
T0B0C 6399:248 JLINK_ReadMemEx(0x0800F7E4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F7E4) - Data: 21 46 returns 0x02 (0000ms, 1895ms total)
T0B0C 6399:248 JLINK_ReadMemEx(0x0800F7E6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F7E6) - Data: 02 48 returns 0x02 (0000ms, 1895ms total)
T0B0C 6399:248 JLINK_ReadMemEx(0x0800F7E6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F7E6) - Data: 02 48 returns 0x02 (0000ms, 1895ms total)
T0B0C 6399:248 JLINK_ReadMemEx(0x0800F7E8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F7E8) - Data: 01 F0 CC FC 10 BD 00 00 18 12 00 20 10 B5 41 23 ... returns 0x3C (0000ms, 1895ms total)
T0B0C 6399:248 JLINK_ReadMemEx(0x0800F7E8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F7E8) - Data: 01 F0 returns 0x02 (0000ms, 1895ms total)
T0B0C 6399:248 JLINK_ReadMemEx(0x0800F7E8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F7E8) - Data: 01 F0 CC FC 10 BD 00 00 18 12 00 20 10 B5 41 23 ... returns 0x3C (0000ms, 1895ms total)
T0B0C 6399:248 JLINK_ReadMemEx(0x0800F7E8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F7E8) - Data: 01 F0 returns 0x02 (0000ms, 1895ms total)
T0B0C 6399:248 JLINK_ReadMemEx(0x0800F7EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F7EA) - Data: CC FC returns 0x02 (0000ms, 1895ms total)
T0B0C 6399:248 JLINK_ReadMemEx(0x0800F7EC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F7EC) - Data: 10 BD 00 00 18 12 00 20 10 B5 41 23 0F 22 02 49 ... returns 0x3C (0000ms, 1895ms total)
T0B0C 6399:248 JLINK_ReadMemEx(0x0800F7EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F7EC) - Data: 10 BD returns 0x02 (0000ms, 1895ms total)
T0B0C 6399:248 JLINK_ReadMemEx(0x0800F7EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F7EE) - Data: 00 00 returns 0x02 (0000ms, 1895ms total)
T0B0C 6399:248 JLINK_ReadMemEx(0x0800F7F4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F7F4) - Data: 10 B5 41 23 0F 22 02 49 02 48 01 F0 EF FC 10 BD ... returns 0x3C (0000ms, 1895ms total)
T0B0C 6399:248 JLINK_ReadMemEx(0x0800F7F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F7F4) - Data: 10 B5 returns 0x02 (0000ms, 1895ms total)
T0B0C 6399:248 JLINK_ReadMemEx(0x0800F7F6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F7F6) - Data: 41 23 returns 0x02 (0000ms, 1895ms total)
T0B0C 6399:248 JLINK_ReadMemEx(0x0800F7F6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F7F6) - Data: 41 23 returns 0x02 (0000ms, 1895ms total)
T0B0C 6399:248 JLINK_ReadMemEx(0x0800F7F8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F7F8) - Data: 0F 22 02 49 02 48 01 F0 EF FC 10 BD DC 0C 00 20 ... returns 0x3C (0000ms, 1895ms total)
T0B0C 6399:248 JLINK_ReadMemEx(0x0800F7F8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F7F8) - Data: 0F 22 returns 0x02 (0000ms, 1895ms total)
T0B0C 6399:248 JLINK_ReadMemEx(0x0800F7F8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F7F8) - Data: 0F 22 02 49 02 48 01 F0 EF FC 10 BD DC 0C 00 20 ... returns 0x3C (0000ms, 1895ms total)
T0B0C 6399:248 JLINK_ReadMemEx(0x0800F7F8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F7F8) - Data: 0F 22 returns 0x02 (0000ms, 1895ms total)
T0B0C 6399:248 JLINK_ReadMemEx(0x0800F7FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F7FA) - Data: 02 49 returns 0x02 (0000ms, 1895ms total)
T0B0C 6399:248 JLINK_ReadMemEx(0x0800F7FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F7FA) - Data: 02 49 returns 0x02 (0000ms, 1895ms total)
T0B0C 6399:248 JLINK_ReadMemEx(0x0800F7FC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F7FC) - Data: 02 48 01 F0 EF FC 10 BD DC 0C 00 20 D0 0C 00 20 ... returns 0x3C (0000ms, 1895ms total)
T0B0C 6399:248 JLINK_ReadMemEx(0x0800F7FC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F7FC) - Data: 02 48 returns 0x02 (0000ms, 1895ms total)
T0B0C 6399:248 JLINK_ReadMemEx(0x0800F7FC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F7FC) - Data: 02 48 01 F0 EF FC 10 BD DC 0C 00 20 D0 0C 00 20 ... returns 0x3C (0000ms, 1895ms total)
T0B0C 6399:248 JLINK_ReadMemEx(0x0800F7FC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F7FC) - Data: 02 48 returns 0x02 (0000ms, 1895ms total)
T0B0C 6399:248 JLINK_ReadMemEx(0x0800F7FE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F7FE) - Data: 01 F0 returns 0x02 (0000ms, 1895ms total)
T0B0C 6399:248 JLINK_ReadMemEx(0x0800F7FE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F7FE) - Data: 01 F0 returns 0x02 (0000ms, 1895ms total)
T0B0C 6399:248 JLINK_ReadMemEx(0x0800F800, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F800) - Data: EF FC 10 BD DC 0C 00 20 D0 0C 00 20 10 B5 04 46 ... returns 0x3C (0000ms, 1895ms total)
T0B0C 6399:248 JLINK_ReadMemEx(0x0800F800, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F800) - Data: EF FC returns 0x02 (0000ms, 1895ms total)
T0B0C 6399:248 JLINK_ReadMemEx(0x0800F802, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F802) - Data: 10 BD returns 0x02 (0000ms, 1895ms total)
T0B0C 6399:248 JLINK_ReadMemEx(0x0800F804, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F804) - Data: DC 0C 00 20 D0 0C 00 20 10 B5 04 46 01 2C 04 D1 ... returns 0x3C (0000ms, 1895ms total)
T0B0C 6399:248 JLINK_ReadMemEx(0x0800F804, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F804) - Data: DC 0C returns 0x02 (0000ms, 1895ms total)
T0B0C 6399:248 JLINK_ReadMemEx(0x0800F80C, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0800F840) -- Updating C cache (64 bytes @ 0x0800F840) -- Read from C cache (60 bytes @ 0x0800F80C) - Data: 10 B5 04 46 01 2C 04 D1 04 21 08 48 FF F7 66 FA ... returns 0x3C (0002ms, 1897ms total)
T0B0C 6399:250 JLINK_ReadMemEx(0x0800F80C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F80C) - Data: 10 B5 returns 0x02 (0000ms, 1897ms total)
T0B0C 6399:250 JLINK_ReadMemEx(0x0800F80E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F80E) - Data: 04 46 returns 0x02 (0000ms, 1897ms total)
T0B0C 6399:250 JLINK_ReadMemEx(0x0800F80E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F80E) - Data: 04 46 returns 0x02 (0000ms, 1897ms total)
T0B0C 6399:250 JLINK_ReadMemEx(0x0800F810, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F810) - Data: 01 2C 04 D1 04 21 08 48 FF F7 66 FA 0A E0 02 2C ... returns 0x3C (0000ms, 1897ms total)
T0B0C 6399:250 JLINK_ReadMemEx(0x0800F810, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F810) - Data: 01 2C returns 0x02 (0000ms, 1897ms total)
T0B0C 6399:250 JLINK_ReadMemEx(0x0800F810, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F810) - Data: 01 2C 04 D1 04 21 08 48 FF F7 66 FA 0A E0 02 2C ... returns 0x3C (0000ms, 1897ms total)
T0B0C 6399:250 JLINK_ReadMemEx(0x0800F810, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F810) - Data: 01 2C returns 0x02 (0000ms, 1897ms total)
T0B0C 6399:250 JLINK_ReadMemEx(0x0800F812, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F812) - Data: 04 D1 returns 0x02 (0000ms, 1897ms total)
T0B0C 6399:250 JLINK_ReadMemEx(0x0800F812, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F812) - Data: 04 D1 returns 0x02 (0000ms, 1897ms total)
T0B0C 6399:250 JLINK_ReadMemEx(0x0800F814, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F814) - Data: 04 21 08 48 FF F7 66 FA 0A E0 02 2C 04 D1 04 21 ... returns 0x3C (0000ms, 1897ms total)
T0B0C 6399:250 JLINK_ReadMemEx(0x0800F814, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F814) - Data: 04 21 returns 0x02 (0000ms, 1897ms total)
T0B0C 6399:250 JLINK_ReadMemEx(0x0800F814, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F814) - Data: 04 21 08 48 FF F7 66 FA 0A E0 02 2C 04 D1 04 21 ... returns 0x3C (0000ms, 1897ms total)
T0B0C 6399:250 JLINK_ReadMemEx(0x0800F814, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F814) - Data: 04 21 returns 0x02 (0000ms, 1897ms total)
T0B0C 6399:250 JLINK_ReadMemEx(0x0800F816, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F816) - Data: 08 48 returns 0x02 (0000ms, 1897ms total)
T0B0C 6399:250 JLINK_ReadMemEx(0x0800F816, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F816) - Data: 08 48 returns 0x02 (0000ms, 1897ms total)
T0B0C 6399:250 JLINK_ReadMemEx(0x0800F818, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F818) - Data: FF F7 66 FA 0A E0 02 2C 04 D1 04 21 04 48 F9 F7 ... returns 0x3C (0000ms, 1897ms total)
T0B0C 6399:250 JLINK_ReadMemEx(0x0800F818, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F818) - Data: FF F7 returns 0x02 (0000ms, 1897ms total)
T0B0C 6399:250 JLINK_ReadMemEx(0x0800F818, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F818) - Data: FF F7 66 FA 0A E0 02 2C 04 D1 04 21 04 48 F9 F7 ... returns 0x3C (0000ms, 1897ms total)
T0B0C 6399:250 JLINK_ReadMemEx(0x0800F818, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F818) - Data: FF F7 returns 0x02 (0000ms, 1897ms total)
T0B0C 6399:250 JLINK_ReadMemEx(0x0800F81A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F81A) - Data: 66 FA returns 0x02 (0000ms, 1897ms total)
T0B0C 6399:250 JLINK_ReadMemEx(0x0800F81C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F81C) - Data: 0A E0 02 2C 04 D1 04 21 04 48 F9 F7 78 FD 03 E0 ... returns 0x3C (0000ms, 1897ms total)
T0B0C 6399:250 JLINK_ReadMemEx(0x0800F81C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F81C) - Data: 0A E0 returns 0x02 (0000ms, 1897ms total)
T0B0C 6399:250 JLINK_ReadMemEx(0x0800F81E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F81E) - Data: 02 2C returns 0x02 (0000ms, 1897ms total)
T0B0C 6399:250 JLINK_ReadMemEx(0x0800F81E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F81E) - Data: 02 2C returns 0x02 (0000ms, 1897ms total)
T0B0C 6399:250 JLINK_ReadMemEx(0x0800F820, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F820) - Data: 04 D1 04 21 04 48 F9 F7 78 FD 03 E0 04 21 02 48 ... returns 0x3C (0000ms, 1897ms total)
T0B0C 6399:250 JLINK_ReadMemEx(0x0800F820, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F820) - Data: 04 D1 returns 0x02 (0000ms, 1897ms total)
T0B0C 6399:250 JLINK_ReadMemEx(0x0800F820, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F820) - Data: 04 D1 04 21 04 48 F9 F7 78 FD 03 E0 04 21 02 48 ... returns 0x3C (0000ms, 1897ms total)
T0B0C 6399:250 JLINK_ReadMemEx(0x0800F820, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F820) - Data: 04 D1 returns 0x02 (0000ms, 1897ms total)
T0B0C 6399:250 JLINK_ReadMemEx(0x0800F822, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F822) - Data: 04 21 returns 0x02 (0000ms, 1897ms total)
T0B0C 6399:250 JLINK_ReadMemEx(0x0800F822, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F822) - Data: 04 21 returns 0x02 (0000ms, 1897ms total)
T0B0C 6399:250 JLINK_ReadMemEx(0x0800F824, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F824) - Data: 04 48 F9 F7 78 FD 03 E0 04 21 02 48 FF F7 5C FA ... returns 0x3C (0000ms, 1897ms total)
T0B0C 6399:250 JLINK_ReadMemEx(0x0800F824, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F824) - Data: 04 48 returns 0x02 (0000ms, 1897ms total)
T0B0C 6399:250 JLINK_ReadMemEx(0x0800F824, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F824) - Data: 04 48 F9 F7 78 FD 03 E0 04 21 02 48 FF F7 5C FA ... returns 0x3C (0000ms, 1897ms total)
T0B0C 6399:250 JLINK_ReadMemEx(0x0800F824, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F824) - Data: 04 48 returns 0x02 (0000ms, 1897ms total)
T0B0C 6399:250 JLINK_ReadMemEx(0x0800F826, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F826) - Data: F9 F7 returns 0x02 (0000ms, 1897ms total)
T0B0C 6399:250 JLINK_ReadMemEx(0x0800F826, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F826) - Data: F9 F7 returns 0x02 (0000ms, 1897ms total)
T0B0C 6399:250 JLINK_ReadMemEx(0x0800F828, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F828) - Data: 78 FD 03 E0 04 21 02 48 FF F7 5C FA 10 BD 00 00 ... returns 0x3C (0000ms, 1897ms total)
T0B0C 6399:250 JLINK_ReadMemEx(0x0800F828, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F828) - Data: 78 FD returns 0x02 (0000ms, 1897ms total)
T0B0C 6399:250 JLINK_ReadMemEx(0x0800F82A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F82A) - Data: 03 E0 returns 0x02 (0000ms, 1897ms total)
T0B0C 6399:250 JLINK_ReadMemEx(0x0800F82C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F82C) - Data: 04 21 02 48 FF F7 5C FA 10 BD 00 00 00 08 01 40 ... returns 0x3C (0000ms, 1897ms total)
T0B0C 6399:250 JLINK_ReadMemEx(0x0800F82C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F82C) - Data: 04 21 returns 0x02 (0000ms, 1897ms total)
T0B0C 6399:250 JLINK_ReadMemEx(0x0800F82C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F82C) - Data: 04 21 02 48 FF F7 5C FA 10 BD 00 00 00 08 01 40 ... returns 0x3C (0000ms, 1897ms total)
T0B0C 6399:250 JLINK_ReadMemEx(0x0800F82C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F82C) - Data: 04 21 returns 0x02 (0000ms, 1897ms total)
T0B0C 6399:251 JLINK_ReadMemEx(0x0800F82E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F82E) - Data: 02 48 returns 0x02 (0000ms, 1897ms total)
T0B0C 6399:251 JLINK_ReadMemEx(0x0800F82E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F82E) - Data: 02 48 returns 0x02 (0000ms, 1897ms total)
T0B0C 6399:251 JLINK_ReadMemEx(0x0800F830, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F830) - Data: FF F7 5C FA 10 BD 00 00 00 08 01 40 10 B5 04 46 ... returns 0x3C (0000ms, 1897ms total)
T0B0C 6399:251 JLINK_ReadMemEx(0x0800F830, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F830) - Data: FF F7 returns 0x02 (0000ms, 1897ms total)
T0B0C 6399:251 JLINK_ReadMemEx(0x0800F830, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F830) - Data: FF F7 5C FA 10 BD 00 00 00 08 01 40 10 B5 04 46 ... returns 0x3C (0000ms, 1897ms total)
T0B0C 6399:251 JLINK_ReadMemEx(0x0800F830, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F830) - Data: FF F7 returns 0x02 (0000ms, 1897ms total)
T0B0C 6399:251 JLINK_ReadMemEx(0x0800F832, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F832) - Data: 5C FA returns 0x02 (0000ms, 1897ms total)
T0B0C 6399:251 JLINK_ReadMemEx(0x0800F834, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F834) - Data: 10 BD 00 00 00 08 01 40 10 B5 04 46 01 2C 04 D1 ... returns 0x3C (0000ms, 1897ms total)
T0B0C 6399:251 JLINK_ReadMemEx(0x0800F834, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F834) - Data: 10 BD returns 0x02 (0000ms, 1897ms total)
T0B0C 6399:251 JLINK_ReadMemEx(0x0800F836, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F836) - Data: 00 00 returns 0x02 (0000ms, 1897ms total)
T0B0C 6399:251 JLINK_ReadMemEx(0x0800F83C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F83C) - Data: 10 B5 04 46 01 2C 04 D1 02 21 08 48 FF F7 4E FA ... returns 0x3C (0000ms, 1897ms total)
T0B0C 6399:251 JLINK_ReadMemEx(0x0800F83C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F83C) - Data: 10 B5 returns 0x02 (0000ms, 1897ms total)
T0B0C 6399:251 JLINK_ReadMemEx(0x0800F83E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F83E) - Data: 04 46 returns 0x02 (0000ms, 1897ms total)
T0B0C 6399:251 JLINK_ReadMemEx(0x0800F83E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F83E) - Data: 04 46 returns 0x02 (0000ms, 1897ms total)
T0B0C 6399:251 JLINK_ReadMemEx(0x0800F840, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F840) - Data: 01 2C 04 D1 02 21 08 48 FF F7 4E FA 0A E0 02 2C ... returns 0x3C (0000ms, 1897ms total)
T0B0C 6399:251 JLINK_ReadMemEx(0x0800F840, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F840) - Data: 01 2C returns 0x02 (0000ms, 1897ms total)
T0B0C 6399:251 JLINK_ReadMemEx(0x0800F840, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F840) - Data: 01 2C 04 D1 02 21 08 48 FF F7 4E FA 0A E0 02 2C ... returns 0x3C (0000ms, 1897ms total)
T0B0C 6399:251 JLINK_ReadMemEx(0x0800F840, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F840) - Data: 01 2C returns 0x02 (0000ms, 1897ms total)
T0B0C 6399:251 JLINK_ReadMemEx(0x0800F842, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F842) - Data: 04 D1 returns 0x02 (0000ms, 1897ms total)
T0B0C 6399:251 JLINK_ReadMemEx(0x0800F842, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F842) - Data: 04 D1 returns 0x02 (0000ms, 1897ms total)
T0B0C 6399:251 JLINK_ReadMemEx(0x0800F844, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F844) - Data: 02 21 08 48 FF F7 4E FA 0A E0 02 2C 04 D1 02 21 ... returns 0x3C (0000ms, 1897ms total)
T0B0C 6399:251 JLINK_ReadMemEx(0x0800F844, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F844) - Data: 02 21 returns 0x02 (0000ms, 1897ms total)
T0B0C 6399:251 JLINK_ReadMemEx(0x0800F844, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F844) - Data: 02 21 08 48 FF F7 4E FA 0A E0 02 2C 04 D1 02 21 ... returns 0x3C (0000ms, 1897ms total)
T0B0C 6399:251 JLINK_ReadMemEx(0x0800F844, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F844) - Data: 02 21 returns 0x02 (0000ms, 1897ms total)
T0B0C 6399:251 JLINK_ReadMemEx(0x0800F846, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F846) - Data: 08 48 returns 0x02 (0000ms, 1897ms total)
T0B0C 6399:251 JLINK_ReadMemEx(0x0800F846, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F846) - Data: 08 48 returns 0x02 (0000ms, 1897ms total)
T0B0C 6399:251 JLINK_ReadMemEx(0x0800F848, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0800F880) -- Updating C cache (64 bytes @ 0x0800F880) -- Read from C cache (60 bytes @ 0x0800F848) - Data: FF F7 4E FA 0A E0 02 2C 04 D1 02 21 04 48 F9 F7 ... returns 0x3C (0001ms, 1898ms total)
T0B0C 6399:252 JLINK_ReadMemEx(0x0800F848, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F848) - Data: FF F7 returns 0x02 (0000ms, 1898ms total)
T0B0C 6399:252 JLINK_ReadMemEx(0x0800F848, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F848) - Data: FF F7 4E FA 0A E0 02 2C 04 D1 02 21 04 48 F9 F7 ... returns 0x3C (0000ms, 1898ms total)
T0B0C 6399:252 JLINK_ReadMemEx(0x0800F848, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F848) - Data: FF F7 returns 0x02 (0000ms, 1898ms total)
T0B0C 6399:252 JLINK_ReadMemEx(0x0800F84A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F84A) - Data: 4E FA returns 0x02 (0000ms, 1898ms total)
T0B0C 6399:252 JLINK_ReadMemEx(0x0800F84C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F84C) - Data: 0A E0 02 2C 04 D1 02 21 04 48 F9 F7 60 FD 03 E0 ... returns 0x3C (0000ms, 1898ms total)
T0B0C 6399:252 JLINK_ReadMemEx(0x0800F84C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F84C) - Data: 0A E0 returns 0x02 (0000ms, 1898ms total)
T0B0C 6399:252 JLINK_ReadMemEx(0x0800F84E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F84E) - Data: 02 2C returns 0x02 (0000ms, 1898ms total)
T0B0C 6399:252 JLINK_ReadMemEx(0x0800F84E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F84E) - Data: 02 2C returns 0x02 (0001ms, 1899ms total)
T0B0C 6399:253 JLINK_ReadMemEx(0x0800F850, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F850) - Data: 04 D1 02 21 04 48 F9 F7 60 FD 03 E0 02 21 02 48 ... returns 0x3C (0000ms, 1899ms total)
T0B0C 6399:253 JLINK_ReadMemEx(0x0800F850, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F850) - Data: 04 D1 returns 0x02 (0000ms, 1899ms total)
T0B0C 6399:253 JLINK_ReadMemEx(0x0800F850, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F850) - Data: 04 D1 02 21 04 48 F9 F7 60 FD 03 E0 02 21 02 48 ... returns 0x3C (0000ms, 1899ms total)
T0B0C 6399:253 JLINK_ReadMemEx(0x0800F850, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F850) - Data: 04 D1 returns 0x02 (0000ms, 1899ms total)
T0B0C 6399:253 JLINK_ReadMemEx(0x0800F852, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F852) - Data: 02 21 returns 0x02 (0000ms, 1899ms total)
T0B0C 6399:253 JLINK_ReadMemEx(0x0800F852, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F852) - Data: 02 21 returns 0x02 (0000ms, 1899ms total)
T0B0C 6399:253 JLINK_ReadMemEx(0x0800F854, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F854) - Data: 04 48 F9 F7 60 FD 03 E0 02 21 02 48 FF F7 44 FA ... returns 0x3C (0000ms, 1899ms total)
T0B0C 6399:253 JLINK_ReadMemEx(0x0800F854, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F854) - Data: 04 48 returns 0x02 (0000ms, 1899ms total)
T0B0C 6399:253 JLINK_ReadMemEx(0x0800F854, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F854) - Data: 04 48 F9 F7 60 FD 03 E0 02 21 02 48 FF F7 44 FA ... returns 0x3C (0000ms, 1899ms total)
T0B0C 6399:253 JLINK_ReadMemEx(0x0800F854, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F854) - Data: 04 48 returns 0x02 (0000ms, 1899ms total)
T0B0C 6399:253 JLINK_ReadMemEx(0x0800F856, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F856) - Data: F9 F7 returns 0x02 (0000ms, 1899ms total)
T0B0C 6399:253 JLINK_ReadMemEx(0x0800F856, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F856) - Data: F9 F7 returns 0x02 (0000ms, 1899ms total)
T0B0C 6399:253 JLINK_ReadMemEx(0x0800F858, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F858) - Data: 60 FD 03 E0 02 21 02 48 FF F7 44 FA 10 BD 00 00 ... returns 0x3C (0000ms, 1899ms total)
T0B0C 6399:253 JLINK_ReadMemEx(0x0800F858, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F858) - Data: 60 FD returns 0x02 (0000ms, 1899ms total)
T0B0C 6399:253 JLINK_ReadMemEx(0x0800F85A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F85A) - Data: 03 E0 returns 0x02 (0000ms, 1899ms total)
T0B0C 6399:253 JLINK_ReadMemEx(0x0800F85C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F85C) - Data: 02 21 02 48 FF F7 44 FA 10 BD 00 00 00 08 01 40 ... returns 0x3C (0000ms, 1899ms total)
T0B0C 6399:253 JLINK_ReadMemEx(0x0800F85C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F85C) - Data: 02 21 returns 0x02 (0000ms, 1899ms total)
T0B0C 6399:253 JLINK_ReadMemEx(0x0800F85C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F85C) - Data: 02 21 02 48 FF F7 44 FA 10 BD 00 00 00 08 01 40 ... returns 0x3C (0000ms, 1899ms total)
T0B0C 6399:253 JLINK_ReadMemEx(0x0800F85C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F85C) - Data: 02 21 returns 0x02 (0000ms, 1899ms total)
T0B0C 6399:253 JLINK_ReadMemEx(0x0800F85E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F85E) - Data: 02 48 returns 0x02 (0000ms, 1899ms total)
T0B0C 6399:253 JLINK_ReadMemEx(0x0800F85E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F85E) - Data: 02 48 returns 0x02 (0000ms, 1899ms total)
T0B0C 6399:253 JLINK_ReadMemEx(0x0800F860, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F860) - Data: FF F7 44 FA 10 BD 00 00 00 08 01 40 70 47 10 B5 ... returns 0x3C (0000ms, 1899ms total)
T0B0C 6399:253 JLINK_ReadMemEx(0x0800F860, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F860) - Data: FF F7 returns 0x02 (0000ms, 1899ms total)
T0B0C 6399:253 JLINK_ReadMemEx(0x0800F860, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F860) - Data: FF F7 44 FA 10 BD 00 00 00 08 01 40 70 47 10 B5 ... returns 0x3C (0000ms, 1899ms total)
T0B0C 6399:253 JLINK_ReadMemEx(0x0800F860, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F860) - Data: FF F7 returns 0x02 (0000ms, 1899ms total)
T0B0C 6399:253 JLINK_ReadMemEx(0x0800F862, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F862) - Data: 44 FA returns 0x02 (0000ms, 1899ms total)
T0B0C 6399:253 JLINK_ReadMemEx(0x0800F864, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F864) - Data: 10 BD 00 00 00 08 01 40 70 47 10 B5 04 46 00 F0 ... returns 0x3C (0000ms, 1899ms total)
T0B0C 6399:253 JLINK_ReadMemEx(0x0800F864, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F864) - Data: 10 BD returns 0x02 (0000ms, 1899ms total)
T0B0C 6399:253 JLINK_ReadMemEx(0x0800F866, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F866) - Data: 00 00 returns 0x02 (0000ms, 1899ms total)
T0B0C 6399:253 JLINK_ReadMemEx(0x0800F86C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F86C) - Data: 70 47 10 B5 04 46 00 F0 0D F8 40 B1 20 46 00 F0 ... returns 0x3C (0000ms, 1899ms total)
T0B0C 6399:253 JLINK_ReadMemEx(0x0800F86C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F86C) - Data: 70 47 returns 0x02 (0000ms, 1899ms total)
T0B0C 6399:253 JLINK_ReadMemEx(0x0800F86E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F86E) - Data: 10 B5 returns 0x02 (0000ms, 1899ms total)
T0B0C 6399:253 JLINK_ReadMemEx(0x0800F86E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F86E) - Data: 10 B5 returns 0x02 (0000ms, 1899ms total)
T0B0C 6399:253 JLINK_ReadMemEx(0x0800F870, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F870) - Data: 04 46 00 F0 0D F8 40 B1 20 46 00 F0 1B F8 00 28 ... returns 0x3C (0000ms, 1899ms total)
T0B0C 6399:253 JLINK_ReadMemEx(0x0800F870, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F870) - Data: 04 46 returns 0x02 (0000ms, 1899ms total)
T0B0C 6399:253 JLINK_ReadMemEx(0x0800F870, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F870) - Data: 04 46 00 F0 0D F8 40 B1 20 46 00 F0 1B F8 00 28 ... returns 0x3C (0000ms, 1899ms total)
T0B0C 6399:253 JLINK_ReadMemEx(0x0800F870, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F870) - Data: 04 46 returns 0x02 (0000ms, 1899ms total)
T0B0C 6399:253 JLINK_ReadMemEx(0x0800F872, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F872) - Data: 00 F0 returns 0x02 (0000ms, 1899ms total)
T0B0C 6399:253 JLINK_ReadMemEx(0x0800F872, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F872) - Data: 00 F0 returns 0x02 (0000ms, 1899ms total)
T0B0C 6399:253 JLINK_ReadMemEx(0x0800F874, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F874) - Data: 0D F8 40 B1 20 46 00 F0 1B F8 00 28 01 DA 00 20 ... returns 0x3C (0000ms, 1899ms total)
T0B0C 6399:253 JLINK_ReadMemEx(0x0800F874, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F874) - Data: 0D F8 returns 0x02 (0000ms, 1899ms total)
T0B0C 6399:253 JLINK_ReadMemEx(0x0800F876, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F876) - Data: 40 B1 returns 0x02 (0000ms, 1899ms total)
T0B0C 6399:253 JLINK_ReadMemEx(0x0800F878, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F878) - Data: 20 46 00 F0 1B F8 00 28 01 DA 00 20 10 BD 01 20 ... returns 0x3C (0000ms, 1899ms total)
T0B0C 6399:253 JLINK_ReadMemEx(0x0800F878, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F878) - Data: 20 46 returns 0x02 (0000ms, 1899ms total)
T0B0C 6399:253 JLINK_ReadMemEx(0x0800F878, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F878) - Data: 20 46 00 F0 1B F8 00 28 01 DA 00 20 10 BD 01 20 ... returns 0x3C (0001ms, 1900ms total)
T0B0C 6399:254 JLINK_ReadMemEx(0x0800F878, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F878) - Data: 20 46 returns 0x02 (0000ms, 1900ms total)
T0B0C 6399:254 JLINK_ReadMemEx(0x0800F87A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F87A) - Data: 00 F0 returns 0x02 (0000ms, 1900ms total)
T0B0C 6399:254 JLINK_ReadMemEx(0x0800F87A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F87A) - Data: 00 F0 returns 0x02 (0000ms, 1900ms total)
T0B0C 6399:254 JLINK_ReadMemEx(0x0800F87C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F87C) - Data: 1B F8 00 28 01 DA 00 20 10 BD 01 20 FC E7 00 20 ... returns 0x3C (0000ms, 1900ms total)
T0B0C 6399:254 JLINK_ReadMemEx(0x0800F87C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F87C) - Data: 1B F8 returns 0x02 (0000ms, 1900ms total)
T0B0C 6399:254 JLINK_ReadMemEx(0x0800F87E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F87E) - Data: 00 28 returns 0x02 (0000ms, 1900ms total)
T0B0C 6399:254 JLINK_ReadMemEx(0x0800F880, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F880) - Data: 01 DA 00 20 10 BD 01 20 FC E7 00 20 FA E7 00 00 ... returns 0x3C (0000ms, 1900ms total)
T0B0C 6399:254 JLINK_ReadMemEx(0x0800F880, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F880) - Data: 01 DA returns 0x02 (0000ms, 1900ms total)
T0B0C 6399:254 JLINK_ReadMemEx(0x0800F880, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F880) - Data: 01 DA 00 20 10 BD 01 20 FC E7 00 20 FA E7 00 00 ... returns 0x3C (0000ms, 1900ms total)
T0B0C 6399:254 JLINK_ReadMemEx(0x0800F880, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F880) - Data: 01 DA returns 0x02 (0000ms, 1900ms total)
T0B0C 6399:254 JLINK_ReadMemEx(0x0800F882, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F882) - Data: 00 20 returns 0x02 (0000ms, 1900ms total)
T0B0C 6399:254 JLINK_ReadMemEx(0x0800F882, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F882) - Data: 00 20 returns 0x02 (0000ms, 1900ms total)
T0B0C 6399:254 JLINK_ReadMemEx(0x0800F884, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F884) - Data: 10 BD 01 20 FC E7 00 20 FA E7 00 00 10 B5 02 48 ... returns 0x3C (0000ms, 1900ms total)
T0B0C 6399:254 JLINK_ReadMemEx(0x0800F884, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F884) - Data: 10 BD returns 0x02 (0000ms, 1900ms total)
T0B0C 6399:254 JLINK_ReadMemEx(0x0800F884, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F884) - Data: 10 BD 01 20 FC E7 00 20 FA E7 00 00 10 B5 02 48 ... returns 0x3C (0000ms, 1900ms total)
T0B0C 6399:254 JLINK_ReadMemEx(0x0800F884, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F884) - Data: 10 BD returns 0x02 (0000ms, 1900ms total)
T0B0C 6399:254 JLINK_ReadMemEx(0x0800F886, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F886) - Data: 01 20 returns 0x02 (0000ms, 1900ms total)
T0B0C 6399:254 JLINK_ReadMemEx(0x0800F886, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F886) - Data: 01 20 returns 0x02 (0000ms, 1900ms total)
T0B0C 6399:254 JLINK_ReadMemEx(0x0800F888, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0800F8C0) -- Updating C cache (64 bytes @ 0x0800F8C0) -- Read from C cache (60 bytes @ 0x0800F888) - Data: FC E7 00 20 FA E7 00 00 10 B5 02 48 FF F7 0A F8 ... returns 0x3C (0001ms, 1901ms total)
T0B0C 6399:255 JLINK_ReadMemEx(0x0800F888, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F888) - Data: FC E7 returns 0x02 (0000ms, 1901ms total)
T0B0C 6399:255 JLINK_ReadMemEx(0x0800F888, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F888) - Data: FC E7 00 20 FA E7 00 00 10 B5 02 48 FF F7 0A F8 ... returns 0x3C (0000ms, 1901ms total)
T0B0C 6399:255 JLINK_ReadMemEx(0x0800F888, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F888) - Data: FC E7 returns 0x02 (0000ms, 1901ms total)
T0B0C 6399:255 JLINK_ReadMemEx(0x0800F88A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F88A) - Data: 00 20 returns 0x02 (0000ms, 1901ms total)
T0B0C 6399:255 JLINK_ReadMemEx(0x0800F88A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F88A) - Data: 00 20 returns 0x02 (0000ms, 1901ms total)
T0B0C 6399:255 JLINK_ReadMemEx(0x0800F88C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F88C) - Data: FA E7 00 00 10 B5 02 48 FF F7 0A F8 10 BD 00 00 ... returns 0x3C (0000ms, 1901ms total)
T0B0C 6399:255 JLINK_ReadMemEx(0x0800F88C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F88C) - Data: FA E7 returns 0x02 (0000ms, 1901ms total)
T0B0C 6399:255 JLINK_ReadMemEx(0x0800F88C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F88C) - Data: FA E7 00 00 10 B5 02 48 FF F7 0A F8 10 BD 00 00 ... returns 0x3C (0000ms, 1901ms total)
T0B0C 6399:255 JLINK_ReadMemEx(0x0800F88C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F88C) - Data: FA E7 returns 0x02 (0000ms, 1901ms total)
T0B0C 6399:255 JLINK_ReadMemEx(0x0800F88E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F88E) - Data: 00 00 returns 0x02 (0000ms, 1901ms total)
T0B0C 6399:255 JLINK_ReadMemEx(0x0800F88E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F88E) - Data: 00 00 returns 0x02 (0000ms, 1901ms total)
T0B0C 6399:255 JLINK_ReadMemEx(0x0800F890, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F890) - Data: 10 B5 02 48 FF F7 0A F8 10 BD 00 00 FC 03 00 20 ... returns 0x3C (0000ms, 1901ms total)
T0B0C 6399:255 JLINK_ReadMemEx(0x0800F890, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F890) - Data: 10 B5 returns 0x02 (0000ms, 1901ms total)
T0B0C 6399:255 JLINK_ReadMemEx(0x0800F890, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F890) - Data: 10 B5 02 48 FF F7 0A F8 10 BD 00 00 FC 03 00 20 ... returns 0x3C (0000ms, 1901ms total)
T0B0C 6399:255 JLINK_ReadMemEx(0x0800F890, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F890) - Data: 10 B5 returns 0x02 (0000ms, 1901ms total)
T0B0C 6399:255 JLINK_ReadMemEx(0x0800F892, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F892) - Data: 02 48 returns 0x02 (0001ms, 1902ms total)
T0B0C 6399:256 JLINK_ReadMemEx(0x0800F892, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F892) - Data: 02 48 returns 0x02 (0000ms, 1902ms total)
T0B0C 6399:256 JLINK_ReadMemEx(0x0800F894, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F894) - Data: FF F7 0A F8 10 BD 00 00 FC 03 00 20 10 B5 04 46 ... returns 0x3C (0000ms, 1902ms total)
T0B0C 6399:256 JLINK_ReadMemEx(0x0800F894, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F894) - Data: FF F7 returns 0x02 (0000ms, 1902ms total)
T0B0C 6399:256 JLINK_ReadMemEx(0x0800F894, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F894) - Data: FF F7 0A F8 10 BD 00 00 FC 03 00 20 10 B5 04 46 ... returns 0x3C (0000ms, 1902ms total)
T0B0C 6399:256 JLINK_ReadMemEx(0x0800F894, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F894) - Data: FF F7 returns 0x02 (0000ms, 1902ms total)
T0B0C 6399:256 JLINK_ReadMemEx(0x0800F896, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F896) - Data: 0A F8 returns 0x02 (0000ms, 1902ms total)
T0B0C 6399:256 JLINK_ReadMemEx(0x0800F898, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F898) - Data: 10 BD 00 00 FC 03 00 20 10 B5 04 46 21 46 02 48 ... returns 0x3C (0000ms, 1902ms total)
T0B0C 6399:256 JLINK_ReadMemEx(0x0800F898, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F898) - Data: 10 BD returns 0x02 (0000ms, 1902ms total)
T0B0C 6399:256 JLINK_ReadMemEx(0x0800F89A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F89A) - Data: 00 00 returns 0x02 (0000ms, 1902ms total)
T0B0C 6399:256 JLINK_ReadMemEx(0x0800F8A0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F8A0) - Data: 10 B5 04 46 21 46 02 48 FF F7 03 F8 10 BD 00 00 ... returns 0x3C (0000ms, 1902ms total)
T0B0C 6399:256 JLINK_ReadMemEx(0x0800F8A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F8A0) - Data: 10 B5 returns 0x02 (0000ms, 1902ms total)
T0B0C 6399:256 JLINK_ReadMemEx(0x0800F8A2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F8A2) - Data: 04 46 returns 0x02 (0000ms, 1902ms total)
T0B0C 6399:256 JLINK_ReadMemEx(0x0800F8A2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F8A2) - Data: 04 46 returns 0x02 (0000ms, 1902ms total)
T0B0C 6399:256 JLINK_ReadMemEx(0x0800F8A4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F8A4) - Data: 21 46 02 48 FF F7 03 F8 10 BD 00 00 FC 03 00 20 ... returns 0x3C (0000ms, 1902ms total)
T0B0C 6399:256 JLINK_ReadMemEx(0x0800F8A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F8A4) - Data: 21 46 returns 0x02 (0000ms, 1902ms total)
T0B0C 6399:256 JLINK_ReadMemEx(0x0800F8A4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F8A4) - Data: 21 46 02 48 FF F7 03 F8 10 BD 00 00 FC 03 00 20 ... returns 0x3C (0000ms, 1902ms total)
T0B0C 6399:256 JLINK_ReadMemEx(0x0800F8A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F8A4) - Data: 21 46 returns 0x02 (0000ms, 1902ms total)
T0B0C 6399:256 JLINK_ReadMemEx(0x0800F8A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F8A6) - Data: 02 48 returns 0x02 (0000ms, 1902ms total)
T0B0C 6399:256 JLINK_ReadMemEx(0x0800F8A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F8A6) - Data: 02 48 returns 0x02 (0000ms, 1902ms total)
T0B0C 6399:256 JLINK_ReadMemEx(0x0800F8A8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F8A8) - Data: FF F7 03 F8 10 BD 00 00 FC 03 00 20 10 B5 04 46 ... returns 0x3C (0000ms, 1902ms total)
T0B0C 6399:256 JLINK_ReadMemEx(0x0800F8A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F8A8) - Data: FF F7 returns 0x02 (0000ms, 1902ms total)
T0B0C 6399:256 JLINK_ReadMemEx(0x0800F8A8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F8A8) - Data: FF F7 03 F8 10 BD 00 00 FC 03 00 20 10 B5 04 46 ... returns 0x3C (0000ms, 1902ms total)
T0B0C 6399:256 JLINK_ReadMemEx(0x0800F8A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F8A8) - Data: FF F7 returns 0x02 (0000ms, 1902ms total)
T0B0C 6399:256 JLINK_ReadMemEx(0x0800F8AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F8AA) - Data: 03 F8 returns 0x02 (0000ms, 1902ms total)
T0B0C 6399:256 JLINK_ReadMemEx(0x0800F8AC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F8AC) - Data: 10 BD 00 00 FC 03 00 20 10 B5 04 46 21 46 02 48 ... returns 0x3C (0000ms, 1902ms total)
T0B0C 6399:256 JLINK_ReadMemEx(0x0800F8AC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F8AC) - Data: 10 BD returns 0x02 (0000ms, 1902ms total)
T0B0C 6399:256 JLINK_ReadMemEx(0x0800F8AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F8AE) - Data: 00 00 returns 0x02 (0000ms, 1902ms total)
T0B0C 6399:256 JLINK_ReadMemEx(0x0800F8B4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F8B4) - Data: 10 B5 04 46 21 46 02 48 FF F7 2C F8 10 BD 00 00 ... returns 0x3C (0000ms, 1902ms total)
T0B0C 6399:256 JLINK_ReadMemEx(0x0800F8B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F8B4) - Data: 10 B5 returns 0x02 (0000ms, 1902ms total)
T0B0C 6399:256 JLINK_ReadMemEx(0x0800F8B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F8B6) - Data: 04 46 returns 0x02 (0000ms, 1902ms total)
T0B0C 6399:256 JLINK_ReadMemEx(0x0800F8B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F8B6) - Data: 04 46 returns 0x02 (0000ms, 1902ms total)
T0B0C 6399:256 JLINK_ReadMemEx(0x0800F8B8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F8B8) - Data: 21 46 02 48 FF F7 2C F8 10 BD 00 00 FC 03 00 20 ... returns 0x3C (0000ms, 1902ms total)
T0B0C 6399:256 JLINK_ReadMemEx(0x0800F8B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F8B8) - Data: 21 46 returns 0x02 (0000ms, 1902ms total)
T0B0C 6399:256 JLINK_ReadMemEx(0x0800F8B8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F8B8) - Data: 21 46 02 48 FF F7 2C F8 10 BD 00 00 FC 03 00 20 ... returns 0x3C (0000ms, 1902ms total)
T0B0C 6399:256 JLINK_ReadMemEx(0x0800F8B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F8B8) - Data: 21 46 returns 0x02 (0000ms, 1902ms total)
T0B0C 6399:256 JLINK_ReadMemEx(0x0800F8BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F8BA) - Data: 02 48 returns 0x02 (0000ms, 1902ms total)
T0B0C 6399:256 JLINK_ReadMemEx(0x0800F8BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F8BA) - Data: 02 48 returns 0x02 (0000ms, 1902ms total)
T0B0C 6399:256 JLINK_ReadMemEx(0x0800F8BC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F8BC) - Data: FF F7 2C F8 10 BD 00 00 FC 03 00 20 70 47 00 00 ... returns 0x3C (0000ms, 1902ms total)
T0B0C 6399:256 JLINK_ReadMemEx(0x0800F8BC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F8BC) - Data: FF F7 returns 0x02 (0000ms, 1902ms total)
T0B0C 6399:256 JLINK_ReadMemEx(0x0800F8BC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F8BC) - Data: FF F7 2C F8 10 BD 00 00 FC 03 00 20 70 47 00 00 ... returns 0x3C (0000ms, 1902ms total)
T0B0C 6399:256 JLINK_ReadMemEx(0x0800F8BC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F8BC) - Data: FF F7 returns 0x02 (0000ms, 1902ms total)
T0B0C 6399:256 JLINK_ReadMemEx(0x0800F8BE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F8BE) - Data: 2C F8 returns 0x02 (0000ms, 1902ms total)
T0B0C 6399:256 JLINK_ReadMemEx(0x0800F8C0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F8C0) - Data: 10 BD 00 00 FC 03 00 20 70 47 00 00 4F F4 00 41 ... returns 0x3C (0000ms, 1902ms total)
T0B0C 6399:256 JLINK_ReadMemEx(0x0800F8C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F8C0) - Data: 10 BD returns 0x02 (0000ms, 1902ms total)
T0B0C 6399:257 JLINK_ReadMemEx(0x0800F8C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F8C2) - Data: 00 00 returns 0x02 (0000ms, 1903ms total)
T0B0C 6399:257 JLINK_ReadMemEx(0x0800F8C8, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0800F900) -- Updating C cache (64 bytes @ 0x0800F900) -- Read from C cache (60 bytes @ 0x0800F8C8) - Data: 70 47 00 00 4F F4 00 41 08 03 01 F0 B9 F8 62 B6 ... returns 0x3C (0001ms, 1904ms total)
T0B0C 6399:258 JLINK_ReadMemEx(0x0800F8C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F8C8) - Data: 70 47 returns 0x02 (0000ms, 1904ms total)
T0B0C 6399:258 JLINK_ReadMemEx(0x0800F8CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F8CA) - Data: 00 00 returns 0x02 (0000ms, 1904ms total)
T0B0C 6399:258 JLINK_ReadMemEx(0x0800F8CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F8CA) - Data: 00 00 returns 0x02 (0000ms, 1904ms total)
T0B0C 6399:258 JLINK_ReadMemEx(0x0800F8CC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F8CC) - Data: 4F F4 00 41 08 03 01 F0 B9 F8 62 B6 00 BF EF F3 ... returns 0x3C (0000ms, 1904ms total)
T0B0C 6399:258 JLINK_ReadMemEx(0x0800F8CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F8CC) - Data: 4F F4 returns 0x02 (0000ms, 1904ms total)
T0B0C 6399:258 JLINK_ReadMemEx(0x0800F8CC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F8CC) - Data: 4F F4 00 41 08 03 01 F0 B9 F8 62 B6 00 BF EF F3 ... returns 0x3C (0000ms, 1904ms total)
T0B0C 6399:258 JLINK_ReadMemEx(0x0800F8CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F8CC) - Data: 4F F4 returns 0x02 (0000ms, 1904ms total)
T0B0C 6399:258 JLINK_ReadMemEx(0x0800F8CE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F8CE) - Data: 00 41 returns 0x02 (0000ms, 1904ms total)
T0B0C 6399:258 JLINK_ReadMemEx(0x0800F8D0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F8D0) - Data: 08 03 01 F0 B9 F8 62 B6 00 BF EF F3 10 80 04 46 ... returns 0x3C (0000ms, 1904ms total)
T0B0C 6399:258 JLINK_ReadMemEx(0x0800F8D0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F8D0) - Data: 08 03 returns 0x02 (0000ms, 1904ms total)
T0B0C 6399:258 JLINK_ReadMemEx(0x0800F8D2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F8D2) - Data: 01 F0 returns 0x02 (0000ms, 1904ms total)
T0B0C 6399:258 JLINK_ReadMemEx(0x0800F8D2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F8D2) - Data: 01 F0 returns 0x02 (0000ms, 1904ms total)
T0B0C 6399:258 JLINK_ReadMemEx(0x0800F8D4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F8D4) - Data: B9 F8 62 B6 00 BF EF F3 10 80 04 46 01 20 80 F3 ... returns 0x3C (0000ms, 1904ms total)
T0B0C 6399:258 JLINK_ReadMemEx(0x0800F8D4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F8D4) - Data: B9 F8 returns 0x02 (0000ms, 1904ms total)
T0B0C 6399:258 JLINK_ReadMemEx(0x0800F8D6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F8D6) - Data: 62 B6 returns 0x02 (0000ms, 1904ms total)
T0B0C 6399:258 JLINK_ReadMemEx(0x0800F8D8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F8D8) - Data: 00 BF EF F3 10 80 04 46 01 20 80 F3 10 88 00 BF ... returns 0x3C (0000ms, 1904ms total)
T0B0C 6399:258 JLINK_ReadMemEx(0x0800F8D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F8D8) - Data: 00 BF returns 0x02 (0000ms, 1904ms total)
T0B0C 6399:258 JLINK_ReadMemEx(0x0800F8D8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F8D8) - Data: 00 BF EF F3 10 80 04 46 01 20 80 F3 10 88 00 BF ... returns 0x3C (0000ms, 1904ms total)
T0B0C 6399:258 JLINK_ReadMemEx(0x0800F8D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F8D8) - Data: 00 BF returns 0x02 (0000ms, 1904ms total)
T0B0C 6399:258 JLINK_ReadMemEx(0x0800F8DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F8DA) - Data: EF F3 returns 0x02 (0000ms, 1904ms total)
T0B0C 6399:259 JLINK_ReadMemEx(0x0800F8DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F8DA) - Data: EF F3 returns 0x02 (0000ms, 1904ms total)
T0B0C 6399:259 JLINK_ReadMemEx(0x0800F8DC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800F8DC) - Data: 10 80 04 46 01 20 80 F3 10 88 00 BF 01 F0 B0 FD ... returns 0x3C (0000ms, 1904ms total)
T0B0C 6399:259 JLINK_ReadMemEx(0x0800F8DC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F8DC) - Data: 10 80 returns 0x02 (0000ms, 1904ms total)
T0B0C 6402:365 JLINK_ReadMemEx(0x08010010, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x08010000) -- Updating C cache (128 bytes @ 0x08010000) -- Read from C cache (60 bytes @ 0x08010010) - Data: FE F7 B8 FD 06 46 08 49 88 8D 05 49 32 46 8B 6B ... returns 0x3C (0001ms, 1905ms total)
T0B0C 6402:366 JLINK_ReadMemEx(0x08010010, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010010) - Data: FE F7 returns 0x02 (0000ms, 1905ms total)
T0B0C 6402:366 JLINK_ReadMemEx(0x08010012, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010012) - Data: B8 FD returns 0x02 (0000ms, 1905ms total)
T0B0C 6402:366 JLINK_ReadMemEx(0x08010014, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08010014) - Data: 06 46 08 49 88 8D 05 49 32 46 8B 6B 04 21 98 47 ... returns 0x3C (0000ms, 1905ms total)
T0B0C 6402:366 JLINK_ReadMemEx(0x08010014, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010014) - Data: 06 46 returns 0x02 (0000ms, 1905ms total)
T0B0C 6402:366 JLINK_ReadMemEx(0x08010016, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010016) - Data: 08 49 returns 0x02 (0000ms, 1905ms total)
T0B0C 6402:366 JLINK_ReadMemEx(0x08010016, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010016) - Data: 08 49 returns 0x02 (0000ms, 1905ms total)
T0B0C 6402:366 JLINK_ReadMemEx(0x08010018, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08010018) - Data: 88 8D 05 49 32 46 8B 6B 04 21 98 47 70 BD 00 00 ... returns 0x3C (0000ms, 1905ms total)
T0B0C 6402:366 JLINK_ReadMemEx(0x08010018, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010018) - Data: 88 8D returns 0x02 (0001ms, 1906ms total)
T0B0C 6402:367 JLINK_ReadMemEx(0x08010018, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08010018) - Data: 88 8D 05 49 32 46 8B 6B 04 21 98 47 70 BD 00 00 ... returns 0x3C (0000ms, 1906ms total)
T0B0C 6402:367 JLINK_ReadMemEx(0x08010018, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010018) - Data: 88 8D returns 0x02 (0000ms, 1906ms total)
T0B0C 6402:367 JLINK_ReadMemEx(0x0801001A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801001A) - Data: 05 49 returns 0x02 (0000ms, 1906ms total)
T0B0C 6402:367 JLINK_ReadMemEx(0x0801001A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801001A) - Data: 05 49 returns 0x02 (0000ms, 1906ms total)
T0B0C 6402:367 JLINK_ReadMemEx(0x0801001C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0801001C) - Data: 32 46 8B 6B 04 21 98 47 70 BD 00 00 F8 10 00 20 ... returns 0x3C (0000ms, 1906ms total)
T0B0C 6402:367 JLINK_ReadMemEx(0x0801001C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801001C) - Data: 32 46 returns 0x02 (0000ms, 1906ms total)
T0B0C 6402:367 JLINK_ReadMemEx(0x0801001C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0801001C) - Data: 32 46 8B 6B 04 21 98 47 70 BD 00 00 F8 10 00 20 ... returns 0x3C (0000ms, 1906ms total)
T0B0C 6402:367 JLINK_ReadMemEx(0x0801001C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801001C) - Data: 32 46 returns 0x02 (0000ms, 1906ms total)
T0B0C 6402:367 JLINK_ReadMemEx(0x0801001E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801001E) - Data: 8B 6B returns 0x02 (0000ms, 1906ms total)
T0B0C 6402:367 JLINK_ReadMemEx(0x0801001E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801001E) - Data: 8B 6B returns 0x02 (0000ms, 1906ms total)
T0B0C 6402:367 JLINK_ReadMemEx(0x08010020, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08010020) - Data: 04 21 98 47 70 BD 00 00 F8 10 00 20 B2 04 00 20 ... returns 0x3C (0000ms, 1906ms total)
T0B0C 6402:367 JLINK_ReadMemEx(0x08010020, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010020) - Data: 04 21 returns 0x02 (0000ms, 1906ms total)
T0B0C 6402:367 JLINK_ReadMemEx(0x08010020, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08010020) - Data: 04 21 98 47 70 BD 00 00 F8 10 00 20 B2 04 00 20 ... returns 0x3C (0000ms, 1906ms total)
T0B0C 6402:367 JLINK_ReadMemEx(0x08010020, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010020) - Data: 04 21 returns 0x02 (0000ms, 1906ms total)
T0B0C 6402:367 JLINK_ReadMemEx(0x08010022, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010022) - Data: 98 47 returns 0x02 (0000ms, 1906ms total)
T0B0C 6402:367 JLINK_ReadMemEx(0x08010022, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010022) - Data: 98 47 returns 0x02 (0000ms, 1906ms total)
T0B0C 6402:367 JLINK_ReadMemEx(0x08010024, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08010024) - Data: 70 BD 00 00 F8 10 00 20 B2 04 00 20 B8 02 00 20 ... returns 0x3C (0000ms, 1906ms total)
T0B0C 6402:367 JLINK_ReadMemEx(0x08010024, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010024) - Data: 70 BD returns 0x02 (0000ms, 1906ms total)
T0B0C 6403:664 JLINK_ReadMemEx(0x200007C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200007C0) - Data: 00 00 returns 0x02 (0000ms, 1906ms total)
T1700 6410:941 JLINK_ReadMemEx(0x0800F8CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800F8CC) - Data: 4F F4 returns 0x02 (0000ms, 1906ms total)
T1700 6410:941 JLINK_SetBPEx(Addr = 0x08009484, Type = 0xFFFFFFF2) returns 0x00000003 (0000ms, 1906ms total)
T1700 6410:941 JLINK_SetBPEx(Addr = 0x0801000A, Type = 0xFFFFFFF2) returns 0x00000004 (0000ms, 1906ms total)
T1700 6410:941 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, 1912ms total)
T1700 6411:047 JLINK_IsHalted() returns TRUE (0003ms, 1915ms total)
T1700 6411:050 JLINK_Halt() returns 0x00 (0000ms, 1912ms total)
T1700 6411:050 JLINK_IsHalted() returns TRUE (0000ms, 1912ms total)
T1700 6411:050 JLINK_IsHalted() returns TRUE (0000ms, 1912ms total)
T1700 6411:050 JLINK_IsHalted() returns TRUE (0000ms, 1912ms total)
T1700 6411:050 JLINK_ReadReg(R15 (PC)) returns 0x0801000A (0000ms, 1912ms total)
T1700 6411:050 JLINK_ReadReg(XPSR) returns 0x61000000 (0000ms, 1912ms total)
T1700 6411:051 JLINK_ClrBPEx(BPHandle = 0x00000003) returns 0x00 (0000ms, 1912ms total)
T1700 6411:051 JLINK_ClrBPEx(BPHandle = 0x00000004) returns 0x00 (0000ms, 1912ms total)
T1700 6411:051 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 02 00 00 00 returns 1 (0000ms, 1912ms total)
T1700 6411:051 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00 returns 1 (0002ms, 1914ms total)
T1700 6411:053 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 02 00 00 returns 1 (0001ms, 1915ms total)
T1700 6411:054 JLINK_ReadMemU32(0xE0001048, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001048) - Data: 00 00 00 00 returns 1 (0001ms, 1916ms total)
T1700 6411:055 JLINK_ReadMemU32(0xE0001058, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001058) - Data: 00 00 00 00 returns 1 (0001ms, 1917ms total)
T1700 6411:056 JLINK_ReadReg(R0) returns 0x00000001 (0000ms, 1917ms total)
T1700 6411:056 JLINK_ReadReg(R1) returns 0x00000020 (0000ms, 1917ms total)
T1700 6411:056 JLINK_ReadReg(R2) returns 0x08013A70 (0000ms, 1917ms total)
T1700 6411:056 JLINK_ReadReg(R3) returns 0x00000003 (0000ms, 1917ms total)
T1700 6411:056 JLINK_ReadReg(R4) returns 0x00000001 (0001ms, 1918ms total)
T1700 6411:057 JLINK_ReadReg(R5) returns 0x00000001 (0000ms, 1918ms total)
T1700 6411:057 JLINK_ReadReg(R6) returns 0x00000000 (0000ms, 1918ms total)
T1700 6411:057 JLINK_ReadReg(R7) returns 0x00000000 (0000ms, 1918ms total)
T1700 6411:057 JLINK_ReadReg(R8) returns 0x00000000 (0000ms, 1918ms total)
T1700 6411:057 JLINK_ReadReg(R9) returns 0x20000134 (0000ms, 1918ms total)
T1700 6411:057 JLINK_ReadReg(R10) returns 0x00000000 (0000ms, 1918ms total)
T1700 6411:057 JLINK_ReadReg(R11) returns 0x00000000 (0000ms, 1918ms total)
T1700 6411:057 JLINK_ReadReg(R12) returns 0x00000004 (0000ms, 1918ms total)
T1700 6411:057 JLINK_ReadReg(R13 (SP)) returns 0x2000E108 (0000ms, 1918ms total)
T1700 6411:057 JLINK_ReadReg(R14) returns 0x08009F35 (0000ms, 1918ms total)
T1700 6411:057 JLINK_ReadReg(R15 (PC)) returns 0x0801000A (0000ms, 1918ms total)
T1700 6411:057 JLINK_ReadReg(XPSR) returns 0x61000000 (0000ms, 1918ms total)
T1700 6411:057 JLINK_ReadReg(MSP) returns 0x2000E108 (0000ms, 1918ms total)
T1700 6411:057 JLINK_ReadReg(PSP) returns 0x20001000 (0000ms, 1918ms total)
T1700 6411:057 JLINK_ReadReg(CFBP) returns 0x00000001 (0000ms, 1918ms total)
T1700 6411:057 JLINK_ReadReg(FPSCR) returns 0x00000000 (0004ms, 1922ms total)
T1700 6411:061 JLINK_ReadReg(FPS0) returns 0xFB068412 (0000ms, 1922ms total)
T1700 6411:061 JLINK_ReadReg(FPS1) returns 0x10110C5A (0000ms, 1922ms total)
T1700 6411:061 JLINK_ReadReg(FPS2) returns 0x04345E8B (0000ms, 1922ms total)
T1700 6411:061 JLINK_ReadReg(FPS3) returns 0x84492403 (0000ms, 1922ms total)
T1700 6411:061 JLINK_ReadReg(FPS4) returns 0x18248A10 (0000ms, 1922ms total)
T1700 6411:061 JLINK_ReadReg(FPS5) returns 0x24102496 (0000ms, 1922ms total)
T1700 6411:061 JLINK_ReadReg(FPS6) returns 0x82C0846D (0000ms, 1922ms total)
T1700 6411:061 JLINK_ReadReg(FPS7) returns 0x28E02089 (0000ms, 1922ms total)
T1700 6411:061 JLINK_ReadReg(FPS8) returns 0x05488443 (0000ms, 1922ms total)
T1700 6411:061 JLINK_ReadReg(FPS9) returns 0xF172B840 (0000ms, 1922ms total)
T1700 6411:061 JLINK_ReadReg(FPS10) returns 0x11B25004 (0000ms, 1922ms total)
T1700 6411:061 JLINK_ReadReg(FPS11) returns 0x000A0122 (0000ms, 1922ms total)
T1700 6411:061 JLINK_ReadReg(FPS12) returns 0x02345609 (0000ms, 1922ms total)
T1700 6411:061 JLINK_ReadReg(FPS13) returns 0x86007109 (0000ms, 1922ms total)
T1700 6411:061 JLINK_ReadReg(FPS14) returns 0xA03C9BD0 (0000ms, 1922ms total)
T1700 6411:061 JLINK_ReadReg(FPS15) returns 0x5012A400 (0000ms, 1922ms total)
T1700 6411:061 JLINK_ReadReg(FPS16) returns 0x1591822D (0000ms, 1922ms total)
T1700 6411:061 JLINK_ReadReg(FPS17) returns 0x9415225C (0000ms, 1922ms total)
T1700 6411:061 JLINK_ReadReg(FPS18) returns 0x0C0917B5 (0000ms, 1922ms total)
T1700 6411:061 JLINK_ReadReg(FPS19) returns 0x1C78D422 (0000ms, 1922ms total)
T1700 6411:061 JLINK_ReadReg(FPS20) returns 0xB4874081 (0000ms, 1922ms total)
T1700 6411:061 JLINK_ReadReg(FPS21) returns 0x108D0118 (0000ms, 1922ms total)
T1700 6411:061 JLINK_ReadReg(FPS22) returns 0x9044A200 (0000ms, 1922ms total)
T1700 6411:061 JLINK_ReadReg(FPS23) returns 0x781449E0 (0000ms, 1922ms total)
T1700 6411:061 JLINK_ReadReg(FPS24) returns 0x1C330E11 (0000ms, 1922ms total)
T1700 6411:062 JLINK_ReadReg(FPS25) returns 0xC605704C (0000ms, 1922ms total)
T1700 6411:062 JLINK_ReadReg(FPS26) returns 0x2C30E195 (0000ms, 1922ms total)
T1700 6411:062 JLINK_ReadReg(FPS27) returns 0x8032365D (0000ms, 1922ms total)
T1700 6411:062 JLINK_ReadReg(FPS28) returns 0x068522B7 (0000ms, 1922ms total)
T1700 6411:062 JLINK_ReadReg(FPS29) returns 0x121C1711 (0000ms, 1922ms total)
T1700 6411:062 JLINK_ReadReg(FPS30) returns 0x41020916 (0000ms, 1922ms total)
T1700 6411:062 JLINK_ReadReg(FPS31) returns 0x11A63042 (0000ms, 1922ms total)
T0B0C 6411:062 JLINK_ReadMemEx(0x2000E114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x2000E100) -- Updating C cache (64 bytes @ 0x2000E100) -- Read from C cache (4 bytes @ 0x2000E114) - Data: 1F C2 00 08 returns 0x04 (0002ms, 1924ms total)
T0B0C 6411:064 JLINK_ReadMemEx(0x2000E108, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E108) - Data: 00 00 00 00 returns 0x04 (0000ms, 1924ms total)
T0B0C 6411:065 JLINK_ReadMemEx(0x2000E10C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E10C) - Data: 84 59 01 08 returns 0x04 (0000ms, 1925ms total)
T0B0C 6411:065 JLINK_ReadMemEx(0x2000E110, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E110) - Data: 00 00 00 00 returns 0x04 (0000ms, 1925ms total)
T0B0C 6411:065 JLINK_ReadMemEx(0x2000E114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E114) - Data: 1F C2 00 08 returns 0x04 (0000ms, 1925ms total)
T0B0C 6411:065 JLINK_ReadMemEx(0x2000E11C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E11C) - Data: 2F F9 00 08 returns 0x04 (0000ms, 1925ms total)
T0B0C 6411:065 JLINK_ReadMemEx(0x2000E118, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E118) - Data: 00 00 00 00 returns 0x04 (0000ms, 1925ms total)
T0B0C 6411:065 JLINK_ReadMemEx(0x2000E11C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E11C) - Data: 2F F9 00 08 returns 0x04 (0000ms, 1925ms total)
T0B0C 6411:072 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001004) - Data: DE B5 0E 00 returns 1 (0002ms, 1927ms total)
T0B0C 6411:074 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000580) -- Updating C cache (64 bytes @ 0x20000580) -- Read from C cache (1 bytes @ 0x20000588) - Data: 00 returns 0x01 (0002ms, 1929ms total)
T0B0C 6411:076 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200007C0) -- Updating C cache (64 bytes @ 0x200007C0) -- Read from C cache (1 bytes @ 0x200007ED) - Data: DC returns 0x01 (0002ms, 1931ms total)
T0B0C 6411:078 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200007EE) - Data: 00 returns 0x01 (0000ms, 1931ms total)
T0B0C 6411:078 JLINK_ReadMemEx(0x2000042C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000400) -- Updating C cache (64 bytes @ 0x20000400) -- Read from C cache (4 bytes @ 0x2000042C) - Data: 00 00 00 00 returns 0x04 (0002ms, 1933ms total)
T0B0C 6411:081 JLINK_ReadMemEx(0x08010006, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08010000) -- Updating C cache (64 bytes @ 0x08010000) -- Read from C cache (2 bytes @ 0x08010006) - Data: 01 F0 returns 0x02 (0003ms, 1936ms total)
T0B0C 6411:084 JLINK_ReadMemEx(0x08010008, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08010040) -- Updating C cache (64 bytes @ 0x08010040) -- Read from C cache (60 bytes @ 0x08010008) - Data: E7 FE 0B 48 80 8D 48 B1 FE F7 B8 FD 06 46 08 49 ... returns 0x3C (0002ms, 1938ms total)
T0B0C 6411:086 JLINK_ReadMemEx(0x08010008, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010008) - Data: E7 FE returns 0x02 (0000ms, 1938ms total)
T0B0C 6411:086 JLINK_ReadMemEx(0x0800FF06, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0800FF00) -- Updating C cache (64 bytes @ 0x0800FF00) -- Read from C cache (2 bytes @ 0x0800FF06) - Data: 62 FF returns 0x02 (0002ms, 1940ms total)
T0B0C 6411:088 JLINK_ReadMemEx(0x0800FF08, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0800FF40) -- Updating C cache (64 bytes @ 0x0800FF40) -- Read from C cache (60 bytes @ 0x0800FF08) - Data: 05 49 C8 6A 80 47 06 46 E1 B2 04 48 32 46 03 6A ... returns 0x3C (0002ms, 1942ms total)
T0B0C 6411:090 JLINK_ReadMemEx(0x0800FF08, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF08) - Data: 05 49 returns 0x02 (0000ms, 1942ms total)
T0B0C 6411:090 JLINK_ReadMemEx(0x0800FF0A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF0A) - Data: C8 6A returns 0x02 (0000ms, 1942ms total)
T0B0C 6411:090 JLINK_ReadMemEx(0x0800FF0C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF0C) - Data: 80 47 06 46 E1 B2 04 48 32 46 03 6A 28 46 98 47 ... returns 0x3C (0000ms, 1942ms total)
T0B0C 6411:090 JLINK_ReadMemEx(0x0800FF0C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF0C) - Data: 80 47 returns 0x02 (0000ms, 1942ms total)
T0B0C 6411:090 JLINK_ReadMemEx(0x0800FF0C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF0C) - Data: 80 47 06 46 E1 B2 04 48 32 46 03 6A 28 46 98 47 ... returns 0x3C (0000ms, 1942ms total)
T0B0C 6411:090 JLINK_ReadMemEx(0x0800FF0C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF0C) - Data: 80 47 returns 0x02 (0000ms, 1942ms total)
T0B0C 6411:090 JLINK_ReadMemEx(0x0800FF0E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF0E) - Data: 06 46 returns 0x02 (0000ms, 1942ms total)
T0B0C 6411:090 JLINK_ReadMemEx(0x0800FF0E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF0E) - Data: 06 46 returns 0x02 (0000ms, 1942ms total)
T0B0C 6411:090 JLINK_ReadMemEx(0x0800FF10, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF10) - Data: E1 B2 04 48 32 46 03 6A 28 46 98 47 01 20 70 BD ... returns 0x3C (0000ms, 1942ms total)
T0B0C 6411:090 JLINK_ReadMemEx(0x0800FF10, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF10) - Data: E1 B2 returns 0x02 (0000ms, 1942ms total)
T0B0C 6411:091 JLINK_ReadMemEx(0x0800FF10, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF10) - Data: E1 B2 04 48 32 46 03 6A 28 46 98 47 01 20 70 BD ... returns 0x3C (0000ms, 1942ms total)
T0B0C 6411:091 JLINK_ReadMemEx(0x0800FF10, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF10) - Data: E1 B2 returns 0x02 (0000ms, 1942ms total)
T0B0C 6411:091 JLINK_ReadMemEx(0x0800FF12, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF12) - Data: 04 48 returns 0x02 (0000ms, 1942ms total)
T0B0C 6411:091 JLINK_ReadMemEx(0x0800FF12, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF12) - Data: 04 48 returns 0x02 (0000ms, 1942ms total)
T0B0C 6411:091 JLINK_ReadMemEx(0x0800FF14, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF14) - Data: 32 46 03 6A 28 46 98 47 01 20 70 BD 40 03 00 20 ... returns 0x3C (0000ms, 1942ms total)
T0B0C 6411:091 JLINK_ReadMemEx(0x0800FF14, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF14) - Data: 32 46 returns 0x02 (0000ms, 1942ms total)
T0B0C 6411:091 JLINK_ReadMemEx(0x0800FF14, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF14) - Data: 32 46 03 6A 28 46 98 47 01 20 70 BD 40 03 00 20 ... returns 0x3C (0000ms, 1942ms total)
T0B0C 6411:091 JLINK_ReadMemEx(0x0800FF14, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF14) - Data: 32 46 returns 0x02 (0000ms, 1942ms total)
T0B0C 6411:091 JLINK_ReadMemEx(0x0800FF16, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF16) - Data: 03 6A returns 0x02 (0000ms, 1942ms total)
T0B0C 6411:091 JLINK_ReadMemEx(0x0800FF16, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF16) - Data: 03 6A returns 0x02 (0000ms, 1942ms total)
T0B0C 6411:091 JLINK_ReadMemEx(0x0800FF18, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF18) - Data: 28 46 98 47 01 20 70 BD 40 03 00 20 B8 02 00 20 ... returns 0x3C (0000ms, 1942ms total)
T0B0C 6411:091 JLINK_ReadMemEx(0x0800FF18, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF18) - Data: 28 46 returns 0x02 (0000ms, 1942ms total)
T0B0C 6411:091 JLINK_ReadMemEx(0x0800FF18, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF18) - Data: 28 46 98 47 01 20 70 BD 40 03 00 20 B8 02 00 20 ... returns 0x3C (0000ms, 1942ms total)
T0B0C 6411:091 JLINK_ReadMemEx(0x0800FF18, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF18) - Data: 28 46 returns 0x02 (0000ms, 1942ms total)
T0B0C 6411:091 JLINK_ReadMemEx(0x0800FF1A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF1A) - Data: 98 47 returns 0x02 (0000ms, 1942ms total)
T0B0C 6411:091 JLINK_ReadMemEx(0x0800FF1A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF1A) - Data: 98 47 returns 0x02 (0000ms, 1942ms total)
T0B0C 6411:091 JLINK_ReadMemEx(0x0800FF1C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF1C) - Data: 01 20 70 BD 40 03 00 20 B8 02 00 20 10 B5 4F F4 ... returns 0x3C (0000ms, 1942ms total)
T0B0C 6411:091 JLINK_ReadMemEx(0x0800FF1C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF1C) - Data: 01 20 returns 0x02 (0000ms, 1942ms total)
T0B0C 6411:091 JLINK_ReadMemEx(0x0800FF1C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF1C) - Data: 01 20 70 BD 40 03 00 20 B8 02 00 20 10 B5 4F F4 ... returns 0x3C (0000ms, 1942ms total)
T0B0C 6411:091 JLINK_ReadMemEx(0x0800FF1C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF1C) - Data: 01 20 returns 0x02 (0000ms, 1942ms total)
T0B0C 6411:091 JLINK_ReadMemEx(0x0800FF1E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF1E) - Data: 70 BD returns 0x02 (0000ms, 1942ms total)
T0B0C 6411:091 JLINK_ReadMemEx(0x0800FF1E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF1E) - Data: 70 BD returns 0x02 (0000ms, 1942ms total)
T0B0C 6411:091 JLINK_ReadMemEx(0x0800FF20, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF20) - Data: 40 03 00 20 B8 02 00 20 10 B5 4F F4 FA 74 08 E0 ... returns 0x3C (0000ms, 1942ms total)
T0B0C 6411:091 JLINK_ReadMemEx(0x0800FF20, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF20) - Data: 40 03 returns 0x02 (0000ms, 1942ms total)
T0B0C 6411:091 JLINK_ReadMemEx(0x0800FF28, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF28) - Data: 10 B5 4F F4 FA 74 08 E0 FE F7 BC FE 00 B1 10 BD ... returns 0x3C (0000ms, 1942ms total)
T0B0C 6411:091 JLINK_ReadMemEx(0x0800FF28, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF28) - Data: 10 B5 returns 0x02 (0000ms, 1942ms total)
T0B0C 6411:092 JLINK_ReadMemEx(0x0800FF2A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF2A) - Data: 4F F4 returns 0x02 (0000ms, 1943ms total)
T0B0C 6411:092 JLINK_ReadMemEx(0x0800FF2A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF2A) - Data: 4F F4 returns 0x02 (0000ms, 1943ms total)
T0B0C 6411:092 JLINK_ReadMemEx(0x0800FF2C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF2C) - Data: FA 74 08 E0 FE F7 BC FE 00 B1 10 BD 02 20 FF F7 ... returns 0x3C (0000ms, 1943ms total)
T0B0C 6411:092 JLINK_ReadMemEx(0x0800FF2C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF2C) - Data: FA 74 returns 0x02 (0000ms, 1943ms total)
T0B0C 6411:092 JLINK_ReadMemEx(0x0800FF2E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF2E) - Data: 08 E0 returns 0x02 (0000ms, 1943ms total)
T0B0C 6411:092 JLINK_ReadMemEx(0x0800FF30, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF30) - Data: FE F7 BC FE 00 B1 10 BD 02 20 FF F7 57 FE 60 1E ... returns 0x3C (0000ms, 1943ms total)
T0B0C 6411:092 JLINK_ReadMemEx(0x0800FF30, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF30) - Data: FE F7 returns 0x02 (0000ms, 1943ms total)
T0B0C 6411:092 JLINK_ReadMemEx(0x0800FF30, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF30) - Data: FE F7 BC FE 00 B1 10 BD 02 20 FF F7 57 FE 60 1E ... returns 0x3C (0000ms, 1943ms total)
T0B0C 6411:092 JLINK_ReadMemEx(0x0800FF30, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF30) - Data: FE F7 returns 0x02 (0000ms, 1943ms total)
T0B0C 6411:092 JLINK_ReadMemEx(0x0800FF32, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF32) - Data: BC FE returns 0x02 (0000ms, 1943ms total)
T0B0C 6411:092 JLINK_ReadMemEx(0x0800FF34, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF34) - Data: 00 B1 10 BD 02 20 FF F7 57 FE 60 1E 84 B2 00 2C ... returns 0x3C (0000ms, 1943ms total)
T0B0C 6411:092 JLINK_ReadMemEx(0x0800FF34, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF34) - Data: 00 B1 returns 0x02 (0000ms, 1943ms total)
T0B0C 6411:092 JLINK_ReadMemEx(0x0800FF36, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF36) - Data: 10 BD returns 0x02 (0000ms, 1943ms total)
T0B0C 6411:092 JLINK_ReadMemEx(0x0800FF36, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF36) - Data: 10 BD returns 0x02 (0000ms, 1943ms total)
T0B0C 6411:092 JLINK_ReadMemEx(0x0800FF38, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF38) - Data: 02 20 FF F7 57 FE 60 1E 84 B2 00 2C F4 D1 00 BF ... returns 0x3C (0000ms, 1943ms total)
T0B0C 6411:092 JLINK_ReadMemEx(0x0800FF38, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF38) - Data: 02 20 returns 0x02 (0000ms, 1943ms total)
T0B0C 6411:092 JLINK_ReadMemEx(0x0800FF38, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF38) - Data: 02 20 FF F7 57 FE 60 1E 84 B2 00 2C F4 D1 00 BF ... returns 0x3C (0000ms, 1943ms total)
T0B0C 6411:092 JLINK_ReadMemEx(0x0800FF38, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF38) - Data: 02 20 returns 0x02 (0000ms, 1943ms total)
T0B0C 6411:092 JLINK_ReadMemEx(0x0800FF3A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF3A) - Data: FF F7 returns 0x02 (0000ms, 1943ms total)
T0B0C 6411:092 JLINK_ReadMemEx(0x0800FF3A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF3A) - Data: FF F7 returns 0x02 (0000ms, 1943ms total)
T0B0C 6411:092 JLINK_ReadMemEx(0x0800FF3C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF3C) - Data: 57 FE 60 1E 84 B2 00 2C F4 D1 00 BF F5 E7 00 00 ... returns 0x3C (0000ms, 1943ms total)
T0B0C 6411:092 JLINK_ReadMemEx(0x0800FF3C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF3C) - Data: 57 FE returns 0x02 (0000ms, 1943ms total)
T0B0C 6411:092 JLINK_ReadMemEx(0x0800FF3E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF3E) - Data: 60 1E returns 0x02 (0000ms, 1943ms total)
T0B0C 6411:092 JLINK_ReadMemEx(0x0800FF40, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF40) - Data: 84 B2 00 2C F4 D1 00 BF F5 E7 00 00 70 B5 01 25 ... returns 0x3C (0000ms, 1943ms total)
T0B0C 6411:092 JLINK_ReadMemEx(0x0800FF40, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF40) - Data: 84 B2 returns 0x02 (0000ms, 1943ms total)
T0B0C 6411:092 JLINK_ReadMemEx(0x0800FF40, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF40) - Data: 84 B2 00 2C F4 D1 00 BF F5 E7 00 00 70 B5 01 25 ... returns 0x3C (0000ms, 1943ms total)
T0B0C 6411:093 JLINK_ReadMemEx(0x0800FF40, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF40) - Data: 84 B2 returns 0x02 (0000ms, 1944ms total)
T0B0C 6411:093 JLINK_ReadMemEx(0x0800FF42, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF42) - Data: 00 2C returns 0x02 (0000ms, 1944ms total)
T0B0C 6411:093 JLINK_ReadMemEx(0x0800FF42, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF42) - Data: 00 2C returns 0x02 (0000ms, 1944ms total)
T0B0C 6411:093 JLINK_ReadMemEx(0x0800FF44, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF44) - Data: F4 D1 00 BF F5 E7 00 00 70 B5 01 25 00 20 35 49 ... returns 0x3C (0000ms, 1944ms total)
T0B0C 6411:093 JLINK_ReadMemEx(0x0800FF44, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF44) - Data: F4 D1 returns 0x02 (0000ms, 1944ms total)
T0B0C 6411:093 JLINK_ReadMemEx(0x0800FF44, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF44) - Data: F4 D1 00 BF F5 E7 00 00 70 B5 01 25 00 20 35 49 ... returns 0x3C (0000ms, 1944ms total)
T0B0C 6411:093 JLINK_ReadMemEx(0x0800FF44, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF44) - Data: F4 D1 returns 0x02 (0000ms, 1944ms total)
T0B0C 6411:093 JLINK_ReadMemEx(0x0800FF46, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF46) - Data: 00 BF returns 0x02 (0000ms, 1944ms total)
T0B0C 6411:093 JLINK_ReadMemEx(0x0800FF46, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF46) - Data: 00 BF returns 0x02 (0000ms, 1944ms total)
T0B0C 6411:093 JLINK_ReadMemEx(0x0800FF48, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0800FF80) -- Updating C cache (64 bytes @ 0x0800FF80) -- Read from C cache (60 bytes @ 0x0800FF48) - Data: F5 E7 00 00 70 B5 01 25 00 20 35 49 48 72 00 24 ... returns 0x3C (0002ms, 1946ms total)
T0B0C 6411:095 JLINK_ReadMemEx(0x0800FF48, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF48) - Data: F5 E7 returns 0x02 (0000ms, 1946ms total)
T0B0C 6411:095 JLINK_ReadMemEx(0x0800FF48, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF48) - Data: F5 E7 00 00 70 B5 01 25 00 20 35 49 48 72 00 24 ... returns 0x3C (0000ms, 1946ms total)
T0B0C 6411:095 JLINK_ReadMemEx(0x0800FF48, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF48) - Data: F5 E7 returns 0x02 (0000ms, 1946ms total)
T0B0C 6411:095 JLINK_ReadMemEx(0x0800FF4A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF4A) - Data: 00 00 returns 0x02 (0000ms, 1946ms total)
T0B0C 6411:095 JLINK_ReadMemEx(0x0800FF4A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF4A) - Data: 00 00 returns 0x02 (0000ms, 1946ms total)
T0B0C 6411:095 JLINK_ReadMemEx(0x0800FF4C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF4C) - Data: 70 B5 01 25 00 20 35 49 48 72 00 24 15 E0 FF 20 ... returns 0x3C (0000ms, 1946ms total)
T0B0C 6411:095 JLINK_ReadMemEx(0x0800FF4C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF4C) - Data: 70 B5 returns 0x02 (0000ms, 1946ms total)
T0B0C 6411:095 JLINK_ReadMemEx(0x0800FF4C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF4C) - Data: 70 B5 01 25 00 20 35 49 48 72 00 24 15 E0 FF 20 ... returns 0x3C (0000ms, 1946ms total)
T0B0C 6411:095 JLINK_ReadMemEx(0x0800FF4C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF4C) - Data: 70 B5 returns 0x02 (0000ms, 1946ms total)
T0B0C 6411:095 JLINK_ReadMemEx(0x0800FF4E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF4E) - Data: 01 25 returns 0x02 (0000ms, 1946ms total)
T0B0C 6411:095 JLINK_ReadMemEx(0x0800FF4E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF4E) - Data: 01 25 returns 0x02 (0000ms, 1946ms total)
T0B0C 6411:095 JLINK_ReadMemEx(0x0800FF50, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF50) - Data: 00 20 35 49 48 72 00 24 15 E0 FF 20 32 49 08 55 ... returns 0x3C (0000ms, 1946ms total)
T0B0C 6411:095 JLINK_ReadMemEx(0x0800FF50, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF50) - Data: 00 20 returns 0x02 (0000ms, 1946ms total)
T0B0C 6411:095 JLINK_ReadMemEx(0x0800FF50, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF50) - Data: 00 20 35 49 48 72 00 24 15 E0 FF 20 32 49 08 55 ... returns 0x3C (0000ms, 1946ms total)
T0B0C 6411:095 JLINK_ReadMemEx(0x0800FF50, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF50) - Data: 00 20 returns 0x02 (0000ms, 1946ms total)
T0B0C 6411:095 JLINK_ReadMemEx(0x0800FF52, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF52) - Data: 35 49 returns 0x02 (0000ms, 1946ms total)
T0B0C 6411:095 JLINK_ReadMemEx(0x0800FF52, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF52) - Data: 35 49 returns 0x02 (0000ms, 1946ms total)
T0B0C 6411:095 JLINK_ReadMemEx(0x0800FF54, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF54) - Data: 48 72 00 24 15 E0 FF 20 32 49 08 55 32 48 00 5D ... returns 0x3C (0000ms, 1946ms total)
T0B0C 6411:095 JLINK_ReadMemEx(0x0800FF54, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF54) - Data: 48 72 returns 0x02 (0000ms, 1946ms total)
T0B0C 6411:095 JLINK_ReadMemEx(0x0800FF54, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF54) - Data: 48 72 00 24 15 E0 FF 20 32 49 08 55 32 48 00 5D ... returns 0x3C (0000ms, 1946ms total)
T0B0C 6411:095 JLINK_ReadMemEx(0x0800FF54, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF54) - Data: 48 72 returns 0x02 (0000ms, 1946ms total)
T0B0C 6411:095 JLINK_ReadMemEx(0x0800FF56, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF56) - Data: 00 24 returns 0x02 (0000ms, 1946ms total)
T0B0C 6411:095 JLINK_ReadMemEx(0x0800FF56, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF56) - Data: 00 24 returns 0x02 (0000ms, 1946ms total)
T0B0C 6411:095 JLINK_ReadMemEx(0x0800FF58, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF58) - Data: 15 E0 FF 20 32 49 08 55 32 48 00 5D FF 28 07 D0 ... returns 0x3C (0000ms, 1946ms total)
T0B0C 6411:095 JLINK_ReadMemEx(0x0800FF58, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF58) - Data: 15 E0 returns 0x02 (0000ms, 1946ms total)
T0B0C 6411:095 JLINK_ReadMemEx(0x0800FF58, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF58) - Data: 15 E0 FF 20 32 49 08 55 32 48 00 5D FF 28 07 D0 ... returns 0x3C (0001ms, 1947ms total)
T0B0C 6411:096 JLINK_ReadMemEx(0x0800FF58, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF58) - Data: 15 E0 returns 0x02 (0000ms, 1947ms total)
T0B0C 6411:096 JLINK_ReadMemEx(0x0800FF5A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF5A) - Data: FF 20 returns 0x02 (0000ms, 1947ms total)
T0B0C 6411:096 JLINK_ReadMemEx(0x0800FF5A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF5A) - Data: FF 20 returns 0x02 (0000ms, 1947ms total)
T0B0C 6411:096 JLINK_ReadMemEx(0x0800FF5C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF5C) - Data: 32 49 08 55 32 48 00 5D FF 28 07 D0 30 48 00 5D ... returns 0x3C (0000ms, 1947ms total)
T0B0C 6411:096 JLINK_ReadMemEx(0x0800FF5C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF5C) - Data: 32 49 returns 0x02 (0000ms, 1947ms total)
T0B0C 6411:096 JLINK_ReadMemEx(0x0800FF5C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF5C) - Data: 32 49 08 55 32 48 00 5D FF 28 07 D0 30 48 00 5D ... returns 0x3C (0000ms, 1947ms total)
T0B0C 6411:096 JLINK_ReadMemEx(0x0800FF5C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF5C) - Data: 32 49 returns 0x02 (0000ms, 1947ms total)
T0B0C 6411:096 JLINK_ReadMemEx(0x0800FF5E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF5E) - Data: 08 55 returns 0x02 (0000ms, 1947ms total)
T0B0C 6411:096 JLINK_ReadMemEx(0x0800FF5E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF5E) - Data: 08 55 returns 0x02 (0000ms, 1947ms total)
T0B0C 6411:096 JLINK_ReadMemEx(0x0800FF60, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF60) - Data: 32 48 00 5D FF 28 07 D0 30 48 00 5D FE 28 03 D0 ... returns 0x3C (0000ms, 1947ms total)
T0B0C 6411:096 JLINK_ReadMemEx(0x0800FF60, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF60) - Data: 32 48 returns 0x02 (0000ms, 1947ms total)
T0B0C 6411:096 JLINK_ReadMemEx(0x0800FF60, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF60) - Data: 32 48 00 5D FF 28 07 D0 30 48 00 5D FE 28 03 D0 ... returns 0x3C (0000ms, 1947ms total)
T0B0C 6411:096 JLINK_ReadMemEx(0x0800FF60, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF60) - Data: 32 48 returns 0x02 (0000ms, 1947ms total)
T0B0C 6411:096 JLINK_ReadMemEx(0x0800FF62, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF62) - Data: 00 5D returns 0x02 (0000ms, 1947ms total)
T0B0C 6411:096 JLINK_ReadMemEx(0x0800FF62, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF62) - Data: 00 5D returns 0x02 (0000ms, 1947ms total)
T0B0C 6411:096 JLINK_ReadMemEx(0x0800FF64, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF64) - Data: FF 28 07 D0 30 48 00 5D FE 28 03 D0 2E 48 00 5D ... returns 0x3C (0000ms, 1947ms total)
T0B0C 6411:096 JLINK_ReadMemEx(0x0800FF64, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF64) - Data: FF 28 returns 0x02 (0000ms, 1947ms total)
T0B0C 6411:096 JLINK_ReadMemEx(0x0800FF64, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF64) - Data: FF 28 07 D0 30 48 00 5D FE 28 03 D0 2E 48 00 5D ... returns 0x3C (0000ms, 1947ms total)
T0B0C 6411:096 JLINK_ReadMemEx(0x0800FF64, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF64) - Data: FF 28 returns 0x02 (0000ms, 1947ms total)
T0B0C 6411:096 JLINK_ReadMemEx(0x0800FF66, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF66) - Data: 07 D0 returns 0x02 (0000ms, 1947ms total)
T0B0C 6411:096 JLINK_ReadMemEx(0x0800FF66, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF66) - Data: 07 D0 returns 0x02 (0000ms, 1947ms total)
T0B0C 6411:096 JLINK_ReadMemEx(0x0800FF68, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF68) - Data: 30 48 00 5D FE 28 03 D0 2E 48 00 5D FB 28 04 D1 ... returns 0x3C (0000ms, 1947ms total)
T0B0C 6411:097 JLINK_ReadMemEx(0x0800FF68, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF68) - Data: 30 48 returns 0x02 (0000ms, 1947ms total)
T0B0C 6411:097 JLINK_ReadMemEx(0x0800FF68, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF68) - Data: 30 48 00 5D FE 28 03 D0 2E 48 00 5D FB 28 04 D1 ... returns 0x3C (0000ms, 1947ms total)
T0B0C 6411:097 JLINK_ReadMemEx(0x0800FF68, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF68) - Data: 30 48 returns 0x02 (0000ms, 1947ms total)
T0B0C 6411:097 JLINK_ReadMemEx(0x0800FF6A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF6A) - Data: 00 5D returns 0x02 (0000ms, 1947ms total)
T0B0C 6411:097 JLINK_ReadMemEx(0x0800FF6A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF6A) - Data: 00 5D returns 0x02 (0000ms, 1947ms total)
T0B0C 6411:097 JLINK_ReadMemEx(0x0800FF6C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF6C) - Data: FE 28 03 D0 2E 48 00 5D FB 28 04 D1 2B 48 40 7A ... returns 0x3C (0000ms, 1947ms total)
T0B0C 6411:097 JLINK_ReadMemEx(0x0800FF6C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF6C) - Data: FE 28 returns 0x02 (0000ms, 1947ms total)
T0B0C 6411:097 JLINK_ReadMemEx(0x0800FF6C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF6C) - Data: FE 28 03 D0 2E 48 00 5D FB 28 04 D1 2B 48 40 7A ... returns 0x3C (0000ms, 1947ms total)
T0B0C 6411:097 JLINK_ReadMemEx(0x0800FF6C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF6C) - Data: FE 28 returns 0x02 (0000ms, 1947ms total)
T0B0C 6411:097 JLINK_ReadMemEx(0x0800FF6E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF6E) - Data: 03 D0 returns 0x02 (0000ms, 1947ms total)
T0B0C 6411:097 JLINK_ReadMemEx(0x0800FF6E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF6E) - Data: 03 D0 returns 0x02 (0000ms, 1947ms total)
T0B0C 6411:097 JLINK_ReadMemEx(0x0800FF70, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF70) - Data: 2E 48 00 5D FB 28 04 D1 2B 48 40 7A 40 1C 2A 49 ... returns 0x3C (0000ms, 1947ms total)
T0B0C 6411:097 JLINK_ReadMemEx(0x0800FF70, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF70) - Data: 2E 48 returns 0x02 (0000ms, 1947ms total)
T0B0C 6411:097 JLINK_ReadMemEx(0x0800FF70, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF70) - Data: 2E 48 00 5D FB 28 04 D1 2B 48 40 7A 40 1C 2A 49 ... returns 0x3C (0000ms, 1947ms total)
T0B0C 6411:097 JLINK_ReadMemEx(0x0800FF70, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF70) - Data: 2E 48 returns 0x02 (0000ms, 1947ms total)
T0B0C 6411:097 JLINK_ReadMemEx(0x0800FF72, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF72) - Data: 00 5D returns 0x02 (0000ms, 1947ms total)
T0B0C 6411:097 JLINK_ReadMemEx(0x0800FF72, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF72) - Data: 00 5D returns 0x02 (0000ms, 1947ms total)
T0B0C 6411:097 JLINK_ReadMemEx(0x0800FF74, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF74) - Data: FB 28 04 D1 2B 48 40 7A 40 1C 2A 49 48 72 60 1C ... returns 0x3C (0000ms, 1947ms total)
T0B0C 6411:097 JLINK_ReadMemEx(0x0800FF74, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF74) - Data: FB 28 returns 0x02 (0000ms, 1947ms total)
T0B0C 6411:097 JLINK_ReadMemEx(0x0800FF74, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF74) - Data: FB 28 04 D1 2B 48 40 7A 40 1C 2A 49 48 72 60 1C ... returns 0x3C (0000ms, 1947ms total)
T0B0C 6411:097 JLINK_ReadMemEx(0x0800FF74, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF74) - Data: FB 28 returns 0x02 (0000ms, 1947ms total)
T0B0C 6411:097 JLINK_ReadMemEx(0x0800FF76, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF76) - Data: 04 D1 returns 0x02 (0000ms, 1947ms total)
T0B0C 6411:097 JLINK_ReadMemEx(0x0800FF76, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF76) - Data: 04 D1 returns 0x02 (0000ms, 1947ms total)
T0B0C 6411:097 JLINK_ReadMemEx(0x0800FF78, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF78) - Data: 2B 48 40 7A 40 1C 2A 49 48 72 60 1C C4 B2 04 2C ... returns 0x3C (0000ms, 1947ms total)
T0B0C 6411:097 JLINK_ReadMemEx(0x0800FF78, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF78) - Data: 2B 48 returns 0x02 (0000ms, 1947ms total)
T0B0C 6411:097 JLINK_ReadMemEx(0x0800FF78, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF78) - Data: 2B 48 40 7A 40 1C 2A 49 48 72 60 1C C4 B2 04 2C ... returns 0x3C (0000ms, 1947ms total)
T0B0C 6411:097 JLINK_ReadMemEx(0x0800FF78, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF78) - Data: 2B 48 returns 0x02 (0001ms, 1948ms total)
T0B0C 6411:098 JLINK_ReadMemEx(0x0800FF7A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF7A) - Data: 40 7A returns 0x02 (0000ms, 1948ms total)
T0B0C 6411:098 JLINK_ReadMemEx(0x0800FF7A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF7A) - Data: 40 7A returns 0x02 (0000ms, 1948ms total)
T0B0C 6411:098 JLINK_ReadMemEx(0x0800FF7C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF7C) - Data: 40 1C 2A 49 48 72 60 1C C4 B2 04 2C E7 DB FF 20 ... returns 0x3C (0000ms, 1948ms total)
T0B0C 6411:098 JLINK_ReadMemEx(0x0800FF7C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF7C) - Data: 40 1C returns 0x02 (0000ms, 1948ms total)
T0B0C 6411:098 JLINK_ReadMemEx(0x0800FF7C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF7C) - Data: 40 1C 2A 49 48 72 60 1C C4 B2 04 2C E7 DB FF 20 ... returns 0x3C (0000ms, 1948ms total)
T0B0C 6411:098 JLINK_ReadMemEx(0x0800FF7C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF7C) - Data: 40 1C returns 0x02 (0000ms, 1948ms total)
T0B0C 6411:098 JLINK_ReadMemEx(0x0800FF7E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF7E) - Data: 2A 49 returns 0x02 (0000ms, 1948ms total)
T0B0C 6411:098 JLINK_ReadMemEx(0x0800FF7E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF7E) - Data: 2A 49 returns 0x02 (0000ms, 1948ms total)
T0B0C 6411:098 JLINK_ReadMemEx(0x0800FF80, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF80) - Data: 48 72 60 1C C4 B2 04 2C E7 DB FF 20 26 49 C8 72 ... returns 0x3C (0000ms, 1948ms total)
T0B0C 6411:098 JLINK_ReadMemEx(0x0800FF80, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF80) - Data: 48 72 returns 0x02 (0000ms, 1948ms total)
T0B0C 6411:098 JLINK_ReadMemEx(0x0800FF80, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF80) - Data: 48 72 60 1C C4 B2 04 2C E7 DB FF 20 26 49 C8 72 ... returns 0x3C (0000ms, 1948ms total)
T0B0C 6411:098 JLINK_ReadMemEx(0x0800FF80, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF80) - Data: 48 72 returns 0x02 (0000ms, 1948ms total)
T0B0C 6411:098 JLINK_ReadMemEx(0x0800FF82, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF82) - Data: 60 1C returns 0x02 (0000ms, 1948ms total)
T0B0C 6411:098 JLINK_ReadMemEx(0x0800FF82, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF82) - Data: 60 1C returns 0x02 (0000ms, 1948ms total)
T0B0C 6411:098 JLINK_ReadMemEx(0x0800FF84, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF84) - Data: C4 B2 04 2C E7 DB FF 20 26 49 C8 72 00 24 1F E0 ... returns 0x3C (0000ms, 1948ms total)
T0B0C 6411:098 JLINK_ReadMemEx(0x0800FF84, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF84) - Data: C4 B2 returns 0x02 (0000ms, 1948ms total)
T0B0C 6411:098 JLINK_ReadMemEx(0x0800FF84, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF84) - Data: C4 B2 04 2C E7 DB FF 20 26 49 C8 72 00 24 1F E0 ... returns 0x3C (0000ms, 1948ms total)
T0B0C 6411:098 JLINK_ReadMemEx(0x0800FF84, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF84) - Data: C4 B2 returns 0x02 (0000ms, 1948ms total)
T0B0C 6411:098 JLINK_ReadMemEx(0x0800FF86, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF86) - Data: 04 2C returns 0x02 (0000ms, 1948ms total)
T0B0C 6411:098 JLINK_ReadMemEx(0x0800FF86, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF86) - Data: 04 2C returns 0x02 (0000ms, 1948ms total)
T0B0C 6411:098 JLINK_ReadMemEx(0x0800FF88, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0800FFC0) -- Updating C cache (64 bytes @ 0x0800FFC0) -- Read from C cache (60 bytes @ 0x0800FF88) - Data: E7 DB FF 20 26 49 C8 72 00 24 1F E0 25 48 00 5D ... returns 0x3C (0002ms, 1950ms total)
T0B0C 6411:100 JLINK_ReadMemEx(0x0800FF88, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF88) - Data: E7 DB returns 0x02 (0000ms, 1950ms total)
T0B0C 6411:100 JLINK_ReadMemEx(0x0800FF88, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF88) - Data: E7 DB FF 20 26 49 C8 72 00 24 1F E0 25 48 00 5D ... returns 0x3C (0000ms, 1950ms total)
T0B0C 6411:100 JLINK_ReadMemEx(0x0800FF88, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF88) - Data: E7 DB returns 0x02 (0000ms, 1950ms total)
T0B0C 6411:100 JLINK_ReadMemEx(0x0800FF8A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF8A) - Data: FF 20 returns 0x02 (0000ms, 1950ms total)
T0B0C 6411:100 JLINK_ReadMemEx(0x0800FF8A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF8A) - Data: FF 20 returns 0x02 (0000ms, 1950ms total)
T0B0C 6411:100 JLINK_ReadMemEx(0x0800FF8C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF8C) - Data: 26 49 C8 72 00 24 1F E0 25 48 00 5D FB 28 0F D0 ... returns 0x3C (0000ms, 1950ms total)
T0B0C 6411:100 JLINK_ReadMemEx(0x0800FF8C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF8C) - Data: 26 49 returns 0x02 (0000ms, 1950ms total)
T0B0C 6411:100 JLINK_ReadMemEx(0x0800FF8C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF8C) - Data: 26 49 C8 72 00 24 1F E0 25 48 00 5D FB 28 0F D0 ... returns 0x3C (0000ms, 1950ms total)
T0B0C 6411:100 JLINK_ReadMemEx(0x0800FF8C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF8C) - Data: 26 49 returns 0x02 (0000ms, 1950ms total)
T0B0C 6411:100 JLINK_ReadMemEx(0x0800FF8E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF8E) - Data: C8 72 returns 0x02 (0000ms, 1950ms total)
T0B0C 6411:100 JLINK_ReadMemEx(0x0800FF8E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF8E) - Data: C8 72 returns 0x02 (0000ms, 1950ms total)
T0B0C 6411:100 JLINK_ReadMemEx(0x0800FF90, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF90) - Data: 00 24 1F E0 25 48 00 5D FB 28 0F D0 FE 28 07 D0 ... returns 0x3C (0000ms, 1950ms total)
T0B0C 6411:100 JLINK_ReadMemEx(0x0800FF90, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF90) - Data: 00 24 returns 0x02 (0000ms, 1950ms total)
T0B0C 6411:100 JLINK_ReadMemEx(0x0800FF90, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF90) - Data: 00 24 1F E0 25 48 00 5D FB 28 0F D0 FE 28 07 D0 ... returns 0x3C (0000ms, 1950ms total)
T0B0C 6411:100 JLINK_ReadMemEx(0x0800FF90, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF90) - Data: 00 24 returns 0x02 (0000ms, 1950ms total)
T0B0C 6411:100 JLINK_ReadMemEx(0x0800FF92, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF92) - Data: 1F E0 returns 0x02 (0001ms, 1951ms total)
T0B0C 6411:101 JLINK_ReadMemEx(0x0800FF92, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF92) - Data: 1F E0 returns 0x02 (0000ms, 1951ms total)
T0B0C 6411:101 JLINK_ReadMemEx(0x0800FF94, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF94) - Data: 25 48 00 5D FB 28 0F D0 FE 28 07 D0 FF 28 13 D1 ... returns 0x3C (0000ms, 1951ms total)
T0B0C 6411:101 JLINK_ReadMemEx(0x0800FF94, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF94) - Data: 25 48 returns 0x02 (0000ms, 1951ms total)
T0B0C 6411:101 JLINK_ReadMemEx(0x0800FF94, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF94) - Data: 25 48 00 5D FB 28 0F D0 FE 28 07 D0 FF 28 13 D1 ... returns 0x3C (0000ms, 1951ms total)
T0B0C 6411:101 JLINK_ReadMemEx(0x0800FF94, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF94) - Data: 25 48 returns 0x02 (0000ms, 1951ms total)
T0B0C 6411:101 JLINK_ReadMemEx(0x0800FF96, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF96) - Data: 00 5D returns 0x02 (0000ms, 1951ms total)
T0B0C 6411:101 JLINK_ReadMemEx(0x0800FF96, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF96) - Data: 00 5D returns 0x02 (0000ms, 1951ms total)
T0B0C 6411:101 JLINK_ReadMemEx(0x0800FF98, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF98) - Data: FB 28 0F D0 FE 28 07 D0 FF 28 13 D1 20 48 04 70 ... returns 0x3C (0000ms, 1951ms total)
T0B0C 6411:101 JLINK_ReadMemEx(0x0800FF98, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF98) - Data: FB 28 returns 0x02 (0000ms, 1951ms total)
T0B0C 6411:101 JLINK_ReadMemEx(0x0800FF98, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF98) - Data: FB 28 0F D0 FE 28 07 D0 FF 28 13 D1 20 48 04 70 ... returns 0x3C (0000ms, 1951ms total)
T0B0C 6411:101 JLINK_ReadMemEx(0x0800FF98, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF98) - Data: FB 28 returns 0x02 (0000ms, 1951ms total)
T0B0C 6411:101 JLINK_ReadMemEx(0x0800FF9A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF9A) - Data: 0F D0 returns 0x02 (0000ms, 1951ms total)
T0B0C 6411:101 JLINK_ReadMemEx(0x0800FF9A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF9A) - Data: 0F D0 returns 0x02 (0000ms, 1951ms total)
T0B0C 6411:101 JLINK_ReadMemEx(0x0800FF9C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF9C) - Data: FE 28 07 D0 FF 28 13 D1 20 48 04 70 00 20 1F 49 ... returns 0x3C (0000ms, 1951ms total)
T0B0C 6411:101 JLINK_ReadMemEx(0x0800FF9C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF9C) - Data: FE 28 returns 0x02 (0000ms, 1951ms total)
T0B0C 6411:101 JLINK_ReadMemEx(0x0800FF9C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF9C) - Data: FE 28 07 D0 FF 28 13 D1 20 48 04 70 00 20 1F 49 ... returns 0x3C (0000ms, 1951ms total)
T0B0C 6411:101 JLINK_ReadMemEx(0x0800FF9C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF9C) - Data: FE 28 returns 0x02 (0000ms, 1951ms total)
T0B0C 6411:101 JLINK_ReadMemEx(0x0800FF9E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF9E) - Data: 07 D0 returns 0x02 (0000ms, 1951ms total)
T0B0C 6411:101 JLINK_ReadMemEx(0x0800FF9E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF9E) - Data: 07 D0 returns 0x02 (0000ms, 1951ms total)
T0B0C 6411:101 JLINK_ReadMemEx(0x0800FFA0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FFA0) - Data: FF 28 13 D1 20 48 04 70 00 20 1F 49 88 72 0E E0 ... returns 0x3C (0000ms, 1951ms total)
T0B0C 6411:101 JLINK_ReadMemEx(0x0800FFA0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFA0) - Data: FF 28 returns 0x02 (0000ms, 1951ms total)
T0B0C 6411:101 JLINK_ReadMemEx(0x0800FFA0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FFA0) - Data: FF 28 13 D1 20 48 04 70 00 20 1F 49 88 72 0E E0 ... returns 0x3C (0000ms, 1951ms total)
T0B0C 6411:101 JLINK_ReadMemEx(0x0800FFA0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFA0) - Data: FF 28 returns 0x02 (0000ms, 1951ms total)
T0B0C 6411:101 JLINK_ReadMemEx(0x0800FFA2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFA2) - Data: 13 D1 returns 0x02 (0000ms, 1951ms total)
T0B0C 6411:101 JLINK_ReadMemEx(0x0800FFA2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFA2) - Data: 13 D1 returns 0x02 (0000ms, 1951ms total)
T0B0C 6411:101 JLINK_ReadMemEx(0x0800FFA4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FFA4) - Data: 20 48 04 70 00 20 1F 49 88 72 0E E0 28 46 69 1C ... returns 0x3C (0001ms, 1952ms total)
T0B0C 6411:102 JLINK_ReadMemEx(0x0800FFA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFA4) - Data: 20 48 returns 0x02 (0000ms, 1952ms total)
T0B0C 6411:102 JLINK_ReadMemEx(0x0800FFA4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FFA4) - Data: 20 48 04 70 00 20 1F 49 88 72 0E E0 28 46 69 1C ... returns 0x3C (0000ms, 1952ms total)
T0B0C 6411:102 JLINK_ReadMemEx(0x0800FFA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFA4) - Data: 20 48 returns 0x02 (0000ms, 1952ms total)
T0B0C 6411:102 JLINK_ReadMemEx(0x0800FFA6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFA6) - Data: 04 70 returns 0x02 (0000ms, 1952ms total)
T0B0C 6411:102 JLINK_ReadMemEx(0x0800FFA6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFA6) - Data: 04 70 returns 0x02 (0000ms, 1952ms total)
T0B0C 6411:102 JLINK_ReadMemEx(0x0800FFA8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FFA8) - Data: 00 20 1F 49 88 72 0E E0 28 46 69 1C CD B2 1C 49 ... returns 0x3C (0000ms, 1952ms total)
T0B0C 6411:102 JLINK_ReadMemEx(0x0800FFA8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFA8) - Data: 00 20 returns 0x02 (0000ms, 1952ms total)
T0B0C 6411:102 JLINK_ReadMemEx(0x0800FFA8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FFA8) - Data: 00 20 1F 49 88 72 0E E0 28 46 69 1C CD B2 1C 49 ... returns 0x3C (0000ms, 1952ms total)
T0B0C 6411:102 JLINK_ReadMemEx(0x0800FFA8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFA8) - Data: 00 20 returns 0x02 (0000ms, 1952ms total)
T0B0C 6411:102 JLINK_ReadMemEx(0x0800FFAA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFAA) - Data: 1F 49 returns 0x02 (0000ms, 1952ms total)
T0B0C 6411:102 JLINK_ReadMemEx(0x0800FFAA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFAA) - Data: 1F 49 returns 0x02 (0000ms, 1952ms total)
T0B0C 6411:102 JLINK_ReadMemEx(0x0800FFAC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FFAC) - Data: 88 72 0E E0 28 46 69 1C CD B2 1C 49 0C 54 08 E0 ... returns 0x3C (0000ms, 1952ms total)
T0B0C 6411:102 JLINK_ReadMemEx(0x0800FFAC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFAC) - Data: 88 72 returns 0x02 (0000ms, 1952ms total)
T0B0C 6411:102 JLINK_ReadMemEx(0x0800FFAC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FFAC) - Data: 88 72 0E E0 28 46 69 1C CD B2 1C 49 0C 54 08 E0 ... returns 0x3C (0000ms, 1952ms total)
T0B0C 6411:102 JLINK_ReadMemEx(0x0800FFAC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFAC) - Data: 88 72 returns 0x02 (0000ms, 1952ms total)
T0B0C 6411:102 JLINK_ReadMemEx(0x0800FFAE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFAE) - Data: 0E E0 returns 0x02 (0000ms, 1952ms total)
T0B0C 6411:102 JLINK_ReadMemEx(0x0800FFAE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFAE) - Data: 0E E0 returns 0x02 (0000ms, 1952ms total)
T0B0C 6411:102 JLINK_ReadMemEx(0x0800FFB0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FFB0) - Data: 28 46 69 1C CD B2 1C 49 0C 54 08 E0 1A 48 C5 72 ... returns 0x3C (0000ms, 1952ms total)
T0B0C 6411:102 JLINK_ReadMemEx(0x0800FFB0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFB0) - Data: 28 46 returns 0x02 (0000ms, 1952ms total)
T0B0C 6411:102 JLINK_ReadMemEx(0x0800FFB0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FFB0) - Data: 28 46 69 1C CD B2 1C 49 0C 54 08 E0 1A 48 C5 72 ... returns 0x3C (0000ms, 1952ms total)
T0B0C 6411:102 JLINK_ReadMemEx(0x0800FFB0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFB0) - Data: 28 46 returns 0x02 (0000ms, 1952ms total)
T0B0C 6411:102 JLINK_ReadMemEx(0x0800FFB2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFB2) - Data: 69 1C returns 0x02 (0000ms, 1952ms total)
T0B0C 6411:102 JLINK_ReadMemEx(0x0800FFB2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFB2) - Data: 69 1C returns 0x02 (0000ms, 1952ms total)
T0B0C 6411:102 JLINK_ReadMemEx(0x0800FFB4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FFB4) - Data: CD B2 1C 49 0C 54 08 E0 1A 48 C5 72 28 46 69 1C ... returns 0x3C (0000ms, 1952ms total)
T0B0C 6411:102 JLINK_ReadMemEx(0x0800FFB4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFB4) - Data: CD B2 returns 0x02 (0000ms, 1952ms total)
T0B0C 6411:102 JLINK_ReadMemEx(0x0800FFB4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FFB4) - Data: CD B2 1C 49 0C 54 08 E0 1A 48 C5 72 28 46 69 1C ... returns 0x3C (0001ms, 1953ms total)
T0B0C 6411:103 JLINK_ReadMemEx(0x0800FFB4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFB4) - Data: CD B2 returns 0x02 (0000ms, 1953ms total)
T0B0C 6411:103 JLINK_ReadMemEx(0x0800FFB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFB6) - Data: 1C 49 returns 0x02 (0000ms, 1953ms total)
T0B0C 6411:103 JLINK_ReadMemEx(0x0800FFB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFB6) - Data: 1C 49 returns 0x02 (0000ms, 1953ms total)
T0B0C 6411:103 JLINK_ReadMemEx(0x0800FFB8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FFB8) - Data: 0C 54 08 E0 1A 48 C5 72 28 46 69 1C CD B2 18 49 ... returns 0x3C (0000ms, 1953ms total)
T0B0C 6411:103 JLINK_ReadMemEx(0x0800FFB8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFB8) - Data: 0C 54 returns 0x02 (0000ms, 1953ms total)
T0B0C 6411:103 JLINK_ReadMemEx(0x0800FFB8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FFB8) - Data: 0C 54 08 E0 1A 48 C5 72 28 46 69 1C CD B2 18 49 ... returns 0x3C (0000ms, 1953ms total)
T0B0C 6411:103 JLINK_ReadMemEx(0x0800FFB8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFB8) - Data: 0C 54 returns 0x02 (0000ms, 1953ms total)
T0B0C 6411:103 JLINK_ReadMemEx(0x0800FFBA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFBA) - Data: 08 E0 returns 0x02 (0000ms, 1953ms total)
T0B0C 6411:103 JLINK_ReadMemEx(0x0800FFBA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFBA) - Data: 08 E0 returns 0x02 (0000ms, 1953ms total)
T0B0C 6411:103 JLINK_ReadMemEx(0x0800FFBC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FFBC) - Data: 1A 48 C5 72 28 46 69 1C CD B2 18 49 0C 54 00 E0 ... returns 0x3C (0000ms, 1953ms total)
T0B0C 6411:103 JLINK_ReadMemEx(0x0800FFBC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFBC) - Data: 1A 48 returns 0x02 (0000ms, 1953ms total)
T0B0C 6411:103 JLINK_ReadMemEx(0x0800FFBC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FFBC) - Data: 1A 48 C5 72 28 46 69 1C CD B2 18 49 0C 54 00 E0 ... returns 0x3C (0000ms, 1953ms total)
T0B0C 6411:103 JLINK_ReadMemEx(0x0800FFBC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFBC) - Data: 1A 48 returns 0x02 (0000ms, 1953ms total)
T0B0C 6411:103 JLINK_ReadMemEx(0x0800FFBE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFBE) - Data: C5 72 returns 0x02 (0000ms, 1953ms total)
T0B0C 6411:103 JLINK_ReadMemEx(0x0800FFBE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFBE) - Data: C5 72 returns 0x02 (0000ms, 1953ms total)
T0B0C 6411:103 JLINK_ReadMemEx(0x0800FFC0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FFC0) - Data: 28 46 69 1C CD B2 18 49 0C 54 00 E0 00 BF 00 BF ... returns 0x3C (0000ms, 1953ms total)
T0B0C 6411:103 JLINK_ReadMemEx(0x0800FFC0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFC0) - Data: 28 46 returns 0x02 (0000ms, 1953ms total)
T0B0C 6411:103 JLINK_ReadMemEx(0x0800FFC0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FFC0) - Data: 28 46 69 1C CD B2 18 49 0C 54 00 E0 00 BF 00 BF ... returns 0x3C (0000ms, 1953ms total)
T0B0C 6411:103 JLINK_ReadMemEx(0x0800FFC0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFC0) - Data: 28 46 returns 0x02 (0000ms, 1953ms total)
T0B0C 6411:103 JLINK_ReadMemEx(0x0800FFC2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFC2) - Data: 69 1C returns 0x02 (0000ms, 1953ms total)
T0B0C 6411:103 JLINK_ReadMemEx(0x0800FFC2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFC2) - Data: 69 1C returns 0x02 (0000ms, 1953ms total)
T0B0C 6411:103 JLINK_ReadMemEx(0x0800FFC4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FFC4) - Data: CD B2 18 49 0C 54 00 E0 00 BF 00 BF 60 1C C4 B2 ... returns 0x3C (0000ms, 1953ms total)
T0B0C 6411:103 JLINK_ReadMemEx(0x0800FFC4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFC4) - Data: CD B2 returns 0x02 (0001ms, 1954ms total)
T0B0C 6411:104 JLINK_ReadMemEx(0x0800FFC4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FFC4) - Data: CD B2 18 49 0C 54 00 E0 00 BF 00 BF 60 1C C4 B2 ... returns 0x3C (0000ms, 1954ms total)
T0B0C 6411:104 JLINK_ReadMemEx(0x0800FFC4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFC4) - Data: CD B2 returns 0x02 (0000ms, 1954ms total)
T0B0C 6411:104 JLINK_ReadMemEx(0x0800FFC6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFC6) - Data: 18 49 returns 0x02 (0000ms, 1954ms total)
T0B0C 6411:104 JLINK_ReadMemEx(0x0800FFC6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFC6) - Data: 18 49 returns 0x02 (0000ms, 1954ms total)
T0B0C 6411:104 JLINK_ReadMemEx(0x0800FFC8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FFC8) - Data: 0C 54 00 E0 00 BF 00 BF 60 1C C4 B2 04 2C DD DB ... returns 0x3C (0000ms, 1954ms total)
T0B0C 6411:104 JLINK_ReadMemEx(0x0800FFC8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFC8) - Data: 0C 54 returns 0x02 (0000ms, 1954ms total)
T0B0C 6411:104 JLINK_ReadMemEx(0x0800FFC8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FFC8) - Data: 0C 54 00 E0 00 BF 00 BF 60 1C C4 B2 04 2C DD DB ... returns 0x3C (0000ms, 1954ms total)
T0B0C 6411:104 JLINK_ReadMemEx(0x0800FFC8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFC8) - Data: 0C 54 returns 0x02 (0000ms, 1954ms total)
T0B0C 6411:104 JLINK_ReadMemEx(0x0800FFCA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFCA) - Data: 00 E0 returns 0x02 (0000ms, 1954ms total)
T0B0C 6411:104 JLINK_ReadMemEx(0x0800FFCA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFCA) - Data: 00 E0 returns 0x02 (0000ms, 1954ms total)
T0B0C 6411:104 JLINK_ReadMemEx(0x0800FFCC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FFCC) - Data: 00 BF 00 BF 60 1C C4 B2 04 2C DD DB 00 24 06 E0 ... returns 0x3C (0000ms, 1954ms total)
T0B0C 6411:104 JLINK_ReadMemEx(0x0800FFCC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFCC) - Data: 00 BF returns 0x02 (0000ms, 1954ms total)
T0B0C 6411:104 JLINK_ReadMemEx(0x0800FFCC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FFCC) - Data: 00 BF 00 BF 60 1C C4 B2 04 2C DD DB 00 24 06 E0 ... returns 0x3C (0000ms, 1954ms total)
T0B0C 6411:104 JLINK_ReadMemEx(0x0800FFCC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFCC) - Data: 00 BF returns 0x02 (0000ms, 1954ms total)
T0B0C 6411:104 JLINK_ReadMemEx(0x0800FFCE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFCE) - Data: 00 BF returns 0x02 (0000ms, 1954ms total)
T0B0C 6411:104 JLINK_ReadMemEx(0x0800FFCE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFCE) - Data: 00 BF returns 0x02 (0000ms, 1954ms total)
T0B0C 6411:104 JLINK_ReadMemEx(0x0800FFD0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FFD0) - Data: 60 1C C4 B2 04 2C DD DB 00 24 06 E0 12 4A 10 5D ... returns 0x3C (0000ms, 1954ms total)
T0B0C 6411:104 JLINK_ReadMemEx(0x0800FFD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFD0) - Data: 60 1C returns 0x02 (0000ms, 1954ms total)
T0B0C 6411:104 JLINK_ReadMemEx(0x0800FFD0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FFD0) - Data: 60 1C C4 B2 04 2C DD DB 00 24 06 E0 12 4A 10 5D ... returns 0x3C (0000ms, 1954ms total)
T0B0C 6411:104 JLINK_ReadMemEx(0x0800FFD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFD0) - Data: 60 1C returns 0x02 (0000ms, 1954ms total)
T0B0C 6411:104 JLINK_ReadMemEx(0x0800FFD2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFD2) - Data: C4 B2 returns 0x02 (0000ms, 1954ms total)
T0B0C 6411:104 JLINK_ReadMemEx(0x0800FFD2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFD2) - Data: C4 B2 returns 0x02 (0000ms, 1954ms total)
T0B0C 6411:104 JLINK_ReadMemEx(0x0800FFD4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FFD4) - Data: 04 2C DD DB 00 24 06 E0 12 4A 10 5D 13 4A 51 6B ... returns 0x3C (0000ms, 1954ms total)
T0B0C 6411:104 JLINK_ReadMemEx(0x0800FFD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFD4) - Data: 04 2C returns 0x02 (0000ms, 1954ms total)
T0B0C 6411:104 JLINK_ReadMemEx(0x0800FFD4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FFD4) - Data: 04 2C DD DB 00 24 06 E0 12 4A 10 5D 13 4A 51 6B ... returns 0x3C (0000ms, 1954ms total)
T0B0C 6411:104 JLINK_ReadMemEx(0x0800FFD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFD4) - Data: 04 2C returns 0x02 (0001ms, 1955ms total)
T0B0C 6411:105 JLINK_ReadMemEx(0x0800FFD6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFD6) - Data: DD DB returns 0x02 (0000ms, 1955ms total)
T0B0C 6411:105 JLINK_ReadMemEx(0x0800FFD6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFD6) - Data: DD DB returns 0x02 (0000ms, 1955ms total)
T0B0C 6411:105 JLINK_ReadMemEx(0x0800FFD8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FFD8) - Data: 00 24 06 E0 12 4A 10 5D 13 4A 51 6B 88 47 60 1C ... returns 0x3C (0000ms, 1955ms total)
T0B0C 6411:105 JLINK_ReadMemEx(0x0800FFD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFD8) - Data: 00 24 returns 0x02 (0000ms, 1955ms total)
T0B0C 6411:105 JLINK_ReadMemEx(0x0800FFD8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FFD8) - Data: 00 24 06 E0 12 4A 10 5D 13 4A 51 6B 88 47 60 1C ... returns 0x3C (0000ms, 1955ms total)
T0B0C 6411:105 JLINK_ReadMemEx(0x0800FFD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFD8) - Data: 00 24 returns 0x02 (0000ms, 1955ms total)
T0B0C 6411:105 JLINK_ReadMemEx(0x0800FFDA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFDA) - Data: 06 E0 returns 0x02 (0000ms, 1955ms total)
T0B0C 6411:105 JLINK_ReadMemEx(0x0800FFDA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFDA) - Data: 06 E0 returns 0x02 (0000ms, 1955ms total)
T0B0C 6411:105 JLINK_ReadMemEx(0x0800FFDC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FFDC) - Data: 12 4A 10 5D 13 4A 51 6B 88 47 60 1C C4 B2 0F 48 ... returns 0x3C (0000ms, 1955ms total)
T0B0C 6411:105 JLINK_ReadMemEx(0x0800FFDC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFDC) - Data: 12 4A returns 0x02 (0000ms, 1955ms total)
T0B0C 6411:105 JLINK_ReadMemEx(0x0800FFDC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FFDC) - Data: 12 4A 10 5D 13 4A 51 6B 88 47 60 1C C4 B2 0F 48 ... returns 0x3C (0000ms, 1955ms total)
T0B0C 6411:105 JLINK_ReadMemEx(0x0800FFDC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFDC) - Data: 12 4A returns 0x02 (0000ms, 1955ms total)
T0B0C 6411:105 JLINK_ReadMemEx(0x0800FFDE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFDE) - Data: 10 5D returns 0x02 (0000ms, 1955ms total)
T0B0C 6411:105 JLINK_ReadMemEx(0x0800FFDE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFDE) - Data: 10 5D returns 0x02 (0000ms, 1955ms total)
T0B0C 6411:105 JLINK_ReadMemEx(0x0800FFE0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FFE0) - Data: 13 4A 51 6B 88 47 60 1C C4 B2 0F 48 40 7A A0 42 ... returns 0x3C (0000ms, 1955ms total)
T0B0C 6411:105 JLINK_ReadMemEx(0x0800FFE0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFE0) - Data: 13 4A returns 0x02 (0000ms, 1955ms total)
T0B0C 6411:105 JLINK_ReadMemEx(0x0800FFE0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FFE0) - Data: 13 4A 51 6B 88 47 60 1C C4 B2 0F 48 40 7A A0 42 ... returns 0x3C (0000ms, 1955ms total)
T0B0C 6411:105 JLINK_ReadMemEx(0x0800FFE0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFE0) - Data: 13 4A returns 0x02 (0000ms, 1955ms total)
T0B0C 6411:105 JLINK_ReadMemEx(0x0800FFE2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFE2) - Data: 51 6B returns 0x02 (0000ms, 1955ms total)
T0B0C 6411:105 JLINK_ReadMemEx(0x0800FFE2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFE2) - Data: 51 6B returns 0x02 (0000ms, 1955ms total)
T0B0C 6411:105 JLINK_ReadMemEx(0x0800FFE4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FFE4) - Data: 88 47 60 1C C4 B2 0F 48 40 7A A0 42 F4 DC 10 48 ... returns 0x3C (0000ms, 1955ms total)
T0B0C 6411:105 JLINK_ReadMemEx(0x0800FFE4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFE4) - Data: 88 47 returns 0x02 (0000ms, 1955ms total)
T0B0C 6411:105 JLINK_ReadMemEx(0x0800FFE4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FFE4) - Data: 88 47 60 1C C4 B2 0F 48 40 7A A0 42 F4 DC 10 48 ... returns 0x3C (0000ms, 1955ms total)
T0B0C 6411:105 JLINK_ReadMemEx(0x0800FFE4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFE4) - Data: 88 47 returns 0x02 (0000ms, 1955ms total)
T0B0C 6411:105 JLINK_ReadMemEx(0x0800FFE6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFE6) - Data: 60 1C returns 0x02 (0000ms, 1955ms total)
T0B0C 6411:105 JLINK_ReadMemEx(0x0800FFE6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFE6) - Data: 60 1C returns 0x02 (0001ms, 1956ms total)
T0B0C 6411:106 JLINK_ReadMemEx(0x0800FFE8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FFE8) - Data: C4 B2 0F 48 40 7A A0 42 F4 DC 10 48 80 78 0C 49 ... returns 0x3C (0000ms, 1956ms total)
T0B0C 6411:106 JLINK_ReadMemEx(0x0800FFE8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFE8) - Data: C4 B2 returns 0x02 (0000ms, 1956ms total)
T0B0C 6411:106 JLINK_ReadMemEx(0x0800FFE8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FFE8) - Data: C4 B2 0F 48 40 7A A0 42 F4 DC 10 48 80 78 0C 49 ... returns 0x3C (0000ms, 1956ms total)
T0B0C 6411:106 JLINK_ReadMemEx(0x0800FFE8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFE8) - Data: C4 B2 returns 0x02 (0000ms, 1956ms total)
T0B0C 6411:106 JLINK_ReadMemEx(0x0800FFEA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFEA) - Data: 0F 48 returns 0x02 (0000ms, 1956ms total)
T0B0C 6411:106 JLINK_ReadMemEx(0x0800FFEA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFEA) - Data: 0F 48 returns 0x02 (0000ms, 1956ms total)
T0B0C 6411:106 JLINK_ReadMemEx(0x0800FFEC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FFEC) - Data: 40 7A A0 42 F4 DC 10 48 80 78 0C 49 49 7A 88 42 ... returns 0x3C (0000ms, 1956ms total)
T0B0C 6411:106 JLINK_ReadMemEx(0x0800FFEC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFEC) - Data: 40 7A returns 0x02 (0000ms, 1956ms total)
T0B0C 6411:106 JLINK_ReadMemEx(0x0800FFEC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FFEC) - Data: 40 7A A0 42 F4 DC 10 48 80 78 0C 49 49 7A 88 42 ... returns 0x3C (0000ms, 1956ms total)
T0B0C 6411:106 JLINK_ReadMemEx(0x0800FFEC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFEC) - Data: 40 7A returns 0x02 (0000ms, 1956ms total)
T0B0C 6411:106 JLINK_ReadMemEx(0x0800FFEE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFEE) - Data: A0 42 returns 0x02 (0000ms, 1956ms total)
T0B0C 6411:106 JLINK_ReadMemEx(0x0800FFEE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFEE) - Data: A0 42 returns 0x02 (0000ms, 1956ms total)
T0B0C 6411:106 JLINK_ReadMemEx(0x0800FFF0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FFF0) - Data: F4 DC 10 48 80 78 0C 49 49 7A 88 42 03 DD 0A 48 ... returns 0x3C (0000ms, 1956ms total)
T0B0C 6411:106 JLINK_ReadMemEx(0x0800FFF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFF0) - Data: F4 DC returns 0x02 (0000ms, 1956ms total)
T0B0C 6411:106 JLINK_ReadMemEx(0x0800FFF0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FFF0) - Data: F4 DC 10 48 80 78 0C 49 49 7A 88 42 03 DD 0A 48 ... returns 0x3C (0000ms, 1956ms total)
T0B0C 6411:106 JLINK_ReadMemEx(0x0800FFF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFF0) - Data: F4 DC returns 0x02 (0000ms, 1956ms total)
T0B0C 6411:106 JLINK_ReadMemEx(0x0800FFF2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFF2) - Data: 10 48 returns 0x02 (0000ms, 1956ms total)
T0B0C 6411:106 JLINK_ReadMemEx(0x0800FFF2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFF2) - Data: 10 48 returns 0x02 (0000ms, 1956ms total)
T0B0C 6411:106 JLINK_ReadMemEx(0x0800FFF4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FFF4) - Data: 80 78 0C 49 49 7A 88 42 03 DD 0A 48 40 7A 0C 49 ... returns 0x3C (0000ms, 1956ms total)
T0B0C 6411:106 JLINK_ReadMemEx(0x0800FFF4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFF4) - Data: 80 78 returns 0x02 (0000ms, 1956ms total)
T0B0C 6411:106 JLINK_ReadMemEx(0x0800FFF4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FFF4) - Data: 80 78 0C 49 49 7A 88 42 03 DD 0A 48 40 7A 0C 49 ... returns 0x3C (0000ms, 1956ms total)
T0B0C 6411:106 JLINK_ReadMemEx(0x0800FFF4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFF4) - Data: 80 78 returns 0x02 (0000ms, 1956ms total)
T0B0C 6411:106 JLINK_ReadMemEx(0x0800FFF6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFF6) - Data: 0C 49 returns 0x02 (0000ms, 1956ms total)
T0B0C 6411:106 JLINK_ReadMemEx(0x0800FFF6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFF6) - Data: 0C 49 returns 0x02 (0000ms, 1956ms total)
T0B0C 6411:106 JLINK_ReadMemEx(0x0800FFF8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FFF8) - Data: 49 7A 88 42 03 DD 0A 48 40 7A 0C 49 88 70 01 F0 ... returns 0x3C (0000ms, 1956ms total)
T0B0C 6411:106 JLINK_ReadMemEx(0x0800FFF8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFF8) - Data: 49 7A returns 0x02 (0000ms, 1956ms total)
T0B0C 6411:107 JLINK_ReadMemEx(0x0800FFF8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FFF8) - Data: 49 7A 88 42 03 DD 0A 48 40 7A 0C 49 88 70 01 F0 ... returns 0x3C (0000ms, 1957ms total)
T0B0C 6411:107 JLINK_ReadMemEx(0x0800FFF8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFF8) - Data: 49 7A returns 0x02 (0000ms, 1957ms total)
T0B0C 6411:107 JLINK_ReadMemEx(0x0800FFFA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFFA) - Data: 88 42 returns 0x02 (0000ms, 1957ms total)
T0B0C 6411:107 JLINK_ReadMemEx(0x0800FFFA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFFA) - Data: 88 42 returns 0x02 (0000ms, 1957ms total)
T0B0C 6411:107 JLINK_ReadMemEx(0x0800FFFC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FFFC) - Data: 03 DD 0A 48 40 7A 0C 49 88 70 01 F0 E7 FE 0B 48 ... returns 0x3C (0000ms, 1957ms total)
T0B0C 6411:107 JLINK_ReadMemEx(0x0800FFFC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFFC) - Data: 03 DD returns 0x02 (0000ms, 1957ms total)
T0B0C 6411:107 JLINK_ReadMemEx(0x0800FFFC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FFFC) - Data: 03 DD 0A 48 40 7A 0C 49 88 70 01 F0 E7 FE 0B 48 ... returns 0x3C (0000ms, 1957ms total)
T0B0C 6411:107 JLINK_ReadMemEx(0x0800FFFC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFFC) - Data: 03 DD returns 0x02 (0000ms, 1957ms total)
T0B0C 6411:107 JLINK_ReadMemEx(0x0800FFFE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFFE) - Data: 0A 48 returns 0x02 (0000ms, 1957ms total)
T0B0C 6411:107 JLINK_ReadMemEx(0x0800FFFE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FFFE) - Data: 0A 48 returns 0x02 (0000ms, 1957ms total)
T0B0C 6411:107 JLINK_ReadMemEx(0x08010000, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08010000) - Data: 40 7A 0C 49 88 70 01 F0 E7 FE 0B 48 80 8D 48 B1 ... returns 0x3C (0000ms, 1957ms total)
T0B0C 6411:107 JLINK_ReadMemEx(0x08010000, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010000) - Data: 40 7A returns 0x02 (0000ms, 1957ms total)
T0B0C 6411:107 JLINK_ReadMemEx(0x08010000, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08010000) - Data: 40 7A 0C 49 88 70 01 F0 E7 FE 0B 48 80 8D 48 B1 ... returns 0x3C (0000ms, 1957ms total)
T0B0C 6411:107 JLINK_ReadMemEx(0x08010000, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010000) - Data: 40 7A returns 0x02 (0000ms, 1957ms total)
T0B0C 6411:107 JLINK_ReadMemEx(0x08010002, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010002) - Data: 0C 49 returns 0x02 (0000ms, 1957ms total)
T0B0C 6411:107 JLINK_ReadMemEx(0x08010002, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010002) - Data: 0C 49 returns 0x02 (0000ms, 1957ms total)
T0B0C 6411:107 JLINK_ReadMemEx(0x08010004, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08010004) - Data: 88 70 01 F0 E7 FE 0B 48 80 8D 48 B1 FE F7 B8 FD ... returns 0x3C (0000ms, 1957ms total)
T0B0C 6411:107 JLINK_ReadMemEx(0x08010004, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010004) - Data: 88 70 returns 0x02 (0000ms, 1957ms total)
T0B0C 6411:107 JLINK_ReadMemEx(0x08010004, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08010004) - Data: 88 70 01 F0 E7 FE 0B 48 80 8D 48 B1 FE F7 B8 FD ... returns 0x3C (0000ms, 1957ms total)
T0B0C 6411:107 JLINK_ReadMemEx(0x08010004, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010004) - Data: 88 70 returns 0x02 (0000ms, 1957ms total)
T0B0C 6411:107 JLINK_ReadMemEx(0x08010006, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010006) - Data: 01 F0 returns 0x02 (0000ms, 1957ms total)
T0B0C 6411:107 JLINK_ReadMemEx(0x0800FF04, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF04) - Data: 01 F0 62 FF 05 49 C8 6A 80 47 06 46 E1 B2 04 48 ... returns 0x3C (0000ms, 1957ms total)
T0B0C 6411:107 JLINK_ReadMemEx(0x0800FF04, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF04) - Data: 01 F0 returns 0x02 (0000ms, 1957ms total)
T0B0C 6411:107 JLINK_ReadMemEx(0x0800FF06, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF06) - Data: 62 FF returns 0x02 (0000ms, 1957ms total)
T0B0C 6411:107 JLINK_ReadMemEx(0x0800FF08, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800FF08) - Data: 05 49 C8 6A 80 47 06 46 E1 B2 04 48 32 46 03 6A ... returns 0x3C (0000ms, 1957ms total)
T0B0C 6411:107 JLINK_ReadMemEx(0x0800FF08, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF08) - Data: 05 49 returns 0x02 (0001ms, 1958ms total)
T0B0C 6411:108 JLINK_ReadMemEx(0x0800FF0A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF0A) - Data: C8 6A returns 0x02 (0000ms, 1958ms total)
T0B0C 6411:108 JLINK_ReadMemEx(0x0801000A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801000A) - Data: 0B 48 returns 0x02 (0000ms, 1958ms total)
T0B0C 6411:108 JLINK_ReadMemEx(0x0801000C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0801000C) - Data: 80 8D 48 B1 FE F7 B8 FD 06 46 08 49 88 8D 05 49 ... returns 0x3C (0000ms, 1958ms total)
T0B0C 6411:108 JLINK_ReadMemEx(0x0801000C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801000C) - Data: 80 8D returns 0x02 (0000ms, 1958ms total)
T0B0C 6411:108 JLINK_ReadMemEx(0x0801000C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0801000C) - Data: 80 8D 48 B1 FE F7 B8 FD 06 46 08 49 88 8D 05 49 ... returns 0x3C (0000ms, 1958ms total)
T0B0C 6411:108 JLINK_ReadMemEx(0x0801000C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801000C) - Data: 80 8D returns 0x02 (0000ms, 1958ms total)
T0B0C 6411:108 JLINK_ReadMemEx(0x0801000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801000E) - Data: 48 B1 returns 0x02 (0000ms, 1958ms total)
T0B0C 6411:108 JLINK_ReadMemEx(0x0801000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801000E) - Data: 48 B1 returns 0x02 (0000ms, 1958ms total)
T0B0C 6411:108 JLINK_ReadMemEx(0x08010010, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08010010) - Data: FE F7 B8 FD 06 46 08 49 88 8D 05 49 32 46 8B 6B ... returns 0x3C (0000ms, 1958ms total)
T0B0C 6411:108 JLINK_ReadMemEx(0x08010010, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010010) - Data: FE F7 returns 0x02 (0000ms, 1958ms total)
T0B0C 6411:108 JLINK_ReadMemEx(0x08010010, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08010010) - Data: FE F7 B8 FD 06 46 08 49 88 8D 05 49 32 46 8B 6B ... returns 0x3C (0000ms, 1958ms total)
T0B0C 6411:108 JLINK_ReadMemEx(0x08010010, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010010) - Data: FE F7 returns 0x02 (0000ms, 1958ms total)
T0B0C 6411:108 JLINK_ReadMemEx(0x08010012, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010012) - Data: B8 FD returns 0x02 (0000ms, 1958ms total)
T0B0C 6411:108 JLINK_ReadMemEx(0x08010014, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08010014) - Data: 06 46 08 49 88 8D 05 49 32 46 8B 6B 04 21 98 47 ... returns 0x3C (0000ms, 1958ms total)
T0B0C 6411:108 JLINK_ReadMemEx(0x08010014, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010014) - Data: 06 46 returns 0x02 (0000ms, 1958ms total)
T0B0C 6411:108 JLINK_ReadMemEx(0x08010016, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010016) - Data: 08 49 returns 0x02 (0000ms, 1958ms total)
T0B0C 6411:108 JLINK_ReadMemEx(0x08010016, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010016) - Data: 08 49 returns 0x02 (0000ms, 1958ms total)
T0B0C 6411:108 JLINK_ReadMemEx(0x08010018, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08010018) - Data: 88 8D 05 49 32 46 8B 6B 04 21 98 47 70 BD 00 00 ... returns 0x3C (0000ms, 1958ms total)
T0B0C 6411:108 JLINK_ReadMemEx(0x08010018, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010018) - Data: 88 8D returns 0x02 (0000ms, 1958ms total)
T0B0C 6411:108 JLINK_ReadMemEx(0x08010018, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08010018) - Data: 88 8D 05 49 32 46 8B 6B 04 21 98 47 70 BD 00 00 ... returns 0x3C (0000ms, 1958ms total)
T0B0C 6411:108 JLINK_ReadMemEx(0x08010018, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010018) - Data: 88 8D returns 0x02 (0000ms, 1958ms total)
T0B0C 6411:108 JLINK_ReadMemEx(0x0801001A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801001A) - Data: 05 49 returns 0x02 (0000ms, 1958ms total)
T0B0C 6411:108 JLINK_ReadMemEx(0x0801001A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801001A) - Data: 05 49 returns 0x02 (0001ms, 1959ms total)
T0B0C 6411:109 JLINK_ReadMemEx(0x0801001C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0801001C) - Data: 32 46 8B 6B 04 21 98 47 70 BD 00 00 F8 10 00 20 ... returns 0x3C (0000ms, 1959ms total)
T0B0C 6411:109 JLINK_ReadMemEx(0x0801001C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801001C) - Data: 32 46 returns 0x02 (0000ms, 1959ms total)
T0B0C 6411:109 JLINK_ReadMemEx(0x0801001C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0801001C) - Data: 32 46 8B 6B 04 21 98 47 70 BD 00 00 F8 10 00 20 ... returns 0x3C (0000ms, 1959ms total)
T0B0C 6411:109 JLINK_ReadMemEx(0x0801001C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801001C) - Data: 32 46 returns 0x02 (0000ms, 1959ms total)
T0B0C 6411:109 JLINK_ReadMemEx(0x0801001E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801001E) - Data: 8B 6B returns 0x02 (0000ms, 1959ms total)
T0B0C 6415:830 JLINK_ReadMemEx(0x200007C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200007C0) - Data: BF 79 returns 0x02 (0001ms, 1960ms total)
T0B0C 6420:850 JLINK_ReadMemEx(0x200002F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200002C0) -- Updating C cache (64 bytes @ 0x200002C0) -- Read from C cache (4 bytes @ 0x200002F0) - Data: A5 1B 01 08 returns 0x04 (0002ms, 1962ms total)
T0B0C 6421:178 JLINK_ReadMemEx(0x08010002, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010002) - Data: 0C 49 returns 0x02 (0000ms, 1962ms total)
T0B0C 6421:178 JLINK_ReadMemEx(0x08010004, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08010004) - Data: 88 70 01 F0 E7 FE 0B 48 80 8D 48 B1 FE F7 B8 FD ... returns 0x3C (0000ms, 1962ms total)
T0B0C 6421:178 JLINK_ReadMemEx(0x08010004, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010004) - Data: 88 70 returns 0x02 (0000ms, 1962ms total)
T0B0C 6421:178 JLINK_ReadMemEx(0x08010004, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08010004) - Data: 88 70 01 F0 E7 FE 0B 48 80 8D 48 B1 FE F7 B8 FD ... returns 0x3C (0000ms, 1962ms total)
T0B0C 6421:178 JLINK_ReadMemEx(0x08010004, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010004) - Data: 88 70 returns 0x02 (0000ms, 1962ms total)
T0B0C 6421:178 JLINK_ReadMemEx(0x08010006, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010006) - Data: 01 F0 returns 0x02 (0000ms, 1962ms total)
T0B0C 6421:178 JLINK_ReadMemEx(0x08010006, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010006) - Data: 01 F0 returns 0x02 (0000ms, 1962ms total)
T0B0C 6421:178 JLINK_ReadMemEx(0x08010008, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08010008) - Data: E7 FE 0B 48 80 8D 48 B1 FE F7 B8 FD 06 46 08 49 ... returns 0x3C (0000ms, 1962ms total)
T0B0C 6421:178 JLINK_ReadMemEx(0x08010008, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010008) - Data: E7 FE returns 0x02 (0000ms, 1962ms total)
T0B0C 6421:178 JLINK_ReadMemEx(0x0801000A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801000A) - Data: 0B 48 returns 0x02 (0000ms, 1962ms total)
T0B0C 6421:178 JLINK_ReadMemEx(0x0801000C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0801000C) - Data: 80 8D 48 B1 FE F7 B8 FD 06 46 08 49 88 8D 05 49 ... returns 0x3C (0000ms, 1962ms total)
T0B0C 6421:178 JLINK_ReadMemEx(0x0801000C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801000C) - Data: 80 8D returns 0x02 (0000ms, 1962ms total)
T0B0C 6421:178 JLINK_ReadMemEx(0x0801000C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0801000C) - Data: 80 8D 48 B1 FE F7 B8 FD 06 46 08 49 88 8D 05 49 ... returns 0x3C (0000ms, 1962ms total)
T0B0C 6421:178 JLINK_ReadMemEx(0x0801000C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801000C) - Data: 80 8D returns 0x02 (0000ms, 1962ms total)
T0B0C 6421:178 JLINK_ReadMemEx(0x0801000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801000E) - Data: 48 B1 returns 0x02 (0000ms, 1962ms total)
T0B0C 6421:178 JLINK_ReadMemEx(0x0801000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801000E) - Data: 48 B1 returns 0x02 (0000ms, 1962ms total)
T0B0C 6421:178 JLINK_ReadMemEx(0x08010010, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08010010) - Data: FE F7 B8 FD 06 46 08 49 88 8D 05 49 32 46 8B 6B ... returns 0x3C (0000ms, 1962ms total)
T0B0C 6421:178 JLINK_ReadMemEx(0x08010010, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010010) - Data: FE F7 returns 0x02 (0000ms, 1962ms total)
T0B0C 6421:178 JLINK_ReadMemEx(0x08010010, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08010010) - Data: FE F7 B8 FD 06 46 08 49 88 8D 05 49 32 46 8B 6B ... returns 0x3C (0000ms, 1962ms total)
T0B0C 6421:178 JLINK_ReadMemEx(0x08010010, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010010) - Data: FE F7 returns 0x02 (0000ms, 1962ms total)
T0B0C 6421:178 JLINK_ReadMemEx(0x08010012, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010012) - Data: B8 FD returns 0x02 (0000ms, 1962ms total)
T0B0C 6421:178 JLINK_ReadMemEx(0x08010014, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08010014) - Data: 06 46 08 49 88 8D 05 49 32 46 8B 6B 04 21 98 47 ... returns 0x3C (0000ms, 1962ms total)
T0B0C 6421:178 JLINK_ReadMemEx(0x08010014, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010014) - Data: 06 46 returns 0x02 (0000ms, 1962ms total)
T0B0C 6421:178 JLINK_ReadMemEx(0x08010016, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010016) - Data: 08 49 returns 0x02 (0000ms, 1962ms total)
T0B0C 6421:178 JLINK_ReadMemEx(0x08010016, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010016) - Data: 08 49 returns 0x02 (0001ms, 1963ms total)
T0B0C 6421:179 JLINK_ReadMemEx(0x08010018, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08010018) - Data: 88 8D 05 49 32 46 8B 6B 04 21 98 47 70 BD 00 00 ... returns 0x3C (0000ms, 1963ms total)
T0B0C 6421:179 JLINK_ReadMemEx(0x08010018, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010018) - Data: 88 8D returns 0x02 (0000ms, 1963ms total)
T0B0C 6421:179 JLINK_ReadMemEx(0x08010018, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08010018) - Data: 88 8D 05 49 32 46 8B 6B 04 21 98 47 70 BD 00 00 ... returns 0x3C (0000ms, 1963ms total)
T0B0C 6421:179 JLINK_ReadMemEx(0x08010018, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010018) - Data: 88 8D returns 0x02 (0000ms, 1963ms total)
T0B0C 6421:179 JLINK_ReadMemEx(0x0801001A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801001A) - Data: 05 49 returns 0x02 (0000ms, 1963ms total)
T0B0C 6421:179 JLINK_ReadMemEx(0x0801001A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801001A) - Data: 05 49 returns 0x02 (0000ms, 1963ms total)
T0B0C 6421:179 JLINK_ReadMemEx(0x0801001C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0801001C) - Data: 32 46 8B 6B 04 21 98 47 70 BD 00 00 F8 10 00 20 ... returns 0x3C (0000ms, 1963ms total)
T0B0C 6421:179 JLINK_ReadMemEx(0x0801001C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801001C) - Data: 32 46 returns 0x02 (0000ms, 1963ms total)
T0B0C 6421:179 JLINK_ReadMemEx(0x0801001C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0801001C) - Data: 32 46 8B 6B 04 21 98 47 70 BD 00 00 F8 10 00 20 ... returns 0x3C (0000ms, 1963ms total)
T0B0C 6421:179 JLINK_ReadMemEx(0x0801001C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801001C) - Data: 32 46 returns 0x02 (0000ms, 1963ms total)
T0B0C 6421:179 JLINK_ReadMemEx(0x0801001E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801001E) - Data: 8B 6B returns 0x02 (0000ms, 1963ms total)
T0B0C 6421:490 JLINK_ReadMemEx(0x200002F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200002F0) - Data: A5 1B 01 08 returns 0x04 (0000ms, 1963ms total)
T1700 6424:548 JLINK_ReadMemEx(0x0801000A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801000A) - Data: 0B 48 returns 0x02 (0000ms, 1963ms total)
T1700 6424:548 JLINK_ReadMemEx(0x0801000C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0801000C) - Data: 80 8D 48 B1 FE F7 B8 FD 06 46 08 49 88 8D 05 49 ... returns 0x3C (0000ms, 1963ms total)
T1700 6424:548 JLINK_ReadMemEx(0x0801000C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801000C) - Data: 80 8D returns 0x02 (0000ms, 1963ms total)
T1700 6424:548 JLINK_ReadMemEx(0x0801000A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801000A) - Data: 0B 48 returns 0x02 (0001ms, 1964ms total)
T1700 6424:549 JLINK_Step() -- Read from C cache (2 bytes @ 0x0801000A) -- CPU_ReadMem(4 bytes @ 0xE000ED18) -- CPU_WriteMem(4 bytes @ 0xE000ED18) -- CPU_ReadMem(4 bytes @ 0xE000ED18) -- CPU_WriteMem(4 bytes @ 0xE000ED18) -- Read from C cache (4 bytes @ 0x08010038) -- Simulated returns 0x00 (0005ms, 1969ms total)
T1700 6424:554 JLINK_ReadReg(R15 (PC)) returns 0x0801000C (0000ms, 1969ms total)
T1700 6424:554 JLINK_ReadReg(XPSR) returns 0x61000000 (0000ms, 1969ms total)
T1700 6424:554 JLINK_ReadMemEx(0x0801000C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0801000C) - Data: 80 8D 48 B1 FE F7 B8 FD 06 46 08 49 88 8D 05 49 ... returns 0x3C (0000ms, 1969ms total)
T1700 6424:554 JLINK_ReadMemEx(0x0801000C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801000C) - Data: 80 8D returns 0x02 (0000ms, 1969ms total)
T1700 6424:554 JLINK_ReadMemEx(0x0801000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801000E) - Data: 48 B1 returns 0x02 (0000ms, 1969ms total)
T1700 6424:554 JLINK_Step() -- Read from C cache (2 bytes @ 0x0801000C) -- Read from C cache (2 bytes @ 0x200007C0) -- Simulated returns 0x00 (0000ms, 1969ms total)
T1700 6424:554 JLINK_ReadReg(R15 (PC)) returns 0x0801000E (0000ms, 1969ms total)
T1700 6424:555 JLINK_ReadReg(XPSR) returns 0x61000000 (0000ms, 1970ms total)
T1700 6424:555 JLINK_ReadMemEx(0x0801000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801000E) - Data: 48 B1 returns 0x02 (0000ms, 1970ms total)
T1700 6424:555 JLINK_ReadMemEx(0x08010010, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08010010) - Data: FE F7 B8 FD 06 46 08 49 88 8D 05 49 32 46 8B 6B ... returns 0x3C (0000ms, 1970ms total)
T1700 6424:555 JLINK_ReadMemEx(0x08010010, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010010) - Data: FE F7 returns 0x02 (0000ms, 1970ms total)
T1700 6424:555 JLINK_Step() -- Read from C cache (2 bytes @ 0x0801000E) -- Simulated returns 0x00 (0000ms, 1970ms total)
T1700 6424:555 JLINK_ReadReg(R15 (PC)) returns 0x08010010 (0000ms, 1970ms total)
T1700 6424:555 JLINK_ReadReg(XPSR) returns 0x61000000 (0000ms, 1970ms total)
T1700 6424:556 JLINK_ReadReg(R0) returns 0x000079BF (0000ms, 1970ms total)
T1700 6424:556 JLINK_ReadReg(R1) returns 0x00000020 (0000ms, 1970ms total)
T1700 6424:556 JLINK_ReadReg(R2) returns 0x08013A70 (0000ms, 1970ms total)
T1700 6424:556 JLINK_ReadReg(R3) returns 0x00000003 (0000ms, 1970ms total)
T1700 6424:556 JLINK_ReadReg(R4) returns 0x00000001 (0000ms, 1970ms total)
T1700 6424:556 JLINK_ReadReg(R5) returns 0x00000001 (0000ms, 1970ms total)
T1700 6424:556 JLINK_ReadReg(R6) returns 0x00000000 (0000ms, 1970ms total)
T1700 6424:556 JLINK_ReadReg(R7) returns 0x00000000 (0000ms, 1970ms total)
T1700 6424:556 JLINK_ReadReg(R8) returns 0x00000000 (0000ms, 1970ms total)
T1700 6424:556 JLINK_ReadReg(R9) returns 0x20000134 (0000ms, 1970ms total)
T1700 6424:556 JLINK_ReadReg(R10) returns 0x00000000 (0000ms, 1970ms total)
T1700 6424:556 JLINK_ReadReg(R11) returns 0x00000000 (0000ms, 1970ms total)
T1700 6424:556 JLINK_ReadReg(R12) returns 0x00000004 (0000ms, 1970ms total)
T1700 6424:556 JLINK_ReadReg(R13 (SP)) returns 0x2000E108 (0000ms, 1970ms total)
T1700 6424:556 JLINK_ReadReg(R14) returns 0x08009F35 (0000ms, 1970ms total)
T1700 6424:556 JLINK_ReadReg(R15 (PC)) returns 0x08010010 (0000ms, 1970ms total)
T1700 6424:556 JLINK_ReadReg(XPSR) returns 0x61000000 (0000ms, 1970ms total)
T1700 6424:556 JLINK_ReadReg(MSP) returns 0x2000E108 (0000ms, 1970ms total)
T1700 6424:556 JLINK_ReadReg(PSP) returns 0x20001000 (0000ms, 1970ms total)
T1700 6424:556 JLINK_ReadReg(CFBP) returns 0x00000001 (0000ms, 1970ms total)
T1700 6424:556 JLINK_ReadReg(FPSCR) returns 0x00000000 (0000ms, 1970ms total)
T1700 6424:556 JLINK_ReadReg(FPS0) returns 0xFB068412 (0000ms, 1970ms total)
T1700 6424:556 JLINK_ReadReg(FPS1) returns 0x10110C5A (0000ms, 1970ms total)
T1700 6424:556 JLINK_ReadReg(FPS2) returns 0x04345E8B (0000ms, 1970ms total)
T1700 6424:556 JLINK_ReadReg(FPS3) returns 0x84492403 (0000ms, 1970ms total)
T1700 6424:556 JLINK_ReadReg(FPS4) returns 0x18248A10 (0000ms, 1970ms total)
T1700 6424:556 JLINK_ReadReg(FPS5) returns 0x24102496 (0000ms, 1970ms total)
T1700 6424:556 JLINK_ReadReg(FPS6) returns 0x82C0846D (0000ms, 1970ms total)
T1700 6424:556 JLINK_ReadReg(FPS7) returns 0x28E02089 (0001ms, 1971ms total)
T1700 6424:557 JLINK_ReadReg(FPS8) returns 0x05488443 (0000ms, 1971ms total)
T1700 6424:557 JLINK_ReadReg(FPS9) returns 0xF172B840 (0000ms, 1971ms total)
T1700 6424:557 JLINK_ReadReg(FPS10) returns 0x11B25004 (0000ms, 1971ms total)
T1700 6424:557 JLINK_ReadReg(FPS11) returns 0x000A0122 (0000ms, 1971ms total)
T1700 6424:557 JLINK_ReadReg(FPS12) returns 0x02345609 (0000ms, 1971ms total)
T1700 6424:557 JLINK_ReadReg(FPS13) returns 0x86007109 (0000ms, 1971ms total)
T1700 6424:557 JLINK_ReadReg(FPS14) returns 0xA03C9BD0 (0000ms, 1971ms total)
T1700 6424:557 JLINK_ReadReg(FPS15) returns 0x5012A400 (0000ms, 1971ms total)
T1700 6424:557 JLINK_ReadReg(FPS16) returns 0x1591822D (0000ms, 1971ms total)
T1700 6424:557 JLINK_ReadReg(FPS17) returns 0x9415225C (0000ms, 1971ms total)
T1700 6424:557 JLINK_ReadReg(FPS18) returns 0x0C0917B5 (0000ms, 1971ms total)
T1700 6424:557 JLINK_ReadReg(FPS19) returns 0x1C78D422 (0000ms, 1971ms total)
T1700 6424:557 JLINK_ReadReg(FPS20) returns 0xB4874081 (0000ms, 1971ms total)
T1700 6424:557 JLINK_ReadReg(FPS21) returns 0x108D0118 (0000ms, 1971ms total)
T1700 6424:557 JLINK_ReadReg(FPS22) returns 0x9044A200 (0000ms, 1971ms total)
T1700 6424:557 JLINK_ReadReg(FPS23) returns 0x781449E0 (0000ms, 1971ms total)
T1700 6424:557 JLINK_ReadReg(FPS24) returns 0x1C330E11 (0000ms, 1971ms total)
T1700 6424:557 JLINK_ReadReg(FPS25) returns 0xC605704C (0000ms, 1971ms total)
T1700 6424:557 JLINK_ReadReg(FPS26) returns 0x2C30E195 (0000ms, 1971ms total)
T1700 6424:557 JLINK_ReadReg(FPS27) returns 0x8032365D (0000ms, 1971ms total)
T1700 6424:557 JLINK_ReadReg(FPS28) returns 0x068522B7 (0000ms, 1971ms total)
T1700 6424:557 JLINK_ReadReg(FPS29) returns 0x121C1711 (0000ms, 1971ms total)
T1700 6424:557 JLINK_ReadReg(FPS30) returns 0x41020916 (0000ms, 1971ms total)
T1700 6424:557 JLINK_ReadReg(FPS31) returns 0x11A63042 (0000ms, 1971ms total)
T0B0C 6424:558 JLINK_ReadMemEx(0x2000E114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E114) - Data: 1F C2 00 08 returns 0x04 (0000ms, 1971ms total)
T0B0C 6424:558 JLINK_ReadMemEx(0x2000E108, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E108) - Data: 00 00 00 00 returns 0x04 (0000ms, 1971ms total)
T0B0C 6424:558 JLINK_ReadMemEx(0x2000E10C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E10C) - Data: 84 59 01 08 returns 0x04 (0000ms, 1971ms total)
T0B0C 6424:558 JLINK_ReadMemEx(0x2000E110, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E110) - Data: 00 00 00 00 returns 0x04 (0000ms, 1971ms total)
T0B0C 6424:558 JLINK_ReadMemEx(0x2000E114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E114) - Data: 1F C2 00 08 returns 0x04 (0000ms, 1971ms total)
T0B0C 6424:558 JLINK_ReadMemEx(0x2000E11C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E11C) - Data: 2F F9 00 08 returns 0x04 (0000ms, 1971ms total)
T0B0C 6424:558 JLINK_ReadMemEx(0x2000E118, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E118) - Data: 00 00 00 00 returns 0x04 (0000ms, 1971ms total)
T0B0C 6424:558 JLINK_ReadMemEx(0x2000E11C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E11C) - Data: 2F F9 00 08 returns 0x04 (0000ms, 1971ms total)
T0B0C 6424:559 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: E3 B5 0E 00 returns 1 (0000ms, 1971ms total)
T0B0C 6424:559 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000588) - Data: 00 returns 0x01 (0000ms, 1971ms total)
T0B0C 6424:559 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200007ED) - Data: DC returns 0x01 (0000ms, 1971ms total)
T0B0C 6424:559 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200007EE) - Data: 00 returns 0x01 (0000ms, 1971ms total)
T0B0C 6424:559 JLINK_ReadMemEx(0x2000042C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000042C) - Data: 00 00 00 00 returns 0x04 (0001ms, 1972ms total)
T1700 6426:493 JLINK_ReadMemEx(0x08010010, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08010010) - Data: FE F7 B8 FD 06 46 08 49 88 8D 05 49 32 46 8B 6B ... returns 0x3C (0000ms, 1972ms total)
T1700 6426:493 JLINK_ReadMemEx(0x08010010, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010010) - Data: FE F7 returns 0x02 (0000ms, 1972ms total)
T1700 6426:493 JLINK_ReadMemEx(0x08010012, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010012) - Data: B8 FD returns 0x02 (0000ms, 1972ms total)
T1700 6426:493 JLINK_ReadMemEx(0x08010010, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010010) - Data: FE F7 returns 0x02 (0000ms, 1972ms total)
T1700 6426:493 JLINK_Step() -- Read from C cache (2 bytes @ 0x08010010) -- Read from C cache (2 bytes @ 0x08010012) -- Simulated returns 0x00 (0001ms, 1973ms total)
T1700 6426:494 JLINK_ReadReg(R15 (PC)) returns 0x0800EB84 (0000ms, 1973ms total)
T1700 6426:494 JLINK_ReadReg(XPSR) returns 0x61000000 (0000ms, 1973ms total)
T1700 6426:497 JLINK_ReadReg(R0) returns 0x000079BF (0000ms, 1973ms total)
T1700 6426:497 JLINK_ReadReg(R1) returns 0x00000020 (0000ms, 1973ms total)
T1700 6426:497 JLINK_ReadReg(R2) returns 0x08013A70 (0000ms, 1973ms total)
T1700 6426:497 JLINK_ReadReg(R3) returns 0x00000003 (0000ms, 1973ms total)
T1700 6426:497 JLINK_ReadReg(R4) returns 0x00000001 (0000ms, 1973ms total)
T1700 6426:497 JLINK_ReadReg(R5) returns 0x00000001 (0000ms, 1973ms total)
T1700 6426:497 JLINK_ReadReg(R6) returns 0x00000000 (0000ms, 1973ms total)
T1700 6426:497 JLINK_ReadReg(R7) returns 0x00000000 (0000ms, 1973ms total)
T1700 6426:497 JLINK_ReadReg(R8) returns 0x00000000 (0000ms, 1973ms total)
T1700 6426:497 JLINK_ReadReg(R9) returns 0x20000134 (0000ms, 1973ms total)
T1700 6426:497 JLINK_ReadReg(R10) returns 0x00000000 (0000ms, 1973ms total)
T1700 6426:497 JLINK_ReadReg(R11) returns 0x00000000 (0000ms, 1973ms total)
T1700 6426:497 JLINK_ReadReg(R12) returns 0x00000004 (0000ms, 1973ms total)
T1700 6426:497 JLINK_ReadReg(R13 (SP)) returns 0x2000E108 (0000ms, 1973ms total)
T1700 6426:497 JLINK_ReadReg(R14) returns 0x08010015 (0000ms, 1973ms total)
T1700 6426:497 JLINK_ReadReg(R15 (PC)) returns 0x0800EB84 (0000ms, 1973ms total)
T1700 6426:497 JLINK_ReadReg(XPSR) returns 0x61000000 (0000ms, 1973ms total)
T1700 6426:497 JLINK_ReadReg(MSP) returns 0x2000E108 (0000ms, 1973ms total)
T1700 6426:497 JLINK_ReadReg(PSP) returns 0x20001000 (0000ms, 1973ms total)
T1700 6426:497 JLINK_ReadReg(CFBP) returns 0x00000001 (0000ms, 1973ms total)
T1700 6426:497 JLINK_ReadReg(FPSCR) returns 0x00000000 (0000ms, 1973ms total)
T1700 6426:497 JLINK_ReadReg(FPS0) returns 0xFB068412 (0000ms, 1973ms total)
T1700 6426:497 JLINK_ReadReg(FPS1) returns 0x10110C5A (0000ms, 1973ms total)
T1700 6426:497 JLINK_ReadReg(FPS2) returns 0x04345E8B (0000ms, 1973ms total)
T1700 6426:497 JLINK_ReadReg(FPS3) returns 0x84492403 (0000ms, 1973ms total)
T1700 6426:497 JLINK_ReadReg(FPS4) returns 0x18248A10 (0000ms, 1973ms total)
T1700 6426:497 JLINK_ReadReg(FPS5) returns 0x24102496 (0000ms, 1973ms total)
T1700 6426:497 JLINK_ReadReg(FPS6) returns 0x82C0846D (0000ms, 1973ms total)
T1700 6426:497 JLINK_ReadReg(FPS7) returns 0x28E02089 (0000ms, 1973ms total)
T1700 6426:497 JLINK_ReadReg(FPS8) returns 0x05488443 (0000ms, 1973ms total)
T1700 6426:497 JLINK_ReadReg(FPS9) returns 0xF172B840 (0000ms, 1973ms total)
T1700 6426:497 JLINK_ReadReg(FPS10) returns 0x11B25004 (0000ms, 1973ms total)
T1700 6426:497 JLINK_ReadReg(FPS11) returns 0x000A0122 (0000ms, 1973ms total)
T1700 6426:497 JLINK_ReadReg(FPS12) returns 0x02345609 (0000ms, 1973ms total)
T1700 6426:497 JLINK_ReadReg(FPS13) returns 0x86007109 (0000ms, 1973ms total)
T1700 6426:497 JLINK_ReadReg(FPS14) returns 0xA03C9BD0 (0000ms, 1973ms total)
T1700 6426:497 JLINK_ReadReg(FPS15) returns 0x5012A400 (0000ms, 1973ms total)
T1700 6426:497 JLINK_ReadReg(FPS16) returns 0x1591822D (0000ms, 1973ms total)
T1700 6426:497 JLINK_ReadReg(FPS17) returns 0x9415225C (0000ms, 1973ms total)
T1700 6426:497 JLINK_ReadReg(FPS18) returns 0x0C0917B5 (0001ms, 1974ms total)
T1700 6426:498 JLINK_ReadReg(FPS19) returns 0x1C78D422 (0000ms, 1974ms total)
T1700 6426:498 JLINK_ReadReg(FPS20) returns 0xB4874081 (0000ms, 1974ms total)
T1700 6426:498 JLINK_ReadReg(FPS21) returns 0x108D0118 (0000ms, 1974ms total)
T1700 6426:498 JLINK_ReadReg(FPS22) returns 0x9044A200 (0000ms, 1974ms total)
T1700 6426:498 JLINK_ReadReg(FPS23) returns 0x781449E0 (0000ms, 1974ms total)
T1700 6426:498 JLINK_ReadReg(FPS24) returns 0x1C330E11 (0000ms, 1974ms total)
T1700 6426:498 JLINK_ReadReg(FPS25) returns 0xC605704C (0000ms, 1974ms total)
T1700 6426:498 JLINK_ReadReg(FPS26) returns 0x2C30E195 (0000ms, 1974ms total)
T1700 6426:498 JLINK_ReadReg(FPS27) returns 0x8032365D (0000ms, 1974ms total)
T1700 6426:498 JLINK_ReadReg(FPS28) returns 0x068522B7 (0000ms, 1974ms total)
T1700 6426:498 JLINK_ReadReg(FPS29) returns 0x121C1711 (0000ms, 1974ms total)
T1700 6426:498 JLINK_ReadReg(FPS30) returns 0x41020916 (0000ms, 1974ms total)
T1700 6426:498 JLINK_ReadReg(FPS31) returns 0x11A63042 (0000ms, 1974ms total)
T0B0C 6426:498 JLINK_ReadMemEx(0x2000E114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E114) - Data: 1F C2 00 08 returns 0x04 (0000ms, 1974ms total)
T0B0C 6426:498 JLINK_ReadMemEx(0x2000E108, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E108) - Data: 00 00 00 00 returns 0x04 (0000ms, 1974ms total)
T0B0C 6426:498 JLINK_ReadMemEx(0x2000E10C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E10C) - Data: 84 59 01 08 returns 0x04 (0000ms, 1974ms total)
T0B0C 6426:498 JLINK_ReadMemEx(0x2000E110, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E110) - Data: 00 00 00 00 returns 0x04 (0000ms, 1974ms total)
T0B0C 6426:498 JLINK_ReadMemEx(0x2000E114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E114) - Data: 1F C2 00 08 returns 0x04 (0000ms, 1974ms total)
T0B0C 6426:498 JLINK_ReadMemEx(0x2000E11C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E11C) - Data: 2F F9 00 08 returns 0x04 (0000ms, 1974ms total)
T0B0C 6426:498 JLINK_ReadMemEx(0x2000E118, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E118) - Data: 00 00 00 00 returns 0x04 (0000ms, 1974ms total)
T0B0C 6426:498 JLINK_ReadMemEx(0x2000E11C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E11C) - Data: 2F F9 00 08 returns 0x04 (0000ms, 1974ms total)
T0B0C 6426:503 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: E4 B5 0E 00 returns 1 (0000ms, 1974ms total)
T0B0C 6426:503 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000588) - Data: 00 returns 0x01 (0000ms, 1974ms total)
T0B0C 6426:503 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200007ED) - Data: DC returns 0x01 (0000ms, 1974ms total)
T0B0C 6426:503 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200007EE) - Data: 00 returns 0x01 (0000ms, 1974ms total)
T0B0C 6426:503 JLINK_ReadMemEx(0x2000042C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000042C) - Data: 00 00 00 00 returns 0x04 (0000ms, 1974ms total)
T0B0C 6426:505 JLINK_ReadMemEx(0x0800EA88, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x0800EA80) -- Updating C cache (128 bytes @ 0x0800EA80) -- Read from C cache (60 bytes @ 0x0800EA88) - Data: 17 48 80 78 28 28 03 D1 04 20 16 49 C8 72 24 E0 ... returns 0x3C (0002ms, 1976ms total)
T0B0C 6426:507 JLINK_ReadMemEx(0x0800EA88, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EA88) - Data: 17 48 returns 0x02 (0000ms, 1976ms total)
T0B0C 6426:507 JLINK_ReadMemEx(0x0800EA8A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EA8A) - Data: 80 78 returns 0x02 (0000ms, 1976ms total)
T0B0C 6426:507 JLINK_ReadMemEx(0x0800EA8A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EA8A) - Data: 80 78 returns 0x02 (0000ms, 1976ms total)
T0B0C 6426:507 JLINK_ReadMemEx(0x0800EA8C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EA8C) - Data: 28 28 03 D1 04 20 16 49 C8 72 24 E0 13 48 80 78 ... returns 0x3C (0000ms, 1976ms total)
T0B0C 6426:507 JLINK_ReadMemEx(0x0800EA8C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EA8C) - Data: 28 28 returns 0x02 (0000ms, 1976ms total)
T0B0C 6426:507 JLINK_ReadMemEx(0x0800EA8C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EA8C) - Data: 28 28 03 D1 04 20 16 49 C8 72 24 E0 13 48 80 78 ... returns 0x3C (0000ms, 1976ms total)
T0B0C 6426:507 JLINK_ReadMemEx(0x0800EA8C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EA8C) - Data: 28 28 returns 0x02 (0000ms, 1976ms total)
T0B0C 6426:507 JLINK_ReadMemEx(0x0800EA8E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EA8E) - Data: 03 D1 returns 0x02 (0000ms, 1976ms total)
T0B0C 6426:507 JLINK_ReadMemEx(0x0800EA8E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EA8E) - Data: 03 D1 returns 0x02 (0000ms, 1976ms total)
T0B0C 6426:507 JLINK_ReadMemEx(0x0800EA90, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EA90) - Data: 04 20 16 49 C8 72 24 E0 13 48 80 78 10 28 0F D1 ... returns 0x3C (0000ms, 1976ms total)
T0B0C 6426:507 JLINK_ReadMemEx(0x0800EA90, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EA90) - Data: 04 20 returns 0x02 (0000ms, 1976ms total)
T0B0C 6426:507 JLINK_ReadMemEx(0x0800EA90, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EA90) - Data: 04 20 16 49 C8 72 24 E0 13 48 80 78 10 28 0F D1 ... returns 0x3C (0000ms, 1976ms total)
T0B0C 6426:507 JLINK_ReadMemEx(0x0800EA90, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EA90) - Data: 04 20 returns 0x02 (0000ms, 1976ms total)
T0B0C 6426:507 JLINK_ReadMemEx(0x0800EA92, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EA92) - Data: 16 49 returns 0x02 (0000ms, 1976ms total)
T0B0C 6426:507 JLINK_ReadMemEx(0x0800EA92, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EA92) - Data: 16 49 returns 0x02 (0000ms, 1976ms total)
T0B0C 6426:507 JLINK_ReadMemEx(0x0800EA94, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EA94) - Data: C8 72 24 E0 13 48 80 78 10 28 0F D1 12 48 C0 7A ... returns 0x3C (0000ms, 1976ms total)
T0B0C 6426:507 JLINK_ReadMemEx(0x0800EA94, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EA94) - Data: C8 72 returns 0x02 (0000ms, 1976ms total)
T0B0C 6426:507 JLINK_ReadMemEx(0x0800EA94, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EA94) - Data: C8 72 24 E0 13 48 80 78 10 28 0F D1 12 48 C0 7A ... returns 0x3C (0000ms, 1976ms total)
T0B0C 6426:507 JLINK_ReadMemEx(0x0800EA94, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EA94) - Data: C8 72 returns 0x02 (0000ms, 1976ms total)
T0B0C 6426:507 JLINK_ReadMemEx(0x0800EA96, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EA96) - Data: 24 E0 returns 0x02 (0000ms, 1976ms total)
T0B0C 6426:507 JLINK_ReadMemEx(0x0800EA96, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EA96) - Data: 24 E0 returns 0x02 (0000ms, 1976ms total)
T0B0C 6426:507 JLINK_ReadMemEx(0x0800EA98, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EA98) - Data: 13 48 80 78 10 28 0F D1 12 48 C0 7A 03 28 07 D0 ... returns 0x3C (0001ms, 1977ms total)
T0B0C 6426:508 JLINK_ReadMemEx(0x0800EA98, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EA98) - Data: 13 48 returns 0x02 (0000ms, 1977ms total)
T0B0C 6426:508 JLINK_ReadMemEx(0x0800EA98, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EA98) - Data: 13 48 80 78 10 28 0F D1 12 48 C0 7A 03 28 07 D0 ... returns 0x3C (0000ms, 1977ms total)
T0B0C 6426:508 JLINK_ReadMemEx(0x0800EA98, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EA98) - Data: 13 48 returns 0x02 (0000ms, 1977ms total)
T0B0C 6426:508 JLINK_ReadMemEx(0x0800EA9A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EA9A) - Data: 80 78 returns 0x02 (0000ms, 1977ms total)
T0B0C 6426:508 JLINK_ReadMemEx(0x0800EA9A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EA9A) - Data: 80 78 returns 0x02 (0000ms, 1977ms total)
T0B0C 6426:508 JLINK_ReadMemEx(0x0800EA9C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EA9C) - Data: 10 28 0F D1 12 48 C0 7A 03 28 07 D0 10 48 C0 7A ... returns 0x3C (0000ms, 1977ms total)
T0B0C 6426:508 JLINK_ReadMemEx(0x0800EA9C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EA9C) - Data: 10 28 returns 0x02 (0000ms, 1977ms total)
T0B0C 6426:508 JLINK_ReadMemEx(0x0800EA9C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EA9C) - Data: 10 28 0F D1 12 48 C0 7A 03 28 07 D0 10 48 C0 7A ... returns 0x3C (0000ms, 1977ms total)
T0B0C 6426:508 JLINK_ReadMemEx(0x0800EA9C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EA9C) - Data: 10 28 returns 0x02 (0000ms, 1977ms total)
T0B0C 6426:508 JLINK_ReadMemEx(0x0800EA9E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EA9E) - Data: 0F D1 returns 0x02 (0000ms, 1977ms total)
T0B0C 6426:508 JLINK_ReadMemEx(0x0800EA9E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EA9E) - Data: 0F D1 returns 0x02 (0000ms, 1977ms total)
T0B0C 6426:508 JLINK_ReadMemEx(0x0800EAA0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EAA0) - Data: 12 48 C0 7A 03 28 07 D0 10 48 C0 7A 02 28 03 D0 ... returns 0x3C (0000ms, 1977ms total)
T0B0C 6426:508 JLINK_ReadMemEx(0x0800EAA0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAA0) - Data: 12 48 returns 0x02 (0000ms, 1977ms total)
T0B0C 6426:508 JLINK_ReadMemEx(0x0800EAA0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EAA0) - Data: 12 48 C0 7A 03 28 07 D0 10 48 C0 7A 02 28 03 D0 ... returns 0x3C (0000ms, 1977ms total)
T0B0C 6426:508 JLINK_ReadMemEx(0x0800EAA0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAA0) - Data: 12 48 returns 0x02 (0000ms, 1977ms total)
T0B0C 6426:508 JLINK_ReadMemEx(0x0800EAA2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAA2) - Data: C0 7A returns 0x02 (0000ms, 1977ms total)
T0B0C 6426:508 JLINK_ReadMemEx(0x0800EAA2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAA2) - Data: C0 7A returns 0x02 (0000ms, 1977ms total)
T0B0C 6426:508 JLINK_ReadMemEx(0x0800EAA4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EAA4) - Data: 03 28 07 D0 10 48 C0 7A 02 28 03 D0 02 20 0E 49 ... returns 0x3C (0000ms, 1977ms total)
T0B0C 6426:508 JLINK_ReadMemEx(0x0800EAA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAA4) - Data: 03 28 returns 0x02 (0000ms, 1977ms total)
T0B0C 6426:508 JLINK_ReadMemEx(0x0800EAA4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EAA4) - Data: 03 28 07 D0 10 48 C0 7A 02 28 03 D0 02 20 0E 49 ... returns 0x3C (0000ms, 1977ms total)
T0B0C 6426:508 JLINK_ReadMemEx(0x0800EAA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAA4) - Data: 03 28 returns 0x02 (0000ms, 1977ms total)
T0B0C 6426:508 JLINK_ReadMemEx(0x0800EAA6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAA6) - Data: 07 D0 returns 0x02 (0000ms, 1977ms total)
T0B0C 6426:508 JLINK_ReadMemEx(0x0800EAA6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAA6) - Data: 07 D0 returns 0x02 (0000ms, 1977ms total)
T0B0C 6426:508 JLINK_ReadMemEx(0x0800EAA8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EAA8) - Data: 10 48 C0 7A 02 28 03 D0 02 20 0E 49 C8 72 14 E0 ... returns 0x3C (0000ms, 1977ms total)
T0B0C 6426:508 JLINK_ReadMemEx(0x0800EAA8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAA8) - Data: 10 48 returns 0x02 (0000ms, 1977ms total)
T0B0C 6426:508 JLINK_ReadMemEx(0x0800EAA8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EAA8) - Data: 10 48 C0 7A 02 28 03 D0 02 20 0E 49 C8 72 14 E0 ... returns 0x3C (0000ms, 1977ms total)
T0B0C 6426:508 JLINK_ReadMemEx(0x0800EAA8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAA8) - Data: 10 48 returns 0x02 (0000ms, 1977ms total)
T0B0C 6426:508 JLINK_ReadMemEx(0x0800EAAA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAAA) - Data: C0 7A returns 0x02 (0000ms, 1977ms total)
T0B0C 6426:508 JLINK_ReadMemEx(0x0800EAAA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAAA) - Data: C0 7A returns 0x02 (0000ms, 1977ms total)
T0B0C 6426:508 JLINK_ReadMemEx(0x0800EAAC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EAAC) - Data: 02 28 03 D0 02 20 0E 49 C8 72 14 E0 03 20 0C 49 ... returns 0x3C (0000ms, 1977ms total)
T0B0C 6426:508 JLINK_ReadMemEx(0x0800EAAC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAAC) - Data: 02 28 returns 0x02 (0000ms, 1977ms total)
T0B0C 6426:508 JLINK_ReadMemEx(0x0800EAAC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EAAC) - Data: 02 28 03 D0 02 20 0E 49 C8 72 14 E0 03 20 0C 49 ... returns 0x3C (0000ms, 1977ms total)
T0B0C 6426:508 JLINK_ReadMemEx(0x0800EAAC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAAC) - Data: 02 28 returns 0x02 (0000ms, 1977ms total)
T0B0C 6426:508 JLINK_ReadMemEx(0x0800EAAE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAAE) - Data: 03 D0 returns 0x02 (0000ms, 1977ms total)
T0B0C 6426:509 JLINK_ReadMemEx(0x0800EAAE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAAE) - Data: 03 D0 returns 0x02 (0000ms, 1977ms total)
T0B0C 6426:509 JLINK_ReadMemEx(0x0800EAB0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EAB0) - Data: 02 20 0E 49 C8 72 14 E0 03 20 0C 49 C8 72 10 E0 ... returns 0x3C (0000ms, 1977ms total)
T0B0C 6426:509 JLINK_ReadMemEx(0x0800EAB0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAB0) - Data: 02 20 returns 0x02 (0000ms, 1977ms total)
T0B0C 6426:509 JLINK_ReadMemEx(0x0800EAB0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EAB0) - Data: 02 20 0E 49 C8 72 14 E0 03 20 0C 49 C8 72 10 E0 ... returns 0x3C (0000ms, 1977ms total)
T0B0C 6426:509 JLINK_ReadMemEx(0x0800EAB0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAB0) - Data: 02 20 returns 0x02 (0000ms, 1977ms total)
T0B0C 6426:509 JLINK_ReadMemEx(0x0800EAB2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAB2) - Data: 0E 49 returns 0x02 (0000ms, 1977ms total)
T0B0C 6426:509 JLINK_ReadMemEx(0x0800EAB2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAB2) - Data: 0E 49 returns 0x02 (0000ms, 1977ms total)
T0B0C 6426:509 JLINK_ReadMemEx(0x0800EAB4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EAB4) - Data: C8 72 14 E0 03 20 0C 49 C8 72 10 E0 09 48 80 78 ... returns 0x3C (0000ms, 1977ms total)
T0B0C 6426:509 JLINK_ReadMemEx(0x0800EAB4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAB4) - Data: C8 72 returns 0x02 (0000ms, 1977ms total)
T0B0C 6426:509 JLINK_ReadMemEx(0x0800EAB4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EAB4) - Data: C8 72 14 E0 03 20 0C 49 C8 72 10 E0 09 48 80 78 ... returns 0x3C (0000ms, 1977ms total)
T0B0C 6426:509 JLINK_ReadMemEx(0x0800EAB4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAB4) - Data: C8 72 returns 0x02 (0000ms, 1977ms total)
T0B0C 6426:509 JLINK_ReadMemEx(0x0800EAB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAB6) - Data: 14 E0 returns 0x02 (0000ms, 1977ms total)
T0B0C 6426:509 JLINK_ReadMemEx(0x0800EAB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAB6) - Data: 14 E0 returns 0x02 (0000ms, 1977ms total)
T0B0C 6426:509 JLINK_ReadMemEx(0x0800EAB8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EAB8) - Data: 03 20 0C 49 C8 72 10 E0 09 48 80 78 18 B1 01 20 ... returns 0x3C (0000ms, 1977ms total)
T0B0C 6426:509 JLINK_ReadMemEx(0x0800EAB8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAB8) - Data: 03 20 returns 0x02 (0000ms, 1977ms total)
T0B0C 6426:509 JLINK_ReadMemEx(0x0800EAB8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EAB8) - Data: 03 20 0C 49 C8 72 10 E0 09 48 80 78 18 B1 01 20 ... returns 0x3C (0000ms, 1977ms total)
T0B0C 6426:509 JLINK_ReadMemEx(0x0800EAB8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAB8) - Data: 03 20 returns 0x02 (0000ms, 1977ms total)
T0B0C 6426:509 JLINK_ReadMemEx(0x0800EABA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EABA) - Data: 0C 49 returns 0x02 (0000ms, 1977ms total)
T0B0C 6426:509 JLINK_ReadMemEx(0x0800EABA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EABA) - Data: 0C 49 returns 0x02 (0000ms, 1977ms total)
T0B0C 6426:509 JLINK_ReadMemEx(0x0800EABC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EABC) - Data: C8 72 10 E0 09 48 80 78 18 B1 01 20 08 49 C8 72 ... returns 0x3C (0000ms, 1977ms total)
T0B0C 6426:509 JLINK_ReadMemEx(0x0800EABC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EABC) - Data: C8 72 returns 0x02 (0000ms, 1977ms total)
T0B0C 6426:509 JLINK_ReadMemEx(0x0800EABC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EABC) - Data: C8 72 10 E0 09 48 80 78 18 B1 01 20 08 49 C8 72 ... returns 0x3C (0000ms, 1977ms total)
T0B0C 6426:509 JLINK_ReadMemEx(0x0800EABC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EABC) - Data: C8 72 returns 0x02 (0000ms, 1977ms total)
T0B0C 6426:509 JLINK_ReadMemEx(0x0800EABE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EABE) - Data: 10 E0 returns 0x02 (0000ms, 1977ms total)
T0B0C 6426:509 JLINK_ReadMemEx(0x0800EABE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EABE) - Data: 10 E0 returns 0x02 (0000ms, 1977ms total)
T0B0C 6426:509 JLINK_ReadMemEx(0x0800EAC0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EAC0) - Data: 09 48 80 78 18 B1 01 20 08 49 C8 72 09 E0 06 48 ... returns 0x3C (0000ms, 1977ms total)
T0B0C 6426:509 JLINK_ReadMemEx(0x0800EAC0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAC0) - Data: 09 48 returns 0x02 (0000ms, 1977ms total)
T0B0C 6426:509 JLINK_ReadMemEx(0x0800EAC0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EAC0) - Data: 09 48 80 78 18 B1 01 20 08 49 C8 72 09 E0 06 48 ... returns 0x3C (0000ms, 1977ms total)
T0B0C 6426:509 JLINK_ReadMemEx(0x0800EAC0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAC0) - Data: 09 48 returns 0x02 (0000ms, 1977ms total)
T0B0C 6426:509 JLINK_ReadMemEx(0x0800EAC2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAC2) - Data: 80 78 returns 0x02 (0000ms, 1977ms total)
T0B0C 6426:509 JLINK_ReadMemEx(0x0800EAC2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAC2) - Data: 80 78 returns 0x02 (0000ms, 1977ms total)
T0B0C 6426:509 JLINK_ReadMemEx(0x0800EAC4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EAC4) - Data: 18 B1 01 20 08 49 C8 72 09 E0 06 48 80 78 18 B9 ... returns 0x3C (0000ms, 1977ms total)
T0B0C 6426:509 JLINK_ReadMemEx(0x0800EAC4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAC4) - Data: 18 B1 returns 0x02 (0000ms, 1977ms total)
T0B0C 6426:509 JLINK_ReadMemEx(0x0800EAC4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EAC4) - Data: 18 B1 01 20 08 49 C8 72 09 E0 06 48 80 78 18 B9 ... returns 0x3C (0000ms, 1977ms total)
T0B0C 6426:509 JLINK_ReadMemEx(0x0800EAC4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAC4) - Data: 18 B1 returns 0x02 (0000ms, 1977ms total)
T0B0C 6426:509 JLINK_ReadMemEx(0x0800EAC6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAC6) - Data: 01 20 returns 0x02 (0001ms, 1978ms total)
T0B0C 6426:510 JLINK_ReadMemEx(0x0800EAC6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAC6) - Data: 01 20 returns 0x02 (0000ms, 1978ms total)
T0B0C 6426:510 JLINK_ReadMemEx(0x0800EAC8, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0800EB00) -- Updating C cache (64 bytes @ 0x0800EB00) -- Read from C cache (60 bytes @ 0x0800EAC8) - Data: 08 49 C8 72 09 E0 06 48 80 78 18 B9 05 20 05 49 ... returns 0x3C (0001ms, 1979ms total)
T0B0C 6426:511 JLINK_ReadMemEx(0x0800EAC8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAC8) - Data: 08 49 returns 0x02 (0000ms, 1979ms total)
T0B0C 6426:511 JLINK_ReadMemEx(0x0800EAC8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EAC8) - Data: 08 49 C8 72 09 E0 06 48 80 78 18 B9 05 20 05 49 ... returns 0x3C (0000ms, 1979ms total)
T0B0C 6426:511 JLINK_ReadMemEx(0x0800EAC8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAC8) - Data: 08 49 returns 0x02 (0000ms, 1979ms total)
T0B0C 6426:511 JLINK_ReadMemEx(0x0800EACA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EACA) - Data: C8 72 returns 0x02 (0000ms, 1979ms total)
T0B0C 6426:511 JLINK_ReadMemEx(0x0800EACA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EACA) - Data: C8 72 returns 0x02 (0000ms, 1979ms total)
T0B0C 6426:511 JLINK_ReadMemEx(0x0800EACC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EACC) - Data: 09 E0 06 48 80 78 18 B9 05 20 05 49 C8 72 02 E0 ... returns 0x3C (0000ms, 1979ms total)
T0B0C 6426:511 JLINK_ReadMemEx(0x0800EACC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EACC) - Data: 09 E0 returns 0x02 (0000ms, 1979ms total)
T0B0C 6426:511 JLINK_ReadMemEx(0x0800EACC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EACC) - Data: 09 E0 06 48 80 78 18 B9 05 20 05 49 C8 72 02 E0 ... returns 0x3C (0000ms, 1979ms total)
T0B0C 6426:511 JLINK_ReadMemEx(0x0800EACC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EACC) - Data: 09 E0 returns 0x02 (0000ms, 1979ms total)
T0B0C 6426:511 JLINK_ReadMemEx(0x0800EACE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EACE) - Data: 06 48 returns 0x02 (0000ms, 1979ms total)
T0B0C 6426:511 JLINK_ReadMemEx(0x0800EACE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EACE) - Data: 06 48 returns 0x02 (0000ms, 1979ms total)
T0B0C 6426:511 JLINK_ReadMemEx(0x0800EAD0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EAD0) - Data: 80 78 18 B9 05 20 05 49 C8 72 02 E0 00 20 03 49 ... returns 0x3C (0000ms, 1979ms total)
T0B0C 6426:511 JLINK_ReadMemEx(0x0800EAD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAD0) - Data: 80 78 returns 0x02 (0000ms, 1979ms total)
T0B0C 6426:512 JLINK_ReadMemEx(0x0800EAD0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EAD0) - Data: 80 78 18 B9 05 20 05 49 C8 72 02 E0 00 20 03 49 ... returns 0x3C (0000ms, 1979ms total)
T0B0C 6426:512 JLINK_ReadMemEx(0x0800EAD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAD0) - Data: 80 78 returns 0x02 (0000ms, 1979ms total)
T0B0C 6426:512 JLINK_ReadMemEx(0x0800EAD2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAD2) - Data: 18 B9 returns 0x02 (0000ms, 1979ms total)
T0B0C 6426:512 JLINK_ReadMemEx(0x0800EAD2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAD2) - Data: 18 B9 returns 0x02 (0000ms, 1979ms total)
T0B0C 6426:512 JLINK_ReadMemEx(0x0800EAD4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EAD4) - Data: 05 20 05 49 C8 72 02 E0 00 20 03 49 C8 72 02 48 ... returns 0x3C (0000ms, 1979ms total)
T0B0C 6426:512 JLINK_ReadMemEx(0x0800EAD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAD4) - Data: 05 20 returns 0x02 (0000ms, 1979ms total)
T0B0C 6426:512 JLINK_ReadMemEx(0x0800EAD4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EAD4) - Data: 05 20 05 49 C8 72 02 E0 00 20 03 49 C8 72 02 48 ... returns 0x3C (0000ms, 1979ms total)
T0B0C 6426:512 JLINK_ReadMemEx(0x0800EAD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAD4) - Data: 05 20 returns 0x02 (0000ms, 1979ms total)
T0B0C 6426:512 JLINK_ReadMemEx(0x0800EAD6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAD6) - Data: 05 49 returns 0x02 (0000ms, 1979ms total)
T0B0C 6426:512 JLINK_ReadMemEx(0x0800EAD6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAD6) - Data: 05 49 returns 0x02 (0000ms, 1979ms total)
T0B0C 6426:512 JLINK_ReadMemEx(0x0800EAD8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EAD8) - Data: C8 72 02 E0 00 20 03 49 C8 72 02 48 C0 7A 70 47 ... returns 0x3C (0000ms, 1979ms total)
T0B0C 6426:512 JLINK_ReadMemEx(0x0800EAD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAD8) - Data: C8 72 returns 0x02 (0000ms, 1979ms total)
T0B0C 6426:512 JLINK_ReadMemEx(0x0800EAD8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EAD8) - Data: C8 72 02 E0 00 20 03 49 C8 72 02 48 C0 7A 70 47 ... returns 0x3C (0000ms, 1979ms total)
T0B0C 6426:512 JLINK_ReadMemEx(0x0800EAD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAD8) - Data: C8 72 returns 0x02 (0000ms, 1979ms total)
T0B0C 6426:512 JLINK_ReadMemEx(0x0800EADA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EADA) - Data: 02 E0 returns 0x02 (0000ms, 1979ms total)
T0B0C 6426:512 JLINK_ReadMemEx(0x0800EADA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EADA) - Data: 02 E0 returns 0x02 (0000ms, 1979ms total)
T0B0C 6426:512 JLINK_ReadMemEx(0x0800EADC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EADC) - Data: 00 20 03 49 C8 72 02 48 C0 7A 70 47 EC 07 00 20 ... returns 0x3C (0000ms, 1979ms total)
T0B0C 6426:512 JLINK_ReadMemEx(0x0800EADC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EADC) - Data: 00 20 returns 0x02 (0000ms, 1979ms total)
T0B0C 6426:512 JLINK_ReadMemEx(0x0800EADC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EADC) - Data: 00 20 03 49 C8 72 02 48 C0 7A 70 47 EC 07 00 20 ... returns 0x3C (0000ms, 1979ms total)
T0B0C 6426:512 JLINK_ReadMemEx(0x0800EADC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EADC) - Data: 00 20 returns 0x02 (0000ms, 1979ms total)
T0B0C 6426:512 JLINK_ReadMemEx(0x0800EADE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EADE) - Data: 03 49 returns 0x02 (0000ms, 1979ms total)
T0B0C 6426:512 JLINK_ReadMemEx(0x0800EADE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EADE) - Data: 03 49 returns 0x02 (0000ms, 1979ms total)
T0B0C 6426:512 JLINK_ReadMemEx(0x0800EAE0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EAE0) - Data: C8 72 02 48 C0 7A 70 47 EC 07 00 20 94 07 00 20 ... returns 0x3C (0000ms, 1979ms total)
T0B0C 6426:512 JLINK_ReadMemEx(0x0800EAE0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAE0) - Data: C8 72 returns 0x02 (0000ms, 1979ms total)
T0B0C 6426:512 JLINK_ReadMemEx(0x0800EAE0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EAE0) - Data: C8 72 02 48 C0 7A 70 47 EC 07 00 20 94 07 00 20 ... returns 0x3C (0000ms, 1979ms total)
T0B0C 6426:512 JLINK_ReadMemEx(0x0800EAE0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAE0) - Data: C8 72 returns 0x02 (0000ms, 1979ms total)
T0B0C 6426:512 JLINK_ReadMemEx(0x0800EAE2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAE2) - Data: 02 48 returns 0x02 (0000ms, 1979ms total)
T0B0C 6426:512 JLINK_ReadMemEx(0x0800EAE2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAE2) - Data: 02 48 returns 0x02 (0000ms, 1979ms total)
T0B0C 6426:512 JLINK_ReadMemEx(0x0800EAE4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EAE4) - Data: C0 7A 70 47 EC 07 00 20 94 07 00 20 04 21 01 70 ... returns 0x3C (0000ms, 1979ms total)
T0B0C 6426:512 JLINK_ReadMemEx(0x0800EAE4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAE4) - Data: C0 7A returns 0x02 (0000ms, 1979ms total)
T0B0C 6426:512 JLINK_ReadMemEx(0x0800EAE4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EAE4) - Data: C0 7A 70 47 EC 07 00 20 94 07 00 20 04 21 01 70 ... returns 0x3C (0000ms, 1979ms total)
T0B0C 6426:512 JLINK_ReadMemEx(0x0800EAE4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAE4) - Data: C0 7A returns 0x02 (0000ms, 1979ms total)
T0B0C 6426:512 JLINK_ReadMemEx(0x0800EAE6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAE6) - Data: 70 47 returns 0x02 (0000ms, 1979ms total)
T0B0C 6426:512 JLINK_ReadMemEx(0x0800EAE6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAE6) - Data: 70 47 returns 0x02 (0000ms, 1979ms total)
T0B0C 6426:512 JLINK_ReadMemEx(0x0800EAE8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EAE8) - Data: EC 07 00 20 94 07 00 20 04 21 01 70 02 21 41 70 ... returns 0x3C (0001ms, 1980ms total)
T0B0C 6426:513 JLINK_ReadMemEx(0x0800EAE8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAE8) - Data: EC 07 returns 0x02 (0000ms, 1980ms total)
T0B0C 6426:513 JLINK_ReadMemEx(0x0800EAF0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EAF0) - Data: 04 21 01 70 02 21 41 70 00 21 81 70 70 47 00 00 ... returns 0x3C (0000ms, 1980ms total)
T0B0C 6426:513 JLINK_ReadMemEx(0x0800EAF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAF0) - Data: 04 21 returns 0x02 (0000ms, 1980ms total)
T0B0C 6426:513 JLINK_ReadMemEx(0x0800EAF2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAF2) - Data: 01 70 returns 0x02 (0000ms, 1980ms total)
T0B0C 6426:513 JLINK_ReadMemEx(0x0800EAF2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAF2) - Data: 01 70 returns 0x02 (0000ms, 1980ms total)
T0B0C 6426:513 JLINK_ReadMemEx(0x0800EAF4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EAF4) - Data: 02 21 41 70 00 21 81 70 70 47 00 00 01 48 80 6F ... returns 0x3C (0000ms, 1980ms total)
T0B0C 6426:513 JLINK_ReadMemEx(0x0800EAF4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAF4) - Data: 02 21 returns 0x02 (0000ms, 1980ms total)
T0B0C 6426:513 JLINK_ReadMemEx(0x0800EAF4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EAF4) - Data: 02 21 41 70 00 21 81 70 70 47 00 00 01 48 80 6F ... returns 0x3C (0000ms, 1980ms total)
T0B0C 6426:513 JLINK_ReadMemEx(0x0800EAF4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAF4) - Data: 02 21 returns 0x02 (0000ms, 1980ms total)
T0B0C 6426:513 JLINK_ReadMemEx(0x0800EAF6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAF6) - Data: 41 70 returns 0x02 (0000ms, 1980ms total)
T0B0C 6426:513 JLINK_ReadMemEx(0x0800EAF6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAF6) - Data: 41 70 returns 0x02 (0000ms, 1980ms total)
T0B0C 6426:513 JLINK_ReadMemEx(0x0800EAF8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EAF8) - Data: 00 21 81 70 70 47 00 00 01 48 80 6F 70 47 00 00 ... returns 0x3C (0000ms, 1980ms total)
T0B0C 6426:513 JLINK_ReadMemEx(0x0800EAF8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAF8) - Data: 00 21 returns 0x02 (0000ms, 1980ms total)
T0B0C 6426:513 JLINK_ReadMemEx(0x0800EAF8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EAF8) - Data: 00 21 81 70 70 47 00 00 01 48 80 6F 70 47 00 00 ... returns 0x3C (0000ms, 1980ms total)
T0B0C 6426:513 JLINK_ReadMemEx(0x0800EAF8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAF8) - Data: 00 21 returns 0x02 (0000ms, 1980ms total)
T0B0C 6426:513 JLINK_ReadMemEx(0x0800EAFA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAFA) - Data: 81 70 returns 0x02 (0000ms, 1980ms total)
T0B0C 6426:513 JLINK_ReadMemEx(0x0800EAFA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAFA) - Data: 81 70 returns 0x02 (0000ms, 1980ms total)
T0B0C 6426:513 JLINK_ReadMemEx(0x0800EAFC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EAFC) - Data: 70 47 00 00 01 48 80 6F 70 47 00 00 10 94 00 20 ... returns 0x3C (0000ms, 1980ms total)
T0B0C 6426:513 JLINK_ReadMemEx(0x0800EAFC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAFC) - Data: 70 47 returns 0x02 (0000ms, 1980ms total)
T0B0C 6426:513 JLINK_ReadMemEx(0x0800EAFC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EAFC) - Data: 70 47 00 00 01 48 80 6F 70 47 00 00 10 94 00 20 ... returns 0x3C (0000ms, 1980ms total)
T0B0C 6426:513 JLINK_ReadMemEx(0x0800EAFC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAFC) - Data: 70 47 returns 0x02 (0000ms, 1980ms total)
T0B0C 6426:513 JLINK_ReadMemEx(0x0800EAFE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAFE) - Data: 00 00 returns 0x02 (0000ms, 1980ms total)
T0B0C 6426:513 JLINK_ReadMemEx(0x0800EAFE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EAFE) - Data: 00 00 returns 0x02 (0000ms, 1980ms total)
T0B0C 6426:513 JLINK_ReadMemEx(0x0800EB00, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EB00) - Data: 01 48 80 6F 70 47 00 00 10 94 00 20 10 B5 05 48 ... returns 0x3C (0000ms, 1980ms total)
T0B0C 6426:513 JLINK_ReadMemEx(0x0800EB00, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB00) - Data: 01 48 returns 0x02 (0000ms, 1980ms total)
T0B0C 6426:513 JLINK_ReadMemEx(0x0800EB00, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EB00) - Data: 01 48 80 6F 70 47 00 00 10 94 00 20 10 B5 05 48 ... returns 0x3C (0000ms, 1980ms total)
T0B0C 6426:513 JLINK_ReadMemEx(0x0800EB00, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB00) - Data: 01 48 returns 0x02 (0000ms, 1980ms total)
T0B0C 6426:513 JLINK_ReadMemEx(0x0800EB02, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB02) - Data: 80 6F returns 0x02 (0000ms, 1980ms total)
T0B0C 6426:513 JLINK_ReadMemEx(0x0800EB02, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB02) - Data: 80 6F returns 0x02 (0000ms, 1980ms total)
T0B0C 6426:513 JLINK_ReadMemEx(0x0800EB04, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EB04) - Data: 70 47 00 00 10 94 00 20 10 B5 05 48 90 F8 74 00 ... returns 0x3C (0000ms, 1980ms total)
T0B0C 6426:513 JLINK_ReadMemEx(0x0800EB04, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB04) - Data: 70 47 returns 0x02 (0000ms, 1980ms total)
T0B0C 6426:513 JLINK_ReadMemEx(0x0800EB04, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EB04) - Data: 70 47 00 00 10 94 00 20 10 B5 05 48 90 F8 74 00 ... returns 0x3C (0000ms, 1980ms total)
T0B0C 6426:513 JLINK_ReadMemEx(0x0800EB04, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB04) - Data: 70 47 returns 0x02 (0000ms, 1980ms total)
T0B0C 6426:513 JLINK_ReadMemEx(0x0800EB06, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB06) - Data: 00 00 returns 0x02 (0000ms, 1980ms total)
T0B0C 6426:513 JLINK_ReadMemEx(0x0800EB0C, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0800EB40) -- Updating C cache (64 bytes @ 0x0800EB40) -- Read from C cache (60 bytes @ 0x0800EB0C) - Data: 10 B5 05 48 90 F8 74 00 20 B9 FF F7 C7 F8 08 B9 ... returns 0x3C (0002ms, 1982ms total)
T0B0C 6426:515 JLINK_ReadMemEx(0x0800EB0C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB0C) - Data: 10 B5 returns 0x02 (0000ms, 1982ms total)
T0B0C 6426:515 JLINK_ReadMemEx(0x0800EB0E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB0E) - Data: 05 48 returns 0x02 (0000ms, 1982ms total)
T0B0C 6426:515 JLINK_ReadMemEx(0x0800EB0E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB0E) - Data: 05 48 returns 0x02 (0000ms, 1982ms total)
T0B0C 6426:515 JLINK_ReadMemEx(0x0800EB10, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EB10) - Data: 90 F8 74 00 20 B9 FF F7 C7 F8 08 B9 00 20 10 BD ... returns 0x3C (0000ms, 1982ms total)
T0B0C 6426:515 JLINK_ReadMemEx(0x0800EB10, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB10) - Data: 90 F8 returns 0x02 (0000ms, 1982ms total)
T0B0C 6426:515 JLINK_ReadMemEx(0x0800EB10, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EB10) - Data: 90 F8 74 00 20 B9 FF F7 C7 F8 08 B9 00 20 10 BD ... returns 0x3C (0000ms, 1982ms total)
T0B0C 6426:515 JLINK_ReadMemEx(0x0800EB10, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB10) - Data: 90 F8 returns 0x02 (0000ms, 1982ms total)
T0B0C 6426:515 JLINK_ReadMemEx(0x0800EB12, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB12) - Data: 74 00 returns 0x02 (0000ms, 1982ms total)
T0B0C 6426:515 JLINK_ReadMemEx(0x0800EB14, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EB14) - Data: 20 B9 FF F7 C7 F8 08 B9 00 20 10 BD 01 20 FC E7 ... returns 0x3C (0000ms, 1982ms total)
T0B0C 6426:515 JLINK_ReadMemEx(0x0800EB14, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB14) - Data: 20 B9 returns 0x02 (0000ms, 1982ms total)
T0B0C 6426:515 JLINK_ReadMemEx(0x0800EB16, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB16) - Data: FF F7 returns 0x02 (0000ms, 1982ms total)
T0B0C 6426:515 JLINK_ReadMemEx(0x0800EB16, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB16) - Data: FF F7 returns 0x02 (0000ms, 1982ms total)
T0B0C 6426:515 JLINK_ReadMemEx(0x0800EB18, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EB18) - Data: C7 F8 08 B9 00 20 10 BD 01 20 FC E7 10 94 00 20 ... returns 0x3C (0000ms, 1982ms total)
T0B0C 6426:515 JLINK_ReadMemEx(0x0800EB18, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB18) - Data: C7 F8 returns 0x02 (0001ms, 1983ms total)
T0B0C 6426:516 JLINK_ReadMemEx(0x0800EB1A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB1A) - Data: 08 B9 returns 0x02 (0000ms, 1983ms total)
T0B0C 6426:516 JLINK_ReadMemEx(0x0800EB1C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EB1C) - Data: 00 20 10 BD 01 20 FC E7 10 94 00 20 01 48 40 78 ... returns 0x3C (0000ms, 1983ms total)
T0B0C 6426:516 JLINK_ReadMemEx(0x0800EB1C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB1C) - Data: 00 20 returns 0x02 (0000ms, 1983ms total)
T0B0C 6426:516 JLINK_ReadMemEx(0x0800EB1C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EB1C) - Data: 00 20 10 BD 01 20 FC E7 10 94 00 20 01 48 40 78 ... returns 0x3C (0000ms, 1983ms total)
T0B0C 6426:516 JLINK_ReadMemEx(0x0800EB1C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB1C) - Data: 00 20 returns 0x02 (0000ms, 1983ms total)
T0B0C 6426:516 JLINK_ReadMemEx(0x0800EB1E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB1E) - Data: 10 BD returns 0x02 (0000ms, 1983ms total)
T0B0C 6426:516 JLINK_ReadMemEx(0x0800EB1E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB1E) - Data: 10 BD returns 0x02 (0000ms, 1983ms total)
T0B0C 6426:516 JLINK_ReadMemEx(0x0800EB20, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EB20) - Data: 01 20 FC E7 10 94 00 20 01 48 40 78 70 47 00 00 ... returns 0x3C (0000ms, 1983ms total)
T0B0C 6426:516 JLINK_ReadMemEx(0x0800EB20, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB20) - Data: 01 20 returns 0x02 (0000ms, 1983ms total)
T0B0C 6426:516 JLINK_ReadMemEx(0x0800EB20, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EB20) - Data: 01 20 FC E7 10 94 00 20 01 48 40 78 70 47 00 00 ... returns 0x3C (0000ms, 1983ms total)
T0B0C 6426:516 JLINK_ReadMemEx(0x0800EB20, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB20) - Data: 01 20 returns 0x02 (0000ms, 1983ms total)
T0B0C 6426:516 JLINK_ReadMemEx(0x0800EB22, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB22) - Data: FC E7 returns 0x02 (0000ms, 1983ms total)
T0B0C 6426:516 JLINK_ReadMemEx(0x0800EB22, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB22) - Data: FC E7 returns 0x02 (0000ms, 1983ms total)
T0B0C 6426:516 JLINK_ReadMemEx(0x0800EB24, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EB24) - Data: 10 94 00 20 01 48 40 78 70 47 00 00 EC 07 00 20 ... returns 0x3C (0000ms, 1983ms total)
T0B0C 6426:516 JLINK_ReadMemEx(0x0800EB24, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB24) - Data: 10 94 returns 0x02 (0000ms, 1983ms total)
T0B0C 6426:516 JLINK_ReadMemEx(0x0800EB28, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EB28) - Data: 01 48 40 78 70 47 00 00 EC 07 00 20 30 B5 01 46 ... returns 0x3C (0000ms, 1983ms total)
T0B0C 6426:516 JLINK_ReadMemEx(0x0800EB28, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB28) - Data: 01 48 returns 0x02 (0000ms, 1983ms total)
T0B0C 6426:516 JLINK_ReadMemEx(0x0800EB2A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB2A) - Data: 40 78 returns 0x02 (0000ms, 1983ms total)
T0B0C 6426:516 JLINK_ReadMemEx(0x0800EB2A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB2A) - Data: 40 78 returns 0x02 (0000ms, 1983ms total)
T0B0C 6426:516 JLINK_ReadMemEx(0x0800EB2C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EB2C) - Data: 70 47 00 00 EC 07 00 20 30 B5 01 46 00 22 00 20 ... returns 0x3C (0000ms, 1983ms total)
T0B0C 6426:516 JLINK_ReadMemEx(0x0800EB2C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB2C) - Data: 70 47 returns 0x02 (0000ms, 1983ms total)
T0B0C 6426:516 JLINK_ReadMemEx(0x0800EB2C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EB2C) - Data: 70 47 00 00 EC 07 00 20 30 B5 01 46 00 22 00 20 ... returns 0x3C (0000ms, 1983ms total)
T0B0C 6426:516 JLINK_ReadMemEx(0x0800EB2C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB2C) - Data: 70 47 returns 0x02 (0000ms, 1983ms total)
T0B0C 6426:516 JLINK_ReadMemEx(0x0800EB2E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB2E) - Data: 00 00 returns 0x02 (0000ms, 1983ms total)
T0B0C 6426:516 JLINK_ReadMemEx(0x0800EB34, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EB34) - Data: 30 B5 01 46 00 22 00 20 10 E0 0B 4C 23 5C 03 EB ... returns 0x3C (0000ms, 1983ms total)
T0B0C 6426:516 JLINK_ReadMemEx(0x0800EB34, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB34) - Data: 30 B5 returns 0x02 (0000ms, 1983ms total)
T0B0C 6426:516 JLINK_ReadMemEx(0x0800EB36, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB36) - Data: 01 46 returns 0x02 (0000ms, 1983ms total)
T0B0C 6426:516 JLINK_ReadMemEx(0x0800EB36, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB36) - Data: 01 46 returns 0x02 (0000ms, 1983ms total)
T0B0C 6426:516 JLINK_ReadMemEx(0x0800EB38, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EB38) - Data: 00 22 00 20 10 E0 0B 4C 23 5C 03 EB 43 04 0A 4D ... returns 0x3C (0000ms, 1983ms total)
T0B0C 6426:516 JLINK_ReadMemEx(0x0800EB38, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB38) - Data: 00 22 returns 0x02 (0000ms, 1983ms total)
T0B0C 6426:516 JLINK_ReadMemEx(0x0800EB38, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EB38) - Data: 00 22 00 20 10 E0 0B 4C 23 5C 03 EB 43 04 0A 4D ... returns 0x3C (0000ms, 1983ms total)
T0B0C 6426:516 JLINK_ReadMemEx(0x0800EB38, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB38) - Data: 00 22 returns 0x02 (0000ms, 1983ms total)
T0B0C 6426:516 JLINK_ReadMemEx(0x0800EB3A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB3A) - Data: 00 20 returns 0x02 (0000ms, 1983ms total)
T0B0C 6426:516 JLINK_ReadMemEx(0x0800EB3A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB3A) - Data: 00 20 returns 0x02 (0000ms, 1983ms total)
T0B0C 6426:516 JLINK_ReadMemEx(0x0800EB3C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EB3C) - Data: 10 E0 0B 4C 23 5C 03 EB 43 04 0A 4D 05 EB 44 04 ... returns 0x3C (0000ms, 1983ms total)
T0B0C 6426:516 JLINK_ReadMemEx(0x0800EB3C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB3C) - Data: 10 E0 returns 0x02 (0000ms, 1983ms total)
T0B0C 6426:516 JLINK_ReadMemEx(0x0800EB3C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EB3C) - Data: 10 E0 0B 4C 23 5C 03 EB 43 04 0A 4D 05 EB 44 04 ... returns 0x3C (0000ms, 1983ms total)
T0B0C 6426:516 JLINK_ReadMemEx(0x0800EB3C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB3C) - Data: 10 E0 returns 0x02 (0000ms, 1983ms total)
T0B0C 6426:516 JLINK_ReadMemEx(0x0800EB3E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB3E) - Data: 0B 4C returns 0x02 (0000ms, 1983ms total)
T0B0C 6426:516 JLINK_ReadMemEx(0x0800EB3E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB3E) - Data: 0B 4C returns 0x02 (0000ms, 1983ms total)
T0B0C 6426:516 JLINK_ReadMemEx(0x0800EB40, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EB40) - Data: 23 5C 03 EB 43 04 0A 4D 05 EB 44 04 A4 78 08 2C ... returns 0x3C (0000ms, 1983ms total)
T0B0C 6426:516 JLINK_ReadMemEx(0x0800EB40, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB40) - Data: 23 5C returns 0x02 (0000ms, 1983ms total)
T0B0C 6426:516 JLINK_ReadMemEx(0x0800EB40, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EB40) - Data: 23 5C 03 EB 43 04 0A 4D 05 EB 44 04 A4 78 08 2C ... returns 0x3C (0000ms, 1983ms total)
T0B0C 6426:516 JLINK_ReadMemEx(0x0800EB40, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB40) - Data: 23 5C returns 0x02 (0000ms, 1983ms total)
T0B0C 6426:516 JLINK_ReadMemEx(0x0800EB42, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB42) - Data: 03 EB returns 0x02 (0000ms, 1983ms total)
T0B0C 6426:516 JLINK_ReadMemEx(0x0800EB42, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB42) - Data: 03 EB returns 0x02 (0000ms, 1983ms total)
T0B0C 6426:516 JLINK_ReadMemEx(0x0800EB44, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EB44) - Data: 43 04 0A 4D 05 EB 44 04 A4 78 08 2C 04 DD 44 1C ... returns 0x3C (0000ms, 1983ms total)
T0B0C 6426:516 JLINK_ReadMemEx(0x0800EB44, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB44) - Data: 43 04 returns 0x02 (0000ms, 1983ms total)
T0B0C 6426:516 JLINK_ReadMemEx(0x0800EB46, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB46) - Data: 0A 4D returns 0x02 (0000ms, 1983ms total)
T0B0C 6426:516 JLINK_ReadMemEx(0x0800EB48, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0800EB80) -- Updating C cache (64 bytes @ 0x0800EB80) -- Read from C cache (60 bytes @ 0x0800EB48) - Data: 05 EB 44 04 A4 78 08 2C 04 DD 44 1C E5 B2 54 1C ... returns 0x3C (0002ms, 1985ms total)
T0B0C 6426:518 JLINK_ReadMemEx(0x0800EB48, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB48) - Data: 05 EB returns 0x02 (0000ms, 1985ms total)
T0B0C 6426:518 JLINK_ReadMemEx(0x0800EB48, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EB48) - Data: 05 EB 44 04 A4 78 08 2C 04 DD 44 1C E5 B2 54 1C ... returns 0x3C (0000ms, 1985ms total)
T0B0C 6426:518 JLINK_ReadMemEx(0x0800EB48, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB48) - Data: 05 EB returns 0x02 (0000ms, 1985ms total)
T0B0C 6426:518 JLINK_ReadMemEx(0x0800EB4A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB4A) - Data: 44 04 returns 0x02 (0000ms, 1985ms total)
T0B0C 6426:518 JLINK_ReadMemEx(0x0800EB4C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EB4C) - Data: A4 78 08 2C 04 DD 44 1C E5 B2 54 1C 0D 55 E2 B2 ... returns 0x3C (0000ms, 1985ms total)
T0B0C 6426:518 JLINK_ReadMemEx(0x0800EB4C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB4C) - Data: A4 78 returns 0x02 (0000ms, 1985ms total)
T0B0C 6426:518 JLINK_ReadMemEx(0x0800EB4E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB4E) - Data: 08 2C returns 0x02 (0000ms, 1985ms total)
T0B0C 6426:518 JLINK_ReadMemEx(0x0800EB4E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB4E) - Data: 08 2C returns 0x02 (0000ms, 1985ms total)
T0B0C 6426:518 JLINK_ReadMemEx(0x0800EB50, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EB50) - Data: 04 DD 44 1C E5 B2 54 1C 0D 55 E2 B2 44 1C E0 B2 ... returns 0x3C (0000ms, 1985ms total)
T0B0C 6426:518 JLINK_ReadMemEx(0x0800EB50, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB50) - Data: 04 DD returns 0x02 (0000ms, 1985ms total)
T0B0C 6426:518 JLINK_ReadMemEx(0x0800EB50, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EB50) - Data: 04 DD 44 1C E5 B2 54 1C 0D 55 E2 B2 44 1C E0 B2 ... returns 0x3C (0000ms, 1985ms total)
T0B0C 6426:518 JLINK_ReadMemEx(0x0800EB50, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB50) - Data: 04 DD returns 0x02 (0000ms, 1985ms total)
T0B0C 6426:518 JLINK_ReadMemEx(0x0800EB52, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB52) - Data: 44 1C returns 0x02 (0000ms, 1985ms total)
T0B0C 6426:518 JLINK_ReadMemEx(0x0800EB52, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB52) - Data: 44 1C returns 0x02 (0000ms, 1985ms total)
T0B0C 6426:518 JLINK_ReadMemEx(0x0800EB54, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EB54) - Data: E5 B2 54 1C 0D 55 E2 B2 44 1C E0 B2 02 4C 64 7A ... returns 0x3C (0000ms, 1985ms total)
T0B0C 6426:518 JLINK_ReadMemEx(0x0800EB54, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB54) - Data: E5 B2 returns 0x02 (0000ms, 1985ms total)
T0B0C 6426:518 JLINK_ReadMemEx(0x0800EB54, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EB54) - Data: E5 B2 54 1C 0D 55 E2 B2 44 1C E0 B2 02 4C 64 7A ... returns 0x3C (0000ms, 1985ms total)
T0B0C 6426:518 JLINK_ReadMemEx(0x0800EB54, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB54) - Data: E5 B2 returns 0x02 (0000ms, 1985ms total)
T0B0C 6426:518 JLINK_ReadMemEx(0x0800EB56, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB56) - Data: 54 1C returns 0x02 (0000ms, 1985ms total)
T0B0C 6426:518 JLINK_ReadMemEx(0x0800EB56, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB56) - Data: 54 1C returns 0x02 (0000ms, 1985ms total)
T0B0C 6426:518 JLINK_ReadMemEx(0x0800EB58, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EB58) - Data: 0D 55 E2 B2 44 1C E0 B2 02 4C 64 7A 84 42 EA DC ... returns 0x3C (0000ms, 1985ms total)
T0B0C 6426:518 JLINK_ReadMemEx(0x0800EB58, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB58) - Data: 0D 55 returns 0x02 (0000ms, 1985ms total)
T0B0C 6426:518 JLINK_ReadMemEx(0x0800EB58, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EB58) - Data: 0D 55 E2 B2 44 1C E0 B2 02 4C 64 7A 84 42 EA DC ... returns 0x3C (0000ms, 1985ms total)
T0B0C 6426:518 JLINK_ReadMemEx(0x0800EB58, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB58) - Data: 0D 55 returns 0x02 (0000ms, 1985ms total)
T0B0C 6426:518 JLINK_ReadMemEx(0x0800EB5A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB5A) - Data: E2 B2 returns 0x02 (0000ms, 1985ms total)
T0B0C 6426:518 JLINK_ReadMemEx(0x0800EB5A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB5A) - Data: E2 B2 returns 0x02 (0000ms, 1985ms total)
T0B0C 6426:518 JLINK_ReadMemEx(0x0800EB5C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EB5C) - Data: 44 1C E0 B2 02 4C 64 7A 84 42 EA DC 0A 70 30 BD ... returns 0x3C (0001ms, 1986ms total)
T0B0C 6426:519 JLINK_ReadMemEx(0x0800EB5C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB5C) - Data: 44 1C returns 0x02 (0000ms, 1986ms total)
T0B0C 6426:519 JLINK_ReadMemEx(0x0800EB5C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EB5C) - Data: 44 1C E0 B2 02 4C 64 7A 84 42 EA DC 0A 70 30 BD ... returns 0x3C (0000ms, 1986ms total)
T0B0C 6426:519 JLINK_ReadMemEx(0x0800EB5C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB5C) - Data: 44 1C returns 0x02 (0000ms, 1986ms total)
T0B0C 6426:519 JLINK_ReadMemEx(0x0800EB5E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB5E) - Data: E0 B2 returns 0x02 (0000ms, 1986ms total)
T0B0C 6426:519 JLINK_ReadMemEx(0x0800EB5E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB5E) - Data: E0 B2 returns 0x02 (0000ms, 1986ms total)
T0B0C 6426:519 JLINK_ReadMemEx(0x0800EB60, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EB60) - Data: 02 4C 64 7A 84 42 EA DC 0A 70 30 BD F8 10 00 20 ... returns 0x3C (0000ms, 1986ms total)
T0B0C 6426:519 JLINK_ReadMemEx(0x0800EB60, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB60) - Data: 02 4C returns 0x02 (0000ms, 1986ms total)
T0B0C 6426:519 JLINK_ReadMemEx(0x0800EB60, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EB60) - Data: 02 4C 64 7A 84 42 EA DC 0A 70 30 BD F8 10 00 20 ... returns 0x3C (0000ms, 1986ms total)
T0B0C 6426:519 JLINK_ReadMemEx(0x0800EB60, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB60) - Data: 02 4C returns 0x02 (0000ms, 1986ms total)
T0B0C 6426:519 JLINK_ReadMemEx(0x0800EB62, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB62) - Data: 64 7A returns 0x02 (0000ms, 1986ms total)
T0B0C 6426:519 JLINK_ReadMemEx(0x0800EB62, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB62) - Data: 64 7A returns 0x02 (0000ms, 1986ms total)
T0B0C 6426:519 JLINK_ReadMemEx(0x0800EB64, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EB64) - Data: 84 42 EA DC 0A 70 30 BD F8 10 00 20 F8 11 00 20 ... returns 0x3C (0000ms, 1986ms total)
T0B0C 6426:519 JLINK_ReadMemEx(0x0800EB64, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB64) - Data: 84 42 returns 0x02 (0000ms, 1986ms total)
T0B0C 6426:519 JLINK_ReadMemEx(0x0800EB64, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EB64) - Data: 84 42 EA DC 0A 70 30 BD F8 10 00 20 F8 11 00 20 ... returns 0x3C (0000ms, 1986ms total)
T0B0C 6426:519 JLINK_ReadMemEx(0x0800EB64, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB64) - Data: 84 42 returns 0x02 (0000ms, 1986ms total)
T0B0C 6426:519 JLINK_ReadMemEx(0x0800EB66, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB66) - Data: EA DC returns 0x02 (0000ms, 1986ms total)
T0B0C 6426:519 JLINK_ReadMemEx(0x0800EB66, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB66) - Data: EA DC returns 0x02 (0000ms, 1986ms total)
T0B0C 6426:519 JLINK_ReadMemEx(0x0800EB68, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EB68) - Data: 0A 70 30 BD F8 10 00 20 F8 11 00 20 01 48 00 78 ... returns 0x3C (0000ms, 1986ms total)
T0B0C 6426:519 JLINK_ReadMemEx(0x0800EB68, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB68) - Data: 0A 70 returns 0x02 (0000ms, 1986ms total)
T0B0C 6426:519 JLINK_ReadMemEx(0x0800EB68, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EB68) - Data: 0A 70 30 BD F8 10 00 20 F8 11 00 20 01 48 00 78 ... returns 0x3C (0000ms, 1986ms total)
T0B0C 6426:519 JLINK_ReadMemEx(0x0800EB68, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB68) - Data: 0A 70 returns 0x02 (0000ms, 1986ms total)
T0B0C 6426:519 JLINK_ReadMemEx(0x0800EB6A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB6A) - Data: 30 BD returns 0x02 (0000ms, 1986ms total)
T0B0C 6426:519 JLINK_ReadMemEx(0x0800EB6A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB6A) - Data: 30 BD returns 0x02 (0000ms, 1986ms total)
T0B0C 6426:519 JLINK_ReadMemEx(0x0800EB6C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EB6C) - Data: F8 10 00 20 F8 11 00 20 01 48 00 78 70 47 00 00 ... returns 0x3C (0000ms, 1986ms total)
T0B0C 6426:519 JLINK_ReadMemEx(0x0800EB6C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB6C) - Data: F8 10 returns 0x02 (0000ms, 1986ms total)
T0B0C 6426:519 JLINK_ReadMemEx(0x0800EB74, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EB74) - Data: 01 48 00 78 70 47 00 00 E0 03 00 20 00 20 70 47 ... returns 0x3C (0000ms, 1986ms total)
T0B0C 6426:519 JLINK_ReadMemEx(0x0800EB74, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB74) - Data: 01 48 returns 0x02 (0000ms, 1986ms total)
T0B0C 6426:519 JLINK_ReadMemEx(0x0800EB76, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB76) - Data: 00 78 returns 0x02 (0000ms, 1986ms total)
T0B0C 6426:519 JLINK_ReadMemEx(0x0800EB76, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB76) - Data: 00 78 returns 0x02 (0000ms, 1986ms total)
T0B0C 6426:519 JLINK_ReadMemEx(0x0800EB78, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EB78) - Data: 70 47 00 00 E0 03 00 20 00 20 70 47 01 48 00 78 ... returns 0x3C (0000ms, 1986ms total)
T0B0C 6426:519 JLINK_ReadMemEx(0x0800EB78, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB78) - Data: 70 47 returns 0x02 (0000ms, 1986ms total)
T0B0C 6426:519 JLINK_ReadMemEx(0x0800EB78, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EB78) - Data: 70 47 00 00 E0 03 00 20 00 20 70 47 01 48 00 78 ... returns 0x3C (0000ms, 1986ms total)
T0B0C 6426:519 JLINK_ReadMemEx(0x0800EB78, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB78) - Data: 70 47 returns 0x02 (0000ms, 1986ms total)
T0B0C 6426:519 JLINK_ReadMemEx(0x0800EB7A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB7A) - Data: 00 00 returns 0x02 (0000ms, 1986ms total)
T0B0C 6426:519 JLINK_ReadMemEx(0x0800EB80, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EB80) - Data: 00 20 70 47 01 48 00 78 70 47 00 00 F8 10 00 20 ... returns 0x3C (0000ms, 1986ms total)
T0B0C 6426:519 JLINK_ReadMemEx(0x0800EB80, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB80) - Data: 00 20 returns 0x02 (0000ms, 1986ms total)
T0B0C 6426:519 JLINK_ReadMemEx(0x0800EB82, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB82) - Data: 70 47 returns 0x02 (0000ms, 1986ms total)
T0B0C 6426:519 JLINK_ReadMemEx(0x0800EB82, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB82) - Data: 70 47 returns 0x02 (0000ms, 1986ms total)
T0B0C 6426:519 JLINK_ReadMemEx(0x0800EB84, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EB84) - Data: 01 48 00 78 70 47 00 00 F8 10 00 20 01 46 01 EB ... returns 0x3C (0000ms, 1986ms total)
T0B0C 6426:519 JLINK_ReadMemEx(0x0800EB84, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB84) - Data: 01 48 returns 0x02 (0000ms, 1986ms total)
T0B0C 6426:519 JLINK_ReadMemEx(0x0800EB84, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EB84) - Data: 01 48 00 78 70 47 00 00 F8 10 00 20 01 46 01 EB ... returns 0x3C (0000ms, 1986ms total)
T0B0C 6426:519 JLINK_ReadMemEx(0x0800EB84, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB84) - Data: 01 48 returns 0x02 (0000ms, 1986ms total)
T0B0C 6426:519 JLINK_ReadMemEx(0x0800EB86, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB86) - Data: 00 78 returns 0x02 (0000ms, 1986ms total)
T0B0C 6426:519 JLINK_ReadMemEx(0x0800EB86, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB86) - Data: 00 78 returns 0x02 (0000ms, 1986ms total)
T0B0C 6426:519 JLINK_ReadMemEx(0x0800EB88, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0800EBC0) -- Updating C cache (64 bytes @ 0x0800EBC0) -- Read from C cache (60 bytes @ 0x0800EB88) - Data: 70 47 00 00 F8 10 00 20 01 46 01 EB 81 00 40 00 ... returns 0x3C (0002ms, 1988ms total)
T0B0C 6426:521 JLINK_ReadMemEx(0x0800EB88, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB88) - Data: 70 47 returns 0x02 (0000ms, 1988ms total)
T1700 6428:403 JLINK_ReadMemEx(0x0800EB84, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB84) - Data: 01 48 returns 0x02 (0000ms, 1988ms total)
T1700 6428:403 JLINK_Step() -- Read from C cache (2 bytes @ 0x0800EB84) -- Read from C cache (4 bytes @ 0x0800EB8C) -- Simulated returns 0x00 (0002ms, 1990ms total)
T1700 6428:405 JLINK_ReadReg(R15 (PC)) returns 0x0800EB86 (0000ms, 1990ms total)
T1700 6428:405 JLINK_ReadReg(XPSR) returns 0x61000000 (0000ms, 1990ms total)
T1700 6428:405 JLINK_Step() -- Read from C cache (2 bytes @ 0x0800EB86) -- CPU_ReadMem(64 bytes @ 0x200010C0) -- Updating C cache (64 bytes @ 0x200010C0) -- Read from C cache (1 bytes @ 0x200010F8) -- Simulated returns 0x00 (0002ms, 1992ms total)
T1700 6428:407 JLINK_ReadReg(R15 (PC)) returns 0x0800EB88 (0000ms, 1992ms total)
T1700 6428:407 JLINK_ReadReg(XPSR) returns 0x61000000 (0000ms, 1992ms total)
T1700 6428:411 JLINK_ReadReg(R0) returns 0x00000003 (0000ms, 1992ms total)
T1700 6428:411 JLINK_ReadReg(R1) returns 0x00000020 (0000ms, 1992ms total)
T1700 6428:411 JLINK_ReadReg(R2) returns 0x08013A70 (0000ms, 1992ms total)
T1700 6428:411 JLINK_ReadReg(R3) returns 0x00000003 (0000ms, 1992ms total)
T1700 6428:411 JLINK_ReadReg(R4) returns 0x00000001 (0000ms, 1992ms total)
T1700 6428:411 JLINK_ReadReg(R5) returns 0x00000001 (0000ms, 1992ms total)
T1700 6428:411 JLINK_ReadReg(R6) returns 0x00000000 (0000ms, 1992ms total)
T1700 6428:411 JLINK_ReadReg(R7) returns 0x00000000 (0000ms, 1992ms total)
T1700 6428:411 JLINK_ReadReg(R8) returns 0x00000000 (0000ms, 1992ms total)
T1700 6428:411 JLINK_ReadReg(R9) returns 0x20000134 (0000ms, 1992ms total)
T1700 6428:411 JLINK_ReadReg(R10) returns 0x00000000 (0000ms, 1992ms total)
T1700 6428:411 JLINK_ReadReg(R11) returns 0x00000000 (0001ms, 1993ms total)
T1700 6428:412 JLINK_ReadReg(R12) returns 0x00000004 (0000ms, 1993ms total)
T1700 6428:412 JLINK_ReadReg(R13 (SP)) returns 0x2000E108 (0000ms, 1993ms total)
T1700 6428:412 JLINK_ReadReg(R14) returns 0x08010015 (0000ms, 1993ms total)
T1700 6428:412 JLINK_ReadReg(R15 (PC)) returns 0x0800EB88 (0000ms, 1993ms total)
T1700 6428:412 JLINK_ReadReg(XPSR) returns 0x61000000 (0000ms, 1993ms total)
T1700 6428:412 JLINK_ReadReg(MSP) returns 0x2000E108 (0000ms, 1993ms total)
T1700 6428:412 JLINK_ReadReg(PSP) returns 0x20001000 (0000ms, 1993ms total)
T1700 6428:412 JLINK_ReadReg(CFBP) returns 0x00000001 (0000ms, 1993ms total)
T1700 6428:412 JLINK_ReadReg(FPSCR) returns 0x00000000 (0000ms, 1993ms total)
T1700 6428:412 JLINK_ReadReg(FPS0) returns 0xFB068412 (0000ms, 1993ms total)
T1700 6428:412 JLINK_ReadReg(FPS1) returns 0x10110C5A (0000ms, 1993ms total)
T1700 6428:412 JLINK_ReadReg(FPS2) returns 0x04345E8B (0000ms, 1993ms total)
T1700 6428:412 JLINK_ReadReg(FPS3) returns 0x84492403 (0000ms, 1993ms total)
T1700 6428:412 JLINK_ReadReg(FPS4) returns 0x18248A10 (0000ms, 1993ms total)
T1700 6428:412 JLINK_ReadReg(FPS5) returns 0x24102496 (0000ms, 1993ms total)
T1700 6428:412 JLINK_ReadReg(FPS6) returns 0x82C0846D (0000ms, 1993ms total)
T1700 6428:412 JLINK_ReadReg(FPS7) returns 0x28E02089 (0000ms, 1993ms total)
T1700 6428:412 JLINK_ReadReg(FPS8) returns 0x05488443 (0000ms, 1993ms total)
T1700 6428:412 JLINK_ReadReg(FPS9) returns 0xF172B840 (0000ms, 1993ms total)
T1700 6428:412 JLINK_ReadReg(FPS10) returns 0x11B25004 (0000ms, 1993ms total)
T1700 6428:412 JLINK_ReadReg(FPS11) returns 0x000A0122 (0000ms, 1993ms total)
T1700 6428:412 JLINK_ReadReg(FPS12) returns 0x02345609 (0000ms, 1993ms total)
T1700 6428:412 JLINK_ReadReg(FPS13) returns 0x86007109 (0000ms, 1993ms total)
T1700 6428:412 JLINK_ReadReg(FPS14) returns 0xA03C9BD0 (0000ms, 1993ms total)
T1700 6428:412 JLINK_ReadReg(FPS15) returns 0x5012A400 (0000ms, 1993ms total)
T1700 6428:412 JLINK_ReadReg(FPS16) returns 0x1591822D (0000ms, 1993ms total)
T1700 6428:413 JLINK_ReadReg(FPS17) returns 0x9415225C (0000ms, 1993ms total)
T1700 6428:413 JLINK_ReadReg(FPS18) returns 0x0C0917B5 (0000ms, 1993ms total)
T1700 6428:413 JLINK_ReadReg(FPS19) returns 0x1C78D422 (0000ms, 1993ms total)
T1700 6428:413 JLINK_ReadReg(FPS20) returns 0xB4874081 (0000ms, 1993ms total)
T1700 6428:413 JLINK_ReadReg(FPS21) returns 0x108D0118 (0000ms, 1993ms total)
T1700 6428:413 JLINK_ReadReg(FPS22) returns 0x9044A200 (0000ms, 1993ms total)
T1700 6428:413 JLINK_ReadReg(FPS23) returns 0x781449E0 (0000ms, 1993ms total)
T1700 6428:413 JLINK_ReadReg(FPS24) returns 0x1C330E11 (0000ms, 1993ms total)
T1700 6428:413 JLINK_ReadReg(FPS25) returns 0xC605704C (0000ms, 1993ms total)
T1700 6428:413 JLINK_ReadReg(FPS26) returns 0x2C30E195 (0000ms, 1993ms total)
T1700 6428:413 JLINK_ReadReg(FPS27) returns 0x8032365D (0000ms, 1993ms total)
T1700 6428:413 JLINK_ReadReg(FPS28) returns 0x068522B7 (0000ms, 1993ms total)
T1700 6428:413 JLINK_ReadReg(FPS29) returns 0x121C1711 (0000ms, 1993ms total)
T1700 6428:413 JLINK_ReadReg(FPS30) returns 0x41020916 (0000ms, 1993ms total)
T1700 6428:413 JLINK_ReadReg(FPS31) returns 0x11A63042 (0000ms, 1993ms total)
T0B0C 6428:414 JLINK_ReadMemEx(0x2000E114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E114) - Data: 1F C2 00 08 returns 0x04 (0000ms, 1993ms total)
T0B0C 6428:414 JLINK_ReadMemEx(0x2000E108, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E108) - Data: 00 00 00 00 returns 0x04 (0000ms, 1993ms total)
T0B0C 6428:414 JLINK_ReadMemEx(0x2000E10C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E10C) - Data: 84 59 01 08 returns 0x04 (0000ms, 1993ms total)
T0B0C 6428:414 JLINK_ReadMemEx(0x2000E110, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E110) - Data: 00 00 00 00 returns 0x04 (0000ms, 1993ms total)
T0B0C 6428:414 JLINK_ReadMemEx(0x2000E114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E114) - Data: 1F C2 00 08 returns 0x04 (0000ms, 1993ms total)
T0B0C 6428:414 JLINK_ReadMemEx(0x2000E11C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E11C) - Data: 2F F9 00 08 returns 0x04 (0000ms, 1993ms total)
T0B0C 6428:414 JLINK_ReadMemEx(0x2000E118, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E118) - Data: 00 00 00 00 returns 0x04 (0000ms, 1993ms total)
T0B0C 6428:414 JLINK_ReadMemEx(0x2000E11C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E11C) - Data: 2F F9 00 08 returns 0x04 (0000ms, 1993ms total)
T0B0C 6428:414 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: E8 B5 0E 00 returns 1 (0000ms, 1993ms total)
T0B0C 6428:414 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000588) - Data: 00 returns 0x01 (0000ms, 1993ms total)
T0B0C 6428:415 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200007ED) - Data: DC returns 0x01 (0000ms, 1994ms total)
T0B0C 6428:415 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200007EE) - Data: 00 returns 0x01 (0000ms, 1994ms total)
T0B0C 6428:415 JLINK_ReadMemEx(0x2000042C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000042C) - Data: 00 00 00 00 returns 0x04 (0001ms, 1995ms total)
T0B0C 6428:421 JLINK_ReadMemEx(0x0800EB84, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EB84) - Data: 01 48 00 78 70 47 00 00 F8 10 00 20 01 46 01 EB ... returns 0x3C (0000ms, 1995ms total)
T0B0C 6428:421 JLINK_ReadMemEx(0x0800EB84, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB84) - Data: 01 48 returns 0x02 (0000ms, 1995ms total)
T0B0C 6428:421 JLINK_ReadMemEx(0x0800EB86, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB86) - Data: 00 78 returns 0x02 (0000ms, 1995ms total)
T0B0C 6428:421 JLINK_ReadMemEx(0x0800EB86, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB86) - Data: 00 78 returns 0x02 (0000ms, 1995ms total)
T0B0C 6428:421 JLINK_ReadMemEx(0x0800EB88, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EB88) - Data: 70 47 00 00 F8 10 00 20 01 46 01 EB 81 00 40 00 ... returns 0x3C (0000ms, 1995ms total)
T0B0C 6428:421 JLINK_ReadMemEx(0x0800EB88, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB88) - Data: 70 47 returns 0x02 (0000ms, 1995ms total)
T0B0C 6428:428 JLINK_ReadMemEx(0x0800EB88, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800EB88) - Data: 70 47 00 00 F8 10 00 20 01 46 01 EB 81 00 40 00 ... returns 0x3C (0000ms, 1995ms total)
T0B0C 6428:428 JLINK_ReadMemEx(0x0800EB88, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB88) - Data: 70 47 returns 0x02 (0000ms, 1995ms total)
T0B0C 6428:428 JLINK_ReadMemEx(0x0800EB8A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB8A) - Data: 00 00 returns 0x02 (0000ms, 1995ms total)
T1700 6429:163 JLINK_ReadMemEx(0x0800EB88, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EB88) - Data: 70 47 returns 0x02 (0000ms, 1995ms total)
T1700 6429:163 JLINK_Step() -- Read from C cache (2 bytes @ 0x0800EB88) -- Simulated returns 0x00 (0002ms, 1997ms total)
T1700 6429:165 JLINK_ReadReg(R15 (PC)) returns 0x08010014 (0000ms, 1997ms total)
T1700 6429:165 JLINK_ReadReg(XPSR) returns 0x61000000 (0000ms, 1997ms total)
T1700 6429:165 JLINK_ReadMemEx(0x08010012, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010012) - Data: B8 FD returns 0x02 (0000ms, 1997ms total)
T1700 6429:165 JLINK_ReadMemEx(0x08010014, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08010014) - Data: 06 46 08 49 88 8D 05 49 32 46 8B 6B 04 21 98 47 ... returns 0x3C (0000ms, 1997ms total)
T1700 6429:165 JLINK_ReadMemEx(0x08010014, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010014) - Data: 06 46 returns 0x02 (0000ms, 1997ms total)
T1700 6429:165 JLINK_ReadMemEx(0x08010014, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08010014) - Data: 06 46 08 49 88 8D 05 49 32 46 8B 6B 04 21 98 47 ... returns 0x3C (0000ms, 1997ms total)
T1700 6429:165 JLINK_ReadMemEx(0x08010014, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010014) - Data: 06 46 returns 0x02 (0000ms, 1997ms total)
T1700 6429:165 JLINK_ReadMemEx(0x08010016, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010016) - Data: 08 49 returns 0x02 (0000ms, 1997ms total)
T1700 6429:165 JLINK_Step() -- Read from C cache (2 bytes @ 0x08010014) -- Simulated returns 0x00 (0000ms, 1997ms total)
T1700 6429:165 JLINK_ReadReg(R15 (PC)) returns 0x08010016 (0000ms, 1997ms total)
T1700 6429:165 JLINK_ReadReg(XPSR) returns 0x61000000 (0000ms, 1997ms total)
T1700 6429:165 JLINK_ReadMemEx(0x08010016, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010016) - Data: 08 49 returns 0x02 (0000ms, 1997ms total)
T1700 6429:165 JLINK_ReadMemEx(0x08010018, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08010018) - Data: 88 8D 05 49 32 46 8B 6B 04 21 98 47 70 BD 00 00 ... returns 0x3C (0000ms, 1997ms total)
T1700 6429:165 JLINK_ReadMemEx(0x08010018, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010018) - Data: 88 8D returns 0x02 (0000ms, 1997ms total)
T1700 6429:165 JLINK_Step() -- Read from C cache (2 bytes @ 0x08010016) -- Read from C cache (4 bytes @ 0x08010038) -- Simulated returns 0x00 (0000ms, 1997ms total)
T1700 6429:165 JLINK_ReadReg(R15 (PC)) returns 0x08010018 (0001ms, 1998ms total)
T1700 6429:166 JLINK_ReadReg(XPSR) returns 0x61000000 (0000ms, 1998ms total)
T1700 6429:166 JLINK_ReadMemEx(0x08010018, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08010018) - Data: 88 8D 05 49 32 46 8B 6B 04 21 98 47 70 BD 00 00 ... returns 0x3C (0000ms, 1998ms total)
T1700 6429:166 JLINK_ReadMemEx(0x08010018, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010018) - Data: 88 8D returns 0x02 (0000ms, 1998ms total)
T1700 6429:166 JLINK_ReadMemEx(0x0801001A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801001A) - Data: 05 49 returns 0x02 (0000ms, 1998ms total)
T1700 6429:166 JLINK_Step() -- Read from C cache (2 bytes @ 0x08010018) -- Read from C cache (2 bytes @ 0x200007C0) -- Simulated returns 0x00 (0000ms, 1998ms total)
T1700 6429:166 JLINK_ReadReg(R15 (PC)) returns 0x0801001A (0000ms, 1998ms total)
T1700 6429:166 JLINK_ReadReg(XPSR) returns 0x61000000 (0000ms, 1998ms total)
T1700 6429:166 JLINK_ReadMemEx(0x0801001A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801001A) - Data: 05 49 returns 0x02 (0000ms, 1998ms total)
T1700 6429:166 JLINK_ReadMemEx(0x0801001C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0801001C) - Data: 32 46 8B 6B 04 21 98 47 70 BD 00 00 F8 10 00 20 ... returns 0x3C (0000ms, 1998ms total)
T1700 6429:166 JLINK_ReadMemEx(0x0801001C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801001C) - Data: 32 46 returns 0x02 (0000ms, 1998ms total)
T1700 6429:166 JLINK_Step() -- Read from C cache (2 bytes @ 0x0801001A) -- Read from C cache (4 bytes @ 0x08010030) -- Simulated returns 0x00 (0000ms, 1998ms total)
T1700 6429:166 JLINK_ReadReg(R15 (PC)) returns 0x0801001C (0000ms, 1998ms total)
T1700 6429:166 JLINK_ReadReg(XPSR) returns 0x61000000 (0000ms, 1998ms total)
T1700 6429:166 JLINK_ReadMemEx(0x0801001C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0801001C) - Data: 32 46 8B 6B 04 21 98 47 70 BD 00 00 F8 10 00 20 ... returns 0x3C (0000ms, 1998ms total)
T1700 6429:166 JLINK_ReadMemEx(0x0801001C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801001C) - Data: 32 46 returns 0x02 (0000ms, 1998ms total)
T1700 6429:166 JLINK_ReadMemEx(0x0801001E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801001E) - Data: 8B 6B returns 0x02 (0000ms, 1998ms total)
T1700 6429:166 JLINK_Step() -- Read from C cache (2 bytes @ 0x0801001C) -- Simulated returns 0x00 (0000ms, 1998ms total)
T1700 6429:166 JLINK_ReadReg(R15 (PC)) returns 0x0801001E (0000ms, 1998ms total)
T1700 6429:166 JLINK_ReadReg(XPSR) returns 0x61000000 (0000ms, 1998ms total)
T1700 6429:166 JLINK_ReadMemEx(0x0801001E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801001E) - Data: 8B 6B returns 0x02 (0000ms, 1998ms total)
T1700 6429:166 JLINK_ReadMemEx(0x08010020, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08010020) - Data: 04 21 98 47 70 BD 00 00 F8 10 00 20 B2 04 00 20 ... returns 0x3C (0000ms, 1998ms total)
T1700 6429:166 JLINK_ReadMemEx(0x08010020, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010020) - Data: 04 21 returns 0x02 (0000ms, 1998ms total)
T1700 6429:166 JLINK_Step() -- Read from C cache (2 bytes @ 0x0801001E) -- Read from C cache (4 bytes @ 0x200002F0) -- Simulated returns 0x00 (0000ms, 1998ms total)
T1700 6429:166 JLINK_ReadReg(R15 (PC)) returns 0x08010020 (0000ms, 1998ms total)
T1700 6429:166 JLINK_ReadReg(XPSR) returns 0x61000000 (0000ms, 1998ms total)
T1700 6429:166 JLINK_ReadMemEx(0x08010020, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08010020) - Data: 04 21 98 47 70 BD 00 00 F8 10 00 20 B2 04 00 20 ... returns 0x3C (0000ms, 1998ms total)
T1700 6429:166 JLINK_ReadMemEx(0x08010020, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010020) - Data: 04 21 returns 0x02 (0000ms, 1998ms total)
T1700 6429:166 JLINK_ReadMemEx(0x08010022, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010022) - Data: 98 47 returns 0x02 (0001ms, 1999ms total)
T1700 6429:167 JLINK_Step() -- Read from C cache (2 bytes @ 0x08010020) -- Simulated returns 0x00 (0000ms, 1999ms total)
T1700 6429:167 JLINK_ReadReg(R15 (PC)) returns 0x08010022 (0000ms, 1999ms total)
T1700 6429:167 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 1999ms total)
T1700 6429:167 JLINK_ReadMemEx(0x08010022, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010022) - Data: 98 47 returns 0x02 (0000ms, 1999ms total)
T1700 6429:167 JLINK_ReadMemEx(0x08010024, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08010024) - Data: 70 BD 00 00 F8 10 00 20 B2 04 00 20 B8 02 00 20 ... returns 0x3C (0000ms, 1999ms total)
T1700 6429:167 JLINK_ReadMemEx(0x08010024, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010024) - Data: 70 BD returns 0x02 (0000ms, 1999ms total)
T1700 6429:167 JLINK_ReadReg(R0) returns 0x000079BF (0000ms, 1999ms total)
T1700 6429:167 JLINK_ReadReg(R1) returns 0x00000004 (0000ms, 1999ms total)
T1700 6429:167 JLINK_ReadReg(R2) returns 0x00000003 (0000ms, 1999ms total)
T1700 6429:167 JLINK_ReadReg(R3) returns 0x08011BA5 (0000ms, 1999ms total)
T1700 6429:167 JLINK_ReadReg(R4) returns 0x00000001 (0000ms, 1999ms total)
T1700 6429:167 JLINK_ReadReg(R5) returns 0x00000001 (0000ms, 1999ms total)
T1700 6429:167 JLINK_ReadReg(R6) returns 0x00000003 (0000ms, 1999ms total)
T1700 6429:167 JLINK_ReadReg(R7) returns 0x00000000 (0000ms, 1999ms total)
T1700 6429:167 JLINK_ReadReg(R8) returns 0x00000000 (0000ms, 1999ms total)
T1700 6429:167 JLINK_ReadReg(R9) returns 0x20000134 (0000ms, 1999ms total)
T1700 6429:167 JLINK_ReadReg(R10) returns 0x00000000 (0000ms, 1999ms total)
T1700 6429:167 JLINK_ReadReg(R11) returns 0x00000000 (0000ms, 1999ms total)
T1700 6429:167 JLINK_ReadReg(R12) returns 0x00000004 (0000ms, 1999ms total)
T1700 6429:167 JLINK_ReadReg(R13 (SP)) returns 0x2000E108 (0000ms, 1999ms total)
T1700 6429:167 JLINK_ReadReg(R14) returns 0x08010015 (0000ms, 1999ms total)
T1700 6429:167 JLINK_ReadReg(R15 (PC)) returns 0x08010022 (0000ms, 1999ms total)
T1700 6429:167 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 1999ms total)
T1700 6429:167 JLINK_ReadReg(MSP) returns 0x2000E108 (0000ms, 1999ms total)
T1700 6429:167 JLINK_ReadReg(PSP) returns 0x20001000 (0000ms, 1999ms total)
T1700 6429:167 JLINK_ReadReg(CFBP) returns 0x00000001 (0000ms, 1999ms total)
T1700 6429:167 JLINK_ReadReg(FPSCR) returns 0x00000000 (0000ms, 1999ms total)
T1700 6429:167 JLINK_ReadReg(FPS0) returns 0xFB068412 (0000ms, 1999ms total)
T1700 6429:167 JLINK_ReadReg(FPS1) returns 0x10110C5A (0000ms, 1999ms total)
T1700 6429:167 JLINK_ReadReg(FPS2) returns 0x04345E8B (0000ms, 1999ms total)
T1700 6429:167 JLINK_ReadReg(FPS3) returns 0x84492403 (0000ms, 1999ms total)
T1700 6429:167 JLINK_ReadReg(FPS4) returns 0x18248A10 (0000ms, 1999ms total)
T1700 6429:167 JLINK_ReadReg(FPS5) returns 0x24102496 (0000ms, 1999ms total)
T1700 6429:167 JLINK_ReadReg(FPS6) returns 0x82C0846D (0000ms, 1999ms total)
T1700 6429:167 JLINK_ReadReg(FPS7) returns 0x28E02089 (0000ms, 1999ms total)
T1700 6429:167 JLINK_ReadReg(FPS8) returns 0x05488443 (0000ms, 1999ms total)
T1700 6429:168 JLINK_ReadReg(FPS9) returns 0xF172B840 (0000ms, 1999ms total)
T1700 6429:168 JLINK_ReadReg(FPS10) returns 0x11B25004 (0000ms, 1999ms total)
T1700 6429:168 JLINK_ReadReg(FPS11) returns 0x000A0122 (0000ms, 1999ms total)
T1700 6429:168 JLINK_ReadReg(FPS12) returns 0x02345609 (0000ms, 1999ms total)
T1700 6429:168 JLINK_ReadReg(FPS13) returns 0x86007109 (0000ms, 1999ms total)
T1700 6429:168 JLINK_ReadReg(FPS14) returns 0xA03C9BD0 (0000ms, 1999ms total)
T1700 6429:168 JLINK_ReadReg(FPS15) returns 0x5012A400 (0000ms, 1999ms total)
T1700 6429:168 JLINK_ReadReg(FPS16) returns 0x1591822D (0000ms, 1999ms total)
T1700 6429:168 JLINK_ReadReg(FPS17) returns 0x9415225C (0000ms, 1999ms total)
T1700 6429:168 JLINK_ReadReg(FPS18) returns 0x0C0917B5 (0000ms, 1999ms total)
T1700 6429:168 JLINK_ReadReg(FPS19) returns 0x1C78D422 (0000ms, 1999ms total)
T1700 6429:168 JLINK_ReadReg(FPS20) returns 0xB4874081 (0000ms, 1999ms total)
T1700 6429:168 JLINK_ReadReg(FPS21) returns 0x108D0118 (0000ms, 1999ms total)
T1700 6429:168 JLINK_ReadReg(FPS22) returns 0x9044A200 (0000ms, 1999ms total)
T1700 6429:168 JLINK_ReadReg(FPS23) returns 0x781449E0 (0000ms, 1999ms total)
T1700 6429:168 JLINK_ReadReg(FPS24) returns 0x1C330E11 (0000ms, 1999ms total)
T1700 6429:168 JLINK_ReadReg(FPS25) returns 0xC605704C (0000ms, 1999ms total)
T1700 6429:168 JLINK_ReadReg(FPS26) returns 0x2C30E195 (0000ms, 1999ms total)
T1700 6429:168 JLINK_ReadReg(FPS27) returns 0x8032365D (0000ms, 1999ms total)
T1700 6429:168 JLINK_ReadReg(FPS28) returns 0x068522B7 (0000ms, 1999ms total)
T1700 6429:168 JLINK_ReadReg(FPS29) returns 0x121C1711 (0000ms, 1999ms total)
T1700 6429:168 JLINK_ReadReg(FPS30) returns 0x41020916 (0000ms, 1999ms total)
T1700 6429:168 JLINK_ReadReg(FPS31) returns 0x11A63042 (0000ms, 1999ms total)
T1700 6429:169 JLINK_Step() -- Read from C cache (2 bytes @ 0x08010022) -- Simulated returns 0x00 (0000ms, 1999ms total)
T1700 6429:169 JLINK_ReadReg(R15 (PC)) returns 0x08011BA4 (0000ms, 1999ms total)
T1700 6429:169 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 1999ms total)
T1700 6429:170 JLINK_ReadReg(R0) returns 0x000079BF (0000ms, 1999ms total)
T1700 6429:170 JLINK_ReadReg(R1) returns 0x00000004 (0000ms, 1999ms total)
T1700 6429:170 JLINK_ReadReg(R2) returns 0x00000003 (0000ms, 1999ms total)
T1700 6429:170 JLINK_ReadReg(R3) returns 0x08011BA5 (0000ms, 1999ms total)
T1700 6429:170 JLINK_ReadReg(R4) returns 0x00000001 (0000ms, 1999ms total)
T1700 6429:170 JLINK_ReadReg(R5) returns 0x00000001 (0000ms, 1999ms total)
T1700 6429:170 JLINK_ReadReg(R6) returns 0x00000003 (0000ms, 1999ms total)
T1700 6429:170 JLINK_ReadReg(R7) returns 0x00000000 (0000ms, 1999ms total)
T1700 6429:170 JLINK_ReadReg(R8) returns 0x00000000 (0000ms, 1999ms total)
T1700 6429:170 JLINK_ReadReg(R9) returns 0x20000134 (0000ms, 1999ms total)
T1700 6429:170 JLINK_ReadReg(R10) returns 0x00000000 (0000ms, 1999ms total)
T1700 6429:170 JLINK_ReadReg(R11) returns 0x00000000 (0000ms, 1999ms total)
T1700 6429:170 JLINK_ReadReg(R12) returns 0x00000004 (0000ms, 1999ms total)
T1700 6429:170 JLINK_ReadReg(R13 (SP)) returns 0x2000E108 (0000ms, 1999ms total)
T1700 6429:170 JLINK_ReadReg(R14) returns 0x08010025 (0000ms, 1999ms total)
T1700 6429:170 JLINK_ReadReg(R15 (PC)) returns 0x08011BA4 (0000ms, 1999ms total)
T1700 6429:170 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 1999ms total)
T1700 6429:170 JLINK_ReadReg(MSP) returns 0x2000E108 (0000ms, 1999ms total)
T1700 6429:170 JLINK_ReadReg(PSP) returns 0x20001000 (0000ms, 1999ms total)
T1700 6429:170 JLINK_ReadReg(CFBP) returns 0x00000001 (0000ms, 1999ms total)
T1700 6429:170 JLINK_ReadReg(FPSCR) returns 0x00000000 (0000ms, 1999ms total)
T1700 6429:170 JLINK_ReadReg(FPS0) returns 0xFB068412 (0000ms, 1999ms total)
T1700 6429:170 JLINK_ReadReg(FPS1) returns 0x10110C5A (0000ms, 1999ms total)
T1700 6429:170 JLINK_ReadReg(FPS2) returns 0x04345E8B (0000ms, 1999ms total)
T1700 6429:170 JLINK_ReadReg(FPS3) returns 0x84492403 (0000ms, 1999ms total)
T1700 6429:170 JLINK_ReadReg(FPS4) returns 0x18248A10 (0000ms, 1999ms total)
T1700 6429:170 JLINK_ReadReg(FPS5) returns 0x24102496 (0000ms, 1999ms total)
T1700 6429:170 JLINK_ReadReg(FPS6) returns 0x82C0846D (0000ms, 1999ms total)
T1700 6429:170 JLINK_ReadReg(FPS7) returns 0x28E02089 (0000ms, 1999ms total)
T1700 6429:170 JLINK_ReadReg(FPS8) returns 0x05488443 (0000ms, 1999ms total)
T1700 6429:170 JLINK_ReadReg(FPS9) returns 0xF172B840 (0001ms, 2000ms total)
T1700 6429:171 JLINK_ReadReg(FPS10) returns 0x11B25004 (0000ms, 2000ms total)
T1700 6429:171 JLINK_ReadReg(FPS11) returns 0x000A0122 (0000ms, 2000ms total)
T1700 6429:171 JLINK_ReadReg(FPS12) returns 0x02345609 (0000ms, 2000ms total)
T1700 6429:171 JLINK_ReadReg(FPS13) returns 0x86007109 (0000ms, 2000ms total)
T1700 6429:171 JLINK_ReadReg(FPS14) returns 0xA03C9BD0 (0000ms, 2000ms total)
T1700 6429:171 JLINK_ReadReg(FPS15) returns 0x5012A400 (0000ms, 2000ms total)
T1700 6429:171 JLINK_ReadReg(FPS16) returns 0x1591822D (0000ms, 2000ms total)
T1700 6429:171 JLINK_ReadReg(FPS17) returns 0x9415225C (0000ms, 2000ms total)
T1700 6429:171 JLINK_ReadReg(FPS18) returns 0x0C0917B5 (0000ms, 2000ms total)
T1700 6429:171 JLINK_ReadReg(FPS19) returns 0x1C78D422 (0000ms, 2000ms total)
T1700 6429:171 JLINK_ReadReg(FPS20) returns 0xB4874081 (0000ms, 2000ms total)
T1700 6429:171 JLINK_ReadReg(FPS21) returns 0x108D0118 (0000ms, 2000ms total)
T1700 6429:171 JLINK_ReadReg(FPS22) returns 0x9044A200 (0000ms, 2000ms total)
T1700 6429:171 JLINK_ReadReg(FPS23) returns 0x781449E0 (0000ms, 2000ms total)
T1700 6429:171 JLINK_ReadReg(FPS24) returns 0x1C330E11 (0000ms, 2000ms total)
T1700 6429:171 JLINK_ReadReg(FPS25) returns 0xC605704C (0000ms, 2000ms total)
T1700 6429:171 JLINK_ReadReg(FPS26) returns 0x2C30E195 (0000ms, 2000ms total)
T1700 6429:171 JLINK_ReadReg(FPS27) returns 0x8032365D (0000ms, 2000ms total)
T1700 6429:171 JLINK_ReadReg(FPS28) returns 0x068522B7 (0000ms, 2000ms total)
T1700 6429:171 JLINK_ReadReg(FPS29) returns 0x121C1711 (0000ms, 2000ms total)
T1700 6429:171 JLINK_ReadReg(FPS30) returns 0x41020916 (0000ms, 2000ms total)
T1700 6429:171 JLINK_ReadReg(FPS31) returns 0x11A63042 (0000ms, 2000ms total)
T0B0C 6429:172 JLINK_ReadMemEx(0x2000E114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E114) - Data: 1F C2 00 08 returns 0x04 (0000ms, 2000ms total)
T0B0C 6429:172 JLINK_ReadMemEx(0x2000E108, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E108) - Data: 00 00 00 00 returns 0x04 (0000ms, 2000ms total)
T0B0C 6429:172 JLINK_ReadMemEx(0x2000E10C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E10C) - Data: 84 59 01 08 returns 0x04 (0000ms, 2000ms total)
T0B0C 6429:172 JLINK_ReadMemEx(0x2000E110, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E110) - Data: 00 00 00 00 returns 0x04 (0000ms, 2000ms total)
T0B0C 6429:172 JLINK_ReadMemEx(0x2000E114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E114) - Data: 1F C2 00 08 returns 0x04 (0000ms, 2000ms total)
T0B0C 6429:172 JLINK_ReadMemEx(0x2000E11C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E11C) - Data: 2F F9 00 08 returns 0x04 (0000ms, 2000ms total)
T0B0C 6429:172 JLINK_ReadMemEx(0x2000E118, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E118) - Data: 00 00 00 00 returns 0x04 (0000ms, 2000ms total)
T0B0C 6429:172 JLINK_ReadMemEx(0x2000E11C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E11C) - Data: 2F F9 00 08 returns 0x04 (0000ms, 2000ms total)
T0B0C 6429:177 JLINK_ReadMemEx(0x2000E0F0, 0x0005 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x2000E0C0) -- Updating C cache (64 bytes @ 0x2000E0C0) -- Read from C cache (5 bytes @ 0x2000E0F0) - Data: 00 00 00 00 01 returns 0x05 (0002ms, 2002ms total)
T0B0C 6429:187 JLINK_ReadMemEx(0x2000E0F0, 0x0005 Bytes, ..., Flags = 0x02000000) -- Read from C cache (5 bytes @ 0x2000E0F0) - Data: 00 00 00 00 01 returns 0x05 (0001ms, 2003ms total)
T0B0C 6429:188 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F5 B5 0E 00 returns 1 (0000ms, 2003ms total)
T0B0C 6429:188 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000588) - Data: 00 returns 0x01 (0000ms, 2003ms total)
T0B0C 6429:188 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200007ED) - Data: DC returns 0x01 (0000ms, 2003ms total)
T0B0C 6429:188 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200007EE) - Data: 00 returns 0x01 (0000ms, 2003ms total)
T0B0C 6429:188 JLINK_ReadMemEx(0x2000042C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000042C) - Data: 00 00 00 00 returns 0x04 (0000ms, 2003ms total)
T0B0C 6429:191 JLINK_ReadMemEx(0x08011AA4, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x08011A80) -- Updating C cache (128 bytes @ 0x08011A80) -- Read from C cache (60 bytes @ 0x08011AA4) - Data: F8 F7 74 F9 22 46 20 21 11 20 F8 F7 6F F9 22 46 ... returns 0x3C (0001ms, 2004ms total)
T0B0C 6429:192 JLINK_ReadMemEx(0x08011AA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011AA4) - Data: F8 F7 returns 0x02 (0000ms, 2004ms total)
T0B0C 6429:192 JLINK_ReadMemEx(0x08011AA6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011AA6) - Data: 74 F9 returns 0x02 (0000ms, 2004ms total)
T0B0C 6429:192 JLINK_ReadMemEx(0x08011AA8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011AA8) - Data: 22 46 20 21 11 20 F8 F7 6F F9 22 46 1E 21 00 20 ... returns 0x3C (0000ms, 2004ms total)
T0B0C 6429:192 JLINK_ReadMemEx(0x08011AA8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011AA8) - Data: 22 46 returns 0x02 (0000ms, 2004ms total)
T0B0C 6429:192 JLINK_ReadMemEx(0x08011AAA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011AAA) - Data: 20 21 returns 0x02 (0000ms, 2004ms total)
T0B0C 6429:192 JLINK_ReadMemEx(0x08011AAA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011AAA) - Data: 20 21 returns 0x02 (0000ms, 2004ms total)
T0B0C 6429:192 JLINK_ReadMemEx(0x08011AAC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011AAC) - Data: 11 20 F8 F7 6F F9 22 46 1E 21 00 20 F8 F7 6A F9 ... returns 0x3C (0000ms, 2004ms total)
T0B0C 6429:192 JLINK_ReadMemEx(0x08011AAC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011AAC) - Data: 11 20 returns 0x02 (0000ms, 2004ms total)
T0B0C 6429:192 JLINK_ReadMemEx(0x08011AAC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011AAC) - Data: 11 20 F8 F7 6F F9 22 46 1E 21 00 20 F8 F7 6A F9 ... returns 0x3C (0000ms, 2004ms total)
T0B0C 6429:192 JLINK_ReadMemEx(0x08011AAC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011AAC) - Data: 11 20 returns 0x02 (0000ms, 2004ms total)
T0B0C 6429:192 JLINK_ReadMemEx(0x08011AAE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011AAE) - Data: F8 F7 returns 0x02 (0000ms, 2004ms total)
T0B0C 6429:192 JLINK_ReadMemEx(0x08011AAE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011AAE) - Data: F8 F7 returns 0x02 (0000ms, 2004ms total)
T0B0C 6429:192 JLINK_ReadMemEx(0x08011AB0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011AB0) - Data: 6F F9 22 46 1E 21 00 20 F8 F7 6A F9 22 46 00 21 ... returns 0x3C (0001ms, 2005ms total)
T0B0C 6429:193 JLINK_ReadMemEx(0x08011AB0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011AB0) - Data: 6F F9 returns 0x02 (0000ms, 2005ms total)
T0B0C 6429:193 JLINK_ReadMemEx(0x08011AB2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011AB2) - Data: 22 46 returns 0x02 (0000ms, 2005ms total)
T0B0C 6429:193 JLINK_ReadMemEx(0x08011AB4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011AB4) - Data: 1E 21 00 20 F8 F7 6A F9 22 46 00 21 01 20 F8 F7 ... returns 0x3C (0000ms, 2005ms total)
T0B0C 6429:193 JLINK_ReadMemEx(0x08011AB4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011AB4) - Data: 1E 21 returns 0x02 (0000ms, 2005ms total)
T0B0C 6429:193 JLINK_ReadMemEx(0x08011AB4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011AB4) - Data: 1E 21 00 20 F8 F7 6A F9 22 46 00 21 01 20 F8 F7 ... returns 0x3C (0000ms, 2005ms total)
T0B0C 6429:193 JLINK_ReadMemEx(0x08011AB4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011AB4) - Data: 1E 21 returns 0x02 (0000ms, 2005ms total)
T0B0C 6429:193 JLINK_ReadMemEx(0x08011AB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011AB6) - Data: 00 20 returns 0x02 (0000ms, 2005ms total)
T0B0C 6429:193 JLINK_ReadMemEx(0x08011AB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011AB6) - Data: 00 20 returns 0x02 (0000ms, 2005ms total)
T0B0C 6429:193 JLINK_ReadMemEx(0x08011AB8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011AB8) - Data: F8 F7 6A F9 22 46 00 21 01 20 F8 F7 65 F9 22 46 ... returns 0x3C (0000ms, 2005ms total)
T0B0C 6429:193 JLINK_ReadMemEx(0x08011AB8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011AB8) - Data: F8 F7 returns 0x02 (0000ms, 2005ms total)
T0B0C 6429:193 JLINK_ReadMemEx(0x08011AB8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011AB8) - Data: F8 F7 6A F9 22 46 00 21 01 20 F8 F7 65 F9 22 46 ... returns 0x3C (0000ms, 2005ms total)
T0B0C 6429:193 JLINK_ReadMemEx(0x08011AB8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011AB8) - Data: F8 F7 returns 0x02 (0000ms, 2005ms total)
T0B0C 6429:193 JLINK_ReadMemEx(0x08011ABA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011ABA) - Data: 6A F9 returns 0x02 (0000ms, 2005ms total)
T0B0C 6429:193 JLINK_ReadMemEx(0x08011ABC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011ABC) - Data: 22 46 00 21 01 20 F8 F7 65 F9 22 46 01 21 02 20 ... returns 0x3C (0000ms, 2005ms total)
T0B0C 6429:193 JLINK_ReadMemEx(0x08011ABC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011ABC) - Data: 22 46 returns 0x02 (0000ms, 2005ms total)
T0B0C 6429:193 JLINK_ReadMemEx(0x08011ABE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011ABE) - Data: 00 21 returns 0x02 (0000ms, 2005ms total)
T0B0C 6429:193 JLINK_ReadMemEx(0x08011ABE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011ABE) - Data: 00 21 returns 0x02 (0000ms, 2005ms total)
T0B0C 6429:193 JLINK_ReadMemEx(0x08011AC0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011AC0) - Data: 01 20 F8 F7 65 F9 22 46 01 21 02 20 F8 F7 60 F9 ... returns 0x3C (0000ms, 2005ms total)
T0B0C 6429:193 JLINK_ReadMemEx(0x08011AC0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011AC0) - Data: 01 20 returns 0x02 (0000ms, 2005ms total)
T0B0C 6429:193 JLINK_ReadMemEx(0x08011AC0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011AC0) - Data: 01 20 F8 F7 65 F9 22 46 01 21 02 20 F8 F7 60 F9 ... returns 0x3C (0000ms, 2005ms total)
T0B0C 6429:193 JLINK_ReadMemEx(0x08011AC0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011AC0) - Data: 01 20 returns 0x02 (0000ms, 2005ms total)
T0B0C 6429:193 JLINK_ReadMemEx(0x08011AC2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011AC2) - Data: F8 F7 returns 0x02 (0000ms, 2005ms total)
T0B0C 6429:193 JLINK_ReadMemEx(0x08011AC2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011AC2) - Data: F8 F7 returns 0x02 (0000ms, 2005ms total)
T0B0C 6429:193 JLINK_ReadMemEx(0x08011AC4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011AC4) - Data: 65 F9 22 46 01 21 02 20 F8 F7 60 F9 22 46 03 21 ... returns 0x3C (0000ms, 2005ms total)
T0B0C 6429:193 JLINK_ReadMemEx(0x08011AC4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011AC4) - Data: 65 F9 returns 0x02 (0000ms, 2005ms total)
T0B0C 6429:193 JLINK_ReadMemEx(0x08011AC6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011AC6) - Data: 22 46 returns 0x02 (0000ms, 2005ms total)
T0B0C 6429:193 JLINK_ReadMemEx(0x08011AC8, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08011B00) -- Updating C cache (64 bytes @ 0x08011B00) -- Read from C cache (60 bytes @ 0x08011AC8) - Data: 01 21 02 20 F8 F7 60 F9 22 46 03 21 08 46 F8 F7 ... returns 0x3C (0002ms, 2007ms total)
T0B0C 6429:195 JLINK_ReadMemEx(0x08011AC8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011AC8) - Data: 01 21 returns 0x02 (0000ms, 2007ms total)
T0B0C 6429:195 JLINK_ReadMemEx(0x08011AC8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011AC8) - Data: 01 21 02 20 F8 F7 60 F9 22 46 03 21 08 46 F8 F7 ... returns 0x3C (0000ms, 2007ms total)
T0B0C 6429:195 JLINK_ReadMemEx(0x08011AC8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011AC8) - Data: 01 21 returns 0x02 (0000ms, 2007ms total)
T0B0C 6429:195 JLINK_ReadMemEx(0x08011ACA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011ACA) - Data: 02 20 returns 0x02 (0000ms, 2007ms total)
T0B0C 6429:195 JLINK_ReadMemEx(0x08011ACA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011ACA) - Data: 02 20 returns 0x02 (0000ms, 2007ms total)
T0B0C 6429:195 JLINK_ReadMemEx(0x08011ACC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011ACC) - Data: F8 F7 60 F9 22 46 03 21 08 46 F8 F7 5B F9 15 48 ... returns 0x3C (0000ms, 2007ms total)
T0B0C 6429:195 JLINK_ReadMemEx(0x08011ACC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011ACC) - Data: F8 F7 returns 0x02 (0000ms, 2007ms total)
T0B0C 6429:195 JLINK_ReadMemEx(0x08011ACC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011ACC) - Data: F8 F7 60 F9 22 46 03 21 08 46 F8 F7 5B F9 15 48 ... returns 0x3C (0000ms, 2007ms total)
T0B0C 6429:195 JLINK_ReadMemEx(0x08011ACC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011ACC) - Data: F8 F7 returns 0x02 (0000ms, 2007ms total)
T0B0C 6429:195 JLINK_ReadMemEx(0x08011ACE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011ACE) - Data: 60 F9 returns 0x02 (0000ms, 2007ms total)
T0B0C 6429:195 JLINK_ReadMemEx(0x08011AD0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011AD0) - Data: 22 46 03 21 08 46 F8 F7 5B F9 15 48 90 F8 74 00 ... returns 0x3C (0000ms, 2007ms total)
T0B0C 6429:195 JLINK_ReadMemEx(0x08011AD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011AD0) - Data: 22 46 returns 0x02 (0000ms, 2007ms total)
T0B0C 6429:195 JLINK_ReadMemEx(0x08011AD2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011AD2) - Data: 03 21 returns 0x02 (0000ms, 2007ms total)
T0B0C 6429:195 JLINK_ReadMemEx(0x08011AD2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011AD2) - Data: 03 21 returns 0x02 (0000ms, 2007ms total)
T0B0C 6429:195 JLINK_ReadMemEx(0x08011AD4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011AD4) - Data: 08 46 F8 F7 5B F9 15 48 90 F8 74 00 01 28 03 D1 ... returns 0x3C (0000ms, 2007ms total)
T0B0C 6429:195 JLINK_ReadMemEx(0x08011AD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011AD4) - Data: 08 46 returns 0x02 (0000ms, 2007ms total)
T0B0C 6429:195 JLINK_ReadMemEx(0x08011AD4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011AD4) - Data: 08 46 F8 F7 5B F9 15 48 90 F8 74 00 01 28 03 D1 ... returns 0x3C (0000ms, 2007ms total)
T0B0C 6429:195 JLINK_ReadMemEx(0x08011AD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011AD4) - Data: 08 46 returns 0x02 (0000ms, 2007ms total)
T0B0C 6429:195 JLINK_ReadMemEx(0x08011AD6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011AD6) - Data: F8 F7 returns 0x02 (0000ms, 2007ms total)
T0B0C 6429:195 JLINK_ReadMemEx(0x08011AD6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011AD6) - Data: F8 F7 returns 0x02 (0000ms, 2007ms total)
T0B0C 6429:195 JLINK_ReadMemEx(0x08011AD8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011AD8) - Data: 5B F9 15 48 90 F8 74 00 01 28 03 D1 21 46 F8 F7 ... returns 0x3C (0000ms, 2007ms total)
T0B0C 6429:195 JLINK_ReadMemEx(0x08011AD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011AD8) - Data: 5B F9 returns 0x02 (0000ms, 2007ms total)
T0B0C 6429:195 JLINK_ReadMemEx(0x08011ADA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011ADA) - Data: 15 48 returns 0x02 (0000ms, 2007ms total)
T0B0C 6429:195 JLINK_ReadMemEx(0x08011ADC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011ADC) - Data: 90 F8 74 00 01 28 03 D1 21 46 F8 F7 FB F8 0C E0 ... returns 0x3C (0000ms, 2007ms total)
T0B0C 6429:195 JLINK_ReadMemEx(0x08011ADC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011ADC) - Data: 90 F8 returns 0x02 (0000ms, 2007ms total)
T0B0C 6429:195 JLINK_ReadMemEx(0x08011ADC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011ADC) - Data: 90 F8 74 00 01 28 03 D1 21 46 F8 F7 FB F8 0C E0 ... returns 0x3C (0000ms, 2007ms total)
T0B0C 6429:195 JLINK_ReadMemEx(0x08011ADC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011ADC) - Data: 90 F8 returns 0x02 (0000ms, 2007ms total)
T0B0C 6429:195 JLINK_ReadMemEx(0x08011ADE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011ADE) - Data: 74 00 returns 0x02 (0000ms, 2007ms total)
T0B0C 6429:195 JLINK_ReadMemEx(0x08011AE0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011AE0) - Data: 01 28 03 D1 21 46 F8 F7 FB F8 0C E0 10 48 90 F8 ... returns 0x3C (0000ms, 2007ms total)
T0B0C 6429:195 JLINK_ReadMemEx(0x08011AE0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011AE0) - Data: 01 28 returns 0x02 (0000ms, 2007ms total)
T0B0C 6429:195 JLINK_ReadMemEx(0x08011AE2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011AE2) - Data: 03 D1 returns 0x02 (0000ms, 2007ms total)
T0B0C 6429:195 JLINK_ReadMemEx(0x08011AE2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011AE2) - Data: 03 D1 returns 0x02 (0000ms, 2007ms total)
T0B0C 6429:195 JLINK_ReadMemEx(0x08011AE4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011AE4) - Data: 21 46 F8 F7 FB F8 0C E0 10 48 90 F8 74 00 02 28 ... returns 0x3C (0000ms, 2007ms total)
T0B0C 6429:195 JLINK_ReadMemEx(0x08011AE4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011AE4) - Data: 21 46 returns 0x02 (0000ms, 2007ms total)
T0B0C 6429:195 JLINK_ReadMemEx(0x08011AE4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011AE4) - Data: 21 46 F8 F7 FB F8 0C E0 10 48 90 F8 74 00 02 28 ... returns 0x3C (0000ms, 2007ms total)
T0B0C 6429:195 JLINK_ReadMemEx(0x08011AE4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011AE4) - Data: 21 46 returns 0x02 (0000ms, 2007ms total)
T0B0C 6429:195 JLINK_ReadMemEx(0x08011AE6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011AE6) - Data: F8 F7 returns 0x02 (0000ms, 2007ms total)
T0B0C 6429:195 JLINK_ReadMemEx(0x08011AE6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011AE6) - Data: F8 F7 returns 0x02 (0000ms, 2007ms total)
T0B0C 6429:195 JLINK_ReadMemEx(0x08011AE8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011AE8) - Data: FB F8 0C E0 10 48 90 F8 74 00 02 28 03 D1 21 46 ... returns 0x3C (0000ms, 2007ms total)
T0B0C 6429:195 JLINK_ReadMemEx(0x08011AE8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011AE8) - Data: FB F8 returns 0x02 (0000ms, 2007ms total)
T0B0C 6429:195 JLINK_ReadMemEx(0x08011AEA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011AEA) - Data: 0C E0 returns 0x02 (0000ms, 2007ms total)
T0B0C 6429:195 JLINK_ReadMemEx(0x08011AEC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011AEC) - Data: 10 48 90 F8 74 00 02 28 03 D1 21 46 F8 F7 F2 F8 ... returns 0x3C (0000ms, 2007ms total)
T0B0C 6429:195 JLINK_ReadMemEx(0x08011AEC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011AEC) - Data: 10 48 returns 0x02 (0000ms, 2007ms total)
T0B0C 6429:195 JLINK_ReadMemEx(0x08011AEC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011AEC) - Data: 10 48 90 F8 74 00 02 28 03 D1 21 46 F8 F7 F2 F8 ... returns 0x3C (0000ms, 2007ms total)
T0B0C 6429:195 JLINK_ReadMemEx(0x08011AEC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011AEC) - Data: 10 48 returns 0x02 (0000ms, 2007ms total)
T0B0C 6429:195 JLINK_ReadMemEx(0x08011AEE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011AEE) - Data: 90 F8 returns 0x02 (0000ms, 2007ms total)
T0B0C 6429:195 JLINK_ReadMemEx(0x08011AEE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011AEE) - Data: 90 F8 returns 0x02 (0000ms, 2007ms total)
T0B0C 6429:195 JLINK_ReadMemEx(0x08011AF0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011AF0) - Data: 74 00 02 28 03 D1 21 46 F8 F7 F2 F8 03 E0 21 46 ... returns 0x3C (0000ms, 2007ms total)
T0B0C 6429:195 JLINK_ReadMemEx(0x08011AF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011AF0) - Data: 74 00 returns 0x02 (0000ms, 2007ms total)
T0B0C 6429:196 JLINK_ReadMemEx(0x08011AF2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011AF2) - Data: 02 28 returns 0x02 (0000ms, 2008ms total)
T0B0C 6429:196 JLINK_ReadMemEx(0x08011AF4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011AF4) - Data: 03 D1 21 46 F8 F7 F2 F8 03 E0 21 46 00 20 F8 F7 ... returns 0x3C (0000ms, 2008ms total)
T0B0C 6429:196 JLINK_ReadMemEx(0x08011AF4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011AF4) - Data: 03 D1 returns 0x02 (0000ms, 2008ms total)
T0B0C 6429:196 JLINK_ReadMemEx(0x08011AF4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011AF4) - Data: 03 D1 21 46 F8 F7 F2 F8 03 E0 21 46 00 20 F8 F7 ... returns 0x3C (0000ms, 2008ms total)
T0B0C 6429:196 JLINK_ReadMemEx(0x08011AF4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011AF4) - Data: 03 D1 returns 0x02 (0000ms, 2008ms total)
T0B0C 6429:196 JLINK_ReadMemEx(0x08011AF6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011AF6) - Data: 21 46 returns 0x02 (0000ms, 2008ms total)
T0B0C 6429:196 JLINK_ReadMemEx(0x08011AF6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011AF6) - Data: 21 46 returns 0x02 (0000ms, 2008ms total)
T0B0C 6429:196 JLINK_ReadMemEx(0x08011AF8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011AF8) - Data: F8 F7 F2 F8 03 E0 21 46 00 20 F8 F7 ED F8 21 46 ... returns 0x3C (0000ms, 2008ms total)
T0B0C 6429:196 JLINK_ReadMemEx(0x08011AF8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011AF8) - Data: F8 F7 returns 0x02 (0000ms, 2008ms total)
T0B0C 6429:196 JLINK_ReadMemEx(0x08011AF8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011AF8) - Data: F8 F7 F2 F8 03 E0 21 46 00 20 F8 F7 ED F8 21 46 ... returns 0x3C (0000ms, 2008ms total)
T0B0C 6429:196 JLINK_ReadMemEx(0x08011AF8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011AF8) - Data: F8 F7 returns 0x02 (0000ms, 2008ms total)
T0B0C 6429:196 JLINK_ReadMemEx(0x08011AFA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011AFA) - Data: F2 F8 returns 0x02 (0000ms, 2008ms total)
T0B0C 6429:196 JLINK_ReadMemEx(0x08011AFC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011AFC) - Data: 03 E0 21 46 00 20 F8 F7 ED F8 21 46 03 20 F8 F7 ... returns 0x3C (0000ms, 2008ms total)
T0B0C 6429:196 JLINK_ReadMemEx(0x08011AFC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011AFC) - Data: 03 E0 returns 0x02 (0000ms, 2008ms total)
T0B0C 6429:196 JLINK_ReadMemEx(0x08011AFE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011AFE) - Data: 21 46 returns 0x02 (0000ms, 2008ms total)
T0B0C 6429:196 JLINK_ReadMemEx(0x08011AFE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011AFE) - Data: 21 46 returns 0x02 (0000ms, 2008ms total)
T0B0C 6429:196 JLINK_ReadMemEx(0x08011B00, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011B00) - Data: 00 20 F8 F7 ED F8 21 46 03 20 F8 F7 BB F8 22 46 ... returns 0x3C (0000ms, 2008ms total)
T0B0C 6429:196 JLINK_ReadMemEx(0x08011B00, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B00) - Data: 00 20 returns 0x02 (0000ms, 2008ms total)
T0B0C 6429:196 JLINK_ReadMemEx(0x08011B00, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011B00) - Data: 00 20 F8 F7 ED F8 21 46 03 20 F8 F7 BB F8 22 46 ... returns 0x3C (0000ms, 2008ms total)
T0B0C 6429:196 JLINK_ReadMemEx(0x08011B00, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B00) - Data: 00 20 returns 0x02 (0000ms, 2008ms total)
T0B0C 6429:196 JLINK_ReadMemEx(0x08011B02, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B02) - Data: F8 F7 returns 0x02 (0000ms, 2008ms total)
T0B0C 6429:196 JLINK_ReadMemEx(0x08011B02, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B02) - Data: F8 F7 returns 0x02 (0000ms, 2008ms total)
T0B0C 6429:196 JLINK_ReadMemEx(0x08011B04, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011B04) - Data: ED F8 21 46 03 20 F8 F7 BB F8 22 46 05 21 4A F2 ... returns 0x3C (0000ms, 2008ms total)
T0B0C 6429:196 JLINK_ReadMemEx(0x08011B04, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B04) - Data: ED F8 returns 0x02 (0000ms, 2008ms total)
T0B0C 6429:196 JLINK_ReadMemEx(0x08011B06, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B06) - Data: 21 46 returns 0x02 (0000ms, 2008ms total)
T0B0C 6429:196 JLINK_ReadMemEx(0x08011B08, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08011B40) -- Updating C cache (64 bytes @ 0x08011B40) -- Read from C cache (60 bytes @ 0x08011B08) - Data: 03 20 F8 F7 BB F8 22 46 05 21 4A F2 55 40 00 F0 ... returns 0x3C (0002ms, 2010ms total)
T0B0C 6429:198 JLINK_ReadMemEx(0x08011B08, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B08) - Data: 03 20 returns 0x02 (0000ms, 2010ms total)
T0B0C 6429:198 JLINK_ReadMemEx(0x08011B08, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011B08) - Data: 03 20 F8 F7 BB F8 22 46 05 21 4A F2 55 40 00 F0 ... returns 0x3C (0000ms, 2010ms total)
T0B0C 6429:198 JLINK_ReadMemEx(0x08011B08, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B08) - Data: 03 20 returns 0x02 (0000ms, 2010ms total)
T0B0C 6429:198 JLINK_ReadMemEx(0x08011B0A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B0A) - Data: F8 F7 returns 0x02 (0000ms, 2010ms total)
T0B0C 6429:198 JLINK_ReadMemEx(0x08011B0A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B0A) - Data: F8 F7 returns 0x02 (0000ms, 2010ms total)
T0B0C 6429:198 JLINK_ReadMemEx(0x08011B0C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011B0C) - Data: BB F8 22 46 05 21 4A F2 55 40 00 F0 45 F8 20 46 ... returns 0x3C (0000ms, 2010ms total)
T0B0C 6429:198 JLINK_ReadMemEx(0x08011B0C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B0C) - Data: BB F8 returns 0x02 (0000ms, 2010ms total)
T0B0C 6429:198 JLINK_ReadMemEx(0x08011B0E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B0E) - Data: 22 46 returns 0x02 (0000ms, 2010ms total)
T0B0C 6429:198 JLINK_ReadMemEx(0x08011B10, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011B10) - Data: 05 21 4A F2 55 40 00 F0 45 F8 20 46 F7 F7 D0 FF ... returns 0x3C (0000ms, 2010ms total)
T0B0C 6429:198 JLINK_ReadMemEx(0x08011B10, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B10) - Data: 05 21 returns 0x02 (0000ms, 2010ms total)
T0B0C 6429:198 JLINK_ReadMemEx(0x08011B10, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011B10) - Data: 05 21 4A F2 55 40 00 F0 45 F8 20 46 F7 F7 D0 FF ... returns 0x3C (0000ms, 2010ms total)
T0B0C 6429:198 JLINK_ReadMemEx(0x08011B10, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B10) - Data: 05 21 returns 0x02 (0000ms, 2010ms total)
T0B0C 6429:198 JLINK_ReadMemEx(0x08011B12, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B12) - Data: 4A F2 returns 0x02 (0000ms, 2010ms total)
T0B0C 6429:198 JLINK_ReadMemEx(0x08011B12, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B12) - Data: 4A F2 returns 0x02 (0000ms, 2010ms total)
T0B0C 6429:198 JLINK_ReadMemEx(0x08011B14, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011B14) - Data: 55 40 00 F0 45 F8 20 46 F7 F7 D0 FF 20 46 F7 F7 ... returns 0x3C (0000ms, 2010ms total)
T0B0C 6429:198 JLINK_ReadMemEx(0x08011B14, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B14) - Data: 55 40 returns 0x02 (0000ms, 2010ms total)
T0B0C 6429:198 JLINK_ReadMemEx(0x08011B16, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B16) - Data: 00 F0 returns 0x02 (0000ms, 2010ms total)
T0B0C 6429:198 JLINK_ReadMemEx(0x08011B18, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011B18) - Data: 45 F8 20 46 F7 F7 D0 FF 20 46 F7 F7 B1 FF 20 46 ... returns 0x3C (0000ms, 2010ms total)
T0B0C 6429:198 JLINK_ReadMemEx(0x08011B18, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B18) - Data: 45 F8 returns 0x02 (0000ms, 2010ms total)
T0B0C 6429:198 JLINK_ReadMemEx(0x08011B1A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B1A) - Data: 20 46 returns 0x02 (0000ms, 2010ms total)
T0B0C 6429:198 JLINK_ReadMemEx(0x08011B1C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011B1C) - Data: F7 F7 D0 FF 20 46 F7 F7 B1 FF 20 46 F8 F7 EE F9 ... returns 0x3C (0000ms, 2010ms total)
T0B0C 6429:198 JLINK_ReadMemEx(0x08011B1C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B1C) - Data: F7 F7 returns 0x02 (0000ms, 2010ms total)
T0B0C 6429:198 JLINK_ReadMemEx(0x08011B1C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011B1C) - Data: F7 F7 D0 FF 20 46 F7 F7 B1 FF 20 46 F8 F7 EE F9 ... returns 0x3C (0000ms, 2010ms total)
T0B0C 6429:198 JLINK_ReadMemEx(0x08011B1C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B1C) - Data: F7 F7 returns 0x02 (0000ms, 2010ms total)
T0B0C 6429:198 JLINK_ReadMemEx(0x08011B1E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B1E) - Data: D0 FF returns 0x02 (0000ms, 2010ms total)
T0B0C 6429:198 JLINK_ReadMemEx(0x08011B20, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011B20) - Data: 20 46 F7 F7 B1 FF 20 46 F8 F7 EE F9 10 BD 00 00 ... returns 0x3C (0000ms, 2010ms total)
T0B0C 6429:198 JLINK_ReadMemEx(0x08011B20, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B20) - Data: 20 46 returns 0x02 (0000ms, 2010ms total)
T0B0C 6429:198 JLINK_ReadMemEx(0x08011B22, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B22) - Data: F7 F7 returns 0x02 (0000ms, 2010ms total)
T0B0C 6429:198 JLINK_ReadMemEx(0x08011B22, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B22) - Data: F7 F7 returns 0x02 (0000ms, 2010ms total)
T0B0C 6429:198 JLINK_ReadMemEx(0x08011B24, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011B24) - Data: B1 FF 20 46 F8 F7 EE F9 10 BD 00 00 3C 04 00 20 ... returns 0x3C (0000ms, 2010ms total)
T0B0C 6429:198 JLINK_ReadMemEx(0x08011B24, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B24) - Data: B1 FF returns 0x02 (0000ms, 2010ms total)
T0B0C 6429:198 JLINK_ReadMemEx(0x08011B26, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B26) - Data: 20 46 returns 0x02 (0000ms, 2010ms total)
T0B0C 6429:198 JLINK_ReadMemEx(0x08011B28, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011B28) - Data: F8 F7 EE F9 10 BD 00 00 3C 04 00 20 70 47 00 00 ... returns 0x3C (0000ms, 2010ms total)
T0B0C 6429:198 JLINK_ReadMemEx(0x08011B28, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B28) - Data: F8 F7 returns 0x02 (0000ms, 2010ms total)
T0B0C 6429:198 JLINK_ReadMemEx(0x08011B28, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011B28) - Data: F8 F7 EE F9 10 BD 00 00 3C 04 00 20 70 47 00 00 ... returns 0x3C (0000ms, 2010ms total)
T0B0C 6429:198 JLINK_ReadMemEx(0x08011B28, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B28) - Data: F8 F7 returns 0x02 (0000ms, 2010ms total)
T0B0C 6429:198 JLINK_ReadMemEx(0x08011B2A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B2A) - Data: EE F9 returns 0x02 (0000ms, 2010ms total)
T0B0C 6429:198 JLINK_ReadMemEx(0x08011B2C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011B2C) - Data: 10 BD 00 00 3C 04 00 20 70 47 00 00 00 EB 40 01 ... returns 0x3C (0000ms, 2010ms total)
T0B0C 6429:198 JLINK_ReadMemEx(0x08011B2C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B2C) - Data: 10 BD returns 0x02 (0000ms, 2010ms total)
T0B0C 6429:198 JLINK_ReadMemEx(0x08011B2E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B2E) - Data: 00 00 returns 0x02 (0000ms, 2010ms total)
T0B0C 6429:198 JLINK_ReadMemEx(0x08011B34, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011B34) - Data: 70 47 00 00 00 EB 40 01 04 4A 12 F8 11 10 49 1C ... returns 0x3C (0000ms, 2010ms total)
T0B0C 6429:198 JLINK_ReadMemEx(0x08011B34, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B34) - Data: 70 47 returns 0x02 (0000ms, 2010ms total)
T0B0C 6429:198 JLINK_ReadMemEx(0x08011B36, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B36) - Data: 00 00 returns 0x02 (0000ms, 2010ms total)
T0B0C 6429:198 JLINK_ReadMemEx(0x08011B36, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B36) - Data: 00 00 returns 0x02 (0000ms, 2010ms total)
T0B0C 6429:198 JLINK_ReadMemEx(0x08011B38, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011B38) - Data: 00 EB 40 01 04 4A 12 F8 11 10 49 1C 00 EB 40 02 ... returns 0x3C (0000ms, 2010ms total)
T0B0C 6429:198 JLINK_ReadMemEx(0x08011B38, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B38) - Data: 00 EB returns 0x02 (0000ms, 2010ms total)
T0B0C 6429:198 JLINK_ReadMemEx(0x08011B38, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011B38) - Data: 00 EB 40 01 04 4A 12 F8 11 10 49 1C 00 EB 40 02 ... returns 0x3C (0000ms, 2010ms total)
T0B0C 6429:198 JLINK_ReadMemEx(0x08011B38, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B38) - Data: 00 EB returns 0x02 (0001ms, 2011ms total)
T0B0C 6429:199 JLINK_ReadMemEx(0x08011B3A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B3A) - Data: 40 01 returns 0x02 (0000ms, 2011ms total)
T0B0C 6429:199 JLINK_ReadMemEx(0x08011B3C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011B3C) - Data: 04 4A 12 F8 11 10 49 1C 00 EB 40 02 01 4B 03 F8 ... returns 0x3C (0000ms, 2011ms total)
T0B0C 6429:199 JLINK_ReadMemEx(0x08011B3C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B3C) - Data: 04 4A returns 0x02 (0000ms, 2011ms total)
T0B0C 6429:199 JLINK_ReadMemEx(0x08011B3E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B3E) - Data: 12 F8 returns 0x02 (0000ms, 2011ms total)
T0B0C 6429:199 JLINK_ReadMemEx(0x08011B3E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B3E) - Data: 12 F8 returns 0x02 (0000ms, 2011ms total)
T0B0C 6429:199 JLINK_ReadMemEx(0x08011B40, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011B40) - Data: 11 10 49 1C 00 EB 40 02 01 4B 03 F8 12 10 70 47 ... returns 0x3C (0000ms, 2011ms total)
T0B0C 6429:199 JLINK_ReadMemEx(0x08011B40, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B40) - Data: 11 10 returns 0x02 (0000ms, 2011ms total)
T0B0C 6429:199 JLINK_ReadMemEx(0x08011B42, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B42) - Data: 49 1C returns 0x02 (0000ms, 2011ms total)
T0B0C 6429:199 JLINK_ReadMemEx(0x08011B44, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011B44) - Data: 00 EB 40 02 01 4B 03 F8 12 10 70 47 F8 11 00 20 ... returns 0x3C (0000ms, 2011ms total)
T0B0C 6429:199 JLINK_ReadMemEx(0x08011B44, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B44) - Data: 00 EB returns 0x02 (0000ms, 2011ms total)
T0B0C 6429:199 JLINK_ReadMemEx(0x08011B44, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011B44) - Data: 00 EB 40 02 01 4B 03 F8 12 10 70 47 F8 11 00 20 ... returns 0x3C (0000ms, 2011ms total)
T0B0C 6429:199 JLINK_ReadMemEx(0x08011B44, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B44) - Data: 00 EB returns 0x02 (0000ms, 2011ms total)
T0B0C 6429:199 JLINK_ReadMemEx(0x08011B46, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B46) - Data: 40 02 returns 0x02 (0000ms, 2011ms total)
T0B0C 6429:199 JLINK_ReadMemEx(0x08011B48, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08011B80) -- Updating C cache (64 bytes @ 0x08011B80) -- Read from C cache (60 bytes @ 0x08011B48) - Data: 01 4B 03 F8 12 10 70 47 F8 11 00 20 70 B5 04 46 ... returns 0x3C (0001ms, 2012ms total)
T0B0C 6429:200 JLINK_ReadMemEx(0x08011B48, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B48) - Data: 01 4B returns 0x02 (0000ms, 2012ms total)
T0B0C 6429:200 JLINK_ReadMemEx(0x08011B4A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B4A) - Data: 03 F8 returns 0x02 (0000ms, 2012ms total)
T0B0C 6429:200 JLINK_ReadMemEx(0x08011B4A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B4A) - Data: 03 F8 returns 0x02 (0000ms, 2012ms total)
T0B0C 6429:200 JLINK_ReadMemEx(0x08011B4C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011B4C) - Data: 12 10 70 47 F8 11 00 20 70 B5 04 46 0D 46 FB F7 ... returns 0x3C (0000ms, 2012ms total)
T0B0C 6429:200 JLINK_ReadMemEx(0x08011B4C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B4C) - Data: 12 10 returns 0x02 (0000ms, 2012ms total)
T0B0C 6429:200 JLINK_ReadMemEx(0x08011B4E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B4E) - Data: 70 47 returns 0x02 (0000ms, 2012ms total)
T0B0C 6429:200 JLINK_ReadMemEx(0x08011B50, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011B50) - Data: F8 11 00 20 70 B5 04 46 0D 46 FB F7 5F FD 20 B1 ... returns 0x3C (0000ms, 2012ms total)
T0B0C 6429:200 JLINK_ReadMemEx(0x08011B50, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B50) - Data: F8 11 returns 0x02 (0000ms, 2012ms total)
T0B0C 6429:200 JLINK_ReadMemEx(0x08011B54, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011B54) - Data: 70 B5 04 46 0D 46 FB F7 5F FD 20 B1 29 46 07 20 ... returns 0x3C (0000ms, 2012ms total)
T0B0C 6429:200 JLINK_ReadMemEx(0x08011B54, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B54) - Data: 70 B5 returns 0x02 (0000ms, 2012ms total)
T0B0C 6429:200 JLINK_ReadMemEx(0x08011B56, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B56) - Data: 04 46 returns 0x02 (0000ms, 2012ms total)
T0B0C 6429:201 JLINK_ReadMemEx(0x08011B56, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B56) - Data: 04 46 returns 0x02 (0000ms, 2013ms total)
T0B0C 6429:201 JLINK_ReadMemEx(0x08011B58, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011B58) - Data: 0D 46 FB F7 5F FD 20 B1 29 46 07 20 F8 F7 8E F8 ... returns 0x3C (0000ms, 2013ms total)
T0B0C 6429:201 JLINK_ReadMemEx(0x08011B58, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B58) - Data: 0D 46 returns 0x02 (0000ms, 2013ms total)
T0B0C 6429:201 JLINK_ReadMemEx(0x08011B58, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011B58) - Data: 0D 46 FB F7 5F FD 20 B1 29 46 07 20 F8 F7 8E F8 ... returns 0x3C (0000ms, 2013ms total)
T0B0C 6429:201 JLINK_ReadMemEx(0x08011B58, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B58) - Data: 0D 46 returns 0x02 (0000ms, 2013ms total)
T0B0C 6429:201 JLINK_ReadMemEx(0x08011B5A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B5A) - Data: FB F7 returns 0x02 (0000ms, 2013ms total)
T0B0C 6429:201 JLINK_ReadMemEx(0x08011B5A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B5A) - Data: FB F7 returns 0x02 (0000ms, 2013ms total)
T0B0C 6429:201 JLINK_ReadMemEx(0x08011B5C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011B5C) - Data: 5F FD 20 B1 29 46 07 20 F8 F7 8E F8 1B E0 01 2C ... returns 0x3C (0000ms, 2013ms total)
T0B0C 6429:201 JLINK_ReadMemEx(0x08011B5C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B5C) - Data: 5F FD returns 0x02 (0000ms, 2013ms total)
T0B0C 6429:201 JLINK_ReadMemEx(0x08011B5E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B5E) - Data: 20 B1 returns 0x02 (0000ms, 2013ms total)
T0B0C 6429:201 JLINK_ReadMemEx(0x08011B60, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011B60) - Data: 29 46 07 20 F8 F7 8E F8 1B E0 01 2C 04 D0 02 2C ... returns 0x3C (0000ms, 2013ms total)
T0B0C 6429:201 JLINK_ReadMemEx(0x08011B60, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B60) - Data: 29 46 returns 0x02 (0000ms, 2013ms total)
T0B0C 6429:201 JLINK_ReadMemEx(0x08011B60, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011B60) - Data: 29 46 07 20 F8 F7 8E F8 1B E0 01 2C 04 D0 02 2C ... returns 0x3C (0000ms, 2013ms total)
T0B0C 6429:201 JLINK_ReadMemEx(0x08011B60, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B60) - Data: 29 46 returns 0x02 (0000ms, 2013ms total)
T0B0C 6429:201 JLINK_ReadMemEx(0x08011B62, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B62) - Data: 07 20 returns 0x02 (0000ms, 2013ms total)
T0B0C 6429:201 JLINK_ReadMemEx(0x08011B62, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B62) - Data: 07 20 returns 0x02 (0000ms, 2013ms total)
T0B0C 6429:201 JLINK_ReadMemEx(0x08011B64, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011B64) - Data: F8 F7 8E F8 1B E0 01 2C 04 D0 02 2C 07 D0 03 2C ... returns 0x3C (0000ms, 2013ms total)
T0B0C 6429:201 JLINK_ReadMemEx(0x08011B64, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B64) - Data: F8 F7 returns 0x02 (0000ms, 2013ms total)
T0B0C 6429:201 JLINK_ReadMemEx(0x08011B64, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011B64) - Data: F8 F7 8E F8 1B E0 01 2C 04 D0 02 2C 07 D0 03 2C ... returns 0x3C (0000ms, 2013ms total)
T0B0C 6429:201 JLINK_ReadMemEx(0x08011B64, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B64) - Data: F8 F7 returns 0x02 (0000ms, 2013ms total)
T0B0C 6429:201 JLINK_ReadMemEx(0x08011B66, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B66) - Data: 8E F8 returns 0x02 (0000ms, 2013ms total)
T0B0C 6429:201 JLINK_ReadMemEx(0x08011B68, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011B68) - Data: 1B E0 01 2C 04 D0 02 2C 07 D0 03 2C 0F D1 09 E0 ... returns 0x3C (0000ms, 2013ms total)
T0B0C 6429:201 JLINK_ReadMemEx(0x08011B68, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B68) - Data: 1B E0 returns 0x02 (0000ms, 2013ms total)
T0B0C 6429:201 JLINK_ReadMemEx(0x08011B6A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B6A) - Data: 01 2C returns 0x02 (0000ms, 2013ms total)
T0B0C 6429:201 JLINK_ReadMemEx(0x08011B6A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B6A) - Data: 01 2C returns 0x02 (0000ms, 2013ms total)
T0B0C 6429:201 JLINK_ReadMemEx(0x08011B6C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011B6C) - Data: 04 D0 02 2C 07 D0 03 2C 0F D1 09 E0 29 46 02 20 ... returns 0x3C (0000ms, 2013ms total)
T0B0C 6429:201 JLINK_ReadMemEx(0x08011B6C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B6C) - Data: 04 D0 returns 0x02 (0000ms, 2013ms total)
T0B0C 6429:201 JLINK_ReadMemEx(0x08011B6C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011B6C) - Data: 04 D0 02 2C 07 D0 03 2C 0F D1 09 E0 29 46 02 20 ... returns 0x3C (0000ms, 2013ms total)
T0B0C 6429:201 JLINK_ReadMemEx(0x08011B6C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B6C) - Data: 04 D0 returns 0x02 (0000ms, 2013ms total)
T0B0C 6429:201 JLINK_ReadMemEx(0x08011B6E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B6E) - Data: 02 2C returns 0x02 (0000ms, 2013ms total)
T0B0C 6429:201 JLINK_ReadMemEx(0x08011B6E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B6E) - Data: 02 2C returns 0x02 (0000ms, 2013ms total)
T0B0C 6429:201 JLINK_ReadMemEx(0x08011B70, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011B70) - Data: 07 D0 03 2C 0F D1 09 E0 29 46 02 20 F8 F7 82 F8 ... returns 0x3C (0000ms, 2013ms total)
T0B0C 6429:201 JLINK_ReadMemEx(0x08011B70, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B70) - Data: 07 D0 returns 0x02 (0000ms, 2013ms total)
T0B0C 6429:201 JLINK_ReadMemEx(0x08011B70, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011B70) - Data: 07 D0 03 2C 0F D1 09 E0 29 46 02 20 F8 F7 82 F8 ... returns 0x3C (0000ms, 2013ms total)
T0B0C 6429:201 JLINK_ReadMemEx(0x08011B70, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B70) - Data: 07 D0 returns 0x02 (0000ms, 2013ms total)
T0B0C 6429:201 JLINK_ReadMemEx(0x08011B72, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B72) - Data: 03 2C returns 0x02 (0000ms, 2013ms total)
T0B0C 6429:201 JLINK_ReadMemEx(0x08011B72, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B72) - Data: 03 2C returns 0x02 (0000ms, 2013ms total)
T0B0C 6429:201 JLINK_ReadMemEx(0x08011B74, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011B74) - Data: 0F D1 09 E0 29 46 02 20 F8 F7 82 F8 0E E0 29 46 ... returns 0x3C (0000ms, 2013ms total)
T0B0C 6429:201 JLINK_ReadMemEx(0x08011B74, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B74) - Data: 0F D1 returns 0x02 (0000ms, 2013ms total)
T0B0C 6429:201 JLINK_ReadMemEx(0x08011B74, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011B74) - Data: 0F D1 09 E0 29 46 02 20 F8 F7 82 F8 0E E0 29 46 ... returns 0x3C (0000ms, 2013ms total)
T0B0C 6429:201 JLINK_ReadMemEx(0x08011B74, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B74) - Data: 0F D1 returns 0x02 (0000ms, 2013ms total)
T0B0C 6429:201 JLINK_ReadMemEx(0x08011B76, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B76) - Data: 09 E0 returns 0x02 (0000ms, 2013ms total)
T0B0C 6429:201 JLINK_ReadMemEx(0x08011B76, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B76) - Data: 09 E0 returns 0x02 (0000ms, 2013ms total)
T0B0C 6429:201 JLINK_ReadMemEx(0x08011B78, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011B78) - Data: 29 46 02 20 F8 F7 82 F8 0E E0 29 46 01 20 F8 F7 ... returns 0x3C (0000ms, 2013ms total)
T0B0C 6429:201 JLINK_ReadMemEx(0x08011B78, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B78) - Data: 29 46 returns 0x02 (0000ms, 2013ms total)
T0B0C 6429:201 JLINK_ReadMemEx(0x08011B78, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011B78) - Data: 29 46 02 20 F8 F7 82 F8 0E E0 29 46 01 20 F8 F7 ... returns 0x3C (0000ms, 2013ms total)
T0B0C 6429:201 JLINK_ReadMemEx(0x08011B78, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B78) - Data: 29 46 returns 0x02 (0000ms, 2013ms total)
T0B0C 6429:201 JLINK_ReadMemEx(0x08011B7A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B7A) - Data: 02 20 returns 0x02 (0000ms, 2013ms total)
T0B0C 6429:201 JLINK_ReadMemEx(0x08011B7A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B7A) - Data: 02 20 returns 0x02 (0000ms, 2013ms total)
T0B0C 6429:201 JLINK_ReadMemEx(0x08011B7C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011B7C) - Data: F8 F7 82 F8 0E E0 29 46 01 20 F8 F7 7D F8 09 E0 ... returns 0x3C (0000ms, 2013ms total)
T0B0C 6429:201 JLINK_ReadMemEx(0x08011B7C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B7C) - Data: F8 F7 returns 0x02 (0000ms, 2013ms total)
T0B0C 6429:201 JLINK_ReadMemEx(0x08011B7C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011B7C) - Data: F8 F7 82 F8 0E E0 29 46 01 20 F8 F7 7D F8 09 E0 ... returns 0x3C (0000ms, 2013ms total)
T0B0C 6429:201 JLINK_ReadMemEx(0x08011B7C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B7C) - Data: F8 F7 returns 0x02 (0001ms, 2014ms total)
T0B0C 6429:202 JLINK_ReadMemEx(0x08011B7E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B7E) - Data: 82 F8 returns 0x02 (0000ms, 2014ms total)
T0B0C 6429:202 JLINK_ReadMemEx(0x08011B80, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011B80) - Data: 0E E0 29 46 01 20 F8 F7 7D F8 09 E0 29 46 00 20 ... returns 0x3C (0000ms, 2014ms total)
T0B0C 6429:202 JLINK_ReadMemEx(0x08011B80, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B80) - Data: 0E E0 returns 0x02 (0000ms, 2014ms total)
T0B0C 6429:202 JLINK_ReadMemEx(0x08011B82, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B82) - Data: 29 46 returns 0x02 (0000ms, 2014ms total)
T0B0C 6429:202 JLINK_ReadMemEx(0x08011B82, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B82) - Data: 29 46 returns 0x02 (0000ms, 2014ms total)
T0B0C 6429:202 JLINK_ReadMemEx(0x08011B84, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011B84) - Data: 01 20 F8 F7 7D F8 09 E0 29 46 00 20 F8 F7 78 F8 ... returns 0x3C (0000ms, 2014ms total)
T0B0C 6429:202 JLINK_ReadMemEx(0x08011B84, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B84) - Data: 01 20 returns 0x02 (0000ms, 2014ms total)
T0B0C 6429:202 JLINK_ReadMemEx(0x08011B84, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011B84) - Data: 01 20 F8 F7 7D F8 09 E0 29 46 00 20 F8 F7 78 F8 ... returns 0x3C (0000ms, 2014ms total)
T0B0C 6429:202 JLINK_ReadMemEx(0x08011B84, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B84) - Data: 01 20 returns 0x02 (0000ms, 2014ms total)
T0B0C 6429:202 JLINK_ReadMemEx(0x08011B86, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B86) - Data: F8 F7 returns 0x02 (0000ms, 2014ms total)
T0B0C 6429:202 JLINK_ReadMemEx(0x08011B86, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B86) - Data: F8 F7 returns 0x02 (0000ms, 2014ms total)
T0B0C 6429:202 JLINK_ReadMemEx(0x08011B88, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08011BC0) -- Updating C cache (64 bytes @ 0x08011BC0) -- Read from C cache (60 bytes @ 0x08011B88) - Data: 7D F8 09 E0 29 46 00 20 F8 F7 78 F8 04 E0 29 46 ... returns 0x3C (0001ms, 2015ms total)
T0B0C 6429:203 JLINK_ReadMemEx(0x08011B88, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B88) - Data: 7D F8 returns 0x02 (0000ms, 2015ms total)
T0B0C 6429:203 JLINK_ReadMemEx(0x08011B8A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B8A) - Data: 09 E0 returns 0x02 (0000ms, 2015ms total)
T0B0C 6429:203 JLINK_ReadMemEx(0x08011B8C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011B8C) - Data: 29 46 00 20 F8 F7 78 F8 04 E0 29 46 03 20 F8 F7 ... returns 0x3C (0000ms, 2015ms total)
T0B0C 6429:203 JLINK_ReadMemEx(0x08011B8C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B8C) - Data: 29 46 returns 0x02 (0000ms, 2015ms total)
T0B0C 6429:203 JLINK_ReadMemEx(0x08011B8C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011B8C) - Data: 29 46 00 20 F8 F7 78 F8 04 E0 29 46 03 20 F8 F7 ... returns 0x3C (0000ms, 2015ms total)
T0B0C 6429:203 JLINK_ReadMemEx(0x08011B8C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B8C) - Data: 29 46 returns 0x02 (0000ms, 2015ms total)
T0B0C 6429:203 JLINK_ReadMemEx(0x08011B8E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B8E) - Data: 00 20 returns 0x02 (0000ms, 2015ms total)
T0B0C 6429:203 JLINK_ReadMemEx(0x08011B8E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B8E) - Data: 00 20 returns 0x02 (0000ms, 2015ms total)
T0B0C 6429:203 JLINK_ReadMemEx(0x08011B90, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011B90) - Data: F8 F7 78 F8 04 E0 29 46 03 20 F8 F7 73 F8 00 BF ... returns 0x3C (0000ms, 2015ms total)
T0B0C 6429:203 JLINK_ReadMemEx(0x08011B90, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B90) - Data: F8 F7 returns 0x02 (0001ms, 2016ms total)
T0B0C 6429:204 JLINK_ReadMemEx(0x08011B90, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011B90) - Data: F8 F7 78 F8 04 E0 29 46 03 20 F8 F7 73 F8 00 BF ... returns 0x3C (0000ms, 2016ms total)
T0B0C 6429:204 JLINK_ReadMemEx(0x08011B90, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B90) - Data: F8 F7 returns 0x02 (0000ms, 2016ms total)
T0B0C 6429:204 JLINK_ReadMemEx(0x08011B92, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B92) - Data: 78 F8 returns 0x02 (0000ms, 2016ms total)
T0B0C 6429:204 JLINK_ReadMemEx(0x08011B94, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011B94) - Data: 04 E0 29 46 03 20 F8 F7 73 F8 00 BF 00 BF 70 BD ... returns 0x3C (0000ms, 2016ms total)
T0B0C 6429:204 JLINK_ReadMemEx(0x08011B94, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B94) - Data: 04 E0 returns 0x02 (0000ms, 2016ms total)
T0B0C 6429:204 JLINK_ReadMemEx(0x08011B96, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B96) - Data: 29 46 returns 0x02 (0000ms, 2016ms total)
T0B0C 6429:204 JLINK_ReadMemEx(0x08011B96, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B96) - Data: 29 46 returns 0x02 (0000ms, 2016ms total)
T0B0C 6429:204 JLINK_ReadMemEx(0x08011B98, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011B98) - Data: 03 20 F8 F7 73 F8 00 BF 00 BF 70 BD 7C B5 04 46 ... returns 0x3C (0000ms, 2016ms total)
T0B0C 6429:204 JLINK_ReadMemEx(0x08011B98, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B98) - Data: 03 20 returns 0x02 (0000ms, 2016ms total)
T0B0C 6429:204 JLINK_ReadMemEx(0x08011B98, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011B98) - Data: 03 20 F8 F7 73 F8 00 BF 00 BF 70 BD 7C B5 04 46 ... returns 0x3C (0000ms, 2016ms total)
T0B0C 6429:204 JLINK_ReadMemEx(0x08011B98, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B98) - Data: 03 20 returns 0x02 (0000ms, 2016ms total)
T0B0C 6429:204 JLINK_ReadMemEx(0x08011B9A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B9A) - Data: F8 F7 returns 0x02 (0000ms, 2016ms total)
T0B0C 6429:204 JLINK_ReadMemEx(0x08011B9A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B9A) - Data: F8 F7 returns 0x02 (0000ms, 2016ms total)
T0B0C 6429:204 JLINK_ReadMemEx(0x08011B9C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011B9C) - Data: 73 F8 00 BF 00 BF 70 BD 7C B5 04 46 0D 46 16 46 ... returns 0x3C (0000ms, 2016ms total)
T0B0C 6429:204 JLINK_ReadMemEx(0x08011B9C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B9C) - Data: 73 F8 returns 0x02 (0000ms, 2016ms total)
T0B0C 6429:204 JLINK_ReadMemEx(0x08011B9E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011B9E) - Data: 00 BF returns 0x02 (0000ms, 2016ms total)
T0B0C 6429:204 JLINK_ReadMemEx(0x08011BA0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011BA0) - Data: 00 BF 70 BD 7C B5 04 46 0D 46 16 46 0A A1 03 C9 ... returns 0x3C (0000ms, 2016ms total)
T0B0C 6429:204 JLINK_ReadMemEx(0x08011BA0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BA0) - Data: 00 BF returns 0x02 (0000ms, 2016ms total)
T0B0C 6429:204 JLINK_ReadMemEx(0x08011BA0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011BA0) - Data: 00 BF 70 BD 7C B5 04 46 0D 46 16 46 0A A1 03 C9 ... returns 0x3C (0000ms, 2016ms total)
T0B0C 6429:204 JLINK_ReadMemEx(0x08011BA0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BA0) - Data: 00 BF returns 0x02 (0000ms, 2016ms total)
T0B0C 6429:204 JLINK_ReadMemEx(0x08011BA2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BA2) - Data: 70 BD returns 0x02 (0000ms, 2016ms total)
T0B0C 6429:204 JLINK_ReadMemEx(0x08011BA2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BA2) - Data: 70 BD returns 0x02 (0000ms, 2016ms total)
T0B0C 6429:204 JLINK_ReadMemEx(0x08011BA4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011BA4) - Data: 7C B5 04 46 0D 46 16 46 0A A1 03 C9 CD E9 00 01 ... returns 0x3C (0000ms, 2016ms total)
T0B0C 6429:204 JLINK_ReadMemEx(0x08011BA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BA4) - Data: 7C B5 returns 0x02 (0000ms, 2016ms total)
T0B0C 6429:204 JLINK_ReadMemEx(0x08011BA4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011BA4) - Data: 7C B5 04 46 0D 46 16 46 0A A1 03 C9 CD E9 00 01 ... returns 0x3C (0000ms, 2016ms total)
T0B0C 6429:204 JLINK_ReadMemEx(0x08011BA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BA4) - Data: 7C B5 returns 0x02 (0000ms, 2016ms total)
T0B0C 6429:204 JLINK_ReadMemEx(0x08011BA6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BA6) - Data: 04 46 returns 0x02 (0000ms, 2016ms total)
T0B0C 6429:204 JLINK_ReadMemEx(0x08011BA6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BA6) - Data: 04 46 returns 0x02 (0000ms, 2016ms total)
T0B0C 6429:204 JLINK_ReadMemEx(0x08011BA8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011BA8) - Data: 0D 46 16 46 0A A1 03 C9 CD E9 00 01 20 12 8D F8 ... returns 0x3C (0000ms, 2016ms total)
T0B0C 6429:204 JLINK_ReadMemEx(0x08011BA8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BA8) - Data: 0D 46 returns 0x02 (0000ms, 2016ms total)
T0B0C 6429:204 JLINK_ReadMemEx(0x08011BA8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011BA8) - Data: 0D 46 16 46 0A A1 03 C9 CD E9 00 01 20 12 8D F8 ... returns 0x3C (0000ms, 2016ms total)
T0B0C 6429:204 JLINK_ReadMemEx(0x08011BA8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BA8) - Data: 0D 46 returns 0x02 (0000ms, 2016ms total)
T0B0C 6429:204 JLINK_ReadMemEx(0x08011BAA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BAA) - Data: 16 46 returns 0x02 (0000ms, 2016ms total)
T0B0C 6429:204 JLINK_ReadMemEx(0x08011BAA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BAA) - Data: 16 46 returns 0x02 (0000ms, 2016ms total)
T0B0C 6429:204 JLINK_ReadMemEx(0x08011BAC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011BAC) - Data: 0A A1 03 C9 CD E9 00 01 20 12 8D F8 02 00 E0 B2 ... returns 0x3C (0000ms, 2016ms total)
T0B0C 6429:204 JLINK_ReadMemEx(0x08011BAC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BAC) - Data: 0A A1 returns 0x02 (0000ms, 2016ms total)
T0B0C 6429:204 JLINK_ReadMemEx(0x08011BAC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011BAC) - Data: 0A A1 03 C9 CD E9 00 01 20 12 8D F8 02 00 E0 B2 ... returns 0x3C (0000ms, 2016ms total)
T0B0C 6429:204 JLINK_ReadMemEx(0x08011BAC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BAC) - Data: 0A A1 returns 0x02 (0000ms, 2016ms total)
T0B0C 6429:204 JLINK_ReadMemEx(0x08011BAE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BAE) - Data: 03 C9 returns 0x02 (0000ms, 2016ms total)
T0B0C 6429:204 JLINK_ReadMemEx(0x08011BAE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BAE) - Data: 03 C9 returns 0x02 (0000ms, 2016ms total)
T0B0C 6429:204 JLINK_ReadMemEx(0x08011BB0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011BB0) - Data: CD E9 00 01 20 12 8D F8 02 00 E0 B2 8D F8 03 00 ... returns 0x3C (0001ms, 2017ms total)
T0B0C 6429:205 JLINK_ReadMemEx(0x08011BB0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BB0) - Data: CD E9 returns 0x02 (0000ms, 2017ms total)
T0B0C 6429:205 JLINK_ReadMemEx(0x08011BB0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011BB0) - Data: CD E9 00 01 20 12 8D F8 02 00 E0 B2 8D F8 03 00 ... returns 0x3C (0000ms, 2017ms total)
T0B0C 6429:205 JLINK_ReadMemEx(0x08011BB0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BB0) - Data: CD E9 returns 0x02 (0000ms, 2017ms total)
T0B0C 6429:205 JLINK_ReadMemEx(0x08011BB2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BB2) - Data: 00 01 returns 0x02 (0000ms, 2017ms total)
T0B0C 6429:205 JLINK_ReadMemEx(0x08011BB4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011BB4) - Data: 20 12 8D F8 02 00 E0 B2 8D F8 03 00 32 46 29 46 ... returns 0x3C (0000ms, 2017ms total)
T0B0C 6429:205 JLINK_ReadMemEx(0x08011BB4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BB4) - Data: 20 12 returns 0x02 (0000ms, 2017ms total)
T0B0C 6429:205 JLINK_ReadMemEx(0x08011BB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BB6) - Data: 8D F8 returns 0x02 (0000ms, 2017ms total)
T1700 6433:075 JLINK_ReadMemEx(0x08011BA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BA4) - Data: 7C B5 returns 0x02 (0001ms, 2018ms total)
T1700 6433:076 JLINK_Step() -- Read from C cache (2 bytes @ 0x08011BA4) -- CPU_WriteMem(24 bytes @ 0x2000E0F0) -- Simulated returns 0x00 (0002ms, 2020ms total)
T1700 6433:078 JLINK_ReadReg(R15 (PC)) returns 0x08011BA6 (0000ms, 2020ms total)
T1700 6433:078 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 2020ms total)
T1700 6433:078 JLINK_Step() -- Read from C cache (2 bytes @ 0x08011BA6) -- Simulated returns 0x00 (0000ms, 2020ms total)
T1700 6433:078 JLINK_ReadReg(R15 (PC)) returns 0x08011BA8 (0000ms, 2020ms total)
T1700 6433:078 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 2020ms total)
T1700 6433:078 JLINK_Step() -- Read from C cache (2 bytes @ 0x08011BA8) -- Simulated returns 0x00 (0000ms, 2020ms total)
T1700 6433:078 JLINK_ReadReg(R15 (PC)) returns 0x08011BAA (0000ms, 2020ms total)
T1700 6433:078 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 2020ms total)
T1700 6433:078 JLINK_Step() -- Read from C cache (2 bytes @ 0x08011BAA) -- Simulated returns 0x00 (0000ms, 2020ms total)
T1700 6433:078 JLINK_ReadReg(R15 (PC)) returns 0x08011BAC (0000ms, 2020ms total)
T1700 6433:078 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 2020ms total)
T1700 6433:081 JLINK_ReadReg(R0) returns 0x000079BF (0000ms, 2020ms total)
T1700 6433:081 JLINK_ReadReg(R1) returns 0x00000004 (0000ms, 2020ms total)
T1700 6433:081 JLINK_ReadReg(R2) returns 0x00000003 (0000ms, 2020ms total)
T1700 6433:081 JLINK_ReadReg(R3) returns 0x08011BA5 (0000ms, 2020ms total)
T1700 6433:081 JLINK_ReadReg(R4) returns 0x000079BF (0000ms, 2020ms total)
T1700 6433:081 JLINK_ReadReg(R5) returns 0x00000004 (0000ms, 2020ms total)
T1700 6433:081 JLINK_ReadReg(R6) returns 0x00000003 (0000ms, 2020ms total)
T1700 6433:081 JLINK_ReadReg(R7) returns 0x00000000 (0000ms, 2020ms total)
T1700 6433:081 JLINK_ReadReg(R8) returns 0x00000000 (0000ms, 2020ms total)
T1700 6433:081 JLINK_ReadReg(R9) returns 0x20000134 (0000ms, 2020ms total)
T1700 6433:081 JLINK_ReadReg(R10) returns 0x00000000 (0000ms, 2020ms total)
T1700 6433:081 JLINK_ReadReg(R11) returns 0x00000000 (0000ms, 2020ms total)
T1700 6433:081 JLINK_ReadReg(R12) returns 0x00000004 (0000ms, 2020ms total)
T1700 6433:081 JLINK_ReadReg(R13 (SP)) returns 0x2000E0F0 (0000ms, 2020ms total)
T1700 6433:081 JLINK_ReadReg(R14) returns 0x08010025 (0000ms, 2020ms total)
T1700 6433:081 JLINK_ReadReg(R15 (PC)) returns 0x08011BAC (0000ms, 2020ms total)
T1700 6433:081 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 2020ms total)
T1700 6433:081 JLINK_ReadReg(MSP) returns 0x2000E0F0 (0000ms, 2020ms total)
T1700 6433:081 JLINK_ReadReg(PSP) returns 0x20001000 (0000ms, 2020ms total)
T1700 6433:081 JLINK_ReadReg(CFBP) returns 0x00000001 (0000ms, 2020ms total)
T1700 6433:081 JLINK_ReadReg(FPSCR) returns 0x00000000 (0000ms, 2020ms total)
T1700 6433:082 JLINK_ReadReg(FPS0) returns 0xFB068412 (0000ms, 2021ms total)
T1700 6433:082 JLINK_ReadReg(FPS1) returns 0x10110C5A (0000ms, 2021ms total)
T1700 6433:082 JLINK_ReadReg(FPS2) returns 0x04345E8B (0000ms, 2021ms total)
T1700 6433:082 JLINK_ReadReg(FPS3) returns 0x84492403 (0000ms, 2021ms total)
T1700 6433:082 JLINK_ReadReg(FPS4) returns 0x18248A10 (0000ms, 2021ms total)
T1700 6433:082 JLINK_ReadReg(FPS5) returns 0x24102496 (0000ms, 2021ms total)
T1700 6433:082 JLINK_ReadReg(FPS6) returns 0x82C0846D (0000ms, 2021ms total)
T1700 6433:082 JLINK_ReadReg(FPS7) returns 0x28E02089 (0000ms, 2021ms total)
T1700 6433:082 JLINK_ReadReg(FPS8) returns 0x05488443 (0000ms, 2021ms total)
T1700 6433:082 JLINK_ReadReg(FPS9) returns 0xF172B840 (0000ms, 2021ms total)
T1700 6433:082 JLINK_ReadReg(FPS10) returns 0x11B25004 (0000ms, 2021ms total)
T1700 6433:082 JLINK_ReadReg(FPS11) returns 0x000A0122 (0000ms, 2021ms total)
T1700 6433:082 JLINK_ReadReg(FPS12) returns 0x02345609 (0000ms, 2021ms total)
T1700 6433:082 JLINK_ReadReg(FPS13) returns 0x86007109 (0000ms, 2021ms total)
T1700 6433:082 JLINK_ReadReg(FPS14) returns 0xA03C9BD0 (0000ms, 2021ms total)
T1700 6433:082 JLINK_ReadReg(FPS15) returns 0x5012A400 (0000ms, 2021ms total)
T1700 6433:082 JLINK_ReadReg(FPS16) returns 0x1591822D (0000ms, 2021ms total)
T1700 6433:082 JLINK_ReadReg(FPS17) returns 0x9415225C (0000ms, 2021ms total)
T1700 6433:082 JLINK_ReadReg(FPS18) returns 0x0C0917B5 (0000ms, 2021ms total)
T1700 6433:082 JLINK_ReadReg(FPS19) returns 0x1C78D422 (0000ms, 2021ms total)
T1700 6433:082 JLINK_ReadReg(FPS20) returns 0xB4874081 (0000ms, 2021ms total)
T1700 6433:082 JLINK_ReadReg(FPS21) returns 0x108D0118 (0000ms, 2021ms total)
T1700 6433:082 JLINK_ReadReg(FPS22) returns 0x9044A200 (0000ms, 2021ms total)
T1700 6433:082 JLINK_ReadReg(FPS23) returns 0x781449E0 (0000ms, 2021ms total)
T1700 6433:082 JLINK_ReadReg(FPS24) returns 0x1C330E11 (0000ms, 2021ms total)
T1700 6433:082 JLINK_ReadReg(FPS25) returns 0xC605704C (0000ms, 2021ms total)
T1700 6433:082 JLINK_ReadReg(FPS26) returns 0x2C30E195 (0000ms, 2021ms total)
T1700 6433:082 JLINK_ReadReg(FPS27) returns 0x8032365D (0000ms, 2021ms total)
T1700 6433:082 JLINK_ReadReg(FPS28) returns 0x068522B7 (0000ms, 2021ms total)
T1700 6433:082 JLINK_ReadReg(FPS29) returns 0x121C1711 (0000ms, 2021ms total)
T1700 6433:082 JLINK_ReadReg(FPS30) returns 0x41020916 (0000ms, 2021ms total)
T1700 6433:082 JLINK_ReadReg(FPS31) returns 0x11A63042 (0000ms, 2021ms total)
T0B0C 6433:083 JLINK_ReadMemEx(0x2000E104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x2000E100) -- Updating C cache (64 bytes @ 0x2000E100) -- Read from C cache (4 bytes @ 0x2000E104) - Data: 25 00 01 08 returns 0x04 (0002ms, 2023ms total)
T0B0C 6433:085 JLINK_ReadMemEx(0x2000E0F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x2000E0C0) -- Updating C cache (64 bytes @ 0x2000E0C0) -- Read from C cache (4 bytes @ 0x2000E0F8) - Data: 01 00 00 00 returns 0x04 (0002ms, 2025ms total)
T0B0C 6433:087 JLINK_ReadMemEx(0x2000E0FC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E0FC) - Data: 01 00 00 00 returns 0x04 (0000ms, 2025ms total)
T0B0C 6433:087 JLINK_ReadMemEx(0x2000E100, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E100) - Data: 03 00 00 00 returns 0x04 (0000ms, 2025ms total)
T0B0C 6433:087 JLINK_ReadMemEx(0x2000E104, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E104) - Data: 25 00 01 08 returns 0x04 (0000ms, 2025ms total)
T0B0C 6433:087 JLINK_ReadMemEx(0x2000E114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E114) - Data: 1F C2 00 08 returns 0x04 (0000ms, 2025ms total)
T0B0C 6433:087 JLINK_ReadMemEx(0x2000E108, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E108) - Data: 00 00 00 00 returns 0x04 (0000ms, 2025ms total)
T0B0C 6433:087 JLINK_ReadMemEx(0x2000E10C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E10C) - Data: 84 59 01 08 returns 0x04 (0000ms, 2025ms total)
T0B0C 6433:087 JLINK_ReadMemEx(0x2000E110, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E110) - Data: 00 00 00 00 returns 0x04 (0000ms, 2025ms total)
T0B0C 6433:087 JLINK_ReadMemEx(0x2000E114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E114) - Data: 1F C2 00 08 returns 0x04 (0000ms, 2025ms total)
T0B0C 6433:087 JLINK_ReadMemEx(0x2000E11C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E11C) - Data: 2F F9 00 08 returns 0x04 (0000ms, 2025ms total)
T0B0C 6433:087 JLINK_ReadMemEx(0x2000E118, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E118) - Data: 00 00 00 00 returns 0x04 (0000ms, 2025ms total)
T0B0C 6433:087 JLINK_ReadMemEx(0x2000E11C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E11C) - Data: 2F F9 00 08 returns 0x04 (0000ms, 2025ms total)
T0B0C 6433:087 JLINK_ReadMemEx(0x2000E0F0, 0x0005 Bytes, ..., Flags = 0x02000000) -- Read from C cache (5 bytes @ 0x2000E0F0) - Data: 03 00 00 00 A5 returns 0x05 (0000ms, 2025ms total)
T0B0C 6433:092 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: FF B5 0E 00 returns 1 (0000ms, 2025ms total)
T0B0C 6433:092 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000588) - Data: 00 returns 0x01 (0000ms, 2025ms total)
T0B0C 6433:093 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200007ED) - Data: DC returns 0x01 (0000ms, 2025ms total)
T0B0C 6433:093 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200007EE) - Data: 00 returns 0x01 (0000ms, 2025ms total)
T0B0C 6433:093 JLINK_ReadMemEx(0x2000042C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000042C) - Data: 00 00 00 00 returns 0x04 (0000ms, 2025ms total)
T0B0C 6433:098 JLINK_ReadMemEx(0x08011BA0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011BA0) - Data: 00 BF 70 BD 7C B5 04 46 0D 46 16 46 0A A1 03 C9 ... returns 0x3C (0000ms, 2025ms total)
T0B0C 6433:098 JLINK_ReadMemEx(0x08011BA0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BA0) - Data: 00 BF returns 0x02 (0000ms, 2025ms total)
T0B0C 6433:098 JLINK_ReadMemEx(0x08011BA2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BA2) - Data: 70 BD returns 0x02 (0000ms, 2025ms total)
T0B0C 6433:098 JLINK_ReadMemEx(0x08011BA2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BA2) - Data: 70 BD returns 0x02 (0000ms, 2025ms total)
T0B0C 6433:098 JLINK_ReadMemEx(0x08011BA4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011BA4) - Data: 7C B5 04 46 0D 46 16 46 0A A1 03 C9 CD E9 00 01 ... returns 0x3C (0000ms, 2025ms total)
T0B0C 6433:098 JLINK_ReadMemEx(0x08011BA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BA4) - Data: 7C B5 returns 0x02 (0000ms, 2025ms total)
T0B0C 6433:098 JLINK_ReadMemEx(0x08011BA4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011BA4) - Data: 7C B5 04 46 0D 46 16 46 0A A1 03 C9 CD E9 00 01 ... returns 0x3C (0000ms, 2025ms total)
T0B0C 6433:098 JLINK_ReadMemEx(0x08011BA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BA4) - Data: 7C B5 returns 0x02 (0000ms, 2025ms total)
T0B0C 6433:098 JLINK_ReadMemEx(0x08011BA6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BA6) - Data: 04 46 returns 0x02 (0000ms, 2025ms total)
T0B0C 6433:098 JLINK_ReadMemEx(0x08011BA6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BA6) - Data: 04 46 returns 0x02 (0000ms, 2025ms total)
T0B0C 6433:098 JLINK_ReadMemEx(0x08011BA8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011BA8) - Data: 0D 46 16 46 0A A1 03 C9 CD E9 00 01 20 12 8D F8 ... returns 0x3C (0000ms, 2025ms total)
T0B0C 6433:098 JLINK_ReadMemEx(0x08011BA8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BA8) - Data: 0D 46 returns 0x02 (0000ms, 2025ms total)
T0B0C 6433:098 JLINK_ReadMemEx(0x08011BA8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011BA8) - Data: 0D 46 16 46 0A A1 03 C9 CD E9 00 01 20 12 8D F8 ... returns 0x3C (0000ms, 2025ms total)
T0B0C 6433:098 JLINK_ReadMemEx(0x08011BA8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BA8) - Data: 0D 46 returns 0x02 (0000ms, 2025ms total)
T0B0C 6433:098 JLINK_ReadMemEx(0x08011BAA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BAA) - Data: 16 46 returns 0x02 (0000ms, 2025ms total)
T0B0C 6433:098 JLINK_ReadMemEx(0x08011BAA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BAA) - Data: 16 46 returns 0x02 (0001ms, 2026ms total)
T0B0C 6433:099 JLINK_ReadMemEx(0x08011BAC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011BAC) - Data: 0A A1 03 C9 CD E9 00 01 20 12 8D F8 02 00 E0 B2 ... returns 0x3C (0000ms, 2026ms total)
T0B0C 6433:099 JLINK_ReadMemEx(0x08011BAC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BAC) - Data: 0A A1 returns 0x02 (0000ms, 2026ms total)
T0B0C 6433:099 JLINK_ReadMemEx(0x08011BAC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011BAC) - Data: 0A A1 03 C9 CD E9 00 01 20 12 8D F8 02 00 E0 B2 ... returns 0x3C (0000ms, 2026ms total)
T0B0C 6433:099 JLINK_ReadMemEx(0x08011BAC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BAC) - Data: 0A A1 returns 0x02 (0000ms, 2026ms total)
T0B0C 6433:099 JLINK_ReadMemEx(0x08011BAE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BAE) - Data: 03 C9 returns 0x02 (0000ms, 2026ms total)
T0B0C 6433:099 JLINK_ReadMemEx(0x08011BAE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BAE) - Data: 03 C9 returns 0x02 (0000ms, 2026ms total)
T0B0C 6433:099 JLINK_ReadMemEx(0x08011BB0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011BB0) - Data: CD E9 00 01 20 12 8D F8 02 00 E0 B2 8D F8 03 00 ... returns 0x3C (0000ms, 2026ms total)
T0B0C 6433:099 JLINK_ReadMemEx(0x08011BB0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BB0) - Data: CD E9 returns 0x02 (0000ms, 2026ms total)
T0B0C 6433:099 JLINK_ReadMemEx(0x08011BB0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011BB0) - Data: CD E9 00 01 20 12 8D F8 02 00 E0 B2 8D F8 03 00 ... returns 0x3C (0000ms, 2026ms total)
T0B0C 6433:099 JLINK_ReadMemEx(0x08011BB0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BB0) - Data: CD E9 returns 0x02 (0000ms, 2026ms total)
T0B0C 6433:099 JLINK_ReadMemEx(0x08011BB2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BB2) - Data: 00 01 returns 0x02 (0000ms, 2026ms total)
T0B0C 6433:099 JLINK_ReadMemEx(0x08011BB4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011BB4) - Data: 20 12 8D F8 02 00 E0 B2 8D F8 03 00 32 46 29 46 ... returns 0x3C (0000ms, 2026ms total)
T0B0C 6433:099 JLINK_ReadMemEx(0x08011BB4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BB4) - Data: 20 12 returns 0x02 (0000ms, 2026ms total)
T0B0C 6433:099 JLINK_ReadMemEx(0x08011BB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BB6) - Data: 8D F8 returns 0x02 (0000ms, 2026ms total)
T1700 6434:066 JLINK_ReadMemEx(0x08011BAC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BAC) - Data: 0A A1 returns 0x02 (0000ms, 2026ms total)
T1700 6434:066 JLINK_Step() -- Read from C cache (2 bytes @ 0x08011BAC) -- Simulated returns 0x00 (0002ms, 2028ms total)
T1700 6434:068 JLINK_ReadReg(R15 (PC)) returns 0x08011BAE (0000ms, 2028ms total)
T1700 6434:068 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 2028ms total)
T1700 6434:068 JLINK_Step() -- Read from C cache (2 bytes @ 0x08011BAE) -- Read from C cache (8 bytes @ 0x08011BD8) -- Simulated returns 0x00 (0000ms, 2028ms total)
T1700 6434:068 JLINK_ReadReg(R15 (PC)) returns 0x08011BB0 (0000ms, 2028ms total)
T1700 6434:068 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 2028ms total)
T1700 6434:068 JLINK_Step() -- Read from C cache (2 bytes @ 0x08011BB0) -- Read from C cache (2 bytes @ 0x08011BB2) -- Not simulated -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0001004) returns 0x00 (0009ms, 2037ms total)
T1700 6434:077 JLINK_ReadReg(R15 (PC)) returns 0x08011BB4 (0000ms, 2037ms total)
T1700 6434:077 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 2037ms total)
T1700 6434:078 JLINK_ReadReg(R0) returns 0x25A49819 (0000ms, 2037ms total)
T1700 6434:078 JLINK_ReadReg(R1) returns 0x00000001 (0000ms, 2037ms total)
T1700 6434:078 JLINK_ReadReg(R2) returns 0x00000003 (0000ms, 2037ms total)
T1700 6434:078 JLINK_ReadReg(R3) returns 0x08011BA5 (0000ms, 2037ms total)
T1700 6434:078 JLINK_ReadReg(R4) returns 0x000079BF (0000ms, 2037ms total)
T1700 6434:078 JLINK_ReadReg(R5) returns 0x00000004 (0000ms, 2037ms total)
T1700 6434:078 JLINK_ReadReg(R6) returns 0x00000003 (0000ms, 2037ms total)
T1700 6434:078 JLINK_ReadReg(R7) returns 0x00000000 (0000ms, 2037ms total)
T1700 6434:078 JLINK_ReadReg(R8) returns 0x00000000 (0000ms, 2037ms total)
T1700 6434:078 JLINK_ReadReg(R9) returns 0x20000134 (0000ms, 2037ms total)
T1700 6434:078 JLINK_ReadReg(R10) returns 0x00000000 (0000ms, 2037ms total)
T1700 6434:078 JLINK_ReadReg(R11) returns 0x00000000 (0000ms, 2037ms total)
T1700 6434:078 JLINK_ReadReg(R12) returns 0x00000004 (0000ms, 2037ms total)
T1700 6434:078 JLINK_ReadReg(R13 (SP)) returns 0x2000E0F0 (0000ms, 2037ms total)
T1700 6434:078 JLINK_ReadReg(R14) returns 0x08010025 (0000ms, 2037ms total)
T1700 6434:078 JLINK_ReadReg(R15 (PC)) returns 0x08011BB4 (0000ms, 2037ms total)
T1700 6434:078 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 2037ms total)
T1700 6434:078 JLINK_ReadReg(MSP) returns 0x2000E0F0 (0000ms, 2037ms total)
T1700 6434:078 JLINK_ReadReg(PSP) returns 0x20001000 (0000ms, 2037ms total)
T1700 6434:078 JLINK_ReadReg(CFBP) returns 0x00000001 (0000ms, 2037ms total)
T1700 6434:078 JLINK_ReadReg(FPSCR) returns 0x00000000 (0004ms, 2041ms total)
T1700 6434:082 JLINK_ReadReg(FPS0) returns 0xFB068412 (0000ms, 2041ms total)
T1700 6434:082 JLINK_ReadReg(FPS1) returns 0x10110C5A (0000ms, 2041ms total)
T1700 6434:082 JLINK_ReadReg(FPS2) returns 0x04345E8B (0000ms, 2041ms total)
T1700 6434:082 JLINK_ReadReg(FPS3) returns 0x84492403 (0000ms, 2041ms total)
T1700 6434:082 JLINK_ReadReg(FPS4) returns 0x18248A10 (0000ms, 2041ms total)
T1700 6434:082 JLINK_ReadReg(FPS5) returns 0x24102496 (0000ms, 2041ms total)
T1700 6434:082 JLINK_ReadReg(FPS6) returns 0x82C0846D (0000ms, 2041ms total)
T1700 6434:082 JLINK_ReadReg(FPS7) returns 0x28E02089 (0000ms, 2041ms total)
T1700 6434:082 JLINK_ReadReg(FPS8) returns 0x05488443 (0000ms, 2041ms total)
T1700 6434:082 JLINK_ReadReg(FPS9) returns 0xF172B840 (0000ms, 2041ms total)
T1700 6434:082 JLINK_ReadReg(FPS10) returns 0x11B25004 (0000ms, 2041ms total)
T1700 6434:082 JLINK_ReadReg(FPS11) returns 0x000A0122 (0000ms, 2041ms total)
T1700 6434:082 JLINK_ReadReg(FPS12) returns 0x02345609 (0000ms, 2041ms total)
T1700 6434:082 JLINK_ReadReg(FPS13) returns 0x86007109 (0000ms, 2041ms total)
T1700 6434:082 JLINK_ReadReg(FPS14) returns 0xA03C9BD0 (0000ms, 2041ms total)
T1700 6434:082 JLINK_ReadReg(FPS15) returns 0x5012A400 (0000ms, 2041ms total)
T1700 6434:082 JLINK_ReadReg(FPS16) returns 0x1591822D (0000ms, 2041ms total)
T1700 6434:082 JLINK_ReadReg(FPS17) returns 0x9415225C (0000ms, 2041ms total)
T1700 6434:082 JLINK_ReadReg(FPS18) returns 0x0C0917B5 (0000ms, 2041ms total)
T1700 6434:082 JLINK_ReadReg(FPS19) returns 0x1C78D422 (0000ms, 2041ms total)
T1700 6434:082 JLINK_ReadReg(FPS20) returns 0xB4874081 (0000ms, 2041ms total)
T1700 6434:082 JLINK_ReadReg(FPS21) returns 0x108D0118 (0000ms, 2041ms total)
T1700 6434:082 JLINK_ReadReg(FPS22) returns 0x9044A200 (0000ms, 2041ms total)
T1700 6434:082 JLINK_ReadReg(FPS23) returns 0x781449E0 (0000ms, 2041ms total)
T1700 6434:082 JLINK_ReadReg(FPS24) returns 0x1C330E11 (0001ms, 2042ms total)
T1700 6434:083 JLINK_ReadReg(FPS25) returns 0xC605704C (0000ms, 2042ms total)
T1700 6434:083 JLINK_ReadReg(FPS26) returns 0x2C30E195 (0000ms, 2042ms total)
T1700 6434:083 JLINK_ReadReg(FPS27) returns 0x8032365D (0000ms, 2042ms total)
T1700 6434:083 JLINK_ReadReg(FPS28) returns 0x068522B7 (0000ms, 2042ms total)
T1700 6434:083 JLINK_ReadReg(FPS29) returns 0x121C1711 (0000ms, 2042ms total)
T1700 6434:083 JLINK_ReadReg(FPS30) returns 0x41020916 (0000ms, 2042ms total)
T1700 6434:083 JLINK_ReadReg(FPS31) returns 0x11A63042 (0000ms, 2042ms total)
T0B0C 6434:083 JLINK_ReadMemEx(0x2000E104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x2000E100) -- Updating C cache (64 bytes @ 0x2000E100) -- Read from C cache (4 bytes @ 0x2000E104) - Data: 25 00 01 08 returns 0x04 (0002ms, 2044ms total)
T0B0C 6434:085 JLINK_ReadMemEx(0x2000E0F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x2000E0C0) -- Updating C cache (64 bytes @ 0x2000E0C0) -- Read from C cache (4 bytes @ 0x2000E0F8) - Data: 01 00 00 00 returns 0x04 (0001ms, 2045ms total)
T0B0C 6434:086 JLINK_ReadMemEx(0x2000E0FC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E0FC) - Data: 01 00 00 00 returns 0x04 (0000ms, 2045ms total)
T0B0C 6434:086 JLINK_ReadMemEx(0x2000E100, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E100) - Data: 03 00 00 00 returns 0x04 (0000ms, 2045ms total)
T0B0C 6434:086 JLINK_ReadMemEx(0x2000E104, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E104) - Data: 25 00 01 08 returns 0x04 (0000ms, 2045ms total)
T0B0C 6434:086 JLINK_ReadMemEx(0x2000E114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E114) - Data: 1F C2 00 08 returns 0x04 (0000ms, 2045ms total)
T0B0C 6434:086 JLINK_ReadMemEx(0x2000E108, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E108) - Data: 00 00 00 00 returns 0x04 (0000ms, 2045ms total)
T0B0C 6434:086 JLINK_ReadMemEx(0x2000E10C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E10C) - Data: 84 59 01 08 returns 0x04 (0000ms, 2045ms total)
T0B0C 6434:086 JLINK_ReadMemEx(0x2000E110, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E110) - Data: 00 00 00 00 returns 0x04 (0000ms, 2045ms total)
T0B0C 6434:086 JLINK_ReadMemEx(0x2000E114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E114) - Data: 1F C2 00 08 returns 0x04 (0000ms, 2045ms total)
T0B0C 6434:086 JLINK_ReadMemEx(0x2000E11C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E11C) - Data: 2F F9 00 08 returns 0x04 (0000ms, 2045ms total)
T0B0C 6434:086 JLINK_ReadMemEx(0x2000E118, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E118) - Data: 00 00 00 00 returns 0x04 (0000ms, 2045ms total)
T0B0C 6434:086 JLINK_ReadMemEx(0x2000E11C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E11C) - Data: 2F F9 00 08 returns 0x04 (0000ms, 2045ms total)
T0B0C 6434:086 JLINK_ReadMemEx(0x2000E0F0, 0x0005 Bytes, ..., Flags = 0x02000000) -- Read from C cache (5 bytes @ 0x2000E0F0) - Data: 19 98 A4 25 01 returns 0x05 (0000ms, 2045ms total)
T0B0C 6434:087 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001004) - Data: 07 B6 0E 00 returns 1 (0002ms, 2047ms total)
T0B0C 6434:089 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000580) -- Updating C cache (64 bytes @ 0x20000580) -- Read from C cache (1 bytes @ 0x20000588) - Data: 00 returns 0x01 (0001ms, 2048ms total)
T0B0C 6434:090 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200007C0) -- Updating C cache (64 bytes @ 0x200007C0) -- Read from C cache (1 bytes @ 0x200007ED) - Data: DC returns 0x01 (0002ms, 2050ms total)
T0B0C 6434:092 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200007EE) - Data: 00 returns 0x01 (0000ms, 2050ms total)
T0B0C 6434:092 JLINK_ReadMemEx(0x2000042C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000400) -- Updating C cache (64 bytes @ 0x20000400) -- Read from C cache (4 bytes @ 0x2000042C) - Data: 00 00 00 00 returns 0x04 (0001ms, 2051ms total)
T0B0C 6434:094 JLINK_ReadMemEx(0x08011BB4, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x08011B80) -- Updating C cache (128 bytes @ 0x08011B80) -- Read from C cache (60 bytes @ 0x08011BB4) - Data: 20 12 8D F8 02 00 E0 B2 8D F8 03 00 32 46 29 46 ... returns 0x3C (0001ms, 2052ms total)
T0B0C 6434:095 JLINK_ReadMemEx(0x08011BB4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BB4) - Data: 20 12 returns 0x02 (0000ms, 2052ms total)
T0B0C 6434:095 JLINK_ReadMemEx(0x08011BB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BB6) - Data: 8D F8 returns 0x02 (0000ms, 2052ms total)
T0B0C 6434:095 JLINK_ReadMemEx(0x08011BB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BB6) - Data: 8D F8 returns 0x02 (0000ms, 2052ms total)
T0B0C 6434:095 JLINK_ReadMemEx(0x08011BB8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011BB8) - Data: 02 00 E0 B2 8D F8 03 00 32 46 29 46 68 46 F8 F7 ... returns 0x3C (0000ms, 2052ms total)
T0B0C 6434:095 JLINK_ReadMemEx(0x08011BB8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BB8) - Data: 02 00 returns 0x02 (0000ms, 2052ms total)
T0B0C 6434:098 JLINK_ReadMemEx(0x08011BA0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011BA0) - Data: 00 BF 70 BD 7C B5 04 46 0D 46 16 46 0A A1 03 C9 ... returns 0x3C (0000ms, 2052ms total)
T0B0C 6434:098 JLINK_ReadMemEx(0x08011BA0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BA0) - Data: 00 BF returns 0x02 (0000ms, 2052ms total)
T0B0C 6434:098 JLINK_ReadMemEx(0x08011BA2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BA2) - Data: 70 BD returns 0x02 (0000ms, 2052ms total)
T0B0C 6434:098 JLINK_ReadMemEx(0x08011BA2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BA2) - Data: 70 BD returns 0x02 (0000ms, 2052ms total)
T0B0C 6434:098 JLINK_ReadMemEx(0x08011BA4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011BA4) - Data: 7C B5 04 46 0D 46 16 46 0A A1 03 C9 CD E9 00 01 ... returns 0x3C (0001ms, 2053ms total)
T0B0C 6434:099 JLINK_ReadMemEx(0x08011BA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BA4) - Data: 7C B5 returns 0x02 (0000ms, 2053ms total)
T0B0C 6434:099 JLINK_ReadMemEx(0x08011BA4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011BA4) - Data: 7C B5 04 46 0D 46 16 46 0A A1 03 C9 CD E9 00 01 ... returns 0x3C (0000ms, 2053ms total)
T0B0C 6434:099 JLINK_ReadMemEx(0x08011BA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BA4) - Data: 7C B5 returns 0x02 (0000ms, 2053ms total)
T0B0C 6434:099 JLINK_ReadMemEx(0x08011BA6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BA6) - Data: 04 46 returns 0x02 (0000ms, 2053ms total)
T0B0C 6434:099 JLINK_ReadMemEx(0x08011BA6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BA6) - Data: 04 46 returns 0x02 (0000ms, 2053ms total)
T0B0C 6434:099 JLINK_ReadMemEx(0x08011BA8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011BA8) - Data: 0D 46 16 46 0A A1 03 C9 CD E9 00 01 20 12 8D F8 ... returns 0x3C (0000ms, 2053ms total)
T0B0C 6434:099 JLINK_ReadMemEx(0x08011BA8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BA8) - Data: 0D 46 returns 0x02 (0000ms, 2053ms total)
T0B0C 6434:099 JLINK_ReadMemEx(0x08011BA8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011BA8) - Data: 0D 46 16 46 0A A1 03 C9 CD E9 00 01 20 12 8D F8 ... returns 0x3C (0000ms, 2053ms total)
T0B0C 6434:099 JLINK_ReadMemEx(0x08011BA8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BA8) - Data: 0D 46 returns 0x02 (0000ms, 2053ms total)
T0B0C 6434:099 JLINK_ReadMemEx(0x08011BAA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BAA) - Data: 16 46 returns 0x02 (0000ms, 2053ms total)
T0B0C 6434:099 JLINK_ReadMemEx(0x08011BAA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BAA) - Data: 16 46 returns 0x02 (0000ms, 2053ms total)
T0B0C 6434:099 JLINK_ReadMemEx(0x08011BAC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011BAC) - Data: 0A A1 03 C9 CD E9 00 01 20 12 8D F8 02 00 E0 B2 ... returns 0x3C (0000ms, 2053ms total)
T0B0C 6434:099 JLINK_ReadMemEx(0x08011BAC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BAC) - Data: 0A A1 returns 0x02 (0000ms, 2053ms total)
T0B0C 6434:099 JLINK_ReadMemEx(0x08011BAC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011BAC) - Data: 0A A1 03 C9 CD E9 00 01 20 12 8D F8 02 00 E0 B2 ... returns 0x3C (0000ms, 2053ms total)
T0B0C 6434:099 JLINK_ReadMemEx(0x08011BAC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BAC) - Data: 0A A1 returns 0x02 (0000ms, 2053ms total)
T0B0C 6434:099 JLINK_ReadMemEx(0x08011BAE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BAE) - Data: 03 C9 returns 0x02 (0000ms, 2053ms total)
T0B0C 6434:099 JLINK_ReadMemEx(0x08011BAE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BAE) - Data: 03 C9 returns 0x02 (0000ms, 2053ms total)
T0B0C 6434:099 JLINK_ReadMemEx(0x08011BB0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011BB0) - Data: CD E9 00 01 20 12 8D F8 02 00 E0 B2 8D F8 03 00 ... returns 0x3C (0000ms, 2053ms total)
T0B0C 6434:099 JLINK_ReadMemEx(0x08011BB0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BB0) - Data: CD E9 returns 0x02 (0000ms, 2053ms total)
T0B0C 6434:099 JLINK_ReadMemEx(0x08011BB0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011BB0) - Data: CD E9 00 01 20 12 8D F8 02 00 E0 B2 8D F8 03 00 ... returns 0x3C (0000ms, 2053ms total)
T0B0C 6434:099 JLINK_ReadMemEx(0x08011BB0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BB0) - Data: CD E9 returns 0x02 (0000ms, 2053ms total)
T0B0C 6434:099 JLINK_ReadMemEx(0x08011BB2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BB2) - Data: 00 01 returns 0x02 (0000ms, 2053ms total)
T1700 6436:941 JLINK_ReadMemEx(0x08011BB4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BB4) - Data: 20 12 returns 0x02 (0000ms, 2053ms total)
T1700 6436:941 JLINK_Step() -- Read from C cache (2 bytes @ 0x08011BB4) -- Simulated returns 0x00 (0002ms, 2055ms total)
T1700 6436:943 JLINK_ReadReg(R15 (PC)) returns 0x08011BB6 (0000ms, 2055ms total)
T1700 6436:943 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 2055ms total)
T1700 6436:943 JLINK_Step() -- Read from C cache (2 bytes @ 0x08011BB6) -- Read from C cache (2 bytes @ 0x08011BB8) -- Not simulated -- CPU_WriteMem(4 bytes @ 0xE0001004) returns 0x00 (0006ms, 2061ms total)
T1700 6436:949 JLINK_ReadReg(R15 (PC)) returns 0x08011BBA (0000ms, 2061ms total)
T1700 6436:949 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 2061ms total)
T1700 6436:953 JLINK_ReadReg(R0) returns 0x00000079 (0000ms, 2061ms total)
T1700 6436:953 JLINK_ReadReg(R1) returns 0x00000001 (0000ms, 2061ms total)
T1700 6436:954 JLINK_ReadReg(R2) returns 0x00000003 (0000ms, 2061ms total)
T1700 6436:954 JLINK_ReadReg(R3) returns 0x08011BA5 (0000ms, 2061ms total)
T1700 6436:954 JLINK_ReadReg(R4) returns 0x000079BF (0000ms, 2061ms total)
T1700 6436:954 JLINK_ReadReg(R5) returns 0x00000004 (0000ms, 2061ms total)
T1700 6436:954 JLINK_ReadReg(R6) returns 0x00000003 (0000ms, 2061ms total)
T1700 6436:954 JLINK_ReadReg(R7) returns 0x00000000 (0000ms, 2061ms total)
T1700 6436:954 JLINK_ReadReg(R8) returns 0x00000000 (0000ms, 2061ms total)
T1700 6436:954 JLINK_ReadReg(R9) returns 0x20000134 (0000ms, 2061ms total)
T1700 6436:954 JLINK_ReadReg(R10) returns 0x00000000 (0000ms, 2061ms total)
T1700 6436:954 JLINK_ReadReg(R11) returns 0x00000000 (0000ms, 2061ms total)
T1700 6436:954 JLINK_ReadReg(R12) returns 0x00000004 (0000ms, 2061ms total)
T1700 6436:954 JLINK_ReadReg(R13 (SP)) returns 0x2000E0F0 (0000ms, 2061ms total)
T1700 6436:954 JLINK_ReadReg(R14) returns 0x08010025 (0000ms, 2061ms total)
T1700 6436:954 JLINK_ReadReg(R15 (PC)) returns 0x08011BBA (0000ms, 2061ms total)
T1700 6436:954 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 2061ms total)
T1700 6436:954 JLINK_ReadReg(MSP) returns 0x2000E0F0 (0000ms, 2061ms total)
T1700 6436:954 JLINK_ReadReg(PSP) returns 0x20001000 (0000ms, 2061ms total)
T1700 6436:954 JLINK_ReadReg(CFBP) returns 0x00000001 (0000ms, 2061ms total)
T1700 6436:954 JLINK_ReadReg(FPSCR) returns 0x00000000 (0004ms, 2065ms total)
T1700 6436:958 JLINK_ReadReg(FPS0) returns 0xFB068412 (0000ms, 2065ms total)
T1700 6436:958 JLINK_ReadReg(FPS1) returns 0x10110C5A (0000ms, 2065ms total)
T1700 6436:958 JLINK_ReadReg(FPS2) returns 0x04345E8B (0000ms, 2065ms total)
T1700 6436:958 JLINK_ReadReg(FPS3) returns 0x84492403 (0000ms, 2065ms total)
T1700 6436:958 JLINK_ReadReg(FPS4) returns 0x18248A10 (0000ms, 2065ms total)
T1700 6436:958 JLINK_ReadReg(FPS5) returns 0x24102496 (0000ms, 2065ms total)
T1700 6436:958 JLINK_ReadReg(FPS6) returns 0x82C0846D (0000ms, 2065ms total)
T1700 6436:958 JLINK_ReadReg(FPS7) returns 0x28E02089 (0000ms, 2065ms total)
T1700 6436:958 JLINK_ReadReg(FPS8) returns 0x05488443 (0000ms, 2065ms total)
T1700 6436:958 JLINK_ReadReg(FPS9) returns 0xF172B840 (0000ms, 2065ms total)
T1700 6436:958 JLINK_ReadReg(FPS10) returns 0x11B25004 (0000ms, 2065ms total)
T1700 6436:958 JLINK_ReadReg(FPS11) returns 0x000A0122 (0000ms, 2065ms total)
T1700 6436:958 JLINK_ReadReg(FPS12) returns 0x02345609 (0000ms, 2065ms total)
T1700 6436:958 JLINK_ReadReg(FPS13) returns 0x86007109 (0000ms, 2065ms total)
T1700 6436:958 JLINK_ReadReg(FPS14) returns 0xA03C9BD0 (0000ms, 2065ms total)
T1700 6436:958 JLINK_ReadReg(FPS15) returns 0x5012A400 (0000ms, 2065ms total)
T1700 6436:959 JLINK_ReadReg(FPS16) returns 0x1591822D (0000ms, 2066ms total)
T1700 6436:959 JLINK_ReadReg(FPS17) returns 0x9415225C (0000ms, 2066ms total)
T1700 6436:959 JLINK_ReadReg(FPS18) returns 0x0C0917B5 (0000ms, 2066ms total)
T1700 6436:959 JLINK_ReadReg(FPS19) returns 0x1C78D422 (0000ms, 2066ms total)
T1700 6436:959 JLINK_ReadReg(FPS20) returns 0xB4874081 (0000ms, 2066ms total)
T1700 6436:959 JLINK_ReadReg(FPS21) returns 0x108D0118 (0000ms, 2066ms total)
T1700 6436:959 JLINK_ReadReg(FPS22) returns 0x9044A200 (0000ms, 2066ms total)
T1700 6436:959 JLINK_ReadReg(FPS23) returns 0x781449E0 (0000ms, 2066ms total)
T1700 6436:959 JLINK_ReadReg(FPS24) returns 0x1C330E11 (0000ms, 2066ms total)
T1700 6436:959 JLINK_ReadReg(FPS25) returns 0xC605704C (0000ms, 2066ms total)
T1700 6436:959 JLINK_ReadReg(FPS26) returns 0x2C30E195 (0000ms, 2066ms total)
T1700 6436:959 JLINK_ReadReg(FPS27) returns 0x8032365D (0000ms, 2066ms total)
T1700 6436:959 JLINK_ReadReg(FPS28) returns 0x068522B7 (0000ms, 2066ms total)
T1700 6436:959 JLINK_ReadReg(FPS29) returns 0x121C1711 (0000ms, 2066ms total)
T1700 6436:959 JLINK_ReadReg(FPS30) returns 0x41020916 (0000ms, 2066ms total)
T1700 6436:959 JLINK_ReadReg(FPS31) returns 0x11A63042 (0000ms, 2066ms total)
T0B0C 6436:959 JLINK_ReadMemEx(0x2000E104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x2000E100) -- Updating C cache (64 bytes @ 0x2000E100) -- Read from C cache (4 bytes @ 0x2000E104) - Data: 25 00 01 08 returns 0x04 (0002ms, 2068ms total)
T0B0C 6436:961 JLINK_ReadMemEx(0x2000E0F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x2000E0C0) -- Updating C cache (64 bytes @ 0x2000E0C0) -- Read from C cache (4 bytes @ 0x2000E0F8) - Data: 01 00 00 00 returns 0x04 (0001ms, 2069ms total)
T0B0C 6436:962 JLINK_ReadMemEx(0x2000E0FC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E0FC) - Data: 01 00 00 00 returns 0x04 (0000ms, 2069ms total)
T0B0C 6436:962 JLINK_ReadMemEx(0x2000E100, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E100) - Data: 03 00 00 00 returns 0x04 (0000ms, 2069ms total)
T0B0C 6436:962 JLINK_ReadMemEx(0x2000E104, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E104) - Data: 25 00 01 08 returns 0x04 (0000ms, 2069ms total)
T0B0C 6436:962 JLINK_ReadMemEx(0x2000E114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E114) - Data: 1F C2 00 08 returns 0x04 (0000ms, 2069ms total)
T0B0C 6436:962 JLINK_ReadMemEx(0x2000E108, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E108) - Data: 00 00 00 00 returns 0x04 (0000ms, 2069ms total)
T0B0C 6436:962 JLINK_ReadMemEx(0x2000E10C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E10C) - Data: 84 59 01 08 returns 0x04 (0000ms, 2069ms total)
T0B0C 6436:962 JLINK_ReadMemEx(0x2000E110, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E110) - Data: 00 00 00 00 returns 0x04 (0000ms, 2069ms total)
T0B0C 6436:962 JLINK_ReadMemEx(0x2000E114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E114) - Data: 1F C2 00 08 returns 0x04 (0000ms, 2069ms total)
T0B0C 6436:962 JLINK_ReadMemEx(0x2000E11C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E11C) - Data: 2F F9 00 08 returns 0x04 (0000ms, 2069ms total)
T0B0C 6436:962 JLINK_ReadMemEx(0x2000E118, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E118) - Data: 00 00 00 00 returns 0x04 (0000ms, 2069ms total)
T0B0C 6436:962 JLINK_ReadMemEx(0x2000E11C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E11C) - Data: 2F F9 00 08 returns 0x04 (0000ms, 2069ms total)
T0B0C 6436:962 JLINK_ReadMemEx(0x2000E0F0, 0x0005 Bytes, ..., Flags = 0x02000000) -- Read from C cache (5 bytes @ 0x2000E0F0) - Data: 19 98 79 25 01 returns 0x05 (0000ms, 2069ms total)
T0B0C 6436:963 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001004) - Data: 09 B6 0E 00 returns 1 (0002ms, 2071ms total)
T0B0C 6436:965 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000580) -- Updating C cache (64 bytes @ 0x20000580) -- Read from C cache (1 bytes @ 0x20000588) - Data: 00 returns 0x01 (0001ms, 2072ms total)
T0B0C 6436:966 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200007C0) -- Updating C cache (64 bytes @ 0x200007C0) -- Read from C cache (1 bytes @ 0x200007ED) - Data: DC returns 0x01 (0001ms, 2073ms total)
T0B0C 6436:967 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200007EE) - Data: 00 returns 0x01 (0000ms, 2073ms total)
T0B0C 6436:967 JLINK_ReadMemEx(0x2000042C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000400) -- Updating C cache (64 bytes @ 0x20000400) -- Read from C cache (4 bytes @ 0x2000042C) - Data: 00 00 00 00 returns 0x04 (0001ms, 2074ms total)
T0B0C 6436:970 JLINK_ReadMemEx(0x08011BB4, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x08011B80) -- Updating C cache (128 bytes @ 0x08011B80) -- Read from C cache (60 bytes @ 0x08011BB4) - Data: 20 12 8D F8 02 00 E0 B2 8D F8 03 00 32 46 29 46 ... returns 0x3C (0001ms, 2075ms total)
T0B0C 6436:971 JLINK_ReadMemEx(0x08011BB4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BB4) - Data: 20 12 returns 0x02 (0000ms, 2075ms total)
T0B0C 6436:971 JLINK_ReadMemEx(0x08011BB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BB6) - Data: 8D F8 returns 0x02 (0000ms, 2075ms total)
T0B0C 6436:971 JLINK_ReadMemEx(0x08011BB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BB6) - Data: 8D F8 returns 0x02 (0000ms, 2075ms total)
T0B0C 6436:971 JLINK_ReadMemEx(0x08011BB8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011BB8) - Data: 02 00 E0 B2 8D F8 03 00 32 46 29 46 68 46 F8 F7 ... returns 0x3C (0000ms, 2075ms total)
T0B0C 6436:971 JLINK_ReadMemEx(0x08011BB8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BB8) - Data: 02 00 returns 0x02 (0000ms, 2075ms total)
T0B0C 6436:971 JLINK_ReadMemEx(0x08011BAC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011BAC) - Data: 0A A1 03 C9 CD E9 00 01 20 12 8D F8 02 00 E0 B2 ... returns 0x3C (0000ms, 2075ms total)
T0B0C 6436:971 JLINK_ReadMemEx(0x08011BAC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BAC) - Data: 0A A1 returns 0x02 (0000ms, 2075ms total)
T0B0C 6436:971 JLINK_ReadMemEx(0x08011BAE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BAE) - Data: 03 C9 returns 0x02 (0000ms, 2075ms total)
T0B0C 6436:971 JLINK_ReadMemEx(0x08011BAE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BAE) - Data: 03 C9 returns 0x02 (0000ms, 2075ms total)
T0B0C 6436:971 JLINK_ReadMemEx(0x08011BB0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011BB0) - Data: CD E9 00 01 20 12 8D F8 02 00 E0 B2 8D F8 03 00 ... returns 0x3C (0000ms, 2075ms total)
T0B0C 6436:971 JLINK_ReadMemEx(0x08011BB0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BB0) - Data: CD E9 returns 0x02 (0000ms, 2075ms total)
T0B0C 6436:971 JLINK_ReadMemEx(0x08011BB0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011BB0) - Data: CD E9 00 01 20 12 8D F8 02 00 E0 B2 8D F8 03 00 ... returns 0x3C (0000ms, 2075ms total)
T0B0C 6436:971 JLINK_ReadMemEx(0x08011BB0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BB0) - Data: CD E9 returns 0x02 (0000ms, 2075ms total)
T0B0C 6436:971 JLINK_ReadMemEx(0x08011BB2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BB2) - Data: 00 01 returns 0x02 (0000ms, 2075ms total)
T0B0C 6436:971 JLINK_ReadMemEx(0x08011BBA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BBA) - Data: E0 B2 returns 0x02 (0000ms, 2075ms total)
T0B0C 6436:971 JLINK_ReadMemEx(0x08011BBC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011BBC) - Data: 8D F8 03 00 32 46 29 46 68 46 F8 F7 A9 F8 33 46 ... returns 0x3C (0000ms, 2075ms total)
T0B0C 6436:971 JLINK_ReadMemEx(0x08011BBC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BBC) - Data: 8D F8 returns 0x02 (0000ms, 2075ms total)
T0B0C 6436:971 JLINK_ReadMemEx(0x08011BBC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011BBC) - Data: 8D F8 03 00 32 46 29 46 68 46 F8 F7 A9 F8 33 46 ... returns 0x3C (0000ms, 2075ms total)
T0B0C 6436:971 JLINK_ReadMemEx(0x08011BBC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BBC) - Data: 8D F8 returns 0x02 (0000ms, 2075ms total)
T0B0C 6436:971 JLINK_ReadMemEx(0x08011BBE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BBE) - Data: 03 00 returns 0x02 (0000ms, 2075ms total)
T0B0C 6436:971 JLINK_ReadMemEx(0x08011BC0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011BC0) - Data: 32 46 29 46 68 46 F8 F7 A9 F8 33 46 2A 46 69 46 ... returns 0x3C (0000ms, 2075ms total)
T0B0C 6436:971 JLINK_ReadMemEx(0x08011BC0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BC0) - Data: 32 46 returns 0x02 (0000ms, 2075ms total)
T0B0C 6436:972 JLINK_ReadMemEx(0x08011BC2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BC2) - Data: 29 46 returns 0x02 (0000ms, 2075ms total)
T0B0C 6436:972 JLINK_ReadMemEx(0x08011BC2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BC2) - Data: 29 46 returns 0x02 (0000ms, 2075ms total)
T0B0C 6436:972 JLINK_ReadMemEx(0x08011BC4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011BC4) - Data: 68 46 F8 F7 A9 F8 33 46 2A 46 69 46 00 20 F8 F7 ... returns 0x3C (0000ms, 2075ms total)
T0B0C 6436:972 JLINK_ReadMemEx(0x08011BC4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BC4) - Data: 68 46 returns 0x02 (0000ms, 2075ms total)
T0B0C 6436:972 JLINK_ReadMemEx(0x08011BC4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011BC4) - Data: 68 46 F8 F7 A9 F8 33 46 2A 46 69 46 00 20 F8 F7 ... returns 0x3C (0000ms, 2075ms total)
T0B0C 6436:972 JLINK_ReadMemEx(0x08011BC4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BC4) - Data: 68 46 returns 0x02 (0000ms, 2075ms total)
T0B0C 6436:972 JLINK_ReadMemEx(0x08011BC6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BC6) - Data: F8 F7 returns 0x02 (0000ms, 2075ms total)
T0B0C 6436:972 JLINK_ReadMemEx(0x08011BC6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BC6) - Data: F8 F7 returns 0x02 (0000ms, 2075ms total)
T0B0C 6436:972 JLINK_ReadMemEx(0x08011BC8, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08011C00) -- Updating C cache (64 bytes @ 0x08011C00) -- Read from C cache (60 bytes @ 0x08011BC8) - Data: A9 F8 33 46 2A 46 69 46 00 20 F8 F7 69 F8 7C BD ... returns 0x3C (0001ms, 2076ms total)
T0B0C 6436:973 JLINK_ReadMemEx(0x08011BC8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BC8) - Data: A9 F8 returns 0x02 (0000ms, 2076ms total)
T0B0C 6436:973 JLINK_ReadMemEx(0x08011BCA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BCA) - Data: 33 46 returns 0x02 (0000ms, 2076ms total)
T0B0C 6436:973 JLINK_ReadMemEx(0x08011BCC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011BCC) - Data: 2A 46 69 46 00 20 F8 F7 69 F8 7C BD 19 98 A4 25 ... returns 0x3C (0000ms, 2076ms total)
T0B0C 6436:973 JLINK_ReadMemEx(0x08011BCC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BCC) - Data: 2A 46 returns 0x02 (0000ms, 2076ms total)
T0B0C 6436:973 JLINK_ReadMemEx(0x08011BCC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011BCC) - Data: 2A 46 69 46 00 20 F8 F7 69 F8 7C BD 19 98 A4 25 ... returns 0x3C (0000ms, 2076ms total)
T0B0C 6436:973 JLINK_ReadMemEx(0x08011BCC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BCC) - Data: 2A 46 returns 0x02 (0000ms, 2076ms total)
T0B0C 6436:973 JLINK_ReadMemEx(0x08011BCE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BCE) - Data: 69 46 returns 0x02 (0000ms, 2076ms total)
T1700 6437:661 JLINK_ReadMemEx(0x08011BBA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BBA) - Data: E0 B2 returns 0x02 (0000ms, 2076ms total)
T1700 6437:661 JLINK_Step() -- Read from C cache (2 bytes @ 0x08011BBA) -- Simulated returns 0x00 (0001ms, 2077ms total)
T1700 6437:662 JLINK_ReadReg(R15 (PC)) returns 0x08011BBC (0000ms, 2077ms total)
T1700 6437:662 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 2077ms total)
T1700 6437:662 JLINK_Step() -- Read from C cache (2 bytes @ 0x08011BBC) -- Read from C cache (2 bytes @ 0x08011BBE) -- Not simulated -- CPU_WriteMem(4 bytes @ 0xE0001004) returns 0x00 (0006ms, 2083ms total)
T1700 6437:668 JLINK_ReadReg(R15 (PC)) returns 0x08011BC0 (0001ms, 2084ms total)
T1700 6437:669 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 2084ms total)
T1700 6437:669 JLINK_ReadReg(R0) returns 0x000000BF (0000ms, 2084ms total)
T1700 6437:669 JLINK_ReadReg(R1) returns 0x00000001 (0000ms, 2084ms total)
T1700 6437:669 JLINK_ReadReg(R2) returns 0x00000003 (0000ms, 2084ms total)
T1700 6437:669 JLINK_ReadReg(R3) returns 0x08011BA5 (0000ms, 2084ms total)
T1700 6437:669 JLINK_ReadReg(R4) returns 0x000079BF (0000ms, 2084ms total)
T1700 6437:669 JLINK_ReadReg(R5) returns 0x00000004 (0000ms, 2084ms total)
T1700 6437:669 JLINK_ReadReg(R6) returns 0x00000003 (0000ms, 2084ms total)
T1700 6437:669 JLINK_ReadReg(R7) returns 0x00000000 (0000ms, 2084ms total)
T1700 6437:669 JLINK_ReadReg(R8) returns 0x00000000 (0000ms, 2084ms total)
T1700 6437:669 JLINK_ReadReg(R9) returns 0x20000134 (0000ms, 2084ms total)
T1700 6437:669 JLINK_ReadReg(R10) returns 0x00000000 (0000ms, 2084ms total)
T1700 6437:669 JLINK_ReadReg(R11) returns 0x00000000 (0000ms, 2084ms total)
T1700 6437:669 JLINK_ReadReg(R12) returns 0x00000004 (0000ms, 2084ms total)
T1700 6437:669 JLINK_ReadReg(R13 (SP)) returns 0x2000E0F0 (0000ms, 2084ms total)
T1700 6437:669 JLINK_ReadReg(R14) returns 0x08010025 (0000ms, 2084ms total)
T1700 6437:669 JLINK_ReadReg(R15 (PC)) returns 0x08011BC0 (0000ms, 2084ms total)
T1700 6437:669 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 2084ms total)
T1700 6437:669 JLINK_ReadReg(MSP) returns 0x2000E0F0 (0000ms, 2084ms total)
T1700 6437:669 JLINK_ReadReg(PSP) returns 0x20001000 (0000ms, 2084ms total)
T1700 6437:669 JLINK_ReadReg(CFBP) returns 0x00000001 (0000ms, 2084ms total)
T1700 6437:669 JLINK_ReadReg(FPSCR) returns 0x00000000 (0004ms, 2088ms total)
T1700 6437:673 JLINK_ReadReg(FPS0) returns 0xFB068412 (0000ms, 2088ms total)
T1700 6437:673 JLINK_ReadReg(FPS1) returns 0x10110C5A (0000ms, 2088ms total)
T1700 6437:673 JLINK_ReadReg(FPS2) returns 0x04345E8B (0000ms, 2088ms total)
T1700 6437:673 JLINK_ReadReg(FPS3) returns 0x84492403 (0000ms, 2088ms total)
T1700 6437:673 JLINK_ReadReg(FPS4) returns 0x18248A10 (0000ms, 2088ms total)
T1700 6437:673 JLINK_ReadReg(FPS5) returns 0x24102496 (0001ms, 2089ms total)
T1700 6437:674 JLINK_ReadReg(FPS6) returns 0x82C0846D (0000ms, 2089ms total)
T1700 6437:674 JLINK_ReadReg(FPS7) returns 0x28E02089 (0000ms, 2089ms total)
T1700 6437:674 JLINK_ReadReg(FPS8) returns 0x05488443 (0000ms, 2089ms total)
T1700 6437:674 JLINK_ReadReg(FPS9) returns 0xF172B840 (0000ms, 2089ms total)
T1700 6437:674 JLINK_ReadReg(FPS10) returns 0x11B25004 (0000ms, 2089ms total)
T1700 6437:674 JLINK_ReadReg(FPS11) returns 0x000A0122 (0000ms, 2089ms total)
T1700 6437:674 JLINK_ReadReg(FPS12) returns 0x02345609 (0000ms, 2089ms total)
T1700 6437:674 JLINK_ReadReg(FPS13) returns 0x86007109 (0000ms, 2089ms total)
T1700 6437:674 JLINK_ReadReg(FPS14) returns 0xA03C9BD0 (0000ms, 2089ms total)
T1700 6437:674 JLINK_ReadReg(FPS15) returns 0x5012A400 (0000ms, 2089ms total)
T1700 6437:674 JLINK_ReadReg(FPS16) returns 0x1591822D (0000ms, 2089ms total)
T1700 6437:674 JLINK_ReadReg(FPS17) returns 0x9415225C (0000ms, 2089ms total)
T1700 6437:674 JLINK_ReadReg(FPS18) returns 0x0C0917B5 (0000ms, 2089ms total)
T1700 6437:674 JLINK_ReadReg(FPS19) returns 0x1C78D422 (0000ms, 2089ms total)
T1700 6437:674 JLINK_ReadReg(FPS20) returns 0xB4874081 (0000ms, 2089ms total)
T1700 6437:674 JLINK_ReadReg(FPS21) returns 0x108D0118 (0000ms, 2089ms total)
T1700 6437:674 JLINK_ReadReg(FPS22) returns 0x9044A200 (0000ms, 2089ms total)
T1700 6437:674 JLINK_ReadReg(FPS23) returns 0x781449E0 (0000ms, 2089ms total)
T1700 6437:674 JLINK_ReadReg(FPS24) returns 0x1C330E11 (0000ms, 2089ms total)
T1700 6437:674 JLINK_ReadReg(FPS25) returns 0xC605704C (0000ms, 2089ms total)
T1700 6437:674 JLINK_ReadReg(FPS26) returns 0x2C30E195 (0000ms, 2089ms total)
T1700 6437:674 JLINK_ReadReg(FPS27) returns 0x8032365D (0000ms, 2089ms total)
T1700 6437:674 JLINK_ReadReg(FPS28) returns 0x068522B7 (0000ms, 2089ms total)
T1700 6437:674 JLINK_ReadReg(FPS29) returns 0x121C1711 (0000ms, 2089ms total)
T1700 6437:674 JLINK_ReadReg(FPS30) returns 0x41020916 (0000ms, 2089ms total)
T1700 6437:674 JLINK_ReadReg(FPS31) returns 0x11A63042 (0000ms, 2089ms total)
T0B0C 6437:677 JLINK_ReadMemEx(0x2000E104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x2000E100) -- Updating C cache (64 bytes @ 0x2000E100) -- Read from C cache (4 bytes @ 0x2000E104) - Data: 25 00 01 08 returns 0x04 (0002ms, 2091ms total)
T0B0C 6437:679 JLINK_ReadMemEx(0x2000E0F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x2000E0C0) -- Updating C cache (64 bytes @ 0x2000E0C0) -- Read from C cache (4 bytes @ 0x2000E0F8) - Data: 01 00 00 00 returns 0x04 (0002ms, 2093ms total)
T0B0C 6437:681 JLINK_ReadMemEx(0x2000E0FC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E0FC) - Data: 01 00 00 00 returns 0x04 (0000ms, 2093ms total)
T0B0C 6437:681 JLINK_ReadMemEx(0x2000E100, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E100) - Data: 03 00 00 00 returns 0x04 (0000ms, 2093ms total)
T0B0C 6437:681 JLINK_ReadMemEx(0x2000E104, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E104) - Data: 25 00 01 08 returns 0x04 (0000ms, 2093ms total)
T0B0C 6437:681 JLINK_ReadMemEx(0x2000E114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E114) - Data: 1F C2 00 08 returns 0x04 (0000ms, 2093ms total)
T0B0C 6437:681 JLINK_ReadMemEx(0x2000E108, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E108) - Data: 00 00 00 00 returns 0x04 (0000ms, 2093ms total)
T0B0C 6437:681 JLINK_ReadMemEx(0x2000E10C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E10C) - Data: 84 59 01 08 returns 0x04 (0000ms, 2093ms total)
T0B0C 6437:681 JLINK_ReadMemEx(0x2000E110, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E110) - Data: 00 00 00 00 returns 0x04 (0000ms, 2093ms total)
T0B0C 6437:681 JLINK_ReadMemEx(0x2000E114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E114) - Data: 1F C2 00 08 returns 0x04 (0000ms, 2093ms total)
T0B0C 6437:681 JLINK_ReadMemEx(0x2000E11C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E11C) - Data: 2F F9 00 08 returns 0x04 (0000ms, 2093ms total)
T0B0C 6437:681 JLINK_ReadMemEx(0x2000E118, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E118) - Data: 00 00 00 00 returns 0x04 (0000ms, 2093ms total)
T0B0C 6437:681 JLINK_ReadMemEx(0x2000E11C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E11C) - Data: 2F F9 00 08 returns 0x04 (0000ms, 2093ms total)
T0B0C 6437:681 JLINK_ReadMemEx(0x2000E0F0, 0x0005 Bytes, ..., Flags = 0x02000000) -- Read from C cache (5 bytes @ 0x2000E0F0) - Data: 19 98 79 BF 01 returns 0x05 (0000ms, 2093ms total)
T0B0C 6437:682 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001004) - Data: 0B B6 0E 00 returns 1 (0002ms, 2095ms total)
T0B0C 6437:684 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000580) -- Updating C cache (64 bytes @ 0x20000580) -- Read from C cache (1 bytes @ 0x20000588) - Data: 00 returns 0x01 (0001ms, 2096ms total)
T0B0C 6437:685 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200007C0) -- Updating C cache (64 bytes @ 0x200007C0) -- Read from C cache (1 bytes @ 0x200007ED) - Data: DC returns 0x01 (0001ms, 2097ms total)
T0B0C 6437:686 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200007EE) - Data: 00 returns 0x01 (0000ms, 2097ms total)
T0B0C 6437:686 JLINK_ReadMemEx(0x2000042C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000400) -- Updating C cache (64 bytes @ 0x20000400) -- Read from C cache (4 bytes @ 0x2000042C) - Data: 00 00 00 00 returns 0x04 (0001ms, 2098ms total)
T0B0C 6437:692 JLINK_ReadMemEx(0x08011BB0, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x08011B80) -- Updating C cache (128 bytes @ 0x08011B80) -- Read from C cache (60 bytes @ 0x08011BB0) - Data: CD E9 00 01 20 12 8D F8 02 00 E0 B2 8D F8 03 00 ... returns 0x3C (0001ms, 2099ms total)
T0B0C 6437:694 JLINK_ReadMemEx(0x08011BB0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BB0) - Data: CD E9 returns 0x02 (0000ms, 2099ms total)
T0B0C 6437:694 JLINK_ReadMemEx(0x08011BB2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BB2) - Data: 00 01 returns 0x02 (0000ms, 2099ms total)
T0B0C 6437:694 JLINK_ReadMemEx(0x08011BB4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011BB4) - Data: 20 12 8D F8 02 00 E0 B2 8D F8 03 00 32 46 29 46 ... returns 0x3C (0000ms, 2099ms total)
T0B0C 6437:694 JLINK_ReadMemEx(0x08011BB4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BB4) - Data: 20 12 returns 0x02 (0000ms, 2099ms total)
T0B0C 6437:694 JLINK_ReadMemEx(0x08011BB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BB6) - Data: 8D F8 returns 0x02 (0000ms, 2099ms total)
T0B0C 6437:694 JLINK_ReadMemEx(0x08011BB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BB6) - Data: 8D F8 returns 0x02 (0000ms, 2099ms total)
T0B0C 6437:694 JLINK_ReadMemEx(0x08011BB8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011BB8) - Data: 02 00 E0 B2 8D F8 03 00 32 46 29 46 68 46 F8 F7 ... returns 0x3C (0000ms, 2099ms total)
T0B0C 6437:694 JLINK_ReadMemEx(0x08011BB8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BB8) - Data: 02 00 returns 0x02 (0000ms, 2099ms total)
T0B0C 6437:694 JLINK_ReadMemEx(0x08011BBA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BBA) - Data: E0 B2 returns 0x02 (0000ms, 2099ms total)
T0B0C 6437:694 JLINK_ReadMemEx(0x08011BBC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011BBC) - Data: 8D F8 03 00 32 46 29 46 68 46 F8 F7 A9 F8 33 46 ... returns 0x3C (0000ms, 2099ms total)
T0B0C 6437:694 JLINK_ReadMemEx(0x08011BBC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BBC) - Data: 8D F8 returns 0x02 (0000ms, 2099ms total)
T0B0C 6437:694 JLINK_ReadMemEx(0x08011BBC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011BBC) - Data: 8D F8 03 00 32 46 29 46 68 46 F8 F7 A9 F8 33 46 ... returns 0x3C (0000ms, 2099ms total)
T0B0C 6437:694 JLINK_ReadMemEx(0x08011BBC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BBC) - Data: 8D F8 returns 0x02 (0000ms, 2099ms total)
T0B0C 6437:694 JLINK_ReadMemEx(0x08011BBE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BBE) - Data: 03 00 returns 0x02 (0000ms, 2099ms total)
T0B0C 6437:694 JLINK_ReadMemEx(0x08011BC0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011BC0) - Data: 32 46 29 46 68 46 F8 F7 A9 F8 33 46 2A 46 69 46 ... returns 0x3C (0000ms, 2099ms total)
T0B0C 6437:694 JLINK_ReadMemEx(0x08011BC0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BC0) - Data: 32 46 returns 0x02 (0000ms, 2099ms total)
T0B0C 6437:694 JLINK_ReadMemEx(0x08011BC2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BC2) - Data: 29 46 returns 0x02 (0000ms, 2099ms total)
T0B0C 6437:694 JLINK_ReadMemEx(0x08011BC2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BC2) - Data: 29 46 returns 0x02 (0000ms, 2099ms total)
T0B0C 6437:694 JLINK_ReadMemEx(0x08011BC4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011BC4) - Data: 68 46 F8 F7 A9 F8 33 46 2A 46 69 46 00 20 F8 F7 ... returns 0x3C (0000ms, 2099ms total)
T0B0C 6437:695 JLINK_ReadMemEx(0x08011BC4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BC4) - Data: 68 46 returns 0x02 (0000ms, 2100ms total)
T0B0C 6437:695 JLINK_ReadMemEx(0x08011BC4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011BC4) - Data: 68 46 F8 F7 A9 F8 33 46 2A 46 69 46 00 20 F8 F7 ... returns 0x3C (0000ms, 2100ms total)
T0B0C 6437:695 JLINK_ReadMemEx(0x08011BC4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BC4) - Data: 68 46 returns 0x02 (0000ms, 2100ms total)
T0B0C 6437:695 JLINK_ReadMemEx(0x08011BC6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BC6) - Data: F8 F7 returns 0x02 (0000ms, 2100ms total)
T0B0C 6437:695 JLINK_ReadMemEx(0x08011BC6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BC6) - Data: F8 F7 returns 0x02 (0000ms, 2100ms total)
T0B0C 6437:695 JLINK_ReadMemEx(0x08011BC8, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08011C00) -- Updating C cache (64 bytes @ 0x08011C00) -- Read from C cache (60 bytes @ 0x08011BC8) - Data: A9 F8 33 46 2A 46 69 46 00 20 F8 F7 69 F8 7C BD ... returns 0x3C (0001ms, 2101ms total)
T0B0C 6437:696 JLINK_ReadMemEx(0x08011BC8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BC8) - Data: A9 F8 returns 0x02 (0000ms, 2101ms total)
T0B0C 6437:696 JLINK_ReadMemEx(0x08011BCA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BCA) - Data: 33 46 returns 0x02 (0000ms, 2101ms total)
T0B0C 6437:696 JLINK_ReadMemEx(0x08011BCC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011BCC) - Data: 2A 46 69 46 00 20 F8 F7 69 F8 7C BD 19 98 A4 25 ... returns 0x3C (0000ms, 2101ms total)
T0B0C 6437:696 JLINK_ReadMemEx(0x08011BCC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BCC) - Data: 2A 46 returns 0x02 (0001ms, 2102ms total)
T0B0C 6437:697 JLINK_ReadMemEx(0x08011BCC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08011BCC) - Data: 2A 46 69 46 00 20 F8 F7 69 F8 7C BD 19 98 A4 25 ... returns 0x3C (0000ms, 2102ms total)
T0B0C 6437:697 JLINK_ReadMemEx(0x08011BCC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BCC) - Data: 2A 46 returns 0x02 (0000ms, 2102ms total)
T0B0C 6437:697 JLINK_ReadMemEx(0x08011BCE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BCE) - Data: 69 46 returns 0x02 (0000ms, 2102ms total)
T0B0C 6441:576 JLINK_ReadMemEx(0x2000E0F0, 0x0005 Bytes, ..., Flags = 0x02000000) -- Read from C cache (5 bytes @ 0x2000E0F0) - Data: 19 98 79 BF 01 returns 0x05 (0000ms, 2102ms total)
T0B0C 6441:576 JLINK_ReadMemEx(0x2000E0F0, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000E0F0) - Data: 19 returns 0x01 (0000ms, 2102ms total)
T0B0C 6441:576 JLINK_ReadMemEx(0x2000E0F1, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000E0F1) - Data: 98 returns 0x01 (0000ms, 2102ms total)
T0B0C 6441:576 JLINK_ReadMemEx(0x2000E0F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000E0F2) - Data: 79 returns 0x01 (0000ms, 2102ms total)
T0B0C 6441:576 JLINK_ReadMemEx(0x2000E0F3, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000E0F3) - Data: BF returns 0x01 (0000ms, 2102ms total)
T0B0C 6441:576 JLINK_ReadMemEx(0x2000E0F4, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000E0F4) - Data: 01 returns 0x01 (0000ms, 2102ms total)
T0B0C 6441:576 JLINK_ReadMemEx(0x2000E104, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E104) - Data: 25 00 01 08 returns 0x04 (0000ms, 2102ms total)
T0B0C 6441:576 JLINK_ReadMemEx(0x2000E0F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E0F8) - Data: 01 00 00 00 returns 0x04 (0000ms, 2102ms total)
T0B0C 6441:576 JLINK_ReadMemEx(0x2000E0FC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E0FC) - Data: 01 00 00 00 returns 0x04 (0000ms, 2102ms total)
T0B0C 6441:576 JLINK_ReadMemEx(0x2000E100, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E100) - Data: 03 00 00 00 returns 0x04 (0000ms, 2102ms total)
T0B0C 6441:576 JLINK_ReadMemEx(0x2000E104, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E104) - Data: 25 00 01 08 returns 0x04 (0000ms, 2102ms total)
T0B0C 6441:576 JLINK_ReadMemEx(0x2000E114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E114) - Data: 1F C2 00 08 returns 0x04 (0000ms, 2102ms total)
T0B0C 6441:576 JLINK_ReadMemEx(0x2000E108, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E108) - Data: 00 00 00 00 returns 0x04 (0000ms, 2102ms total)
T0B0C 6441:576 JLINK_ReadMemEx(0x2000E10C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E10C) - Data: 84 59 01 08 returns 0x04 (0000ms, 2102ms total)
T0B0C 6441:576 JLINK_ReadMemEx(0x2000E110, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E110) - Data: 00 00 00 00 returns 0x04 (0001ms, 2103ms total)
T0B0C 6441:577 JLINK_ReadMemEx(0x2000E114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E114) - Data: 1F C2 00 08 returns 0x04 (0000ms, 2103ms total)
T0B0C 6441:577 JLINK_ReadMemEx(0x2000E11C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E11C) - Data: 2F F9 00 08 returns 0x04 (0000ms, 2103ms total)
T0B0C 6441:577 JLINK_ReadMemEx(0x2000E118, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E118) - Data: 00 00 00 00 returns 0x04 (0000ms, 2103ms total)
T0B0C 6441:577 JLINK_ReadMemEx(0x2000E11C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000E11C) - Data: 2F F9 00 08 returns 0x04 (0000ms, 2103ms total)
T0B0C 6441:577 JLINK_ReadMemEx(0x2000E0F0, 0x0005 Bytes, ..., Flags = 0x02000000) -- Read from C cache (5 bytes @ 0x2000E0F0) - Data: 19 98 79 BF 01 returns 0x05 (0000ms, 2103ms total)
T0B0C 6441:577 JLINK_ReadMemEx(0x2000E0F0, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000E0F0) - Data: 19 returns 0x01 (0000ms, 2103ms total)
T0B0C 6441:577 JLINK_ReadMemEx(0x2000E0F1, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000E0F1) - Data: 98 returns 0x01 (0000ms, 2103ms total)
T0B0C 6441:577 JLINK_ReadMemEx(0x2000E0F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000E0F2) - Data: 79 returns 0x01 (0000ms, 2103ms total)
T0B0C 6441:577 JLINK_ReadMemEx(0x2000E0F3, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000E0F3) - Data: BF returns 0x01 (0000ms, 2103ms total)
T0B0C 6441:577 JLINK_ReadMemEx(0x2000E0F4, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000E0F4) - Data: 01 returns 0x01 (0000ms, 2103ms total)
T1700 6470:885 JLINK_ReadMemEx(0x08011BC0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08011BC0) - Data: 32 46 returns 0x02 (0000ms, 2103ms total)
T1700 6470:885 JLINK_SetBPEx(Addr = 0x08009484, Type = 0xFFFFFFF2) returns 0x00000005 (0000ms, 2103ms total)
T1700 6470:885 JLINK_SetBPEx(Addr = 0x0801000A, Type = 0xFFFFFFF2) returns 0x00000006 (0000ms, 2103ms total)
T1700 6470:885 JLINK_SetBPEx(Addr = 0x08010010, Type = 0xFFFFFFF2) returns 0x00000007 (0000ms, 2103ms total)
T1700 6470:885 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) (0007ms, 2110ms total)
T1700 6470:992 JLINK_IsHalted() returns FALSE (0001ms, 2111ms total)
T1700 6471:093 JLINK_IsHalted() returns FALSE (0001ms, 2111ms total)
T1700 6471:194 JLINK_IsHalted() returns FALSE (0001ms, 2111ms total)
T1700 6471:295 JLINK_IsHalted() returns FALSE (0001ms, 2111ms total)
T1700 6471:396 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001004) - Data: FF A9 AA 03 returns 1 (0001ms, 2111ms total)
T0B0C 6471:397 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000588) - Data: 00 returns 0x01 (0001ms, 2112ms total)
T0B0C 6471:398 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007ED) - Data: DC returns 0x01 (0001ms, 2113ms total)
T0B0C 6471:399 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007EE) - Data: 00 returns 0x01 (0001ms, 2114ms total)
T0B0C 6471:400 JLINK_ReadMemEx(0x2000042C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000042C) - Data: 00 00 00 00 returns 0x04 (0001ms, 2115ms total)
T1700 6471:401 JLINK_IsHalted() returns FALSE (0001ms, 2116ms total)
T1700 6471:502 JLINK_IsHalted() returns FALSE (0001ms, 2116ms total)
T1700 6471:603 JLINK_IsHalted() returns FALSE (0001ms, 2116ms total)
T1700 6471:704 JLINK_IsHalted() returns FALSE (0001ms, 2116ms total)
T1700 6471:805 JLINK_IsHalted() returns FALSE (0001ms, 2116ms total)
T1700 6471:906 JLINK_IsHalted() returns FALSE (0001ms, 2116ms total)
T1700 6472:007 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: FF A9 AA 03 returns 1 (0000ms, 2115ms total)
T0B0C 6472:007 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000588) - Data: 00 returns 0x01 (0001ms, 2116ms total)
T0B0C 6472:009 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007ED) - Data: DC returns 0x01 (0000ms, 2116ms total)
T0B0C 6472:009 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007EE) - Data: 00 returns 0x01 (0001ms, 2117ms total)
T0B0C 6472:010 JLINK_ReadMemEx(0x2000042C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000042C) - Data: 00 00 00 00 returns 0x04 (0001ms, 2118ms total)
T1700 6472:012 JLINK_IsHalted() returns FALSE (0000ms, 2118ms total)
T1700 6472:112 JLINK_IsHalted() returns FALSE (0001ms, 2119ms total)
T1700 6472:213 JLINK_IsHalted() returns FALSE (0001ms, 2119ms total)
T1700 6472:314 JLINK_IsHalted() returns FALSE (0001ms, 2119ms total)
T1700 6472:415 JLINK_IsHalted() returns FALSE (0001ms, 2119ms total)
T1700 6472:516 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: FF A9 AA 03 returns 1 (0000ms, 2118ms total)
T0B0C 6472:517 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000588) - Data: 00 returns 0x01 (0002ms, 2120ms total)
T0B0C 6472:519 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007ED) - Data: DC returns 0x01 (0002ms, 2122ms total)
T0B0C 6472:521 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007EE) - Data: 00 returns 0x01 (0001ms, 2123ms total)
T0B0C 6472:522 JLINK_ReadMemEx(0x2000042C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000042C) - Data: 00 00 00 00 returns 0x04 (0001ms, 2124ms total)
T1700 6472:523 JLINK_IsHalted() returns FALSE (0002ms, 2126ms total)
T1700 6472:625 JLINK_IsHalted() returns FALSE (0001ms, 2125ms total)
T1700 6472:726 JLINK_IsHalted() returns FALSE (0001ms, 2125ms total)
T1700 6472:827 JLINK_IsHalted() returns FALSE (0001ms, 2125ms total)
T1700 6472:928 JLINK_IsHalted() returns FALSE (0001ms, 2125ms total)
T1700 6473:029 JLINK_IsHalted() returns FALSE (0001ms, 2125ms total)
T1700 6473:130 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: FF A9 AA 03 returns 1 (0000ms, 2124ms total)
T0B0C 6473:131 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000588) - Data: 00 returns 0x01 (0002ms, 2126ms total)
T0B0C 6473:133 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007ED) - Data: DC returns 0x01 (0002ms, 2128ms total)
T0B0C 6473:135 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007EE) - Data: 00 returns 0x01 (0001ms, 2129ms total)
T0B0C 6473:136 JLINK_ReadMemEx(0x2000042C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000042C) - Data: 00 00 00 00 returns 0x04 (0001ms, 2130ms total)
T1700 6473:137 JLINK_IsHalted() returns FALSE (0002ms, 2132ms total)
T1700 6473:239 JLINK_IsHalted() returns FALSE (0001ms, 2131ms total)
T1700 6473:340 JLINK_IsHalted() returns FALSE (0001ms, 2131ms total)
T1700 6473:441 JLINK_IsHalted() returns FALSE (0001ms, 2131ms total)
T1700 6473:542 JLINK_IsHalted() returns FALSE (0001ms, 2131ms total)
T1700 6473:643 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: FF A9 AA 03 returns 1 (0000ms, 2130ms total)
T0B0C 6473:649 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000588) - Data: 00 returns 0x01 (0002ms, 2132ms total)
T0B0C 6473:651 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007ED) - Data: DC returns 0x01 (0001ms, 2133ms total)
T0B0C 6473:652 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007EE) - Data: 00 returns 0x01 (0001ms, 2134ms total)
T0B0C 6473:653 JLINK_ReadMemEx(0x2000042C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000042C) - Data: 00 00 00 00 returns 0x04 (0001ms, 2135ms total)
T1700 6473:654 JLINK_IsHalted() returns FALSE (0001ms, 2136ms total)
T1700 6473:755 JLINK_IsHalted() returns FALSE (0001ms, 2136ms total)
T1700 6473:856 JLINK_IsHalted() returns FALSE (0001ms, 2136ms total)
T1700 6473:957 JLINK_IsHalted() returns FALSE (0001ms, 2136ms total)
T1700 6474:058 JLINK_IsHalted() returns FALSE (0001ms, 2136ms total)
T1700 6474:159 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: FF A9 AA 03 returns 1 (0000ms, 2135ms total)
T0B0C 6474:165 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000588) - Data: 00 returns 0x01 (0001ms, 2136ms total)
T0B0C 6474:167 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007ED) - Data: DC returns 0x01 (0001ms, 2137ms total)
T0B0C 6474:168 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007EE) - Data: 00 returns 0x01 (0001ms, 2138ms total)
T0B0C 6474:169 JLINK_ReadMemEx(0x2000042C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000042C) - Data: 00 00 00 00 returns 0x04 (0001ms, 2139ms total)
T1700 6474:171 JLINK_IsHalted() returns FALSE (0002ms, 2141ms total)
T1700 6474:273 JLINK_IsHalted() returns FALSE (0001ms, 2140ms total)
T1700 6474:374 JLINK_IsHalted() returns FALSE (0001ms, 2140ms total)
T1700 6474:475 JLINK_IsHalted() returns FALSE (0001ms, 2140ms total)
T1700 6474:576 JLINK_IsHalted() returns FALSE (0001ms, 2140ms total)
T1700 6474:677 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: FF A9 AA 03 returns 1 (0000ms, 2139ms total)
T0B0C 6474:679 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000588) - Data: 00 returns 0x01 (0002ms, 2141ms total)
T0B0C 6474:681 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007ED) - Data: DC returns 0x01 (0001ms, 2142ms total)
T0B0C 6474:682 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007EE) - Data: 00 returns 0x01 (0001ms, 2143ms total)
T0B0C 6474:683 JLINK_ReadMemEx(0x2000042C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000042C) - Data: 00 00 00 00 returns 0x04 (0001ms, 2144ms total)
T1700 6474:685 JLINK_IsHalted() returns FALSE (0001ms, 2145ms total)
T1700 6474:786 JLINK_IsHalted() returns FALSE (0001ms, 2145ms total)
T1700 6474:887 JLINK_IsHalted() returns FALSE (0001ms, 2145ms total)
T1700 6474:988 JLINK_IsHalted() returns FALSE (0001ms, 2145ms total)
T1700 6475:089 JLINK_IsHalted() returns FALSE (0001ms, 2145ms total)
T1700 6475:190 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: FF A9 AA 03 returns 1 (0000ms, 2144ms total)
T0B0C 6475:191 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000588) - Data: 00 returns 0x01 (0001ms, 2145ms total)
T0B0C 6475:193 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007ED) - Data: DC returns 0x01 (0000ms, 2145ms total)
T0B0C 6475:193 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007EE) - Data: 00 returns 0x01 (0001ms, 2146ms total)
T0B0C 6475:194 JLINK_ReadMemEx(0x2000042C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000042C) - Data: 00 00 00 00 returns 0x04 (0001ms, 2147ms total)
T1700 6475:201 JLINK_IsHalted() returns FALSE (0001ms, 2148ms total)
T1700 6475:302 JLINK_IsHalted() returns FALSE (0001ms, 2149ms total)
T1700 6475:403 JLINK_IsHalted() returns FALSE (0001ms, 2149ms total)
T1700 6475:504 JLINK_IsHalted() returns FALSE (0001ms, 2149ms total)
T1700 6475:605 JLINK_IsHalted() returns FALSE (0001ms, 2149ms total)
T1700 6475:706 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: FF A9 AA 03 returns 1 (0000ms, 2148ms total)
T0B0C 6475:706 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000588) - Data: 00 returns 0x01 (0001ms, 2149ms total)
T0B0C 6475:708 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007ED) - Data: DC returns 0x01 (0000ms, 2149ms total)
T0B0C 6475:709 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007EE) - Data: 00 returns 0x01 (0000ms, 2149ms total)
T0B0C 6475:710 JLINK_ReadMemEx(0x2000042C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000042C) - Data: 00 00 00 00 returns 0x04 (0000ms, 2149ms total)
T1700 6475:711 JLINK_IsHalted() returns FALSE (0001ms, 2150ms total)
T1700 6475:812 JLINK_IsHalted() returns FALSE (0001ms, 2150ms total)
T1700 6475:913 JLINK_IsHalted() returns FALSE (0001ms, 2150ms total)
T1700 6476:014 JLINK_IsHalted() returns FALSE (0001ms, 2150ms total)
T1700 6476:115 JLINK_IsHalted() returns FALSE (0001ms, 2150ms total)
T1700 6476:216 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: FF A9 AA 03 returns 1 (0000ms, 2149ms total)
T0B0C 6476:218 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000588) - Data: 00 returns 0x01 (0001ms, 2150ms total)
T0B0C 6476:219 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007ED) - Data: DC returns 0x01 (0001ms, 2151ms total)
T0B0C 6476:220 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007EE) - Data: 00 returns 0x01 (0001ms, 2152ms total)
T0B0C 6476:221 JLINK_ReadMemEx(0x2000042C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000042C) - Data: 00 00 00 00 returns 0x04 (0001ms, 2153ms total)
T1700 6476:222 JLINK_IsHalted() returns FALSE (0001ms, 2154ms total)
T1700 6476:323 JLINK_IsHalted() returns FALSE (0001ms, 2154ms total)
T1700 6476:424 JLINK_IsHalted() returns FALSE (0001ms, 2154ms total)
T1700 6476:525 JLINK_IsHalted() returns FALSE (0001ms, 2154ms total)
T1700 6476:626 JLINK_IsHalted() returns FALSE (0001ms, 2154ms total)
T1700 6476:727 JLINK_IsHalted() returns FALSE (0001ms, 2154ms total)
T1700 6476:828 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: FF A9 AA 03 returns 1 (0000ms, 2153ms total)
T0B0C 6476:828 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000588) - Data: 00 returns 0x01 (0001ms, 2154ms total)
T0B0C 6476:830 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007ED) - Data: DC returns 0x01 (0000ms, 2154ms total)
T0B0C 6476:830 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007EE) - Data: 00 returns 0x01 (0001ms, 2155ms total)
T0B0C 6476:831 JLINK_ReadMemEx(0x2000042C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000042C) - Data: 00 00 00 00 returns 0x04 (0001ms, 2156ms total)
T1700 6476:833 JLINK_IsHalted() returns FALSE (0000ms, 2156ms total)
T1700 6476:933 JLINK_IsHalted() returns FALSE (0001ms, 2157ms total)
T1700 6477:034 JLINK_IsHalted() returns FALSE (0001ms, 2157ms total)
T1700 6477:135 JLINK_IsHalted() returns FALSE (0001ms, 2157ms total)
T1700 6477:236 JLINK_IsHalted() returns FALSE (0001ms, 2157ms total)
T1700 6477:337 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: FF A9 AA 03 returns 1 (0000ms, 2156ms total)
T0B0C 6477:338 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000588) - Data: 00 returns 0x01 (0002ms, 2158ms total)
T0B0C 6477:340 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007ED) - Data: DC returns 0x01 (0002ms, 2160ms total)
T0B0C 6477:342 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007EE) - Data: 00 returns 0x01 (0001ms, 2161ms total)
T0B0C 6477:343 JLINK_ReadMemEx(0x2000042C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000042C) - Data: 00 00 00 00 returns 0x04 (0001ms, 2162ms total)
T1700 6477:344 JLINK_IsHalted() returns FALSE (0002ms, 2164ms total)
T1700 6477:446 JLINK_IsHalted() returns FALSE (0001ms, 2163ms total)
T1700 6477:547 JLINK_IsHalted() returns FALSE (0001ms, 2163ms total)
T1700 6477:648 JLINK_IsHalted() returns FALSE (0001ms, 2163ms total)
T1700 6477:749 JLINK_IsHalted() returns FALSE (0001ms, 2163ms total)
T1700 6477:850 JLINK_IsHalted() returns FALSE (0001ms, 2163ms total)
T1700 6477:951 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: FF A9 AA 03 returns 1 (0000ms, 2162ms total)
T0B0C 6477:955 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000588) - Data: 00 returns 0x01 (0001ms, 2163ms total)
T0B0C 6477:956 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007ED) - Data: DC returns 0x01 (0001ms, 2164ms total)
T0B0C 6477:957 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007EE) - Data: 00 returns 0x01 (0001ms, 2165ms total)
T0B0C 6477:958 JLINK_ReadMemEx(0x2000042C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000042C) - Data: 00 00 00 00 returns 0x04 (0001ms, 2166ms total)
T1700 6477:959 JLINK_IsHalted() returns FALSE (0001ms, 2167ms total)
T1700 6478:060 JLINK_IsHalted() returns FALSE (0001ms, 2167ms total)
T1700 6478:161 JLINK_IsHalted() returns FALSE (0001ms, 2167ms total)
T1700 6478:262 JLINK_IsHalted() returns FALSE (0001ms, 2167ms total)
T1700 6478:363 JLINK_IsHalted() returns FALSE (0001ms, 2167ms total)
T1700 6478:464 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: FF A9 AA 03 returns 1 (0000ms, 2166ms total)
T0B0C 6478:464 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000588) - Data: 00 returns 0x01 (0001ms, 2167ms total)
T0B0C 6478:466 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007ED) - Data: DC returns 0x01 (0000ms, 2167ms total)
T0B0C 6478:466 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007EE) - Data: 00 returns 0x01 (0001ms, 2168ms total)
T0B0C 6478:467 JLINK_ReadMemEx(0x2000042C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000042C) - Data: 00 00 00 00 returns 0x04 (0001ms, 2169ms total)
T1700 6478:469 JLINK_IsHalted() returns FALSE (0000ms, 2169ms total)
T1700 6478:569 JLINK_IsHalted() returns FALSE (0001ms, 2170ms total)
T1700 6478:670 JLINK_IsHalted() returns FALSE (0001ms, 2170ms total)
T1700 6478:771 JLINK_IsHalted() returns FALSE (0001ms, 2170ms total)
T1700 6478:872 JLINK_IsHalted() returns FALSE (0001ms, 2170ms total)
T1700 6478:973 JLINK_IsHalted() returns FALSE (0001ms, 2170ms total)
T1700 6479:074 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: FF A9 AA 03 returns 1 (0000ms, 2169ms total)
T0B0C 6479:074 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000588) - Data: 00 returns 0x01 (0001ms, 2170ms total)
T0B0C 6479:075 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007ED) - Data: DC returns 0x01 (0001ms, 2171ms total)
T0B0C 6479:076 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007EE) - Data: 00 returns 0x01 (0001ms, 2172ms total)
T0B0C 6479:077 JLINK_ReadMemEx(0x2000042C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000042C) - Data: 00 00 00 00 returns 0x04 (0001ms, 2173ms total)
T1700 6479:078 JLINK_IsHalted() returns FALSE (0001ms, 2174ms total)
T1700 6479:179 JLINK_IsHalted() returns FALSE (0001ms, 2174ms total)
T1700 6479:280 JLINK_IsHalted() returns FALSE (0001ms, 2174ms total)
T1700 6479:381 JLINK_IsHalted() returns FALSE (0001ms, 2174ms total)
T1700 6479:482 JLINK_IsHalted() returns FALSE (0001ms, 2174ms total)
T1700 6479:583 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: FF A9 AA 03 returns 1 (0000ms, 2173ms total)
T0B0C 6479:588 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000588) - Data: 00 returns 0x01 (0002ms, 2175ms total)
T0B0C 6479:590 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007ED) - Data: DC returns 0x01 (0002ms, 2177ms total)
T0B0C 6479:592 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007EE) - Data: 00 returns 0x01 (0001ms, 2178ms total)
T0B0C 6479:593 JLINK_ReadMemEx(0x2000042C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000042C) - Data: 00 00 00 00 returns 0x04 (0001ms, 2179ms total)
T1700 6479:594 JLINK_IsHalted() returns FALSE (0002ms, 2181ms total)
T1700 6479:696 JLINK_IsHalted() returns FALSE (0001ms, 2180ms total)
T1700 6479:797 JLINK_IsHalted() returns FALSE (0001ms, 2180ms total)
T1700 6479:898 JLINK_IsHalted() returns FALSE (0001ms, 2180ms total)
T1700 6479:999 JLINK_IsHalted() returns FALSE (0001ms, 2180ms total)
T1700 6480:100 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: FF A9 AA 03 returns 1 (0000ms, 2179ms total)
T0B0C 6480:103 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000588) - Data: 00 returns 0x01 (0002ms, 2181ms total)
T0B0C 6480:105 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007ED) - Data: DC returns 0x01 (0001ms, 2182ms total)
T0B0C 6480:106 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007EE) - Data: 00 returns 0x01 (0001ms, 2183ms total)
T0B0C 6480:107 JLINK_ReadMemEx(0x2000042C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000042C) - Data: 00 00 00 00 returns 0x04 (0001ms, 2184ms total)
T1700 6480:109 JLINK_IsHalted() returns FALSE (0001ms, 2185ms total)
T1700 6480:210 JLINK_IsHalted() returns FALSE (0001ms, 2185ms total)
T1700 6480:311 JLINK_IsHalted() returns FALSE (0001ms, 2185ms total)
T1700 6480:412 JLINK_IsHalted() returns FALSE (0001ms, 2185ms total)
T1700 6480:513 JLINK_IsHalted() returns FALSE (0001ms, 2185ms total)
T1700 6480:614 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: FF A9 AA 03 returns 1 (0000ms, 2184ms total)
T0B0C 6480:614 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000588) - Data: 00 returns 0x01 (0001ms, 2185ms total)
T0B0C 6480:616 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007ED) - Data: DC returns 0x01 (0000ms, 2185ms total)
T0B0C 6480:616 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007EE) - Data: 00 returns 0x01 (0001ms, 2186ms total)
T0B0C 6480:617 JLINK_ReadMemEx(0x2000042C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000042C) - Data: 00 00 00 00 returns 0x04 (0001ms, 2187ms total)
T1700 6480:619 JLINK_IsHalted() returns FALSE (0000ms, 2187ms total)
T1700 6480:719 JLINK_IsHalted() returns FALSE (0001ms, 2188ms total)
T1700 6480:820 JLINK_IsHalted() returns FALSE (0001ms, 2188ms total)
T1700 6480:921 JLINK_IsHalted() returns FALSE (0001ms, 2188ms total)
T1700 6481:022 JLINK_IsHalted() returns FALSE (0001ms, 2188ms total)
T1700 6481:123 JLINK_IsHalted() returns FALSE (0001ms, 2188ms total)
T1700 6481:224 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: FF A9 AA 03 returns 1 (0000ms, 2187ms total)
T0B0C 6481:226 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000588) - Data: 00 returns 0x01 (0002ms, 2189ms total)
T0B0C 6481:228 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007ED) - Data: DC returns 0x01 (0001ms, 2190ms total)
T0B0C 6481:229 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007EE) - Data: 00 returns 0x01 (0001ms, 2191ms total)
T0B0C 6481:230 JLINK_ReadMemEx(0x2000042C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000042C) - Data: 00 00 00 00 returns 0x04 (0001ms, 2192ms total)
T1700 6481:231 JLINK_IsHalted() returns FALSE (0001ms, 2193ms total)
T1700 6481:332 JLINK_IsHalted() returns FALSE (0001ms, 2193ms total)
T1700 6481:433 JLINK_IsHalted() returns FALSE (0001ms, 2193ms total)
T1700 6481:534 JLINK_IsHalted() returns FALSE (0001ms, 2193ms total)
T1700 6481:635 JLINK_IsHalted() returns FALSE (0001ms, 2193ms total)
T1700 6481:736 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: FF A9 AA 03 returns 1 (0000ms, 2192ms total)
T0B0C 6481:736 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000588) - Data: 00 returns 0x01 (0001ms, 2193ms total)
T0B0C 6481:737 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007ED) - Data: DC returns 0x01 (0001ms, 2194ms total)
T0B0C 6481:738 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007EE) - Data: 00 returns 0x01 (0001ms, 2195ms total)
T0B0C 6481:739 JLINK_ReadMemEx(0x2000042C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000042C) - Data: 00 00 00 00 returns 0x04 (0001ms, 2196ms total)
T1700 6481:741 JLINK_IsHalted() returns FALSE (0000ms, 2196ms total)
T1700 6481:841 JLINK_IsHalted() returns FALSE (0001ms, 2197ms total)
T1700 6481:942 JLINK_IsHalted() returns FALSE (0001ms, 2197ms total)
T1700 6482:043 JLINK_IsHalted() returns FALSE (0001ms, 2197ms total)
T1700 6482:144 JLINK_IsHalted() returns FALSE (0001ms, 2197ms total)
T1700 6482:245 JLINK_IsHalted() returns FALSE (0001ms, 2197ms total)
T1700 6482:346 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: FF A9 AA 03 returns 1 (0000ms, 2196ms total)
T0B0C 6482:349 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000588) - Data: 00 returns 0x01 (0001ms, 2197ms total)
T0B0C 6482:350 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007ED) - Data: DC returns 0x01 (0001ms, 2198ms total)
T0B0C 6482:351 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007EE) - Data: 00 returns 0x01 (0001ms, 2199ms total)
T0B0C 6482:352 JLINK_ReadMemEx(0x2000042C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000042C) - Data: 00 00 00 00 returns 0x04 (0001ms, 2200ms total)
T1700 6482:353 JLINK_IsHalted() returns FALSE (0001ms, 2201ms total)
T1700 6482:454 JLINK_IsHalted() returns FALSE (0001ms, 2201ms total)
T1700 6482:555 JLINK_IsHalted() returns FALSE (0001ms, 2201ms total)
T1700 6482:656 JLINK_IsHalted() returns FALSE (0001ms, 2201ms total)
T1700 6482:757 JLINK_IsHalted() returns FALSE (0001ms, 2201ms total)
T1700 6482:858 JLINK_IsHalted() returns FALSE (0003ms, 2203ms total)
T1700 6482:961 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: FF A9 AA 03 returns 1 (0000ms, 2200ms total)
T0B0C 6482:961 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000588) - Data: 00 returns 0x01 (0001ms, 2201ms total)
T0B0C 6482:962 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007ED) - Data: DC returns 0x01 (0001ms, 2202ms total)
T0B0C 6482:963 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007EE) - Data: 00 returns 0x01 (0001ms, 2203ms total)
T0B0C 6482:964 JLINK_ReadMemEx(0x2000042C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000042C) - Data: 00 00 00 00 returns 0x04 (0001ms, 2204ms total)
T1700 6482:965 JLINK_IsHalted() returns FALSE (0001ms, 2205ms total)
T1700 6483:066 JLINK_IsHalted() returns FALSE (0001ms, 2205ms total)
T1700 6483:167 JLINK_IsHalted() returns FALSE (0001ms, 2205ms total)
T1700 6483:268 JLINK_IsHalted() returns FALSE (0001ms, 2205ms total)
T1700 6483:369 JLINK_IsHalted() returns FALSE (0001ms, 2205ms total)
T1700 6483:470 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: FF A9 AA 03 returns 1 (0000ms, 2204ms total)
T0B0C 6483:472 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000588) - Data: 00 returns 0x01 (0002ms, 2206ms total)
T0B0C 6483:474 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007ED) - Data: DC returns 0x01 (0001ms, 2207ms total)
T0B0C 6483:475 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007EE) - Data: 00 returns 0x01 (0001ms, 2208ms total)
T0B0C 6483:476 JLINK_ReadMemEx(0x2000042C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000042C) - Data: 00 00 00 00 returns 0x04 (0001ms, 2209ms total)
T1700 6483:477 JLINK_IsHalted() returns FALSE (0001ms, 2210ms total)
T1700 6483:578 JLINK_IsHalted() returns FALSE (0001ms, 2210ms total)
T1700 6483:679 JLINK_IsHalted() returns FALSE (0001ms, 2210ms total)
T1700 6483:780 JLINK_IsHalted() returns FALSE (0001ms, 2210ms total)
T1700 6483:881 JLINK_IsHalted() returns FALSE (0001ms, 2210ms total)
T1700 6483:982 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: FF A9 AA 03 returns 1 (0000ms, 2209ms total)
T0B0C 6483:982 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000588) - Data: 00 returns 0x01 (0002ms, 2211ms total)
T0B0C 6483:984 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007ED) - Data: DC returns 0x01 (0001ms, 2212ms total)
T0B0C 6483:985 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007EE) - Data: 00 returns 0x01 (0001ms, 2213ms total)
T0B0C 6483:986 JLINK_ReadMemEx(0x2000042C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000042C) - Data: 00 00 00 00 returns 0x04 (0001ms, 2214ms total)
T1700 6483:987 JLINK_IsHalted() returns FALSE (0001ms, 2215ms total)
T1700 6484:088 JLINK_IsHalted() returns FALSE (0001ms, 2215ms total)
T1700 6484:189 JLINK_IsHalted() returns FALSE (0001ms, 2215ms total)
T1700 6484:290 JLINK_IsHalted() returns FALSE (0001ms, 2215ms total)
T1700 6484:391 JLINK_IsHalted() returns FALSE (0001ms, 2215ms total)
T1700 6484:492 JLINK_IsHalted() returns FALSE (0001ms, 2215ms total)
T1700 6484:593 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: FF A9 AA 03 returns 1 (0000ms, 2214ms total)
T0B0C 6484:593 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000588) - Data: 00 returns 0x01 (0001ms, 2215ms total)
T0B0C 6484:595 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007ED) - Data: DC returns 0x01 (0001ms, 2216ms total)
T0B0C 6484:596 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007EE) - Data: 00 returns 0x01 (0000ms, 2216ms total)
T0B0C 6484:597 JLINK_ReadMemEx(0x2000042C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000042C) - Data: 00 00 00 00 returns 0x04 (0000ms, 2216ms total)
T1700 6484:598 JLINK_IsHalted() returns FALSE (0002ms, 2218ms total)
T1700 6484:700 JLINK_IsHalted() returns FALSE (0001ms, 2217ms total)
T1700 6484:801 JLINK_IsHalted() returns FALSE (0001ms, 2217ms total)
T1700 6484:902 JLINK_IsHalted() returns FALSE (0001ms, 2217ms total)
T1700 6485:003 JLINK_IsHalted() returns FALSE (0001ms, 2217ms total)
T1700 6485:104 JLINK_IsHalted() returns FALSE (0001ms, 2217ms total)
T1700 6485:205 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: FF A9 AA 03 returns 1 (0000ms, 2216ms total)
T0B0C 6485:205 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000588) - Data: 00 returns 0x01 (0002ms, 2218ms total)
T0B0C 6485:207 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007ED) - Data: DC returns 0x01 (0002ms, 2220ms total)
T0B0C 6485:209 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007EE) - Data: 00 returns 0x01 (0001ms, 2221ms total)
T0B0C 6485:210 JLINK_ReadMemEx(0x2000042C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000042C) - Data: 00 00 00 00 returns 0x04 (0001ms, 2222ms total)
T1700 6485:211 JLINK_IsHalted() returns FALSE (0002ms, 2224ms total)
T1700 6485:313 JLINK_IsHalted() returns FALSE (0001ms, 2223ms total)
T1700 6485:414 JLINK_IsHalted() returns FALSE (0001ms, 2223ms total)
T1700 6485:515 JLINK_IsHalted() returns FALSE (0001ms, 2223ms total)
T1700 6485:616 JLINK_IsHalted() returns FALSE (0001ms, 2223ms total)
T1700 6485:717 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: FF A9 AA 03 returns 1 (0000ms, 2222ms total)
T0B0C 6485:717 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000588) - Data: 00 returns 0x01 (0001ms, 2223ms total)
T0B0C 6485:719 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007ED) - Data: DC returns 0x01 (0000ms, 2223ms total)
T0B0C 6485:719 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007EE) - Data: 00 returns 0x01 (0001ms, 2224ms total)
T0B0C 6485:720 JLINK_ReadMemEx(0x2000042C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000042C) - Data: 00 00 00 00 returns 0x04 (0001ms, 2225ms total)
T1700 6485:722 JLINK_IsHalted() returns FALSE (0001ms, 2226ms total)
T1700 6485:823 JLINK_IsHalted() returns FALSE (0001ms, 2226ms total)
T1700 6485:924 JLINK_IsHalted() returns FALSE (0001ms, 2226ms total)
T1700 6486:025 JLINK_IsHalted() returns FALSE (0001ms, 2226ms total)
T1700 6486:126 JLINK_IsHalted() returns FALSE (0001ms, 2226ms total)
T1700 6486:227 JLINK_IsHalted() returns FALSE (0002ms, 2227ms total)
T1700 6486:329 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: FF A9 AA 03 returns 1 (0000ms, 2225ms total)
T0B0C 6486:329 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000588) - Data: 00 returns 0x01 (0002ms, 2227ms total)
T0B0C 6486:332 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007ED) - Data: DC returns 0x01 (0001ms, 2228ms total)
T0B0C 6486:333 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007EE) - Data: 00 returns 0x01 (0001ms, 2229ms total)
T0B0C 6486:334 JLINK_ReadMemEx(0x2000042C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000042C) - Data: 00 00 00 00 returns 0x04 (0001ms, 2230ms total)
T1700 6486:336 JLINK_IsHalted() returns FALSE (0001ms, 2231ms total)
T1700 6486:437 JLINK_IsHalted() returns FALSE (0001ms, 2231ms total)
T1700 6486:538 JLINK_IsHalted() returns FALSE (0001ms, 2231ms total)
T1700 6486:639 JLINK_IsHalted() returns FALSE (0001ms, 2231ms total)
T1700 6486:740 JLINK_IsHalted() returns FALSE (0001ms, 2231ms total)
T1700 6486:841 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: FF A9 AA 03 returns 1 (0000ms, 2230ms total)
T0B0C 6486:842 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000588) - Data: 00 returns 0x01 (0001ms, 2231ms total)
T0B0C 6486:844 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007ED) - Data: DC returns 0x01 (0000ms, 2231ms total)
T0B0C 6486:844 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007EE) - Data: 00 returns 0x01 (0001ms, 2232ms total)
T0B0C 6486:845 JLINK_ReadMemEx(0x2000042C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000042C) - Data: 00 00 00 00 returns 0x04 (0001ms, 2233ms total)
T1700 6486:847 JLINK_IsHalted() returns FALSE (0000ms, 2233ms total)
T1700 6486:947 JLINK_IsHalted() returns FALSE (0001ms, 2234ms total)
T1700 6487:048 JLINK_IsHalted() returns FALSE (0001ms, 2234ms total)
T1700 6487:149 JLINK_IsHalted() returns FALSE (0001ms, 2234ms total)
T1700 6487:250 JLINK_IsHalted() returns FALSE (0001ms, 2234ms total)
T1700 6487:351 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: FF A9 AA 03 returns 1 (0000ms, 2233ms total)
T0B0C 6487:351 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000588) - Data: 00 returns 0x01 (0001ms, 2234ms total)
T0B0C 6487:352 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007ED) - Data: DC returns 0x01 (0001ms, 2235ms total)
T0B0C 6487:353 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007EE) - Data: 00 returns 0x01 (0001ms, 2236ms total)
T0B0C 6487:354 JLINK_ReadMemEx(0x2000042C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000042C) - Data: 00 00 00 00 returns 0x04 (0001ms, 2237ms total)
T1700 6487:356 JLINK_IsHalted() returns FALSE (0001ms, 2238ms total)
T1700 6487:457 JLINK_IsHalted() returns FALSE (0001ms, 2238ms total)
T1700 6487:558 JLINK_IsHalted() returns FALSE (0001ms, 2238ms total)
T1700 6487:659 JLINK_IsHalted() returns FALSE (0001ms, 2238ms total)
T1700 6487:760 JLINK_IsHalted() returns FALSE (0001ms, 2238ms total)
T1700 6487:861 JLINK_IsHalted() returns FALSE (0001ms, 2238ms total)
T1700 6487:962 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: FF A9 AA 03 returns 1 (0000ms, 2237ms total)
T0B0C 6487:962 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000588) - Data: 00 returns 0x01 (0001ms, 2238ms total)
T0B0C 6487:964 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007ED) - Data: DC returns 0x01 (0000ms, 2238ms total)
T0B0C 6487:964 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007EE) - Data: 00 returns 0x01 (0001ms, 2239ms total)
T0B0C 6487:965 JLINK_ReadMemEx(0x2000042C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000042C) - Data: 00 00 00 00 returns 0x04 (0001ms, 2240ms total)
T1700 6487:967 JLINK_IsHalted() returns FALSE (0000ms, 2240ms total)
T1700 6488:067 JLINK_IsHalted() returns FALSE (0001ms, 2241ms total)
T1700 6488:168 JLINK_IsHalted() returns FALSE (0001ms, 2241ms total)
T1700 6488:269 JLINK_IsHalted() returns FALSE (0001ms, 2241ms total)
T1700 6488:370 JLINK_IsHalted() returns FALSE (0001ms, 2241ms total)
T1700 6488:471 JLINK_IsHalted() returns FALSE (0001ms, 2241ms total)
T1700 6488:572 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: FF A9 AA 03 returns 1 (0000ms, 2240ms total)
T0B0C 6488:579 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000588) - Data: 00 returns 0x01 (0002ms, 2242ms total)
T0B0C 6488:581 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007ED) - Data: DC returns 0x01 (0002ms, 2244ms total)
T0B0C 6488:583 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007EE) - Data: 00 returns 0x01 (0001ms, 2245ms total)
T0B0C 6488:584 JLINK_ReadMemEx(0x2000042C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000042C) - Data: 00 00 00 00 returns 0x04 (0001ms, 2246ms total)
T1700 6488:586 JLINK_IsHalted() returns FALSE (0001ms, 2247ms total)
T1700 6488:687 JLINK_IsHalted() returns FALSE (0001ms, 2247ms total)
T1700 6488:788 JLINK_IsHalted() returns FALSE (0001ms, 2247ms total)
T1700 6488:889 JLINK_IsHalted() returns FALSE (0001ms, 2247ms total)
T1700 6488:990 JLINK_IsHalted() returns FALSE (0001ms, 2247ms total)
T1700 6489:091 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: FF A9 AA 03 returns 1 (0000ms, 2246ms total)
T0B0C 6489:091 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000588) - Data: 00 returns 0x01 (0002ms, 2248ms total)
T0B0C 6489:093 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007ED) - Data: DC returns 0x01 (0002ms, 2250ms total)
T0B0C 6489:095 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007EE) - Data: 00 returns 0x01 (0001ms, 2251ms total)
T0B0C 6489:096 JLINK_ReadMemEx(0x2000042C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000042C) - Data: 00 00 00 00 returns 0x04 (0001ms, 2252ms total)
T1700 6489:097 JLINK_IsHalted() returns FALSE (0002ms, 2254ms total)
T1700 6489:199 JLINK_IsHalted() returns FALSE (0001ms, 2253ms total)
T1700 6489:300 JLINK_IsHalted() returns FALSE (0001ms, 2253ms total)
T1700 6489:401 JLINK_IsHalted() returns FALSE (0001ms, 2253ms total)
T1700 6489:502 JLINK_IsHalted() returns FALSE (0001ms, 2253ms total)
T1700 6489:603 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: FF A9 AA 03 returns 1 (0000ms, 2252ms total)
T0B0C 6489:607 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000588) - Data: 00 returns 0x01 (0001ms, 2253ms total)
T0B0C 6489:609 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007ED) - Data: DC returns 0x01 (0001ms, 2254ms total)
T0B0C 6489:610 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007EE) - Data: 00 returns 0x01 (0001ms, 2255ms total)
T0B0C 6489:611 JLINK_ReadMemEx(0x2000042C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000042C) - Data: 00 00 00 00 returns 0x04 (0001ms, 2256ms total)
T1700 6489:613 JLINK_IsHalted() returns FALSE (0001ms, 2257ms total)
T1700 6489:714 JLINK_IsHalted() returns FALSE (0001ms, 2257ms total)
T1700 6489:815 JLINK_IsHalted() returns FALSE (0001ms, 2257ms total)
T1700 6489:916 JLINK_IsHalted() returns FALSE (0001ms, 2257ms total)
T1700 6490:017 JLINK_IsHalted() returns FALSE (0001ms, 2257ms total)
T1700 6490:118 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: FF A9 AA 03 returns 1 (0000ms, 2256ms total)
T0B0C 6490:122 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000588) - Data: 00 returns 0x01 (0001ms, 2257ms total)
T0B0C 6490:123 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007ED) - Data: DC returns 0x01 (0001ms, 2258ms total)
T0B0C 6490:124 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007EE) - Data: 00 returns 0x01 (0001ms, 2259ms total)
T0B0C 6490:125 JLINK_ReadMemEx(0x2000042C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000042C) - Data: 00 00 00 00 returns 0x04 (0001ms, 2260ms total)
T1700 6490:127 JLINK_IsHalted() returns FALSE (0001ms, 2261ms total)
T1700 6490:228 JLINK_IsHalted() returns FALSE (0001ms, 2261ms total)
T1700 6490:329 JLINK_IsHalted() returns FALSE (0001ms, 2261ms total)
T1700 6490:430 JLINK_IsHalted() returns FALSE (0001ms, 2261ms total)
T1700 6490:531 JLINK_IsHalted() returns FALSE (0001ms, 2261ms total)
T1700 6490:632 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: FF A9 AA 03 returns 1 (0000ms, 2260ms total)
T0B0C 6490:632 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000588) - Data: 00 returns 0x01 (0001ms, 2261ms total)
T0B0C 6490:633 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007ED) - Data: DC returns 0x01 (0001ms, 2262ms total)
T0B0C 6490:634 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007EE) - Data: 00 returns 0x01 (0001ms, 2263ms total)
T0B0C 6490:635 JLINK_ReadMemEx(0x2000042C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000042C) - Data: 00 00 00 00 returns 0x04 (0001ms, 2264ms total)
T1700 6490:637 JLINK_IsHalted() returns FALSE (0000ms, 2264ms total)
T1700 6490:737 JLINK_IsHalted() returns FALSE (0001ms, 2265ms total)
T1700 6490:838 JLINK_IsHalted() returns FALSE (0001ms, 2265ms total)
T1700 6490:939 JLINK_IsHalted() returns FALSE (0001ms, 2265ms total)
T1700 6491:040 JLINK_IsHalted() returns FALSE (0001ms, 2265ms total)
T1700 6491:141 JLINK_IsHalted() returns FALSE (0001ms, 2265ms total)
T1700 6491:242 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: FF A9 AA 03 returns 1 (0000ms, 2264ms total)
T0B0C 6491:242 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000588) - Data: 00 returns 0x01 (0002ms, 2266ms total)
T0B0C 6491:244 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007ED) - Data: DC returns 0x01 (0001ms, 2267ms total)
T0B0C 6491:245 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007EE) - Data: 00 returns 0x01 (0001ms, 2268ms total)
T0B0C 6491:246 JLINK_ReadMemEx(0x2000042C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000042C) - Data: 00 00 00 00 returns 0x04 (0002ms, 2270ms total)
T1700 6491:248 JLINK_IsHalted() returns FALSE (0000ms, 2270ms total)
T1700 6491:348 JLINK_IsHalted() returns FALSE (0001ms, 2271ms total)
T1700 6491:449 JLINK_IsHalted() returns FALSE (0001ms, 2271ms total)
T1700 6491:550 JLINK_IsHalted() returns FALSE (0001ms, 2271ms total)
T1700 6491:651 JLINK_IsHalted() returns FALSE (0001ms, 2271ms total)
T1700 6491:752 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: FF A9 AA 03 returns 1 (0000ms, 2270ms total)
T0B0C 6491:756 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000588) - Data: 00 returns 0x01 (0002ms, 2272ms total)
T0B0C 6491:758 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007ED) - Data: DC returns 0x01 (0001ms, 2273ms total)
T0B0C 6491:759 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007EE) - Data: 00 returns 0x01 (0001ms, 2274ms total)
T0B0C 6491:760 JLINK_ReadMemEx(0x2000042C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000042C) - Data: 00 00 00 00 returns 0x04 (0001ms, 2275ms total)
T1700 6491:761 JLINK_IsHalted() returns FALSE (0002ms, 2277ms total)
T1700 6491:863 JLINK_IsHalted() returns FALSE (0001ms, 2276ms total)
T1700 6491:964 JLINK_IsHalted() returns FALSE (0001ms, 2276ms total)
T1700 6492:065 JLINK_IsHalted() returns FALSE (0001ms, 2276ms total)
T1700 6492:166 JLINK_IsHalted() returns FALSE (0001ms, 2276ms total)
T1700 6492:267 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: FF A9 AA 03 returns 1 (0000ms, 2275ms total)
T0B0C 6492:267 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000588) - Data: 00 returns 0x01 (0002ms, 2277ms total)
T0B0C 6492:269 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007ED) - Data: DC returns 0x01 (0002ms, 2279ms total)
T0B0C 6492:271 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007EE) - Data: 00 returns 0x01 (0001ms, 2280ms total)
T0B0C 6492:272 JLINK_ReadMemEx(0x2000042C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000042C) - Data: 00 00 00 00 returns 0x04 (0001ms, 2281ms total)
T1700 6492:273 JLINK_IsHalted() returns FALSE (0002ms, 2283ms total)
T1700 6492:375 JLINK_IsHalted() returns FALSE (0001ms, 2282ms total)
T1700 6492:476 JLINK_IsHalted() returns FALSE (0001ms, 2282ms total)
T1700 6492:577 JLINK_IsHalted() returns FALSE (0001ms, 2282ms total)
T1700 6492:678 JLINK_IsHalted() returns FALSE (0001ms, 2282ms total)
T1700 6492:779 JLINK_IsHalted() returns FALSE (0001ms, 2282ms total)
T1700 6492:880 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: FF A9 AA 03 returns 1 (0000ms, 2281ms total)
T0B0C 6492:880 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000588) - Data: 00 returns 0x01 (0001ms, 2282ms total)
T0B0C 6492:881 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007ED) - Data: DC returns 0x01 (0001ms, 2283ms total)
T0B0C 6492:882 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007EE) - Data: 00 returns 0x01 (0001ms, 2284ms total)
T0B0C 6492:883 JLINK_ReadMemEx(0x2000042C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000042C) - Data: 00 00 00 00 returns 0x04 (0001ms, 2285ms total)
T1700 6492:884 JLINK_IsHalted() returns FALSE (0001ms, 2286ms total)
T1700 6492:985 JLINK_IsHalted() returns FALSE (0001ms, 2286ms total)
T1700 6493:086 JLINK_IsHalted() returns FALSE (0001ms, 2286ms total)
T1700 6493:187 JLINK_IsHalted() returns FALSE (0001ms, 2286ms total)
T1700 6493:288 JLINK_IsHalted() returns FALSE (0001ms, 2286ms total)
T1700 6493:389 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: FF A9 AA 03 returns 1 (0000ms, 2285ms total)
T0B0C 6493:389 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000588) - Data: AA returns 0xFFFFFFFF (0003ms, 2288ms total)
T0B0C 6493:392 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000588) - Data: AA returns 0xFFFFFFFF (0002ms, 2290ms total)
T0B0C 6493:394 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000588) - Data: AA returns 0xFFFFFFFF (0002ms, 2292ms total)
T0B0C 6493:396 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000588) - Data: AA returns 0xFFFFFFFF (0003ms, 2295ms total)
T0B0C 6493:399 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000588) - Data: AA returns 0xFFFFFFFF (0002ms, 2297ms total)
T0B0C 6493:401 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000588) - Data: AA returns 0xFFFFFFFF (0003ms, 2300ms total)
T0B0C 6493:404 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007ED) - Data: AA returns 0xFFFFFFFF (0003ms, 2303ms total)
T0B0C 6493:407 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007ED) - Data: AA returns 0xFFFFFFFF (0002ms, 2305ms total)
T0B0C 6493:409 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007ED) - Data: AA returns 0xFFFFFFFF (0002ms, 2307ms total)
T0B0C 6493:411 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007ED) - Data: AA returns 0xFFFFFFFF (0003ms, 2310ms total)
T0B0C 6493:414 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007ED) - Data: AA returns 0xFFFFFFFF (0003ms, 2313ms total)
T0B0C 6493:417 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007ED) - Data: AA returns 0xFFFFFFFF (0003ms, 2316ms total)
T0B0C 6493:420 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007EE) - Data: AA returns 0xFFFFFFFF (0003ms, 2319ms total)
T0B0C 6493:423 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007EE) - Data: AA returns 0xFFFFFFFF (0002ms, 2321ms total)
T0B0C 6493:425 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007EE) - Data: AA returns 0xFFFFFFFF (0003ms, 2324ms total)
T0B0C 6493:428 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007EE) - Data: AA returns 0xFFFFFFFF (0002ms, 2326ms total)
T0B0C 6493:430 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007EE) - Data: AA returns 0xFFFFFFFF (0003ms, 2329ms total)
T0B0C 6493:433 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007EE) - Data: AA returns 0xFFFFFFFF (0002ms, 2331ms total)
T0B0C 6493:435 JLINK_ReadMemEx(0x2000042C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000042C) - Data: AA AA AA AA returns 0xFFFFFFFF (0003ms, 2334ms total)
T0B0C 6493:438 JLINK_ReadMemEx(0x2000042C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000042C) - Data: AA AA AA AA returns 0xFFFFFFFF (0002ms, 2336ms total)
T0B0C 6493:440 JLINK_ReadMemEx(0x2000042C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000042C) - Data: AA AA AA AA returns 0xFFFFFFFF (0002ms, 2338ms total)
T0B0C 6493:442 JLINK_ReadMemEx(0x2000042C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000042C) - Data: AA AA AA AA returns 0xFFFFFFFF (0002ms, 2340ms total)
T0B0C 6493:444 JLINK_ReadMemEx(0x2000042C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000042C) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2342ms total)
T0B0C 6493:446 JLINK_ReadMemEx(0x2000042C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000042C) - Data: AA returns 0xFFFFFFFF (0002ms, 2344ms total)
T1700 6493:448 JLINK_IsHalted() returns ERROR (0002ms, 2346ms total)
T1700 6493:451 JLINK_Halt()CPU could not be halted returns 0x01 (0006ms, 2350ms total)
T1700 6493:457 JLINK_IsHalted() returns ERROR (0002ms, 2352ms total)
T1700 6493:459 JLINK_IsHalted() returns ERROR (0002ms, 2352ms total)
T1700 6493:461 JLINK_IsHalted() returns ERROR (0002ms, 2352ms total)
T1700 6493:463 JLINK_ReadReg(R15 (PC)) -- CPU is running
***** Error: Can not read register 15 (R15) while CPU is running returns 0x00000000 (0003ms, 2353ms total)
T1700 6493:466 JLINK_ReadReg(XPSR) -- CPU is running
***** Error: Can not read register 16 (XPSR) while CPU is running returns 0x00000000 (0002ms, 2355ms total)
T1700 6493:468 JLINK_ClrBPEx(BPHandle = 0x00000005) -- CPU is running -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU is running
-- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002014) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002018) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000201C) returns 0x00 (0020ms, 2375ms total)
T1700 6493:488 JLINK_ClrBPEx(BPHandle = 0x00000006) -- CPU is running -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002014) -- CPU is running
-- CPU_WriteMem(4 bytes @ 0xE0002018) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000201C) returns 0x00 (0011ms, 2386ms total)
T1700 6493:499 JLINK_ClrBPEx(BPHandle = 0x00000007) -- CPU is running -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002014) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002018) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000201C) returns 0x00 (0008ms, 2394ms total)
T1700 6493:507 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) returns -1 (0002ms, 2396ms total)
T1700 6493:509 JLINK_ReadReg(R0) -- CPU is running
***** Error: Can not read register 0 (R0) while CPU is running returns 0x00000000 (0003ms, 2399ms total)
T1700 6493:512 JLINK_ReadReg(R1) -- CPU is running
***** Error: Can not read register 1 (R1) while CPU is running returns 0x00000000 (0002ms, 2401ms total)
T1700 6493:514 JLINK_ReadReg(R2) -- CPU is running
***** Error: Can not read register 2 (R2) while CPU is running returns 0x00000000 (0002ms, 2403ms total)
T1700 6493:517 JLINK_ReadReg(R3) -- CPU is running
***** Error: Can not read register 3 (R3) while CPU is running returns 0x00000000 (0002ms, 2405ms total)
T1700 6493:524 JLINK_ReadReg(R4) -- CPU is running
***** Error: Can not read register 4 (R4) while CPU is running returns 0x00000000 (0002ms, 2407ms total)
T1700 6493:526 JLINK_ReadReg(R5) -- CPU is running
***** Error: Can not read register 5 (R5) while CPU is running returns 0x00000000 (0003ms, 2410ms total)
T1700 6493:529 JLINK_ReadReg(R6) -- CPU is running
***** Error: Can not read register 6 (R6) while CPU is running returns 0x00000000 (0002ms, 2412ms total)
T1700 6493:531 JLINK_ReadReg(R7) -- CPU is running
***** Error: Can not read register 7 (R7) while CPU is running returns 0x00000000 (0003ms, 2415ms total)
T1700 6493:535 JLINK_ReadReg(R8) -- CPU is running
***** Error: Can not read register 8 (R8) while CPU is running returns 0x00000000 (0002ms, 2417ms total)
T1700 6493:540 JLINK_ReadReg(R9) -- CPU is running
***** Error: Can not read register 9 (R9) while CPU is running returns 0x00000000 (0002ms, 2419ms total)
T1700 6493:543 JLINK_ReadReg(R10) -- CPU is running
***** Error: Can not read register 10 (R10) while CPU is running returns 0x00000000 (0002ms, 2421ms total)
T1700 6493:545 JLINK_ReadReg(R11) -- CPU is running
***** Error: Can not read register 11 (R11) while CPU is running returns 0x00000000 (0002ms, 2423ms total)
T1700 6493:548 JLINK_ReadReg(R12) -- CPU is running
***** Error: Can not read register 12 (R12) while CPU is running returns 0x00000000 (0002ms, 2425ms total)
T1700 6493:550 JLINK_ReadReg(R13 (SP)) -- CPU is running
***** Error: Can not read register 13 (R13) while CPU is running returns 0x00000000 (0002ms, 2427ms total)
T1700 6493:553 JLINK_ReadReg(R14) -- CPU is running
***** Error: Can not read register 14 (R14) while CPU is running returns 0x00000000 (0002ms, 2429ms total)
T1700 6493:561 JLINK_ReadReg(R15 (PC)) -- CPU is running
***** Error: Can not read register 15 (R15) while CPU is running returns 0x00000000 (0002ms, 2431ms total)
T1700 6493:567 JLINK_ReadReg(XPSR) -- CPU is running
***** Error: Can not read register 16 (XPSR) while CPU is running returns 0x00000000 (0002ms, 2433ms total)
T1700 6493:569 JLINK_ReadReg(MSP) -- CPU is running
***** Error: Can not read register 17 (MSP) while CPU is running returns 0x00000000 (0003ms, 2436ms total)
T1700 6493:572 JLINK_ReadReg(PSP) -- CPU is running
***** Error: Can not read register 18 (PSP) while CPU is running returns 0x00000000 (0002ms, 2438ms total)
T1700 6493:574 JLINK_ReadReg(CFBP) -- CPU is running
***** Error: Can not read register 20 (CFBP) while CPU is running returns 0x00000000 (0003ms, 2441ms total)
T1700 6493:577 JLINK_ReadReg(FPSCR) -- CPU is running
***** Error: Can not read register 32 (FPSCR) while CPU is running returns 0x00000000 (0002ms, 2443ms total)
T1700 6493:579 JLINK_ReadReg(FPS0) -- CPU is running
***** Error: Can not read register 33 (FPS0) while CPU is running returns 0x00000000 (0002ms, 2445ms total)
T1700 6493:587 JLINK_ReadReg(FPS1) -- CPU is running
***** Error: Can not read register 34 (FPS1) while CPU is running returns 0x00000000 (0002ms, 2447ms total)
T1700 6493:589 JLINK_ReadReg(FPS2) -- CPU is running
***** Error: Can not read register 35 (FPS2) while CPU is running returns 0x00000000 (0003ms, 2450ms total)
T1700 6493:596 JLINK_ReadReg(FPS3) -- CPU is running
***** Error: Can not read register 36 (FPS3) while CPU is running returns 0x00000000 (0002ms, 2452ms total)
T1700 6493:599 JLINK_ReadReg(FPS4) -- CPU is running
***** Error: Can not read register 37 (FPS4) while CPU is running returns 0x00000000 (0002ms, 2454ms total)
T1700 6493:601 JLINK_ReadReg(FPS5) -- CPU is running
***** Error: Can not read register 38 (FPS5) while CPU is running returns 0x00000000 (0002ms, 2456ms total)
T1700 6493:604 JLINK_ReadReg(FPS6) -- CPU is running
***** Error: Can not read register 39 (FPS6) while CPU is running returns 0x00000000 (0002ms, 2458ms total)
T1700 6493:606 JLINK_ReadReg(FPS7) -- CPU is running
***** Error: Can not read register 40 (FPS7) while CPU is running returns 0x00000000 (0002ms, 2460ms total)
T1700 6493:609 JLINK_ReadReg(FPS8) -- CPU is running
***** Error: Can not read register 41 (FPS8) while CPU is running returns 0x00000000 (0002ms, 2462ms total)
T1700 6493:615 JLINK_ReadReg(FPS9) -- CPU is running
***** Error: Can not read register 42 (FPS9) while CPU is running returns 0x00000000 (0003ms, 2465ms total)
T1700 6493:618 JLINK_ReadReg(FPS10) -- CPU is running
***** Error: Can not read register 43 (FPS10) while CPU is running returns 0x00000000 (0002ms, 2467ms total)
T1700 6493:620 JLINK_ReadReg(FPS11) -- CPU is running
***** Error: Can not read register 44 (FPS11) while CPU is running returns 0x00000000 (0003ms, 2470ms total)
T1700 6493:623 JLINK_ReadReg(FPS12) -- CPU is running
***** Error: Can not read register 45 (FPS12) while CPU is running returns 0x00000000 (0002ms, 2472ms total)
T1700 6493:626 JLINK_ReadReg(FPS13) -- CPU is running
***** Error: Can not read register 46 (FPS13) while CPU is running returns 0x00000000 (0002ms, 2474ms total)
T1700 6493:631 JLINK_ReadReg(FPS14) -- CPU is running
***** Error: Can not read register 47 (FPS14) while CPU is running returns 0x00000000 (0002ms, 2476ms total)
T1700 6493:634 JLINK_ReadReg(FPS15) -- CPU is running
***** Error: Can not read register 48 (FPS15) while CPU is running returns 0x00000000 (0002ms, 2478ms total)
T1700 6493:636 JLINK_ReadReg(FPS16) -- CPU is running
***** Error: Can not read register 49 (FPS16) while CPU is running returns 0x00000000 (0002ms, 2480ms total)
T1700 6493:639 JLINK_ReadReg(FPS17) -- CPU is running
***** Error: Can not read register 50 (FPS17) while CPU is running returns 0x00000000 (0002ms, 2482ms total)
T1700 6493:641 JLINK_ReadReg(FPS18) -- CPU is running
***** Error: Can not read register 51 (FPS18) while CPU is running returns 0x00000000 (0002ms, 2484ms total)
T1700 6493:644 JLINK_ReadReg(FPS19) -- CPU is running
***** Error: Can not read register 52 (FPS19) while CPU is running returns 0x00000000 (0002ms, 2486ms total)
T1700 6493:651 JLINK_ReadReg(FPS20) -- CPU is running
***** Error: Can not read register 53 (FPS20) while CPU is running returns 0x00000000 (0002ms, 2488ms total)
T1700 6493:653 JLINK_ReadReg(FPS21) -- CPU is running
***** Error: Can not read register 54 (FPS21) while CPU is running returns 0x00000000 (0002ms, 2490ms total)
T1700 6493:660 JLINK_ReadReg(FPS22) -- CPU is running
***** Error: Can not read register 55 (FPS22) while CPU is running returns 0x00000000 (0003ms, 2493ms total)
T1700 6493:663 JLINK_ReadReg(FPS23) -- CPU is running
***** Error: Can not read register 56 (FPS23) while CPU is running returns 0x00000000 (0002ms, 2495ms total)
T1700 6493:665 JLINK_ReadReg(FPS24) -- CPU is running
***** Error: Can not read register 57 (FPS24) while CPU is running returns 0x00000000 (0002ms, 2497ms total)
T1700 6493:668 JLINK_ReadReg(FPS25) -- CPU is running
***** Error: Can not read register 58 (FPS25) while CPU is running returns 0x00000000 (0002ms, 2499ms total)
T1700 6493:670 JLINK_ReadReg(FPS26) -- CPU is running
***** Error: Can not read register 59 (FPS26) while CPU is running returns 0x00000000 (0002ms, 2501ms total)
T1700 6493:673 JLINK_ReadReg(FPS27) -- CPU is running
***** Error: Can not read register 60 (FPS27) while CPU is running returns 0x00000000 (0002ms, 2503ms total)
T1700 6493:679 JLINK_ReadReg(FPS28) -- CPU is running
***** Error: Can not read register 61 (FPS28) while CPU is running returns 0x00000000 (0002ms, 2505ms total)
T1700 6493:682 JLINK_ReadReg(FPS29) -- CPU is running
***** Error: Can not read register 62 (FPS29) while CPU is running returns 0x00000000 (0002ms, 2507ms total)
T1700 6493:684 JLINK_ReadReg(FPS30) -- CPU is running
***** Error: Can not read register 63 (FPS30) while CPU is running returns 0x00000000 (0002ms, 2509ms total)
T1700 6493:691 JLINK_ReadReg(FPS31) -- CPU is running
***** Error: Can not read register 64 (FPS31) while CPU is running returns 0x00000000 (0002ms, 2511ms total)
T0B0C 6493:696 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001004) - Data: 00 00 00 00 returns 1 (0003ms, 2514ms total)
T0B0C 6493:699 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000588) - Data: AA returns 0xFFFFFFFF (0003ms, 2517ms total)
T0B0C 6493:702 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000588) - Data: AA returns 0xFFFFFFFF (0003ms, 2520ms total)
T0B0C 6493:705 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000588) - Data: AA returns 0xFFFFFFFF (0002ms, 2522ms total)
T0B0C 6493:707 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000588) - Data: AA returns 0xFFFFFFFF (0002ms, 2524ms total)
T0B0C 6493:709 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000588) - Data: AA returns 0xFFFFFFFF (0002ms, 2526ms total)
T0B0C 6493:711 JLINK_ReadMemEx(0x20000588, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000588) - Data: AA returns 0xFFFFFFFF (0003ms, 2529ms total)
T0B0C 6493:714 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007ED) - Data: AA returns 0xFFFFFFFF (0003ms, 2532ms total)
T0B0C 6493:717 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007ED) - Data: AA returns 0xFFFFFFFF (0003ms, 2535ms total)
T0B0C 6493:720 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007ED) - Data: AA returns 0xFFFFFFFF (0002ms, 2537ms total)
T0B0C 6493:722 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007ED) - Data: AA returns 0xFFFFFFFF (0003ms, 2540ms total)
T0B0C 6493:725 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007ED) - Data: AA returns 0xFFFFFFFF (0002ms, 2542ms total)
T0B0C 6493:727 JLINK_ReadMemEx(0x200007ED, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007ED) - Data: AA returns 0xFFFFFFFF (0002ms, 2544ms total)
T0B0C 6493:729 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007EE) - Data: AA returns 0xFFFFFFFF (0002ms, 2546ms total)
T0B0C 6493:731 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007EE) - Data: AA returns 0xFFFFFFFF (0003ms, 2549ms total)
T0B0C 6493:734 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007EE) - Data: AA returns 0xFFFFFFFF (0002ms, 2551ms total)
T0B0C 6493:736 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007EE) - Data: AA returns 0xFFFFFFFF (0002ms, 2553ms total)
T0B0C 6493:738 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007EE) - Data: AA returns 0xFFFFFFFF (0002ms, 2555ms total)
T0B0C 6493:740 JLINK_ReadMemEx(0x200007EE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200007EE) - Data: AA returns 0xFFFFFFFF (0003ms, 2558ms total)
T0B0C 6493:743 JLINK_ReadMemEx(0x2000042C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000042C) - Data: AA AA AA AA returns 0xFFFFFFFF (0002ms, 2560ms total)
T0B0C 6493:745 JLINK_ReadMemEx(0x2000042C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000042C) - Data: AA AA AA AA returns 0xFFFFFFFF (0002ms, 2562ms total)
T0B0C 6493:747 JLINK_ReadMemEx(0x2000042C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000042C) - Data: AA AA AA AA returns 0xFFFFFFFF (0002ms, 2564ms total)
T0B0C 6493:749 JLINK_ReadMemEx(0x2000042C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000042C) - Data: AA AA AA AA returns 0xFFFFFFFF (0002ms, 2566ms total)
T0B0C 6493:751 JLINK_ReadMemEx(0x2000042C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000042C) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2568ms total)
T0B0C 6493:753 JLINK_ReadMemEx(0x2000042C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000042C) - Data: AA returns 0xFFFFFFFF (0002ms, 2570ms total)
T0B0C 6493:755 JLINK_ReadMemEx(0x00000000, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x00000000) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ... returns 0xFFFFFFFF (0003ms, 2573ms total)
T0B0C 6493:758 JLINK_ReadMemEx(0x00000000, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x00000000) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ... returns 0xFFFFFFFF (0003ms, 2576ms total)
T0B0C 6493:761 JLINK_ReadMemEx(0x00000000, 0x0010 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(16 bytes @ 0x00000000) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA returns 0xFFFFFFFF (0002ms, 2578ms total)
T0B0C 6493:763 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x00000000) - Data: AA AA AA AA returns 0xFFFFFFFF (0002ms, 2580ms total)
T0B0C 6493:765 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000000) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2582ms total)
T0B0C 6493:767 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x00000000) - Data: AA returns 0xFFFFFFFF (0002ms, 2584ms total)
T0B0C 6493:769 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000000) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2586ms total)
T0B0C 6493:771 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000000) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2588ms total)
T0B0C 6493:773 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000000) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2590ms total)
T0B0C 6493:775 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000000) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2592ms total)
T0B0C 6493:777 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000000) - Data: AA AA returns 0xFFFFFFFF (0003ms, 2595ms total)
T0B0C 6493:780 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x00000000) - Data: AA returns 0xFFFFFFFF (0002ms, 2597ms total)
T0B0C 6493:782 JLINK_ReadMemEx(0x00000002, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000002) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2599ms total)
T0B0C 6493:784 JLINK_ReadMemEx(0x00000002, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000002) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2601ms total)
T0B0C 6493:786 JLINK_ReadMemEx(0x00000002, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000002) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2603ms total)
T0B0C 6493:788 JLINK_ReadMemEx(0x00000002, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000002) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2605ms total)
T0B0C 6493:790 JLINK_ReadMemEx(0x00000002, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000002) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2607ms total)
T0B0C 6493:792 JLINK_ReadMemEx(0x00000002, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x00000002) - Data: AA returns 0xFFFFFFFF (0002ms, 2609ms total)
T0B0C 6493:794 JLINK_ReadMemEx(0x00000002, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000002) - Data: AA AA returns 0xFFFFFFFF (0003ms, 2612ms total)
T0B0C 6493:797 JLINK_ReadMemEx(0x00000002, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000002) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2614ms total)
T0B0C 6493:799 JLINK_ReadMemEx(0x00000002, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000002) - Data: AA AA returns 0xFFFFFFFF (0003ms, 2617ms total)
T0B0C 6493:802 JLINK_ReadMemEx(0x00000002, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000002) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2619ms total)
T0B0C 6493:804 JLINK_ReadMemEx(0x00000002, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000002) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2621ms total)
T0B0C 6493:806 JLINK_ReadMemEx(0x00000002, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x00000002) - Data: AA returns 0xFFFFFFFF (0002ms, 2623ms total)
T0B0C 6493:808 JLINK_ReadMemEx(0x00000004, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x00000004) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ... returns 0xFFFFFFFF (0002ms, 2625ms total)
T0B0C 6493:810 JLINK_ReadMemEx(0x00000004, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x00000004) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ... returns 0xFFFFFFFF (0003ms, 2628ms total)
T0B0C 6493:813 JLINK_ReadMemEx(0x00000004, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x00000004) - Data: AA AA AA AA AA AA AA AA AA AA AA AA returns 0xFFFFFFFF (0002ms, 2630ms total)
T0B0C 6493:815 JLINK_ReadMemEx(0x00000004, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x00000004) - Data: AA AA AA AA returns 0xFFFFFFFF (0003ms, 2633ms total)
T0B0C 6493:818 JLINK_ReadMemEx(0x00000004, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000004) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2635ms total)
T0B0C 6493:820 JLINK_ReadMemEx(0x00000004, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x00000004) - Data: AA returns 0xFFFFFFFF (0003ms, 2638ms total)
T0B0C 6493:823 JLINK_ReadMemEx(0x00000004, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000004) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2640ms total)
T0B0C 6493:825 JLINK_ReadMemEx(0x00000004, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000004) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2642ms total)
T0B0C 6493:827 JLINK_ReadMemEx(0x00000004, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000004) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2644ms total)
T0B0C 6493:829 JLINK_ReadMemEx(0x00000004, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000004) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2646ms total)
T0B0C 6493:831 JLINK_ReadMemEx(0x00000004, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000004) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2648ms total)
T0B0C 6493:833 JLINK_ReadMemEx(0x00000004, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x00000004) - Data: AA returns 0xFFFFFFFF (0002ms, 2650ms total)
T0B0C 6493:835 JLINK_ReadMemEx(0x00000004, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x00000004) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ... returns 0xFFFFFFFF (0002ms, 2652ms total)
T0B0C 6493:837 JLINK_ReadMemEx(0x00000004, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x00000004) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ... returns 0xFFFFFFFF (0002ms, 2654ms total)
T0B0C 6493:839 JLINK_ReadMemEx(0x00000004, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x00000004) - Data: AA AA AA AA AA AA AA AA AA AA AA AA returns 0xFFFFFFFF (0002ms, 2656ms total)
T0B0C 6493:841 JLINK_ReadMemEx(0x00000004, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x00000004) - Data: AA AA AA AA returns 0xFFFFFFFF (0002ms, 2658ms total)
T0B0C 6493:843 JLINK_ReadMemEx(0x00000004, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000004) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2660ms total)
T0B0C 6493:845 JLINK_ReadMemEx(0x00000004, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x00000004) - Data: AA returns 0xFFFFFFFF (0003ms, 2663ms total)
T0B0C 6493:848 JLINK_ReadMemEx(0x00000004, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000004) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2665ms total)
T0B0C 6493:850 JLINK_ReadMemEx(0x00000004, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000004) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2667ms total)
T0B0C 6493:852 JLINK_ReadMemEx(0x00000004, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000004) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2669ms total)
T0B0C 6493:854 JLINK_ReadMemEx(0x00000004, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000004) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2671ms total)
T0B0C 6493:856 JLINK_ReadMemEx(0x00000004, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000004) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2673ms total)
T0B0C 6493:858 JLINK_ReadMemEx(0x00000004, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x00000004) - Data: AA returns 0xFFFFFFFF (0002ms, 2675ms total)
T0B0C 6493:860 JLINK_ReadMemEx(0x00000006, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000006) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2677ms total)
T0B0C 6493:862 JLINK_ReadMemEx(0x00000006, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000006) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2679ms total)
T0B0C 6493:864 JLINK_ReadMemEx(0x00000006, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000006) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2681ms total)
T0B0C 6493:866 JLINK_ReadMemEx(0x00000006, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000006) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2683ms total)
T0B0C 6493:868 JLINK_ReadMemEx(0x00000006, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000006) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2685ms total)
T0B0C 6493:870 JLINK_ReadMemEx(0x00000006, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x00000006) - Data: AA returns 0xFFFFFFFF (0002ms, 2687ms total)
T0B0C 6493:872 JLINK_ReadMemEx(0x00000006, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000006) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2689ms total)
T0B0C 6493:874 JLINK_ReadMemEx(0x00000006, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000006) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2691ms total)
T0B0C 6493:876 JLINK_ReadMemEx(0x00000006, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000006) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2693ms total)
T0B0C 6493:878 JLINK_ReadMemEx(0x00000006, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000006) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2695ms total)
T0B0C 6493:880 JLINK_ReadMemEx(0x00000006, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000006) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2697ms total)
T0B0C 6493:882 JLINK_ReadMemEx(0x00000006, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x00000006) - Data: AA returns 0xFFFFFFFF (0002ms, 2699ms total)
T0B0C 6493:884 JLINK_ReadMemEx(0x00000008, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x00000008) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ... returns 0xFFFFFFFF (0002ms, 2701ms total)
T0B0C 6493:886 JLINK_ReadMemEx(0x00000008, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x00000008) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ... returns 0xFFFFFFFF (0002ms, 2703ms total)
T0B0C 6493:888 JLINK_ReadMemEx(0x00000008, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x00000008) - Data: AA AA AA AA AA AA AA AA returns 0xFFFFFFFF (0002ms, 2705ms total)
T0B0C 6493:890 JLINK_ReadMemEx(0x00000008, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x00000008) - Data: AA AA AA AA returns 0xFFFFFFFF (0002ms, 2707ms total)
T0B0C 6493:892 JLINK_ReadMemEx(0x00000008, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000008) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2709ms total)
T0B0C 6493:894 JLINK_ReadMemEx(0x00000008, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x00000008) - Data: AA returns 0xFFFFFFFF (0002ms, 2711ms total)
T0B0C 6493:896 JLINK_ReadMemEx(0x00000008, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000008) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2713ms total)
T0B0C 6493:898 JLINK_ReadMemEx(0x00000008, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000008) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2715ms total)
T0B0C 6493:900 JLINK_ReadMemEx(0x00000008, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000008) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2717ms total)
T0B0C 6493:902 JLINK_ReadMemEx(0x00000008, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000008) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2719ms total)
T0B0C 6493:904 JLINK_ReadMemEx(0x00000008, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000008) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2721ms total)
T0B0C 6493:906 JLINK_ReadMemEx(0x00000008, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x00000008) - Data: AA returns 0xFFFFFFFF (0002ms, 2723ms total)
T0B0C 6493:908 JLINK_ReadMemEx(0x00000008, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x00000008) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ... returns 0xFFFFFFFF (0002ms, 2725ms total)
T0B0C 6493:910 JLINK_ReadMemEx(0x00000008, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x00000008) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ... returns 0xFFFFFFFF (0002ms, 2727ms total)
T0B0C 6493:912 JLINK_ReadMemEx(0x00000008, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x00000008) - Data: AA AA AA AA AA AA AA AA returns 0xFFFFFFFF (0003ms, 2730ms total)
T0B0C 6493:915 JLINK_ReadMemEx(0x00000008, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x00000008) - Data: AA AA AA AA returns 0xFFFFFFFF (0003ms, 2733ms total)
T0B0C 6493:918 JLINK_ReadMemEx(0x00000008, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000008) - Data: AA AA returns 0xFFFFFFFF (0003ms, 2736ms total)
T0B0C 6493:921 JLINK_ReadMemEx(0x00000008, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x00000008) - Data: AA returns 0xFFFFFFFF (0003ms, 2739ms total)
T0B0C 6493:924 JLINK_ReadMemEx(0x00000008, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000008) - Data: AA AA returns 0xFFFFFFFF (0003ms, 2742ms total)
T0B0C 6493:927 JLINK_ReadMemEx(0x00000008, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000008) - Data: AA AA returns 0xFFFFFFFF (0003ms, 2745ms total)
T0B0C 6493:930 JLINK_ReadMemEx(0x00000008, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000008) - Data: AA AA returns 0xFFFFFFFF (0003ms, 2748ms total)
T0B0C 6493:933 JLINK_ReadMemEx(0x00000008, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000008) - Data: AA AA returns 0xFFFFFFFF (0003ms, 2751ms total)
T0B0C 6493:936 JLINK_ReadMemEx(0x00000008, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000008) - Data: AA AA returns 0xFFFFFFFF (0003ms, 2754ms total)
T0B0C 6493:939 JLINK_ReadMemEx(0x00000008, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x00000008) - Data: AA returns 0xFFFFFFFF (0002ms, 2756ms total)
T0B0C 6493:941 JLINK_ReadMemEx(0x0000000A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000000A) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2758ms total)
T0B0C 6493:943 JLINK_ReadMemEx(0x0000000A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000000A) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2760ms total)
T0B0C 6493:945 JLINK_ReadMemEx(0x0000000A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000000A) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2762ms total)
T0B0C 6493:947 JLINK_ReadMemEx(0x0000000A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000000A) - Data: AA AA returns 0xFFFFFFFF (0003ms, 2765ms total)
T0B0C 6493:950 JLINK_ReadMemEx(0x0000000A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000000A) - Data: AA AA returns 0xFFFFFFFF (0003ms, 2768ms total)
T0B0C 6493:953 JLINK_ReadMemEx(0x0000000A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0000000A) - Data: AA returns 0xFFFFFFFF (0003ms, 2771ms total)
T0B0C 6493:956 JLINK_ReadMemEx(0x0000000A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000000A) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2773ms total)
T0B0C 6493:958 JLINK_ReadMemEx(0x0000000A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000000A) - Data: AA AA returns 0xFFFFFFFF (0003ms, 2776ms total)
T0B0C 6493:961 JLINK_ReadMemEx(0x0000000A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000000A) - Data: AA AA returns 0xFFFFFFFF (0003ms, 2779ms total)
T0B0C 6493:964 JLINK_ReadMemEx(0x0000000A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000000A) - Data: AA AA returns 0xFFFFFFFF (0003ms, 2782ms total)
T0B0C 6493:967 JLINK_ReadMemEx(0x0000000A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000000A) - Data: AA AA returns 0xFFFFFFFF (0003ms, 2785ms total)
T0B0C 6493:970 JLINK_ReadMemEx(0x0000000A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0000000A) - Data: AA returns 0xFFFFFFFF (0003ms, 2788ms total)
T0B0C 6493:973 JLINK_ReadMemEx(0x0000000C, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x0000000C) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ... returns 0xFFFFFFFF (0003ms, 2791ms total)
T0B0C 6493:976 JLINK_ReadMemEx(0x0000000C, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x0000000C) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ... returns 0xFFFFFFFF (0003ms, 2794ms total)
T0B0C 6493:979 JLINK_ReadMemEx(0x0000000C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0000000C) - Data: AA AA AA AA returns 0xFFFFFFFF (0003ms, 2797ms total)
T0B0C 6493:982 JLINK_ReadMemEx(0x0000000C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0000000C) - Data: AA AA AA AA returns 0xFFFFFFFF (0003ms, 2800ms total)
T0B0C 6493:985 JLINK_ReadMemEx(0x0000000C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000000C) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2802ms total)
T0B0C 6493:987 JLINK_ReadMemEx(0x0000000C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0000000C) - Data: AA returns 0xFFFFFFFF (0002ms, 2804ms total)
T0B0C 6493:989 JLINK_ReadMemEx(0x0000000C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000000C) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2806ms total)
T0B0C 6493:991 JLINK_ReadMemEx(0x0000000C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000000C) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2808ms total)
T0B0C 6493:993 JLINK_ReadMemEx(0x0000000C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000000C) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2810ms total)
T0B0C 6493:995 JLINK_ReadMemEx(0x0000000C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000000C) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2812ms total)
T0B0C 6493:997 JLINK_ReadMemEx(0x0000000C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000000C) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2814ms total)
T0B0C 6493:999 JLINK_ReadMemEx(0x0000000C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0000000C) - Data: AA returns 0xFFFFFFFF (0003ms, 2817ms total)
T0B0C 6494:002 JLINK_ReadMemEx(0x0000000C, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x0000000C) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ... returns 0xFFFFFFFF (0003ms, 2820ms total)
T0B0C 6494:005 JLINK_ReadMemEx(0x0000000C, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x0000000C) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ... returns 0xFFFFFFFF (0002ms, 2822ms total)
T0B0C 6494:007 JLINK_ReadMemEx(0x0000000C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0000000C) - Data: AA AA AA AA returns 0xFFFFFFFF (0002ms, 2824ms total)
T0B0C 6494:009 JLINK_ReadMemEx(0x0000000C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0000000C) - Data: AA AA AA AA returns 0xFFFFFFFF (0002ms, 2826ms total)
T0B0C 6494:011 JLINK_ReadMemEx(0x0000000C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000000C) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2828ms total)
T0B0C 6494:013 JLINK_ReadMemEx(0x0000000C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0000000C) - Data: AA returns 0xFFFFFFFF (0002ms, 2830ms total)
T0B0C 6494:015 JLINK_ReadMemEx(0x0000000C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000000C) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2832ms total)
T0B0C 6494:017 JLINK_ReadMemEx(0x0000000C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000000C) - Data: AA AA returns 0xFFFFFFFF (0003ms, 2835ms total)
T0B0C 6494:020 JLINK_ReadMemEx(0x0000000C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000000C) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2837ms total)
T0B0C 6494:022 JLINK_ReadMemEx(0x0000000C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000000C) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2839ms total)
T0B0C 6494:024 JLINK_ReadMemEx(0x0000000C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000000C) - Data: AA AA returns 0xFFFFFFFF (0003ms, 2842ms total)
T0B0C 6494:027 JLINK_ReadMemEx(0x0000000C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0000000C) - Data: AA returns 0xFFFFFFFF (0002ms, 2844ms total)
T0B0C 6494:029 JLINK_ReadMemEx(0x0000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000000E) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2846ms total)
T0B0C 6494:031 JLINK_ReadMemEx(0x0000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000000E) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2848ms total)
T0B0C 6494:033 JLINK_ReadMemEx(0x0000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000000E) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2850ms total)
T0B0C 6494:035 JLINK_ReadMemEx(0x0000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000000E) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2852ms total)
T0B0C 6494:037 JLINK_ReadMemEx(0x0000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000000E) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2854ms total)
T0B0C 6494:039 JLINK_ReadMemEx(0x0000000E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0000000E) - Data: AA returns 0xFFFFFFFF (0002ms, 2856ms total)
T0B0C 6494:041 JLINK_ReadMemEx(0x0000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000000E) - Data: AA AA returns 0xFFFFFFFF (0003ms, 2859ms total)
T0B0C 6494:044 JLINK_ReadMemEx(0x0000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000000E) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2861ms total)
T0B0C 6494:046 JLINK_ReadMemEx(0x0000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000000E) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2863ms total)
T0B0C 6494:048 JLINK_ReadMemEx(0x0000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000000E) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2865ms total)
T0B0C 6494:050 JLINK_ReadMemEx(0x0000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000000E) - Data: AA AA returns 0xFFFFFFFF (0003ms, 2868ms total)
T0B0C 6494:053 JLINK_ReadMemEx(0x0000000E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0000000E) - Data: AA returns 0xFFFFFFFF (0002ms, 2870ms total)
T0B0C 6494:055 JLINK_ReadMemEx(0x00000010, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x00000010) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ... returns 0xFFFFFFFF (0003ms, 2873ms total)
T0B0C 6494:058 JLINK_ReadMemEx(0x00000010, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x00000010) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ... returns 0xFFFFFFFF (0003ms, 2876ms total)
T0B0C 6494:061 JLINK_ReadMemEx(0x00000010, 0x0010 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(16 bytes @ 0x00000010) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA returns 0xFFFFFFFF (0002ms, 2878ms total)
T0B0C 6494:063 JLINK_ReadMemEx(0x00000010, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x00000010) - Data: AA AA AA AA returns 0xFFFFFFFF (0002ms, 2880ms total)
T0B0C 6494:065 JLINK_ReadMemEx(0x00000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000010) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2882ms total)
T0B0C 6494:067 JLINK_ReadMemEx(0x00000010, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x00000010) - Data: AA returns 0xFFFFFFFF (0002ms, 2884ms total)
T0B0C 6494:069 JLINK_ReadMemEx(0x00000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000010) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2886ms total)
T0B0C 6494:071 JLINK_ReadMemEx(0x00000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000010) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2888ms total)
T0B0C 6494:073 JLINK_ReadMemEx(0x00000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000010) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2890ms total)
T0B0C 6494:075 JLINK_ReadMemEx(0x00000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000010) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2892ms total)
T0B0C 6494:077 JLINK_ReadMemEx(0x00000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000010) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2894ms total)
T0B0C 6494:079 JLINK_ReadMemEx(0x00000010, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x00000010) - Data: AA returns 0xFFFFFFFF (0002ms, 2896ms total)
T0B0C 6494:081 JLINK_ReadMemEx(0x00000010, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x00000010) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ... returns 0xFFFFFFFF (0003ms, 2899ms total)
T0B0C 6494:084 JLINK_ReadMemEx(0x00000010, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x00000010) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ... returns 0xFFFFFFFF (0002ms, 2901ms total)
T0B0C 6494:086 JLINK_ReadMemEx(0x00000010, 0x0010 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(16 bytes @ 0x00000010) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA returns 0xFFFFFFFF (0002ms, 2903ms total)
T0B0C 6494:088 JLINK_ReadMemEx(0x00000010, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x00000010) - Data: AA AA AA AA returns 0xFFFFFFFF (0003ms, 2906ms total)
T0B0C 6494:091 JLINK_ReadMemEx(0x00000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000010) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2908ms total)
T0B0C 6494:093 JLINK_ReadMemEx(0x00000010, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x00000010) - Data: AA returns 0xFFFFFFFF (0002ms, 2910ms total)
T0B0C 6494:095 JLINK_ReadMemEx(0x00000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000010) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2912ms total)
T0B0C 6494:097 JLINK_ReadMemEx(0x00000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000010) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2914ms total)
T0B0C 6494:099 JLINK_ReadMemEx(0x00000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000010) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2916ms total)
T0B0C 6494:101 JLINK_ReadMemEx(0x00000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000010) - Data: AA AA returns 0xFFFFFFFF (0003ms, 2919ms total)
T0B0C 6494:104 JLINK_ReadMemEx(0x00000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000010) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2921ms total)
T0B0C 6494:106 JLINK_ReadMemEx(0x00000010, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x00000010) - Data: AA returns 0xFFFFFFFF (0002ms, 2923ms total)
T0B0C 6494:108 JLINK_ReadMemEx(0x00000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000012) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2925ms total)
T0B0C 6494:110 JLINK_ReadMemEx(0x00000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000012) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2927ms total)
T0B0C 6494:112 JLINK_ReadMemEx(0x00000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000012) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2929ms total)
T0B0C 6494:114 JLINK_ReadMemEx(0x00000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000012) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2931ms total)
T0B0C 6494:116 JLINK_ReadMemEx(0x00000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000012) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2933ms total)
T0B0C 6494:118 JLINK_ReadMemEx(0x00000012, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x00000012) - Data: AA returns 0xFFFFFFFF (0002ms, 2935ms total)
T0B0C 6494:120 JLINK_ReadMemEx(0x00000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000012) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2937ms total)
T0B0C 6494:122 JLINK_ReadMemEx(0x00000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000012) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2939ms total)
T0B0C 6494:124 JLINK_ReadMemEx(0x00000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000012) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2941ms total)
T0B0C 6494:126 JLINK_ReadMemEx(0x00000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000012) - Data: AA AA returns 0xFFFFFFFF (0003ms, 2944ms total)
T0B0C 6494:129 JLINK_ReadMemEx(0x00000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000012) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2946ms total)
T0B0C 6494:131 JLINK_ReadMemEx(0x00000012, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x00000012) - Data: AA returns 0xFFFFFFFF (0002ms, 2948ms total)
T0B0C 6494:133 JLINK_ReadMemEx(0x00000014, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x00000014) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ... returns 0xFFFFFFFF (0002ms, 2950ms total)
T0B0C 6494:135 JLINK_ReadMemEx(0x00000014, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x00000014) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ... returns 0xFFFFFFFF (0002ms, 2952ms total)
T0B0C 6494:137 JLINK_ReadMemEx(0x00000014, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x00000014) - Data: AA AA AA AA AA AA AA AA AA AA AA AA returns 0xFFFFFFFF (0002ms, 2954ms total)
T0B0C 6494:139 JLINK_ReadMemEx(0x00000014, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x00000014) - Data: AA AA AA AA returns 0xFFFFFFFF (0002ms, 2956ms total)
T0B0C 6494:141 JLINK_ReadMemEx(0x00000014, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000014) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2958ms total)
T0B0C 6494:143 JLINK_ReadMemEx(0x00000014, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x00000014) - Data: AA returns 0xFFFFFFFF (0002ms, 2960ms total)
T0B0C 6494:145 JLINK_ReadMemEx(0x00000014, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000014) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2962ms total)
T0B0C 6494:147 JLINK_ReadMemEx(0x00000014, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000014) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2964ms total)
T0B0C 6494:149 JLINK_ReadMemEx(0x00000014, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000014) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2966ms total)
T0B0C 6494:151 JLINK_ReadMemEx(0x00000014, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000014) - Data: AA AA returns 0xFFFFFFFF (0003ms, 2969ms total)
T0B0C 6494:154 JLINK_ReadMemEx(0x00000014, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000014) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2971ms total)
T0B0C 6494:156 JLINK_ReadMemEx(0x00000014, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x00000014) - Data: AA returns 0xFFFFFFFF (0002ms, 2973ms total)
T0B0C 6494:158 JLINK_ReadMemEx(0x00000014, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x00000014) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ... returns 0xFFFFFFFF (0003ms, 2976ms total)
T0B0C 6494:161 JLINK_ReadMemEx(0x00000014, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x00000014) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ... returns 0xFFFFFFFF (0002ms, 2978ms total)
T0B0C 6494:163 JLINK_ReadMemEx(0x00000014, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x00000014) - Data: AA AA AA AA AA AA AA AA AA AA AA AA returns 0xFFFFFFFF (0002ms, 2980ms total)
T0B0C 6494:165 JLINK_ReadMemEx(0x00000014, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x00000014) - Data: AA AA AA AA returns 0xFFFFFFFF (0002ms, 2982ms total)
T0B0C 6494:167 JLINK_ReadMemEx(0x00000014, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000014) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2984ms total)
T0B0C 6494:169 JLINK_ReadMemEx(0x00000014, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x00000014) - Data: AA returns 0xFFFFFFFF (0002ms, 2986ms total)
T0B0C 6494:171 JLINK_ReadMemEx(0x00000014, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000014) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2988ms total)
T0B0C 6494:173 JLINK_ReadMemEx(0x00000014, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000014) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2990ms total)
T0B0C 6494:175 JLINK_ReadMemEx(0x00000014, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000014) - Data: AA AA returns 0xFFFFFFFF (0002ms, 2992ms total)
T0B0C 6494:177 JLINK_ReadMemEx(0x00000014, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000014) - Data: AA AA returns 0xFFFFFFFF (0003ms, 2995ms total)
T0B0C 6494:180 JLINK_ReadMemEx(0x00000014, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000014) - Data: AA AA returns 0xFFFFFFFF (0003ms, 2998ms total)
T0B0C 6494:183 JLINK_ReadMemEx(0x00000014, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x00000014) - Data: AA returns 0xFFFFFFFF (0002ms, 3000ms total)
T0B0C 6494:185 JLINK_ReadMemEx(0x00000016, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000016) - Data: AA AA returns 0xFFFFFFFF (0002ms, 3002ms total)
T0B0C 6494:187 JLINK_ReadMemEx(0x00000016, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000016) - Data: AA AA returns 0xFFFFFFFF (0002ms, 3004ms total)
T0B0C 6494:189 JLINK_ReadMemEx(0x00000016, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000016) - Data: AA AA returns 0xFFFFFFFF (0002ms, 3006ms total)
T0B0C 6494:191 JLINK_ReadMemEx(0x00000016, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000016) - Data: AA AA returns 0xFFFFFFFF (0002ms, 3008ms total)
T0B0C 6494:193 JLINK_ReadMemEx(0x00000016, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000016) - Data: AA AA returns 0xFFFFFFFF (0002ms, 3010ms total)
T0B0C 6494:195 JLINK_ReadMemEx(0x00000016, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x00000016) - Data: AA returns 0xFFFFFFFF (0002ms, 3012ms total)
T0B0C 6494:197 JLINK_ReadMemEx(0x00000016, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000016) - Data: AA AA returns 0xFFFFFFFF (0002ms, 3014ms total)
T0B0C 6494:199 JLINK_ReadMemEx(0x00000016, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000016) - Data: AA AA returns 0xFFFFFFFF (0002ms, 3016ms total)
T0B0C 6494:201 JLINK_ReadMemEx(0x00000016, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000016) - Data: AA AA returns 0xFFFFFFFF (0002ms, 3018ms total)
T0B0C 6494:203 JLINK_ReadMemEx(0x00000016, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000016) - Data: AA AA returns 0xFFFFFFFF (0002ms, 3020ms total)
T0B0C 6494:205 JLINK_ReadMemEx(0x00000016, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000016) - Data: AA AA returns 0xFFFFFFFF (0004ms, 3024ms total)
T0B0C 6494:209 JLINK_ReadMemEx(0x00000016, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x00000016) - Data: AA returns 0xFFFFFFFF (0004ms, 3028ms total)
T0B0C 6494:213 JLINK_ReadMemEx(0x00000018, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x00000018) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ... returns 0xFFFFFFFF (0004ms, 3032ms total)
T0B0C 6494:217 JLINK_ReadMemEx(0x00000018, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x00000018) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ... returns 0xFFFFFFFF (0004ms, 3036ms total)
T0B0C 6494:221 JLINK_ReadMemEx(0x00000018, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x00000018) - Data: AA AA AA AA AA AA AA AA returns 0xFFFFFFFF (0004ms, 3040ms total)
T0B0C 6494:225 JLINK_ReadMemEx(0x00000018, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x00000018) - Data: AA AA AA AA returns 0xFFFFFFFF (0002ms, 3042ms total)
T0B0C 6494:227 JLINK_ReadMemEx(0x00000018, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000018) - Data: AA AA returns 0xFFFFFFFF (0002ms, 3044ms total)
T0B0C 6494:229 JLINK_ReadMemEx(0x00000018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x00000018) - Data: AA returns 0xFFFFFFFF (0002ms, 3046ms total)
T0B0C 6494:231 JLINK_ReadMemEx(0x00000018, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000018) - Data: AA AA returns 0xFFFFFFFF (0002ms, 3048ms total)
T0B0C 6494:233 JLINK_ReadMemEx(0x00000018, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000018) - Data: AA AA returns 0xFFFFFFFF (0002ms, 3050ms total)
T0B0C 6494:235 JLINK_ReadMemEx(0x00000018, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000018) - Data: AA AA returns 0xFFFFFFFF (0002ms, 3052ms total)
T0B0C 6494:237 JLINK_ReadMemEx(0x00000018, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000018) - Data: AA AA returns 0xFFFFFFFF (0002ms, 3054ms total)
T0B0C 6494:239 JLINK_ReadMemEx(0x00000018, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000018) - Data: AA AA returns 0xFFFFFFFF (0002ms, 3056ms total)
T0B0C 6494:241 JLINK_ReadMemEx(0x00000018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x00000018) - Data: AA returns 0xFFFFFFFF (0002ms, 3058ms total)
T0B0C 6494:243 JLINK_ReadMemEx(0x00000018, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x00000018) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ... returns 0xFFFFFFFF (0002ms, 3060ms total)
T0B0C 6494:245 JLINK_ReadMemEx(0x00000018, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x00000018) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ... returns 0xFFFFFFFF (0002ms, 3062ms total)
T0B0C 6494:247 JLINK_ReadMemEx(0x00000018, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x00000018) - Data: AA AA AA AA AA AA AA AA returns 0xFFFFFFFF (0002ms, 3064ms total)
T0B0C 6494:249 JLINK_ReadMemEx(0x00000018, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x00000018) - Data: AA AA AA AA returns 0xFFFFFFFF (0002ms, 3066ms total)
T0B0C 6494:251 JLINK_ReadMemEx(0x00000018, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000018) - Data: AA AA returns 0xFFFFFFFF (0002ms, 3068ms total)
T0B0C 6494:253 JLINK_ReadMemEx(0x00000018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x00000018) - Data: AA returns 0xFFFFFFFF (0002ms, 3070ms total)
T0B0C 6494:255 JLINK_ReadMemEx(0x00000018, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000018) - Data: AA AA returns 0xFFFFFFFF (0002ms, 3072ms total)
T0B0C 6494:257 JLINK_ReadMemEx(0x00000018, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000018) - Data: AA AA returns 0xFFFFFFFF (0002ms, 3074ms total)
T0B0C 6494:259 JLINK_ReadMemEx(0x00000018, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000018) - Data: AA AA returns 0xFFFFFFFF (0002ms, 3076ms total)
T0B0C 6494:261 JLINK_ReadMemEx(0x00000018, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000018) - Data: AA AA returns 0xFFFFFFFF (0002ms, 3078ms total)
T0B0C 6494:263 JLINK_ReadMemEx(0x00000018, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000018) - Data: AA AA returns 0xFFFFFFFF (0002ms, 3080ms total)
T0B0C 6494:265 JLINK_ReadMemEx(0x00000018, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x00000018) - Data: AA returns 0xFFFFFFFF (0002ms, 3082ms total)
T0B0C 6494:267 JLINK_ReadMemEx(0x0000001A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000001A) - Data: AA AA returns 0xFFFFFFFF (0002ms, 3084ms total)
T0B0C 6494:269 JLINK_ReadMemEx(0x0000001A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000001A) - Data: AA AA returns 0xFFFFFFFF (0002ms, 3086ms total)
T0B0C 6494:271 JLINK_ReadMemEx(0x0000001A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000001A) - Data: AA AA returns 0xFFFFFFFF (0002ms, 3088ms total)
T0B0C 6494:273 JLINK_ReadMemEx(0x0000001A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000001A) - Data: AA AA returns 0xFFFFFFFF (0002ms, 3090ms total)
T0B0C 6494:275 JLINK_ReadMemEx(0x0000001A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000001A) - Data: AA AA returns 0xFFFFFFFF (0002ms, 3092ms total)
T0B0C 6494:277 JLINK_ReadMemEx(0x0000001A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0000001A) - Data: AA returns 0xFFFFFFFF (0002ms, 3094ms total)
T0B0C 6494:279 JLINK_ReadMemEx(0x0000001A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000001A) - Data: AA AA returns 0xFFFFFFFF (0002ms, 3096ms total)
T0B0C 6494:281 JLINK_ReadMemEx(0x0000001A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000001A) - Data: AA AA returns 0xFFFFFFFF (0002ms, 3098ms total)
T0B0C 6494:283 JLINK_ReadMemEx(0x0000001A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000001A) - Data: AA AA returns 0xFFFFFFFF (0002ms, 3100ms total)
T0B0C 6494:285 JLINK_ReadMemEx(0x0000001A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000001A) - Data: AA AA returns 0xFFFFFFFF (0002ms, 3102ms total)
T0B0C 6494:287 JLINK_ReadMemEx(0x0000001A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000001A) - Data: AA AA returns 0xFFFFFFFF (0002ms, 3104ms total)
T0B0C 6494:289 JLINK_ReadMemEx(0x0000001A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0000001A) - Data: AA returns 0xFFFFFFFF (0002ms, 3106ms total)
T0B0C 6494:291 JLINK_ReadMemEx(0x0000001C, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x0000001C) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ... returns 0xFFFFFFFF (0002ms, 3108ms total)
T0B0C 6494:293 JLINK_ReadMemEx(0x0000001C, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x0000001C) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ... returns 0xFFFFFFFF (0002ms, 3110ms total)
T0B0C 6494:295 JLINK_ReadMemEx(0x0000001C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0000001C) - Data: AA AA AA AA returns 0xFFFFFFFF (0002ms, 3112ms total)
T0B0C 6494:297 JLINK_ReadMemEx(0x0000001C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0000001C) - Data: AA AA AA AA returns 0xFFFFFFFF (0002ms, 3114ms total)
T0B0C 6494:299 JLINK_ReadMemEx(0x0000001C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000001C) - Data: AA AA returns 0xFFFFFFFF (0002ms, 3116ms total)
T0B0C 6494:301 JLINK_ReadMemEx(0x0000001C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0000001C) - Data: AA returns 0xFFFFFFFF (0002ms, 3118ms total)
T0B0C 6494:303 JLINK_ReadMemEx(0x0000001C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000001C) - Data: AA AA returns 0xFFFFFFFF (0002ms, 3120ms total)
T0B0C 6494:305 JLINK_ReadMemEx(0x0000001C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000001C) - Data: AA AA returns 0xFFFFFFFF (0002ms, 3122ms total)
T0B0C 6494:307 JLINK_ReadMemEx(0x0000001C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000001C) - Data: AA AA returns 0xFFFFFFFF (0002ms, 3124ms total)
T0B0C 6494:309 JLINK_ReadMemEx(0x0000001C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000001C) - Data: AA AA returns 0xFFFFFFFF (0002ms, 3126ms total)
T0B0C 6494:311 JLINK_ReadMemEx(0x0000001C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000001C) - Data: AA AA returns 0xFFFFFFFF (0002ms, 3128ms total)
T0B0C 6494:313 JLINK_ReadMemEx(0x0000001C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0000001C) - Data: AA returns 0xFFFFFFFF (0002ms, 3130ms total)
T0B0C 6494:315 JLINK_ReadMemEx(0x0000001C, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x0000001C) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ... returns 0xFFFFFFFF (0002ms, 3132ms total)
T0B0C 6494:317 JLINK_ReadMemEx(0x0000001C, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x0000001C) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ... returns 0xFFFFFFFF (0002ms, 3134ms total)
T0B0C 6494:319 JLINK_ReadMemEx(0x0000001C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0000001C) - Data: AA AA AA AA returns 0xFFFFFFFF (0002ms, 3136ms total)
T0B0C 6494:321 JLINK_ReadMemEx(0x0000001C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0000001C) - Data: AA AA AA AA returns 0xFFFFFFFF (0002ms, 3138ms total)
T0B0C 6494:323 JLINK_ReadMemEx(0x0000001C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000001C) - Data: AA AA returns 0xFFFFFFFF (0002ms, 3140ms total)
T0B0C 6494:325 JLINK_ReadMemEx(0x0000001C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0000001C) - Data: AA returns 0xFFFFFFFF (0002ms, 3142ms total)
T0B0C 6494:327 JLINK_ReadMemEx(0x0000001C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000001C) - Data: AA AA returns 0xFFFFFFFF (0002ms, 3144ms total)
T0B0C 6494:329 JLINK_ReadMemEx(0x0000001C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000001C) - Data: AA AA returns 0xFFFFFFFF (0002ms, 3146ms total)
T0B0C 6494:331 JLINK_ReadMemEx(0x0000001C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000001C) - Data: AA AA returns 0xFFFFFFFF (0002ms, 3148ms total)
T0B0C 6494:333 JLINK_ReadMemEx(0x0000001C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000001C) - Data: AA AA returns 0xFFFFFFFF (0002ms, 3150ms total)
T0B0C 6494:335 JLINK_ReadMemEx(0x0000001C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000001C) - Data: AA AA returns 0xFFFFFFFF (0002ms, 3152ms total)
T0B0C 6494:337 JLINK_ReadMemEx(0x0000001C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0000001C) - Data: AA returns 0xFFFFFFFF (0002ms, 3154ms total)
T0B0C 6494:339 JLINK_ReadMemEx(0x0000001E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000001E) - Data: AA AA returns 0xFFFFFFFF (0002ms, 3156ms total)
T0B0C 6494:341 JLINK_ReadMemEx(0x0000001E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000001E) - Data: AA AA returns 0xFFFFFFFF (0002ms, 3158ms total)
T0B0C 6494:343 JLINK_ReadMemEx(0x0000001E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000001E) - Data: AA AA returns 0xFFFFFFFF (0003ms, 3161ms total)
T0B0C 6494:346 JLINK_ReadMemEx(0x0000001E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000001E) - Data: AA AA returns 0xFFFFFFFF (0002ms, 3163ms total)
T0B0C 6494:348 JLINK_ReadMemEx(0x0000001E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000001E) - Data: AA AA returns 0xFFFFFFFF (0002ms, 3165ms total)
T0B0C 6494:350 JLINK_ReadMemEx(0x0000001E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0000001E) - Data: AA returns 0xFFFFFFFF (0002ms, 3167ms total)
T0B0C 7160:213 JLINK_Close() -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002014) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002018) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000201C) >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF>
>0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> (0036ms, 3203ms total)
T0B0C 7160:213 (0036ms, 3203ms total)
T0B0C 7160:213 Closed (0036ms, 3203ms total)