chen
2024-07-29 55579b9ada2fc22edcae817e7d6e65710c47edd3
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
 
T50BC 000:081 SEGGER J-Link V6.30d Log File (0000ms, 0028ms total)
T50BC 000:081 DLL Compiled: Feb 16 2018 13:30:32 (0000ms, 0028ms total)
T50BC 000:081 Logging started @ 2024-07-29 17:33 (0000ms, 0028ms total)
T50BC 000:081 JLINK_SetWarnOutHandler(...) (0000ms, 0028ms total)
T50BC 000:081 JLINK_OpenEx(...)
Firmware: J-Link ARM-OB STM32 compiled Aug 22 2012 19:52:04
Hardware: V7.00
S/N: 20090928
Feature(s): RDI,FlashDL,FlashBP,JFlash,GDB
TELNET listener socket opened on port 19021WEBSRV 
Starting webserver (0016ms, 0044ms total)
T50BC 000:081 WEBSRV Webserver running on local port 19080 (0016ms, 0044ms total)
T50BC 000:081   returns O.K. (0016ms, 0044ms total)
T50BC 000:097 JLINK_GetEmuCaps()  returns 0x88EA5833 (0000ms, 0044ms total)
T50BC 000:097 JLINK_TIF_GetAvailable(...) (0001ms, 0045ms total)
T50BC 000:098 JLINK_SetErrorOutHandler(...) (0000ms, 0045ms total)
T50BC 000:098 JLINK_ExecCommand("ProjectFile = "D:\project chen\uwb_simple_example_ss_twr_Tag\keil\JLinkSettings.ini"", ...). d:\Keil_v5\ARM\Segger\JLinkDevices.xml evaluated successfully.  returns 0x00 (0123ms, 0168ms total)
T50BC 000:221 JLINK_ExecCommand("Device = MK8000", ...). Device "MK8000" selected.  returns 0x00 (0006ms, 0174ms total)
T50BC 000:227 JLINK_ExecCommand("DisableConnectionTimeout", ...).   returns 0x01 (0000ms, 0174ms total)
T50BC 000:227 JLINK_GetHardwareVersion()  returns 0x11170 (0000ms, 0174ms total)
T50BC 000:227 JLINK_GetDLLVersion()  returns 63004 (0000ms, 0174ms total)
T50BC 000:229 JLINK_GetFirmwareString(...) (0000ms, 0176ms total)
T50BC 000:229 JLINK_GetDLLVersion()  returns 63004 (0000ms, 0176ms total)
T50BC 000:229 JLINK_GetCompileDateTime() (0000ms, 0176ms total)
T50BC 000:229 JLINK_GetFirmwareString(...) (0000ms, 0176ms total)
T50BC 000:229 JLINK_GetHardwareVersion()  returns 0x11170 (0000ms, 0176ms total)
T50BC 000:229 JLINK_TIF_Select(JLINKARM_TIF_SWD)  returns 0x00 (0001ms, 0177ms total)
T50BC 000:230 JLINK_SetSpeed(10000) (0001ms, 0178ms total)
T50BC 000:231 JLINK_GetId() >0x10B TIF>Found SW-DP with ID 0x0BB11477 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF>Scanning AP map to find all available APs >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>AP[1]: Stopped AP scan as end of AP map has been reachedAP[0]: AHB-AP (IDR: 0x04770021)Iterating through AP map to find AHB-AP to use
 >0x42 TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x42 TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>AP[0]: Core foundAP[0]: AHB-AP ROM base: 0xE00FF000 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>CPUID register: 0x410CC200. Implementer code: 0x41 (ARM)Found Cortex-M0 r0p0, Little endian. -- CPU_ReadMem(4 bytes @ 0xE000EDF0)
 -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE0002000)FPUnit: 4 code (BP) slots and 0 literal slots -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_WriteMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000)CoreSight components:ROMTbl[0] @ E00FF000 -- CPU_ReadMem(16 bytes @ 0xE00FF000) -- CPU_ReadMem(16 bytes @ 0xE000EFF0) -- CPU_ReadMem(16 bytes @ 0xE000EFE0)ROMTbl[0][0]: E000E000, CID: B105E00D, PID: 000BB008 SCS
 -- CPU_ReadMem(16 bytes @ 0xE0001FF0) -- CPU_ReadMem(16 bytes @ 0xE0001FE0)ROMTbl[0][1]: E0001000, CID: B105E00D, PID: 000BB00A DWT -- CPU_ReadMem(16 bytes @ 0xE0002FF0) -- CPU_ReadMem(16 bytes @ 0xE0002FE0)ROMTbl[0][2]: E0002000, CID: B105E00D, PID: 000BB00B FPB >0x0D TIF> >0x21 TIF>  returns 0x0BB11477 (0155ms, 0333ms total)
T50BC 000:386 JLINK_GetDLLVersion()  returns 63004 (0000ms, 0333ms total)
T50BC 000:386 JLINK_CORE_GetFound()  returns 0x60000FF (0000ms, 0333ms total)
T50BC 000:386 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xE00FF000  returns 0x00 (0000ms, 0333ms total)
T50BC 000:386 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xE00FF000  returns 0x00 (0000ms, 0333ms total)
T50BC 000:386 JLINK_GetDebugInfo(0x101 = JLINKARM_DEBUG_INFO_ETM_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0333ms total)
T50BC 000:386 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, 0334ms total)
T50BC 000:387 JLINK_GetDebugInfo(0x102 = JLINKARM_DEBUG_INFO_MTB_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0334ms total)
T50BC 000:387 JLINK_GetDebugInfo(0x103 = JLINKARM_DEBUG_INFO_TPIU_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0334ms total)
T50BC 000:387 JLINK_ReadMemEx(0xE0040FF0, 0x0010 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(16 bytes @ 0xE0040FF0) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x10 (0001ms, 0335ms total)
T50BC 000:388 JLINK_GetDebugInfo(0x104 = JLINKARM_DEBUG_INFO_ITM_ADDR_INDEX) -- Value=0xE0000000  returns 0x00 (0000ms, 0335ms total)
T50BC 000:388 JLINK_GetDebugInfo(0x105 = JLINKARM_DEBUG_INFO_DWT_ADDR_INDEX) -- Value=0xE0001000  returns 0x00 (0000ms, 0335ms total)
T50BC 000:388 JLINK_GetDebugInfo(0x106 = JLINKARM_DEBUG_INFO_FPB_ADDR_INDEX) -- Value=0xE0002000  returns 0x00 (0001ms, 0336ms total)
T50BC 000:389 JLINK_GetDebugInfo(0x107 = JLINKARM_DEBUG_INFO_NVIC_ADDR_INDEX) -- Value=0xE000E000  returns 0x00 (0000ms, 0336ms total)
T50BC 000:389 JLINK_GetDebugInfo(0x10C = JLINKARM_DEBUG_INFO_DBG_ADDR_INDEX) -- Value=0xE000EDF0  returns 0x00 (0000ms, 0336ms total)
T50BC 000:389 JLINK_GetDebugInfo(0x01 = Unknown) -- Value=0x00000000  returns 0x00 (0000ms, 0336ms total)
T50BC 000:389 JLINK_ReadMemU32(0xE000ED00, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED00) - Data: 00 C2 0C 41  returns 0x01 (0001ms, 0337ms total)
T50BC 000:390 JLINK_GetDebugInfo(0x10F = JLINKARM_DEBUG_INFO_HAS_CORTEX_M_SECURITY_EXT_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0337ms total)
T50BC 000:390 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 0337ms total)
T50BC 000:390 JLINK_Reset() -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDFC)Reset: Halt core after reset via DEMCR.VC_CORERESET. >0x35 TIF>Reset: Reset device via AIRCR.SYSRESETREQ. -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000ED0C) >0x0D TIF> >0x28 TIF> -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDFC)
 -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0074ms, 0411ms total)
T50BC 000:464 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0411ms total)
T50BC 000:464 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0411ms total)
T50BC 000:464 JLINK_Halt()  returns 0x00 (0000ms, 0411ms total)
T50BC 000:464 JLINK_ReadMemU32(0xE000EDF0, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) - Data: 03 00 03 00  returns 0x01 (0001ms, 0412ms total)
T50BC 000:465 JLINK_WriteU32(0xE000EDF0, 0xA05F0003) -- CPU_WriteMem(4 bytes @ 0xE000EDF0)  returns 0x00 (0001ms, 0413ms total)
T50BC 000:466 JLINK_WriteU32(0xE000EDFC, 0x01000000) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)  returns 0x00 (0001ms, 0414ms total)
T50BC 000:467 JLINK_GetHWStatus(...)  returns 0x00 (0001ms, 0415ms total)
T50BC 000:468 JLINK_GetNumBPUnits(Type = 0xFFFFFF00)  returns 0x04 (0000ms, 0415ms total)
T50BC 000:468 JLINK_GetNumBPUnits(Type = 0xF0)  returns 0x2000 (0000ms, 0415ms total)
T50BC 000:468 JLINK_GetNumWPUnits()  returns 0x02 (0000ms, 0415ms total)
T50BC 000:468 JLINK_GetSpeed()  returns 0xFA0 (0000ms, 0415ms total)
T50BC 000:468 JLINK_ReadMemU32(0xE000E004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000E004) - Data: 00 00 00 00  returns 0x01 (0002ms, 0417ms total)
T50BC 000:470 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0417ms total)
T50BC 000:470 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0417ms total)
T50BC 000:559 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0001ms, 0418ms total)
T50BC 000:560 JLINK_Reset() -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)Reset: Halt core after reset via DEMCR.VC_CORERESET. >0x35 TIF>Reset: Reset device via AIRCR.SYSRESETREQ. -- CPU_WriteMem(4 bytes @ 0xE000ED0C) >0x0D TIF> >0x28 TIF> -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE0002000)
 -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0074ms, 0492ms total)
T50BC 000:634 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0492ms total)
T50BC 000:634 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0492ms total)
T50BC 000:634 JLINK_ReadMemEx(0x03003738, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003738) - Data: 00 F0 4E F8 FC F7 C0 FC 80 B5 0D 49 08 68 00 28 ...  returns 0x3C (0002ms, 0494ms total)
T50BC 000:636 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0001ms, 0495ms total)
T50BC 000:637 JLINK_ReadMemEx(0x0300373A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373A) - Data: 4E F8  returns 0x02 (0001ms, 0496ms total)
T50BC 000:639 JLINK_ReadMemEx(0x0300373C, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x0300373C) - Data: FC F7 C0 FC 80 B5 0D 49 08 68 00 28 00 D4 80 BD ...  returns 0x3C (0002ms, 0498ms total)
T50BC 000:641 JLINK_ReadMemEx(0x0300373C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373C) - Data: FC F7  returns 0x02 (0000ms, 0498ms total)
T50BC 000:641 JLINK_ReadMemEx(0x0300373E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373E) - Data: C0 FC  returns 0x02 (0001ms, 0499ms total)
T50BC 000:642 JLINK_ReadMemEx(0x03003740, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003740) - Data: 80 B5 0D 49 08 68 00 28 00 D4 80 BD 0B 48 02 68 ...  returns 0x3C (0002ms, 0501ms total)
T50BC 000:644 JLINK_ReadMemEx(0x03003740, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003740) - Data: 80 B5  returns 0x02 (0001ms, 0502ms total)
T50BC 000:645 JLINK_ReadMemEx(0x03003742, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003742) - Data: 0D 49  returns 0x02 (0001ms, 0503ms total)
T50BC 000:646 JLINK_ReadMemEx(0x03003742, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003742) - Data: 0D 49  returns 0x02 (0001ms, 0504ms total)
T50BC 000:647 JLINK_ReadMemEx(0x03003744, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003744) - Data: 08 68 00 28 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 ...  returns 0x3C (0001ms, 0505ms total)
T50BC 000:648 JLINK_ReadMemEx(0x03003744, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003744) - Data: 08 68  returns 0x02 (0001ms, 0506ms total)
T50BC 000:649 JLINK_ReadMemEx(0x03003744, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003744) - Data: 08 68 00 28 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 ...  returns 0x3C (0002ms, 0508ms total)
T50BC 000:651 JLINK_ReadMemEx(0x03003744, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003744) - Data: 08 68  returns 0x02 (0001ms, 0509ms total)
T50BC 000:652 JLINK_ReadMemEx(0x03003746, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003746) - Data: 00 28  returns 0x02 (0001ms, 0510ms total)
T50BC 000:653 JLINK_ReadMemEx(0x03003746, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003746) - Data: 00 28  returns 0x02 (0001ms, 0511ms total)
T50BC 000:654 JLINK_ReadMemEx(0x03003748, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003748) - Data: 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 04 22 0A 60 ...  returns 0x3C (0001ms, 0512ms total)
T50BC 000:656 JLINK_ReadMemEx(0x03003748, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003748) - Data: 00 D4  returns 0x02 (0001ms, 0514ms total)
T50BC 000:657 JLINK_ReadMemEx(0x03003748, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003748) - Data: 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 04 22 0A 60 ...  returns 0x3C (0001ms, 0515ms total)
T50BC 000:658 JLINK_ReadMemEx(0x03003748, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003748) - Data: 00 D4  returns 0x02 (0001ms, 0516ms total)
T50BC 000:659 JLINK_ReadMemEx(0x0300374A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300374A) - Data: 80 BD  returns 0x02 (0001ms, 0517ms total)
T50BC 003:148 JLINK_ReadReg(R0)  returns 0x00000000 (0001ms, 0518ms total)
T50BC 003:149 JLINK_ReadReg(R1)  returns 0x00000001 (0000ms, 0518ms total)
T50BC 003:149 JLINK_ReadReg(R2)  returns 0xFFFFFFFF (0000ms, 0518ms total)
T50BC 003:149 JLINK_ReadReg(R3)  returns 0x00000011 (0000ms, 0518ms total)
T50BC 003:149 JLINK_ReadReg(R4)  returns 0x00000000 (0000ms, 0518ms total)
T50BC 003:149 JLINK_ReadReg(R5)  returns 0x00000000 (0000ms, 0518ms total)
T50BC 003:149 JLINK_ReadReg(R6)  returns 0x00000000 (0000ms, 0518ms total)
T50BC 003:149 JLINK_ReadReg(R7)  returns 0x0000B524 (0000ms, 0518ms total)
T50BC 003:149 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 0518ms total)
T50BC 003:149 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 0518ms total)
T50BC 003:151 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 0520ms total)
T50BC 003:151 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 0520ms total)
T50BC 003:151 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 0520ms total)
T50BC 003:151 JLINK_ReadReg(R13 (SP))  returns 0x0202F800 (0000ms, 0520ms total)
T50BC 003:151 JLINK_ReadReg(R14)  returns 0x00003AA3 (0000ms, 0520ms total)
T50BC 003:151 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0520ms total)
T50BC 003:151 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0520ms total)
T50BC 003:151 JLINK_ReadReg(MSP)  returns 0x0202F800 (0000ms, 0520ms total)
T50BC 003:151 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 0520ms total)
T50BC 003:151 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0520ms total)
T50BC 003:151 JLINK_ReadMemEx(0x02026B40, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x02026B40) -- Updating C cache (64 bytes @ 0x02026B40) -- Read from C cache (4 bytes @ 0x02026B40) - Data: 8D 2A 10 00  returns 0x04 (0002ms, 0522ms total)
T50BC 003:153 JLINK_ReadMemEx(0x02026B40, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026B40) - Data: 8D 2A 10 00  returns 0x04 (0000ms, 0522ms total)
T50BC 003:153 JLINK_ReadMemEx(0x02026B40, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026B40) - Data: 8D 2A 10 00  returns 0x04 (0000ms, 0522ms total)
T50BC 003:174 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x02026E00) -- Updating C cache (64 bytes @ 0x02026E00) -- Read from C cache (4 bytes @ 0x02026E20) - Data: E9 D9 0E 00  returns 0x04 (0002ms, 0524ms total)
T50BC 003:176 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026E20) - Data: E9 D9 0E 00  returns 0x04 (0000ms, 0524ms total)
T50BC 003:176 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026E20) - Data: E9 D9 0E 00  returns 0x04 (0000ms, 0524ms total)
T50BC 003:189 JLINK_ReadMemEx(0x020276F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x020276C0) -- Updating C cache (64 bytes @ 0x020276C0) -- Read from C cache (4 bytes @ 0x020276F0) - Data: 50 C3 00 00  returns 0x04 (0002ms, 0526ms total)
T50BC 003:191 JLINK_ReadMemEx(0x020276F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x020276F0) - Data: 50 C3 00 00  returns 0x04 (0000ms, 0526ms total)
T50BC 003:191 JLINK_ReadMemEx(0x020276F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x020276F0) - Data: 50 C3 00 00  returns 0x04 (0000ms, 0526ms total)
T50BC 003:208 JLINK_ReadMemEx(0x0202634F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x02026340) -- Updating C cache (64 bytes @ 0x02026340) -- Read from C cache (1 bytes @ 0x0202634F) - Data: 01  returns 0x01 (0002ms, 0528ms total)
T50BC 003:210 JLINK_ReadMemEx(0x0202634F, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x0202634F) - Data: 01  returns 0x01 (0000ms, 0528ms total)
T50BC 003:210 JLINK_ReadMemEx(0x0202634F, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x0202634F) - Data: 01  returns 0x01 (0000ms, 0528ms total)
T50BC 003:221 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x02027640) -- Updating C cache (64 bytes @ 0x02027640) -- Read from C cache (1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0002ms, 0530ms total)
T50BC 003:223 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0000ms, 0530ms total)
T50BC 003:223 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0000ms, 0530ms total)
T50BC 003:232 JLINK_ReadMemEx(0x020274DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x020274C0) -- Updating C cache (64 bytes @ 0x020274C0) -- Read from C cache (1 bytes @ 0x020274DD) - Data: 00  returns 0x01 (0002ms, 0532ms total)
T50BC 003:234 JLINK_ReadMemEx(0x020274DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x020274DD) - Data: 00  returns 0x01 (0000ms, 0532ms total)
T50BC 003:234 JLINK_ReadMemEx(0x020274DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x020274DD) - Data: 00  returns 0x01 (0000ms, 0532ms total)
T50BC 003:269 JLINK_ReadMemEx(0x02026E10, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026E10) - Data: 34 12 00 00  returns 0x04 (0000ms, 0532ms total)
T50BC 003:269 JLINK_ReadMemEx(0x02026E10, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026E10) - Data: 34 12 00 00  returns 0x04 (0000ms, 0532ms total)
T50BC 003:269 JLINK_ReadMemEx(0x02026E10, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026E10) - Data: 34 12 00 00  returns 0x04 (0000ms, 0532ms total)
T50BC 003:308 JLINK_ReadMemEx(0x02028444, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028444) - Data: 0B 28 12 00  returns 0x04 (0001ms, 0533ms total)
T50BC 003:309 JLINK_ReadMemEx(0x02028444, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028444) - Data: 0B 28 12 00  returns 0x04 (0001ms, 0534ms total)
T50BC 003:310 JLINK_ReadMemEx(0x02028444, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028444) - Data: 0B 28 12 00  returns 0x04 (0001ms, 0535ms total)
T50BC 003:323 JLINK_ReadMemEx(0x02028440, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028440) - Data: 55 29 12 00  returns 0x04 (0002ms, 0537ms total)
T50BC 003:325 JLINK_ReadMemEx(0x02028440, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028440) - Data: 55 29 12 00  returns 0x04 (0000ms, 0537ms total)
T50BC 003:326 JLINK_ReadMemEx(0x02028440, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028440) - Data: 55 29 12 00  returns 0x04 (0000ms, 0537ms total)
T50BC 003:341 JLINK_ReadMemEx(0x02028448, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028448) - Data: F7 35 10 00  returns 0x04 (0002ms, 0539ms total)
T50BC 003:343 JLINK_ReadMemEx(0x02028448, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028448) - Data: F7 35 10 00  returns 0x04 (0001ms, 0540ms total)
T50BC 003:344 JLINK_ReadMemEx(0x02028448, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028448) - Data: F7 35 10 00  returns 0x04 (0001ms, 0541ms total)
T50BC 003:357 JLINK_ReadMemEx(0x02028454, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028454) - Data: 01 00 00 00  returns 0x04 (0001ms, 0542ms total)
T50BC 003:358 JLINK_ReadMemEx(0x02028454, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028454) - Data: 01 00 00 00  returns 0x04 (0001ms, 0543ms total)
T50BC 003:359 JLINK_ReadMemEx(0x02028454, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028454) - Data: 01 00 00 00  returns 0x04 (0001ms, 0544ms total)
T50BC 003:401 JLINK_ReadMemEx(0x0202844C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202844C) - Data: FB 1F 0D 00  returns 0x04 (0001ms, 0545ms total)
T50BC 003:402 JLINK_ReadMemEx(0x0202844C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202844C) - Data: FB 1F 0D 00  returns 0x04 (0001ms, 0546ms total)
T50BC 003:403 JLINK_ReadMemEx(0x0202844C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202844C) - Data: FB 1F 0D 00  returns 0x04 (0001ms, 0547ms total)
T50BC 003:417 JLINK_ReadMemEx(0x02026E18, 0x0008 Bytes, ..., Flags = 0x02000000) -- Read from C cache (8 bytes @ 0x02026E18) - Data: 2E E0 D9 41 AE 04 FE 3F  returns 0x08 (0000ms, 0547ms total)
T50BC 003:417 JLINK_ReadMemEx(0x02026E18, 0x0008 Bytes, ..., Flags = 0x02000000) -- Read from C cache (8 bytes @ 0x02026E18) - Data: 2E E0 D9 41 AE 04 FE 3F  returns 0x08 (0000ms, 0547ms total)
T50BC 003:417 JLINK_ReadMemEx(0x02026E18, 0x0008 Bytes, ..., Flags = 0x02000000) -- Read from C cache (8 bytes @ 0x02026E18) - Data: 2E E0 D9 41 AE 04 FE 3F  returns 0x08 (0000ms, 0547ms total)
T50BC 003:432 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0000ms, 0547ms total)
T50BC 003:432 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0000ms, 0547ms total)
T50BC 003:433 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0000ms, 0548ms total)
T50BC 003:448 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026E20) - Data: E9 D9 0E 00  returns 0x04 (0000ms, 0548ms total)
T50BC 003:448 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026E20) - Data: E9 D9 0E 00  returns 0x04 (0000ms, 0548ms total)
T50BC 003:448 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026E20) - Data: E9 D9 0E 00  returns 0x04 (0000ms, 0548ms total)
T50BC 003:463 JLINK_ReadMemEx(0x020277F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x020277C0) -- Updating C cache (64 bytes @ 0x020277C0) -- Read from C cache (4 bytes @ 0x020277F0) - Data: 99 16 0E 00  returns 0x04 (0002ms, 0550ms total)
T50BC 003:465 JLINK_ReadMemEx(0x020277F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x020277F0) - Data: 99 16 0E 00  returns 0x04 (0000ms, 0550ms total)
T50BC 003:465 JLINK_ReadMemEx(0x020277F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x020277F0) - Data: 99 16 0E 00  returns 0x04 (0000ms, 0550ms total)
T50BC 003:652 JLINK_ReadMemEx(0x02028C90, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C90) - Data: 2F D0 DF 02 00 00 00 00  returns 0x08 (0001ms, 0551ms total)
T50BC 003:653 JLINK_ReadMemEx(0x02028C90, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C90) - Data: 2F D0 DF 02 00 00 00 00  returns 0x08 (0001ms, 0552ms total)
T50BC 003:654 JLINK_ReadMemEx(0x02028C90, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C90) - Data: 2F D0 DF 02 00 00 00 00  returns 0x08 (0001ms, 0553ms total)
T50BC 003:675 JLINK_ReadMemEx(0x02028C88, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C88) - Data: 26 D0 DF 02 00 00 00 00  returns 0x08 (0001ms, 0554ms total)
T50BC 003:676 JLINK_ReadMemEx(0x02028C88, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C88) - Data: 26 D0 DF 02 00 00 00 00  returns 0x08 (0001ms, 0555ms total)
T50BC 003:677 JLINK_ReadMemEx(0x02028C88, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C88) - Data: 26 D0 DF 02 00 00 00 00  returns 0x08 (0001ms, 0556ms total)
T50BC 003:695 JLINK_ReadMemEx(0x02028460, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028460) - Data: 69 90 06 69 90 06 B0 3F  returns 0x08 (0001ms, 0557ms total)
T50BC 003:696 JLINK_ReadMemEx(0x02028460, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028460) - Data: 69 90 06 69 90 06 B0 3F  returns 0x08 (0001ms, 0558ms total)
T50BC 003:697 JLINK_ReadMemEx(0x02028460, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028460) - Data: 69 90 06 69 90 06 B0 3F  returns 0x08 (0001ms, 0559ms total)
T50BC 003:716 JLINK_ReadMemEx(0x02028468, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028468) - Data: 04 00 00 00  returns 0x04 (0001ms, 0560ms total)
T50BC 003:717 JLINK_ReadMemEx(0x02028468, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028468) - Data: 04 00 00 00  returns 0x04 (0000ms, 0560ms total)
T50BC 003:717 JLINK_ReadMemEx(0x02028468, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028468) - Data: 04 00 00 00  returns 0x04 (0001ms, 0561ms total)
T50BC 003:772 JLINK_ReadMemEx(0x0202707C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x02027040) -- Updating C cache (64 bytes @ 0x02027040) -- Read from C cache (4 bytes @ 0x0202707C) - Data: 0C EF FF FF  returns 0x04 (0002ms, 0563ms total)
T50BC 003:774 JLINK_ReadMemEx(0x0202707C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x0202707C) - Data: 0C EF FF FF  returns 0x04 (0000ms, 0563ms total)
T50BC 003:774 JLINK_ReadMemEx(0x0202707C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x0202707C) - Data: 0C EF FF FF  returns 0x04 (0000ms, 0563ms total)
T50BC 003:814 JLINK_ReadMemEx(0x02027080, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x02027080) -- Updating C cache (64 bytes @ 0x02027080) -- Read from C cache (4 bytes @ 0x02027080) - Data: DB EF FF FF  returns 0x04 (0002ms, 0565ms total)
T50BC 003:816 JLINK_ReadMemEx(0x02027080, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02027080) - Data: DB EF FF FF  returns 0x04 (0000ms, 0565ms total)
T50BC 003:816 JLINK_ReadMemEx(0x02027080, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02027080) - Data: DB EF FF FF  returns 0x04 (0000ms, 0565ms total)
T69A4 003:908 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0001ms, 0566ms total)
T69A4 003:909 JLINK_SetBPEx(Addr = 0x00007148, Type = 0xFFFFFFF2)  returns 0x00000001 (0000ms, 0566ms total)
T69A4 003:909 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU_WriteMem(4 bytes @ 0xE0002014) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0007ms, 0573ms total)
T69A4 004:017 JLINK_IsHalted()  returns TRUE (0004ms, 0577ms total)
T69A4 004:021 JLINK_Halt()  returns 0x00 (0000ms, 0573ms total)
T69A4 004:021 JLINK_IsHalted()  returns TRUE (0000ms, 0573ms total)
T69A4 004:021 JLINK_IsHalted()  returns TRUE (0000ms, 0573ms total)
T69A4 004:021 JLINK_IsHalted()  returns TRUE (0000ms, 0573ms total)
T69A4 004:021 JLINK_ReadReg(R15 (PC))  returns 0x00007148 (0000ms, 0573ms total)
T69A4 004:021 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 0573ms total)
T69A4 004:021 JLINK_ClrBPEx(BPHandle = 0x00000001)  returns 0x00 (0000ms, 0573ms total)
T69A4 004:021 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0001ms, 0574ms total)
T69A4 004:022 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 0575ms total)
T69A4 004:023 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0001ms, 0576ms total)
T69A4 004:024 JLINK_ReadReg(R0)  returns 0x00007149 (0000ms, 0576ms total)
T69A4 004:024 JLINK_ReadReg(R1)  returns 0x02028E70 (0000ms, 0576ms total)
T69A4 004:024 JLINK_ReadReg(R2)  returns 0x00000000 (0000ms, 0576ms total)
T69A4 004:024 JLINK_ReadReg(R3)  returns 0x0000B9AF (0000ms, 0576ms total)
T69A4 004:024 JLINK_ReadReg(R4)  returns 0x0000D4DC (0000ms, 0576ms total)
T69A4 004:024 JLINK_ReadReg(R5)  returns 0x00000001 (0000ms, 0576ms total)
T69A4 004:024 JLINK_ReadReg(R6)  returns 0x0000D4DC (0000ms, 0576ms total)
T69A4 004:024 JLINK_ReadReg(R7)  returns 0x02000000 (0000ms, 0576ms total)
T69A4 004:024 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 0576ms total)
T69A4 004:024 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 0576ms total)
T69A4 004:024 JLINK_ReadReg(R10)  returns 0x00000000 (0002ms, 0578ms total)
T69A4 004:026 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 0578ms total)
T69A4 004:026 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 0578ms total)
T69A4 004:026 JLINK_ReadReg(R13 (SP))  returns 0x0202F800 (0000ms, 0578ms total)
T69A4 004:026 JLINK_ReadReg(R14)  returns 0x00000B79 (0000ms, 0578ms total)
T69A4 004:026 JLINK_ReadReg(R15 (PC))  returns 0x00007148 (0000ms, 0578ms total)
T69A4 004:026 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 0578ms total)
T69A4 004:026 JLINK_ReadReg(MSP)  returns 0x0202F800 (0000ms, 0578ms total)
T69A4 004:026 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 0578ms total)
T69A4 004:026 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0578ms total)
T50BC 004:033 JLINK_ReadMemEx(0x02026B40, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x02026B40) -- Updating C cache (64 bytes @ 0x02026B40) -- Read from C cache (4 bytes @ 0x02026B40) - Data: 00 00 00 00  returns 0x04 (0001ms, 0579ms total)
T50BC 004:036 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x02026E00) -- Updating C cache (64 bytes @ 0x02026E00) -- Read from C cache (4 bytes @ 0x02026E20) - Data: 00 00 00 00  returns 0x04 (0001ms, 0580ms total)
T50BC 004:037 JLINK_ReadMemEx(0x020276F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x020276C0) -- Updating C cache (64 bytes @ 0x020276C0) -- Read from C cache (4 bytes @ 0x020276F0) - Data: 00 00 00 00  returns 0x04 (0002ms, 0582ms total)
T50BC 004:040 JLINK_ReadMemEx(0x0202634F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x02026340) -- Updating C cache (64 bytes @ 0x02026340) -- Read from C cache (1 bytes @ 0x0202634F) - Data: 01  returns 0x01 (0002ms, 0584ms total)
T50BC 004:042 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x02027640) -- Updating C cache (64 bytes @ 0x02027640) -- Read from C cache (1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0001ms, 0585ms total)
T50BC 004:043 JLINK_ReadMemEx(0x020274DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x020274C0) -- Updating C cache (64 bytes @ 0x020274C0) -- Read from C cache (1 bytes @ 0x020274DD) - Data: 00  returns 0x01 (0003ms, 0588ms total)
T50BC 004:046 JLINK_ReadMemEx(0x02026E10, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026E10) - Data: 00 00 00 00  returns 0x04 (0000ms, 0588ms total)
T50BC 004:047 JLINK_ReadMemEx(0x02028444, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028444) - Data: 00 00 00 00  returns 0x04 (0001ms, 0589ms total)
T50BC 004:048 JLINK_ReadMemEx(0x02028440, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028440) - Data: 00 00 00 00  returns 0x04 (0001ms, 0590ms total)
T50BC 004:049 JLINK_ReadMemEx(0x02028448, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028448) - Data: 00 00 00 00  returns 0x04 (0001ms, 0591ms total)
T50BC 004:052 JLINK_ReadMemEx(0x02028454, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028454) - Data: 00 00 00 00  returns 0x04 (0001ms, 0593ms total)
T50BC 004:055 JLINK_ReadMemEx(0x0202844C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202844C) - Data: 00 00 00 00  returns 0x04 (0001ms, 0594ms total)
T50BC 004:056 JLINK_ReadMemEx(0x02026E18, 0x0008 Bytes, ..., Flags = 0x02000000) -- Read from C cache (8 bytes @ 0x02026E18) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0000ms, 0594ms total)
T50BC 004:056 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0000ms, 0594ms total)
T50BC 004:056 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026E20) - Data: 00 00 00 00  returns 0x04 (0001ms, 0595ms total)
T50BC 004:057 JLINK_ReadMemEx(0x020277F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x020277C0) -- Updating C cache (64 bytes @ 0x020277C0) -- Read from C cache (4 bytes @ 0x020277F0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0596ms total)
T50BC 004:075 JLINK_ReadMemEx(0x02028C90, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C90) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0002ms, 0598ms total)
T50BC 004:077 JLINK_ReadMemEx(0x02028C88, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C88) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0599ms total)
T50BC 004:078 JLINK_ReadMemEx(0x02028460, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028460) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0600ms total)
T50BC 004:079 JLINK_ReadMemEx(0x02028468, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028468) - Data: 00 00 00 00  returns 0x04 (0001ms, 0601ms total)
T50BC 004:080 JLINK_ReadMemEx(0x0202707C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x02027040) -- Updating C cache (64 bytes @ 0x02027040) -- Read from C cache (4 bytes @ 0x0202707C) - Data: 00 00 00 00  returns 0x04 (0001ms, 0602ms total)
T50BC 004:082 JLINK_ReadMemEx(0x02027080, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x02027080) -- Updating C cache (64 bytes @ 0x02027080) -- Read from C cache (4 bytes @ 0x02027080) - Data: 00 00 00 00  returns 0x04 (0001ms, 0603ms total)
T50BC 004:085 JLINK_ReadMemEx(0x00007048, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x00007040) -- Updating C cache (128 bytes @ 0x00007040) -- Read from C cache (60 bytes @ 0x00007048) - Data: 51 18 1D 46 03 98 19 50 00 F0 C0 F9 01 46 70 7A ...  returns 0x3C (0003ms, 0606ms total)
T50BC 004:088 JLINK_ReadMemEx(0x00007048, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007048) - Data: 51 18  returns 0x02 (0000ms, 0606ms total)
T50BC 004:088 JLINK_ReadMemEx(0x0000704A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000704A) - Data: 1D 46  returns 0x02 (0000ms, 0606ms total)
T50BC 004:088 JLINK_ReadMemEx(0x0000704A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000704A) - Data: 1D 46  returns 0x02 (0000ms, 0606ms total)
T50BC 004:088 JLINK_ReadMemEx(0x0000704C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000704C) - Data: 03 98 19 50 00 F0 C0 F9 01 46 70 7A 00 19 02 04 ...  returns 0x3C (0000ms, 0606ms total)
T50BC 004:088 JLINK_ReadMemEx(0x0000704C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000704C) - Data: 03 98  returns 0x02 (0000ms, 0606ms total)
T50BC 004:088 JLINK_ReadMemEx(0x0000704C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000704C) - Data: 03 98 19 50 00 F0 C0 F9 01 46 70 7A 00 19 02 04 ...  returns 0x3C (0000ms, 0606ms total)
T50BC 004:088 JLINK_ReadMemEx(0x0000704C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000704C) - Data: 03 98  returns 0x02 (0000ms, 0606ms total)
T50BC 004:088 JLINK_ReadMemEx(0x0000704E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000704E) - Data: 19 50  returns 0x02 (0000ms, 0606ms total)
T50BC 004:088 JLINK_ReadMemEx(0x0000704E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000704E) - Data: 19 50  returns 0x02 (0001ms, 0607ms total)
T50BC 004:089 JLINK_ReadMemEx(0x00007050, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007050) - Data: 00 F0 C0 F9 01 46 70 7A 00 19 02 04 3E 46 0C D0 ...  returns 0x3C (0000ms, 0607ms total)
T50BC 004:089 JLINK_ReadMemEx(0x00007050, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007050) - Data: 00 F0  returns 0x02 (0000ms, 0607ms total)
T50BC 004:089 JLINK_ReadMemEx(0x00007050, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007050) - Data: 00 F0 C0 F9 01 46 70 7A 00 19 02 04 3E 46 0C D0 ...  returns 0x3C (0000ms, 0607ms total)
T50BC 004:089 JLINK_ReadMemEx(0x00007050, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007050) - Data: 00 F0  returns 0x02 (0000ms, 0607ms total)
T50BC 004:089 JLINK_ReadMemEx(0x00007052, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007052) - Data: C0 F9  returns 0x02 (0000ms, 0607ms total)
T50BC 004:089 JLINK_ReadMemEx(0x00007054, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007054) - Data: 01 46 70 7A 00 19 02 04 3E 46 0C D0 80 B2 C0 00 ...  returns 0x3C (0000ms, 0607ms total)
T50BC 004:089 JLINK_ReadMemEx(0x00007054, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007054) - Data: 01 46  returns 0x02 (0000ms, 0607ms total)
T50BC 004:089 JLINK_ReadMemEx(0x00007056, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007056) - Data: 70 7A  returns 0x02 (0000ms, 0607ms total)
T50BC 004:089 JLINK_ReadMemEx(0x00007056, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007056) - Data: 70 7A  returns 0x02 (0000ms, 0607ms total)
T50BC 004:089 JLINK_ReadMemEx(0x00007058, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007058) - Data: 00 19 02 04 3E 46 0C D0 80 B2 C0 00 00 29 00 D1 ...  returns 0x3C (0000ms, 0607ms total)
T50BC 004:089 JLINK_ReadMemEx(0x00007058, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007058) - Data: 00 19  returns 0x02 (0000ms, 0607ms total)
T50BC 004:089 JLINK_ReadMemEx(0x00007058, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007058) - Data: 00 19 02 04 3E 46 0C D0 80 B2 C0 00 00 29 00 D1 ...  returns 0x3C (0000ms, 0607ms total)
T50BC 004:089 JLINK_ReadMemEx(0x00007058, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007058) - Data: 00 19  returns 0x02 (0000ms, 0607ms total)
T50BC 004:089 JLINK_ReadMemEx(0x0000705A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000705A) - Data: 02 04  returns 0x02 (0000ms, 0607ms total)
T50BC 004:089 JLINK_ReadMemEx(0x0000705A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000705A) - Data: 02 04  returns 0x02 (0001ms, 0608ms total)
T50BC 004:090 JLINK_ReadMemEx(0x0000705C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000705C) - Data: 3E 46 0C D0 80 B2 C0 00 00 29 00 D1 80 1E 02 9F ...  returns 0x3C (0000ms, 0608ms total)
T50BC 004:090 JLINK_ReadMemEx(0x0000705C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000705C) - Data: 3E 46  returns 0x02 (0000ms, 0608ms total)
T50BC 004:090 JLINK_ReadMemEx(0x0000705C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000705C) - Data: 3E 46 0C D0 80 B2 C0 00 00 29 00 D1 80 1E 02 9F ...  returns 0x3C (0000ms, 0608ms total)
T50BC 004:090 JLINK_ReadMemEx(0x0000705C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000705C) - Data: 3E 46  returns 0x02 (0000ms, 0608ms total)
T50BC 004:090 JLINK_ReadMemEx(0x0000705E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000705E) - Data: 0C D0  returns 0x02 (0000ms, 0608ms total)
T50BC 004:090 JLINK_ReadMemEx(0x0000705E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000705E) - Data: 0C D0  returns 0x02 (0000ms, 0608ms total)
T50BC 004:090 JLINK_ReadMemEx(0x00007060, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007060) - Data: 80 B2 C0 00 00 29 00 D1 80 1E 02 9F A5 21 49 00 ...  returns 0x3C (0000ms, 0608ms total)
T50BC 004:090 JLINK_ReadMemEx(0x00007060, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007060) - Data: 80 B2  returns 0x02 (0000ms, 0608ms total)
T50BC 004:090 JLINK_ReadMemEx(0x00007060, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007060) - Data: 80 B2 C0 00 00 29 00 D1 80 1E 02 9F A5 21 49 00 ...  returns 0x3C (0000ms, 0608ms total)
T50BC 004:090 JLINK_ReadMemEx(0x00007060, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007060) - Data: 80 B2  returns 0x02 (0000ms, 0608ms total)
T50BC 004:090 JLINK_ReadMemEx(0x00007062, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007062) - Data: C0 00  returns 0x02 (0000ms, 0608ms total)
T50BC 004:090 JLINK_ReadMemEx(0x00007062, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007062) - Data: C0 00  returns 0x02 (0000ms, 0608ms total)
T50BC 004:090 JLINK_ReadMemEx(0x00007064, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007064) - Data: 00 29 00 D1 80 1E 02 9F A5 21 49 00 F9 F7 30 F8 ...  returns 0x3C (0000ms, 0608ms total)
T50BC 004:090 JLINK_ReadMemEx(0x00007064, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007064) - Data: 00 29  returns 0x02 (0001ms, 0609ms total)
T50BC 004:091 JLINK_ReadMemEx(0x00007064, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007064) - Data: 00 29 00 D1 80 1E 02 9F A5 21 49 00 F9 F7 30 F8 ...  returns 0x3C (0000ms, 0609ms total)
T50BC 004:091 JLINK_ReadMemEx(0x00007064, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007064) - Data: 00 29  returns 0x02 (0000ms, 0609ms total)
T50BC 004:091 JLINK_ReadMemEx(0x00007066, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007066) - Data: 00 D1  returns 0x02 (0000ms, 0609ms total)
T50BC 004:091 JLINK_ReadMemEx(0x00007066, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007066) - Data: 00 D1  returns 0x02 (0000ms, 0609ms total)
T50BC 004:091 JLINK_ReadMemEx(0x00007068, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007068) - Data: 80 1E 02 9F A5 21 49 00 F9 F7 30 F8 1F 21 01 40 ...  returns 0x3C (0000ms, 0609ms total)
T50BC 004:091 JLINK_ReadMemEx(0x00007068, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007068) - Data: 80 1E  returns 0x02 (0000ms, 0609ms total)
T50BC 004:091 JLINK_ReadMemEx(0x00007068, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007068) - Data: 80 1E 02 9F A5 21 49 00 F9 F7 30 F8 1F 21 01 40 ...  returns 0x3C (0000ms, 0609ms total)
T50BC 004:091 JLINK_ReadMemEx(0x00007068, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007068) - Data: 80 1E  returns 0x02 (0000ms, 0609ms total)
T50BC 004:091 JLINK_ReadMemEx(0x0000706A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000706A) - Data: 02 9F  returns 0x02 (0000ms, 0609ms total)
T50BC 004:091 JLINK_ReadMemEx(0x0000706A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000706A) - Data: 02 9F  returns 0x02 (0000ms, 0609ms total)
T50BC 004:091 JLINK_ReadMemEx(0x0000706C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000706C) - Data: A5 21 49 00 F9 F7 30 F8 1F 21 01 40 01 E0 00 21 ...  returns 0x3C (0000ms, 0609ms total)
T50BC 004:091 JLINK_ReadMemEx(0x0000706C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000706C) - Data: A5 21  returns 0x02 (0000ms, 0609ms total)
T50BC 004:091 JLINK_ReadMemEx(0x0000706C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000706C) - Data: A5 21 49 00 F9 F7 30 F8 1F 21 01 40 01 E0 00 21 ...  returns 0x3C (0000ms, 0609ms total)
T50BC 004:091 JLINK_ReadMemEx(0x0000706C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000706C) - Data: A5 21  returns 0x02 (0000ms, 0609ms total)
T50BC 004:091 JLINK_ReadMemEx(0x0000706E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000706E) - Data: 49 00  returns 0x02 (0001ms, 0610ms total)
T50BC 004:092 JLINK_ReadMemEx(0x0000706E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000706E) - Data: 49 00  returns 0x02 (0000ms, 0610ms total)
T50BC 004:092 JLINK_ReadMemEx(0x00007070, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007070) - Data: F9 F7 30 F8 1F 21 01 40 01 E0 00 21 02 9F 38 01 ...  returns 0x3C (0000ms, 0610ms total)
T50BC 004:092 JLINK_ReadMemEx(0x00007070, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007070) - Data: F9 F7  returns 0x02 (0000ms, 0610ms total)
T50BC 004:092 JLINK_ReadMemEx(0x00007070, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007070) - Data: F9 F7 30 F8 1F 21 01 40 01 E0 00 21 02 9F 38 01 ...  returns 0x3C (0000ms, 0610ms total)
T50BC 004:092 JLINK_ReadMemEx(0x00007070, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007070) - Data: F9 F7  returns 0x02 (0000ms, 0610ms total)
T50BC 004:092 JLINK_ReadMemEx(0x00007072, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007072) - Data: 30 F8  returns 0x02 (0000ms, 0610ms total)
T50BC 004:092 JLINK_ReadMemEx(0x00007074, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007074) - Data: 1F 21 01 40 01 E0 00 21 02 9F 38 01 28 18 42 79 ...  returns 0x3C (0000ms, 0610ms total)
T50BC 004:092 JLINK_ReadMemEx(0x00007074, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007074) - Data: 1F 21  returns 0x02 (0000ms, 0610ms total)
T50BC 004:092 JLINK_ReadMemEx(0x00007076, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007076) - Data: 01 40  returns 0x02 (0000ms, 0610ms total)
T50BC 004:092 JLINK_ReadMemEx(0x00007076, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007076) - Data: 01 40  returns 0x02 (0000ms, 0610ms total)
T50BC 004:092 JLINK_ReadMemEx(0x00007078, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007078) - Data: 01 E0 00 21 02 9F 38 01 28 18 42 79 83 79 1B 02 ...  returns 0x3C (0000ms, 0610ms total)
T50BC 004:092 JLINK_ReadMemEx(0x00007078, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007078) - Data: 01 E0  returns 0x02 (0000ms, 0610ms total)
T50BC 004:092 JLINK_ReadMemEx(0x00007078, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007078) - Data: 01 E0 00 21 02 9F 38 01 28 18 42 79 83 79 1B 02 ...  returns 0x3C (0000ms, 0610ms total)
T50BC 004:092 JLINK_ReadMemEx(0x00007078, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007078) - Data: 01 E0  returns 0x02 (0000ms, 0610ms total)
T50BC 004:092 JLINK_ReadMemEx(0x0000707A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000707A) - Data: 00 21  returns 0x02 (0001ms, 0611ms total)
T50BC 004:093 JLINK_ReadMemEx(0x0000707A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000707A) - Data: 00 21  returns 0x02 (0000ms, 0611ms total)
T50BC 004:093 JLINK_ReadMemEx(0x0000707C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000707C) - Data: 02 9F 38 01 28 18 42 79 83 79 1B 02 9A 18 C3 79 ...  returns 0x3C (0000ms, 0611ms total)
T50BC 004:093 JLINK_ReadMemEx(0x0000707C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000707C) - Data: 02 9F  returns 0x02 (0000ms, 0611ms total)
T50BC 004:093 JLINK_ReadMemEx(0x0000707C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000707C) - Data: 02 9F 38 01 28 18 42 79 83 79 1B 02 9A 18 C3 79 ...  returns 0x3C (0000ms, 0611ms total)
T50BC 004:093 JLINK_ReadMemEx(0x0000707C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000707C) - Data: 02 9F  returns 0x02 (0000ms, 0611ms total)
T50BC 004:093 JLINK_ReadMemEx(0x0000707E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000707E) - Data: 38 01  returns 0x02 (0000ms, 0611ms total)
T50BC 004:093 JLINK_ReadMemEx(0x0000707E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000707E) - Data: 38 01  returns 0x02 (0000ms, 0611ms total)
T50BC 004:093 JLINK_ReadMemEx(0x00007080, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007080) - Data: 28 18 42 79 83 79 1B 02 9A 18 C3 79 1B 04 D2 18 ...  returns 0x3C (0000ms, 0611ms total)
T50BC 004:093 JLINK_ReadMemEx(0x00007080, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007080) - Data: 28 18  returns 0x02 (0000ms, 0611ms total)
T50BC 004:093 JLINK_ReadMemEx(0x00007080, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007080) - Data: 28 18 42 79 83 79 1B 02 9A 18 C3 79 1B 04 D2 18 ...  returns 0x3C (0000ms, 0611ms total)
T50BC 004:093 JLINK_ReadMemEx(0x00007080, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007080) - Data: 28 18  returns 0x02 (0000ms, 0611ms total)
T50BC 004:093 JLINK_ReadMemEx(0x00007082, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007082) - Data: 42 79  returns 0x02 (0000ms, 0611ms total)
T50BC 004:093 JLINK_ReadMemEx(0x00007082, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007082) - Data: 42 79  returns 0x02 (0000ms, 0611ms total)
T50BC 004:093 JLINK_ReadMemEx(0x00007084, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007084) - Data: 83 79 1B 02 9A 18 C3 79 1B 04 D2 18 2C 4B 13 40 ...  returns 0x3C (0001ms, 0612ms total)
T50BC 004:094 JLINK_ReadMemEx(0x00007084, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007084) - Data: 83 79  returns 0x02 (0000ms, 0612ms total)
T50BC 004:094 JLINK_ReadMemEx(0x00007084, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007084) - Data: 83 79 1B 02 9A 18 C3 79 1B 04 D2 18 2C 4B 13 40 ...  returns 0x3C (0000ms, 0612ms total)
T50BC 004:094 JLINK_ReadMemEx(0x00007084, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007084) - Data: 83 79  returns 0x02 (0000ms, 0612ms total)
T50BC 004:094 JLINK_ReadMemEx(0x00007086, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007086) - Data: 1B 02  returns 0x02 (0000ms, 0612ms total)
T50BC 004:094 JLINK_ReadMemEx(0x00007086, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007086) - Data: 1B 02  returns 0x02 (0000ms, 0612ms total)
T50BC 004:094 JLINK_ReadMemEx(0x00007088, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x000070C0) -- Updating C cache (64 bytes @ 0x000070C0) -- Read from C cache (60 bytes @ 0x00007088) - Data: 9A 18 C3 79 1B 04 D2 18 2C 4B 13 40 43 71 09 04 ...  returns 0x3C (0001ms, 0613ms total)
T50BC 004:095 JLINK_ReadMemEx(0x00007088, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007088) - Data: 9A 18  returns 0x02 (0000ms, 0613ms total)
T50BC 004:095 JLINK_ReadMemEx(0x00007088, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007088) - Data: 9A 18 C3 79 1B 04 D2 18 2C 4B 13 40 43 71 09 04 ...  returns 0x3C (0000ms, 0613ms total)
T50BC 004:096 JLINK_ReadMemEx(0x00007088, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007088) - Data: 9A 18  returns 0x02 (0000ms, 0614ms total)
T50BC 004:096 JLINK_ReadMemEx(0x0000708A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000708A) - Data: C3 79  returns 0x02 (0000ms, 0614ms total)
T50BC 004:096 JLINK_ReadMemEx(0x0000708A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000708A) - Data: C3 79  returns 0x02 (0000ms, 0614ms total)
T50BC 004:096 JLINK_ReadMemEx(0x0000708C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000708C) - Data: 1B 04 D2 18 2C 4B 13 40 43 71 09 04 59 18 09 0C ...  returns 0x3C (0001ms, 0615ms total)
T50BC 004:097 JLINK_ReadMemEx(0x0000708C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000708C) - Data: 1B 04  returns 0x02 (0000ms, 0615ms total)
T50BC 004:097 JLINK_ReadMemEx(0x0000708C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000708C) - Data: 1B 04 D2 18 2C 4B 13 40 43 71 09 04 59 18 09 0C ...  returns 0x3C (0000ms, 0615ms total)
T50BC 004:097 JLINK_ReadMemEx(0x0000708C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000708C) - Data: 1B 04  returns 0x02 (0000ms, 0615ms total)
T50BC 004:097 JLINK_ReadMemEx(0x0000708E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000708E) - Data: D2 18  returns 0x02 (0000ms, 0615ms total)
T50BC 004:097 JLINK_ReadMemEx(0x0000708E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000708E) - Data: D2 18  returns 0x02 (0000ms, 0615ms total)
T50BC 004:097 JLINK_ReadMemEx(0x00007090, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007090) - Data: 2C 4B 13 40 43 71 09 04 59 18 09 0C C1 71 00 2C ...  returns 0x3C (0000ms, 0615ms total)
T50BC 004:097 JLINK_ReadMemEx(0x00007090, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007090) - Data: 2C 4B  returns 0x02 (0000ms, 0615ms total)
T50BC 004:097 JLINK_ReadMemEx(0x00007090, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007090) - Data: 2C 4B 13 40 43 71 09 04 59 18 09 0C C1 71 00 2C ...  returns 0x3C (0000ms, 0615ms total)
T50BC 004:097 JLINK_ReadMemEx(0x00007090, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007090) - Data: 2C 4B  returns 0x02 (0000ms, 0615ms total)
T50BC 004:097 JLINK_ReadMemEx(0x00007092, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007092) - Data: 13 40  returns 0x02 (0000ms, 0615ms total)
T50BC 004:097 JLINK_ReadMemEx(0x00007092, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007092) - Data: 13 40  returns 0x02 (0000ms, 0615ms total)
T50BC 004:097 JLINK_ReadMemEx(0x00007094, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007094) - Data: 43 71 09 04 59 18 09 0C C1 71 00 2C 20 D0 15 48 ...  returns 0x3C (0000ms, 0615ms total)
T50BC 004:098 JLINK_ReadMemEx(0x00007094, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007094) - Data: 43 71  returns 0x02 (0000ms, 0616ms total)
T50BC 004:098 JLINK_ReadMemEx(0x00007094, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007094) - Data: 43 71 09 04 59 18 09 0C C1 71 00 2C 20 D0 15 48 ...  returns 0x3C (0000ms, 0616ms total)
T50BC 004:098 JLINK_ReadMemEx(0x00007094, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007094) - Data: 43 71  returns 0x02 (0000ms, 0616ms total)
T50BC 004:098 JLINK_ReadMemEx(0x00007096, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007096) - Data: 09 04  returns 0x02 (0000ms, 0616ms total)
T50BC 004:098 JLINK_ReadMemEx(0x00007096, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007096) - Data: 09 04  returns 0x02 (0000ms, 0616ms total)
T50BC 004:098 JLINK_ReadMemEx(0x00007098, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007098) - Data: 59 18 09 0C C1 71 00 2C 20 D0 15 48 35 46 06 46 ...  returns 0x3C (0000ms, 0616ms total)
T50BC 004:098 JLINK_ReadMemEx(0x00007098, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007098) - Data: 59 18  returns 0x02 (0000ms, 0616ms total)
T50BC 004:098 JLINK_ReadMemEx(0x00007098, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007098) - Data: 59 18 09 0C C1 71 00 2C 20 D0 15 48 35 46 06 46 ...  returns 0x3C (0000ms, 0616ms total)
T50BC 004:098 JLINK_ReadMemEx(0x00007098, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007098) - Data: 59 18  returns 0x02 (0000ms, 0616ms total)
T50BC 004:098 JLINK_ReadMemEx(0x0000709A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000709A) - Data: 09 0C  returns 0x02 (0000ms, 0616ms total)
T50BC 004:098 JLINK_ReadMemEx(0x0000709A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000709A) - Data: 09 0C  returns 0x02 (0000ms, 0616ms total)
T50BC 004:098 JLINK_ReadMemEx(0x0000709C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000709C) - Data: C1 71 00 2C 20 D0 15 48 35 46 06 46 00 7B 00 9B ...  returns 0x3C (0001ms, 0617ms total)
T50BC 004:099 JLINK_ReadMemEx(0x0000709C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000709C) - Data: C1 71  returns 0x02 (0000ms, 0617ms total)
T50BC 004:099 JLINK_ReadMemEx(0x0000709C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000709C) - Data: C1 71 00 2C 20 D0 15 48 35 46 06 46 00 7B 00 9B ...  returns 0x3C (0000ms, 0617ms total)
T50BC 004:099 JLINK_ReadMemEx(0x0000709C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000709C) - Data: C1 71  returns 0x02 (0000ms, 0617ms total)
T50BC 004:099 JLINK_ReadMemEx(0x0000709E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000709E) - Data: 00 2C  returns 0x02 (0000ms, 0617ms total)
T50BC 004:099 JLINK_ReadMemEx(0x0000709E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000709E) - Data: 00 2C  returns 0x02 (0000ms, 0617ms total)
T50BC 004:099 JLINK_ReadMemEx(0x000070A0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000070A0) - Data: 20 D0 15 48 35 46 06 46 00 7B 00 9B 43 43 F1 7A ...  returns 0x3C (0000ms, 0617ms total)
T50BC 004:099 JLINK_ReadMemEx(0x000070A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070A0) - Data: 20 D0  returns 0x02 (0000ms, 0617ms total)
T50BC 004:099 JLINK_ReadMemEx(0x000070A0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000070A0) - Data: 20 D0 15 48 35 46 06 46 00 7B 00 9B 43 43 F1 7A ...  returns 0x3C (0000ms, 0617ms total)
T50BC 004:099 JLINK_ReadMemEx(0x000070A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070A0) - Data: 20 D0  returns 0x02 (0000ms, 0617ms total)
T50BC 004:099 JLINK_ReadMemEx(0x000070A2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070A2) - Data: 15 48  returns 0x02 (0000ms, 0617ms total)
T50BC 004:099 JLINK_ReadMemEx(0x000070A2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070A2) - Data: 15 48  returns 0x02 (0000ms, 0617ms total)
T50BC 004:099 JLINK_ReadMemEx(0x000070A4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000070A4) - Data: 35 46 06 46 00 7B 00 9B 43 43 F1 7A 0A 01 06 9F ...  returns 0x3C (0000ms, 0617ms total)
T50BC 004:099 JLINK_ReadMemEx(0x000070A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070A4) - Data: 35 46  returns 0x02 (0000ms, 0617ms total)
T50BC 004:099 JLINK_ReadMemEx(0x000070A4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000070A4) - Data: 35 46 06 46 00 7B 00 9B 43 43 F1 7A 0A 01 06 9F ...  returns 0x3C (0000ms, 0617ms total)
T50BC 004:099 JLINK_ReadMemEx(0x000070A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070A4) - Data: 35 46  returns 0x02 (0001ms, 0618ms total)
T50BC 004:100 JLINK_ReadMemEx(0x000070A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070A6) - Data: 06 46  returns 0x02 (0000ms, 0618ms total)
T50BC 004:100 JLINK_ReadMemEx(0x000070A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070A6) - Data: 06 46  returns 0x02 (0000ms, 0618ms total)
T50BC 004:100 JLINK_ReadMemEx(0x000070A8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000070A8) - Data: 00 7B 00 9B 43 43 F1 7A 0A 01 06 9F 3A 43 D2 18 ...  returns 0x3C (0000ms, 0618ms total)
T50BC 004:100 JLINK_ReadMemEx(0x000070A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070A8) - Data: 00 7B  returns 0x02 (0000ms, 0618ms total)
T50BC 004:100 JLINK_ReadMemEx(0x000070A8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000070A8) - Data: 00 7B 00 9B 43 43 F1 7A 0A 01 06 9F 3A 43 D2 18 ...  returns 0x3C (0000ms, 0618ms total)
T50BC 004:100 JLINK_ReadMemEx(0x000070A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070A8) - Data: 00 7B  returns 0x02 (0000ms, 0618ms total)
T50BC 004:100 JLINK_ReadMemEx(0x000070AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070AA) - Data: 00 9B  returns 0x02 (0000ms, 0618ms total)
T50BC 004:100 JLINK_ReadMemEx(0x000070AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070AA) - Data: 00 9B  returns 0x02 (0000ms, 0618ms total)
T50BC 004:100 JLINK_ReadMemEx(0x000070AC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000070AC) - Data: 43 43 F1 7A 0A 01 06 9F 3A 43 D2 18 41 18 8B 00 ...  returns 0x3C (0000ms, 0618ms total)
T50BC 004:100 JLINK_ReadMemEx(0x000070AC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070AC) - Data: 43 43  returns 0x02 (0000ms, 0618ms total)
T50BC 004:100 JLINK_ReadMemEx(0x000070AC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000070AC) - Data: 43 43 F1 7A 0A 01 06 9F 3A 43 D2 18 41 18 8B 00 ...  returns 0x3C (0000ms, 0618ms total)
T50BC 004:100 JLINK_ReadMemEx(0x000070AC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070AC) - Data: 43 43  returns 0x02 (0000ms, 0618ms total)
T50BC 004:100 JLINK_ReadMemEx(0x000070AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070AE) - Data: F1 7A  returns 0x02 (0000ms, 0618ms total)
T50BC 004:100 JLINK_ReadMemEx(0x000070AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070AE) - Data: F1 7A  returns 0x02 (0000ms, 0618ms total)
T50BC 004:100 JLINK_ReadMemEx(0x000070B0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000070B0) - Data: 0A 01 06 9F 3A 43 D2 18 41 18 8B 00 D2 18 05 9B ...  returns 0x3C (0000ms, 0618ms total)
T50BC 004:100 JLINK_ReadMemEx(0x000070B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070B0) - Data: 0A 01  returns 0x02 (0000ms, 0618ms total)
T50BC 004:100 JLINK_ReadMemEx(0x000070B0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000070B0) - Data: 0A 01 06 9F 3A 43 D2 18 41 18 8B 00 D2 18 05 9B ...  returns 0x3C (0000ms, 0618ms total)
T50BC 004:100 JLINK_ReadMemEx(0x000070B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070B0) - Data: 0A 01  returns 0x02 (0000ms, 0618ms total)
T50BC 004:100 JLINK_ReadMemEx(0x000070B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070B2) - Data: 06 9F  returns 0x02 (0000ms, 0618ms total)
T50BC 004:100 JLINK_ReadMemEx(0x000070B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070B2) - Data: 06 9F  returns 0x02 (0000ms, 0618ms total)
T50BC 004:100 JLINK_ReadMemEx(0x000070B4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000070B4) - Data: 3A 43 D2 18 41 18 8B 00 D2 18 05 9B 4B 43 D1 18 ...  returns 0x3C (0000ms, 0618ms total)
T50BC 004:100 JLINK_ReadMemEx(0x000070B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070B4) - Data: 3A 43  returns 0x02 (0000ms, 0618ms total)
T50BC 004:100 JLINK_ReadMemEx(0x000070B4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000070B4) - Data: 3A 43 D2 18 41 18 8B 00 D2 18 05 9B 4B 43 D1 18 ...  returns 0x3C (0001ms, 0619ms total)
T50BC 004:101 JLINK_ReadMemEx(0x000070B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070B4) - Data: 3A 43  returns 0x02 (0000ms, 0619ms total)
T50BC 004:101 JLINK_ReadMemEx(0x000070B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070B6) - Data: D2 18  returns 0x02 (0000ms, 0619ms total)
T50BC 004:101 JLINK_ReadMemEx(0x000070B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070B6) - Data: D2 18  returns 0x02 (0000ms, 0619ms total)
T50BC 004:101 JLINK_ReadMemEx(0x000070B8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000070B8) - Data: 41 18 8B 00 D2 18 05 9B 4B 43 D1 18 72 7B 07 9B ...  returns 0x3C (0000ms, 0619ms total)
T50BC 004:101 JLINK_ReadMemEx(0x000070B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070B8) - Data: 41 18  returns 0x02 (0000ms, 0619ms total)
T50BC 004:101 JLINK_ReadMemEx(0x000070B8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000070B8) - Data: 41 18 8B 00 D2 18 05 9B 4B 43 D1 18 72 7B 07 9B ...  returns 0x3C (0000ms, 0619ms total)
T50BC 004:101 JLINK_ReadMemEx(0x000070B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070B8) - Data: 41 18  returns 0x02 (0000ms, 0619ms total)
T50BC 004:101 JLINK_ReadMemEx(0x000070BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070BA) - Data: 8B 00  returns 0x02 (0000ms, 0619ms total)
T50BC 004:101 JLINK_ReadMemEx(0x000070BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070BA) - Data: 8B 00  returns 0x02 (0000ms, 0619ms total)
T50BC 004:101 JLINK_ReadMemEx(0x000070BC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000070BC) - Data: D2 18 05 9B 4B 43 D1 18 72 7B 07 9B 53 43 C9 18 ...  returns 0x3C (0000ms, 0619ms total)
T50BC 004:101 JLINK_ReadMemEx(0x000070BC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070BC) - Data: D2 18  returns 0x02 (0000ms, 0619ms total)
T50BC 004:101 JLINK_ReadMemEx(0x000070BC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000070BC) - Data: D2 18 05 9B 4B 43 D1 18 72 7B 07 9B 53 43 C9 18 ...  returns 0x3C (0000ms, 0619ms total)
T50BC 004:101 JLINK_ReadMemEx(0x000070BC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070BC) - Data: D2 18  returns 0x02 (0000ms, 0619ms total)
T50BC 004:101 JLINK_ReadMemEx(0x000070BE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070BE) - Data: 05 9B  returns 0x02 (0001ms, 0620ms total)
T50BC 004:102 JLINK_ReadMemEx(0x000070BE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070BE) - Data: 05 9B  returns 0x02 (0000ms, 0620ms total)
T50BC 004:102 JLINK_ReadMemEx(0x000070C0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000070C0) - Data: 4B 43 D1 18 72 7B 07 9B 53 43 C9 18 40 19 1C 4A ...  returns 0x3C (0000ms, 0620ms total)
T50BC 004:102 JLINK_ReadMemEx(0x000070C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070C0) - Data: 4B 43  returns 0x02 (0000ms, 0620ms total)
T50BC 004:102 JLINK_ReadMemEx(0x000070C0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000070C0) - Data: 4B 43 D1 18 72 7B 07 9B 53 43 C9 18 40 19 1C 4A ...  returns 0x3C (0000ms, 0620ms total)
T50BC 004:102 JLINK_ReadMemEx(0x000070C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070C0) - Data: 4B 43  returns 0x02 (0000ms, 0620ms total)
T50BC 004:102 JLINK_ReadMemEx(0x000070C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070C2) - Data: D1 18  returns 0x02 (0000ms, 0620ms total)
T50BC 004:102 JLINK_ReadMemEx(0x000070C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070C2) - Data: D1 18  returns 0x02 (0000ms, 0620ms total)
T50BC 004:102 JLINK_ReadMemEx(0x000070C4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000070C4) - Data: 72 7B 07 9B 53 43 C9 18 40 19 1C 4A 12 88 42 43 ...  returns 0x3C (0000ms, 0620ms total)
T50BC 004:102 JLINK_ReadMemEx(0x000070C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070C4) - Data: 72 7B  returns 0x02 (0000ms, 0620ms total)
T50BC 004:102 JLINK_ReadMemEx(0x000070C4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000070C4) - Data: 72 7B 07 9B 53 43 C9 18 40 19 1C 4A 12 88 42 43 ...  returns 0x3C (0000ms, 0620ms total)
T50BC 004:102 JLINK_ReadMemEx(0x000070C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070C4) - Data: 72 7B  returns 0x02 (0000ms, 0620ms total)
T50BC 004:102 JLINK_ReadMemEx(0x000070C6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070C6) - Data: 07 9B  returns 0x02 (0000ms, 0620ms total)
T50BC 004:102 JLINK_ReadMemEx(0x000070C6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070C6) - Data: 07 9B  returns 0x02 (0000ms, 0620ms total)
T50BC 004:102 JLINK_ReadMemEx(0x000070C8, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00007100) -- Updating C cache (64 bytes @ 0x00007100) -- Read from C cache (60 bytes @ 0x000070C8) - Data: 53 43 C9 18 40 19 1C 4A 12 88 42 43 88 18 01 99 ...  returns 0x3C (0002ms, 0622ms total)
T50BC 004:104 JLINK_ReadMemEx(0x000070C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070C8) - Data: 53 43  returns 0x02 (0000ms, 0622ms total)
T50BC 004:104 JLINK_ReadMemEx(0x000070C8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000070C8) - Data: 53 43 C9 18 40 19 1C 4A 12 88 42 43 88 18 01 99 ...  returns 0x3C (0000ms, 0622ms total)
T50BC 004:104 JLINK_ReadMemEx(0x000070C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070C8) - Data: 53 43  returns 0x02 (0000ms, 0622ms total)
T50BC 004:104 JLINK_ReadMemEx(0x000070CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070CA) - Data: C9 18  returns 0x02 (0000ms, 0622ms total)
T50BC 004:104 JLINK_ReadMemEx(0x000070CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070CA) - Data: C9 18  returns 0x02 (0001ms, 0623ms total)
T50BC 004:105 JLINK_ReadMemEx(0x000070CC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000070CC) - Data: 40 19 1C 4A 12 88 42 43 88 18 01 99 88 42 03 D0 ...  returns 0x3C (0000ms, 0623ms total)
T50BC 004:105 JLINK_ReadMemEx(0x000070CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070CC) - Data: 40 19  returns 0x02 (0000ms, 0623ms total)
T50BC 004:105 JLINK_ReadMemEx(0x000070CC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000070CC) - Data: 40 19 1C 4A 12 88 42 43 88 18 01 99 88 42 03 D0 ...  returns 0x3C (0000ms, 0623ms total)
T50BC 004:105 JLINK_ReadMemEx(0x000070CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070CC) - Data: 40 19  returns 0x02 (0000ms, 0623ms total)
T50BC 004:105 JLINK_ReadMemEx(0x000070CE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070CE) - Data: 1C 4A  returns 0x02 (0000ms, 0623ms total)
T50BC 004:105 JLINK_ReadMemEx(0x000070CE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070CE) - Data: 1C 4A  returns 0x02 (0000ms, 0623ms total)
T50BC 004:105 JLINK_ReadMemEx(0x000070D0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000070D0) - Data: 12 88 42 43 88 18 01 99 88 42 03 D0 01 99 22 46 ...  returns 0x3C (0000ms, 0623ms total)
T50BC 004:105 JLINK_ReadMemEx(0x000070D0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070D0) - Data: 12 88  returns 0x02 (0000ms, 0623ms total)
T50BC 004:105 JLINK_ReadMemEx(0x000070D0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000070D0) - Data: 12 88 42 43 88 18 01 99 88 42 03 D0 01 99 22 46 ...  returns 0x3C (0000ms, 0623ms total)
T50BC 004:105 JLINK_ReadMemEx(0x000070D0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070D0) - Data: 12 88  returns 0x02 (0001ms, 0624ms total)
T50BC 004:106 JLINK_ReadMemEx(0x000070D2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070D2) - Data: 42 43  returns 0x02 (0000ms, 0624ms total)
T50BC 004:106 JLINK_ReadMemEx(0x000070D2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070D2) - Data: 42 43  returns 0x02 (0000ms, 0624ms total)
T50BC 004:106 JLINK_ReadMemEx(0x000070D4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000070D4) - Data: 88 18 01 99 88 42 03 D0 01 99 22 46 F9 F7 48 F8 ...  returns 0x3C (0000ms, 0624ms total)
T50BC 004:106 JLINK_ReadMemEx(0x000070D4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070D4) - Data: 88 18  returns 0x02 (0000ms, 0624ms total)
T50BC 004:106 JLINK_ReadMemEx(0x000070D4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000070D4) - Data: 88 18 01 99 88 42 03 D0 01 99 22 46 F9 F7 48 F8 ...  returns 0x3C (0000ms, 0624ms total)
T50BC 004:106 JLINK_ReadMemEx(0x000070D4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070D4) - Data: 88 18  returns 0x02 (0000ms, 0624ms total)
T50BC 004:106 JLINK_ReadMemEx(0x000070D6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070D6) - Data: 01 99  returns 0x02 (0000ms, 0624ms total)
T50BC 004:106 JLINK_ReadMemEx(0x000070D6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070D6) - Data: 01 99  returns 0x02 (0000ms, 0624ms total)
T50BC 004:106 JLINK_ReadMemEx(0x000070D8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000070D8) - Data: 88 42 03 D0 01 99 22 46 F9 F7 48 F8 09 B0 F0 BD ...  returns 0x3C (0000ms, 0624ms total)
T50BC 004:106 JLINK_ReadMemEx(0x000070D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070D8) - Data: 88 42  returns 0x02 (0001ms, 0625ms total)
T50BC 004:107 JLINK_ReadMemEx(0x000070D8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000070D8) - Data: 88 42 03 D0 01 99 22 46 F9 F7 48 F8 09 B0 F0 BD ...  returns 0x3C (0000ms, 0625ms total)
T50BC 004:107 JLINK_ReadMemEx(0x000070D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070D8) - Data: 88 42  returns 0x02 (0000ms, 0625ms total)
T50BC 004:107 JLINK_ReadMemEx(0x000070DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070DA) - Data: 03 D0  returns 0x02 (0000ms, 0625ms total)
T50BC 004:107 JLINK_ReadMemEx(0x000070DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070DA) - Data: 03 D0  returns 0x02 (0000ms, 0625ms total)
T50BC 004:107 JLINK_ReadMemEx(0x000070DC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000070DC) - Data: 01 99 22 46 F9 F7 48 F8 09 B0 F0 BD FF 22 5C 32 ...  returns 0x3C (0000ms, 0625ms total)
T50BC 004:107 JLINK_ReadMemEx(0x000070DC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070DC) - Data: 01 99  returns 0x02 (0000ms, 0625ms total)
T50BC 004:107 JLINK_ReadMemEx(0x000070DC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000070DC) - Data: 01 99 22 46 F9 F7 48 F8 09 B0 F0 BD FF 22 5C 32 ...  returns 0x3C (0000ms, 0625ms total)
T50BC 004:107 JLINK_ReadMemEx(0x000070DC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070DC) - Data: 01 99  returns 0x02 (0000ms, 0625ms total)
T50BC 004:107 JLINK_ReadMemEx(0x000070DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070DE) - Data: 22 46  returns 0x02 (0000ms, 0625ms total)
T50BC 004:107 JLINK_ReadMemEx(0x000070DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070DE) - Data: 22 46  returns 0x02 (0000ms, 0625ms total)
T50BC 004:107 JLINK_ReadMemEx(0x000070E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000070E0) - Data: F9 F7 48 F8 09 B0 F0 BD FF 22 5C 32 03 48 04 A1 ...  returns 0x3C (0000ms, 0625ms total)
T50BC 004:107 JLINK_ReadMemEx(0x000070E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070E0) - Data: F9 F7  returns 0x02 (0000ms, 0625ms total)
T50BC 004:107 JLINK_ReadMemEx(0x000070E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000070E0) - Data: F9 F7 48 F8 09 B0 F0 BD FF 22 5C 32 03 48 04 A1 ...  returns 0x3C (0000ms, 0625ms total)
T50BC 004:107 JLINK_ReadMemEx(0x000070E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070E0) - Data: F9 F7  returns 0x02 (0000ms, 0625ms total)
T50BC 004:107 JLINK_ReadMemEx(0x000070E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070E2) - Data: 48 F8  returns 0x02 (0001ms, 0626ms total)
T50BC 004:108 JLINK_ReadMemEx(0x000070E4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000070E4) - Data: 09 B0 F0 BD FF 22 5C 32 03 48 04 A1 09 A3 02 F0 ...  returns 0x3C (0000ms, 0626ms total)
T50BC 004:108 JLINK_ReadMemEx(0x000070E4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070E4) - Data: 09 B0  returns 0x02 (0000ms, 0626ms total)
T50BC 004:108 JLINK_ReadMemEx(0x000070E6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070E6) - Data: F0 BD  returns 0x02 (0000ms, 0626ms total)
T50BC 004:108 JLINK_ReadMemEx(0x000070E6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070E6) - Data: F0 BD  returns 0x02 (0000ms, 0626ms total)
T50BC 004:108 JLINK_ReadMemEx(0x000070E8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000070E8) - Data: FF 22 5C 32 03 48 04 A1 09 A3 02 F0 05 FB C0 46 ...  returns 0x3C (0000ms, 0626ms total)
T50BC 004:108 JLINK_ReadMemEx(0x000070E8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070E8) - Data: FF 22  returns 0x02 (0000ms, 0626ms total)
T50BC 004:108 JLINK_ReadMemEx(0x000070E8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000070E8) - Data: FF 22 5C 32 03 48 04 A1 09 A3 02 F0 05 FB C0 46 ...  returns 0x3C (0000ms, 0626ms total)
T50BC 004:108 JLINK_ReadMemEx(0x000070E8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070E8) - Data: FF 22  returns 0x02 (0000ms, 0626ms total)
T50BC 004:108 JLINK_ReadMemEx(0x000070EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070EA) - Data: 5C 32  returns 0x02 (0000ms, 0626ms total)
T50BC 004:108 JLINK_ReadMemEx(0x000070EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070EA) - Data: 5C 32  returns 0x02 (0000ms, 0626ms total)
T50BC 004:108 JLINK_ReadMemEx(0x000070EC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000070EC) - Data: 03 48 04 A1 09 A3 02 F0 05 FB C0 46 BC 75 02 02 ...  returns 0x3C (0000ms, 0626ms total)
T50BC 004:108 JLINK_ReadMemEx(0x000070EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070EC) - Data: 03 48  returns 0x02 (0000ms, 0626ms total)
T50BC 004:108 JLINK_ReadMemEx(0x000070EC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000070EC) - Data: 03 48 04 A1 09 A3 02 F0 05 FB C0 46 BC 75 02 02 ...  returns 0x3C (0000ms, 0626ms total)
T50BC 004:108 JLINK_ReadMemEx(0x000070EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070EC) - Data: 03 48  returns 0x02 (0000ms, 0626ms total)
T50BC 004:109 JLINK_ReadMemEx(0x000070EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070EE) - Data: 04 A1  returns 0x02 (0000ms, 0627ms total)
T50BC 004:109 JLINK_ReadMemEx(0x000070EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070EE) - Data: 04 A1  returns 0x02 (0000ms, 0627ms total)
T50BC 004:109 JLINK_ReadMemEx(0x000070F0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000070F0) - Data: 09 A3 02 F0 05 FB C0 46 BC 75 02 02 19 C8 00 00 ...  returns 0x3C (0000ms, 0627ms total)
T50BC 004:109 JLINK_ReadMemEx(0x000070F0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070F0) - Data: 09 A3  returns 0x02 (0000ms, 0627ms total)
T50BC 004:109 JLINK_ReadMemEx(0x000070F0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000070F0) - Data: 09 A3 02 F0 05 FB C0 46 BC 75 02 02 19 C8 00 00 ...  returns 0x3C (0000ms, 0627ms total)
T50BC 004:109 JLINK_ReadMemEx(0x000070F0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070F0) - Data: 09 A3  returns 0x02 (0000ms, 0627ms total)
T50BC 004:109 JLINK_ReadMemEx(0x000070F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070F2) - Data: 02 F0  returns 0x02 (0000ms, 0627ms total)
T50BC 004:109 JLINK_ReadMemEx(0x000070F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070F2) - Data: 02 F0  returns 0x02 (0000ms, 0627ms total)
T50BC 004:109 JLINK_ReadMemEx(0x000070F4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000070F4) - Data: 05 FB C0 46 BC 75 02 02 19 C8 00 00 6D 61 63 5F ...  returns 0x3C (0000ms, 0627ms total)
T50BC 004:109 JLINK_ReadMemEx(0x000070F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070F4) - Data: 05 FB  returns 0x02 (0000ms, 0627ms total)
T50BC 004:109 JLINK_ReadMemEx(0x000070F6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070F6) - Data: C0 46  returns 0x02 (0000ms, 0627ms total)
T50BC 004:109 JLINK_ReadMemEx(0x000070F8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000070F8) - Data: BC 75 02 02 19 C8 00 00 6D 61 63 5F 74 78 5F 64 ...  returns 0x3C (0000ms, 0627ms total)
T50BC 004:109 JLINK_ReadMemEx(0x000070F8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000070F8) - Data: BC 75  returns 0x02 (0000ms, 0627ms total)
T50BC 004:109 JLINK_ReadMemEx(0x00007146, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00007140) -- Updating C cache (64 bytes @ 0x00007140) -- Read from C cache (2 bytes @ 0x00007146) - Data: E0 00  returns 0x02 (0002ms, 0629ms total)
T50BC 004:111 JLINK_ReadMemEx(0x00007148, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00007180) -- Updating C cache (64 bytes @ 0x00007180) -- Read from C cache (60 bytes @ 0x00007148) - Data: FC F7 B0 FD FC F7 10 FE 00 20 FC F7 DD FD 01 F0 ...  returns 0x3C (0001ms, 0630ms total)
T50BC 004:112 JLINK_ReadMemEx(0x00007148, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007148) - Data: FC F7  returns 0x02 (0001ms, 0631ms total)
T50BC 004:113 JLINK_ReadMemEx(0x00007148, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007148) - Data: FC F7 B0 FD FC F7 10 FE 00 20 FC F7 DD FD 01 F0 ...  returns 0x3C (0000ms, 0631ms total)
T50BC 004:113 JLINK_ReadMemEx(0x00007148, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007148) - Data: FC F7  returns 0x02 (0000ms, 0631ms total)
T50BC 004:113 JLINK_ReadMemEx(0x0000714A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000714A) - Data: B0 FD  returns 0x02 (0000ms, 0631ms total)
T50BC 004:113 JLINK_ReadMemEx(0x0000714C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000714C) - Data: FC F7 10 FE 00 20 FC F7 DD FD 01 F0 A1 FD 01 F0 ...  returns 0x3C (0000ms, 0631ms total)
T50BC 004:113 JLINK_ReadMemEx(0x0000714C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000714C) - Data: FC F7  returns 0x02 (0000ms, 0631ms total)
T50BC 004:113 JLINK_ReadMemEx(0x0000714E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000714E) - Data: 10 FE  returns 0x02 (0000ms, 0631ms total)
T50BC 004:113 JLINK_ReadMemEx(0x00007150, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00007150) - Data: 00 20 FC F7 DD FD 01 F0 A1 FD 01 F0 99 FD 2A 48 ...  returns 0x3C (0000ms, 0631ms total)
T50BC 004:113 JLINK_ReadMemEx(0x00007150, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007150) - Data: 00 20  returns 0x02 (0000ms, 0631ms total)
T50BC 004:113 JLINK_ReadMemEx(0x00007152, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007152) - Data: FC F7  returns 0x02 (0000ms, 0631ms total)
T50BC 009:396 JLINK_ReadMemEx(0x000091DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x000091C0) -- Updating C cache (64 bytes @ 0x000091C0) -- Read from C cache (2 bytes @ 0x000091DE) - Data: FD F7  returns 0x02 (0002ms, 0633ms total)
T50BC 009:398 JLINK_ReadMemEx(0x000091E0, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00009200) -- Updating C cache (64 bytes @ 0x00009200) -- Read from C cache (60 bytes @ 0x000091E0) - Data: E9 FB 00 28 FB D1 FF F7 5D F9 20 60 FF F7 5A F9 ...  returns 0x3C (0001ms, 0634ms total)
T50BC 009:399 JLINK_ReadMemEx(0x000091E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000091E0) - Data: E9 FB  returns 0x02 (0000ms, 0634ms total)
T50BC 009:400 JLINK_ReadMemEx(0x000091E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000091E2) - Data: 00 28  returns 0x02 (0000ms, 0634ms total)
T50BC 009:400 JLINK_ReadMemEx(0x000091E4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000091E4) - Data: FB D1 FF F7 5D F9 20 60 FF F7 5A F9 B5 49 08 60 ...  returns 0x3C (0000ms, 0634ms total)
T50BC 009:400 JLINK_ReadMemEx(0x000091E4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000091E4) - Data: FB D1  returns 0x02 (0000ms, 0634ms total)
T50BC 009:400 JLINK_ReadMemEx(0x000091E4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000091E4) - Data: FB D1 FF F7 5D F9 20 60 FF F7 5A F9 B5 49 08 60 ...  returns 0x3C (0000ms, 0634ms total)
T50BC 009:400 JLINK_ReadMemEx(0x000091E4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000091E4) - Data: FB D1  returns 0x02 (0000ms, 0634ms total)
T50BC 009:400 JLINK_ReadMemEx(0x000091E6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000091E6) - Data: FF F7  returns 0x02 (0000ms, 0634ms total)
T50BC 009:400 JLINK_ReadMemEx(0x000091E6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000091E6) - Data: FF F7  returns 0x02 (0000ms, 0634ms total)
T50BC 009:400 JLINK_ReadMemEx(0x000091E8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000091E8) - Data: 5D F9 20 60 FF F7 5A F9 B5 49 08 60 A3 49 09 78 ...  returns 0x3C (0000ms, 0634ms total)
T50BC 009:400 JLINK_ReadMemEx(0x000091E8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000091E8) - Data: 5D F9  returns 0x02 (0000ms, 0634ms total)
T50BC 009:400 JLINK_ReadMemEx(0x000091EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000091EA) - Data: 20 60  returns 0x02 (0000ms, 0634ms total)
T50BC 009:400 JLINK_ReadMemEx(0x000091EC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000091EC) - Data: FF F7 5A F9 B5 49 08 60 A3 49 09 78 B4 4A 51 43 ...  returns 0x3C (0000ms, 0634ms total)
T50BC 009:400 JLINK_ReadMemEx(0x000091EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000091EC) - Data: FF F7  returns 0x02 (0001ms, 0635ms total)
T50BC 013:578 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026E20) - Data: 00 00 00 00  returns 0x04 (0001ms, 0636ms total)
T50BC 018:675 JLINK_ReadMemEx(0x00000F1E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00000F00) -- Updating C cache (64 bytes @ 0x00000F00) -- Read from C cache (2 bytes @ 0x00000F1E) - Data: 28 46  returns 0x02 (0003ms, 0639ms total)
T50BC 018:678 JLINK_ReadMemEx(0x00000F20, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00000F40) -- Updating C cache (64 bytes @ 0x00000F40) -- Read from C cache (60 bytes @ 0x00000F20) - Data: 3A 46 2B 4B FF F7 F6 FB 00 28 03 9F 93 D1 00 22 ...  returns 0x3C (0001ms, 0640ms total)
T50BC 018:679 JLINK_ReadMemEx(0x00000F20, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000F20) - Data: 3A 46  returns 0x02 (0001ms, 0641ms total)
T50BC 018:680 JLINK_ReadMemEx(0x00000F20, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000F20) - Data: 3A 46 2B 4B FF F7 F6 FB 00 28 03 9F 93 D1 00 22 ...  returns 0x3C (0000ms, 0641ms total)
T50BC 018:680 JLINK_ReadMemEx(0x00000F20, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000F20) - Data: 3A 46  returns 0x02 (0000ms, 0641ms total)
T50BC 018:680 JLINK_ReadMemEx(0x00000F22, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000F22) - Data: 2B 4B  returns 0x02 (0000ms, 0641ms total)
T50BC 018:680 JLINK_ReadMemEx(0x00000F22, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000F22) - Data: 2B 4B  returns 0x02 (0000ms, 0641ms total)
T50BC 018:680 JLINK_ReadMemEx(0x00000F24, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000F24) - Data: FF F7 F6 FB 00 28 03 9F 93 D1 00 22 28 46 31 46 ...  returns 0x3C (0000ms, 0641ms total)
T50BC 018:680 JLINK_ReadMemEx(0x00000F24, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000F24) - Data: FF F7  returns 0x02 (0000ms, 0641ms total)
T50BC 018:680 JLINK_ReadMemEx(0x00000F24, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000F24) - Data: FF F7 F6 FB 00 28 03 9F 93 D1 00 22 28 46 31 46 ...  returns 0x3C (0000ms, 0641ms total)
T50BC 018:680 JLINK_ReadMemEx(0x00000F24, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000F24) - Data: FF F7  returns 0x02 (0000ms, 0641ms total)
T50BC 018:680 JLINK_ReadMemEx(0x00000F26, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000F26) - Data: F6 FB  returns 0x02 (0000ms, 0641ms total)
T50BC 018:680 JLINK_ReadMemEx(0x00000F28, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000F28) - Data: 00 28 03 9F 93 D1 00 22 28 46 31 46 27 4B FF F7 ...  returns 0x3C (0000ms, 0641ms total)
T50BC 018:680 JLINK_ReadMemEx(0x00000F28, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000F28) - Data: 00 28  returns 0x02 (0001ms, 0642ms total)
T50BC 018:681 JLINK_ReadMemEx(0x00000F2A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000F2A) - Data: 03 9F  returns 0x02 (0000ms, 0642ms total)
T50BC 023:268 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 0642ms total)
T50BC 023:268 JLINK_Reset() -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)Reset: Halt core after reset via DEMCR.VC_CORERESET. >0x35 TIF>Reset: Reset device via AIRCR.SYSRESETREQ. -- CPU_WriteMem(4 bytes @ 0xE000ED0C) >0x0D TIF> >0x28 TIF> -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE0002000)
 -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0074ms, 0716ms total)
T50BC 023:342 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0716ms total)
T50BC 023:342 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0716ms total)
T50BC 023:346 JLINK_ReadMemEx(0x03003738, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003738) - Data: 00 F0 4E F8 FC F7 C0 FC 80 B5 0D 49 08 68 00 28 ...  returns 0x3C (0002ms, 0718ms total)
T50BC 023:348 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0001ms, 0719ms total)
T50BC 023:349 JLINK_ReadMemEx(0x0300373A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373A) - Data: 4E F8  returns 0x02 (0001ms, 0720ms total)
T50BC 023:350 JLINK_ReadMemEx(0x0300373C, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x0300373C) - Data: FC F7 C0 FC 80 B5 0D 49 08 68 00 28 00 D4 80 BD ...  returns 0x3C (0001ms, 0721ms total)
T50BC 023:351 JLINK_ReadMemEx(0x0300373C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373C) - Data: FC F7  returns 0x02 (0001ms, 0722ms total)
T50BC 023:352 JLINK_ReadMemEx(0x0300373E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373E) - Data: C0 FC  returns 0x02 (0001ms, 0723ms total)
T50BC 023:353 JLINK_ReadMemEx(0x03003740, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003740) - Data: 80 B5 0D 49 08 68 00 28 00 D4 80 BD 0B 48 02 68 ...  returns 0x3C (0002ms, 0725ms total)
T50BC 023:355 JLINK_ReadMemEx(0x03003740, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003740) - Data: 80 B5  returns 0x02 (0001ms, 0726ms total)
T50BC 023:356 JLINK_ReadMemEx(0x03003742, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003742) - Data: 0D 49  returns 0x02 (0001ms, 0727ms total)
T50BC 023:357 JLINK_ReadMemEx(0x03003742, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003742) - Data: 0D 49  returns 0x02 (0001ms, 0728ms total)
T50BC 023:358 JLINK_ReadMemEx(0x03003744, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003744) - Data: 08 68 00 28 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 ...  returns 0x3C (0001ms, 0729ms total)
T50BC 023:359 JLINK_ReadMemEx(0x03003744, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003744) - Data: 08 68  returns 0x02 (0001ms, 0730ms total)
T50BC 023:360 JLINK_ReadMemEx(0x03003744, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003744) - Data: 08 68 00 28 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 ...  returns 0x3C (0001ms, 0731ms total)
T50BC 023:361 JLINK_ReadMemEx(0x03003744, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003744) - Data: 08 68  returns 0x02 (0001ms, 0732ms total)
T50BC 023:362 JLINK_ReadMemEx(0x03003746, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003746) - Data: 00 28  returns 0x02 (0001ms, 0733ms total)
T50BC 023:363 JLINK_ReadMemEx(0x03003746, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003746) - Data: 00 28  returns 0x02 (0001ms, 0734ms total)
T50BC 023:364 JLINK_ReadMemEx(0x03003748, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003748) - Data: 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 04 22 0A 60 ...  returns 0x3C (0002ms, 0736ms total)
T50BC 023:366 JLINK_ReadMemEx(0x03003748, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003748) - Data: 00 D4  returns 0x02 (0001ms, 0737ms total)
T50BC 023:367 JLINK_ReadMemEx(0x03003748, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003748) - Data: 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 04 22 0A 60 ...  returns 0x3C (0001ms, 0738ms total)
T50BC 023:368 JLINK_ReadMemEx(0x03003748, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003748) - Data: 00 D4  returns 0x02 (0001ms, 0739ms total)
T50BC 023:369 JLINK_ReadMemEx(0x0300374A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300374A) - Data: 80 BD  returns 0x02 (0001ms, 0740ms total)
T50BC 023:398 JLINK_ReadReg(R0)  returns 0x00007149 (0000ms, 0740ms total)
T50BC 023:398 JLINK_ReadReg(R1)  returns 0x02028E70 (0000ms, 0740ms total)
T50BC 023:398 JLINK_ReadReg(R2)  returns 0x00000000 (0000ms, 0740ms total)
T50BC 023:398 JLINK_ReadReg(R3)  returns 0x0000B9AF (0000ms, 0740ms total)
T50BC 023:398 JLINK_ReadReg(R4)  returns 0x0000D4DC (0000ms, 0740ms total)
T50BC 023:398 JLINK_ReadReg(R5)  returns 0x00000001 (0000ms, 0740ms total)
T50BC 023:398 JLINK_ReadReg(R6)  returns 0x0000D4DC (0000ms, 0740ms total)
T50BC 023:398 JLINK_ReadReg(R7)  returns 0x02000000 (0000ms, 0740ms total)
T50BC 023:398 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 0740ms total)
T50BC 023:398 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 0740ms total)
T50BC 023:398 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 0740ms total)
T50BC 023:398 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 0740ms total)
T50BC 023:398 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 0740ms total)
T50BC 023:398 JLINK_ReadReg(R13 (SP))  returns 0x0202F800 (0000ms, 0740ms total)
T50BC 023:398 JLINK_ReadReg(R14)  returns 0x00000B79 (0000ms, 0740ms total)
T50BC 023:398 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0740ms total)
T50BC 023:398 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0740ms total)
T50BC 023:398 JLINK_ReadReg(MSP)  returns 0x0202F800 (0001ms, 0741ms total)
T50BC 023:399 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 0741ms total)
T50BC 023:399 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0741ms total)
T50BC 023:399 JLINK_ReadMemEx(0x02026B40, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x02026B40) -- Updating C cache (64 bytes @ 0x02026B40) -- Read from C cache (4 bytes @ 0x02026B40) - Data: 00 00 00 00  returns 0x04 (0001ms, 0742ms total)
T50BC 023:400 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x02026E00) -- Updating C cache (64 bytes @ 0x02026E00) -- Read from C cache (4 bytes @ 0x02026E20) - Data: 00 00 00 00  returns 0x04 (0002ms, 0744ms total)
T50BC 023:402 JLINK_ReadMemEx(0x020276F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x020276C0) -- Updating C cache (64 bytes @ 0x020276C0) -- Read from C cache (4 bytes @ 0x020276F0) - Data: 00 00 00 00  returns 0x04 (0002ms, 0746ms total)
T50BC 023:405 JLINK_ReadMemEx(0x0202634F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x02026340) -- Updating C cache (64 bytes @ 0x02026340) -- Read from C cache (1 bytes @ 0x0202634F) - Data: 01  returns 0x01 (0001ms, 0747ms total)
T50BC 023:406 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x02027640) -- Updating C cache (64 bytes @ 0x02027640) -- Read from C cache (1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0002ms, 0749ms total)
T50BC 023:408 JLINK_ReadMemEx(0x020274DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x020274C0) -- Updating C cache (64 bytes @ 0x020274C0) -- Read from C cache (1 bytes @ 0x020274DD) - Data: 00  returns 0x01 (0001ms, 0750ms total)
T50BC 023:410 JLINK_ReadMemEx(0x02026E10, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026E10) - Data: 00 00 00 00  returns 0x04 (0001ms, 0751ms total)
T50BC 023:411 JLINK_ReadMemEx(0x02028444, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028444) - Data: 00 00 00 00  returns 0x04 (0001ms, 0752ms total)
T50BC 023:412 JLINK_ReadMemEx(0x02028440, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028440) - Data: 00 00 00 00  returns 0x04 (0001ms, 0753ms total)
T50BC 023:414 JLINK_ReadMemEx(0x02028448, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028448) - Data: 00 00 00 00  returns 0x04 (0000ms, 0753ms total)
T50BC 023:415 JLINK_ReadMemEx(0x02028454, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028454) - Data: 00 00 00 00  returns 0x04 (0001ms, 0755ms total)
T50BC 023:417 JLINK_ReadMemEx(0x0202844C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202844C) - Data: 00 00 00 00  returns 0x04 (0001ms, 0756ms total)
T50BC 023:418 JLINK_ReadMemEx(0x02026E18, 0x0008 Bytes, ..., Flags = 0x02000000) -- Read from C cache (8 bytes @ 0x02026E18) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0000ms, 0756ms total)
T50BC 023:418 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0000ms, 0756ms total)
T50BC 023:418 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026E20) - Data: 00 00 00 00  returns 0x04 (0001ms, 0757ms total)
T50BC 023:419 JLINK_ReadMemEx(0x020277F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x020277C0) -- Updating C cache (64 bytes @ 0x020277C0) -- Read from C cache (4 bytes @ 0x020277F0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0758ms total)
T50BC 023:442 JLINK_ReadMemEx(0x02028C90, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C90) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0759ms total)
T50BC 023:443 JLINK_ReadMemEx(0x02028C88, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C88) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0760ms total)
T50BC 023:444 JLINK_ReadMemEx(0x02028460, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028460) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0761ms total)
T50BC 023:445 JLINK_ReadMemEx(0x02028468, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028468) - Data: 00 00 00 00  returns 0x04 (0001ms, 0762ms total)
T50BC 023:446 JLINK_ReadMemEx(0x0202707C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x02027040) -- Updating C cache (64 bytes @ 0x02027040) -- Read from C cache (4 bytes @ 0x0202707C) - Data: 00 00 00 00  returns 0x04 (0002ms, 0764ms total)
T50BC 023:448 JLINK_ReadMemEx(0x02027080, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x02027080) -- Updating C cache (64 bytes @ 0x02027080) -- Read from C cache (4 bytes @ 0x02027080) - Data: 00 00 00 00  returns 0x04 (0001ms, 0765ms total)
T69A4 023:757 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0001ms, 0766ms total)
T69A4 023:758 JLINK_SetBPEx(Addr = 0x00000F1E, Type = 0xFFFFFFF2)  returns 0x00000002 (0000ms, 0766ms total)
T69A4 023:758 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU_WriteMem(4 bytes @ 0xE0002014) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0006ms, 0772ms total)
T69A4 023:865 JLINK_IsHalted()  returns FALSE (0001ms, 0773ms total)
T69A4 023:967 JLINK_IsHalted()  returns FALSE (0001ms, 0773ms total)
T69A4 024:068 JLINK_IsHalted()  returns TRUE (0004ms, 0776ms total)
T69A4 024:072 JLINK_Halt()  returns 0x00 (0000ms, 0772ms total)
T69A4 024:072 JLINK_IsHalted()  returns TRUE (0000ms, 0772ms total)
T69A4 024:072 JLINK_IsHalted()  returns TRUE (0000ms, 0772ms total)
T69A4 024:072 JLINK_IsHalted()  returns TRUE (0000ms, 0772ms total)
T69A4 024:072 JLINK_ReadReg(R15 (PC))  returns 0x00000F1E (0001ms, 0773ms total)
T69A4 024:073 JLINK_ReadReg(XPSR)  returns 0x31000000 (0000ms, 0773ms total)
T69A4 024:073 JLINK_ClrBPEx(BPHandle = 0x00000002)  returns 0x00 (0000ms, 0773ms total)
T69A4 024:073 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0000ms, 0773ms total)
T69A4 024:073 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 0774ms total)
T69A4 024:074 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0002ms, 0776ms total)
T69A4 024:076 JLINK_ReadReg(R0)  returns 0x02026E18 (0000ms, 0776ms total)
T69A4 024:076 JLINK_ReadReg(R1)  returns 0xC00E04AE (0000ms, 0776ms total)
T69A4 024:076 JLINK_ReadReg(R2)  returns 0x60000000 (0000ms, 0776ms total)
T69A4 024:076 JLINK_ReadReg(R3)  returns 0x60000000 (0000ms, 0776ms total)
T69A4 024:076 JLINK_ReadReg(R4)  returns 0x00000000 (0000ms, 0776ms total)
T69A4 024:076 JLINK_ReadReg(R5)  returns 0x41D9E02E (0000ms, 0776ms total)
T69A4 024:076 JLINK_ReadReg(R6)  returns 0xC00E04AE (0000ms, 0776ms total)
T69A4 024:076 JLINK_ReadReg(R7)  returns 0x00000000 (0000ms, 0776ms total)
T69A4 024:076 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 0776ms total)
T69A4 024:076 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 0776ms total)
T69A4 024:076 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 0776ms total)
T69A4 024:076 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 0776ms total)
T69A4 024:076 JLINK_ReadReg(R12)  returns 0x00000003 (0001ms, 0777ms total)
T69A4 024:077 JLINK_ReadReg(R13 (SP))  returns 0x0202F790 (0000ms, 0777ms total)
T69A4 024:077 JLINK_ReadReg(R14)  returns 0x00000B5B (0000ms, 0777ms total)
T69A4 024:077 JLINK_ReadReg(R15 (PC))  returns 0x00000F1E (0000ms, 0777ms total)
T69A4 024:077 JLINK_ReadReg(XPSR)  returns 0x31000000 (0000ms, 0777ms total)
T69A4 024:077 JLINK_ReadReg(MSP)  returns 0x0202F790 (0000ms, 0777ms total)
T69A4 024:077 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 0777ms total)
T69A4 024:077 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0777ms total)
T50BC 024:078 JLINK_ReadMemEx(0x0202F7BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7BC) - Data: 21 93 00 00  returns 0x04 (0002ms, 0779ms total)
T50BC 024:080 JLINK_ReadMemEx(0x0202F7AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7AC) - Data: 48 77 02 02  returns 0x04 (0001ms, 0780ms total)
T50BC 024:081 JLINK_ReadMemEx(0x0202F7B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7B0) - Data: 24 6E 02 02  returns 0x04 (0001ms, 0781ms total)
T50BC 024:082 JLINK_ReadMemEx(0x0202F7B4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7B4) - Data: 80 7C 9C 13  returns 0x04 (0001ms, 0782ms total)
T50BC 024:083 JLINK_ReadMemEx(0x0202F7B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7B8) - Data: F4 76 02 02  returns 0x04 (0001ms, 0783ms total)
T50BC 024:084 JLINK_ReadMemEx(0x0202F7BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7BC) - Data: 21 93 00 00  returns 0x04 (0001ms, 0784ms total)
T50BC 024:085 JLINK_ReadMemEx(0x0202F7FC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7FC) - Data: 07 72 00 00  returns 0x04 (0001ms, 0785ms total)
T50BC 024:086 JLINK_ReadMemEx(0x0202F7EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7EC) - Data: 4F 63 02 02  returns 0x04 (0001ms, 0786ms total)
T50BC 024:087 JLINK_ReadMemEx(0x0202F7F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7F0) - Data: 01 00 00 00  returns 0x04 (0001ms, 0787ms total)
T50BC 024:088 JLINK_ReadMemEx(0x0202F7F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7F4) - Data: DC D4 00 00  returns 0x04 (0001ms, 0788ms total)
T50BC 024:089 JLINK_ReadMemEx(0x0202F7F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7F8) - Data: 00 00 00 02  returns 0x04 (0001ms, 0789ms total)
T50BC 024:090 JLINK_ReadMemEx(0x0202F7FC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7FC) - Data: 07 72 00 00  returns 0x04 (0001ms, 0790ms total)
T50BC 024:097 JLINK_ReadMemEx(0x02026B40, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x02026B40) -- Updating C cache (64 bytes @ 0x02026B40) -- Read from C cache (4 bytes @ 0x02026B40) - Data: 2D 9D 0C 00  returns 0x04 (0002ms, 0792ms total)
T50BC 024:100 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x02026E00) -- Updating C cache (64 bytes @ 0x02026E00) -- Read from C cache (4 bytes @ 0x02026E20) - Data: E3 5F 0D 00  returns 0x04 (0002ms, 0794ms total)
T50BC 024:102 JLINK_ReadMemEx(0x020276F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x020276C0) -- Updating C cache (64 bytes @ 0x020276C0) -- Read from C cache (4 bytes @ 0x020276F0) - Data: 50 C3 00 00  returns 0x04 (0001ms, 0795ms total)
T50BC 024:105 JLINK_ReadMemEx(0x0202634F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x02026340) -- Updating C cache (64 bytes @ 0x02026340) -- Read from C cache (1 bytes @ 0x0202634F) - Data: 01  returns 0x01 (0002ms, 0797ms total)
T50BC 024:107 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x02027640) -- Updating C cache (64 bytes @ 0x02027640) -- Read from C cache (1 bytes @ 0x02027660) - Data: 01  returns 0x01 (0002ms, 0799ms total)
T50BC 024:110 JLINK_ReadMemEx(0x020274DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x020274C0) -- Updating C cache (64 bytes @ 0x020274C0) -- Read from C cache (1 bytes @ 0x020274DD) - Data: 00  returns 0x01 (0001ms, 0800ms total)
T50BC 024:112 JLINK_ReadMemEx(0x02026E10, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026E10) - Data: 34 12 00 00  returns 0x04 (0000ms, 0800ms total)
T50BC 024:113 JLINK_ReadMemEx(0x02028444, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028444) - Data: 2F A7 0E 00  returns 0x04 (0001ms, 0801ms total)
T50BC 024:114 JLINK_ReadMemEx(0x02028440, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028440) - Data: 09 EC 09 00  returns 0x04 (0001ms, 0802ms total)
T50BC 024:115 JLINK_ReadMemEx(0x02028448, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028448) - Data: 49 F8 09 00  returns 0x04 (0001ms, 0803ms total)
T50BC 024:117 JLINK_ReadMemEx(0x02028454, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028454) - Data: 01 00 00 00  returns 0x04 (0001ms, 0804ms total)
T50BC 024:121 JLINK_ReadMemEx(0x0202844C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202844C) - Data: 3D F5 0A 00  returns 0x04 (0001ms, 0805ms total)
T50BC 024:122 JLINK_ReadMemEx(0x02026E18, 0x0008 Bytes, ..., Flags = 0x02000000) -- Read from C cache (8 bytes @ 0x02026E18) - Data: 2E E0 D9 41 AE 04 0E C0  returns 0x08 (0000ms, 0805ms total)
T50BC 024:122 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x02027660) - Data: 01  returns 0x01 (0001ms, 0806ms total)
T50BC 024:123 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026E20) - Data: E3 5F 0D 00  returns 0x04 (0000ms, 0806ms total)
T50BC 024:123 JLINK_ReadMemEx(0x020277F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x020277C0) -- Updating C cache (64 bytes @ 0x020277C0) -- Read from C cache (4 bytes @ 0x020277F0) - Data: 93 9C 0C 00  returns 0x04 (0002ms, 0808ms total)
T50BC 024:185 JLINK_ReadMemEx(0x020276F8, 0x0008 Bytes, ..., Flags = 0x02000000) -- Read from C cache (8 bytes @ 0x020276F8) - Data: BD 7C 9C 13 00 00 00 00  returns 0x08 (0001ms, 0809ms total)
T50BC 024:186 JLINK_ReadMemEx(0x020276F8, 0x0008 Bytes, ..., Flags = 0x02000000) -- Read from C cache (8 bytes @ 0x020276F8) - Data: BD 7C 9C 13 00 00 00 00  returns 0x08 (0000ms, 0809ms total)
T50BC 024:205 JLINK_ReadMemEx(0x02027730, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x02027700) -- Updating C cache (64 bytes @ 0x02027700) -- Read from C cache (8 bytes @ 0x02027730) - Data: 18 CE 7B 16 00 00 00 00  returns 0x08 (0002ms, 0811ms total)
T50BC 024:207 JLINK_ReadMemEx(0x02027730, 0x0008 Bytes, ..., Flags = 0x02000000) -- Read from C cache (8 bytes @ 0x02027730) - Data: 18 CE 7B 16 00 00 00 00  returns 0x08 (0000ms, 0811ms total)
T50BC 024:246 JLINK_ReadMemEx(0x02028C90, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C90) - Data: A7 52 DF 02 00 00 00 00  returns 0x08 (0001ms, 0812ms total)
T50BC 024:247 JLINK_ReadMemEx(0x02028C88, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C88) - Data: B7 52 DF 02 00 00 00 00  returns 0x08 (0001ms, 0813ms total)
T50BC 024:248 JLINK_ReadMemEx(0x02028460, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028460) - Data: 69 90 06 69 90 06 C0 BF  returns 0x08 (0001ms, 0814ms total)
T50BC 024:249 JLINK_ReadMemEx(0x02028468, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028468) - Data: F8 FF FF FF  returns 0x04 (0001ms, 0815ms total)
T50BC 024:250 JLINK_ReadMemEx(0x0202707C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x02027040) -- Updating C cache (64 bytes @ 0x02027040) -- Read from C cache (4 bytes @ 0x0202707C) - Data: 73 28 FF FF  returns 0x04 (0002ms, 0817ms total)
T50BC 024:252 JLINK_ReadMemEx(0x02027080, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x02027080) -- Updating C cache (64 bytes @ 0x02027080) -- Read from C cache (4 bytes @ 0x02027080) - Data: 73 28 FF FF  returns 0x04 (0001ms, 0818ms total)
T50BC 024:256 JLINK_ReadMemEx(0x00000E1E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00000E00) -- Updating C cache (64 bytes @ 0x00000E00) -- Read from C cache (2 bytes @ 0x00000E1E) - Data: 40 6A  returns 0x02 (0002ms, 0820ms total)
T50BC 024:258 JLINK_ReadMemEx(0x00000E20, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00000E40) -- Updating C cache (64 bytes @ 0x00000E40) -- Read from C cache (60 bytes @ 0x00000E20) - Data: FF F7 68 FD 02 46 0B 46 20 46 29 46 FF F7 B4 FB ...  returns 0x3C (0001ms, 0821ms total)
T50BC 024:259 JLINK_ReadMemEx(0x00000E20, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E20) - Data: FF F7  returns 0x02 (0000ms, 0821ms total)
T50BC 024:260 JLINK_ReadMemEx(0x00000E20, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000E20) - Data: FF F7 68 FD 02 46 0B 46 20 46 29 46 FF F7 B4 FB ...  returns 0x3C (0000ms, 0822ms total)
T50BC 024:260 JLINK_ReadMemEx(0x00000E20, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E20) - Data: FF F7  returns 0x02 (0000ms, 0822ms total)
T50BC 024:260 JLINK_ReadMemEx(0x00000E22, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E22) - Data: 68 FD  returns 0x02 (0000ms, 0822ms total)
T50BC 024:260 JLINK_ReadMemEx(0x00000E24, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000E24) - Data: 02 46 0B 46 20 46 29 46 FF F7 B4 FB 02 46 0B 46 ...  returns 0x3C (0000ms, 0822ms total)
T50BC 024:260 JLINK_ReadMemEx(0x00000E24, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E24) - Data: 02 46  returns 0x02 (0000ms, 0822ms total)
T50BC 024:260 JLINK_ReadMemEx(0x00000E26, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E26) - Data: 0B 46  returns 0x02 (0000ms, 0822ms total)
T50BC 024:260 JLINK_ReadMemEx(0x00000E26, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E26) - Data: 0B 46  returns 0x02 (0000ms, 0822ms total)
T50BC 024:260 JLINK_ReadMemEx(0x00000E28, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000E28) - Data: 20 46 29 46 FF F7 B4 FB 02 46 0B 46 00 24 50 49 ...  returns 0x3C (0000ms, 0822ms total)
T50BC 024:260 JLINK_ReadMemEx(0x00000E28, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E28) - Data: 20 46  returns 0x02 (0000ms, 0822ms total)
T50BC 024:260 JLINK_ReadMemEx(0x00000E28, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000E28) - Data: 20 46 29 46 FF F7 B4 FB 02 46 0B 46 00 24 50 49 ...  returns 0x3C (0000ms, 0822ms total)
T50BC 024:260 JLINK_ReadMemEx(0x00000E28, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E28) - Data: 20 46  returns 0x02 (0001ms, 0823ms total)
T50BC 024:261 JLINK_ReadMemEx(0x00000E2A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E2A) - Data: 29 46  returns 0x02 (0000ms, 0823ms total)
T50BC 024:261 JLINK_ReadMemEx(0x00000E2A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E2A) - Data: 29 46  returns 0x02 (0000ms, 0823ms total)
T50BC 024:261 JLINK_ReadMemEx(0x00000E2C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000E2C) - Data: FF F7 B4 FB 02 46 0B 46 00 24 50 49 20 46 FF F7 ...  returns 0x3C (0000ms, 0823ms total)
T50BC 024:261 JLINK_ReadMemEx(0x00000E2C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E2C) - Data: FF F7  returns 0x02 (0000ms, 0823ms total)
T50BC 024:261 JLINK_ReadMemEx(0x00000E2C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000E2C) - Data: FF F7 B4 FB 02 46 0B 46 00 24 50 49 20 46 FF F7 ...  returns 0x3C (0000ms, 0823ms total)
T50BC 024:261 JLINK_ReadMemEx(0x00000E2C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E2C) - Data: FF F7  returns 0x02 (0000ms, 0823ms total)
T50BC 024:261 JLINK_ReadMemEx(0x00000E2E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E2E) - Data: B4 FB  returns 0x02 (0000ms, 0823ms total)
T50BC 024:261 JLINK_ReadMemEx(0x00000E30, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000E30) - Data: 02 46 0B 46 00 24 50 49 20 46 FF F7 37 FB 02 90 ...  returns 0x3C (0000ms, 0823ms total)
T50BC 024:261 JLINK_ReadMemEx(0x00000E30, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E30) - Data: 02 46  returns 0x02 (0000ms, 0823ms total)
T50BC 024:261 JLINK_ReadMemEx(0x00000E32, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E32) - Data: 0B 46  returns 0x02 (0000ms, 0823ms total)
T50BC 024:261 JLINK_ReadMemEx(0x00000E32, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E32) - Data: 0B 46  returns 0x02 (0000ms, 0823ms total)
T50BC 024:261 JLINK_ReadMemEx(0x00000E34, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000E34) - Data: 00 24 50 49 20 46 FF F7 37 FB 02 90 01 91 01 20 ...  returns 0x3C (0000ms, 0823ms total)
T50BC 024:261 JLINK_ReadMemEx(0x00000E34, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E34) - Data: 00 24  returns 0x02 (0001ms, 0824ms total)
T50BC 024:262 JLINK_ReadMemEx(0x00000E34, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000E34) - Data: 00 24 50 49 20 46 FF F7 37 FB 02 90 01 91 01 20 ...  returns 0x3C (0000ms, 0824ms total)
T50BC 024:262 JLINK_ReadMemEx(0x00000E34, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E34) - Data: 00 24  returns 0x02 (0000ms, 0824ms total)
T50BC 024:262 JLINK_ReadMemEx(0x00000E36, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E36) - Data: 50 49  returns 0x02 (0000ms, 0824ms total)
T50BC 024:262 JLINK_ReadMemEx(0x00000E36, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E36) - Data: 50 49  returns 0x02 (0000ms, 0824ms total)
T50BC 024:262 JLINK_ReadMemEx(0x00000E38, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000E38) - Data: 20 46 FF F7 37 FB 02 90 01 91 01 20 04 90 40 02 ...  returns 0x3C (0000ms, 0824ms total)
T50BC 024:262 JLINK_ReadMemEx(0x00000E38, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E38) - Data: 20 46  returns 0x02 (0000ms, 0824ms total)
T50BC 024:262 JLINK_ReadMemEx(0x00000E38, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000E38) - Data: 20 46 FF F7 37 FB 02 90 01 91 01 20 04 90 40 02 ...  returns 0x3C (0000ms, 0824ms total)
T50BC 024:262 JLINK_ReadMemEx(0x00000E38, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E38) - Data: 20 46  returns 0x02 (0000ms, 0824ms total)
T50BC 024:262 JLINK_ReadMemEx(0x00000E3A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E3A) - Data: FF F7  returns 0x02 (0001ms, 0825ms total)
T50BC 024:263 JLINK_ReadMemEx(0x00000E3A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E3A) - Data: FF F7  returns 0x02 (0000ms, 0825ms total)
T50BC 024:263 JLINK_ReadMemEx(0x00000E3C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000E3C) - Data: 37 FB 02 90 01 91 01 20 04 90 40 02 00 90 4C 48 ...  returns 0x3C (0000ms, 0825ms total)
T50BC 024:263 JLINK_ReadMemEx(0x00000E3C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E3C) - Data: 37 FB  returns 0x02 (0000ms, 0825ms total)
T50BC 024:263 JLINK_ReadMemEx(0x00000E3E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E3E) - Data: 02 90  returns 0x02 (0000ms, 0825ms total)
T50BC 024:263 JLINK_ReadMemEx(0x00000E40, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000E40) - Data: 01 91 01 20 04 90 40 02 00 90 4C 48 06 90 4C 4F ...  returns 0x3C (0000ms, 0825ms total)
T50BC 024:263 JLINK_ReadMemEx(0x00000E40, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E40) - Data: 01 91  returns 0x02 (0000ms, 0825ms total)
T50BC 024:263 JLINK_ReadMemEx(0x00000E40, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000E40) - Data: 01 91 01 20 04 90 40 02 00 90 4C 48 06 90 4C 4F ...  returns 0x3C (0000ms, 0825ms total)
T50BC 024:263 JLINK_ReadMemEx(0x00000E40, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E40) - Data: 01 91  returns 0x02 (0000ms, 0825ms total)
T50BC 024:263 JLINK_ReadMemEx(0x00000E42, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E42) - Data: 01 20  returns 0x02 (0000ms, 0825ms total)
T50BC 024:263 JLINK_ReadMemEx(0x00000E42, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E42) - Data: 01 20  returns 0x02 (0000ms, 0825ms total)
T50BC 024:263 JLINK_ReadMemEx(0x00000E44, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000E44) - Data: 04 90 40 02 00 90 4C 48 06 90 4C 4F 09 E0 61 49 ...  returns 0x3C (0000ms, 0825ms total)
T50BC 024:263 JLINK_ReadMemEx(0x00000E44, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E44) - Data: 04 90  returns 0x02 (0000ms, 0825ms total)
T50BC 024:263 JLINK_ReadMemEx(0x00000E44, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000E44) - Data: 04 90 40 02 00 90 4C 48 06 90 4C 4F 09 E0 61 49 ...  returns 0x3C (0001ms, 0826ms total)
T50BC 024:264 JLINK_ReadMemEx(0x00000E44, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E44) - Data: 04 90  returns 0x02 (0000ms, 0826ms total)
T50BC 024:264 JLINK_ReadMemEx(0x00000E46, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E46) - Data: 40 02  returns 0x02 (0000ms, 0826ms total)
T50BC 024:264 JLINK_ReadMemEx(0x00000E46, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E46) - Data: 40 02  returns 0x02 (0000ms, 0826ms total)
T50BC 024:264 JLINK_ReadMemEx(0x00000E48, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00000E80) -- Updating C cache (64 bytes @ 0x00000E80) -- Read from C cache (60 bytes @ 0x00000E48) - Data: 00 90 4C 48 06 90 4C 4F 09 E0 61 49 08 51 7F 1C ...  returns 0x3C (0001ms, 0827ms total)
T50BC 024:265 JLINK_ReadMemEx(0x00000E48, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E48) - Data: 00 90  returns 0x02 (0000ms, 0827ms total)
T50BC 024:265 JLINK_ReadMemEx(0x00000E48, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000E48) - Data: 00 90 4C 48 06 90 4C 4F 09 E0 61 49 08 51 7F 1C ...  returns 0x3C (0001ms, 0828ms total)
T50BC 024:266 JLINK_ReadMemEx(0x00000E48, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E48) - Data: 00 90  returns 0x02 (0000ms, 0828ms total)
T50BC 024:266 JLINK_ReadMemEx(0x00000E4A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E4A) - Data: 4C 48  returns 0x02 (0000ms, 0828ms total)
T50BC 024:266 JLINK_ReadMemEx(0x00000E4A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E4A) - Data: 4C 48  returns 0x02 (0000ms, 0828ms total)
T50BC 024:266 JLINK_ReadMemEx(0x00000E4C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000E4C) - Data: 06 90 4C 4F 09 E0 61 49 08 51 7F 1C 06 98 80 1C ...  returns 0x3C (0000ms, 0828ms total)
T50BC 024:266 JLINK_ReadMemEx(0x00000E4C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E4C) - Data: 06 90  returns 0x02 (0000ms, 0828ms total)
T50BC 024:266 JLINK_ReadMemEx(0x00000E4C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000E4C) - Data: 06 90 4C 4F 09 E0 61 49 08 51 7F 1C 06 98 80 1C ...  returns 0x3C (0000ms, 0828ms total)
T50BC 024:266 JLINK_ReadMemEx(0x00000E4C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E4C) - Data: 06 90  returns 0x02 (0000ms, 0828ms total)
T50BC 024:266 JLINK_ReadMemEx(0x00000E4E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E4E) - Data: 4C 4F  returns 0x02 (0000ms, 0828ms total)
T50BC 024:266 JLINK_ReadMemEx(0x00000E4E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E4E) - Data: 4C 4F  returns 0x02 (0000ms, 0828ms total)
T50BC 024:266 JLINK_ReadMemEx(0x00000E50, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000E50) - Data: 09 E0 61 49 08 51 7F 1C 06 98 80 1C 06 90 24 1D ...  returns 0x3C (0000ms, 0828ms total)
T50BC 024:266 JLINK_ReadMemEx(0x00000E50, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E50) - Data: 09 E0  returns 0x02 (0001ms, 0829ms total)
T50BC 024:267 JLINK_ReadMemEx(0x00000E50, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000E50) - Data: 09 E0 61 49 08 51 7F 1C 06 98 80 1C 06 90 24 1D ...  returns 0x3C (0000ms, 0829ms total)
T50BC 024:267 JLINK_ReadMemEx(0x00000E50, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E50) - Data: 09 E0  returns 0x02 (0000ms, 0829ms total)
T50BC 024:267 JLINK_ReadMemEx(0x00000E52, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E52) - Data: 61 49  returns 0x02 (0000ms, 0829ms total)
T50BC 024:267 JLINK_ReadMemEx(0x00000E52, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E52) - Data: 61 49  returns 0x02 (0000ms, 0829ms total)
T50BC 024:267 JLINK_ReadMemEx(0x00000E54, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000E54) - Data: 08 51 7F 1C 06 98 80 1C 06 90 24 1D 64 2C 00 D1 ...  returns 0x3C (0000ms, 0829ms total)
T50BC 024:267 JLINK_ReadMemEx(0x00000E54, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E54) - Data: 08 51  returns 0x02 (0000ms, 0829ms total)
T50BC 024:267 JLINK_ReadMemEx(0x00000E54, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000E54) - Data: 08 51 7F 1C 06 98 80 1C 06 90 24 1D 64 2C 00 D1 ...  returns 0x3C (0000ms, 0829ms total)
T50BC 024:267 JLINK_ReadMemEx(0x00000E54, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E54) - Data: 08 51  returns 0x02 (0000ms, 0829ms total)
T50BC 024:267 JLINK_ReadMemEx(0x00000E56, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E56) - Data: 7F 1C  returns 0x02 (0000ms, 0829ms total)
T50BC 024:267 JLINK_ReadMemEx(0x00000E56, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E56) - Data: 7F 1C  returns 0x02 (0000ms, 0829ms total)
T50BC 024:267 JLINK_ReadMemEx(0x00000E58, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000E58) - Data: 06 98 80 1C 06 90 24 1D 64 2C 00 D1 81 E0 38 78 ...  returns 0x3C (0000ms, 0829ms total)
T50BC 024:267 JLINK_ReadMemEx(0x00000E58, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E58) - Data: 06 98  returns 0x02 (0000ms, 0829ms total)
T50BC 024:268 JLINK_ReadMemEx(0x00000E58, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000E58) - Data: 06 98 80 1C 06 90 24 1D 64 2C 00 D1 81 E0 38 78 ...  returns 0x3C (0000ms, 0830ms total)
T50BC 024:268 JLINK_ReadMemEx(0x00000E58, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E58) - Data: 06 98  returns 0x02 (0000ms, 0830ms total)
T50BC 024:268 JLINK_ReadMemEx(0x00000E5A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E5A) - Data: 80 1C  returns 0x02 (0000ms, 0830ms total)
T50BC 024:268 JLINK_ReadMemEx(0x00000E5A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E5A) - Data: 80 1C  returns 0x02 (0000ms, 0830ms total)
T50BC 024:268 JLINK_ReadMemEx(0x00000E5C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000E5C) - Data: 06 90 24 1D 64 2C 00 D1 81 E0 38 78 05 28 46 48 ...  returns 0x3C (0000ms, 0830ms total)
T50BC 024:268 JLINK_ReadMemEx(0x00000E5C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E5C) - Data: 06 90  returns 0x02 (0000ms, 0830ms total)
T50BC 024:268 JLINK_ReadMemEx(0x00000E5C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000E5C) - Data: 06 90 24 1D 64 2C 00 D1 81 E0 38 78 05 28 46 48 ...  returns 0x3C (0000ms, 0830ms total)
T50BC 024:268 JLINK_ReadMemEx(0x00000E5C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E5C) - Data: 06 90  returns 0x02 (0000ms, 0830ms total)
T50BC 024:268 JLINK_ReadMemEx(0x00000E5E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E5E) - Data: 24 1D  returns 0x02 (0000ms, 0830ms total)
T50BC 024:268 JLINK_ReadMemEx(0x00000E5E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E5E) - Data: 24 1D  returns 0x02 (0000ms, 0830ms total)
T50BC 024:268 JLINK_ReadMemEx(0x00000E60, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000E60) - Data: 64 2C 00 D1 81 E0 38 78 05 28 46 48 F1 D1 03 97 ...  returns 0x3C (0000ms, 0830ms total)
T50BC 024:268 JLINK_ReadMemEx(0x00000E60, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E60) - Data: 64 2C  returns 0x02 (0001ms, 0831ms total)
T50BC 024:269 JLINK_ReadMemEx(0x00000E60, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000E60) - Data: 64 2C 00 D1 81 E0 38 78 05 28 46 48 F1 D1 03 97 ...  returns 0x3C (0000ms, 0831ms total)
T50BC 024:269 JLINK_ReadMemEx(0x00000E60, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E60) - Data: 64 2C  returns 0x02 (0000ms, 0831ms total)
T50BC 024:269 JLINK_ReadMemEx(0x00000E62, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E62) - Data: 00 D1  returns 0x02 (0000ms, 0831ms total)
T50BC 024:269 JLINK_ReadMemEx(0x00000E62, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E62) - Data: 00 D1  returns 0x02 (0000ms, 0831ms total)
T50BC 024:269 JLINK_ReadMemEx(0x00000E64, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000E64) - Data: 81 E0 38 78 05 28 46 48 F1 D1 03 97 45 48 01 59 ...  returns 0x3C (0000ms, 0831ms total)
T50BC 024:269 JLINK_ReadMemEx(0x00000E64, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E64) - Data: 81 E0  returns 0x02 (0000ms, 0831ms total)
T50BC 024:269 JLINK_ReadMemEx(0x00000E64, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000E64) - Data: 81 E0 38 78 05 28 46 48 F1 D1 03 97 45 48 01 59 ...  returns 0x3C (0000ms, 0831ms total)
T50BC 024:269 JLINK_ReadMemEx(0x00000E64, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E64) - Data: 81 E0  returns 0x02 (0000ms, 0831ms total)
T50BC 024:269 JLINK_ReadMemEx(0x00000E66, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E66) - Data: 38 78  returns 0x02 (0000ms, 0831ms total)
T50BC 024:269 JLINK_ReadMemEx(0x00000E66, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E66) - Data: 38 78  returns 0x02 (0000ms, 0831ms total)
T50BC 024:269 JLINK_ReadMemEx(0x00000E68, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000E68) - Data: 05 28 46 48 F1 D1 03 97 45 48 01 59 45 48 01 60 ...  returns 0x3C (0000ms, 0831ms total)
T50BC 024:269 JLINK_ReadMemEx(0x00000E68, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E68) - Data: 05 28  returns 0x02 (0000ms, 0831ms total)
T50BC 024:269 JLINK_ReadMemEx(0x00000E68, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000E68) - Data: 05 28 46 48 F1 D1 03 97 45 48 01 59 45 48 01 60 ...  returns 0x3C (0000ms, 0831ms total)
T50BC 024:269 JLINK_ReadMemEx(0x00000E68, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E68) - Data: 05 28  returns 0x02 (0000ms, 0831ms total)
T50BC 024:269 JLINK_ReadMemEx(0x00000E6A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E6A) - Data: 46 48  returns 0x02 (0001ms, 0832ms total)
T50BC 024:270 JLINK_ReadMemEx(0x00000E6A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E6A) - Data: 46 48  returns 0x02 (0000ms, 0832ms total)
T50BC 024:270 JLINK_ReadMemEx(0x00000E6C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000E6C) - Data: F1 D1 03 97 45 48 01 59 45 48 01 60 45 48 03 59 ...  returns 0x3C (0000ms, 0832ms total)
T50BC 024:270 JLINK_ReadMemEx(0x00000E6C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E6C) - Data: F1 D1  returns 0x02 (0000ms, 0832ms total)
T50BC 024:270 JLINK_ReadMemEx(0x00000E6C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000E6C) - Data: F1 D1 03 97 45 48 01 59 45 48 01 60 45 48 03 59 ...  returns 0x3C (0000ms, 0832ms total)
T50BC 024:270 JLINK_ReadMemEx(0x00000E6C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E6C) - Data: F1 D1  returns 0x02 (0000ms, 0832ms total)
T50BC 024:270 JLINK_ReadMemEx(0x00000E6E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E6E) - Data: 03 97  returns 0x02 (0000ms, 0832ms total)
T50BC 024:270 JLINK_ReadMemEx(0x00000E6E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E6E) - Data: 03 97  returns 0x02 (0000ms, 0832ms total)
T50BC 024:270 JLINK_ReadMemEx(0x00000E70, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000E70) - Data: 45 48 01 59 45 48 01 60 45 48 03 59 45 4F 3B 60 ...  returns 0x3C (0000ms, 0832ms total)
T50BC 024:270 JLINK_ReadMemEx(0x00000E70, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E70) - Data: 45 48  returns 0x02 (0000ms, 0832ms total)
T50BC 024:270 JLINK_ReadMemEx(0x00000E70, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000E70) - Data: 45 48 01 59 45 48 01 60 45 48 03 59 45 4F 3B 60 ...  returns 0x3C (0000ms, 0832ms total)
T50BC 024:270 JLINK_ReadMemEx(0x00000E70, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E70) - Data: 45 48  returns 0x02 (0000ms, 0832ms total)
T50BC 024:270 JLINK_ReadMemEx(0x00000E72, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E72) - Data: 01 59  returns 0x02 (0000ms, 0832ms total)
T50BC 024:270 JLINK_ReadMemEx(0x00000E72, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E72) - Data: 01 59  returns 0x02 (0000ms, 0832ms total)
T50BC 024:270 JLINK_ReadMemEx(0x00000E74, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000E74) - Data: 45 48 01 60 45 48 03 59 45 4F 3B 60 45 48 00 59 ...  returns 0x3C (0000ms, 0832ms total)
T50BC 024:270 JLINK_ReadMemEx(0x00000E74, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E74) - Data: 45 48  returns 0x02 (0002ms, 0834ms total)
T50BC 024:272 JLINK_ReadMemEx(0x00000E74, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000E74) - Data: 45 48 01 60 45 48 03 59 45 4F 3B 60 45 48 00 59 ...  returns 0x3C (0000ms, 0834ms total)
T50BC 024:272 JLINK_ReadMemEx(0x00000E74, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E74) - Data: 45 48  returns 0x02 (0000ms, 0834ms total)
T50BC 024:272 JLINK_ReadMemEx(0x00000E76, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E76) - Data: 01 60  returns 0x02 (0000ms, 0834ms total)
T50BC 024:272 JLINK_ReadMemEx(0x00000E76, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E76) - Data: 01 60  returns 0x02 (0000ms, 0834ms total)
T50BC 024:272 JLINK_ReadMemEx(0x00000E78, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000E78) - Data: 45 48 03 59 45 4F 3B 60 45 48 00 59 45 4A 10 60 ...  returns 0x3C (0000ms, 0834ms total)
T50BC 024:272 JLINK_ReadMemEx(0x00000E78, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E78) - Data: 45 48  returns 0x02 (0000ms, 0834ms total)
T50BC 024:272 JLINK_ReadMemEx(0x00000E78, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000E78) - Data: 45 48 03 59 45 4F 3B 60 45 48 00 59 45 4A 10 60 ...  returns 0x3C (0000ms, 0834ms total)
T50BC 024:272 JLINK_ReadMemEx(0x00000E78, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E78) - Data: 45 48  returns 0x02 (0000ms, 0834ms total)
T50BC 024:272 JLINK_ReadMemEx(0x00000E7A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E7A) - Data: 03 59  returns 0x02 (0000ms, 0834ms total)
T50BC 024:272 JLINK_ReadMemEx(0x00000E7A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E7A) - Data: 03 59  returns 0x02 (0000ms, 0834ms total)
T50BC 024:272 JLINK_ReadMemEx(0x00000E7C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000E7C) - Data: 45 4F 3B 60 45 48 00 59 45 4A 10 60 45 4A 12 59 ...  returns 0x3C (0000ms, 0834ms total)
T50BC 024:272 JLINK_ReadMemEx(0x00000E7C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E7C) - Data: 45 4F  returns 0x02 (0001ms, 0835ms total)
T50BC 024:273 JLINK_ReadMemEx(0x00000E7C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000E7C) - Data: 45 4F 3B 60 45 48 00 59 45 4A 10 60 45 4A 12 59 ...  returns 0x3C (0000ms, 0835ms total)
T50BC 024:273 JLINK_ReadMemEx(0x00000E7C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E7C) - Data: 45 4F  returns 0x02 (0000ms, 0835ms total)
T50BC 024:273 JLINK_ReadMemEx(0x00000E7E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E7E) - Data: 3B 60  returns 0x02 (0000ms, 0835ms total)
T50BC 024:273 JLINK_ReadMemEx(0x00000E7E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E7E) - Data: 3B 60  returns 0x02 (0000ms, 0835ms total)
T50BC 024:273 JLINK_ReadMemEx(0x00000E80, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000E80) - Data: 45 48 00 59 45 4A 10 60 45 4A 12 59 45 4E 32 60 ...  returns 0x3C (0000ms, 0835ms total)
T50BC 024:273 JLINK_ReadMemEx(0x00000E80, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E80) - Data: 45 48  returns 0x02 (0000ms, 0835ms total)
T50BC 024:273 JLINK_ReadMemEx(0x00000E80, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000E80) - Data: 45 48 00 59 45 4A 10 60 45 4A 12 59 45 4E 32 60 ...  returns 0x3C (0000ms, 0835ms total)
T50BC 024:273 JLINK_ReadMemEx(0x00000E80, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E80) - Data: 45 48  returns 0x02 (0000ms, 0835ms total)
T50BC 024:273 JLINK_ReadMemEx(0x00000E82, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E82) - Data: 00 59  returns 0x02 (0000ms, 0835ms total)
T50BC 024:273 JLINK_ReadMemEx(0x00000E82, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E82) - Data: 00 59  returns 0x02 (0000ms, 0835ms total)
T50BC 024:273 JLINK_ReadMemEx(0x00000E84, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000E84) - Data: 45 4A 10 60 45 4A 12 59 45 4E 32 60 00 25 05 95 ...  returns 0x3C (0000ms, 0835ms total)
T50BC 024:273 JLINK_ReadMemEx(0x00000E84, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E84) - Data: 45 4A  returns 0x02 (0000ms, 0835ms total)
T50BC 024:273 JLINK_ReadMemEx(0x00000E84, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000E84) - Data: 45 4A 10 60 45 4A 12 59 45 4E 32 60 00 25 05 95 ...  returns 0x3C (0001ms, 0836ms total)
T50BC 024:274 JLINK_ReadMemEx(0x00000E84, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E84) - Data: 45 4A  returns 0x02 (0000ms, 0836ms total)
T50BC 024:274 JLINK_ReadMemEx(0x00000E86, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E86) - Data: 10 60  returns 0x02 (0000ms, 0836ms total)
T50BC 024:274 JLINK_ReadMemEx(0x00000E86, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E86) - Data: 10 60  returns 0x02 (0000ms, 0836ms total)
T50BC 024:274 JLINK_ReadMemEx(0x00000E88, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00000EC0) -- Updating C cache (64 bytes @ 0x00000EC0) -- Read from C cache (60 bytes @ 0x00000E88) - Data: 45 4A 12 59 45 4E 32 60 00 25 05 95 59 1A 44 4E ...  returns 0x3C (0001ms, 0837ms total)
T50BC 024:275 JLINK_ReadMemEx(0x00000E88, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E88) - Data: 45 4A  returns 0x02 (0000ms, 0837ms total)
T50BC 024:275 JLINK_ReadMemEx(0x00000E88, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000E88) - Data: 45 4A 12 59 45 4E 32 60 00 25 05 95 59 1A 44 4E ...  returns 0x3C (0001ms, 0838ms total)
T50BC 024:276 JLINK_ReadMemEx(0x00000E88, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E88) - Data: 45 4A  returns 0x02 (0000ms, 0838ms total)
T50BC 024:276 JLINK_ReadMemEx(0x00000E8A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E8A) - Data: 12 59  returns 0x02 (0000ms, 0838ms total)
T50BC 024:276 JLINK_ReadMemEx(0x00000E8A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E8A) - Data: 12 59  returns 0x02 (0000ms, 0838ms total)
T50BC 024:276 JLINK_ReadMemEx(0x00000E8C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000E8C) - Data: 45 4E 32 60 00 25 05 95 59 1A 44 4E 0D 46 31 60 ...  returns 0x3C (0000ms, 0838ms total)
T50BC 024:276 JLINK_ReadMemEx(0x00000E8C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E8C) - Data: 45 4E  returns 0x02 (0000ms, 0838ms total)
T50BC 024:276 JLINK_ReadMemEx(0x00000E8C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000E8C) - Data: 45 4E 32 60 00 25 05 95 59 1A 44 4E 0D 46 31 60 ...  returns 0x3C (0000ms, 0838ms total)
T50BC 024:276 JLINK_ReadMemEx(0x00000E8C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E8C) - Data: 45 4E  returns 0x02 (0000ms, 0838ms total)
T50BC 024:276 JLINK_ReadMemEx(0x00000E8E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E8E) - Data: 32 60  returns 0x02 (0000ms, 0838ms total)
T50BC 024:276 JLINK_ReadMemEx(0x00000E8E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E8E) - Data: 32 60  returns 0x02 (0000ms, 0838ms total)
T50BC 024:276 JLINK_ReadMemEx(0x00000E90, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000E90) - Data: 00 25 05 95 59 1A 44 4E 0D 46 31 60 3B 49 4B 68 ...  returns 0x3C (0000ms, 0838ms total)
T50BC 024:276 JLINK_ReadMemEx(0x00000E90, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E90) - Data: 00 25  returns 0x02 (0000ms, 0838ms total)
T50BC 024:276 JLINK_ReadMemEx(0x00000E90, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000E90) - Data: 00 25 05 95 59 1A 44 4E 0D 46 31 60 3B 49 4B 68 ...  returns 0x3C (0000ms, 0838ms total)
T50BC 024:276 JLINK_ReadMemEx(0x00000E90, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E90) - Data: 00 25  returns 0x02 (0001ms, 0839ms total)
T50BC 024:277 JLINK_ReadMemEx(0x00000E92, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E92) - Data: 05 95  returns 0x02 (0000ms, 0839ms total)
T50BC 024:277 JLINK_ReadMemEx(0x00000E92, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E92) - Data: 05 95  returns 0x02 (0000ms, 0839ms total)
T50BC 024:277 JLINK_ReadMemEx(0x00000E94, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000E94) - Data: 59 1A 44 4E 0D 46 31 60 3B 49 4B 68 79 68 99 41 ...  returns 0x3C (0000ms, 0839ms total)
T50BC 024:277 JLINK_ReadMemEx(0x00000E94, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E94) - Data: 59 1A  returns 0x02 (0000ms, 0839ms total)
T50BC 024:277 JLINK_ReadMemEx(0x00000E94, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000E94) - Data: 59 1A 44 4E 0D 46 31 60 3B 49 4B 68 79 68 99 41 ...  returns 0x3C (0000ms, 0839ms total)
T50BC 024:277 JLINK_ReadMemEx(0x00000E94, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E94) - Data: 59 1A  returns 0x02 (0000ms, 0839ms total)
T50BC 024:277 JLINK_ReadMemEx(0x00000E96, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E96) - Data: 44 4E  returns 0x02 (0000ms, 0839ms total)
T50BC 024:277 JLINK_ReadMemEx(0x00000E96, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E96) - Data: 44 4E  returns 0x02 (0000ms, 0839ms total)
T50BC 024:277 JLINK_ReadMemEx(0x00000E98, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000E98) - Data: 0D 46 31 60 3B 49 4B 68 79 68 99 41 04 9B 00 DB ...  returns 0x3C (0000ms, 0839ms total)
T50BC 024:277 JLINK_ReadMemEx(0x00000E98, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E98) - Data: 0D 46  returns 0x02 (0000ms, 0839ms total)
T50BC 024:277 JLINK_ReadMemEx(0x00000E98, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000E98) - Data: 0D 46 31 60 3B 49 4B 68 79 68 99 41 04 9B 00 DB ...  returns 0x3C (0000ms, 0839ms total)
T50BC 024:277 JLINK_ReadMemEx(0x00000E98, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E98) - Data: 0D 46  returns 0x02 (0001ms, 0840ms total)
T50BC 024:278 JLINK_ReadMemEx(0x00000E9A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E9A) - Data: 31 60  returns 0x02 (0000ms, 0840ms total)
T50BC 024:278 JLINK_ReadMemEx(0x00000E9A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E9A) - Data: 31 60  returns 0x02 (0000ms, 0840ms total)
T50BC 024:278 JLINK_ReadMemEx(0x00000E9C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000E9C) - Data: 3B 49 4B 68 79 68 99 41 04 9B 00 DB 05 9B 00 2B ...  returns 0x3C (0000ms, 0840ms total)
T50BC 024:278 JLINK_ReadMemEx(0x00000E9C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E9C) - Data: 3B 49  returns 0x02 (0000ms, 0840ms total)
T50BC 024:278 JLINK_ReadMemEx(0x00000E9C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000E9C) - Data: 3B 49 4B 68 79 68 99 41 04 9B 00 DB 05 9B 00 2B ...  returns 0x3C (0000ms, 0840ms total)
T50BC 024:278 JLINK_ReadMemEx(0x00000E9C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E9C) - Data: 3B 49  returns 0x02 (0000ms, 0840ms total)
T50BC 024:278 JLINK_ReadMemEx(0x00000E9E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E9E) - Data: 4B 68  returns 0x02 (0000ms, 0840ms total)
T50BC 024:278 JLINK_ReadMemEx(0x00000E9E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000E9E) - Data: 4B 68  returns 0x02 (0000ms, 0840ms total)
T50BC 024:278 JLINK_ReadMemEx(0x00000EA0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000EA0) - Data: 79 68 99 41 04 9B 00 DB 05 9B 00 2B 01 D0 00 9B ...  returns 0x3C (0000ms, 0840ms total)
T50BC 024:278 JLINK_ReadMemEx(0x00000EA0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EA0) - Data: 79 68  returns 0x02 (0000ms, 0840ms total)
T50BC 024:278 JLINK_ReadMemEx(0x00000EA0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000EA0) - Data: 79 68 99 41 04 9B 00 DB 05 9B 00 2B 01 D0 00 9B ...  returns 0x3C (0000ms, 0840ms total)
T50BC 024:278 JLINK_ReadMemEx(0x00000EA0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EA0) - Data: 79 68  returns 0x02 (0000ms, 0840ms total)
T50BC 024:278 JLINK_ReadMemEx(0x00000EA2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EA2) - Data: 99 41  returns 0x02 (0001ms, 0841ms total)
T50BC 024:279 JLINK_ReadMemEx(0x00000EA2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EA2) - Data: 99 41  returns 0x02 (0000ms, 0841ms total)
T50BC 024:279 JLINK_ReadMemEx(0x00000EA4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000EA4) - Data: 04 9B 00 DB 05 9B 00 2B 01 D0 00 9B C9 18 71 60 ...  returns 0x3C (0000ms, 0841ms total)
T50BC 024:279 JLINK_ReadMemEx(0x00000EA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EA4) - Data: 04 9B  returns 0x02 (0000ms, 0841ms total)
T50BC 024:279 JLINK_ReadMemEx(0x00000EA4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000EA4) - Data: 04 9B 00 DB 05 9B 00 2B 01 D0 00 9B C9 18 71 60 ...  returns 0x3C (0000ms, 0841ms total)
T50BC 024:279 JLINK_ReadMemEx(0x00000EA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EA4) - Data: 04 9B  returns 0x02 (0000ms, 0841ms total)
T50BC 024:279 JLINK_ReadMemEx(0x00000EA6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EA6) - Data: 00 DB  returns 0x02 (0000ms, 0841ms total)
T50BC 024:279 JLINK_ReadMemEx(0x00000EA6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EA6) - Data: 00 DB  returns 0x02 (0000ms, 0841ms total)
T50BC 024:279 JLINK_ReadMemEx(0x00000EA8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000EA8) - Data: 05 9B 00 2B 01 D0 00 9B C9 18 71 60 39 49 4B 68 ...  returns 0x3C (0000ms, 0841ms total)
T50BC 024:279 JLINK_ReadMemEx(0x00000EA8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EA8) - Data: 05 9B  returns 0x02 (0000ms, 0841ms total)
T50BC 024:279 JLINK_ReadMemEx(0x00000EA8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000EA8) - Data: 05 9B 00 2B 01 D0 00 9B C9 18 71 60 39 49 4B 68 ...  returns 0x3C (0000ms, 0841ms total)
T50BC 024:279 JLINK_ReadMemEx(0x00000EA8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EA8) - Data: 05 9B  returns 0x02 (0000ms, 0841ms total)
T50BC 024:279 JLINK_ReadMemEx(0x00000EAA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EAA) - Data: 00 2B  returns 0x02 (0000ms, 0841ms total)
T50BC 024:279 JLINK_ReadMemEx(0x00000EAA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EAA) - Data: 00 2B  returns 0x02 (0000ms, 0841ms total)
T50BC 024:279 JLINK_ReadMemEx(0x00000EAC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000EAC) - Data: 01 D0 00 9B C9 18 71 60 39 49 4B 68 3A 49 49 68 ...  returns 0x3C (0001ms, 0842ms total)
T50BC 024:280 JLINK_ReadMemEx(0x00000EAC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EAC) - Data: 01 D0  returns 0x02 (0000ms, 0842ms total)
T50BC 024:280 JLINK_ReadMemEx(0x00000EAC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000EAC) - Data: 01 D0 00 9B C9 18 71 60 39 49 4B 68 3A 49 49 68 ...  returns 0x3C (0000ms, 0842ms total)
T50BC 024:280 JLINK_ReadMemEx(0x00000EAC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EAC) - Data: 01 D0  returns 0x02 (0000ms, 0842ms total)
T50BC 024:280 JLINK_ReadMemEx(0x00000EAE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EAE) - Data: 00 9B  returns 0x02 (0000ms, 0842ms total)
T50BC 024:280 JLINK_ReadMemEx(0x00000EAE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EAE) - Data: 00 9B  returns 0x02 (0000ms, 0842ms total)
T50BC 024:280 JLINK_ReadMemEx(0x00000EB0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000EB0) - Data: C9 18 71 60 39 49 4B 68 3A 49 49 68 10 1A 99 41 ...  returns 0x3C (0000ms, 0842ms total)
T50BC 024:280 JLINK_ReadMemEx(0x00000EB0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EB0) - Data: C9 18  returns 0x02 (0000ms, 0842ms total)
T50BC 024:280 JLINK_ReadMemEx(0x00000EB0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000EB0) - Data: C9 18 71 60 39 49 4B 68 3A 49 49 68 10 1A 99 41 ...  returns 0x3C (0000ms, 0842ms total)
T50BC 024:280 JLINK_ReadMemEx(0x00000EB0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EB0) - Data: C9 18  returns 0x02 (0000ms, 0842ms total)
T50BC 024:280 JLINK_ReadMemEx(0x00000EB2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EB2) - Data: 71 60  returns 0x02 (0000ms, 0842ms total)
T50BC 024:280 JLINK_ReadMemEx(0x00000EB2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EB2) - Data: 71 60  returns 0x02 (0000ms, 0842ms total)
T50BC 024:280 JLINK_ReadMemEx(0x00000EB4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000EB4) - Data: 39 49 4B 68 3A 49 49 68 10 1A 99 41 04 9A 00 DB ...  returns 0x3C (0000ms, 0842ms total)
T50BC 024:280 JLINK_ReadMemEx(0x00000EB4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EB4) - Data: 39 49  returns 0x02 (0001ms, 0843ms total)
T50BC 024:281 JLINK_ReadMemEx(0x00000EB4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000EB4) - Data: 39 49 4B 68 3A 49 49 68 10 1A 99 41 04 9A 00 DB ...  returns 0x3C (0000ms, 0843ms total)
T50BC 024:281 JLINK_ReadMemEx(0x00000EB4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EB4) - Data: 39 49  returns 0x02 (0000ms, 0843ms total)
T50BC 024:281 JLINK_ReadMemEx(0x00000EB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EB6) - Data: 4B 68  returns 0x02 (0000ms, 0843ms total)
T50BC 024:281 JLINK_ReadMemEx(0x00000EB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EB6) - Data: 4B 68  returns 0x02 (0000ms, 0843ms total)
T50BC 024:281 JLINK_ReadMemEx(0x00000EB8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000EB8) - Data: 3A 49 49 68 10 1A 99 41 04 9A 00 DB 05 9A 00 2A ...  returns 0x3C (0000ms, 0843ms total)
T50BC 024:281 JLINK_ReadMemEx(0x00000EB8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EB8) - Data: 3A 49  returns 0x02 (0000ms, 0843ms total)
T50BC 024:281 JLINK_ReadMemEx(0x00000EB8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000EB8) - Data: 3A 49 49 68 10 1A 99 41 04 9A 00 DB 05 9A 00 2A ...  returns 0x3C (0000ms, 0843ms total)
T50BC 024:281 JLINK_ReadMemEx(0x00000EB8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EB8) - Data: 3A 49  returns 0x02 (0000ms, 0843ms total)
T50BC 024:281 JLINK_ReadMemEx(0x00000EBA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EBA) - Data: 49 68  returns 0x02 (0000ms, 0843ms total)
T50BC 024:281 JLINK_ReadMemEx(0x00000EBA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EBA) - Data: 49 68  returns 0x02 (0000ms, 0843ms total)
T50BC 024:281 JLINK_ReadMemEx(0x00000EBC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000EBC) - Data: 10 1A 99 41 04 9A 00 DB 05 9A 00 2A 01 D0 00 9A ...  returns 0x3C (0000ms, 0843ms total)
T50BC 024:281 JLINK_ReadMemEx(0x00000EBC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EBC) - Data: 10 1A  returns 0x02 (0000ms, 0843ms total)
T50BC 024:281 JLINK_ReadMemEx(0x00000EBC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000EBC) - Data: 10 1A 99 41 04 9A 00 DB 05 9A 00 2A 01 D0 00 9A ...  returns 0x3C (0001ms, 0844ms total)
T50BC 024:282 JLINK_ReadMemEx(0x00000EBC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EBC) - Data: 10 1A  returns 0x02 (0000ms, 0844ms total)
T50BC 024:282 JLINK_ReadMemEx(0x00000EBE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EBE) - Data: 99 41  returns 0x02 (0000ms, 0844ms total)
T50BC 024:282 JLINK_ReadMemEx(0x00000EBE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EBE) - Data: 99 41  returns 0x02 (0000ms, 0844ms total)
T50BC 024:282 JLINK_ReadMemEx(0x00000EC0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000EC0) - Data: 04 9A 00 DB 05 9A 00 2A 01 D0 00 9A 89 18 FF F7 ...  returns 0x3C (0000ms, 0844ms total)
T50BC 024:282 JLINK_ReadMemEx(0x00000EC0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EC0) - Data: 04 9A  returns 0x02 (0000ms, 0844ms total)
T50BC 024:282 JLINK_ReadMemEx(0x00000EC0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000EC0) - Data: 04 9A 00 DB 05 9A 00 2A 01 D0 00 9A 89 18 FF F7 ...  returns 0x3C (0000ms, 0844ms total)
T50BC 024:282 JLINK_ReadMemEx(0x00000EC0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EC0) - Data: 04 9A  returns 0x02 (0000ms, 0844ms total)
T50BC 024:282 JLINK_ReadMemEx(0x00000EC2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EC2) - Data: 00 DB  returns 0x02 (0000ms, 0844ms total)
T50BC 024:282 JLINK_ReadMemEx(0x00000EC2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EC2) - Data: 00 DB  returns 0x02 (0000ms, 0844ms total)
T50BC 024:282 JLINK_ReadMemEx(0x00000EC4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000EC4) - Data: 05 9A 00 2A 01 D0 00 9A 89 18 FF F7 81 FC 02 46 ...  returns 0x3C (0000ms, 0844ms total)
T50BC 024:282 JLINK_ReadMemEx(0x00000EC4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EC4) - Data: 05 9A  returns 0x02 (0000ms, 0844ms total)
T50BC 024:282 JLINK_ReadMemEx(0x00000EC4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000EC4) - Data: 05 9A 00 2A 01 D0 00 9A 89 18 FF F7 81 FC 02 46 ...  returns 0x3C (0001ms, 0845ms total)
T50BC 024:283 JLINK_ReadMemEx(0x00000EC4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EC4) - Data: 05 9A  returns 0x02 (0000ms, 0845ms total)
T50BC 024:283 JLINK_ReadMemEx(0x00000EC6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EC6) - Data: 00 2A  returns 0x02 (0000ms, 0845ms total)
T50BC 024:283 JLINK_ReadMemEx(0x00000EC6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EC6) - Data: 00 2A  returns 0x02 (0000ms, 0845ms total)
T50BC 024:283 JLINK_ReadMemEx(0x00000EC8, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00000F00) -- Updating C cache (64 bytes @ 0x00000F00) -- Read from C cache (60 bytes @ 0x00000EC8) - Data: 01 D0 00 9A 89 18 FF F7 81 FC 02 46 0B 46 02 98 ...  returns 0x3C (0001ms, 0846ms total)
T50BC 024:284 JLINK_ReadMemEx(0x00000EC8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EC8) - Data: 01 D0  returns 0x02 (0001ms, 0847ms total)
T50BC 024:285 JLINK_ReadMemEx(0x00000EC8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000EC8) - Data: 01 D0 00 9A 89 18 FF F7 81 FC 02 46 0B 46 02 98 ...  returns 0x3C (0000ms, 0847ms total)
T50BC 024:285 JLINK_ReadMemEx(0x00000EC8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EC8) - Data: 01 D0  returns 0x02 (0000ms, 0847ms total)
T50BC 024:285 JLINK_ReadMemEx(0x00000ECA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000ECA) - Data: 00 9A  returns 0x02 (0000ms, 0847ms total)
T50BC 024:285 JLINK_ReadMemEx(0x00000ECA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000ECA) - Data: 00 9A  returns 0x02 (0000ms, 0847ms total)
T50BC 024:285 JLINK_ReadMemEx(0x00000ECC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000ECC) - Data: 89 18 FF F7 81 FC 02 46 0B 46 02 98 01 99 FF F7 ...  returns 0x3C (0000ms, 0847ms total)
T50BC 024:285 JLINK_ReadMemEx(0x00000ECC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000ECC) - Data: 89 18  returns 0x02 (0000ms, 0847ms total)
T50BC 024:285 JLINK_ReadMemEx(0x00000ECC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000ECC) - Data: 89 18 FF F7 81 FC 02 46 0B 46 02 98 01 99 FF F7 ...  returns 0x3C (0000ms, 0847ms total)
T50BC 024:285 JLINK_ReadMemEx(0x00000ECC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000ECC) - Data: 89 18  returns 0x02 (0001ms, 0848ms total)
T50BC 024:286 JLINK_ReadMemEx(0x00000ECE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000ECE) - Data: FF F7  returns 0x02 (0000ms, 0848ms total)
T50BC 024:286 JLINK_ReadMemEx(0x00000ECE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000ECE) - Data: FF F7  returns 0x02 (0000ms, 0848ms total)
T50BC 024:286 JLINK_ReadMemEx(0x00000ED0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000ED0) - Data: 81 FC 02 46 0B 46 02 98 01 99 FF F7 F5 FA FF F7 ...  returns 0x3C (0000ms, 0848ms total)
T50BC 024:286 JLINK_ReadMemEx(0x00000ED0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000ED0) - Data: 81 FC  returns 0x02 (0000ms, 0848ms total)
T50BC 024:286 JLINK_ReadMemEx(0x00000ED2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000ED2) - Data: 02 46  returns 0x02 (0000ms, 0848ms total)
T50BC 024:286 JLINK_ReadMemEx(0x00000ED4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000ED4) - Data: 0B 46 02 98 01 99 FF F7 F5 FA FF F7 E1 FC 32 4A ...  returns 0x3C (0000ms, 0848ms total)
T50BC 024:286 JLINK_ReadMemEx(0x00000ED4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000ED4) - Data: 0B 46  returns 0x02 (0000ms, 0848ms total)
T50BC 024:286 JLINK_ReadMemEx(0x00000ED4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000ED4) - Data: 0B 46 02 98 01 99 FF F7 F5 FA FF F7 E1 FC 32 4A ...  returns 0x3C (0000ms, 0848ms total)
T50BC 024:286 JLINK_ReadMemEx(0x00000ED4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000ED4) - Data: 0B 46  returns 0x02 (0000ms, 0848ms total)
T50BC 024:286 JLINK_ReadMemEx(0x00000ED6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000ED6) - Data: 02 98  returns 0x02 (0000ms, 0848ms total)
T50BC 024:286 JLINK_ReadMemEx(0x00000ED6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000ED6) - Data: 02 98  returns 0x02 (0001ms, 0849ms total)
T50BC 024:287 JLINK_ReadMemEx(0x00000ED8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000ED8) - Data: 01 99 FF F7 F5 FA FF F7 E1 FC 32 4A 03 C2 40 1B ...  returns 0x3C (0000ms, 0849ms total)
T50BC 024:287 JLINK_ReadMemEx(0x00000ED8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000ED8) - Data: 01 99  returns 0x02 (0000ms, 0849ms total)
T50BC 024:287 JLINK_ReadMemEx(0x00000ED8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000ED8) - Data: 01 99 FF F7 F5 FA FF F7 E1 FC 32 4A 03 C2 40 1B ...  returns 0x3C (0000ms, 0849ms total)
T50BC 024:287 JLINK_ReadMemEx(0x00000ED8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000ED8) - Data: 01 99  returns 0x02 (0000ms, 0849ms total)
T50BC 024:287 JLINK_ReadMemEx(0x00000EDA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EDA) - Data: FF F7  returns 0x02 (0000ms, 0849ms total)
T50BC 024:287 JLINK_ReadMemEx(0x00000EDA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EDA) - Data: FF F7  returns 0x02 (0000ms, 0849ms total)
T50BC 024:287 JLINK_ReadMemEx(0x00000EDC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000EDC) - Data: F5 FA FF F7 E1 FC 32 4A 03 C2 40 1B C1 0F 40 18 ...  returns 0x3C (0000ms, 0849ms total)
T50BC 024:287 JLINK_ReadMemEx(0x00000EDC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EDC) - Data: F5 FA  returns 0x02 (0000ms, 0849ms total)
T50BC 024:287 JLINK_ReadMemEx(0x00000EDE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EDE) - Data: FF F7  returns 0x02 (0000ms, 0849ms total)
T50BC 024:287 JLINK_ReadMemEx(0x00000EE0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000EE0) - Data: E1 FC 32 4A 03 C2 40 1B C1 0F 40 18 40 10 30 49 ...  returns 0x3C (0001ms, 0850ms total)
T50BC 024:288 JLINK_ReadMemEx(0x00000EE0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EE0) - Data: E1 FC  returns 0x02 (0000ms, 0850ms total)
T50BC 024:288 JLINK_ReadMemEx(0x00000EE2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EE2) - Data: 32 4A  returns 0x02 (0000ms, 0850ms total)
T50BC 024:288 JLINK_ReadMemEx(0x00000EE4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000EE4) - Data: 03 C2 40 1B C1 0F 40 18 40 10 30 49 08 60 FF F7 ...  returns 0x3C (0000ms, 0850ms total)
T50BC 024:288 JLINK_ReadMemEx(0x00000EE4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EE4) - Data: 03 C2  returns 0x02 (0000ms, 0850ms total)
T50BC 024:288 JLINK_ReadMemEx(0x00000EE4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000EE4) - Data: 03 C2 40 1B C1 0F 40 18 40 10 30 49 08 60 FF F7 ...  returns 0x3C (0000ms, 0850ms total)
T50BC 024:288 JLINK_ReadMemEx(0x00000EE4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EE4) - Data: 03 C2  returns 0x02 (0000ms, 0850ms total)
T50BC 024:288 JLINK_ReadMemEx(0x00000EE6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EE6) - Data: 40 1B  returns 0x02 (0000ms, 0850ms total)
T50BC 024:288 JLINK_ReadMemEx(0x00000EE6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EE6) - Data: 40 1B  returns 0x02 (0000ms, 0850ms total)
T50BC 024:288 JLINK_ReadMemEx(0x00000EE8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000EE8) - Data: C1 0F 40 18 40 10 30 49 08 60 FF F7 4D FC 2F 4A ...  returns 0x3C (0000ms, 0850ms total)
T50BC 024:288 JLINK_ReadMemEx(0x00000EE8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EE8) - Data: C1 0F  returns 0x02 (0001ms, 0851ms total)
T50BC 024:289 JLINK_ReadMemEx(0x00000EE8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000EE8) - Data: C1 0F 40 18 40 10 30 49 08 60 FF F7 4D FC 2F 4A ...  returns 0x3C (0000ms, 0851ms total)
T50BC 024:289 JLINK_ReadMemEx(0x00000EE8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EE8) - Data: C1 0F  returns 0x02 (0000ms, 0851ms total)
T50BC 024:289 JLINK_ReadMemEx(0x00000EEA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EEA) - Data: 40 18  returns 0x02 (0000ms, 0851ms total)
T50BC 024:289 JLINK_ReadMemEx(0x00000EEA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EEA) - Data: 40 18  returns 0x02 (0000ms, 0851ms total)
T50BC 024:289 JLINK_ReadMemEx(0x00000EEC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000EEC) - Data: 40 10 30 49 08 60 FF F7 4D FC 2F 4A 2F 4B FF F7 ...  returns 0x3C (0000ms, 0851ms total)
T50BC 024:289 JLINK_ReadMemEx(0x00000EEC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EEC) - Data: 40 10  returns 0x02 (0000ms, 0851ms total)
T50BC 024:289 JLINK_ReadMemEx(0x00000EEC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000EEC) - Data: 40 10 30 49 08 60 FF F7 4D FC 2F 4A 2F 4B FF F7 ...  returns 0x3C (0000ms, 0851ms total)
T50BC 024:289 JLINK_ReadMemEx(0x00000EEC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EEC) - Data: 40 10  returns 0x02 (0000ms, 0851ms total)
T50BC 024:289 JLINK_ReadMemEx(0x00000EEE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EEE) - Data: 30 49  returns 0x02 (0000ms, 0851ms total)
T50BC 024:289 JLINK_ReadMemEx(0x00000EEE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EEE) - Data: 30 49  returns 0x02 (0000ms, 0851ms total)
T50BC 024:289 JLINK_ReadMemEx(0x00000EF0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000EF0) - Data: 08 60 FF F7 4D FC 2F 4A 2F 4B FF F7 E5 FA 2F 4A ...  returns 0x3C (0000ms, 0851ms total)
T50BC 024:289 JLINK_ReadMemEx(0x00000EF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EF0) - Data: 08 60  returns 0x02 (0000ms, 0851ms total)
T50BC 024:289 JLINK_ReadMemEx(0x00000EF0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000EF0) - Data: 08 60 FF F7 4D FC 2F 4A 2F 4B FF F7 E5 FA 2F 4A ...  returns 0x3C (0001ms, 0852ms total)
T50BC 024:290 JLINK_ReadMemEx(0x00000EF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EF0) - Data: 08 60  returns 0x02 (0000ms, 0852ms total)
T50BC 024:290 JLINK_ReadMemEx(0x00000EF2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EF2) - Data: FF F7  returns 0x02 (0000ms, 0852ms total)
T50BC 024:290 JLINK_ReadMemEx(0x00000EF2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EF2) - Data: FF F7  returns 0x02 (0000ms, 0852ms total)
T50BC 024:290 JLINK_ReadMemEx(0x00000EF4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000EF4) - Data: 4D FC 2F 4A 2F 4B FF F7 E5 FA 2F 4A 03 C2 2F 4A ...  returns 0x3C (0000ms, 0852ms total)
T50BC 024:290 JLINK_ReadMemEx(0x00000EF4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EF4) - Data: 4D FC  returns 0x02 (0000ms, 0852ms total)
T50BC 024:290 JLINK_ReadMemEx(0x00000EF6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EF6) - Data: 2F 4A  returns 0x02 (0000ms, 0852ms total)
T50BC 024:290 JLINK_ReadMemEx(0x00000EF8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000EF8) - Data: 2F 4B FF F7 E5 FA 2F 4A 03 C2 2F 4A 2F 4B FF F7 ...  returns 0x3C (0000ms, 0852ms total)
T50BC 024:290 JLINK_ReadMemEx(0x00000EF8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EF8) - Data: 2F 4B  returns 0x02 (0000ms, 0852ms total)
T50BC 024:290 JLINK_ReadMemEx(0x00000EF8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000EF8) - Data: 2F 4B FF F7 E5 FA 2F 4A 03 C2 2F 4A 2F 4B FF F7 ...  returns 0x3C (0000ms, 0852ms total)
T50BC 024:290 JLINK_ReadMemEx(0x00000EF8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EF8) - Data: 2F 4B  returns 0x02 (0000ms, 0852ms total)
T50BC 024:290 JLINK_ReadMemEx(0x00000EFA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EFA) - Data: FF F7  returns 0x02 (0000ms, 0852ms total)
T50BC 024:290 JLINK_ReadMemEx(0x00000EFA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EFA) - Data: FF F7  returns 0x02 (0001ms, 0853ms total)
T50BC 024:291 JLINK_ReadMemEx(0x00000EFC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000EFC) - Data: E5 FA 2F 4A 03 C2 2F 4A 2F 4B FF F7 DF FA 05 9F ...  returns 0x3C (0000ms, 0853ms total)
T50BC 024:291 JLINK_ReadMemEx(0x00000EFC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EFC) - Data: E5 FA  returns 0x02 (0000ms, 0853ms total)
T50BC 024:291 JLINK_ReadMemEx(0x00000EFE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000EFE) - Data: 2F 4A  returns 0x02 (0000ms, 0853ms total)
T50BC 024:291 JLINK_ReadMemEx(0x00000F00, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000F00) - Data: 03 C2 2F 4A 2F 4B FF F7 DF FA 05 9F 3A 46 2E 4B ...  returns 0x3C (0000ms, 0853ms total)
T50BC 024:291 JLINK_ReadMemEx(0x00000F00, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000F00) - Data: 03 C2  returns 0x02 (0000ms, 0853ms total)
T50BC 024:291 JLINK_ReadMemEx(0x00000F00, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000F00) - Data: 03 C2 2F 4A 2F 4B FF F7 DF FA 05 9F 3A 46 2E 4B ...  returns 0x3C (0000ms, 0853ms total)
T50BC 024:291 JLINK_ReadMemEx(0x00000F00, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000F00) - Data: 03 C2  returns 0x02 (0000ms, 0853ms total)
T50BC 024:291 JLINK_ReadMemEx(0x00000F02, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000F02) - Data: 2F 4A  returns 0x02 (0000ms, 0853ms total)
T50BC 024:291 JLINK_ReadMemEx(0x00000F02, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000F02) - Data: 2F 4A  returns 0x02 (0000ms, 0853ms total)
T50BC 024:291 JLINK_ReadMemEx(0x00000F04, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000F04) - Data: 2F 4B FF F7 DF FA 05 9F 3A 46 2E 4B FF F7 DA FA ...  returns 0x3C (0000ms, 0853ms total)
T50BC 024:291 JLINK_ReadMemEx(0x00000F04, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000F04) - Data: 2F 4B  returns 0x02 (0000ms, 0853ms total)
T50BC 024:291 JLINK_ReadMemEx(0x00000F04, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000F04) - Data: 2F 4B FF F7 DF FA 05 9F 3A 46 2E 4B FF F7 DA FA ...  returns 0x3C (0000ms, 0853ms total)
T50BC 024:291 JLINK_ReadMemEx(0x00000F04, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000F04) - Data: 2F 4B  returns 0x02 (0001ms, 0854ms total)
T50BC 024:292 JLINK_ReadMemEx(0x00000F06, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000F06) - Data: FF F7  returns 0x02 (0000ms, 0854ms total)
T50BC 024:292 JLINK_ReadMemEx(0x00000F06, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000F06) - Data: FF F7  returns 0x02 (0000ms, 0854ms total)
T50BC 024:292 JLINK_ReadMemEx(0x00000F08, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00000F40) -- Updating C cache (64 bytes @ 0x00000F40) -- Read from C cache (60 bytes @ 0x00000F08) - Data: DF FA 05 9F 3A 46 2E 4B FF F7 DA FA 05 46 0E 46 ...  returns 0x3C (0001ms, 0855ms total)
T50BC 024:293 JLINK_ReadMemEx(0x00000F08, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000F08) - Data: DF FA  returns 0x02 (0000ms, 0855ms total)
T50BC 024:293 JLINK_ReadMemEx(0x00000F0A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000F0A) - Data: 05 9F  returns 0x02 (0000ms, 0855ms total)
T50BC 024:293 JLINK_ReadMemEx(0x00000F0C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000F0C) - Data: 3A 46 2E 4B FF F7 DA FA 05 46 0E 46 2C 48 05 60 ...  returns 0x3C (0001ms, 0856ms total)
T50BC 024:294 JLINK_ReadMemEx(0x00000F0C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000F0C) - Data: 3A 46  returns 0x02 (0000ms, 0856ms total)
T50BC 024:294 JLINK_ReadMemEx(0x00000F0C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000F0C) - Data: 3A 46 2E 4B FF F7 DA FA 05 46 0E 46 2C 48 05 60 ...  returns 0x3C (0000ms, 0856ms total)
T50BC 024:294 JLINK_ReadMemEx(0x00000F0C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000F0C) - Data: 3A 46  returns 0x02 (0000ms, 0856ms total)
T50BC 024:294 JLINK_ReadMemEx(0x00000F0E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000F0E) - Data: 2E 4B  returns 0x02 (0000ms, 0856ms total)
T50BC 024:294 JLINK_ReadMemEx(0x00000F0E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000F0E) - Data: 2E 4B  returns 0x02 (0000ms, 0856ms total)
T50BC 024:294 JLINK_ReadMemEx(0x00000F10, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000F10) - Data: FF F7 DA FA 05 46 0E 46 2C 48 05 60 41 60 28 46 ...  returns 0x3C (0000ms, 0856ms total)
T50BC 024:294 JLINK_ReadMemEx(0x00000F10, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000F10) - Data: FF F7  returns 0x02 (0000ms, 0856ms total)
T50BC 024:294 JLINK_ReadMemEx(0x00000F10, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000F10) - Data: FF F7 DA FA 05 46 0E 46 2C 48 05 60 41 60 28 46 ...  returns 0x3C (0000ms, 0856ms total)
T50BC 024:294 JLINK_ReadMemEx(0x00000F10, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000F10) - Data: FF F7  returns 0x02 (0000ms, 0856ms total)
T50BC 024:294 JLINK_ReadMemEx(0x00000F12, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000F12) - Data: DA FA  returns 0x02 (0000ms, 0856ms total)
T50BC 024:294 JLINK_ReadMemEx(0x00000F14, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000F14) - Data: 05 46 0E 46 2C 48 05 60 41 60 28 46 3A 46 2B 4B ...  returns 0x3C (0001ms, 0857ms total)
T50BC 024:295 JLINK_ReadMemEx(0x00000F14, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000F14) - Data: 05 46  returns 0x02 (0000ms, 0857ms total)
T50BC 024:295 JLINK_ReadMemEx(0x00000F16, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000F16) - Data: 0E 46  returns 0x02 (0000ms, 0857ms total)
T50BC 024:295 JLINK_ReadMemEx(0x00000F16, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000F16) - Data: 0E 46  returns 0x02 (0000ms, 0857ms total)
T50BC 024:295 JLINK_ReadMemEx(0x00000F18, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000F18) - Data: 2C 48 05 60 41 60 28 46 3A 46 2B 4B FF F7 F6 FB ...  returns 0x3C (0000ms, 0857ms total)
T50BC 024:295 JLINK_ReadMemEx(0x00000F18, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000F18) - Data: 2C 48  returns 0x02 (0000ms, 0857ms total)
T50BC 024:295 JLINK_ReadMemEx(0x00000F18, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000F18) - Data: 2C 48 05 60 41 60 28 46 3A 46 2B 4B FF F7 F6 FB ...  returns 0x3C (0000ms, 0857ms total)
T50BC 024:295 JLINK_ReadMemEx(0x00000F18, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000F18) - Data: 2C 48  returns 0x02 (0000ms, 0857ms total)
T50BC 024:295 JLINK_ReadMemEx(0x00000F1A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000F1A) - Data: 05 60  returns 0x02 (0000ms, 0857ms total)
T50BC 024:295 JLINK_ReadMemEx(0x00000F1A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000F1A) - Data: 05 60  returns 0x02 (0000ms, 0857ms total)
T50BC 024:295 JLINK_ReadMemEx(0x00000F1C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000F1C) - Data: 41 60 28 46 3A 46 2B 4B FF F7 F6 FB 00 28 03 9F ...  returns 0x3C (0000ms, 0857ms total)
T50BC 024:295 JLINK_ReadMemEx(0x00000F1C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000F1C) - Data: 41 60  returns 0x02 (0000ms, 0857ms total)
T50BC 024:295 JLINK_ReadMemEx(0x00000F1C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000F1C) - Data: 41 60 28 46 3A 46 2B 4B FF F7 F6 FB 00 28 03 9F ...  returns 0x3C (0000ms, 0857ms total)
T50BC 024:295 JLINK_ReadMemEx(0x00000F1C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000F1C) - Data: 41 60  returns 0x02 (0001ms, 0858ms total)
T50BC 024:296 JLINK_ReadMemEx(0x00000F1E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000F1E) - Data: 28 46  returns 0x02 (0000ms, 0858ms total)
T50BC 024:296 JLINK_ReadMemEx(0x00000F1E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000F1E) - Data: 28 46  returns 0x02 (0000ms, 0858ms total)
T50BC 024:296 JLINK_ReadMemEx(0x00000F20, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000F20) - Data: 3A 46 2B 4B FF F7 F6 FB 00 28 03 9F 93 D1 00 22 ...  returns 0x3C (0000ms, 0858ms total)
T50BC 024:296 JLINK_ReadMemEx(0x00000F20, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000F20) - Data: 3A 46  returns 0x02 (0000ms, 0858ms total)
T50BC 024:296 JLINK_ReadMemEx(0x00000F20, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000F20) - Data: 3A 46 2B 4B FF F7 F6 FB 00 28 03 9F 93 D1 00 22 ...  returns 0x3C (0000ms, 0858ms total)
T50BC 024:296 JLINK_ReadMemEx(0x00000F20, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000F20) - Data: 3A 46  returns 0x02 (0000ms, 0858ms total)
T50BC 024:296 JLINK_ReadMemEx(0x00000F22, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000F22) - Data: 2B 4B  returns 0x02 (0000ms, 0858ms total)
T50BC 024:296 JLINK_ReadMemEx(0x00000F22, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000F22) - Data: 2B 4B  returns 0x02 (0000ms, 0858ms total)
T50BC 024:296 JLINK_ReadMemEx(0x00000F24, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000F24) - Data: FF F7 F6 FB 00 28 03 9F 93 D1 00 22 28 46 31 46 ...  returns 0x3C (0000ms, 0858ms total)
T50BC 024:296 JLINK_ReadMemEx(0x00000F24, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000F24) - Data: FF F7  returns 0x02 (0000ms, 0858ms total)
T50BC 024:296 JLINK_ReadMemEx(0x00000F24, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00000F24) - Data: FF F7 F6 FB 00 28 03 9F 93 D1 00 22 28 46 31 46 ...  returns 0x3C (0000ms, 0858ms total)
T50BC 024:296 JLINK_ReadMemEx(0x00000F24, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000F24) - Data: FF F7  returns 0x02 (0001ms, 0859ms total)
T50BC 024:297 JLINK_ReadMemEx(0x00000F26, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00000F26) - Data: F6 FB  returns 0x02 (0000ms, 0859ms total)
T50BC 054:177 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0001ms, 0860ms total)
T50BC 054:178 JLINK_Reset() -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)Reset: Halt core after reset via DEMCR.VC_CORERESET. >0x35 TIF>Reset: Reset device via AIRCR.SYSRESETREQ. -- CPU_WriteMem(4 bytes @ 0xE000ED0C) >0x0D TIF> >0x28 TIF> -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE0002000)
 -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0074ms, 0934ms total)
T50BC 054:252 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0934ms total)
T50BC 054:252 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0934ms total)
T50BC 054:255 JLINK_ReadMemEx(0x03003738, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003738) - Data: 00 F0 4E F8 FC F7 C0 FC 80 B5 0D 49 08 68 00 28 ...  returns 0x3C (0002ms, 0936ms total)
T50BC 054:257 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0001ms, 0937ms total)
T50BC 054:258 JLINK_ReadMemEx(0x0300373A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373A) - Data: 4E F8  returns 0x02 (0001ms, 0938ms total)
T50BC 054:259 JLINK_ReadMemEx(0x0300373C, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x0300373C) - Data: FC F7 C0 FC 80 B5 0D 49 08 68 00 28 00 D4 80 BD ...  returns 0x3C (0001ms, 0939ms total)
T50BC 054:260 JLINK_ReadMemEx(0x0300373C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373C) - Data: FC F7  returns 0x02 (0001ms, 0940ms total)
T50BC 054:261 JLINK_ReadMemEx(0x0300373E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373E) - Data: C0 FC  returns 0x02 (0001ms, 0941ms total)
T50BC 054:262 JLINK_ReadMemEx(0x03003740, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003740) - Data: 80 B5 0D 49 08 68 00 28 00 D4 80 BD 0B 48 02 68 ...  returns 0x3C (0001ms, 0942ms total)
T50BC 054:263 JLINK_ReadMemEx(0x03003740, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003740) - Data: 80 B5  returns 0x02 (0001ms, 0943ms total)
T50BC 054:264 JLINK_ReadMemEx(0x03003742, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003742) - Data: 0D 49  returns 0x02 (0001ms, 0944ms total)
T50BC 054:265 JLINK_ReadMemEx(0x03003742, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003742) - Data: 0D 49  returns 0x02 (0001ms, 0945ms total)
T50BC 054:266 JLINK_ReadMemEx(0x03003744, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003744) - Data: 08 68 00 28 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 ...  returns 0x3C (0002ms, 0947ms total)
T50BC 054:268 JLINK_ReadMemEx(0x03003744, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003744) - Data: 08 68  returns 0x02 (0001ms, 0948ms total)
T50BC 054:269 JLINK_ReadMemEx(0x03003744, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003744) - Data: 08 68 00 28 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 ...  returns 0x3C (0002ms, 0950ms total)
T50BC 054:271 JLINK_ReadMemEx(0x03003744, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003744) - Data: 08 68  returns 0x02 (0001ms, 0951ms total)
T50BC 054:272 JLINK_ReadMemEx(0x03003746, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003746) - Data: 00 28  returns 0x02 (0001ms, 0952ms total)
T50BC 054:273 JLINK_ReadMemEx(0x03003746, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003746) - Data: 00 28  returns 0x02 (0001ms, 0953ms total)
T50BC 054:274 JLINK_ReadMemEx(0x03003748, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003748) - Data: 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 04 22 0A 60 ...  returns 0x3C (0001ms, 0954ms total)
T50BC 054:275 JLINK_ReadMemEx(0x03003748, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003748) - Data: 00 D4  returns 0x02 (0001ms, 0955ms total)
T50BC 054:276 JLINK_ReadMemEx(0x03003748, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003748) - Data: 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 04 22 0A 60 ...  returns 0x3C (0002ms, 0957ms total)
T50BC 054:278 JLINK_ReadMemEx(0x03003748, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003748) - Data: 00 D4  returns 0x02 (0001ms, 0958ms total)
T50BC 054:279 JLINK_ReadMemEx(0x0300374A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300374A) - Data: 80 BD  returns 0x02 (0001ms, 0959ms total)
T50BC 054:306 JLINK_ReadReg(R0)  returns 0x02026E18 (0000ms, 0959ms total)
T50BC 054:306 JLINK_ReadReg(R1)  returns 0xC00E04AE (0000ms, 0959ms total)
T50BC 054:306 JLINK_ReadReg(R2)  returns 0x60000000 (0000ms, 0959ms total)
T50BC 054:306 JLINK_ReadReg(R3)  returns 0x60000000 (0000ms, 0959ms total)
T50BC 054:306 JLINK_ReadReg(R4)  returns 0x00000000 (0000ms, 0959ms total)
T50BC 054:306 JLINK_ReadReg(R5)  returns 0x41D9E02E (0000ms, 0959ms total)
T50BC 054:306 JLINK_ReadReg(R6)  returns 0xC00E04AE (0000ms, 0959ms total)
T50BC 054:306 JLINK_ReadReg(R7)  returns 0x00000000 (0001ms, 0960ms total)
T50BC 054:307 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 0960ms total)
T50BC 054:307 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 0960ms total)
T50BC 054:307 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 0960ms total)
T50BC 054:307 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 0960ms total)
T50BC 054:307 JLINK_ReadReg(R12)  returns 0x00000003 (0000ms, 0960ms total)
T50BC 054:307 JLINK_ReadReg(R13 (SP))  returns 0x0202F800 (0000ms, 0960ms total)
T50BC 054:307 JLINK_ReadReg(R14)  returns 0x00000B5B (0000ms, 0960ms total)
T50BC 054:307 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0960ms total)
T50BC 054:307 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0960ms total)
T50BC 054:307 JLINK_ReadReg(MSP)  returns 0x0202F800 (0000ms, 0960ms total)
T50BC 054:307 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 0960ms total)
T50BC 054:307 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0960ms total)
T50BC 054:307 JLINK_ReadMemEx(0x02026B40, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x02026B40) -- Updating C cache (64 bytes @ 0x02026B40) -- Read from C cache (4 bytes @ 0x02026B40) - Data: 2D 9D 0C 00  returns 0x04 (0002ms, 0962ms total)
T50BC 054:327 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x02026E00) -- Updating C cache (64 bytes @ 0x02026E00) -- Read from C cache (4 bytes @ 0x02026E20) - Data: E3 5F 0D 00  returns 0x04 (0001ms, 0963ms total)
T50BC 054:329 JLINK_ReadMemEx(0x020276F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x020276C0) -- Updating C cache (64 bytes @ 0x020276C0) -- Read from C cache (4 bytes @ 0x020276F0) - Data: 50 C3 00 00  returns 0x04 (0002ms, 0965ms total)
T50BC 054:332 JLINK_ReadMemEx(0x0202634F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x02026340) -- Updating C cache (64 bytes @ 0x02026340) -- Read from C cache (1 bytes @ 0x0202634F) - Data: 01  returns 0x01 (0001ms, 0966ms total)
T50BC 054:333 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x02027640) -- Updating C cache (64 bytes @ 0x02027640) -- Read from C cache (1 bytes @ 0x02027660) - Data: 01  returns 0x01 (0002ms, 0968ms total)
T50BC 054:335 JLINK_ReadMemEx(0x020274DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x020274C0) -- Updating C cache (64 bytes @ 0x020274C0) -- Read from C cache (1 bytes @ 0x020274DD) - Data: 00  returns 0x01 (0001ms, 0969ms total)
T50BC 054:337 JLINK_ReadMemEx(0x02026E10, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026E10) - Data: 34 12 00 00  returns 0x04 (0000ms, 0969ms total)
T50BC 054:338 JLINK_ReadMemEx(0x02028444, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028444) - Data: 2F A7 0E 00  returns 0x04 (0001ms, 0970ms total)
T50BC 054:339 JLINK_ReadMemEx(0x02028440, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028440) - Data: 09 EC 09 00  returns 0x04 (0001ms, 0971ms total)
T50BC 054:340 JLINK_ReadMemEx(0x02028448, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028448) - Data: 49 F8 09 00  returns 0x04 (0001ms, 0972ms total)
T50BC 054:341 JLINK_ReadMemEx(0x02028454, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028454) - Data: 01 00 00 00  returns 0x04 (0001ms, 0973ms total)
T50BC 054:343 JLINK_ReadMemEx(0x0202844C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202844C) - Data: 3D F5 0A 00  returns 0x04 (0001ms, 0974ms total)
T50BC 054:345 JLINK_ReadMemEx(0x02026E18, 0x0008 Bytes, ..., Flags = 0x02000000) -- Read from C cache (8 bytes @ 0x02026E18) - Data: 2E E0 D9 41 AE 04 0E C0  returns 0x08 (0000ms, 0974ms total)
T50BC 054:345 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x02027660) - Data: 01  returns 0x01 (0000ms, 0974ms total)
T50BC 054:345 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026E20) - Data: E3 5F 0D 00  returns 0x04 (0000ms, 0974ms total)
T50BC 054:346 JLINK_ReadMemEx(0x020277F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x020277C0) -- Updating C cache (64 bytes @ 0x020277C0) -- Read from C cache (4 bytes @ 0x020277F0) - Data: 93 9C 0C 00  returns 0x04 (0001ms, 0975ms total)
T50BC 054:348 JLINK_ReadMemEx(0x020276F8, 0x0008 Bytes, ..., Flags = 0x02000000) -- Read from C cache (8 bytes @ 0x020276F8) - Data: BD 7C 9C 13 00 00 00 00  returns 0x08 (0001ms, 0976ms total)
T50BC 054:349 JLINK_ReadMemEx(0x02027730, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x02027700) -- Updating C cache (64 bytes @ 0x02027700) -- Read from C cache (8 bytes @ 0x02027730) - Data: 18 CE 7B 16 00 00 00 00  returns 0x08 (0001ms, 0977ms total)
T50BC 054:353 JLINK_ReadMemEx(0x02028C90, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C90) - Data: A7 52 DF 02 00 00 00 00  returns 0x08 (0001ms, 0978ms total)
T50BC 054:354 JLINK_ReadMemEx(0x02028C88, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C88) - Data: B7 52 DF 02 00 00 00 00  returns 0x08 (0001ms, 0979ms total)
T50BC 054:355 JLINK_ReadMemEx(0x02028460, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028460) - Data: 69 90 06 69 90 06 C0 BF  returns 0x08 (0001ms, 0980ms total)
T50BC 054:357 JLINK_ReadMemEx(0x02028468, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028468) - Data: F8 FF FF FF  returns 0x04 (0001ms, 0981ms total)
T50BC 054:358 JLINK_ReadMemEx(0x0202707C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x02027040) -- Updating C cache (64 bytes @ 0x02027040) -- Read from C cache (4 bytes @ 0x0202707C) - Data: 73 28 FF FF  returns 0x04 (0002ms, 0983ms total)
T50BC 054:361 JLINK_ReadMemEx(0x02027080, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x02027080) -- Updating C cache (64 bytes @ 0x02027080) -- Read from C cache (4 bytes @ 0x02027080) - Data: 73 28 FF FF  returns 0x04 (0001ms, 0984ms total)
T69A4 054:767 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0001ms, 0985ms total)
T69A4 054:768 JLINK_Go() -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU_WriteMem(4 bytes @ 0xE0002014) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0006ms, 0991ms total)
T69A4 054:876 JLINK_IsHalted()  returns FALSE (0001ms, 0992ms total)
T69A4 054:977 JLINK_IsHalted()  returns FALSE (0001ms, 0992ms total)
T69A4 055:079 JLINK_IsHalted()  returns FALSE (0001ms, 0992ms total)
T69A4 055:180 JLINK_IsHalted()  returns FALSE (0000ms, 0991ms total)
T50BC 055:282 JLINK_ReadMemEx(0x02026B40, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026B40) - Data: 51 0A 0E 00  returns 0x04 (0001ms, 0992ms total)
T50BC 055:299 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 83 B3 0C 00  returns 0x04 (0002ms, 0994ms total)
T50BC 055:302 JLINK_ReadMemEx(0x020276F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020276F0) - Data: 50 C3 00 00  returns 0x04 (0001ms, 0995ms total)
T50BC 055:303 JLINK_ReadMemEx(0x0202634F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202634F) - Data: 01  returns 0x01 (0001ms, 0996ms total)
T50BC 055:304 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0001ms, 0997ms total)
T50BC 055:306 JLINK_ReadMemEx(0x020274DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020274DD) - Data: 00  returns 0x01 (0001ms, 0998ms total)
T50BC 055:307 JLINK_ReadMemEx(0x02026E10, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E10) - Data: 34 12 00 00  returns 0x04 (0001ms, 0999ms total)
T50BC 055:309 JLINK_ReadMemEx(0x02028444, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028444) - Data: DB F6 0D 00  returns 0x04 (0000ms, 0999ms total)
T50BC 055:310 JLINK_ReadMemEx(0x02028440, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028440) - Data: CD 0B 10 00  returns 0x04 (0001ms, 1000ms total)
T50BC 055:311 JLINK_ReadMemEx(0x02028448, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028448) - Data: 6D 18 0E 00  returns 0x04 (0001ms, 1001ms total)
T50BC 055:313 JLINK_ReadMemEx(0x02028454, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028454) - Data: 01 00 00 00  returns 0x04 (0001ms, 1002ms total)
T50BC 055:314 JLINK_ReadMemEx(0x0202844C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202844C) - Data: 1F 02 0B 00  returns 0x04 (0001ms, 1003ms total)
T50BC 055:316 JLINK_ReadMemEx(0x02026E18, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02026E18) - Data: 1C 2C 28 E9 EC C2 22 40  returns 0x08 (0001ms, 1004ms total)
T50BC 055:317 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0001ms, 1005ms total)
T50BC 055:318 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: AF B3 0C 00  returns 0x04 (0001ms, 1006ms total)
T50BC 055:319 JLINK_ReadMemEx(0x020277F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020277F0) - Data: 5F F0 0B 00  returns 0x04 (0001ms, 1007ms total)
T50BC 055:321 JLINK_ReadMemEx(0x020276F8, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x020276F8) - Data: BD D8 9F 13 00 00 00 00  returns 0x08 (0001ms, 1008ms total)
T50BC 055:323 JLINK_ReadMemEx(0x02027730, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02027730) - Data: 67 25 7D 16 00 00 00 00  returns 0x08 (0001ms, 1009ms total)
T50BC 055:326 JLINK_ReadMemEx(0x02028C90, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C90) - Data: BA 4D DD 02 00 00 00 00  returns 0x08 (0001ms, 1010ms total)
T50BC 055:327 JLINK_ReadMemEx(0x02028C88, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C88) - Data: 92 4D DD 02 00 00 00 00  returns 0x08 (0001ms, 1011ms total)
T50BC 055:328 JLINK_ReadMemEx(0x02028460, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028460) - Data: 83 34 48 83 34 08 D4 3F  returns 0x08 (0001ms, 1012ms total)
T50BC 055:330 JLINK_ReadMemEx(0x02028468, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028468) - Data: 14 00 00 00  returns 0x04 (0001ms, 1013ms total)
T50BC 055:332 JLINK_ReadMemEx(0x0202707C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202707C) - Data: 2C 6F FF FF  returns 0x04 (0001ms, 1014ms total)
T50BC 055:333 JLINK_ReadMemEx(0x02027080, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02027080) - Data: CF 4E FF FF  returns 0x04 (0002ms, 1016ms total)
T69A4 055:335 JLINK_IsHalted()  returns FALSE (0002ms, 1018ms total)
T69A4 055:437 JLINK_IsHalted()  returns FALSE (0000ms, 1016ms total)
T69A4 055:538 JLINK_IsHalted()  returns FALSE (0000ms, 1016ms total)
T69A4 055:640 JLINK_IsHalted()  returns FALSE (0000ms, 1016ms total)
T69A4 055:742 JLINK_IsHalted()  returns FALSE (0001ms, 1017ms total)
T50BC 055:844 JLINK_ReadMemEx(0x02026B40, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026B40) - Data: D9 06 0E 00  returns 0x04 (0001ms, 1017ms total)
T50BC 055:876 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 91 67 0D 00  returns 0x04 (0001ms, 1018ms total)
T50BC 055:879 JLINK_ReadMemEx(0x020276F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020276F0) - Data: 50 C3 00 00  returns 0x04 (0002ms, 1020ms total)
T50BC 055:881 JLINK_ReadMemEx(0x0202634F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202634F) - Data: 01  returns 0x01 (0001ms, 1021ms total)
T50BC 055:882 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0001ms, 1022ms total)
T50BC 055:884 JLINK_ReadMemEx(0x020274DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020274DD) - Data: 00  returns 0x01 (0001ms, 1023ms total)
T50BC 055:886 JLINK_ReadMemEx(0x02026E10, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E10) - Data: 34 12 00 00  returns 0x04 (0001ms, 1024ms total)
T50BC 055:887 JLINK_ReadMemEx(0x02028444, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028444) - Data: 63 AD 10 00  returns 0x04 (0001ms, 1025ms total)
T50BC 055:889 JLINK_ReadMemEx(0x02028440, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028440) - Data: 77 A3 0A 00  returns 0x04 (0001ms, 1026ms total)
T50BC 055:890 JLINK_ReadMemEx(0x02028448, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028448) - Data: 5D AF 0C 00  returns 0x04 (0002ms, 1028ms total)
T50BC 055:892 JLINK_ReadMemEx(0x02028454, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028454) - Data: 01 00 00 00  returns 0x04 (0001ms, 1029ms total)
T50BC 055:894 JLINK_ReadMemEx(0x0202844C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202844C) - Data: AB AC 0B 00  returns 0x04 (0001ms, 1030ms total)
T50BC 055:895 JLINK_ReadMemEx(0x02026E18, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02026E18) - Data: A9 DA B4 A4 50 AC 3B 40  returns 0x08 (0001ms, 1031ms total)
T50BC 055:897 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0001ms, 1032ms total)
T50BC 055:899 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: AF 66 0D 00  returns 0x04 (0001ms, 1033ms total)
T50BC 055:900 JLINK_ReadMemEx(0x020277F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020277F0) - Data: BB 9B 0C 00  returns 0x04 (0001ms, 1034ms total)
T50BC 055:903 JLINK_ReadMemEx(0x020276F8, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x020276F8) - Data: BD E4 AD 13 00 00 00 00  returns 0x08 (0001ms, 1035ms total)
T50BC 055:905 JLINK_ReadMemEx(0x02027730, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02027730) - Data: 86 91 8A 16 00 00 00 00  returns 0x08 (0001ms, 1036ms total)
T50BC 055:907 JLINK_ReadMemEx(0x02028C90, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C90) - Data: 76 AD DC 02 00 00 00 00  returns 0x08 (0002ms, 1038ms total)
T50BC 055:909 JLINK_ReadMemEx(0x02028C88, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C88) - Data: 00 AD DC 02 00 00 00 00  returns 0x08 (0000ms, 1038ms total)
T50BC 055:910 JLINK_ReadMemEx(0x02028460, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028460) - Data: 42 1A A4 41 1A 8C ED 3F  returns 0x08 (0001ms, 1039ms total)
T50BC 055:912 JLINK_ReadMemEx(0x02028468, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028468) - Data: 3B 00 00 00  returns 0x04 (0001ms, 1040ms total)
T50BC 055:916 JLINK_ReadMemEx(0x0202707C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202707C) - Data: 25 D5 FF FF  returns 0x04 (0001ms, 1041ms total)
T50BC 055:918 JLINK_ReadMemEx(0x02027080, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02027080) - Data: 2F 8F FF FF  returns 0x04 (0001ms, 1042ms total)
T69A4 055:920 JLINK_IsHalted()  returns FALSE (0001ms, 1043ms total)
T69A4 056:022 JLINK_IsHalted()  returns FALSE (0001ms, 1043ms total)
T69A4 056:123 JLINK_IsHalted()  returns FALSE (0001ms, 1043ms total)
T69A4 056:225 JLINK_IsHalted()  returns FALSE (0000ms, 1042ms total)
T69A4 056:327 JLINK_IsHalted()  returns FALSE (0000ms, 1042ms total)
T50BC 056:429 JLINK_ReadMemEx(0x02026B40, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026B40) - Data: 51 B8 0E 00  returns 0x04 (0001ms, 1043ms total)
T50BC 056:462 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 4B 32 0E 00  returns 0x04 (0003ms, 1046ms total)
T50BC 056:466 JLINK_ReadMemEx(0x020276F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020276F0) - Data: 50 C3 00 00  returns 0x04 (0001ms, 1047ms total)
T50BC 056:468 JLINK_ReadMemEx(0x0202634F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202634F) - Data: 01  returns 0x01 (0001ms, 1048ms total)
T50BC 056:469 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 01  returns 0x01 (0001ms, 1049ms total)
T50BC 056:470 JLINK_ReadMemEx(0x020274DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020274DD) - Data: 00  returns 0x01 (0001ms, 1050ms total)
T50BC 056:473 JLINK_ReadMemEx(0x02026E10, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E10) - Data: 34 12 00 00  returns 0x04 (0001ms, 1051ms total)
T50BC 056:474 JLINK_ReadMemEx(0x02028444, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028444) - Data: ED A6 0C 00  returns 0x04 (0001ms, 1052ms total)
T50BC 056:476 JLINK_ReadMemEx(0x02028440, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028440) - Data: 81 A6 0E 00  returns 0x04 (0001ms, 1053ms total)
T50BC 056:477 JLINK_ReadMemEx(0x02028448, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028448) - Data: 5B C8 0E 00  returns 0x04 (0001ms, 1054ms total)
T50BC 056:479 JLINK_ReadMemEx(0x02028454, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028454) - Data: 01 00 00 00  returns 0x04 (0001ms, 1055ms total)
T50BC 056:481 JLINK_ReadMemEx(0x0202844C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202844C) - Data: 61 AE 0B 00  returns 0x04 (0001ms, 1056ms total)
T50BC 056:482 JLINK_ReadMemEx(0x02026E18, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02026E18) - Data: 2E E0 D9 41 AE 04 DE 3F  returns 0x08 (0001ms, 1057ms total)
T50BC 056:483 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 01  returns 0x01 (0002ms, 1059ms total)
T50BC 056:485 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 29 29 0E 00  returns 0x04 (0001ms, 1060ms total)
T50BC 056:487 JLINK_ReadMemEx(0x020277F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020277F0) - Data: 89 A2 0C 00  returns 0x04 (0001ms, 1061ms total)
T50BC 056:489 JLINK_ReadMemEx(0x020276F8, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x020276F8) - Data: BD 1C FC 14 00 00 00 00  returns 0x08 (0001ms, 1062ms total)
T50BC 056:491 JLINK_ReadMemEx(0x02027730, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02027730) - Data: 42 01 DB 17 00 00 00 00  returns 0x08 (0001ms, 1063ms total)
T50BC 056:493 JLINK_ReadMemEx(0x02028C90, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C90) - Data: 98 E4 DE 02 00 00 00 00  returns 0x08 (0001ms, 1064ms total)
T50BC 056:495 JLINK_ReadMemEx(0x02028C88, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C88) - Data: ED A0 E0 02 00 00 00 00  returns 0x08 (0001ms, 1065ms total)
T50BC 056:497 JLINK_ReadMemEx(0x02028460, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028460) - Data: 83 34 48 83 34 08 B4 3F  returns 0x08 (0001ms, 1066ms total)
T50BC 056:498 JLINK_ReadMemEx(0x02028468, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028468) - Data: 05 00 00 00  returns 0x04 (0001ms, 1067ms total)
T50BC 056:500 JLINK_ReadMemEx(0x0202707C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202707C) - Data: C5 F1 FF FF  returns 0x04 (0001ms, 1068ms total)
T50BC 056:503 JLINK_ReadMemEx(0x02027080, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02027080) - Data: 10 F3 FF FF  returns 0x04 (0001ms, 1069ms total)
T69A4 056:505 JLINK_IsHalted()  returns FALSE (0001ms, 1070ms total)
T69A4 056:607 JLINK_IsHalted()  returns FALSE (0001ms, 1070ms total)
T69A4 056:708 JLINK_IsHalted()  returns FALSE (0001ms, 1070ms total)
T69A4 056:809 JLINK_IsHalted()  returns FALSE (0001ms, 1070ms total)
T69A4 056:912 JLINK_IsHalted()  returns FALSE (0001ms, 1070ms total)
T50BC 057:013 JLINK_ReadMemEx(0x02026B40, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026B40) - Data: 27 B6 0E 00  returns 0x04 (0001ms, 1070ms total)
T50BC 057:049 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: CB 25 0E 00  returns 0x04 (0001ms, 1071ms total)
T50BC 057:051 JLINK_ReadMemEx(0x020276F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020276F0) - Data: A0 86 01 00  returns 0x04 (0001ms, 1072ms total)
T50BC 057:053 JLINK_ReadMemEx(0x0202634F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202634F) - Data: 01  returns 0x01 (0001ms, 1074ms total)
T50BC 057:054 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0001ms, 1075ms total)
T50BC 057:056 JLINK_ReadMemEx(0x020274DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020274DD) - Data: 00  returns 0x01 (0001ms, 1076ms total)
T50BC 057:057 JLINK_ReadMemEx(0x02026E10, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E10) - Data: 34 12 00 00  returns 0x04 (0001ms, 1077ms total)
T50BC 057:059 JLINK_ReadMemEx(0x02028444, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028444) - Data: 9F F9 10 00  returns 0x04 (0001ms, 1078ms total)
T50BC 057:060 JLINK_ReadMemEx(0x02028440, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028440) - Data: E9 FA 10 00  returns 0x04 (0001ms, 1079ms total)
T50BC 057:063 JLINK_ReadMemEx(0x02028448, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028448) - Data: 8B 07 0F 00  returns 0x04 (0001ms, 1080ms total)
T50BC 057:065 JLINK_ReadMemEx(0x02028454, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028454) - Data: 01 00 00 00  returns 0x04 (0001ms, 1081ms total)
T50BC 057:066 JLINK_ReadMemEx(0x0202844C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202844C) - Data: 19 A9 0B 00  returns 0x04 (0001ms, 1082ms total)
T50BC 057:068 JLINK_ReadMemEx(0x02026E18, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02026E18) - Data: 19 8E 0A 05 A2 E2 10 40  returns 0x08 (0001ms, 1083ms total)
T50BC 057:070 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 01  returns 0x01 (0001ms, 1084ms total)
T50BC 057:071 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 6D 28 0E 00  returns 0x04 (0001ms, 1085ms total)
T50BC 057:072 JLINK_ReadMemEx(0x020277F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020277F0) - Data: CD A1 0C 00  returns 0x04 (0001ms, 1086ms total)
T50BC 057:074 JLINK_ReadMemEx(0x020276F8, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x020276F8) - Data: BD 80 11 15 00 00 00 00  returns 0x08 (0002ms, 1088ms total)
T50BC 057:076 JLINK_ReadMemEx(0x02027730, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02027730) - Data: DC E4 F3 17 00 00 00 00  returns 0x08 (0001ms, 1089ms total)
T50BC 057:080 JLINK_ReadMemEx(0x02028C90, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C90) - Data: 34 64 E2 02 00 00 00 00  returns 0x08 (0001ms, 1090ms total)
T50BC 057:082 JLINK_ReadMemEx(0x02028C88, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C88) - Data: 22 64 E2 02 00 00 00 00  returns 0x08 (0001ms, 1091ms total)
T50BC 057:083 JLINK_ReadMemEx(0x02028460, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028460) - Data: 76 62 27 76 62 07 C2 3F  returns 0x08 (0002ms, 1093ms total)
T50BC 057:085 JLINK_ReadMemEx(0x02028468, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028468) - Data: 09 00 00 00  returns 0x04 (0001ms, 1094ms total)
T50BC 057:087 JLINK_ReadMemEx(0x0202707C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202707C) - Data: 51 E9 FF FF  returns 0x04 (0001ms, 1095ms total)
T50BC 057:089 JLINK_ReadMemEx(0x02027080, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02027080) - Data: 9A F0 FF FF  returns 0x04 (0001ms, 1096ms total)
T69A4 057:091 JLINK_IsHalted()  returns FALSE (0001ms, 1097ms total)
T69A4 057:193 JLINK_IsHalted()  returns FALSE (0001ms, 1097ms total)
T69A4 057:295 JLINK_IsHalted()  returns FALSE (0001ms, 1097ms total)
T69A4 057:397 JLINK_IsHalted()  returns FALSE (0001ms, 1097ms total)
T69A4 057:499 JLINK_IsHalted()  returns FALSE (0001ms, 1097ms total)
T50BC 057:601 JLINK_ReadMemEx(0x02026B40, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026B40) - Data: 39 A4 0C 00  returns 0x04 (0001ms, 1097ms total)
T50BC 057:637 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: BB 65 0D 00  returns 0x04 (0002ms, 1099ms total)
T50BC 057:640 JLINK_ReadMemEx(0x020276F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020276F0) - Data: 50 C3 00 00  returns 0x04 (0001ms, 1100ms total)
T50BC 057:642 JLINK_ReadMemEx(0x0202634F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202634F) - Data: 01  returns 0x01 (0001ms, 1101ms total)
T50BC 057:643 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 01  returns 0x01 (0001ms, 1102ms total)
T50BC 057:645 JLINK_ReadMemEx(0x020274DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020274DD) - Data: 00  returns 0x01 (0001ms, 1103ms total)
T50BC 057:646 JLINK_ReadMemEx(0x02026E10, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E10) - Data: 34 12 00 00  returns 0x04 (0001ms, 1104ms total)
T50BC 057:648 JLINK_ReadMemEx(0x02028444, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028444) - Data: 4F BD 10 00  returns 0x04 (0001ms, 1105ms total)
T50BC 057:650 JLINK_ReadMemEx(0x02028440, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028440) - Data: E5 A4 0A 00  returns 0x04 (0001ms, 1106ms total)
T50BC 057:652 JLINK_ReadMemEx(0x02028448, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028448) - Data: BB C5 0E 00  returns 0x04 (0001ms, 1107ms total)
T50BC 057:654 JLINK_ReadMemEx(0x02028454, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028454) - Data: 01 00 00 00  returns 0x04 (0001ms, 1108ms total)
T50BC 057:656 JLINK_ReadMemEx(0x0202844C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202844C) - Data: 19 AC 0B 00  returns 0x04 (0001ms, 1109ms total)
T50BC 057:657 JLINK_ReadMemEx(0x02026E18, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02026E18) - Data: 1E FB 36 5B 12 B3 23 40  returns 0x08 (0001ms, 1110ms total)
T50BC 057:658 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0001ms, 1111ms total)
T50BC 057:660 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 67 2B 0E 00  returns 0x04 (0001ms, 1112ms total)
T50BC 057:661 JLINK_ReadMemEx(0x020277F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020277F0) - Data: F7 A5 0C 00  returns 0x04 (0001ms, 1113ms total)
T50BC 057:663 JLINK_ReadMemEx(0x020276F8, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x020276F8) - Data: BD A8 15 15 00 00 00 00  returns 0x08 (0001ms, 1114ms total)
T50BC 057:665 JLINK_ReadMemEx(0x02027730, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02027730) - Data: CF A8 F1 17 00 00 00 00  returns 0x08 (0002ms, 1116ms total)
T50BC 057:668 JLINK_ReadMemEx(0x02028C90, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C90) - Data: 2C 00 DC 02 00 00 00 00  returns 0x08 (0001ms, 1117ms total)
T50BC 057:669 JLINK_ReadMemEx(0x02028C88, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C88) - Data: 12 00 DC 02 00 00 00 00  returns 0x08 (0001ms, 1118ms total)
T50BC 057:672 JLINK_ReadMemEx(0x02028460, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028460) - Data: AB AA AA AA AA 0A CA 3F  returns 0x08 (0001ms, 1119ms total)
T50BC 057:673 JLINK_ReadMemEx(0x02028468, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028468) - Data: 0D 00 00 00  returns 0x04 (0001ms, 1120ms total)
T50BC 057:675 JLINK_ReadMemEx(0x0202707C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202707C) - Data: 35 F4 FF FF  returns 0x04 (0001ms, 1121ms total)
T50BC 057:677 JLINK_ReadMemEx(0x02027080, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02027080) - Data: E4 EE FF FF  returns 0x04 (0000ms, 1121ms total)
T69A4 057:678 JLINK_IsHalted()  returns FALSE (0001ms, 1122ms total)
T69A4 057:780 JLINK_IsHalted()  returns FALSE (0001ms, 1122ms total)
T69A4 057:882 JLINK_IsHalted()  returns FALSE (0000ms, 1121ms total)
T69A4 057:984 JLINK_IsHalted()  returns FALSE (0000ms, 1121ms total)
T69A4 058:086 JLINK_IsHalted()  returns FALSE (0000ms, 1121ms total)
T50BC 058:187 JLINK_ReadMemEx(0x02026B40, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026B40) - Data: D3 BB 0E 00  returns 0x04 (0001ms, 1122ms total)
T50BC 058:220 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: F9 25 0E 00  returns 0x04 (0001ms, 1123ms total)
T50BC 058:222 JLINK_ReadMemEx(0x020276F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020276F0) - Data: A0 86 01 00  returns 0x04 (0001ms, 1124ms total)
T50BC 058:224 JLINK_ReadMemEx(0x0202634F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202634F) - Data: 01  returns 0x01 (0001ms, 1125ms total)
T50BC 058:225 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 01  returns 0x01 (0001ms, 1126ms total)
T50BC 058:227 JLINK_ReadMemEx(0x020274DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020274DD) - Data: 00  returns 0x01 (0001ms, 1127ms total)
T50BC 058:230 JLINK_ReadMemEx(0x02026E10, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E10) - Data: 34 12 00 00  returns 0x04 (0001ms, 1128ms total)
T50BC 058:231 JLINK_ReadMemEx(0x02028444, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028444) - Data: 23 BC 10 00  returns 0x04 (0001ms, 1129ms total)
T50BC 058:233 JLINK_ReadMemEx(0x02028440, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028440) - Data: 7D BD 10 00  returns 0x04 (0001ms, 1130ms total)
T50BC 058:234 JLINK_ReadMemEx(0x02028448, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028448) - Data: 0D CA 0E 00  returns 0x04 (0001ms, 1131ms total)
T50BC 058:236 JLINK_ReadMemEx(0x02028454, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028454) - Data: 01 00 00 00  returns 0x04 (0001ms, 1132ms total)
T50BC 058:238 JLINK_ReadMemEx(0x0202844C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202844C) - Data: 49 B0 0B 00  returns 0x04 (0001ms, 1133ms total)
T50BC 058:239 JLINK_ReadMemEx(0x02026E18, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02026E18) - Data: 2E E0 D9 41 AE 04 1E 40  returns 0x08 (0001ms, 1134ms total)
T50BC 058:241 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 01  returns 0x01 (0001ms, 1135ms total)
T50BC 058:243 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: C5 69 0D 00  returns 0x04 (0001ms, 1136ms total)
T50BC 058:245 JLINK_ReadMemEx(0x020277F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020277F0) - Data: 75 A6 0C 00  returns 0x04 (0001ms, 1137ms total)
T50BC 058:247 JLINK_ReadMemEx(0x020276F8, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x020276F8) - Data: BD 94 12 15 00 00 00 00  returns 0x08 (0001ms, 1138ms total)
T50BC 058:249 JLINK_ReadMemEx(0x02027730, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02027730) - Data: 89 9A F2 17 00 00 00 00  returns 0x08 (0001ms, 1139ms total)
T50BC 058:251 JLINK_ReadMemEx(0x02028C90, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C90) - Data: E5 05 E0 02 00 00 00 00  returns 0x08 (0001ms, 1140ms total)
T50BC 058:252 JLINK_ReadMemEx(0x02028C88, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C88) - Data: C5 05 E0 02 00 00 00 00  returns 0x08 (0002ms, 1142ms total)
T50BC 058:255 JLINK_ReadMemEx(0x02028460, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028460) - Data: 69 90 06 69 90 06 D0 3F  returns 0x08 (0001ms, 1143ms total)
T50BC 058:256 JLINK_ReadMemEx(0x02028468, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028468) - Data: 10 00 00 00  returns 0x04 (0001ms, 1144ms total)
T50BC 058:259 JLINK_ReadMemEx(0x0202707C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202707C) - Data: 21 F3 FF FF  returns 0x04 (0001ms, 1145ms total)
T50BC 058:261 JLINK_ReadMemEx(0x02027080, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02027080) - Data: 56 EF FF FF  returns 0x04 (0001ms, 1146ms total)
T69A4 058:263 JLINK_IsHalted()  returns FALSE (0001ms, 1147ms total)
T69A4 058:364 JLINK_IsHalted()  returns FALSE (0001ms, 1147ms total)
T69A4 058:465 JLINK_IsHalted()  returns FALSE (0001ms, 1147ms total)
T69A4 058:567 JLINK_IsHalted()  returns FALSE (0001ms, 1147ms total)
T69A4 058:669 JLINK_IsHalted()  returns FALSE (0001ms, 1147ms total)
T50BC 058:770 JLINK_ReadMemEx(0x02026B40, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026B40) - Data: 63 C3 0E 00  returns 0x04 (0001ms, 1147ms total)
T50BC 058:806 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 8D 2C 0E 00  returns 0x04 (0001ms, 1148ms total)
T50BC 058:809 JLINK_ReadMemEx(0x020276F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020276F0) - Data: A0 86 01 00  returns 0x04 (0001ms, 1149ms total)
T50BC 058:811 JLINK_ReadMemEx(0x0202634F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202634F) - Data: 01  returns 0x01 (0000ms, 1149ms total)
T50BC 058:811 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 01  returns 0x01 (0001ms, 1150ms total)
T50BC 058:812 JLINK_ReadMemEx(0x020274DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020274DD) - Data: 00  returns 0x01 (0001ms, 1151ms total)
T50BC 058:814 JLINK_ReadMemEx(0x02026E10, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E10) - Data: 34 12 00 00  returns 0x04 (0000ms, 1151ms total)
T50BC 058:815 JLINK_ReadMemEx(0x02028444, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028444) - Data: 27 FE 10 00  returns 0x04 (0001ms, 1152ms total)
T50BC 058:816 JLINK_ReadMemEx(0x02028440, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028440) - Data: 71 FF 10 00  returns 0x04 (0001ms, 1153ms total)
T50BC 058:818 JLINK_ReadMemEx(0x02028448, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028448) - Data: 11 0C 0F 00  returns 0x04 (0001ms, 1154ms total)
T50BC 058:822 JLINK_ReadMemEx(0x02028454, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028454) - Data: 01 00 00 00  returns 0x04 (0000ms, 1154ms total)
T50BC 058:823 JLINK_ReadMemEx(0x0202844C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202844C) - Data: FD AE 0B 00  returns 0x04 (0002ms, 1156ms total)
T50BC 058:825 JLINK_ReadMemEx(0x02026E18, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02026E18) - Data: 27 A4 9E 79 18 44 0A 40  returns 0x08 (0001ms, 1157ms total)
T50BC 058:827 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 01  returns 0x01 (0001ms, 1158ms total)
T50BC 058:828 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 4B 2E 0E 00  returns 0x04 (0001ms, 1159ms total)
T50BC 058:830 JLINK_ReadMemEx(0x020277F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020277F0) - Data: AB A7 0C 00  returns 0x04 (0001ms, 1160ms total)
T50BC 058:832 JLINK_ReadMemEx(0x020276F8, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x020276F8) - Data: BD 54 1E 15 00 00 00 00  returns 0x08 (0001ms, 1161ms total)
T50BC 058:833 JLINK_ReadMemEx(0x02027730, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02027730) - Data: 10 EA 00 18 00 00 00 00  returns 0x08 (0001ms, 1162ms total)
T50BC 058:838 JLINK_ReadMemEx(0x02028C90, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C90) - Data: 67 95 E2 02 00 00 00 00  returns 0x08 (0001ms, 1163ms total)
T50BC 058:839 JLINK_ReadMemEx(0x02028C88, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C88) - Data: 59 95 E2 02 00 00 00 00  returns 0x08 (0002ms, 1165ms total)
T50BC 058:841 JLINK_ReadMemEx(0x02028460, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028460) - Data: 9E D8 89 9D D8 09 B8 3F  returns 0x08 (0001ms, 1166ms total)
T50BC 058:843 JLINK_ReadMemEx(0x02028468, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028468) - Data: 06 00 00 00  returns 0x04 (0001ms, 1167ms total)
T50BC 058:845 JLINK_ReadMemEx(0x0202707C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202707C) - Data: A1 ED FF FF  returns 0x04 (0001ms, 1168ms total)
T50BC 058:847 JLINK_ReadMemEx(0x02027080, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02027080) - Data: FF F0 FF FF  returns 0x04 (0001ms, 1169ms total)
T69A4 058:849 JLINK_IsHalted()  returns FALSE (0001ms, 1170ms total)
T69A4 058:951 JLINK_IsHalted()  returns FALSE (0001ms, 1170ms total)
T69A4 059:052 JLINK_IsHalted()  returns FALSE (0001ms, 1170ms total)
T69A4 059:154 JLINK_IsHalted()  returns FALSE (0001ms, 1170ms total)
T69A4 059:256 JLINK_IsHalted()  returns FALSE (0001ms, 1170ms total)
T50BC 059:357 JLINK_ReadMemEx(0x02026B40, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026B40) - Data: 7D FD 0E 00  returns 0x04 (0001ms, 1170ms total)
T50BC 059:389 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: A9 69 0D 00  returns 0x04 (0001ms, 1171ms total)
T50BC 059:392 JLINK_ReadMemEx(0x020276F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020276F0) - Data: 50 C3 00 00  returns 0x04 (0001ms, 1173ms total)
T50BC 059:394 JLINK_ReadMemEx(0x0202634F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202634F) - Data: 01  returns 0x01 (0001ms, 1174ms total)
T50BC 059:395 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 01  returns 0x01 (0001ms, 1175ms total)
T50BC 059:396 JLINK_ReadMemEx(0x020274DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020274DD) - Data: 00  returns 0x01 (0001ms, 1176ms total)
T50BC 059:399 JLINK_ReadMemEx(0x02026E10, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E10) - Data: 34 12 00 00  returns 0x04 (0001ms, 1177ms total)
T50BC 059:400 JLINK_ReadMemEx(0x02028444, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028444) - Data: 93 BC 10 00  returns 0x04 (0001ms, 1178ms total)
T50BC 059:402 JLINK_ReadMemEx(0x02028440, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028440) - Data: DD BD 10 00  returns 0x04 (0000ms, 1178ms total)
T50BC 059:403 JLINK_ReadMemEx(0x02028448, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028448) - Data: 7D B1 0A 00  returns 0x04 (0001ms, 1179ms total)
T50BC 059:404 JLINK_ReadMemEx(0x02028454, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028454) - Data: 01 00 00 00  returns 0x04 (0001ms, 1180ms total)
T50BC 059:406 JLINK_ReadMemEx(0x0202844C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202844C) - Data: 79 AC 0B 00  returns 0x04 (0001ms, 1181ms total)
T50BC 059:407 JLINK_ReadMemEx(0x02026E18, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02026E18) - Data: 19 8E 0A 05 A2 E2 10 40  returns 0x08 (0002ms, 1183ms total)
T50BC 059:409 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0001ms, 1184ms total)
T50BC 059:410 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: C7 2B 0E 00  returns 0x04 (0001ms, 1185ms total)
T50BC 059:413 JLINK_ReadMemEx(0x020277F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020277F0) - Data: 27 A5 0C 00  returns 0x04 (0001ms, 1186ms total)
T50BC 059:415 JLINK_ReadMemEx(0x020276F8, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x020276F8) - Data: BD DC 11 15 00 00 00 00  returns 0x08 (0001ms, 1187ms total)
T50BC 059:417 JLINK_ReadMemEx(0x02027730, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02027730) - Data: BA 69 EF 17 00 00 00 00  returns 0x08 (0001ms, 1188ms total)
T50BC 059:419 JLINK_ReadMemEx(0x02028C90, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C90) - Data: 0F 8D DD 02 00 00 00 00  returns 0x08 (0002ms, 1190ms total)
T50BC 059:421 JLINK_ReadMemEx(0x02028C88, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C88) - Data: 16 8D DD 02 00 00 00 00  returns 0x08 (0001ms, 1191ms total)
T50BC 059:423 JLINK_ReadMemEx(0x02028460, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028460) - Data: 9E D8 89 9D D8 09 A8 BF  returns 0x08 (0001ms, 1192ms total)
T50BC 059:424 JLINK_ReadMemEx(0x02028468, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028468) - Data: FD FF FF FF  returns 0x04 (0001ms, 1193ms total)
T50BC 059:426 JLINK_ReadMemEx(0x0202707C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202707C) - Data: F2 F6 FF FF  returns 0x04 (0001ms, 1194ms total)
T50BC 059:430 JLINK_ReadMemEx(0x02027080, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02027080) - Data: 29 F4 FF FF  returns 0x04 (0000ms, 1194ms total)
T69A4 059:432 JLINK_IsHalted()  returns FALSE (0001ms, 1195ms total)
T69A4 059:534 JLINK_IsHalted()  returns FALSE (0001ms, 1195ms total)
T69A4 059:636 JLINK_IsHalted()  returns FALSE (0001ms, 1195ms total)
T69A4 059:737 JLINK_IsHalted()  returns FALSE (0000ms, 1194ms total)
T69A4 059:838 JLINK_IsHalted()  returns FALSE (0001ms, 1195ms total)
T50BC 059:940 JLINK_ReadMemEx(0x02026B40, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026B40) - Data: 3F C1 0E 00  returns 0x04 (0001ms, 1195ms total)
T50BC 059:975 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: E9 2F 0E 00  returns 0x04 (0001ms, 1196ms total)
T50BC 059:978 JLINK_ReadMemEx(0x020276F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020276F0) - Data: A0 86 01 00  returns 0x04 (0001ms, 1197ms total)
T50BC 059:980 JLINK_ReadMemEx(0x0202634F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202634F) - Data: 01  returns 0x01 (0001ms, 1198ms total)
T50BC 059:981 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0001ms, 1199ms total)
T50BC 059:982 JLINK_ReadMemEx(0x020274DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020274DD) - Data: 00  returns 0x01 (0001ms, 1200ms total)
T50BC 059:984 JLINK_ReadMemEx(0x02026E10, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E10) - Data: 34 12 00 00  returns 0x04 (0001ms, 1201ms total)
T50BC 059:985 JLINK_ReadMemEx(0x02028444, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028444) - Data: 3F C2 10 00  returns 0x04 (0001ms, 1202ms total)
T50BC 059:987 JLINK_ReadMemEx(0x02028440, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028440) - Data: 89 C3 10 00  returns 0x04 (0000ms, 1202ms total)
T50BC 059:989 JLINK_ReadMemEx(0x02028448, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028448) - Data: 9D 04 0F 00  returns 0x04 (0001ms, 1203ms total)
T50BC 059:991 JLINK_ReadMemEx(0x02028454, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028454) - Data: 01 00 00 00  returns 0x04 (0001ms, 1204ms total)
T50BC 059:993 JLINK_ReadMemEx(0x0202844C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202844C) - Data: 0B B0 0B 00  returns 0x04 (0000ms, 1204ms total)
T50BC 059:994 JLINK_ReadMemEx(0x02026E18, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02026E18) - Data: 1C 2C 28 E9 EC C2 02 40  returns 0x08 (0001ms, 1205ms total)
T50BC 059:995 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 01  returns 0x01 (0002ms, 1207ms total)
T50BC 059:998 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 87 69 0D 00  returns 0x04 (0001ms, 1208ms total)
T50BC 059:999 JLINK_ReadMemEx(0x020277F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020277F0) - Data: F5 AD 0C 00  returns 0x04 (0001ms, 1209ms total)
T50BC 060:001 JLINK_ReadMemEx(0x020276F8, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x020276F8) - Data: BD 18 12 15 00 00 00 00  returns 0x08 (0001ms, 1210ms total)
T50BC 060:003 JLINK_ReadMemEx(0x02027730, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02027730) - Data: DB E8 F1 17 00 00 00 00  returns 0x08 (0001ms, 1211ms total)
T50BC 060:007 JLINK_ReadMemEx(0x02028C90, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C90) - Data: 33 D0 DF 02 00 00 00 00  returns 0x08 (0001ms, 1212ms total)
T50BC 060:008 JLINK_ReadMemEx(0x02028C88, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C88) - Data: 29 D0 DF 02 00 00 00 00  returns 0x08 (0001ms, 1213ms total)
T50BC 060:010 JLINK_ReadMemEx(0x02028460, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028460) - Data: 83 34 48 83 34 08 B4 3F  returns 0x08 (0001ms, 1214ms total)
T50BC 060:012 JLINK_ReadMemEx(0x02028468, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028468) - Data: 05 00 00 00  returns 0x04 (0001ms, 1215ms total)
T50BC 060:014 JLINK_ReadMemEx(0x0202707C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202707C) - Data: 23 F7 FF FF  returns 0x04 (0001ms, 1216ms total)
T50BC 060:016 JLINK_ReadMemEx(0x02027080, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02027080) - Data: DC F1 FF FF  returns 0x04 (0001ms, 1217ms total)
T69A4 060:018 JLINK_IsHalted()  returns FALSE (0001ms, 1218ms total)
T69A4 060:120 JLINK_IsHalted()  returns FALSE (0000ms, 1217ms total)
T69A4 060:222 JLINK_IsHalted()  returns FALSE (0000ms, 1217ms total)
T69A4 060:324 JLINK_IsHalted()  returns FALSE (0000ms, 1217ms total)
T69A4 060:425 JLINK_IsHalted()  returns FALSE (0001ms, 1218ms total)
T50BC 060:527 JLINK_ReadMemEx(0x02026B40, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026B40) - Data: A3 C5 0E 00  returns 0x04 (0001ms, 1218ms total)
T50BC 060:559 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 03 30 0E 00  returns 0x04 (0002ms, 1220ms total)
T50BC 060:563 JLINK_ReadMemEx(0x020276F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020276F0) - Data: A0 86 01 00  returns 0x04 (0001ms, 1221ms total)
T50BC 060:564 JLINK_ReadMemEx(0x0202634F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202634F) - Data: 01  returns 0x01 (0001ms, 1222ms total)
T50BC 060:565 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 01  returns 0x01 (0001ms, 1223ms total)
T50BC 060:567 JLINK_ReadMemEx(0x020274DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020274DD) - Data: 00  returns 0x01 (0001ms, 1224ms total)
T50BC 060:569 JLINK_ReadMemEx(0x02026E10, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E10) - Data: 34 12 00 00  returns 0x04 (0001ms, 1225ms total)
T50BC 060:570 JLINK_ReadMemEx(0x02028444, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028444) - Data: 77 D7 10 00  returns 0x04 (0001ms, 1226ms total)
T50BC 060:572 JLINK_ReadMemEx(0x02028440, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028440) - Data: C1 D8 10 00  returns 0x04 (0001ms, 1227ms total)
T50BC 060:573 JLINK_ReadMemEx(0x02028448, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028448) - Data: E3 B0 0C 00  returns 0x04 (0001ms, 1228ms total)
T50BC 060:575 JLINK_ReadMemEx(0x02028454, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028454) - Data: 01 00 00 00  returns 0x04 (0001ms, 1229ms total)
T50BC 060:577 JLINK_ReadMemEx(0x0202844C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202844C) - Data: 35 AC 0B 00  returns 0x04 (0001ms, 1230ms total)
T50BC 060:578 JLINK_ReadMemEx(0x02026E18, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02026E18) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 1231ms total)
T50BC 060:581 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 01  returns 0x01 (0001ms, 1232ms total)
T50BC 060:582 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 85 2B 0E 00  returns 0x04 (0001ms, 1233ms total)
T50BC 060:584 JLINK_ReadMemEx(0x020277F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020277F0) - Data: 65 AD 0C 00  returns 0x04 (0001ms, 1234ms total)
T50BC 060:586 JLINK_ReadMemEx(0x020276F8, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x020276F8) - Data: BD 10 15 15 00 00 00 00  returns 0x08 (0001ms, 1235ms total)
T50BC 060:587 JLINK_ReadMemEx(0x02027730, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02027730) - Data: B7 05 F1 17 00 00 00 00  returns 0x08 (0001ms, 1236ms total)
T50BC 060:590 JLINK_ReadMemEx(0x02028C90, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C90) - Data: 14 F5 DB 02 00 00 00 00  returns 0x08 (0001ms, 1237ms total)
T50BC 060:591 JLINK_ReadMemEx(0x02028C88, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C88) - Data: 15 F5 DB 02 00 00 00 00  returns 0x08 (0001ms, 1238ms total)
T50BC 060:593 JLINK_ReadMemEx(0x02028460, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028460) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 1239ms total)
T50BC 060:594 JLINK_ReadMemEx(0x02028468, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028468) - Data: 07 00 00 00  returns 0x04 (0001ms, 1240ms total)
T50BC 060:598 JLINK_ReadMemEx(0x0202707C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202707C) - Data: 75 F3 FF FF  returns 0x04 (0000ms, 1240ms total)
T50BC 060:599 JLINK_ReadMemEx(0x02027080, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02027080) - Data: 43 F0 FF FF  returns 0x04 (0002ms, 1242ms total)
T69A4 060:601 JLINK_IsHalted()  returns FALSE (0001ms, 1243ms total)
T69A4 060:703 JLINK_IsHalted()  returns FALSE (0001ms, 1243ms total)
T69A4 060:805 JLINK_IsHalted()  returns FALSE (0001ms, 1243ms total)
T69A4 060:907 JLINK_IsHalted()  returns FALSE (0000ms, 1242ms total)
T69A4 061:008 JLINK_IsHalted()  returns FALSE (0001ms, 1243ms total)
T50BC 061:109 JLINK_ReadMemEx(0x02026B40, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026B40) - Data: 05 FD 0E 00  returns 0x04 (0002ms, 1244ms total)
T50BC 061:144 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: D3 68 0D 00  returns 0x04 (0001ms, 1245ms total)
T50BC 061:147 JLINK_ReadMemEx(0x020276F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020276F0) - Data: 50 C3 00 00  returns 0x04 (0001ms, 1246ms total)
T50BC 061:148 JLINK_ReadMemEx(0x0202634F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202634F) - Data: 01  returns 0x01 (0001ms, 1247ms total)
T50BC 061:149 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 01  returns 0x01 (0001ms, 1248ms total)
T50BC 061:151 JLINK_ReadMemEx(0x020274DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020274DD) - Data: 00  returns 0x01 (0001ms, 1249ms total)
T50BC 061:152 JLINK_ReadMemEx(0x02026E10, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E10) - Data: 34 12 00 00  returns 0x04 (0001ms, 1250ms total)
T50BC 061:154 JLINK_ReadMemEx(0x02028444, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028444) - Data: C7 C2 10 00  returns 0x04 (0000ms, 1250ms total)
T50BC 061:155 JLINK_ReadMemEx(0x02028440, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028440) - Data: 25 C4 10 00  returns 0x04 (0001ms, 1251ms total)
T50BC 061:157 JLINK_ReadMemEx(0x02028448, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028448) - Data: D7 B5 0C 00  returns 0x04 (0001ms, 1252ms total)
T50BC 061:159 JLINK_ReadMemEx(0x02028454, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028454) - Data: 01 00 00 00  returns 0x04 (0001ms, 1253ms total)
T50BC 061:161 JLINK_ReadMemEx(0x0202844C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202844C) - Data: 2B B1 0B 00  returns 0x04 (0001ms, 1254ms total)
T50BC 061:162 JLINK_ReadMemEx(0x02026E18, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02026E18) - Data: 27 A4 9E 79 18 44 1A 40  returns 0x08 (0002ms, 1256ms total)
T50BC 061:164 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0002ms, 1258ms total)
T50BC 061:166 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 79 30 0E 00  returns 0x04 (0001ms, 1259ms total)
T50BC 061:168 JLINK_ReadMemEx(0x020277F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020277F0) - Data: D9 A9 0C 00  returns 0x04 (0001ms, 1260ms total)
T50BC 061:170 JLINK_ReadMemEx(0x020276F8, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x020276F8) - Data: BD 30 1E 15 00 00 00 00  returns 0x08 (0001ms, 1261ms total)
T50BC 061:171 JLINK_ReadMemEx(0x02027730, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02027730) - Data: 24 7E FC 17 00 00 00 00  returns 0x08 (0001ms, 1262ms total)
T50BC 061:175 JLINK_ReadMemEx(0x02028C90, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C90) - Data: 7F 4D DE 02 00 00 00 00  returns 0x08 (0001ms, 1263ms total)
T50BC 061:176 JLINK_ReadMemEx(0x02028C88, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C88) - Data: 71 4D DE 02 00 00 00 00  returns 0x08 (0001ms, 1264ms total)
T50BC 061:178 JLINK_ReadMemEx(0x02028460, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028460) - Data: B8 7C CB B7 7C 0B BC 3F  returns 0x08 (0001ms, 1265ms total)
T50BC 061:179 JLINK_ReadMemEx(0x02028468, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028468) - Data: 07 00 00 00  returns 0x04 (0001ms, 1266ms total)
T50BC 061:181 JLINK_ReadMemEx(0x0202707C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202707C) - Data: FE ED FF FF  returns 0x04 (0001ms, 1267ms total)
T50BC 061:182 JLINK_ReadMemEx(0x02027080, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02027080) - Data: 02 F0 FF FF  returns 0x04 (0002ms, 1269ms total)
T69A4 061:184 JLINK_IsHalted()  returns FALSE (0001ms, 1270ms total)
T69A4 061:287 JLINK_IsHalted()  returns FALSE (0000ms, 1269ms total)
T69A4 061:388 JLINK_IsHalted()  returns FALSE (0001ms, 1270ms total)
T69A4 061:489 JLINK_IsHalted()  returns FALSE (0001ms, 1270ms total)
T69A4 061:591 JLINK_IsHalted()  returns FALSE (0001ms, 1270ms total)
T50BC 061:693 JLINK_ReadMemEx(0x02026B40, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026B40) - Data: C1 C2 0E 00  returns 0x04 (0001ms, 1270ms total)
T50BC 061:726 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: F7 2D 0E 00  returns 0x04 (0001ms, 1271ms total)
T50BC 061:729 JLINK_ReadMemEx(0x020276F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020276F0) - Data: A0 86 01 00  returns 0x04 (0001ms, 1272ms total)
T50BC 061:731 JLINK_ReadMemEx(0x0202634F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202634F) - Data: 01  returns 0x01 (0001ms, 1273ms total)
T50BC 061:732 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 01  returns 0x01 (0001ms, 1274ms total)
T50BC 061:733 JLINK_ReadMemEx(0x020274DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020274DD) - Data: 00  returns 0x01 (0001ms, 1275ms total)
T50BC 061:735 JLINK_ReadMemEx(0x02026E10, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E10) - Data: 34 12 00 00  returns 0x04 (0001ms, 1276ms total)
T50BC 061:737 JLINK_ReadMemEx(0x02028444, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028444) - Data: 9B BE 10 00  returns 0x04 (0001ms, 1277ms total)
T50BC 061:739 JLINK_ReadMemEx(0x02028440, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028440) - Data: E5 BF 10 00  returns 0x04 (0001ms, 1278ms total)
T50BC 061:740 JLINK_ReadMemEx(0x02028448, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028448) - Data: 87 CC 0E 00  returns 0x04 (0001ms, 1279ms total)
T50BC 061:742 JLINK_ReadMemEx(0x02028454, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028454) - Data: 01 00 00 00  returns 0x04 (0001ms, 1280ms total)
T50BC 061:743 JLINK_ReadMemEx(0x0202844C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202844C) - Data: E5 AD 0B 00  returns 0x04 (0001ms, 1281ms total)
T50BC 061:745 JLINK_ReadMemEx(0x02026E18, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02026E18) - Data: 22 68 63 B1 82 83 06 40  returns 0x08 (0001ms, 1282ms total)
T50BC 061:746 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 01  returns 0x01 (0001ms, 1283ms total)
T50BC 061:747 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: B9 66 0D 00  returns 0x04 (0001ms, 1284ms total)
T50BC 061:750 JLINK_ReadMemEx(0x020277F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020277F0) - Data: 69 A3 0C 00  returns 0x04 (0001ms, 1285ms total)
T50BC 061:752 JLINK_ReadMemEx(0x020276F8, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x020276F8) - Data: BD CC 0D 15 00 00 00 00  returns 0x08 (0001ms, 1286ms total)
T50BC 061:754 JLINK_ReadMemEx(0x02027730, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02027730) - Data: 27 5E EB 17 00 00 00 00  returns 0x08 (0000ms, 1286ms total)
T50BC 061:755 JLINK_ReadMemEx(0x02028C90, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C90) - Data: 83 91 DD 02 00 00 00 00  returns 0x08 (0001ms, 1287ms total)
T50BC 061:758 JLINK_ReadMemEx(0x02028C88, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C88) - Data: 77 91 DD 02 00 00 00 00  returns 0x08 (0001ms, 1288ms total)
T50BC 061:759 JLINK_ReadMemEx(0x02028460, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028460) - Data: 9E D8 89 9D D8 09 B8 3F  returns 0x08 (0002ms, 1290ms total)
T50BC 061:761 JLINK_ReadMemEx(0x02028468, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028468) - Data: 06 00 00 00  returns 0x04 (0001ms, 1291ms total)
T50BC 061:763 JLINK_ReadMemEx(0x0202707C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202707C) - Data: 3F EE FF FF  returns 0x04 (0001ms, 1292ms total)
T50BC 061:766 JLINK_ReadMemEx(0x02027080, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02027080) - Data: 55 EF FF FF  returns 0x04 (0001ms, 1293ms total)
T69A4 061:767 JLINK_IsHalted()  returns FALSE (0001ms, 1294ms total)
T69A4 061:869 JLINK_IsHalted()  returns FALSE (0001ms, 1294ms total)
T69A4 061:971 JLINK_IsHalted()  returns FALSE (0001ms, 1294ms total)
T69A4 062:072 JLINK_IsHalted()  returns FALSE (0001ms, 1294ms total)
T69A4 062:174 JLINK_IsHalted()  returns FALSE (0001ms, 1294ms total)
T50BC 062:276 JLINK_ReadMemEx(0x02026B40, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026B40) - Data: BD B0 0C 00  returns 0x04 (0001ms, 1294ms total)
T50BC 062:310 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 0F 32 0E 00  returns 0x04 (0001ms, 1295ms total)
T50BC 062:313 JLINK_ReadMemEx(0x020276F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020276F0) - Data: A0 86 01 00  returns 0x04 (0002ms, 1297ms total)
T50BC 062:315 JLINK_ReadMemEx(0x0202634F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202634F) - Data: 01  returns 0x01 (0001ms, 1298ms total)
T50BC 062:316 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0001ms, 1299ms total)
T50BC 062:317 JLINK_ReadMemEx(0x020274DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020274DD) - Data: 00  returns 0x01 (0001ms, 1300ms total)
T50BC 062:319 JLINK_ReadMemEx(0x02026E10, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E10) - Data: 34 12 00 00  returns 0x04 (0001ms, 1301ms total)
T50BC 062:320 JLINK_ReadMemEx(0x02028444, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028444) - Data: A7 FA 10 00  returns 0x04 (0001ms, 1302ms total)
T50BC 062:322 JLINK_ReadMemEx(0x02028440, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028440) - Data: F7 FB 10 00  returns 0x04 (0002ms, 1304ms total)
T50BC 062:326 JLINK_ReadMemEx(0x02028448, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028448) - Data: 93 08 0F 00  returns 0x04 (0001ms, 1305ms total)
T50BC 062:327 JLINK_ReadMemEx(0x02028454, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028454) - Data: 01 00 00 00  returns 0x04 (0001ms, 1306ms total)
T50BC 062:329 JLINK_ReadMemEx(0x0202844C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202844C) - Data: 6F AF 0B 00  returns 0x04 (0001ms, 1307ms total)
T50BC 062:331 JLINK_ReadMemEx(0x02026E18, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02026E18) - Data: 22 68 63 B1 82 83 06 40  returns 0x08 (0001ms, 1308ms total)
T50BC 062:332 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 01  returns 0x01 (0001ms, 1309ms total)
T50BC 062:333 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: BB 2E 0E 00  returns 0x04 (0001ms, 1310ms total)
T50BC 062:334 JLINK_ReadMemEx(0x020277F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020277F0) - Data: 1B A8 0C 00  returns 0x04 (0001ms, 1311ms total)
T50BC 062:337 JLINK_ReadMemEx(0x020276F8, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x020276F8) - Data: BD 24 1D 15 00 00 00 00  returns 0x08 (0001ms, 1312ms total)
T50BC 062:338 JLINK_ReadMemEx(0x02027730, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02027730) - Data: 22 1E FB 17 00 00 00 00  returns 0x08 (0001ms, 1313ms total)
T50BC 062:341 JLINK_ReadMemEx(0x02028C90, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C90) - Data: 7E F9 DD 02 00 00 00 00  returns 0x08 (0001ms, 1314ms total)
T50BC 062:342 JLINK_ReadMemEx(0x02028C88, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C88) - Data: 71 F9 DD 02 00 00 00 00  returns 0x08 (0001ms, 1315ms total)
T50BC 062:344 JLINK_ReadMemEx(0x02028460, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028460) - Data: 9E D8 89 9D D8 09 B8 3F  returns 0x08 (0001ms, 1316ms total)
T50BC 062:345 JLINK_ReadMemEx(0x02028468, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028468) - Data: 06 00 00 00  returns 0x04 (0002ms, 1318ms total)
T50BC 062:348 JLINK_ReadMemEx(0x0202707C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202707C) - Data: 0D F5 FF FF  returns 0x04 (0001ms, 1319ms total)
T50BC 062:350 JLINK_ReadMemEx(0x02027080, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02027080) - Data: 63 F0 FF FF  returns 0x04 (0001ms, 1320ms total)
T69A4 062:351 JLINK_IsHalted()  returns FALSE (0001ms, 1321ms total)
T69A4 062:453 JLINK_IsHalted()  returns FALSE (0001ms, 1321ms total)
T69A4 062:554 JLINK_IsHalted()  returns FALSE (0001ms, 1321ms total)
T69A4 062:656 JLINK_IsHalted()  returns FALSE (0001ms, 1321ms total)
T69A4 062:757 JLINK_IsHalted()  returns FALSE (0000ms, 1320ms total)
T50BC 062:859 JLINK_ReadMemEx(0x02026B40, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026B40) - Data: 87 BA 0E 00  returns 0x04 (0001ms, 1321ms total)
T50BC 062:893 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 8B 6A 0D 00  returns 0x04 (0001ms, 1322ms total)
T50BC 062:897 JLINK_ReadMemEx(0x020276F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020276F0) - Data: 50 C3 00 00  returns 0x04 (0001ms, 1323ms total)
T50BC 062:899 JLINK_ReadMemEx(0x0202634F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202634F) - Data: 01  returns 0x01 (0000ms, 1323ms total)
T50BC 062:899 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 01  returns 0x01 (0001ms, 1324ms total)
T50BC 062:901 JLINK_ReadMemEx(0x020274DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020274DD) - Data: 00  returns 0x01 (0001ms, 1325ms total)
T50BC 062:903 JLINK_ReadMemEx(0x02026E10, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E10) - Data: 34 12 00 00  returns 0x04 (0001ms, 1326ms total)
T50BC 062:904 JLINK_ReadMemEx(0x02028444, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028444) - Data: A3 C2 10 00  returns 0x04 (0001ms, 1327ms total)
T50BC 062:906 JLINK_ReadMemEx(0x02028440, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028440) - Data: ED C3 10 00  returns 0x04 (0001ms, 1328ms total)
T50BC 062:907 JLINK_ReadMemEx(0x02028448, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028448) - Data: 8D D0 0E 00  returns 0x04 (0001ms, 1329ms total)
T50BC 062:909 JLINK_ReadMemEx(0x02028454, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028454) - Data: 01 00 00 00  returns 0x04 (0001ms, 1330ms total)
T50BC 062:910 JLINK_ReadMemEx(0x0202844C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202844C) - Data: C1 B6 0B 00  returns 0x04 (0001ms, 1331ms total)
T50BC 062:912 JLINK_ReadMemEx(0x02026E18, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02026E18) - Data: 19 8E 0A 05 A2 E2 10 40  returns 0x08 (0001ms, 1332ms total)
T50BC 062:914 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0001ms, 1333ms total)
T50BC 062:915 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: A7 35 0E 00  returns 0x04 (0001ms, 1334ms total)
T50BC 062:917 JLINK_ReadMemEx(0x020277F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020277F0) - Data: 07 AF 0C 00  returns 0x04 (0001ms, 1335ms total)
T50BC 062:919 JLINK_ReadMemEx(0x020276F8, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x020276F8) - Data: BD 38 13 15 00 00 00 00  returns 0x08 (0001ms, 1336ms total)
T50BC 062:921 JLINK_ReadMemEx(0x02027730, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02027730) - Data: 03 A2 F6 17 00 00 00 00  returns 0x08 (0001ms, 1337ms total)
T50BC 062:923 JLINK_ReadMemEx(0x02028C90, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C90) - Data: 87 29 DD 02 00 00 00 00  returns 0x08 (0001ms, 1338ms total)
T50BC 062:924 JLINK_ReadMemEx(0x02028C88, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C88) - Data: 82 29 DD 02 00 00 00 00  returns 0x08 (0001ms, 1339ms total)
T50BC 062:926 JLINK_ReadMemEx(0x02028460, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028460) - Data: 69 90 06 69 90 06 A0 3F  returns 0x08 (0001ms, 1340ms total)
T50BC 062:927 JLINK_ReadMemEx(0x02028468, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028468) - Data: 02 00 00 00  returns 0x04 (0001ms, 1341ms total)
T50BC 062:931 JLINK_ReadMemEx(0x0202707C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202707C) - Data: B8 EF FF FF  returns 0x04 (0001ms, 1342ms total)
T50BC 062:933 JLINK_ReadMemEx(0x02027080, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02027080) - Data: 6B F0 FF FF  returns 0x04 (0000ms, 1342ms total)
T69A4 062:934 JLINK_IsHalted()  returns FALSE (0001ms, 1343ms total)
T69A4 063:036 JLINK_IsHalted()  returns FALSE (0001ms, 1343ms total)
T69A4 063:138 JLINK_IsHalted()  returns FALSE (0001ms, 1343ms total)
T69A4 063:240 JLINK_IsHalted()  returns FALSE (0001ms, 1343ms total)
T69A4 063:341 JLINK_IsHalted()  returns FALSE (0001ms, 1343ms total)
T50BC 063:443 JLINK_ReadMemEx(0x02026B40, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026B40) - Data: 75 F2 0E 00  returns 0x04 (0002ms, 1344ms total)
T50BC 063:479 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 41 2A 0E 00  returns 0x04 (0001ms, 1345ms total)
T50BC 063:482 JLINK_ReadMemEx(0x020276F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020276F0) - Data: A0 86 01 00  returns 0x04 (0000ms, 1345ms total)
T50BC 063:483 JLINK_ReadMemEx(0x0202634F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202634F) - Data: 01  returns 0x01 (0001ms, 1346ms total)
T50BC 063:484 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 01  returns 0x01 (0001ms, 1347ms total)
T50BC 063:485 JLINK_ReadMemEx(0x020274DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020274DD) - Data: 00  returns 0x01 (0002ms, 1349ms total)
T50BC 063:487 JLINK_ReadMemEx(0x02026E10, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E10) - Data: 34 12 00 00  returns 0x04 (0001ms, 1350ms total)
T50BC 063:488 JLINK_ReadMemEx(0x02028444, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028444) - Data: 47 C1 10 00  returns 0x04 (0001ms, 1351ms total)
T50BC 063:491 JLINK_ReadMemEx(0x02028440, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028440) - Data: 91 C2 10 00  returns 0x04 (0001ms, 1352ms total)
T50BC 063:493 JLINK_ReadMemEx(0x02028448, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028448) - Data: 31 CF 0E 00  returns 0x04 (0001ms, 1353ms total)
T50BC 063:494 JLINK_ReadMemEx(0x02028454, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028454) - Data: 01 00 00 00  returns 0x04 (0001ms, 1354ms total)
T50BC 063:496 JLINK_ReadMemEx(0x0202844C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202844C) - Data: E9 A7 0B 00  returns 0x04 (0001ms, 1355ms total)
T50BC 063:497 JLINK_ReadMemEx(0x02026E18, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02026E18) - Data: 1C 2C 28 E9 EC C2 02 40  returns 0x08 (0001ms, 1356ms total)
T50BC 063:499 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 01  returns 0x01 (0001ms, 1357ms total)
T50BC 063:501 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 5F 63 0D 00  returns 0x04 (0001ms, 1358ms total)
T50BC 063:502 JLINK_ReadMemEx(0x020277F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020277F0) - Data: 0F A0 0C 00  returns 0x04 (0001ms, 1359ms total)
T50BC 063:504 JLINK_ReadMemEx(0x020276F8, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x020276F8) - Data: BD D4 01 15 00 00 00 00  returns 0x08 (0001ms, 1360ms total)
T50BC 063:507 JLINK_ReadMemEx(0x02027730, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02027730) - Data: D0 55 E3 17 00 00 00 00  returns 0x08 (0001ms, 1361ms total)
T50BC 063:510 JLINK_ReadMemEx(0x02028C90, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C90) - Data: 2A 81 E1 02 00 00 00 00  returns 0x08 (0001ms, 1362ms total)
T50BC 063:512 JLINK_ReadMemEx(0x02028C88, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C88) - Data: 1F 81 E1 02 00 00 00 00  returns 0x08 (0001ms, 1363ms total)
T50BC 063:514 JLINK_ReadMemEx(0x02028460, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028460) - Data: 83 34 48 83 34 08 B4 3F  returns 0x08 (0001ms, 1364ms total)
T50BC 063:515 JLINK_ReadMemEx(0x02028468, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028468) - Data: 05 00 00 00  returns 0x04 (0001ms, 1365ms total)
T50BC 063:517 JLINK_ReadMemEx(0x0202707C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202707C) - Data: 1C EC FF FF  returns 0x04 (0001ms, 1366ms total)
T50BC 063:519 JLINK_ReadMemEx(0x02027080, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02027080) - Data: AC F0 FF FF  returns 0x04 (0001ms, 1367ms total)
T69A4 063:521 JLINK_IsHalted()  returns FALSE (0001ms, 1368ms total)
T69A4 063:624 JLINK_IsHalted()  returns FALSE (0001ms, 1368ms total)
T69A4 063:725 JLINK_IsHalted()  returns FALSE (0001ms, 1368ms total)
T69A4 063:827 JLINK_IsHalted()  returns FALSE (0001ms, 1368ms total)
T69A4 063:928 JLINK_IsHalted()  returns FALSE (0000ms, 1367ms total)
T50BC 064:030 JLINK_ReadMemEx(0x02026B40, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026B40) - Data: FD AD 0C 00  returns 0x04 (0001ms, 1368ms total)
T50BC 064:067 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: BB 2E 0E 00  returns 0x04 (0000ms, 1368ms total)
T50BC 064:070 JLINK_ReadMemEx(0x020276F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020276F0) - Data: A0 86 01 00  returns 0x04 (0001ms, 1369ms total)
T50BC 064:072 JLINK_ReadMemEx(0x0202634F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202634F) - Data: 01  returns 0x01 (0001ms, 1370ms total)
T50BC 064:073 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 01  returns 0x01 (0000ms, 1370ms total)
T50BC 064:073 JLINK_ReadMemEx(0x020274DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020274DD) - Data: 00  returns 0x01 (0001ms, 1371ms total)
T50BC 064:075 JLINK_ReadMemEx(0x02026E10, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E10) - Data: 34 12 00 00  returns 0x04 (0001ms, 1372ms total)
T50BC 064:076 JLINK_ReadMemEx(0x02028444, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028444) - Data: E7 DE 10 00  returns 0x04 (0001ms, 1373ms total)
T50BC 064:078 JLINK_ReadMemEx(0x02028440, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028440) - Data: 37 E0 10 00  returns 0x04 (0001ms, 1374ms total)
T50BC 064:081 JLINK_ReadMemEx(0x02028448, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028448) - Data: B9 BA 0C 00  returns 0x04 (0001ms, 1375ms total)
T50BC 064:083 JLINK_ReadMemEx(0x02028454, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028454) - Data: 01 00 00 00  returns 0x04 (0001ms, 1376ms total)
T50BC 064:084 JLINK_ReadMemEx(0x0202844C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202844C) - Data: 15 B6 0B 00  returns 0x04 (0001ms, 1377ms total)
T50BC 064:086 JLINK_ReadMemEx(0x02026E18, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02026E18) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 1378ms total)
T50BC 064:087 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 01  returns 0x01 (0001ms, 1379ms total)
T50BC 064:089 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 5B 35 0E 00  returns 0x04 (0001ms, 1380ms total)
T50BC 064:090 JLINK_ReadMemEx(0x020277F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020277F0) - Data: BB AE 0C 00  returns 0x04 (0001ms, 1381ms total)
T50BC 064:092 JLINK_ReadMemEx(0x020276F8, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x020276F8) - Data: BD CC 1F 15 00 00 00 00  returns 0x08 (0001ms, 1382ms total)
T50BC 064:094 JLINK_ReadMemEx(0x02027730, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02027730) - Data: 2C C1 FD 17 00 00 00 00  returns 0x08 (0001ms, 1383ms total)
T50BC 064:098 JLINK_ReadMemEx(0x02028C90, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C90) - Data: 89 F4 DD 02 00 00 00 00  returns 0x08 (0001ms, 1384ms total)
T50BC 064:099 JLINK_ReadMemEx(0x02028C88, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C88) - Data: 88 F4 DD 02 00 00 00 00  returns 0x08 (0001ms, 1385ms total)
T50BC 064:100 JLINK_ReadMemEx(0x02028460, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028460) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 1386ms total)
T50BC 064:102 JLINK_ReadMemEx(0x02028468, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028468) - Data: 0A 00 00 00  returns 0x04 (0001ms, 1387ms total)
T50BC 064:104 JLINK_ReadMemEx(0x0202707C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202707C) - Data: DA F0 FF FF  returns 0x04 (0001ms, 1388ms total)
T50BC 064:106 JLINK_ReadMemEx(0x02027080, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02027080) - Data: A2 EE FF FF  returns 0x04 (0000ms, 1388ms total)
T69A4 064:107 JLINK_IsHalted()  returns FALSE (0001ms, 1390ms total)
T69A4 064:209 JLINK_IsHalted()  returns FALSE (0001ms, 1390ms total)
T69A4 064:311 JLINK_IsHalted()  returns FALSE (0000ms, 1389ms total)
T69A4 064:412 JLINK_IsHalted()  returns FALSE (0001ms, 1390ms total)
T69A4 064:513 JLINK_IsHalted()  returns FALSE (0001ms, 1390ms total)
T50BC 064:615 JLINK_ReadMemEx(0x02026B40, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026B40) - Data: 7B AE 0C 00  returns 0x04 (0001ms, 1390ms total)
T50BC 064:647 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 09 69 0D 00  returns 0x04 (0002ms, 1392ms total)
T50BC 064:650 JLINK_ReadMemEx(0x020276F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020276F0) - Data: 50 C3 00 00  returns 0x04 (0001ms, 1393ms total)
T50BC 064:652 JLINK_ReadMemEx(0x0202634F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202634F) - Data: 01  returns 0x01 (0001ms, 1394ms total)
T50BC 064:653 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 01  returns 0x01 (0000ms, 1394ms total)
T50BC 064:653 JLINK_ReadMemEx(0x020274DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020274DD) - Data: 00  returns 0x01 (0001ms, 1395ms total)
T50BC 064:656 JLINK_ReadMemEx(0x02026E10, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E10) - Data: 34 12 00 00  returns 0x04 (0001ms, 1396ms total)
T50BC 064:657 JLINK_ReadMemEx(0x02028444, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028444) - Data: 5B C4 10 00  returns 0x04 (0001ms, 1397ms total)
T50BC 064:659 JLINK_ReadMemEx(0x02028440, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028440) - Data: AB C5 10 00  returns 0x04 (0001ms, 1398ms total)
T50BC 064:661 JLINK_ReadMemEx(0x02028448, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028448) - Data: 47 D2 0E 00  returns 0x04 (0001ms, 1399ms total)
T50BC 064:663 JLINK_ReadMemEx(0x02028454, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028454) - Data: 01 00 00 00  returns 0x04 (0001ms, 1401ms total)
T50BC 064:665 JLINK_ReadMemEx(0x0202844C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202844C) - Data: E9 B0 0B 00  returns 0x04 (0000ms, 1401ms total)
T50BC 064:666 JLINK_ReadMemEx(0x02026E18, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02026E18) - Data: 2E E0 D9 41 AE 04 DE BF  returns 0x08 (0001ms, 1403ms total)
T50BC 064:668 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0001ms, 1404ms total)
T50BC 064:669 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 37 30 0E 00  returns 0x04 (0001ms, 1405ms total)
T50BC 064:671 JLINK_ReadMemEx(0x020277F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020277F0) - Data: 97 A9 0C 00  returns 0x04 (0001ms, 1406ms total)
T50BC 064:673 JLINK_ReadMemEx(0x020276F8, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x020276F8) - Data: BD 00 11 15 00 00 00 00  returns 0x08 (0001ms, 1407ms total)
T50BC 064:675 JLINK_ReadMemEx(0x02027730, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02027730) - Data: 3B 92 ED 17 00 00 00 00  returns 0x08 (0001ms, 1408ms total)
T50BC 064:678 JLINK_ReadMemEx(0x02028C90, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C90) - Data: B5 BD DD 02 00 00 00 00  returns 0x08 (0001ms, 1409ms total)
T50BC 064:679 JLINK_ReadMemEx(0x02028C88, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C88) - Data: AD BD DD 02 00 00 00 00  returns 0x08 (0001ms, 1410ms total)
T50BC 064:681 JLINK_ReadMemEx(0x02028460, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028460) - Data: 69 90 06 69 90 06 B0 3F  returns 0x08 (0001ms, 1411ms total)
T50BC 064:682 JLINK_ReadMemEx(0x02028468, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028468) - Data: 04 00 00 00  returns 0x04 (0001ms, 1412ms total)
T50BC 064:685 JLINK_ReadMemEx(0x0202707C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202707C) - Data: 70 F1 FF FF  returns 0x04 (0001ms, 1413ms total)
T50BC 064:689 JLINK_ReadMemEx(0x02027080, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02027080) - Data: 64 F2 FF FF  returns 0x04 (0001ms, 1414ms total)
T69A4 064:691 JLINK_IsHalted()  returns FALSE (0001ms, 1415ms total)
T69A4 064:793 JLINK_IsHalted()  returns FALSE (0000ms, 1414ms total)
T69A4 064:894 JLINK_IsHalted()  returns FALSE (0000ms, 1414ms total)
T69A4 064:996 JLINK_IsHalted()  returns FALSE (0001ms, 1415ms total)
T69A4 065:097 JLINK_IsHalted()  returns FALSE (0001ms, 1415ms total)
T50BC 065:198 JLINK_ReadMemEx(0x02026B40, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026B40) - Data: 05 61 0F 00  returns 0x04 (0001ms, 1415ms total)
T50BC 065:233 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 71 18 0E 00  returns 0x04 (0001ms, 1416ms total)
T50BC 065:236 JLINK_ReadMemEx(0x020276F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020276F0) - Data: 50 C3 00 00  returns 0x04 (0002ms, 1418ms total)
T50BC 065:239 JLINK_ReadMemEx(0x0202634F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202634F) - Data: 01  returns 0x01 (0001ms, 1419ms total)
T50BC 065:240 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0001ms, 1420ms total)
T50BC 065:241 JLINK_ReadMemEx(0x020274DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020274DD) - Data: 00  returns 0x01 (0000ms, 1420ms total)
T50BC 065:242 JLINK_ReadMemEx(0x02026E10, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E10) - Data: 34 12 00 00  returns 0x04 (0001ms, 1421ms total)
T50BC 065:243 JLINK_ReadMemEx(0x02028444, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028444) - Data: 6B 61 11 00  returns 0x04 (0001ms, 1422ms total)
T50BC 065:245 JLINK_ReadMemEx(0x02028440, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028440) - Data: B5 62 11 00  returns 0x04 (0001ms, 1423ms total)
T50BC 065:247 JLINK_ReadMemEx(0x02028448, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028448) - Data: BB 52 0D 00  returns 0x04 (0001ms, 1424ms total)
T50BC 065:249 JLINK_ReadMemEx(0x02028454, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028454) - Data: 01 00 00 00  returns 0x04 (0001ms, 1425ms total)
T50BC 065:251 JLINK_ReadMemEx(0x0202844C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202844C) - Data: 25 50 0C 00  returns 0x04 (0001ms, 1426ms total)
T50BC 065:252 JLINK_ReadMemEx(0x02026E18, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02026E18) - Data: 22 68 63 B1 82 83 16 40  returns 0x08 (0001ms, 1427ms total)
T50BC 065:254 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0000ms, 1427ms total)
T50BC 065:255 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 0D 0A 0E 00  returns 0x04 (0001ms, 1428ms total)
T50BC 065:256 JLINK_ReadMemEx(0x020277F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020277F0) - Data: BD 46 0D 00  returns 0x04 (0002ms, 1430ms total)
T50BC 065:259 JLINK_ReadMemEx(0x020276F8, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x020276F8) - Data: BD 30 38 15 00 00 00 00  returns 0x08 (0001ms, 1431ms total)
T50BC 065:260 JLINK_ReadMemEx(0x02027730, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02027730) - Data: A0 1D 17 18 00 00 00 00  returns 0x08 (0001ms, 1432ms total)
T50BC 065:264 JLINK_ReadMemEx(0x02028C90, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C90) - Data: F9 EC DE 02 00 00 00 00  returns 0x08 (0001ms, 1433ms total)
T50BC 065:266 JLINK_ReadMemEx(0x02028C88, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C88) - Data: E0 EC DE 02 00 00 00 00  returns 0x08 (0001ms, 1434ms total)
T50BC 065:267 JLINK_ReadMemEx(0x02028460, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028460) - Data: 9E D8 89 9D D8 09 C8 3F  returns 0x08 (0001ms, 1435ms total)
T50BC 065:269 JLINK_ReadMemEx(0x02028468, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028468) - Data: 0C 00 00 00  returns 0x04 (0002ms, 1437ms total)
T50BC 065:271 JLINK_ReadMemEx(0x0202707C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202707C) - Data: 66 F3 FF FF  returns 0x04 (0001ms, 1438ms total)
T50BC 065:273 JLINK_ReadMemEx(0x02027080, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02027080) - Data: 82 F1 FF FF  returns 0x04 (0001ms, 1439ms total)
T69A4 065:274 JLINK_IsHalted()  returns FALSE (0001ms, 1440ms total)
T69A4 065:376 JLINK_IsHalted()  returns FALSE (0001ms, 1440ms total)
T69A4 065:477 JLINK_IsHalted()  returns FALSE (0001ms, 1440ms total)
T69A4 065:579 JLINK_IsHalted()  returns FALSE (0000ms, 1439ms total)
T69A4 065:680 JLINK_IsHalted()  returns FALSE (0000ms, 1439ms total)
T50BC 065:781 JLINK_ReadMemEx(0x02026B40, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026B40) - Data: B5 63 0F 00  returns 0x04 (0001ms, 1440ms total)
T50BC 065:815 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 09 14 0E 00  returns 0x04 (0001ms, 1441ms total)
T50BC 065:817 JLINK_ReadMemEx(0x020276F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020276F0) - Data: 50 C3 00 00  returns 0x04 (0001ms, 1442ms total)
T50BC 065:819 JLINK_ReadMemEx(0x0202634F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202634F) - Data: 01  returns 0x01 (0002ms, 1444ms total)
T50BC 065:821 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0001ms, 1445ms total)
T50BC 065:822 JLINK_ReadMemEx(0x020274DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020274DD) - Data: 00  returns 0x01 (0001ms, 1446ms total)
T50BC 065:825 JLINK_ReadMemEx(0x02026E10, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E10) - Data: 34 12 00 00  returns 0x04 (0001ms, 1447ms total)
T50BC 065:827 JLINK_ReadMemEx(0x02028444, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028444) - Data: 09 4F 0B 00  returns 0x04 (0001ms, 1448ms total)
T50BC 065:828 JLINK_ReadMemEx(0x02028440, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028440) - Data: 35 4E 0B 00  returns 0x04 (0002ms, 1450ms total)
T50BC 065:830 JLINK_ReadMemEx(0x02028448, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028448) - Data: AF 6D 0F 00  returns 0x04 (0001ms, 1451ms total)
T50BC 065:832 JLINK_ReadMemEx(0x02028454, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028454) - Data: 01 00 00 00  returns 0x04 (0001ms, 1452ms total)
T50BC 065:833 JLINK_ReadMemEx(0x0202844C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202844C) - Data: 69 57 0C 00  returns 0x04 (0001ms, 1453ms total)
T50BC 065:835 JLINK_ReadMemEx(0x02026E18, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02026E18) - Data: 22 68 63 B1 82 83 16 40  returns 0x08 (0001ms, 1454ms total)
T50BC 065:836 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0001ms, 1455ms total)
T50BC 065:837 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 55 11 0E 00  returns 0x04 (0000ms, 1455ms total)
T50BC 065:839 JLINK_ReadMemEx(0x020277F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020277F0) - Data: 59 46 0D 00  returns 0x04 (0001ms, 1456ms total)
T50BC 065:841 JLINK_ReadMemEx(0x020276F8, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x020276F8) - Data: BD 30 38 15 00 00 00 00  returns 0x08 (0000ms, 1456ms total)
T50BC 065:841 JLINK_ReadMemEx(0x02027730, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02027730) - Data: A0 1D 17 18 00 00 00 00  returns 0x08 (0001ms, 1457ms total)
T50BC 065:843 JLINK_ReadMemEx(0x02028C90, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C90) - Data: F9 EC DE 02 00 00 00 00  returns 0x08 (0001ms, 1458ms total)
T50BC 065:846 JLINK_ReadMemEx(0x02028C88, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C88) - Data: E0 EC DE 02 00 00 00 00  returns 0x08 (0000ms, 1458ms total)
T50BC 065:847 JLINK_ReadMemEx(0x02028460, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028460) - Data: 9E D8 89 9D D8 09 C8 3F  returns 0x08 (0000ms, 1458ms total)
T50BC 065:848 JLINK_ReadMemEx(0x02028468, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028468) - Data: 0C 00 00 00  returns 0x04 (0001ms, 1459ms total)
T50BC 065:850 JLINK_ReadMemEx(0x0202707C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202707C) - Data: 66 F3 FF FF  returns 0x04 (0001ms, 1460ms total)
T50BC 065:851 JLINK_ReadMemEx(0x02027080, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02027080) - Data: 82 F1 FF FF  returns 0x04 (0001ms, 1461ms total)
T69A4 065:854 JLINK_IsHalted()  returns FALSE (0001ms, 1462ms total)
T69A4 065:955 JLINK_IsHalted()  returns FALSE (0001ms, 1462ms total)
T69A4 066:057 JLINK_IsHalted()  returns FALSE (0001ms, 1462ms total)
T69A4 066:159 JLINK_IsHalted()  returns FALSE (0000ms, 1461ms total)
T69A4 066:260 JLINK_IsHalted()  returns FALSE (0000ms, 1461ms total)
T50BC 066:362 JLINK_ReadMemEx(0x02026B40, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026B40) - Data: 3D 5E 0F 00  returns 0x04 (0001ms, 1462ms total)
T50BC 066:395 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 93 15 0E 00  returns 0x04 (0001ms, 1463ms total)
T50BC 066:399 JLINK_ReadMemEx(0x020276F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020276F0) - Data: 50 C3 00 00  returns 0x04 (0001ms, 1464ms total)
T50BC 066:400 JLINK_ReadMemEx(0x0202634F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202634F) - Data: 01  returns 0x01 (0002ms, 1466ms total)
T50BC 066:402 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0001ms, 1467ms total)
T50BC 066:403 JLINK_ReadMemEx(0x020274DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020274DD) - Data: 00  returns 0x01 (0001ms, 1468ms total)
T50BC 066:404 JLINK_ReadMemEx(0x02026E10, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E10) - Data: 34 12 00 00  returns 0x04 (0001ms, 1469ms total)
T50BC 066:405 JLINK_ReadMemEx(0x02028444, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028444) - Data: 87 5C 11 00  returns 0x04 (0002ms, 1471ms total)
T50BC 066:407 JLINK_ReadMemEx(0x02028440, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028440) - Data: 21 54 0B 00  returns 0x04 (0001ms, 1472ms total)
T50BC 066:409 JLINK_ReadMemEx(0x02028448, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028448) - Data: EB 5F 0D 00  returns 0x04 (0001ms, 1473ms total)
T50BC 066:411 JLINK_ReadMemEx(0x02028454, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028454) - Data: 01 00 00 00  returns 0x04 (0000ms, 1473ms total)
T50BC 066:413 JLINK_ReadMemEx(0x0202844C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202844C) - Data: 55 5D 0C 00  returns 0x04 (0001ms, 1474ms total)
T50BC 066:415 JLINK_ReadMemEx(0x02026E18, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02026E18) - Data: 22 68 63 B1 82 83 16 40  returns 0x08 (0001ms, 1475ms total)
T50BC 066:416 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0001ms, 1476ms total)
T50BC 066:417 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 3D 17 0E 00  returns 0x04 (0001ms, 1477ms total)
T50BC 066:419 JLINK_ReadMemEx(0x020277F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020277F0) - Data: AD 52 0D 00  returns 0x04 (0000ms, 1477ms total)
T50BC 066:421 JLINK_ReadMemEx(0x020276F8, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x020276F8) - Data: BD 30 38 15 00 00 00 00  returns 0x08 (0001ms, 1478ms total)
T50BC 066:422 JLINK_ReadMemEx(0x02027730, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02027730) - Data: A0 1D 17 18 00 00 00 00  returns 0x08 (0001ms, 1479ms total)
T50BC 066:424 JLINK_ReadMemEx(0x02028C90, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C90) - Data: F9 EC DE 02 00 00 00 00  returns 0x08 (0001ms, 1480ms total)
T50BC 066:425 JLINK_ReadMemEx(0x02028C88, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C88) - Data: E0 EC DE 02 00 00 00 00  returns 0x08 (0001ms, 1481ms total)
T50BC 066:426 JLINK_ReadMemEx(0x02028460, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028460) - Data: 9E D8 89 9D D8 09 C8 3F  returns 0x08 (0001ms, 1482ms total)
T50BC 066:427 JLINK_ReadMemEx(0x02028468, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028468) - Data: 0C 00 00 00  returns 0x04 (0001ms, 1483ms total)
T50BC 066:429 JLINK_ReadMemEx(0x0202707C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202707C) - Data: 66 F3 FF FF  returns 0x04 (0001ms, 1484ms total)
T50BC 066:431 JLINK_ReadMemEx(0x02027080, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02027080) - Data: 82 F1 FF FF  returns 0x04 (0001ms, 1486ms total)
T69A4 066:432 JLINK_IsHalted()  returns FALSE (0001ms, 1487ms total)
T69A4 066:534 JLINK_IsHalted()  returns FALSE (0001ms, 1487ms total)
T69A4 066:635 JLINK_IsHalted()  returns FALSE (0000ms, 1486ms total)
T69A4 066:736 JLINK_IsHalted()  returns FALSE (0001ms, 1487ms total)
T69A4 066:838 JLINK_IsHalted()  returns FALSE (0001ms, 1487ms total)
T50BC 066:940 JLINK_ReadMemEx(0x02026B40, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026B40) - Data: 29 65 0F 00  returns 0x04 (0001ms, 1487ms total)
T50BC 066:976 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 6F 16 0E 00  returns 0x04 (0001ms, 1488ms total)
T50BC 066:979 JLINK_ReadMemEx(0x020276F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020276F0) - Data: 50 C3 00 00  returns 0x04 (0001ms, 1489ms total)
T50BC 066:981 JLINK_ReadMemEx(0x0202634F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202634F) - Data: 01  returns 0x01 (0001ms, 1490ms total)
T50BC 066:982 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0001ms, 1491ms total)
T50BC 066:983 JLINK_ReadMemEx(0x020274DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020274DD) - Data: 00  returns 0x01 (0001ms, 1492ms total)
T50BC 066:984 JLINK_ReadMemEx(0x02026E10, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E10) - Data: 34 12 00 00  returns 0x04 (0001ms, 1493ms total)
T50BC 066:986 JLINK_ReadMemEx(0x02028444, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028444) - Data: E3 65 11 00  returns 0x04 (0001ms, 1494ms total)
T50BC 066:988 JLINK_ReadMemEx(0x02028440, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028440) - Data: 7D 56 0B 00  returns 0x04 (0002ms, 1496ms total)
T50BC 066:990 JLINK_ReadMemEx(0x02028448, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028448) - Data: F3 75 0F 00  returns 0x04 (0001ms, 1497ms total)
T50BC 066:992 JLINK_ReadMemEx(0x02028454, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028454) - Data: 01 00 00 00  returns 0x04 (0001ms, 1498ms total)
T50BC 066:993 JLINK_ReadMemEx(0x0202844C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202844C) - Data: B1 5F 0C 00  returns 0x04 (0001ms, 1499ms total)
T50BC 066:995 JLINK_ReadMemEx(0x02026E18, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02026E18) - Data: 22 68 63 B1 82 83 16 40  returns 0x08 (0001ms, 1500ms total)
T50BC 066:996 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0001ms, 1501ms total)
T50BC 066:997 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 9D 19 0E 00  returns 0x04 (0001ms, 1502ms total)
T50BC 066:998 JLINK_ReadMemEx(0x020277F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020277F0) - Data: 4D 56 0D 00  returns 0x04 (0001ms, 1503ms total)
T50BC 067:000 JLINK_ReadMemEx(0x020276F8, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x020276F8) - Data: BD 30 38 15 00 00 00 00  returns 0x08 (0002ms, 1505ms total)
T50BC 067:002 JLINK_ReadMemEx(0x02027730, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02027730) - Data: A0 1D 17 18 00 00 00 00  returns 0x08 (0001ms, 1506ms total)
T50BC 067:005 JLINK_ReadMemEx(0x02028C90, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C90) - Data: F9 EC DE 02 00 00 00 00  returns 0x08 (0001ms, 1507ms total)
T50BC 067:006 JLINK_ReadMemEx(0x02028C88, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C88) - Data: E0 EC DE 02 00 00 00 00  returns 0x08 (0000ms, 1507ms total)
T50BC 067:006 JLINK_ReadMemEx(0x02028460, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028460) - Data: 9E D8 89 9D D8 09 C8 3F  returns 0x08 (0001ms, 1508ms total)
T50BC 067:007 JLINK_ReadMemEx(0x02028468, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028468) - Data: 0C 00 00 00  returns 0x04 (0001ms, 1509ms total)
T50BC 067:009 JLINK_ReadMemEx(0x0202707C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202707C) - Data: 66 F3 FF FF  returns 0x04 (0001ms, 1510ms total)
T50BC 067:010 JLINK_ReadMemEx(0x02027080, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02027080) - Data: 82 F1 FF FF  returns 0x04 (0001ms, 1511ms total)
T69A4 067:011 JLINK_IsHalted()  returns FALSE (0001ms, 1512ms total)
T69A4 067:113 JLINK_IsHalted()  returns FALSE (0000ms, 1511ms total)
T69A4 067:215 JLINK_IsHalted()  returns FALSE (0000ms, 1511ms total)
T69A4 067:316 JLINK_IsHalted()  returns FALSE (0001ms, 1512ms total)
T69A4 067:418 JLINK_IsHalted()  returns FALSE (0001ms, 1512ms total)
T50BC 067:520 JLINK_ReadMemEx(0x02026B40, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026B40) - Data: 99 61 0F 00  returns 0x04 (0001ms, 1512ms total)
T50BC 067:555 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 35 15 0E 00  returns 0x04 (0001ms, 1513ms total)
T50BC 067:558 JLINK_ReadMemEx(0x020276F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020276F0) - Data: 50 C3 00 00  returns 0x04 (0001ms, 1514ms total)
T50BC 067:559 JLINK_ReadMemEx(0x0202634F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202634F) - Data: 01  returns 0x01 (0001ms, 1515ms total)
T50BC 067:560 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0001ms, 1516ms total)
T50BC 067:561 JLINK_ReadMemEx(0x020274DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020274DD) - Data: 00  returns 0x01 (0001ms, 1517ms total)
T50BC 067:564 JLINK_ReadMemEx(0x02026E10, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E10) - Data: 34 12 00 00  returns 0x04 (0001ms, 1518ms total)
T50BC 067:565 JLINK_ReadMemEx(0x02028444, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028444) - Data: 47 5D 11 00  returns 0x04 (0002ms, 1520ms total)
T50BC 067:567 JLINK_ReadMemEx(0x02028440, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028440) - Data: 97 5E 11 00  returns 0x04 (0001ms, 1521ms total)
T50BC 067:568 JLINK_ReadMemEx(0x02028448, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028448) - Data: 33 6B 0F 00  returns 0x04 (0001ms, 1522ms total)
T50BC 067:570 JLINK_ReadMemEx(0x02028454, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028454) - Data: 01 00 00 00  returns 0x04 (0001ms, 1523ms total)
T50BC 067:572 JLINK_ReadMemEx(0x0202844C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202844C) - Data: 25 5E 0C 00  returns 0x04 (0001ms, 1524ms total)
T50BC 067:573 JLINK_ReadMemEx(0x02026E18, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02026E18) - Data: 22 68 63 B1 82 83 16 40  returns 0x08 (0001ms, 1525ms total)
T50BC 067:574 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0001ms, 1526ms total)
T50BC 067:575 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 03 18 0E 00  returns 0x04 (0001ms, 1527ms total)
T50BC 067:577 JLINK_ReadMemEx(0x020277F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020277F0) - Data: B3 54 0D 00  returns 0x04 (0001ms, 1528ms total)
T50BC 067:580 JLINK_ReadMemEx(0x020276F8, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x020276F8) - Data: BD 30 38 15 00 00 00 00  returns 0x08 (0001ms, 1529ms total)
T50BC 067:581 JLINK_ReadMemEx(0x02027730, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02027730) - Data: A0 1D 17 18 00 00 00 00  returns 0x08 (0001ms, 1530ms total)
T50BC 067:583 JLINK_ReadMemEx(0x02028C90, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C90) - Data: F9 EC DE 02 00 00 00 00  returns 0x08 (0001ms, 1531ms total)
T50BC 067:584 JLINK_ReadMemEx(0x02028C88, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C88) - Data: E0 EC DE 02 00 00 00 00  returns 0x08 (0000ms, 1531ms total)
T50BC 067:584 JLINK_ReadMemEx(0x02028460, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028460) - Data: 9E D8 89 9D D8 09 C8 3F  returns 0x08 (0001ms, 1532ms total)
T50BC 067:585 JLINK_ReadMemEx(0x02028468, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028468) - Data: 0C 00 00 00  returns 0x04 (0001ms, 1533ms total)
T50BC 067:588 JLINK_ReadMemEx(0x0202707C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202707C) - Data: 66 F3 FF FF  returns 0x04 (0000ms, 1533ms total)
T50BC 067:589 JLINK_ReadMemEx(0x02027080, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02027080) - Data: 82 F1 FF FF  returns 0x04 (0000ms, 1533ms total)
T69A4 067:590 JLINK_IsHalted()  returns FALSE (0000ms, 1533ms total)
T69A4 067:692 JLINK_IsHalted()  returns FALSE (0001ms, 1534ms total)
T69A4 067:794 JLINK_IsHalted()  returns FALSE (0001ms, 1534ms total)
T69A4 067:896 JLINK_IsHalted()  returns FALSE (0001ms, 1534ms total)
T69A4 067:998 JLINK_IsHalted()  returns FALSE (0000ms, 1533ms total)
T50BC 068:099 JLINK_ReadMemEx(0x02026B40, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026B40) - Data: E7 4C 0D 00  returns 0x04 (0001ms, 1534ms total)
T50BC 068:133 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 39 18 0E 00  returns 0x04 (0001ms, 1535ms total)
T50BC 068:136 JLINK_ReadMemEx(0x020276F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020276F0) - Data: 50 C3 00 00  returns 0x04 (0001ms, 1536ms total)
T50BC 068:138 JLINK_ReadMemEx(0x0202634F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202634F) - Data: 01  returns 0x01 (0001ms, 1537ms total)
T50BC 068:139 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0001ms, 1538ms total)
T50BC 068:140 JLINK_ReadMemEx(0x020274DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020274DD) - Data: 00  returns 0x01 (0001ms, 1539ms total)
T50BC 068:142 JLINK_ReadMemEx(0x02026E10, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E10) - Data: 34 12 00 00  returns 0x04 (0001ms, 1540ms total)
T50BC 068:143 JLINK_ReadMemEx(0x02028444, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028444) - Data: D7 67 11 00  returns 0x04 (0001ms, 1541ms total)
T50BC 068:145 JLINK_ReadMemEx(0x02028440, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028440) - Data: 21 69 11 00  returns 0x04 (0001ms, 1542ms total)
T50BC 068:147 JLINK_ReadMemEx(0x02028448, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028448) - Data: C1 75 0F 00  returns 0x04 (0001ms, 1543ms total)
T50BC 068:148 JLINK_ReadMemEx(0x02028454, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028454) - Data: 01 00 00 00  returns 0x04 (0001ms, 1544ms total)
T50BC 068:150 JLINK_ReadMemEx(0x0202844C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202844C) - Data: A7 5F 0C 00  returns 0x04 (0001ms, 1545ms total)
T50BC 068:151 JLINK_ReadMemEx(0x02026E18, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02026E18) - Data: 22 68 63 B1 82 83 16 40  returns 0x08 (0001ms, 1546ms total)
T50BC 068:152 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0001ms, 1547ms total)
T50BC 068:153 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 99 19 0E 00  returns 0x04 (0001ms, 1548ms total)
T50BC 068:155 JLINK_ReadMemEx(0x020277F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020277F0) - Data: 49 56 0D 00  returns 0x04 (0001ms, 1549ms total)
T50BC 068:157 JLINK_ReadMemEx(0x020276F8, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x020276F8) - Data: BD 30 38 15 00 00 00 00  returns 0x08 (0001ms, 1550ms total)
T50BC 068:158 JLINK_ReadMemEx(0x02027730, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02027730) - Data: A0 1D 17 18 00 00 00 00  returns 0x08 (0001ms, 1551ms total)
T50BC 068:160 JLINK_ReadMemEx(0x02028C90, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C90) - Data: F9 EC DE 02 00 00 00 00  returns 0x08 (0001ms, 1552ms total)
T50BC 068:161 JLINK_ReadMemEx(0x02028C88, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C88) - Data: E0 EC DE 02 00 00 00 00  returns 0x08 (0001ms, 1553ms total)
T50BC 068:162 JLINK_ReadMemEx(0x02028460, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028460) - Data: 9E D8 89 9D D8 09 C8 3F  returns 0x08 (0001ms, 1554ms total)
T50BC 068:163 JLINK_ReadMemEx(0x02028468, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028468) - Data: 0C 00 00 00  returns 0x04 (0001ms, 1555ms total)
T50BC 068:165 JLINK_ReadMemEx(0x0202707C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202707C) - Data: 66 F3 FF FF  returns 0x04 (0001ms, 1556ms total)
T50BC 068:166 JLINK_ReadMemEx(0x02027080, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02027080) - Data: 82 F1 FF FF  returns 0x04 (0001ms, 1557ms total)
T69A4 068:167 JLINK_IsHalted()  returns FALSE (0001ms, 1558ms total)
T69A4 068:269 JLINK_IsHalted()  returns FALSE (0001ms, 1558ms total)
T69A4 068:371 JLINK_IsHalted()  returns FALSE (0001ms, 1558ms total)
T69A4 068:472 JLINK_IsHalted()  returns FALSE (0001ms, 1558ms total)
T69A4 068:573 JLINK_IsHalted()  returns FALSE (0001ms, 1558ms total)
T50BC 068:675 JLINK_ReadMemEx(0x02026B40, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026B40) - Data: 91 61 0F 00  returns 0x04 (0001ms, 1558ms total)
T50BC 068:709 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: F5 14 0E 00  returns 0x04 (0001ms, 1559ms total)
T50BC 068:713 JLINK_ReadMemEx(0x020276F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020276F0) - Data: 50 C3 00 00  returns 0x04 (0001ms, 1560ms total)
T50BC 068:714 JLINK_ReadMemEx(0x0202634F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202634F) - Data: 01  returns 0x01 (0001ms, 1561ms total)
T50BC 068:715 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0002ms, 1563ms total)
T50BC 068:717 JLINK_ReadMemEx(0x020274DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020274DD) - Data: 00  returns 0x01 (0001ms, 1564ms total)
T50BC 068:718 JLINK_ReadMemEx(0x02026E10, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E10) - Data: 34 12 00 00  returns 0x04 (0001ms, 1565ms total)
T50BC 068:720 JLINK_ReadMemEx(0x02028444, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028444) - Data: E9 4B 0B 00  returns 0x04 (0001ms, 1566ms total)
T50BC 068:721 JLINK_ReadMemEx(0x02028440, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028440) - Data: 15 4B 0B 00  returns 0x04 (0001ms, 1567ms total)
T50BC 068:722 JLINK_ReadMemEx(0x02028448, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028448) - Data: 8B 6A 0F 00  returns 0x04 (0001ms, 1568ms total)
T50BC 068:724 JLINK_ReadMemEx(0x02028454, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028454) - Data: 01 00 00 00  returns 0x04 (0001ms, 1569ms total)
T50BC 068:726 JLINK_ReadMemEx(0x0202844C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202844C) - Data: 49 54 0C 00  returns 0x04 (0001ms, 1570ms total)
T50BC 068:727 JLINK_ReadMemEx(0x02026E18, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02026E18) - Data: 22 68 63 B1 82 83 16 40  returns 0x08 (0002ms, 1572ms total)
T50BC 068:729 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0001ms, 1573ms total)
T50BC 068:730 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 35 0E 0E 00  returns 0x04 (0001ms, 1574ms total)
T50BC 068:732 JLINK_ReadMemEx(0x020277F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020277F0) - Data: 1D 52 0D 00  returns 0x04 (0001ms, 1575ms total)
T50BC 068:734 JLINK_ReadMemEx(0x020276F8, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x020276F8) - Data: BD 30 38 15 00 00 00 00  returns 0x08 (0001ms, 1576ms total)
T50BC 068:735 JLINK_ReadMemEx(0x02027730, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02027730) - Data: A0 1D 17 18 00 00 00 00  returns 0x08 (0001ms, 1577ms total)
T50BC 068:737 JLINK_ReadMemEx(0x02028C90, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C90) - Data: F9 EC DE 02 00 00 00 00  returns 0x08 (0001ms, 1578ms total)
T50BC 068:738 JLINK_ReadMemEx(0x02028C88, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C88) - Data: E0 EC DE 02 00 00 00 00  returns 0x08 (0000ms, 1578ms total)
T50BC 068:738 JLINK_ReadMemEx(0x02028460, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028460) - Data: 9E D8 89 9D D8 09 C8 3F  returns 0x08 (0002ms, 1580ms total)
T50BC 068:740 JLINK_ReadMemEx(0x02028468, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028468) - Data: 0C 00 00 00  returns 0x04 (0001ms, 1581ms total)
T50BC 068:742 JLINK_ReadMemEx(0x0202707C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202707C) - Data: 66 F3 FF FF  returns 0x04 (0001ms, 1582ms total)
T50BC 068:744 JLINK_ReadMemEx(0x02027080, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02027080) - Data: 82 F1 FF FF  returns 0x04 (0000ms, 1582ms total)
T69A4 068:745 JLINK_IsHalted()  returns FALSE (0001ms, 1583ms total)
T69A4 068:847 JLINK_IsHalted()  returns FALSE (0000ms, 1582ms total)
T69A4 068:948 JLINK_IsHalted()  returns FALSE (0001ms, 1583ms total)
T69A4 069:050 JLINK_IsHalted()  returns FALSE (0001ms, 1583ms total)
T69A4 069:152 JLINK_IsHalted()  returns FALSE (0001ms, 1583ms total)
T50BC 069:254 JLINK_ReadMemEx(0x02026B40, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026B40) - Data: 2F 66 0F 00  returns 0x04 (0001ms, 1583ms total)
T50BC 069:287 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 65 0C 0E 00  returns 0x04 (0001ms, 1584ms total)
T50BC 069:291 JLINK_ReadMemEx(0x020276F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020276F0) - Data: 50 C3 00 00  returns 0x04 (0001ms, 1585ms total)
T50BC 069:292 JLINK_ReadMemEx(0x0202634F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202634F) - Data: 01  returns 0x01 (0001ms, 1586ms total)
T50BC 069:293 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0002ms, 1588ms total)
T50BC 069:295 JLINK_ReadMemEx(0x020274DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020274DD) - Data: 00  returns 0x01 (0001ms, 1589ms total)
T50BC 069:296 JLINK_ReadMemEx(0x02026E10, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E10) - Data: 34 12 00 00  returns 0x04 (0001ms, 1590ms total)
T50BC 069:298 JLINK_ReadMemEx(0x02028444, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028444) - Data: 1B 65 11 00  returns 0x04 (0001ms, 1591ms total)
T50BC 069:299 JLINK_ReadMemEx(0x02028440, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028440) - Data: 6B 66 11 00  returns 0x04 (0001ms, 1592ms total)
T50BC 069:301 JLINK_ReadMemEx(0x02028448, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028448) - Data: 07 73 0F 00  returns 0x04 (0001ms, 1593ms total)
T50BC 069:302 JLINK_ReadMemEx(0x02028454, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028454) - Data: 01 00 00 00  returns 0x04 (0001ms, 1594ms total)
T50BC 069:305 JLINK_ReadMemEx(0x0202844C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202844C) - Data: A5 5F 0C 00  returns 0x04 (0001ms, 1595ms total)
T50BC 069:306 JLINK_ReadMemEx(0x02026E18, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02026E18) - Data: 2E E0 D9 41 AE 04 DE BF  returns 0x08 (0002ms, 1597ms total)
T50BC 069:308 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0001ms, 1598ms total)
T50BC 069:309 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 95 19 0E 00  returns 0x04 (0001ms, 1599ms total)
T50BC 069:310 JLINK_ReadMemEx(0x020277F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020277F0) - Data: 45 56 0D 00  returns 0x04 (0001ms, 1600ms total)
T50BC 069:313 JLINK_ReadMemEx(0x020276F8, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x020276F8) - Data: BD 4C 5B 16 00 00 00 00  returns 0x08 (0001ms, 1601ms total)
T50BC 069:314 JLINK_ReadMemEx(0x02027730, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02027730) - Data: A7 0E 39 19 00 00 00 00  returns 0x08 (0001ms, 1602ms total)
T50BC 069:316 JLINK_ReadMemEx(0x02028C90, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C90) - Data: 00 C2 DD 02 00 00 00 00  returns 0x08 (0001ms, 1603ms total)
T50BC 069:317 JLINK_ReadMemEx(0x02028C88, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C88) - Data: 02 C2 DD 02 00 00 00 00  returns 0x08 (0002ms, 1605ms total)
T50BC 069:319 JLINK_ReadMemEx(0x02028460, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028460) - Data: 69 90 06 69 90 06 90 BF  returns 0x08 (0001ms, 1606ms total)
T50BC 069:320 JLINK_ReadMemEx(0x02028468, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028468) - Data: FF FF FF FF  returns 0x04 (0001ms, 1607ms total)
T50BC 069:322 JLINK_ReadMemEx(0x0202707C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202707C) - Data: BA F3 FF FF  returns 0x04 (0001ms, 1608ms total)
T50BC 069:324 JLINK_ReadMemEx(0x02027080, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02027080) - Data: 74 F1 FF FF  returns 0x04 (0001ms, 1609ms total)
T69A4 069:325 JLINK_IsHalted()  returns FALSE (0001ms, 1610ms total)
T69A4 069:428 JLINK_IsHalted()  returns FALSE (0000ms, 1609ms total)
T69A4 069:530 JLINK_IsHalted()  returns FALSE (0001ms, 1610ms total)
T69A4 069:631 JLINK_IsHalted()  returns FALSE (0000ms, 1609ms total)
T69A4 069:732 JLINK_IsHalted()  returns FALSE (0001ms, 1610ms total)
T50BC 069:834 JLINK_ReadMemEx(0x02026B40, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026B40) - Data: 3B 63 0F 00  returns 0x04 (0001ms, 1610ms total)
T50BC 069:869 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 59 0E 0E 00  returns 0x04 (0001ms, 1611ms total)
T50BC 069:872 JLINK_ReadMemEx(0x020276F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020276F0) - Data: 50 C3 00 00  returns 0x04 (0001ms, 1612ms total)
T50BC 069:874 JLINK_ReadMemEx(0x0202634F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202634F) - Data: 01  returns 0x01 (0000ms, 1612ms total)
T50BC 069:875 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0000ms, 1612ms total)
T50BC 069:875 JLINK_ReadMemEx(0x020274DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020274DD) - Data: 00  returns 0x01 (0001ms, 1613ms total)
T50BC 069:877 JLINK_ReadMemEx(0x02026E10, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E10) - Data: 34 12 00 00  returns 0x04 (0001ms, 1614ms total)
T50BC 069:878 JLINK_ReadMemEx(0x02028444, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028444) - Data: 8F 64 11 00  returns 0x04 (0001ms, 1615ms total)
T50BC 069:882 JLINK_ReadMemEx(0x02028440, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028440) - Data: D9 65 11 00  returns 0x04 (0001ms, 1616ms total)
T50BC 069:884 JLINK_ReadMemEx(0x02028448, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028448) - Data: 09 54 0D 00  returns 0x04 (0001ms, 1617ms total)
T50BC 069:885 JLINK_ReadMemEx(0x02028454, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028454) - Data: 01 00 00 00  returns 0x04 (0001ms, 1618ms total)
T50BC 069:887 JLINK_ReadMemEx(0x0202844C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202844C) - Data: 77 51 0C 00  returns 0x04 (0001ms, 1619ms total)
T50BC 069:889 JLINK_ReadMemEx(0x02026E18, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02026E18) - Data: 2E E0 D9 41 AE 04 DE BF  returns 0x08 (0001ms, 1620ms total)
T50BC 069:890 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0001ms, 1621ms total)
T50BC 069:891 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 5B 0B 0E 00  returns 0x04 (0001ms, 1622ms total)
T50BC 069:893 JLINK_ReadMemEx(0x020277F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020277F0) - Data: 0B 48 0D 00  returns 0x04 (0001ms, 1623ms total)
T50BC 069:895 JLINK_ReadMemEx(0x020276F8, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x020276F8) - Data: BD 4C 5B 16 00 00 00 00  returns 0x08 (0001ms, 1624ms total)
T50BC 069:896 JLINK_ReadMemEx(0x02027730, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02027730) - Data: A7 0E 39 19 00 00 00 00  returns 0x08 (0002ms, 1626ms total)
T50BC 069:899 JLINK_ReadMemEx(0x02028C90, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C90) - Data: 00 C2 DD 02 00 00 00 00  returns 0x08 (0001ms, 1627ms total)
T50BC 069:900 JLINK_ReadMemEx(0x02028C88, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C88) - Data: 02 C2 DD 02 00 00 00 00  returns 0x08 (0001ms, 1628ms total)
T50BC 069:902 JLINK_ReadMemEx(0x02028460, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028460) - Data: 69 90 06 69 90 06 90 BF  returns 0x08 (0001ms, 1629ms total)
T50BC 069:903 JLINK_ReadMemEx(0x02028468, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028468) - Data: FF FF FF FF  returns 0x04 (0002ms, 1631ms total)
T50BC 069:906 JLINK_ReadMemEx(0x0202707C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202707C) - Data: BA F3 FF FF  returns 0x04 (0001ms, 1632ms total)
T50BC 069:907 JLINK_ReadMemEx(0x02027080, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02027080) - Data: 74 F1 FF FF  returns 0x04 (0001ms, 1633ms total)
T69A4 069:908 JLINK_IsHalted()  returns FALSE (0001ms, 1634ms total)
T69A4 070:010 JLINK_IsHalted()  returns FALSE (0001ms, 1634ms total)
T69A4 070:111 JLINK_IsHalted()  returns FALSE (0001ms, 1634ms total)
T69A4 070:212 JLINK_IsHalted()  returns FALSE (0001ms, 1634ms total)
T69A4 070:314 JLINK_IsHalted()  returns FALSE (0001ms, 1634ms total)
T50BC 070:416 JLINK_ReadMemEx(0x02026B40, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026B40) - Data: 03 6B 0F 00  returns 0x04 (0001ms, 1634ms total)
T50BC 070:450 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 1B 16 0E 00  returns 0x04 (0001ms, 1635ms total)
T50BC 070:453 JLINK_ReadMemEx(0x020276F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020276F0) - Data: 50 C3 00 00  returns 0x04 (0002ms, 1637ms total)
T50BC 070:456 JLINK_ReadMemEx(0x0202634F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202634F) - Data: 01  returns 0x01 (0001ms, 1638ms total)
T50BC 070:457 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0001ms, 1639ms total)
T50BC 070:458 JLINK_ReadMemEx(0x020274DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020274DD) - Data: 00  returns 0x01 (0001ms, 1640ms total)
T50BC 070:460 JLINK_ReadMemEx(0x02026E10, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E10) - Data: 34 12 00 00  returns 0x04 (0001ms, 1641ms total)
T50BC 070:462 JLINK_ReadMemEx(0x02028444, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028444) - Data: 07 5F 11 00  returns 0x04 (0000ms, 1641ms total)
T50BC 070:463 JLINK_ReadMemEx(0x02028440, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028440) - Data: 51 60 11 00  returns 0x04 (0001ms, 1642ms total)
T50BC 070:465 JLINK_ReadMemEx(0x02028448, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028448) - Data: D3 55 0D 00  returns 0x04 (0001ms, 1643ms total)
T50BC 070:466 JLINK_ReadMemEx(0x02028454, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028454) - Data: 01 00 00 00  returns 0x04 (0001ms, 1644ms total)
T50BC 070:468 JLINK_ReadMemEx(0x0202844C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202844C) - Data: 39 53 0C 00  returns 0x04 (0001ms, 1645ms total)
T50BC 070:469 JLINK_ReadMemEx(0x02026E18, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02026E18) - Data: 22 68 63 B1 82 83 06 40  returns 0x08 (0001ms, 1646ms total)
T50BC 070:471 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0001ms, 1647ms total)
T50BC 070:472 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 25 0D 0E 00  returns 0x04 (0001ms, 1648ms total)
T50BC 070:474 JLINK_ReadMemEx(0x020277F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020277F0) - Data: D5 49 0D 00  returns 0x04 (0001ms, 1649ms total)
T50BC 070:476 JLINK_ReadMemEx(0x020276F8, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x020276F8) - Data: BD 44 5A 16 00 00 00 00  returns 0x08 (0001ms, 1650ms total)
T50BC 070:477 JLINK_ReadMemEx(0x02027730, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02027730) - Data: 41 FA 35 19 00 00 00 00  returns 0x08 (0001ms, 1651ms total)
T50BC 070:480 JLINK_ReadMemEx(0x02028C90, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C90) - Data: 9B B5 DB 02 00 00 00 00  returns 0x08 (0001ms, 1652ms total)
T50BC 070:481 JLINK_ReadMemEx(0x02028C88, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C88) - Data: 8E B5 DB 02 00 00 00 00  returns 0x08 (0002ms, 1654ms total)
T50BC 070:483 JLINK_ReadMemEx(0x02028460, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028460) - Data: 9E D8 89 9D D8 09 B8 3F  returns 0x08 (0000ms, 1654ms total)
T50BC 070:484 JLINK_ReadMemEx(0x02028468, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028468) - Data: 06 00 00 00  returns 0x04 (0001ms, 1655ms total)
T50BC 070:488 JLINK_ReadMemEx(0x0202707C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202707C) - Data: 53 EB FF FF  returns 0x04 (0001ms, 1656ms total)
T50BC 070:489 JLINK_ReadMemEx(0x02027080, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02027080) - Data: E6 F0 FF FF  returns 0x04 (0001ms, 1657ms total)
T69A4 070:491 JLINK_IsHalted()  returns FALSE (0000ms, 1657ms total)
T69A4 070:592 JLINK_IsHalted()  returns FALSE (0001ms, 1658ms total)
T69A4 070:694 JLINK_IsHalted()  returns FALSE (0001ms, 1658ms total)
T69A4 070:796 JLINK_IsHalted()  returns FALSE (0001ms, 1658ms total)
T69A4 070:898 JLINK_IsHalted()  returns FALSE (0000ms, 1657ms total)
T50BC 071:000 JLINK_ReadMemEx(0x02026B40, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026B40) - Data: EB 66 0F 00  returns 0x04 (0001ms, 1658ms total)
T50BC 071:037 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 57 18 0E 00  returns 0x04 (0001ms, 1659ms total)
T50BC 071:039 JLINK_ReadMemEx(0x020276F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020276F0) - Data: 50 C3 00 00  returns 0x04 (0001ms, 1660ms total)
T50BC 071:041 JLINK_ReadMemEx(0x0202634F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202634F) - Data: 01  returns 0x01 (0001ms, 1661ms total)
T50BC 071:042 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0000ms, 1661ms total)
T50BC 071:042 JLINK_ReadMemEx(0x020274DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020274DD) - Data: 00  returns 0x01 (0002ms, 1663ms total)
T50BC 071:044 JLINK_ReadMemEx(0x02026E10, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E10) - Data: 34 12 00 00  returns 0x04 (0001ms, 1664ms total)
T50BC 071:046 JLINK_ReadMemEx(0x02028444, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028444) - Data: 55 4D 0D 00  returns 0x04 (0000ms, 1664ms total)
T50BC 071:047 JLINK_ReadMemEx(0x02028440, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028440) - Data: D5 4C 0F 00  returns 0x04 (0001ms, 1665ms total)
T50BC 071:049 JLINK_ReadMemEx(0x02028448, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028448) - Data: DD 6C 0F 00  returns 0x04 (0001ms, 1666ms total)
T50BC 071:050 JLINK_ReadMemEx(0x02028454, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028454) - Data: 01 00 00 00  returns 0x04 (0001ms, 1667ms total)
T50BC 071:052 JLINK_ReadMemEx(0x0202844C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202844C) - Data: E7 56 0C 00  returns 0x04 (0001ms, 1668ms total)
T50BC 071:053 JLINK_ReadMemEx(0x02026E18, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02026E18) - Data: 1F CA 45 CD 37 A3 14 40  returns 0x08 (0001ms, 1669ms total)
T50BC 071:055 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0001ms, 1670ms total)
T50BC 071:056 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: A1 19 0E 00  returns 0x04 (0001ms, 1671ms total)
T50BC 071:058 JLINK_ReadMemEx(0x020277F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020277F0) - Data: 51 56 0D 00  returns 0x04 (0001ms, 1672ms total)
T50BC 071:060 JLINK_ReadMemEx(0x020276F8, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x020276F8) - Data: BD 0C 76 16 00 00 00 00  returns 0x08 (0001ms, 1673ms total)
T50BC 071:063 JLINK_ReadMemEx(0x02027730, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02027730) - Data: 1A 95 52 19 00 00 00 00  returns 0x08 (0001ms, 1674ms total)
T50BC 071:066 JLINK_ReadMemEx(0x02028C90, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C90) - Data: 73 88 DC 02 00 00 00 00  returns 0x08 (0001ms, 1675ms total)
T50BC 071:067 JLINK_ReadMemEx(0x02028C88, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C88) - Data: 5C 88 DC 02 00 00 00 00  returns 0x08 (0001ms, 1676ms total)
T50BC 071:069 JLINK_ReadMemEx(0x02028460, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028460) - Data: 90 06 69 90 06 09 C6 3F  returns 0x08 (0001ms, 1677ms total)
T50BC 071:070 JLINK_ReadMemEx(0x02028468, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028468) - Data: 0B 00 00 00  returns 0x04 (0001ms, 1678ms total)
T50BC 071:072 JLINK_ReadMemEx(0x0202707C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202707C) - Data: A8 F3 FF FF  returns 0x04 (0001ms, 1679ms total)
T50BC 071:074 JLINK_ReadMemEx(0x02027080, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02027080) - Data: 3A F1 FF FF  returns 0x04 (0001ms, 1680ms total)
T69A4 071:075 JLINK_IsHalted()  returns FALSE (0001ms, 1681ms total)
T69A4 071:178 JLINK_IsHalted()  returns FALSE (0000ms, 1680ms total)
T69A4 071:279 JLINK_IsHalted()  returns FALSE (0001ms, 1681ms total)
T69A4 071:381 JLINK_IsHalted()  returns FALSE (0000ms, 1680ms total)
T69A4 071:483 JLINK_IsHalted()  returns FALSE (0001ms, 1681ms total)
T50BC 071:585 JLINK_ReadMemEx(0x02026B40, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026B40) - Data: EF 50 0D 00  returns 0x04 (0001ms, 1681ms total)
T50BC 071:618 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 79 13 0E 00  returns 0x04 (0001ms, 1682ms total)
T50BC 071:621 JLINK_ReadMemEx(0x020276F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020276F0) - Data: 50 C3 00 00  returns 0x04 (0001ms, 1683ms total)
T50BC 071:624 JLINK_ReadMemEx(0x0202634F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202634F) - Data: 01  returns 0x01 (0001ms, 1684ms total)
T50BC 071:625 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0000ms, 1684ms total)
T50BC 071:625 JLINK_ReadMemEx(0x020274DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020274DD) - Data: 00  returns 0x01 (0001ms, 1685ms total)
T50BC 071:627 JLINK_ReadMemEx(0x02026E10, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E10) - Data: 34 12 00 00  returns 0x04 (0001ms, 1686ms total)
T50BC 071:628 JLINK_ReadMemEx(0x02028444, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028444) - Data: 43 4C 0F 00  returns 0x04 (0001ms, 1687ms total)
T50BC 071:630 JLINK_ReadMemEx(0x02028440, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028440) - Data: 05 61 11 00  returns 0x04 (0001ms, 1688ms total)
T50BC 071:631 JLINK_ReadMemEx(0x02028448, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028448) - Data: A5 6D 0F 00  returns 0x04 (0001ms, 1689ms total)
T50BC 071:632 JLINK_ReadMemEx(0x02028454, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028454) - Data: 01 00 00 00  returns 0x04 (0001ms, 1690ms total)
T50BC 071:634 JLINK_ReadMemEx(0x0202844C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202844C) - Data: 99 57 0C 00  returns 0x04 (0001ms, 1691ms total)
T50BC 071:636 JLINK_ReadMemEx(0x02026E18, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02026E18) - Data: 1F CA 45 CD 37 A3 14 40  returns 0x08 (0001ms, 1692ms total)
T50BC 071:638 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0001ms, 1693ms total)
T50BC 071:639 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 3D 12 0E 00  returns 0x04 (0001ms, 1694ms total)
T50BC 071:640 JLINK_ReadMemEx(0x020277F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020277F0) - Data: ED 4E 0D 00  returns 0x04 (0001ms, 1695ms total)
T50BC 071:642 JLINK_ReadMemEx(0x020276F8, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x020276F8) - Data: BD 0C 76 16 00 00 00 00  returns 0x08 (0001ms, 1696ms total)
T50BC 071:644 JLINK_ReadMemEx(0x02027730, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02027730) - Data: 1A 95 52 19 00 00 00 00  returns 0x08 (0001ms, 1697ms total)
T50BC 071:646 JLINK_ReadMemEx(0x02028C90, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C90) - Data: 73 88 DC 02 00 00 00 00  returns 0x08 (0001ms, 1698ms total)
T50BC 071:647 JLINK_ReadMemEx(0x02028C88, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C88) - Data: 5C 88 DC 02 00 00 00 00  returns 0x08 (0001ms, 1699ms total)
T50BC 071:649 JLINK_ReadMemEx(0x02028460, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028460) - Data: 90 06 69 90 06 09 C6 3F  returns 0x08 (0001ms, 1700ms total)
T50BC 071:650 JLINK_ReadMemEx(0x02028468, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028468) - Data: 0B 00 00 00  returns 0x04 (0001ms, 1701ms total)
T50BC 071:654 JLINK_ReadMemEx(0x0202707C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202707C) - Data: A8 F3 FF FF  returns 0x04 (0001ms, 1702ms total)
T50BC 071:655 JLINK_ReadMemEx(0x02027080, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02027080) - Data: 3A F1 FF FF  returns 0x04 (0001ms, 1703ms total)
T69A4 071:657 JLINK_IsHalted()  returns FALSE (0000ms, 1703ms total)
T69A4 071:759 JLINK_IsHalted()  returns FALSE (0000ms, 1703ms total)
T69A4 071:861 JLINK_IsHalted()  returns FALSE (0000ms, 1703ms total)
T69A4 071:962 JLINK_IsHalted()  returns FALSE (0001ms, 1704ms total)
T69A4 072:064 JLINK_IsHalted()  returns FALSE (0001ms, 1704ms total)
T50BC 072:166 JLINK_ReadMemEx(0x02026B40, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026B40) - Data: 4B 46 0D 00  returns 0x04 (0001ms, 1704ms total)
T50BC 072:198 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: B9 13 0E 00  returns 0x04 (0001ms, 1705ms total)
T50BC 072:202 JLINK_ReadMemEx(0x020276F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020276F0) - Data: 50 C3 00 00  returns 0x04 (0001ms, 1706ms total)
T50BC 072:203 JLINK_ReadMemEx(0x0202634F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202634F) - Data: 01  returns 0x01 (0001ms, 1707ms total)
T50BC 072:204 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0001ms, 1708ms total)
T50BC 072:205 JLINK_ReadMemEx(0x020274DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020274DD) - Data: 00  returns 0x01 (0002ms, 1710ms total)
T50BC 072:207 JLINK_ReadMemEx(0x02026E10, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E10) - Data: 34 12 00 00  returns 0x04 (0001ms, 1711ms total)
T50BC 072:208 JLINK_ReadMemEx(0x02028444, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028444) - Data: 7B 47 0F 00  returns 0x04 (0001ms, 1712ms total)
T50BC 072:210 JLINK_ReadMemEx(0x02028440, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028440) - Data: 85 5C 11 00  returns 0x04 (0001ms, 1713ms total)
T50BC 072:211 JLINK_ReadMemEx(0x02028448, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028448) - Data: 25 69 0F 00  returns 0x04 (0001ms, 1714ms total)
T50BC 072:213 JLINK_ReadMemEx(0x02028454, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028454) - Data: 01 00 00 00  returns 0x04 (0001ms, 1715ms total)
T50BC 072:215 JLINK_ReadMemEx(0x0202844C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202844C) - Data: DB 52 0C 00  returns 0x04 (0001ms, 1716ms total)
T50BC 072:217 JLINK_ReadMemEx(0x02026E18, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02026E18) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 1717ms total)
T50BC 072:218 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0001ms, 1718ms total)
T50BC 072:219 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: A5 14 0E 00  returns 0x04 (0001ms, 1719ms total)
T50BC 072:221 JLINK_ReadMemEx(0x020277F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020277F0) - Data: 55 51 0D 00  returns 0x04 (0002ms, 1721ms total)
T50BC 072:223 JLINK_ReadMemEx(0x020276F8, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x020276F8) - Data: BD AC 64 16 00 00 00 00  returns 0x08 (0001ms, 1722ms total)
T50BC 072:224 JLINK_ReadMemEx(0x02027730, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02027730) - Data: 1B 3E 42 19 00 00 00 00  returns 0x08 (0001ms, 1723ms total)
T50BC 072:227 JLINK_ReadMemEx(0x02028C90, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C90) - Data: 75 91 DD 02 00 00 00 00  returns 0x08 (0001ms, 1724ms total)
T50BC 072:228 JLINK_ReadMemEx(0x02028C88, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C88) - Data: 74 91 DD 02 00 00 00 00  returns 0x08 (0001ms, 1725ms total)
T50BC 072:229 JLINK_ReadMemEx(0x02028460, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028460) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0002ms, 1727ms total)
T50BC 072:231 JLINK_ReadMemEx(0x02028468, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028468) - Data: 00 00 00 00  returns 0x04 (0001ms, 1728ms total)
T50BC 072:233 JLINK_ReadMemEx(0x0202707C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202707C) - Data: D0 ED FF FF  returns 0x04 (0001ms, 1729ms total)
T50BC 072:235 JLINK_ReadMemEx(0x02027080, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02027080) - Data: C9 F0 FF FF  returns 0x04 (0001ms, 1730ms total)
T69A4 072:237 JLINK_IsHalted()  returns FALSE (0000ms, 1730ms total)
T69A4 072:338 JLINK_IsHalted()  returns FALSE (0000ms, 1730ms total)
T69A4 072:439 JLINK_IsHalted()  returns FALSE (0001ms, 1731ms total)
T69A4 072:541 JLINK_IsHalted()  returns FALSE (0001ms, 1731ms total)
T69A4 072:642 JLINK_IsHalted()  returns FALSE (0000ms, 1730ms total)
T50BC 072:745 JLINK_ReadMemEx(0x02026B40, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026B40) - Data: BF 66 0F 00  returns 0x04 (0001ms, 1731ms total)
T50BC 072:779 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 95 15 0E 00  returns 0x04 (0001ms, 1732ms total)
T50BC 072:781 JLINK_ReadMemEx(0x020276F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020276F0) - Data: 50 C3 00 00  returns 0x04 (0001ms, 1733ms total)
T50BC 072:782 JLINK_ReadMemEx(0x0202634F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202634F) - Data: 01  returns 0x01 (0002ms, 1735ms total)
T50BC 072:784 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0001ms, 1736ms total)
T50BC 072:785 JLINK_ReadMemEx(0x020274DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020274DD) - Data: 00  returns 0x01 (0001ms, 1737ms total)
T50BC 072:786 JLINK_ReadMemEx(0x02026E10, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E10) - Data: 34 12 00 00  returns 0x04 (0001ms, 1738ms total)
T50BC 072:787 JLINK_ReadMemEx(0x02028444, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028444) - Data: 89 56 0B 00  returns 0x04 (0002ms, 1740ms total)
T50BC 072:790 JLINK_ReadMemEx(0x02028440, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028440) - Data: A1 68 11 00  returns 0x04 (0002ms, 1742ms total)
T50BC 072:793 JLINK_ReadMemEx(0x02028448, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028448) - Data: 41 75 0F 00  returns 0x04 (0001ms, 1743ms total)
T50BC 072:794 JLINK_ReadMemEx(0x02028454, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028454) - Data: 01 00 00 00  returns 0x04 (0001ms, 1744ms total)
T50BC 072:796 JLINK_ReadMemEx(0x0202844C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202844C) - Data: E9 5E 0C 00  returns 0x04 (0001ms, 1745ms total)
T50BC 072:798 JLINK_ReadMemEx(0x02026E18, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02026E18) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 1746ms total)
T50BC 072:799 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0001ms, 1747ms total)
T50BC 072:800 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 11 14 0E 00  returns 0x04 (0001ms, 1748ms total)
T50BC 072:801 JLINK_ReadMemEx(0x020277F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020277F0) - Data: C1 50 0D 00  returns 0x04 (0001ms, 1749ms total)
T50BC 072:804 JLINK_ReadMemEx(0x020276F8, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x020276F8) - Data: BD AC 64 16 00 00 00 00  returns 0x08 (0001ms, 1750ms total)
T50BC 072:805 JLINK_ReadMemEx(0x02027730, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02027730) - Data: 1B 3E 42 19 00 00 00 00  returns 0x08 (0001ms, 1751ms total)
T50BC 072:808 JLINK_ReadMemEx(0x02028C90, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C90) - Data: 75 91 DD 02 00 00 00 00  returns 0x08 (0002ms, 1753ms total)
T50BC 072:810 JLINK_ReadMemEx(0x02028C88, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C88) - Data: 74 91 DD 02 00 00 00 00  returns 0x08 (0001ms, 1754ms total)
T50BC 072:811 JLINK_ReadMemEx(0x02028460, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028460) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 1755ms total)
T50BC 072:812 JLINK_ReadMemEx(0x02028468, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028468) - Data: 00 00 00 00  returns 0x04 (0001ms, 1756ms total)
T50BC 072:814 JLINK_ReadMemEx(0x0202707C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202707C) - Data: D0 ED FF FF  returns 0x04 (0001ms, 1757ms total)
T50BC 072:816 JLINK_ReadMemEx(0x02027080, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02027080) - Data: C9 F0 FF FF  returns 0x04 (0001ms, 1758ms total)
T69A4 072:817 JLINK_IsHalted()  returns FALSE (0001ms, 1759ms total)
T69A4 072:919 JLINK_IsHalted()  returns FALSE (0001ms, 1759ms total)
T69A4 073:020 JLINK_IsHalted()  returns FALSE (0001ms, 1759ms total)
T69A4 073:122 JLINK_IsHalted()  returns FALSE (0000ms, 1758ms total)
T69A4 073:223 JLINK_IsHalted()  returns FALSE (0001ms, 1759ms total)
T50BC 073:325 JLINK_ReadMemEx(0x02026B40, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026B40) - Data: 0D 65 0F 00  returns 0x04 (0001ms, 1759ms total)
T50BC 073:358 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 29 17 0E 00  returns 0x04 (0002ms, 1761ms total)
T50BC 073:362 JLINK_ReadMemEx(0x020276F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020276F0) - Data: 50 C3 00 00  returns 0x04 (0000ms, 1761ms total)
T50BC 073:363 JLINK_ReadMemEx(0x0202634F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202634F) - Data: 01  returns 0x01 (0001ms, 1762ms total)
T50BC 073:364 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0001ms, 1763ms total)
T50BC 073:365 JLINK_ReadMemEx(0x020274DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020274DD) - Data: 00  returns 0x01 (0001ms, 1764ms total)
T50BC 073:367 JLINK_ReadMemEx(0x02026E10, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E10) - Data: 34 12 00 00  returns 0x04 (0001ms, 1765ms total)
T50BC 073:368 JLINK_ReadMemEx(0x02028444, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028444) - Data: DF 4B 0B 00  returns 0x04 (0001ms, 1766ms total)
T50BC 073:370 JLINK_ReadMemEx(0x02028440, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028440) - Data: 0B 4B 0B 00  returns 0x04 (0001ms, 1767ms total)
T50BC 073:372 JLINK_ReadMemEx(0x02028448, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028448) - Data: 5F 6A 0F 00  returns 0x04 (0001ms, 1768ms total)
T50BC 073:373 JLINK_ReadMemEx(0x02028454, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028454) - Data: 01 00 00 00  returns 0x04 (0001ms, 1769ms total)
T50BC 073:375 JLINK_ReadMemEx(0x0202844C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202844C) - Data: 3F 54 0C 00  returns 0x04 (0001ms, 1770ms total)
T50BC 073:376 JLINK_ReadMemEx(0x02026E18, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02026E18) - Data: 1C 2C 28 E9 EC C2 32 40  returns 0x08 (0001ms, 1771ms total)
T50BC 073:378 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0001ms, 1772ms total)
T50BC 073:379 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 3B 0E 0E 00  returns 0x04 (0000ms, 1772ms total)
T50BC 073:380 JLINK_ReadMemEx(0x020277F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020277F0) - Data: F9 52 0D 00  returns 0x04 (0001ms, 1773ms total)
T50BC 073:382 JLINK_ReadMemEx(0x020276F8, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x020276F8) - Data: BD 64 6C 16 00 00 00 00  returns 0x08 (0001ms, 1774ms total)
T50BC 073:383 JLINK_ReadMemEx(0x02027730, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02027730) - Data: CB 35 4A 19 00 00 00 00  returns 0x08 (0001ms, 1775ms total)
T50BC 073:386 JLINK_ReadMemEx(0x02028C90, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C90) - Data: 26 D1 DD 02 00 00 00 00  returns 0x08 (0001ms, 1776ms total)
T50BC 073:387 JLINK_ReadMemEx(0x02028C88, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C88) - Data: D5 D0 DD 02 00 00 00 00  returns 0x08 (0001ms, 1777ms total)
T50BC 073:388 JLINK_ReadMemEx(0x02028460, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028460) - Data: 83 34 48 83 34 08 E4 3F  returns 0x08 (0002ms, 1779ms total)
T50BC 073:390 JLINK_ReadMemEx(0x02028468, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028468) - Data: 28 00 00 00  returns 0x04 (0001ms, 1780ms total)
T50BC 073:392 JLINK_ReadMemEx(0x0202707C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202707C) - Data: C0 EF FF FF  returns 0x04 (0002ms, 1782ms total)
T50BC 073:395 JLINK_ReadMemEx(0x02027080, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02027080) - Data: 0E F0 FF FF  returns 0x04 (0001ms, 1783ms total)
T69A4 073:396 JLINK_IsHalted()  returns FALSE (0001ms, 1784ms total)
T69A4 073:497 JLINK_IsHalted()  returns FALSE (0002ms, 1785ms total)
T69A4 073:600 JLINK_IsHalted()  returns FALSE (0001ms, 1784ms total)
T69A4 073:701 JLINK_IsHalted()  returns FALSE (0001ms, 1784ms total)
T69A4 073:802 JLINK_IsHalted()  returns FALSE (0001ms, 1784ms total)
T50BC 073:903 JLINK_ReadMemEx(0x02026B40, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026B40) - Data: 43 68 0F 00  returns 0x04 (0001ms, 1784ms total)
T50BC 073:937 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 3B 11 0E 00  returns 0x04 (0001ms, 1785ms total)
T50BC 073:939 JLINK_ReadMemEx(0x020276F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020276F0) - Data: 50 C3 00 00  returns 0x04 (0001ms, 1786ms total)
T50BC 073:941 JLINK_ReadMemEx(0x0202634F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202634F) - Data: 01  returns 0x01 (0001ms, 1787ms total)
T50BC 073:942 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0001ms, 1788ms total)
T50BC 073:943 JLINK_ReadMemEx(0x020274DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020274DD) - Data: 00  returns 0x01 (0001ms, 1789ms total)
T50BC 073:945 JLINK_ReadMemEx(0x02026E10, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E10) - Data: 34 12 00 00  returns 0x04 (0001ms, 1790ms total)
T50BC 073:947 JLINK_ReadMemEx(0x02028444, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028444) - Data: 23 68 11 00  returns 0x04 (0001ms, 1791ms total)
T50BC 073:948 JLINK_ReadMemEx(0x02028440, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028440) - Data: 73 69 11 00  returns 0x04 (0001ms, 1792ms total)
T50BC 073:949 JLINK_ReadMemEx(0x02028448, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028448) - Data: FF 61 0B 00  returns 0x04 (0002ms, 1794ms total)
T50BC 073:951 JLINK_ReadMemEx(0x02028454, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028454) - Data: 01 00 00 00  returns 0x04 (0001ms, 1795ms total)
T50BC 073:953 JLINK_ReadMemEx(0x0202844C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202844C) - Data: F3 5E 0C 00  returns 0x04 (0001ms, 1796ms total)
T50BC 073:954 JLINK_ReadMemEx(0x02026E18, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02026E18) - Data: 1C 2C 28 E9 EC C2 32 40  returns 0x08 (0002ms, 1798ms total)
T50BC 073:957 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0001ms, 1799ms total)
T50BC 073:958 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: E5 18 0E 00  returns 0x04 (0001ms, 1800ms total)
T50BC 073:960 JLINK_ReadMemEx(0x020277F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020277F0) - Data: 95 55 0D 00  returns 0x04 (0001ms, 1801ms total)
T50BC 073:962 JLINK_ReadMemEx(0x020276F8, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x020276F8) - Data: BD 78 64 16 00 00 00 00  returns 0x08 (0001ms, 1802ms total)
T50BC 073:964 JLINK_ReadMemEx(0x02027730, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02027730) - Data: B7 ED 45 19 00 00 00 00  returns 0x08 (0001ms, 1803ms total)
T50BC 073:966 JLINK_ReadMemEx(0x02028C90, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C90) - Data: 13 75 E1 02 00 00 00 00  returns 0x08 (0001ms, 1804ms total)
T50BC 073:967 JLINK_ReadMemEx(0x02028C88, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C88) - Data: C3 74 E1 02 00 00 00 00  returns 0x08 (0001ms, 1805ms total)
T50BC 073:969 JLINK_ReadMemEx(0x02028460, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028460) - Data: 83 34 48 83 34 08 E4 3F  returns 0x08 (0001ms, 1806ms total)
T50BC 073:971 JLINK_ReadMemEx(0x02028468, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028468) - Data: 28 00 00 00  returns 0x04 (0001ms, 1807ms total)
T50BC 073:973 JLINK_ReadMemEx(0x0202707C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202707C) - Data: 3A F1 FF FF  returns 0x04 (0001ms, 1808ms total)
T50BC 073:975 JLINK_ReadMemEx(0x02027080, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02027080) - Data: 8E EF FF FF  returns 0x04 (0001ms, 1809ms total)
T69A4 073:977 JLINK_IsHalted()  returns FALSE (0001ms, 1810ms total)
T69A4 074:079 JLINK_IsHalted()  returns FALSE (0001ms, 1810ms total)
T69A4 074:181 JLINK_IsHalted()  returns FALSE (0000ms, 1809ms total)
T69A4 074:282 JLINK_IsHalted()  returns FALSE (0001ms, 1810ms total)
T69A4 074:384 JLINK_IsHalted()  returns FALSE (0001ms, 1810ms total)
T50BC 074:486 JLINK_ReadMemEx(0x02026B40, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026B40) - Data: 2F 6A 0F 00  returns 0x04 (0001ms, 1810ms total)
T50BC 074:519 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 69 1A 0E 00  returns 0x04 (0001ms, 1811ms total)
T50BC 074:522 JLINK_ReadMemEx(0x020276F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020276F0) - Data: 50 C3 00 00  returns 0x04 (0001ms, 1812ms total)
T50BC 074:523 JLINK_ReadMemEx(0x0202634F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202634F) - Data: 01  returns 0x01 (0001ms, 1813ms total)
T50BC 074:524 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0001ms, 1814ms total)
T50BC 074:525 JLINK_ReadMemEx(0x020274DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020274DD) - Data: 00  returns 0x01 (0001ms, 1815ms total)
T50BC 074:527 JLINK_ReadMemEx(0x02026E10, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E10) - Data: 34 12 00 00  returns 0x04 (0001ms, 1816ms total)
T50BC 074:529 JLINK_ReadMemEx(0x02028444, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028444) - Data: 77 64 11 00  returns 0x04 (0001ms, 1817ms total)
T50BC 074:531 JLINK_ReadMemEx(0x02028440, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028440) - Data: 4F 4F 0B 00  returns 0x04 (0001ms, 1818ms total)
T50BC 074:532 JLINK_ReadMemEx(0x02028448, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028448) - Data: 95 6E 0F 00  returns 0x04 (0001ms, 1819ms total)
T50BC 074:534 JLINK_ReadMemEx(0x02028454, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028454) - Data: 01 00 00 00  returns 0x04 (0001ms, 1820ms total)
T50BC 074:536 JLINK_ReadMemEx(0x0202844C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202844C) - Data: 83 58 0C 00  returns 0x04 (0001ms, 1821ms total)
T50BC 074:537 JLINK_ReadMemEx(0x02026E18, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02026E18) - Data: 1C 2C 28 E9 EC C2 32 40  returns 0x08 (0001ms, 1822ms total)
T50BC 074:538 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0001ms, 1823ms total)
T50BC 074:539 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 69 12 0E 00  returns 0x04 (0001ms, 1824ms total)
T50BC 074:541 JLINK_ReadMemEx(0x020277F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020277F0) - Data: 19 4F 0D 00  returns 0x04 (0001ms, 1825ms total)
T50BC 074:543 JLINK_ReadMemEx(0x020276F8, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x020276F8) - Data: BD 78 64 16 00 00 00 00  returns 0x08 (0002ms, 1827ms total)
T50BC 074:546 JLINK_ReadMemEx(0x02027730, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02027730) - Data: B7 ED 45 19 00 00 00 00  returns 0x08 (0000ms, 1827ms total)
T50BC 074:548 JLINK_ReadMemEx(0x02028C90, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C90) - Data: 13 75 E1 02 00 00 00 00  returns 0x08 (0001ms, 1828ms total)
T50BC 074:549 JLINK_ReadMemEx(0x02028C88, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C88) - Data: C3 74 E1 02 00 00 00 00  returns 0x08 (0001ms, 1829ms total)
T50BC 074:550 JLINK_ReadMemEx(0x02028460, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028460) - Data: 83 34 48 83 34 08 E4 3F  returns 0x08 (0001ms, 1830ms total)
T50BC 074:552 JLINK_ReadMemEx(0x02028468, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028468) - Data: 28 00 00 00  returns 0x04 (0000ms, 1831ms total)
T50BC 074:553 JLINK_ReadMemEx(0x0202707C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202707C) - Data: 3A F1 FF FF  returns 0x04 (0001ms, 1832ms total)
T50BC 074:554 JLINK_ReadMemEx(0x02027080, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02027080) - Data: 8E EF FF FF  returns 0x04 (0001ms, 1833ms total)
T69A4 074:555 JLINK_IsHalted()  returns FALSE (0001ms, 1834ms total)
T69A4 074:657 JLINK_IsHalted()  returns FALSE (0001ms, 1834ms total)
T69A4 074:759 JLINK_IsHalted()  returns FALSE (0001ms, 1834ms total)
T69A4 074:860 JLINK_IsHalted()  returns FALSE (0001ms, 1834ms total)
T69A4 074:962 JLINK_IsHalted()  returns FALSE (0001ms, 1834ms total)
T50BC 075:064 JLINK_ReadMemEx(0x02026B40, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026B40) - Data: 97 68 0F 00  returns 0x04 (0001ms, 1834ms total)
T50BC 075:098 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 61 0F 0E 00  returns 0x04 (0001ms, 1835ms total)
T50BC 075:101 JLINK_ReadMemEx(0x020276F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020276F0) - Data: 50 C3 00 00  returns 0x04 (0001ms, 1836ms total)
T50BC 075:102 JLINK_ReadMemEx(0x0202634F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202634F) - Data: 01  returns 0x01 (0001ms, 1837ms total)
T50BC 075:103 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0001ms, 1838ms total)
T50BC 075:104 JLINK_ReadMemEx(0x020274DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020274DD) - Data: 00  returns 0x01 (0001ms, 1839ms total)
T50BC 075:106 JLINK_ReadMemEx(0x02026E10, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E10) - Data: 34 12 00 00  returns 0x04 (0001ms, 1840ms total)
T50BC 075:107 JLINK_ReadMemEx(0x02028444, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028444) - Data: AF 67 11 00  returns 0x04 (0001ms, 1841ms total)
T50BC 075:108 JLINK_ReadMemEx(0x02028440, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028440) - Data: F9 68 11 00  returns 0x04 (0002ms, 1843ms total)
T50BC 075:110 JLINK_ReadMemEx(0x02028448, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028448) - Data: 99 75 0F 00  returns 0x04 (0001ms, 1844ms total)
T50BC 075:112 JLINK_ReadMemEx(0x02028454, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028454) - Data: 01 00 00 00  returns 0x04 (0001ms, 1845ms total)
T50BC 075:113 JLINK_ReadMemEx(0x0202844C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202844C) - Data: 5D 5F 0C 00  returns 0x04 (0001ms, 1846ms total)
T50BC 075:115 JLINK_ReadMemEx(0x02026E18, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02026E18) - Data: 1C 2C 28 E9 EC C2 32 40  returns 0x08 (0001ms, 1847ms total)
T50BC 075:116 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0001ms, 1848ms total)
T50BC 075:117 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 49 19 0E 00  returns 0x04 (0001ms, 1849ms total)
T50BC 075:119 JLINK_ReadMemEx(0x020277F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020277F0) - Data: F9 55 0D 00  returns 0x04 (0001ms, 1850ms total)
T50BC 075:122 JLINK_ReadMemEx(0x020276F8, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x020276F8) - Data: BD 78 64 16 00 00 00 00  returns 0x08 (0000ms, 1850ms total)
T50BC 075:122 JLINK_ReadMemEx(0x02027730, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02027730) - Data: B7 ED 45 19 00 00 00 00  returns 0x08 (0001ms, 1851ms total)
T50BC 075:124 JLINK_ReadMemEx(0x02028C90, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C90) - Data: 13 75 E1 02 00 00 00 00  returns 0x08 (0001ms, 1852ms total)
T50BC 075:125 JLINK_ReadMemEx(0x02028C88, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C88) - Data: C3 74 E1 02 00 00 00 00  returns 0x08 (0001ms, 1853ms total)
T50BC 075:126 JLINK_ReadMemEx(0x02028460, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028460) - Data: 83 34 48 83 34 08 E4 3F  returns 0x08 (0001ms, 1854ms total)
T50BC 075:127 JLINK_ReadMemEx(0x02028468, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028468) - Data: 28 00 00 00  returns 0x04 (0001ms, 1855ms total)
T50BC 075:129 JLINK_ReadMemEx(0x0202707C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202707C) - Data: 3A F1 FF FF  returns 0x04 (0001ms, 1856ms total)
T50BC 075:130 JLINK_ReadMemEx(0x02027080, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02027080) - Data: 8E EF FF FF  returns 0x04 (0001ms, 1857ms total)
T69A4 075:131 JLINK_IsHalted()  returns FALSE (0001ms, 1858ms total)
T69A4 075:233 JLINK_IsHalted()  returns FALSE (0001ms, 1858ms total)
T69A4 075:335 JLINK_IsHalted()  returns FALSE (0001ms, 1858ms total)
T69A4 075:437 JLINK_IsHalted()  returns FALSE (0001ms, 1858ms total)
T69A4 075:539 JLINK_IsHalted()  returns FALSE (0001ms, 1858ms total)
T50BC 075:641 JLINK_ReadMemEx(0x02026B40, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026B40) - Data: C7 68 0F 00  returns 0x04 (0001ms, 1858ms total)
T50BC 075:673 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 61 0F 0E 00  returns 0x04 (0002ms, 1860ms total)
T50BC 075:675 JLINK_ReadMemEx(0x020276F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020276F0) - Data: 50 C3 00 00  returns 0x04 (0001ms, 1861ms total)
T50BC 075:677 JLINK_ReadMemEx(0x0202634F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202634F) - Data: 01  returns 0x01 (0001ms, 1862ms total)
T50BC 075:678 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0001ms, 1863ms total)
T50BC 075:679 JLINK_ReadMemEx(0x020274DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020274DD) - Data: 00  returns 0x01 (0001ms, 1864ms total)
T50BC 075:681 JLINK_ReadMemEx(0x02026E10, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E10) - Data: 34 12 00 00  returns 0x04 (0001ms, 1865ms total)
T50BC 075:682 JLINK_ReadMemEx(0x02028444, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028444) - Data: 8B 5D 11 00  returns 0x04 (0001ms, 1866ms total)
T50BC 075:683 JLINK_ReadMemEx(0x02028440, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028440) - Data: 39 4E 0B 00  returns 0x04 (0002ms, 1868ms total)
T50BC 075:685 JLINK_ReadMemEx(0x02028448, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028448) - Data: 5B 6D 0F 00  returns 0x04 (0001ms, 1869ms total)
T50BC 075:686 JLINK_ReadMemEx(0x02028454, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028454) - Data: 01 00 00 00  returns 0x04 (0001ms, 1870ms total)
T50BC 075:688 JLINK_ReadMemEx(0x0202844C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202844C) - Data: 6D 57 0C 00  returns 0x04 (0001ms, 1871ms total)
T50BC 075:690 JLINK_ReadMemEx(0x02026E18, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02026E18) - Data: 1F CA 45 CD 37 A3 34 40  returns 0x08 (0001ms, 1872ms total)
T50BC 075:691 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0001ms, 1873ms total)
T50BC 075:692 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 4B 11 0E 00  returns 0x04 (0001ms, 1874ms total)
T50BC 075:694 JLINK_ReadMemEx(0x020277F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020277F0) - Data: C1 46 0D 00  returns 0x04 (0001ms, 1875ms total)
T50BC 075:697 JLINK_ReadMemEx(0x020276F8, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x020276F8) - Data: BD 38 66 16 00 00 00 00  returns 0x08 (0001ms, 1876ms total)
T50BC 075:698 JLINK_ReadMemEx(0x02027730, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02027730) - Data: 2F 6A 47 19 00 00 00 00  returns 0x08 (0001ms, 1877ms total)
T50BC 075:700 JLINK_ReadMemEx(0x02028C90, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C90) - Data: 8A 31 E1 02 00 00 00 00  returns 0x08 (0001ms, 1878ms total)
T50BC 075:701 JLINK_ReadMemEx(0x02028C88, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C88) - Data: 32 31 E1 02 00 00 00 00  returns 0x08 (0001ms, 1879ms total)
T50BC 075:703 JLINK_ReadMemEx(0x02028460, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028460) - Data: 90 06 69 90 06 09 E6 3F  returns 0x08 (0001ms, 1880ms total)
T50BC 075:704 JLINK_ReadMemEx(0x02028468, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028468) - Data: 2C 00 00 00  returns 0x04 (0001ms, 1881ms total)
T50BC 075:706 JLINK_ReadMemEx(0x0202707C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202707C) - Data: 87 EF FF FF  returns 0x04 (0001ms, 1882ms total)
T50BC 075:708 JLINK_ReadMemEx(0x02027080, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02027080) - Data: 65 F0 FF FF  returns 0x04 (0002ms, 1884ms total)
T69A4 075:711 JLINK_IsHalted()  returns FALSE (0001ms, 1885ms total)
T69A4 075:812 JLINK_IsHalted()  returns FALSE (0001ms, 1885ms total)
T69A4 075:914 JLINK_IsHalted()  returns FALSE (0001ms, 1885ms total)
T69A4 076:015 JLINK_IsHalted()  returns FALSE (0001ms, 1885ms total)
T69A4 076:117 JLINK_IsHalted()  returns FALSE (0001ms, 1885ms total)
T50BC 076:218 JLINK_ReadMemEx(0x02026B40, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026B40) - Data: 79 59 0F 00  returns 0x04 (0001ms, 1885ms total)
T50BC 076:251 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: FF 10 0E 00  returns 0x04 (0002ms, 1887ms total)
T50BC 076:254 JLINK_ReadMemEx(0x020276F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020276F0) - Data: 50 C3 00 00  returns 0x04 (0001ms, 1888ms total)
T50BC 076:255 JLINK_ReadMemEx(0x0202634F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202634F) - Data: 01  returns 0x01 (0001ms, 1889ms total)
T50BC 076:256 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0001ms, 1890ms total)
T50BC 076:257 JLINK_ReadMemEx(0x020274DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020274DD) - Data: 00  returns 0x01 (0001ms, 1891ms total)
T50BC 076:259 JLINK_ReadMemEx(0x02026E10, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E10) - Data: 34 12 00 00  returns 0x04 (0001ms, 1892ms total)
T50BC 076:260 JLINK_ReadMemEx(0x02028444, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028444) - Data: 0F 59 11 00  returns 0x04 (0000ms, 1892ms total)
T50BC 076:261 JLINK_ReadMemEx(0x02028440, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028440) - Data: 5F 5A 11 00  returns 0x04 (0002ms, 1894ms total)
T50BC 076:264 JLINK_ReadMemEx(0x02028448, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028448) - Data: 61 5B 0B 00  returns 0x04 (0001ms, 1895ms total)
T50BC 076:265 JLINK_ReadMemEx(0x02028454, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028454) - Data: 01 00 00 00  returns 0x04 (0001ms, 1896ms total)
T50BC 076:267 JLINK_ReadMemEx(0x0202844C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202844C) - Data: 5D 58 0C 00  returns 0x04 (0001ms, 1897ms total)
T50BC 076:269 JLINK_ReadMemEx(0x02026E18, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02026E18) - Data: 1F CA 45 CD 37 A3 34 40  returns 0x08 (0001ms, 1898ms total)
T50BC 076:270 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0002ms, 1900ms total)
T50BC 076:272 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 45 12 0E 00  returns 0x04 (0001ms, 1901ms total)
T50BC 076:274 JLINK_ReadMemEx(0x020277F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020277F0) - Data: F5 4E 0D 00  returns 0x04 (0001ms, 1902ms total)
T50BC 076:276 JLINK_ReadMemEx(0x020276F8, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x020276F8) - Data: BD 38 66 16 00 00 00 00  returns 0x08 (0001ms, 1903ms total)
T50BC 076:277 JLINK_ReadMemEx(0x02027730, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02027730) - Data: 2F 6A 47 19 00 00 00 00  returns 0x08 (0001ms, 1904ms total)
T50BC 076:279 JLINK_ReadMemEx(0x02028C90, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C90) - Data: 8A 31 E1 02 00 00 00 00  returns 0x08 (0001ms, 1905ms total)
T50BC 076:281 JLINK_ReadMemEx(0x02028C88, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C88) - Data: 32 31 E1 02 00 00 00 00  returns 0x08 (0001ms, 1906ms total)
T50BC 076:282 JLINK_ReadMemEx(0x02028460, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028460) - Data: 90 06 69 90 06 09 E6 3F  returns 0x08 (0001ms, 1907ms total)
T50BC 076:283 JLINK_ReadMemEx(0x02028468, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028468) - Data: 2C 00 00 00  returns 0x04 (0001ms, 1908ms total)
T50BC 076:285 JLINK_ReadMemEx(0x0202707C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202707C) - Data: 87 EF FF FF  returns 0x04 (0001ms, 1909ms total)
T50BC 076:289 JLINK_ReadMemEx(0x02027080, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02027080) - Data: 65 F0 FF FF  returns 0x04 (0001ms, 1910ms total)
T69A4 076:290 JLINK_IsHalted()  returns FALSE (0001ms, 1911ms total)
T69A4 076:391 JLINK_IsHalted()  returns FALSE (0001ms, 1911ms total)
T69A4 076:493 JLINK_IsHalted()  returns FALSE (0001ms, 1911ms total)
T69A4 076:596 JLINK_IsHalted()  returns FALSE (0000ms, 1910ms total)
T69A4 076:697 JLINK_IsHalted()  returns FALSE (0000ms, 1910ms total)
T50BC 076:799 JLINK_ReadMemEx(0x02026B40, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026B40) - Data: 81 62 0F 00  returns 0x04 (0001ms, 1911ms total)
T50BC 076:835 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 79 0B 0E 00  returns 0x04 (0001ms, 1912ms total)
T50BC 076:838 JLINK_ReadMemEx(0x020276F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020276F0) - Data: 50 C3 00 00  returns 0x04 (0002ms, 1914ms total)
T50BC 076:840 JLINK_ReadMemEx(0x0202634F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202634F) - Data: 01  returns 0x01 (0001ms, 1915ms total)
T50BC 076:841 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0001ms, 1916ms total)
T50BC 076:842 JLINK_ReadMemEx(0x020274DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020274DD) - Data: 00  returns 0x01 (0001ms, 1917ms total)
T50BC 076:843 JLINK_ReadMemEx(0x02026E10, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E10) - Data: 34 12 00 00  returns 0x04 (0001ms, 1918ms total)
T50BC 076:845 JLINK_ReadMemEx(0x02028444, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028444) - Data: CB 4E 0D 00  returns 0x04 (0001ms, 1919ms total)
T50BC 076:847 JLINK_ReadMemEx(0x02028440, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028440) - Data: B5 61 11 00  returns 0x04 (0001ms, 1920ms total)
T50BC 076:849 JLINK_ReadMemEx(0x02028448, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028448) - Data: 55 6E 0F 00  returns 0x04 (0001ms, 1921ms total)
T50BC 076:850 JLINK_ReadMemEx(0x02028454, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028454) - Data: 01 00 00 00  returns 0x04 (0001ms, 1922ms total)
T50BC 076:852 JLINK_ReadMemEx(0x0202844C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202844C) - Data: 5B 58 0C 00  returns 0x04 (0001ms, 1923ms total)
T50BC 076:853 JLINK_ReadMemEx(0x02026E18, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02026E18) - Data: 1F CA 45 CD 37 A3 34 40  returns 0x08 (0001ms, 1924ms total)
T50BC 076:854 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0002ms, 1926ms total)
T50BC 076:856 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 21 0D 0E 00  returns 0x04 (0001ms, 1927ms total)
T50BC 076:857 JLINK_ReadMemEx(0x020277F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020277F0) - Data: D1 49 0D 00  returns 0x04 (0001ms, 1928ms total)
T50BC 076:859 JLINK_ReadMemEx(0x020276F8, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x020276F8) - Data: BD 38 66 16 00 00 00 00  returns 0x08 (0001ms, 1929ms total)
T50BC 076:860 JLINK_ReadMemEx(0x02027730, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02027730) - Data: 2F 6A 47 19 00 00 00 00  returns 0x08 (0001ms, 1930ms total)
T50BC 076:863 JLINK_ReadMemEx(0x02028C90, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C90) - Data: 8A 31 E1 02 00 00 00 00  returns 0x08 (0002ms, 1932ms total)
T50BC 076:865 JLINK_ReadMemEx(0x02028C88, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C88) - Data: 32 31 E1 02 00 00 00 00  returns 0x08 (0001ms, 1933ms total)
T50BC 076:866 JLINK_ReadMemEx(0x02028460, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028460) - Data: 90 06 69 90 06 09 E6 3F  returns 0x08 (0000ms, 1933ms total)
T50BC 076:867 JLINK_ReadMemEx(0x02028468, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028468) - Data: 2C 00 00 00  returns 0x04 (0001ms, 1935ms total)
T50BC 076:868 JLINK_ReadMemEx(0x0202707C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202707C) - Data: 87 EF FF FF  returns 0x04 (0001ms, 1936ms total)
T50BC 076:870 JLINK_ReadMemEx(0x02027080, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02027080) - Data: 65 F0 FF FF  returns 0x04 (0001ms, 1937ms total)
T69A4 076:871 JLINK_IsHalted()  returns FALSE (0001ms, 1938ms total)
T69A4 076:973 JLINK_IsHalted()  returns FALSE (0001ms, 1938ms total)
T69A4 077:074 JLINK_IsHalted()  returns FALSE (0001ms, 1938ms total)
T69A4 077:176 JLINK_IsHalted()  returns FALSE (0001ms, 1938ms total)
T69A4 077:278 JLINK_IsHalted()  returns FALSE (0000ms, 1937ms total)
T50BC 077:382 JLINK_ReadMemEx(0x02026B40, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026B40) - Data: A1 5E 0F 00  returns 0x04 (0001ms, 1938ms total)
T50BC 077:414 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 41 18 0E 00  returns 0x04 (0001ms, 1939ms total)
T50BC 077:417 JLINK_ReadMemEx(0x020276F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020276F0) - Data: 50 C3 00 00  returns 0x04 (0001ms, 1940ms total)
T50BC 077:418 JLINK_ReadMemEx(0x0202634F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202634F) - Data: 01  returns 0x01 (0001ms, 1941ms total)
T50BC 077:419 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0001ms, 1942ms total)
T50BC 077:420 JLINK_ReadMemEx(0x020274DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020274DD) - Data: 00  returns 0x01 (0001ms, 1943ms total)
T50BC 077:422 JLINK_ReadMemEx(0x02026E10, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E10) - Data: 34 12 00 00  returns 0x04 (0001ms, 1944ms total)
T50BC 077:423 JLINK_ReadMemEx(0x02028444, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028444) - Data: 83 5D 11 00  returns 0x04 (0001ms, 1945ms total)
T50BC 077:426 JLINK_ReadMemEx(0x02028440, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028440) - Data: 85 55 0B 00  returns 0x04 (0001ms, 1946ms total)
T50BC 077:428 JLINK_ReadMemEx(0x02028448, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028448) - Data: 9F 74 0F 00  returns 0x04 (0000ms, 1946ms total)
T50BC 077:429 JLINK_ReadMemEx(0x02028454, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028454) - Data: 01 00 00 00  returns 0x04 (0001ms, 1947ms total)
T50BC 077:431 JLINK_ReadMemEx(0x0202844C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202844C) - Data: B9 5E 0C 00  returns 0x04 (0001ms, 1948ms total)
T50BC 077:432 JLINK_ReadMemEx(0x02026E18, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02026E18) - Data: A3 CF 6A 6A 95 FB 36 40  returns 0x08 (0001ms, 1949ms total)
T50BC 077:433 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0001ms, 1950ms total)
T50BC 077:434 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 97 18 0E 00  returns 0x04 (0001ms, 1951ms total)
T50BC 077:436 JLINK_ReadMemEx(0x020277F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020277F0) - Data: 47 55 0D 00  returns 0x04 (0000ms, 1951ms total)
T50BC 077:438 JLINK_ReadMemEx(0x020276F8, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x020276F8) - Data: BD 58 68 16 00 00 00 00  returns 0x08 (0001ms, 1953ms total)
T50BC 077:440 JLINK_ReadMemEx(0x02027730, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02027730) - Data: C2 B2 46 19 00 00 00 00  returns 0x08 (0001ms, 1954ms total)
T50BC 077:442 JLINK_ReadMemEx(0x02028C90, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C90) - Data: 1D 5A DE 02 00 00 00 00  returns 0x08 (0002ms, 1956ms total)
T50BC 077:444 JLINK_ReadMemEx(0x02028C88, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C88) - Data: BB 59 DE 02 00 00 00 00  returns 0x08 (0002ms, 1958ms total)
T50BC 077:446 JLINK_ReadMemEx(0x02028460, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028460) - Data: 21 0D D2 20 0D 8A E8 3F  returns 0x08 (0001ms, 1959ms total)
T50BC 077:447 JLINK_ReadMemEx(0x02028468, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028468) - Data: 31 00 00 00  returns 0x04 (0001ms, 1960ms total)
T50BC 077:449 JLINK_ReadMemEx(0x0202707C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202707C) - Data: 58 F1 FF FF  returns 0x04 (0001ms, 1961ms total)
T50BC 077:450 JLINK_ReadMemEx(0x02027080, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02027080) - Data: EF EF FF FF  returns 0x04 (0002ms, 1963ms total)
T69A4 077:452 JLINK_IsHalted()  returns FALSE (0001ms, 1964ms total)
T69A4 077:554 JLINK_IsHalted()  returns FALSE (0000ms, 1963ms total)
T69A4 077:656 JLINK_IsHalted()  returns FALSE (0001ms, 1964ms total)
T69A4 077:758 JLINK_IsHalted()  returns FALSE (0001ms, 1964ms total)
T69A4 077:860 JLINK_IsHalted()  returns FALSE (0000ms, 1963ms total)
T50BC 077:962 JLINK_ReadMemEx(0x02026B40, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026B40) - Data: 11 60 0F 00  returns 0x04 (0001ms, 1964ms total)
T50BC 077:995 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 99 19 0E 00  returns 0x04 (0001ms, 1965ms total)
T50BC 077:998 JLINK_ReadMemEx(0x020276F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020276F0) - Data: 50 C3 00 00  returns 0x04 (0001ms, 1966ms total)
T50BC 078:000 JLINK_ReadMemEx(0x0202634F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202634F) - Data: 01  returns 0x01 (0001ms, 1967ms total)
T50BC 078:001 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0001ms, 1968ms total)
T50BC 078:002 JLINK_ReadMemEx(0x020274DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020274DD) - Data: 00  returns 0x01 (0001ms, 1969ms total)
T50BC 078:003 JLINK_ReadMemEx(0x02026E10, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E10) - Data: 34 12 00 00  returns 0x04 (0002ms, 1971ms total)
T50BC 078:005 JLINK_ReadMemEx(0x02028444, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028444) - Data: 17 60 11 00  returns 0x04 (0001ms, 1972ms total)
T50BC 078:006 JLINK_ReadMemEx(0x02028440, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028440) - Data: 1D 53 0B 00  returns 0x04 (0001ms, 1973ms total)
T50BC 078:008 JLINK_ReadMemEx(0x02028448, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028448) - Data: DD 5E 0D 00  returns 0x04 (0001ms, 1974ms total)
T50BC 078:009 JLINK_ReadMemEx(0x02028454, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028454) - Data: 01 00 00 00  returns 0x04 (0001ms, 1975ms total)
T50BC 078:011 JLINK_ReadMemEx(0x0202844C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202844C) - Data: 51 5C 0C 00  returns 0x04 (0001ms, 1976ms total)
T50BC 078:012 JLINK_ReadMemEx(0x02026E18, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02026E18) - Data: 98 26 03 4C 8F 6A 30 40  returns 0x08 (0001ms, 1977ms total)
T50BC 078:015 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0001ms, 1978ms total)
T50BC 078:016 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 2F 16 0E 00  returns 0x04 (0001ms, 1979ms total)
T50BC 078:017 JLINK_ReadMemEx(0x020277F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020277F0) - Data: DF 52 0D 00  returns 0x04 (0001ms, 1980ms total)
T50BC 078:020 JLINK_ReadMemEx(0x020276F8, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x020276F8) - Data: BD 3C 68 16 00 00 00 00  returns 0x08 (0001ms, 1981ms total)
T50BC 078:022 JLINK_ReadMemEx(0x02027730, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02027730) - Data: EB 91 4A 19 00 00 00 00  returns 0x08 (0001ms, 1982ms total)
T50BC 078:024 JLINK_ReadMemEx(0x02028C90, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C90) - Data: 45 55 E2 02 00 00 00 00  returns 0x08 (0001ms, 1983ms total)
T50BC 078:026 JLINK_ReadMemEx(0x02028C88, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C88) - Data: FF 54 E2 02 00 00 00 00  returns 0x08 (0001ms, 1984ms total)
T50BC 078:027 JLINK_ReadMemEx(0x02028460, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028460) - Data: F3 2D DF F2 2D 87 E1 3F  returns 0x08 (0001ms, 1985ms total)
T50BC 078:030 JLINK_ReadMemEx(0x02028468, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028468) - Data: 23 00 00 00  returns 0x04 (0001ms, 1986ms total)
T50BC 078:033 JLINK_ReadMemEx(0x0202707C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202707C) - Data: 79 F1 FF FF  returns 0x04 (0001ms, 1987ms total)
T50BC 078:035 JLINK_ReadMemEx(0x02027080, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02027080) - Data: AA F0 FF FF  returns 0x04 (0001ms, 1988ms total)
T69A4 078:036 JLINK_IsHalted()  returns FALSE (0001ms, 1989ms total)
T69A4 078:138 JLINK_IsHalted()  returns FALSE (0001ms, 1989ms total)
T69A4 078:240 JLINK_IsHalted()  returns FALSE (0000ms, 1988ms total)
T69A4 078:342 JLINK_IsHalted()  returns FALSE (0000ms, 1988ms total)
T69A4 078:443 JLINK_IsHalted()  returns FALSE (0001ms, 1989ms total)
T50BC 078:547 JLINK_ReadMemEx(0x02026B40, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026B40) - Data: D3 56 0D 00  returns 0x04 (0001ms, 1989ms total)
T50BC 078:581 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 09 0F 0E 00  returns 0x04 (0001ms, 1990ms total)
T50BC 078:583 JLINK_ReadMemEx(0x020276F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020276F0) - Data: 50 C3 00 00  returns 0x04 (0002ms, 1992ms total)
T50BC 078:585 JLINK_ReadMemEx(0x0202634F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202634F) - Data: 01  returns 0x01 (0001ms, 1993ms total)
T50BC 078:586 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0001ms, 1994ms total)
T50BC 078:587 JLINK_ReadMemEx(0x020274DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020274DD) - Data: 00  returns 0x01 (0001ms, 1995ms total)
T50BC 078:589 JLINK_ReadMemEx(0x02026E10, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E10) - Data: 34 12 00 00  returns 0x04 (0001ms, 1996ms total)
T50BC 078:590 JLINK_ReadMemEx(0x02028444, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028444) - Data: E3 63 11 00  returns 0x04 (0001ms, 1997ms total)
T50BC 078:593 JLINK_ReadMemEx(0x02028440, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028440) - Data: 2D 65 11 00  returns 0x04 (0000ms, 1997ms total)
T50BC 078:595 JLINK_ReadMemEx(0x02028448, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028448) - Data: CF 71 0F 00  returns 0x04 (0001ms, 1998ms total)
T50BC 078:596 JLINK_ReadMemEx(0x02028454, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028454) - Data: 01 00 00 00  returns 0x04 (0001ms, 1999ms total)
T50BC 078:598 JLINK_ReadMemEx(0x0202844C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202844C) - Data: 8D 55 0C 00  returns 0x04 (0001ms, 2000ms total)
T50BC 078:599 JLINK_ReadMemEx(0x02026E18, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02026E18) - Data: 98 26 03 4C 8F 6A 30 40  returns 0x08 (0001ms, 2001ms total)
T50BC 078:601 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0001ms, 2003ms total)
T50BC 078:602 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 7D 0F 0E 00  returns 0x04 (0000ms, 2003ms total)
T50BC 078:603 JLINK_ReadMemEx(0x020277F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020277F0) - Data: 2D 4C 0D 00  returns 0x04 (0001ms, 2004ms total)
T50BC 078:605 JLINK_ReadMemEx(0x020276F8, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x020276F8) - Data: BD 3C 68 16 00 00 00 00  returns 0x08 (0001ms, 2005ms total)
T50BC 078:607 JLINK_ReadMemEx(0x02027730, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02027730) - Data: EB 91 4A 19 00 00 00 00  returns 0x08 (0001ms, 2006ms total)
T50BC 078:610 JLINK_ReadMemEx(0x02028C90, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C90) - Data: 45 55 E2 02 00 00 00 00  returns 0x08 (0001ms, 2007ms total)
T50BC 078:611 JLINK_ReadMemEx(0x02028C88, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C88) - Data: FF 54 E2 02 00 00 00 00  returns 0x08 (0001ms, 2008ms total)
T50BC 078:612 JLINK_ReadMemEx(0x02028460, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028460) - Data: F3 2D DF F2 2D 87 E1 3F  returns 0x08 (0001ms, 2009ms total)
T50BC 078:614 JLINK_ReadMemEx(0x02028468, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028468) - Data: 23 00 00 00  returns 0x04 (0001ms, 2010ms total)
T50BC 078:615 JLINK_ReadMemEx(0x0202707C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202707C) - Data: 79 F1 FF FF  returns 0x04 (0001ms, 2011ms total)
T50BC 078:617 JLINK_ReadMemEx(0x02027080, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02027080) - Data: AA F0 FF FF  returns 0x04 (0001ms, 2012ms total)
T69A4 078:618 JLINK_IsHalted()  returns FALSE (0001ms, 2013ms total)
T69A4 078:721 JLINK_IsHalted()  returns FALSE (0000ms, 2012ms total)
T69A4 078:822 JLINK_IsHalted()  returns FALSE (0001ms, 2013ms total)
T69A4 078:924 JLINK_IsHalted()  returns FALSE (0001ms, 2013ms total)
T69A4 079:025 JLINK_IsHalted()  returns FALSE (0000ms, 2012ms total)
T50BC 079:127 JLINK_ReadMemEx(0x02026B40, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026B40) - Data: 27 61 0F 00  returns 0x04 (0001ms, 2013ms total)
T50BC 079:161 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: BD 11 0E 00  returns 0x04 (0002ms, 2015ms total)
T50BC 079:164 JLINK_ReadMemEx(0x020276F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020276F0) - Data: 50 C3 00 00  returns 0x04 (0001ms, 2016ms total)
T50BC 079:166 JLINK_ReadMemEx(0x0202634F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202634F) - Data: 01  returns 0x01 (0001ms, 2017ms total)
T50BC 079:167 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0000ms, 2017ms total)
T50BC 079:167 JLINK_ReadMemEx(0x020274DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020274DD) - Data: 00  returns 0x01 (0001ms, 2018ms total)
T50BC 079:169 JLINK_ReadMemEx(0x02026E10, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E10) - Data: 34 12 00 00  returns 0x04 (0000ms, 2018ms total)
T50BC 079:170 JLINK_ReadMemEx(0x02028444, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028444) - Data: C3 55 0F 00  returns 0x04 (0001ms, 2020ms total)
T50BC 079:171 JLINK_ReadMemEx(0x02028440, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028440) - Data: 7D 6A 11 00  returns 0x04 (0001ms, 2021ms total)
T50BC 079:173 JLINK_ReadMemEx(0x02028448, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028448) - Data: 1D 77 0F 00  returns 0x04 (0001ms, 2022ms total)
T50BC 079:175 JLINK_ReadMemEx(0x02028454, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028454) - Data: 01 00 00 00  returns 0x04 (0001ms, 2023ms total)
T50BC 079:176 JLINK_ReadMemEx(0x0202844C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202844C) - Data: 1D 61 0C 00  returns 0x04 (0001ms, 2024ms total)
T50BC 079:178 JLINK_ReadMemEx(0x02026E18, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02026E18) - Data: 22 68 63 B1 82 83 06 40  returns 0x08 (0001ms, 2025ms total)
T50BC 079:180 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0001ms, 2026ms total)
T50BC 079:181 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 49 12 0E 00  returns 0x04 (0001ms, 2027ms total)
T50BC 079:183 JLINK_ReadMemEx(0x020277F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020277F0) - Data: F9 4E 0D 00  returns 0x04 (0001ms, 2028ms total)
T50BC 079:185 JLINK_ReadMemEx(0x020276F8, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x020276F8) - Data: BD C0 79 16 00 00 00 00  returns 0x08 (0001ms, 2029ms total)
T50BC 079:186 JLINK_ReadMemEx(0x02027730, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02027730) - Data: 18 9E 57 19 00 00 00 00  returns 0x08 (0001ms, 2030ms total)
T50BC 079:188 JLINK_ReadMemEx(0x02028C90, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C90) - Data: 72 DD DD 02 00 00 00 00  returns 0x08 (0001ms, 2031ms total)
T50BC 079:190 JLINK_ReadMemEx(0x02028C88, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C88) - Data: 65 DD DD 02 00 00 00 00  returns 0x08 (0001ms, 2032ms total)
T50BC 079:191 JLINK_ReadMemEx(0x02028460, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028460) - Data: 9E D8 89 9D D8 09 B8 3F  returns 0x08 (0001ms, 2033ms total)
T50BC 079:192 JLINK_ReadMemEx(0x02028468, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028468) - Data: 06 00 00 00  returns 0x04 (0001ms, 2034ms total)
T50BC 079:195 JLINK_ReadMemEx(0x0202707C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202707C) - Data: 71 EF FF FF  returns 0x04 (0001ms, 2035ms total)
T50BC 079:197 JLINK_ReadMemEx(0x02027080, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02027080) - Data: 9B F0 FF FF  returns 0x04 (0001ms, 2036ms total)
T69A4 079:199 JLINK_IsHalted()  returns FALSE (0001ms, 2037ms total)
T69A4 079:301 JLINK_IsHalted()  returns FALSE (0000ms, 2036ms total)
T69A4 079:402 JLINK_IsHalted()  returns FALSE (0002ms, 2038ms total)
T69A4 079:505 JLINK_IsHalted()  returns FALSE (0001ms, 2037ms total)
T69A4 079:607 JLINK_IsHalted()  returns FALSE (0001ms, 2037ms total)
T50BC 079:708 JLINK_ReadMemEx(0x02026B40, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026B40) - Data: D3 60 0F 00  returns 0x04 (0001ms, 2037ms total)
T50BC 079:742 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: D1 13 0E 00  returns 0x04 (0002ms, 2039ms total)
T50BC 079:746 JLINK_ReadMemEx(0x020276F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020276F0) - Data: 50 C3 00 00  returns 0x04 (0001ms, 2040ms total)
T50BC 079:747 JLINK_ReadMemEx(0x0202634F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202634F) - Data: 01  returns 0x01 (0001ms, 2041ms total)
T50BC 079:748 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0001ms, 2042ms total)
T50BC 079:749 JLINK_ReadMemEx(0x020274DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020274DD) - Data: 00  returns 0x01 (0001ms, 2043ms total)
T50BC 079:751 JLINK_ReadMemEx(0x02026E10, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E10) - Data: 34 12 00 00  returns 0x04 (0001ms, 2044ms total)
T50BC 079:752 JLINK_ReadMemEx(0x02028444, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028444) - Data: 9F 55 0F 00  returns 0x04 (0001ms, 2045ms total)
T50BC 079:755 JLINK_ReadMemEx(0x02028440, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028440) - Data: 59 6A 11 00  returns 0x04 (0001ms, 2046ms total)
T50BC 079:757 JLINK_ReadMemEx(0x02028448, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028448) - Data: F9 76 0F 00  returns 0x04 (0001ms, 2047ms total)
T50BC 079:758 JLINK_ReadMemEx(0x02028454, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028454) - Data: 01 00 00 00  returns 0x04 (0001ms, 2048ms total)
T50BC 079:760 JLINK_ReadMemEx(0x0202844C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202844C) - Data: F3 60 0C 00  returns 0x04 (0001ms, 2049ms total)
T50BC 079:761 JLINK_ReadMemEx(0x02026E18, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02026E18) - Data: 22 68 63 B1 82 83 06 40  returns 0x08 (0001ms, 2050ms total)
T50BC 079:763 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0001ms, 2052ms total)
T50BC 079:764 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02026E20) - Data: 4D 12 0E 00  returns 0x04 (0001ms, 2053ms total)
T50BC 079:765 JLINK_ReadMemEx(0x020277F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020277F0) - Data: FD 4E 0D 00  returns 0x04 (0001ms, 2054ms total)
T50BC 079:767 JLINK_ReadMemEx(0x020276F8, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x020276F8) - Data: BD C0 79 16 00 00 00 00  returns 0x08 (0001ms, 2055ms total)
T50BC 079:769 JLINK_ReadMemEx(0x02027730, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02027730) - Data: 18 9E 57 19 00 00 00 00  returns 0x08 (0001ms, 2056ms total)
T50BC 079:772 JLINK_ReadMemEx(0x02028C90, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C90) - Data: 72 DD DD 02 00 00 00 00  returns 0x08 (0001ms, 2057ms total)
T50BC 079:773 JLINK_ReadMemEx(0x02028C88, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C88) - Data: 65 DD DD 02 00 00 00 00  returns 0x08 (0001ms, 2058ms total)
T50BC 079:774 JLINK_ReadMemEx(0x02028460, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028460) - Data: 9E D8 89 9D D8 09 B8 3F  returns 0x08 (0001ms, 2059ms total)
T50BC 079:776 JLINK_ReadMemEx(0x02028468, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028468) - Data: 06 00 00 00  returns 0x04 (0001ms, 2060ms total)
T50BC 079:778 JLINK_ReadMemEx(0x0202707C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202707C) - Data: 71 EF FF FF  returns 0x04 (0001ms, 2061ms total)
T50BC 079:779 JLINK_ReadMemEx(0x02027080, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02027080) - Data: 9B F0 FF FF  returns 0x04 (0001ms, 2062ms total)
T69A4 079:781 JLINK_IsHalted()  returns FALSE (0001ms, 2063ms total)
T69A4 079:883 JLINK_IsHalted()  returns FALSE (0001ms, 2063ms total)
T69A4 079:985 JLINK_IsHalted()  returns FALSE (0001ms, 2063ms total)
T69A4 080:086 JLINK_Halt()  returns 0x00 (0004ms, 2066ms total)
T69A4 080:090 JLINK_IsHalted()  returns TRUE (0000ms, 2066ms total)
T69A4 080:090 JLINK_IsHalted()  returns TRUE (0000ms, 2066ms total)
T69A4 080:090 JLINK_IsHalted()  returns TRUE (0000ms, 2066ms total)
T69A4 080:090 JLINK_ReadReg(R15 (PC))  returns 0x000001A2 (0000ms, 2066ms total)
T69A4 080:090 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 2066ms total)
T69A4 080:090 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 01 00 00 00  returns 0x01 (0001ms, 2067ms total)
T69A4 080:091 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 2068ms total)
T69A4 080:092 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0001ms, 2069ms total)
T69A4 080:093 JLINK_ReadReg(R0)  returns 0x02081B43 (0000ms, 2069ms total)
T69A4 080:093 JLINK_ReadReg(R1)  returns 0x000004BC (0000ms, 2069ms total)
T69A4 080:093 JLINK_ReadReg(R2)  returns 0x00000000 (0000ms, 2069ms total)
T69A4 080:093 JLINK_ReadReg(R3)  returns 0x0000007F (0000ms, 2069ms total)
T69A4 080:093 JLINK_ReadReg(R4)  returns 0x00000003 (0000ms, 2069ms total)
T69A4 080:093 JLINK_ReadReg(R5)  returns 0x00000003 (0001ms, 2070ms total)
T69A4 080:094 JLINK_ReadReg(R6)  returns 0x00000080 (0000ms, 2070ms total)
T69A4 080:094 JLINK_ReadReg(R7)  returns 0x00000001 (0000ms, 2070ms total)
T69A4 080:094 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 2070ms total)
T69A4 080:094 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 2070ms total)
T69A4 080:094 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 2070ms total)
T69A4 080:094 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 2070ms total)
T69A4 080:094 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 2070ms total)
T69A4 080:094 JLINK_ReadReg(R13 (SP))  returns 0x0202F790 (0000ms, 2070ms total)
T69A4 080:094 JLINK_ReadReg(R14)  returns 0x0000694B (0000ms, 2070ms total)
T69A4 080:094 JLINK_ReadReg(R15 (PC))  returns 0x000001A2 (0000ms, 2070ms total)
T69A4 080:094 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 2070ms total)
T69A4 080:094 JLINK_ReadReg(MSP)  returns 0x0202F790 (0000ms, 2070ms total)
T69A4 080:094 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 2070ms total)
T69A4 080:094 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 2070ms total)
T50BC 080:096 JLINK_ReadMemEx(0x0202F790, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F790) - Data: 7F 00 00 00  returns 0x04 (0002ms, 2072ms total)
T50BC 080:098 JLINK_ReadMemEx(0x0202F794, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F794) - Data: 00 00 00 00  returns 0x04 (0001ms, 2073ms total)
T50BC 080:100 JLINK_ReadMemEx(0x0202F798, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F798) - Data: 03 00 00 00  returns 0x04 (0001ms, 2074ms total)
T50BC 080:101 JLINK_ReadMemEx(0x0202F79C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F79C) - Data: 01 00 00 00  returns 0x04 (0001ms, 2075ms total)
T50BC 080:102 JLINK_ReadMemEx(0x0202F7A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7A0) - Data: 00 00 00 02  returns 0x04 (0001ms, 2076ms total)
T50BC 080:103 JLINK_ReadMemEx(0x0202F7A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7A4) - Data: 1B B8 00 00  returns 0x04 (0001ms, 2077ms total)
T50BC 080:105 JLINK_ReadMemEx(0x0202F7A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7A8) - Data: 8E 66 02 02  returns 0x04 (0001ms, 2078ms total)
T50BC 080:106 JLINK_ReadMemEx(0x0202F7AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7AC) - Data: 4F 63 02 02  returns 0x04 (0001ms, 2079ms total)
T50BC 080:108 JLINK_ReadMemEx(0x0202F7B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7B0) - Data: 01 00 00 00  returns 0x04 (0001ms, 2080ms total)
T50BC 080:109 JLINK_ReadMemEx(0x0202F7B4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7B4) - Data: DC D4 00 00  returns 0x04 (0000ms, 2080ms total)
T50BC 080:110 JLINK_ReadMemEx(0x0202F7B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7B8) - Data: 00 00 00 02  returns 0x04 (0001ms, 2081ms total)
T50BC 080:111 JLINK_ReadMemEx(0x0202F7BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7BC) - Data: A9 90 00 00  returns 0x04 (0001ms, 2082ms total)
T50BC 080:112 JLINK_ReadMemEx(0x0202F7C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7C0) - Data: 6A 77 02 02  returns 0x04 (0001ms, 2083ms total)
T50BC 080:113 JLINK_ReadMemEx(0x0202F7C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7C4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2084ms total)
T50BC 080:115 JLINK_ReadMemEx(0x0202F7C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7C8) - Data: BD C0 79 16  returns 0x04 (0001ms, 2085ms total)
T50BC 080:116 JLINK_ReadMemEx(0x0202F7CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7CC) - Data: 01 00 00 00  returns 0x04 (0001ms, 2086ms total)
T50BC 080:118 JLINK_ReadMemEx(0x0202F7D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7D0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2087ms total)
T50BC 080:119 JLINK_ReadMemEx(0x0202F7D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7D4) - Data: E8 03 00 00  returns 0x04 (0001ms, 2088ms total)
T50BC 080:121 JLINK_ReadMemEx(0x0202F7D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7D8) - Data: 00 00 00 00  returns 0x04 (0001ms, 2089ms total)
T50BC 080:122 JLINK_ReadMemEx(0x0202F7DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7DC) - Data: 00 00 00 00  returns 0x04 (0001ms, 2090ms total)
T50BC 080:123 JLINK_ReadMemEx(0x0202F7E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2091ms total)
T50BC 080:124 JLINK_ReadMemEx(0x0202F7E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7E4) - Data: 28 00 04 00  returns 0x04 (0002ms, 2093ms total)
T50BC 080:126 JLINK_ReadMemEx(0x0202F7E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7E8) - Data: 00 00 00 00  returns 0x04 (0001ms, 2094ms total)
T50BC 080:127 JLINK_ReadMemEx(0x0202F7EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7EC) - Data: 4F 63 02 02  returns 0x04 (0001ms, 2095ms total)
T50BC 080:129 JLINK_ReadMemEx(0x0202F7F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7F0) - Data: 01 00 00 00  returns 0x04 (0001ms, 2096ms total)
T50BC 080:130 JLINK_ReadMemEx(0x0202F7F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7F4) - Data: DC D4 00 00  returns 0x04 (0001ms, 2097ms total)
T50BC 080:132 JLINK_ReadMemEx(0x0202F7F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7F8) - Data: 00 00 00 02  returns 0x04 (0001ms, 2098ms total)
T50BC 080:133 JLINK_ReadMemEx(0x0202F7FC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7FC) - Data: 07 72 00 00  returns 0x04 (0000ms, 2098ms total)
T50BC 080:134 JLINK_ReadMemEx(0x0202F800, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F800) - Data: 00 00 00 00  returns 0x04 (0001ms, 2100ms total)
T50BC 080:135 JLINK_ReadMemEx(0x0202F804, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F804) - Data: 00 00 00 00  returns 0x04 (0001ms, 2101ms total)
T50BC 080:137 JLINK_ReadMemEx(0x0202F808, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F808) - Data: 00 00 00 00  returns 0x04 (0001ms, 2102ms total)
T50BC 080:138 JLINK_ReadMemEx(0x0202F80C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F80C) - Data: 00 00 00 00  returns 0x04 (0001ms, 2103ms total)
T50BC 080:140 JLINK_ReadMemEx(0x0202F810, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F810) - Data: C0 C1 C2 C3  returns 0x04 (0001ms, 2104ms total)
T50BC 080:141 JLINK_ReadMemEx(0x0202F814, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F814) - Data: C4 C5 C6 C7  returns 0x04 (0001ms, 2105ms total)
T50BC 080:142 JLINK_ReadMemEx(0x0202F818, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F818) - Data: C8 C9 CA CB  returns 0x04 (0001ms, 2106ms total)
T50BC 080:143 JLINK_ReadMemEx(0x0202F81C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F81C) - Data: CC CD CE CF  returns 0x04 (0001ms, 2107ms total)
T50BC 080:145 JLINK_ReadMemEx(0x0202F820, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F820) - Data: 00 00 01 01  returns 0x04 (0001ms, 2108ms total)
T50BC 080:146 JLINK_ReadMemEx(0x0202F824, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F824) - Data: 00 90 00 50  returns 0x04 (0001ms, 2109ms total)
T50BC 080:148 JLINK_ReadMemEx(0x0202F828, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F828) - Data: 08 00 00 00  returns 0x04 (0000ms, 2109ms total)
T50BC 080:149 JLINK_ReadMemEx(0x0202F82C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F82C) - Data: 02 00 00 00  returns 0x04 (0001ms, 2111ms total)
T50BC 080:150 JLINK_ReadMemEx(0x0202F830, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F830) - Data: 03 00 00 00  returns 0x04 (0001ms, 2112ms total)
T50BC 080:151 JLINK_ReadMemEx(0x0202F834, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F834) - Data: 00 00 00 00  returns 0x04 (0001ms, 2113ms total)
T50BC 080:153 JLINK_ReadMemEx(0x0202F838, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F838) - Data: 00 00 00 00  returns 0x04 (0002ms, 2115ms total)
T50BC 080:155 JLINK_ReadMemEx(0x0202F83C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F83C) - Data: 00 00 00 00  returns 0x04 (0001ms, 2116ms total)
T50BC 080:156 JLINK_ReadMemEx(0x0202F840, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F840) - Data: 00 00 00 00  returns 0x04 (0001ms, 2117ms total)
T50BC 080:157 JLINK_ReadMemEx(0x0202F844, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F844) - Data: 00 00 00 00  returns 0x04 (0001ms, 2118ms total)
T50BC 080:159 JLINK_ReadMemEx(0x0202F848, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F848) - Data: 00 00 00 00  returns 0x04 (0001ms, 2119ms total)
T50BC 080:160 JLINK_ReadMemEx(0x0202F84C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F84C) - Data: 00 00 00 00  returns 0x04 (0001ms, 2120ms total)
T50BC 080:162 JLINK_ReadMemEx(0x0202F850, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F850) - Data: 01 00 00 00  returns 0x04 (0001ms, 2121ms total)
T50BC 080:163 JLINK_ReadMemEx(0x0202F854, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F854) - Data: 00 00 00 00  returns 0x04 (0001ms, 2122ms total)
T50BC 080:165 JLINK_ReadMemEx(0x0202F858, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F858) - Data: 02 00 00 00  returns 0x04 (0001ms, 2123ms total)
T50BC 080:166 JLINK_ReadMemEx(0x0202F85C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F85C) - Data: 00 00 00 00  returns 0x04 (0001ms, 2124ms total)
T50BC 080:167 JLINK_ReadMemEx(0x0202F860, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F860) - Data: 01 00 00 00  returns 0x04 (0001ms, 2125ms total)
T50BC 080:168 JLINK_ReadMemEx(0x0202F864, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F864) - Data: 00 00 00 50  returns 0x04 (0001ms, 2126ms total)
T50BC 080:170 JLINK_ReadMemEx(0x0202F868, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F868) - Data: 06 00 00 00  returns 0x04 (0001ms, 2127ms total)
T50BC 080:171 JLINK_ReadMemEx(0x0202F86C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F86C) - Data: 00 00 00 00  returns 0x04 (0001ms, 2128ms total)
T50BC 080:173 JLINK_ReadMemEx(0x0202F870, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F870) - Data: 00 00 00 00  returns 0x04 (0001ms, 2129ms total)
T50BC 080:174 JLINK_ReadMemEx(0x0202F874, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F874) - Data: 00 00 00 00  returns 0x04 (0001ms, 2130ms total)
T50BC 080:175 JLINK_ReadMemEx(0x0202F878, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F878) - Data: 00 00 00 00  returns 0x04 (0001ms, 2131ms total)
T50BC 080:176 JLINK_ReadMemEx(0x0202F87C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F87C) - Data: 00 00 00 00  returns 0x04 (0001ms, 2132ms total)
T50BC 080:178 JLINK_ReadMemEx(0x0202F880, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F880) - Data: 00 00 00 00  returns 0x04 (0001ms, 2133ms total)
T50BC 080:179 JLINK_ReadMemEx(0x0202F884, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F884) - Data: 00 00 00 00  returns 0x04 (0000ms, 2133ms total)
T50BC 080:180 JLINK_ReadMemEx(0x0202F888, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F888) - Data: 00 00 00 00  returns 0x04 (0001ms, 2134ms total)
T50BC 080:181 JLINK_ReadMemEx(0x0202F88C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F88C) - Data: 00 00 00 00  returns 0x04 (0001ms, 2135ms total)
T50BC 080:183 JLINK_ReadMemEx(0x0202F890, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F890) - Data: 00 00 00 00  returns 0x04 (0001ms, 2136ms total)
T50BC 080:184 JLINK_ReadMemEx(0x0202F894, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F894) - Data: 00 00 00 00  returns 0x04 (0000ms, 2136ms total)
T50BC 080:185 JLINK_ReadMemEx(0x0202F898, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F898) - Data: 00 00 00 00  returns 0x04 (0001ms, 2137ms total)
T50BC 080:186 JLINK_ReadMemEx(0x0202F89C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F89C) - Data: 00 00 00 00  returns 0x04 (0001ms, 2138ms total)
T50BC 080:188 JLINK_ReadMemEx(0x0202F8A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F8A0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2139ms total)
T50BC 080:189 JLINK_ReadMemEx(0x0202F8A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F8A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2140ms total)
T50BC 080:191 JLINK_ReadMemEx(0x0202F8A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F8A8) - Data: 00 00 00 00  returns 0x04 (0000ms, 2140ms total)
T50BC 080:192 JLINK_ReadMemEx(0x0202F8AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F8AC) - Data: 00 70 01 40  returns 0x04 (0000ms, 2141ms total)
T50BC 080:193 JLINK_ReadMemEx(0x0202F8B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F8B0) - Data: 13 00 00 00  returns 0x04 (0001ms, 2143ms total)
T50BC 080:194 JLINK_ReadMemEx(0x0202F8B4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F8B4) - Data: 00 00 00 00  returns 0x04 (0002ms, 2145ms total)
T50BC 080:197 JLINK_ReadMemEx(0x0202F8B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F8B8) - Data: 00 00 00 00  returns 0x04 (0001ms, 2146ms total)
T50BC 080:198 JLINK_ReadMemEx(0x0202F8BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F8BC) - Data: 20 70 01 40  returns 0x04 (0001ms, 2147ms total)
T50BC 080:199 JLINK_ReadMemEx(0x0202F8C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F8C0) - Data: 14 00 00 00  returns 0x04 (0001ms, 2148ms total)
T50BC 080:200 JLINK_ReadMemEx(0x0202F8C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F8C4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2149ms total)
T50BC 080:202 JLINK_ReadMemEx(0x0202F8C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F8C8) - Data: 00 00 00 00  returns 0x04 (0001ms, 2150ms total)
T50BC 080:203 JLINK_ReadMemEx(0x0202F8CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F8CC) - Data: 00 B0 00 50  returns 0x04 (0001ms, 2151ms total)
T50BC 080:205 JLINK_ReadMemEx(0x0202F8D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F8D0) - Data: 0B 00 00 00  returns 0x04 (0001ms, 2152ms total)
T50BC 080:206 JLINK_ReadMemEx(0x0202F8D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F8D4) - Data: 02 00 00 00  returns 0x04 (0001ms, 2153ms total)
T50BC 080:207 JLINK_ReadMemEx(0x0202F8D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F8D8) - Data: 03 00 00 00  returns 0x04 (0001ms, 2154ms total)
T50BC 080:208 JLINK_ReadMemEx(0x0202F8DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F8DC) - Data: 00 00 00 00  returns 0x04 (0001ms, 2155ms total)
T50BC 080:210 JLINK_ReadMemEx(0x0202F8E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F8E0) - Data: 0C D0 02 02  returns 0x04 (0001ms, 2156ms total)
T50BC 080:211 JLINK_ReadMemEx(0x0202F8E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F8E4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2157ms total)
T50BC 080:212 JLINK_ReadMemEx(0x0202F8E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F8E8) - Data: 00 00 00 00  returns 0x04 (0001ms, 2158ms total)
T50BC 080:213 JLINK_ReadMemEx(0x0202F8EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F8EC) - Data: 00 00 00 00  returns 0x04 (0001ms, 2159ms total)
T50BC 080:215 JLINK_ReadMemEx(0x0202F8F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F8F0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2160ms total)
T50BC 080:216 JLINK_ReadMemEx(0x0202F8F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F8F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2161ms total)
T50BC 080:218 JLINK_ReadMemEx(0x0202F8F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F8F8) - Data: 00 00 00 00  returns 0x04 (0001ms, 2162ms total)
T50BC 080:219 JLINK_ReadMemEx(0x0202F8FC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F8FC) - Data: 00 00 00 00  returns 0x04 (0001ms, 2163ms total)
T50BC 080:222 JLINK_ReadMemEx(0x0202F900, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F900) - Data: 00 00 00 00  returns 0x04 (0001ms, 2164ms total)
T50BC 080:223 JLINK_ReadMemEx(0x0202F904, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F904) - Data: 00 00 00 00  returns 0x04 (0001ms, 2165ms total)
T50BC 080:224 JLINK_ReadMemEx(0x0202F908, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F908) - Data: 00 00 00 00  returns 0x04 (0001ms, 2166ms total)
T50BC 080:225 JLINK_ReadMemEx(0x0202F90C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F90C) - Data: 00 00 00 00  returns 0x04 (0001ms, 2167ms total)
T50BC 080:226 JLINK_ReadMemEx(0x0202F910, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F910) - Data: 00 00 00 00  returns 0x04 (0001ms, 2168ms total)
T50BC 080:227 JLINK_ReadMemEx(0x0202F914, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F914) - Data: 00 00 00 00  returns 0x04 (0002ms, 2170ms total)
T50BC 080:229 JLINK_ReadMemEx(0x0202F918, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F918) - Data: 00 00 00 00  returns 0x04 (0001ms, 2171ms total)
T50BC 080:230 JLINK_ReadMemEx(0x0202F91C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F91C) - Data: 00 00 00 00  returns 0x04 (0001ms, 2172ms total)
T50BC 080:232 JLINK_ReadMemEx(0x0202F920, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F920) - Data: 00 00 00 00  returns 0x04 (0001ms, 2173ms total)
T50BC 080:233 JLINK_ReadMemEx(0x0202F924, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F924) - Data: 00 00 00 00  returns 0x04 (0001ms, 2174ms total)
T50BC 080:235 JLINK_ReadMemEx(0x0202F928, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F928) - Data: 00 00 00 00  returns 0x04 (0001ms, 2175ms total)
T50BC 080:236 JLINK_ReadMemEx(0x0202F92C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F92C) - Data: 00 00 00 00  returns 0x04 (0001ms, 2176ms total)
T50BC 080:237 JLINK_ReadMemEx(0x0202F930, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F930) - Data: 00 00 00 00  returns 0x04 (0001ms, 2177ms total)
T50BC 080:238 JLINK_ReadMemEx(0x0202F934, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F934) - Data: 00 00 00 00  returns 0x04 (0001ms, 2178ms total)
T50BC 080:240 JLINK_ReadMemEx(0x0202F938, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F938) - Data: 00 20 00 50  returns 0x04 (0001ms, 2179ms total)
T50BC 080:241 JLINK_ReadMemEx(0x0202F93C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F93C) - Data: 07 00 00 00  returns 0x04 (0001ms, 2180ms total)
T50BC 080:243 JLINK_ReadMemEx(0x0202F940, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F940) - Data: 00 00 00 00  returns 0x04 (0000ms, 2180ms total)
T50BC 080:244 JLINK_ReadMemEx(0x0202F944, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F944) - Data: 00 00 00 00  returns 0x04 (0000ms, 2180ms total)
T50BC 080:245 JLINK_ReadMemEx(0x0202F948, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F948) - Data: 00 00 00 00  returns 0x04 (0001ms, 2181ms total)
T50BC 080:246 JLINK_ReadMemEx(0x0202F94C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F94C) - Data: 00 00 00 00  returns 0x04 (0001ms, 2182ms total)
T50BC 080:248 JLINK_ReadMemEx(0x0202F950, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F950) - Data: 00 00 00 00  returns 0x04 (0001ms, 2183ms total)
T50BC 080:249 JLINK_ReadMemEx(0x0202F954, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F954) - Data: 00 00 00 00  returns 0x04 (0001ms, 2184ms total)
T50BC 080:250 JLINK_ReadMemEx(0x0202F958, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F958) - Data: 00 00 00 00  returns 0x04 (0001ms, 2185ms total)
T50BC 080:251 JLINK_ReadMemEx(0x0202F95C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F95C) - Data: 00 00 00 00  returns 0x04 (0001ms, 2186ms total)
T50BC 080:253 JLINK_ReadMemEx(0x0202F960, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F960) - Data: 00 00 00 00  returns 0x04 (0001ms, 2187ms total)
T50BC 080:254 JLINK_ReadMemEx(0x0202F964, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F964) - Data: 00 00 00 00  returns 0x04 (0001ms, 2188ms total)
T50BC 080:255 JLINK_ReadMemEx(0x0202F968, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F968) - Data: 00 00 00 00  returns 0x04 (0002ms, 2190ms total)
T50BC 080:257 JLINK_ReadMemEx(0x0202F96C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F96C) - Data: 00 00 00 00  returns 0x04 (0001ms, 2191ms total)
T50BC 080:259 JLINK_ReadMemEx(0x0202F970, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F970) - Data: 00 00 00 00  returns 0x04 (0001ms, 2192ms total)
T50BC 080:260 JLINK_ReadMemEx(0x0202F974, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F974) - Data: 00 00 00 00  returns 0x04 (0001ms, 2193ms total)
T50BC 080:262 JLINK_ReadMemEx(0x0202F978, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F978) - Data: 00 00 00 00  returns 0x04 (0001ms, 2194ms total)
T50BC 080:263 JLINK_ReadMemEx(0x0202F97C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F97C) - Data: 00 00 00 00  returns 0x04 (0001ms, 2195ms total)
T50BC 080:264 JLINK_ReadMemEx(0x0202F980, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F980) - Data: 00 00 00 00  returns 0x04 (0001ms, 2196ms total)
T50BC 080:265 JLINK_ReadMemEx(0x0202F984, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F984) - Data: 00 00 00 00  returns 0x04 (0001ms, 2197ms total)
T50BC 080:267 JLINK_ReadMemEx(0x0202F988, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F988) - Data: 00 00 00 00  returns 0x04 (0001ms, 2198ms total)
T50BC 080:268 JLINK_ReadMemEx(0x0202F98C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F98C) - Data: 00 20 01 40  returns 0x04 (0001ms, 2199ms total)
T50BC 080:269 JLINK_ReadMemEx(0x0202F990, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F990) - Data: 15 00 00 00  returns 0x04 (0002ms, 2201ms total)
T50BC 080:271 JLINK_ReadMemEx(0x0202F994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F994) - Data: 00 00 00 00  returns 0x04 (0000ms, 2201ms total)
T50BC 080:272 JLINK_ReadMemEx(0x0202F998, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F998) - Data: 00 00 00 00  returns 0x04 (0001ms, 2202ms total)
T50BC 080:273 JLINK_ReadMemEx(0x0202F99C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F99C) - Data: 00 00 00 00  returns 0x04 (0001ms, 2203ms total)
T50BC 080:275 JLINK_ReadMemEx(0x0202F9A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F9A0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2204ms total)
T50BC 080:276 JLINK_ReadMemEx(0x0202F9A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F9A4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2205ms total)
T50BC 080:278 JLINK_ReadMemEx(0x0202F9A8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F9A8) - Data: 00 00 00 00  returns 0x04 (0001ms, 2206ms total)
T50BC 080:279 JLINK_ReadMemEx(0x0202F9AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F9AC) - Data: 00 00 00 00  returns 0x04 (0001ms, 2207ms total)
T50BC 080:280 JLINK_ReadMemEx(0x0202F9B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F9B0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2208ms total)
T50BC 080:281 JLINK_ReadMemEx(0x0202F9B4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F9B4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2209ms total)
T50BC 080:283 JLINK_ReadMemEx(0x0202F9B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F9B8) - Data: 00 00 00 00  returns 0x04 (0001ms, 2210ms total)
T50BC 080:284 JLINK_ReadMemEx(0x0202F9BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F9BC) - Data: 01 00 00 00  returns 0x04 (0001ms, 2211ms total)
T50BC 080:286 JLINK_ReadMemEx(0x0202F9C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F9C0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2212ms total)
T50BC 080:287 JLINK_ReadMemEx(0x0202F9C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F9C4) - Data: 01 00 00 00  returns 0x04 (0001ms, 2213ms total)
T50BC 080:289 JLINK_ReadMemEx(0x0202F9C8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F9C8) - Data: FF FF FF FF  returns 0x04 (0001ms, 2214ms total)
T50BC 080:290 JLINK_ReadMemEx(0x0202F9CC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F9CC) - Data: 01 00 00 00  returns 0x04 (0001ms, 2215ms total)
T50BC 080:291 JLINK_ReadMemEx(0x0202F9D0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F9D0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2216ms total)
T50BC 080:292 JLINK_ReadMemEx(0x0202F9D4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F9D4) - Data: 01 02 01 00  returns 0x04 (0001ms, 2217ms total)
T50BC 080:294 JLINK_ReadMemEx(0x0202F9D8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F9D8) - Data: FF FF FF FF  returns 0x04 (0002ms, 2219ms total)
T50BC 080:296 JLINK_ReadMemEx(0x0202F9DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F9DC) - Data: 00 00 00 00  returns 0x04 (0000ms, 2219ms total)
T50BC 080:297 JLINK_ReadMemEx(0x0202F9E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F9E0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2220ms total)
T50BC 080:298 JLINK_ReadMemEx(0x0202F9E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F9E4) - Data: 00 09 02 03  returns 0x04 (0001ms, 2221ms total)
T50BC 080:300 JLINK_ReadMemEx(0x0202F9E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F9E8) - Data: 01 00 00 00  returns 0x04 (0001ms, 2222ms total)
T50BC 080:301 JLINK_ReadMemEx(0x0202F9EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F9EC) - Data: 00 00 02 00  returns 0x04 (0001ms, 2223ms total)
T50BC 080:302 JLINK_ReadMemEx(0x0202F9F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F9F0) - Data: 00 00 14 00  returns 0x04 (0001ms, 2224ms total)
T50BC 080:303 JLINK_ReadMemEx(0x0202F9F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F9F4) - Data: 19 41 27 17  returns 0x04 (0001ms, 2225ms total)
T50BC 080:304 JLINK_ReadMemEx(0x0202F9F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F9F8) - Data: 00 00 00 00  returns 0x04 (0002ms, 2227ms total)
T50BC 080:306 JLINK_ReadMemEx(0x0202F9FC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F9FC) - Data: 07 06 05 04  returns 0x04 (0001ms, 2228ms total)
T50BC 080:308 JLINK_ReadMemEx(0x0202FA00, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FA00) - Data: 03 02 01 00  returns 0x04 (0001ms, 2229ms total)
T50BC 080:309 JLINK_ReadMemEx(0x0202FA04, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FA04) - Data: F2 97 98 DD  returns 0x04 (0000ms, 2229ms total)
T50BC 080:310 JLINK_ReadMemEx(0x0202FA08, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FA08) - Data: C8 9D 5C B8  returns 0x04 (0001ms, 2230ms total)
T50BC 080:311 JLINK_ReadMemEx(0x0202FA0C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FA0C) - Data: 1C C0 DE A7  returns 0x04 (0000ms, 2230ms total)
T50BC 080:313 JLINK_ReadMemEx(0x0202FA10, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FA10) - Data: DB 61 5B CA  returns 0x04 (0001ms, 2231ms total)
T50BC 080:314 JLINK_ReadMemEx(0x0202FA14, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FA14) - Data: 01 02 00 03  returns 0x04 (0001ms, 2232ms total)
T50BC 080:316 JLINK_ReadMemEx(0x0202FA18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FA18) - Data: 00 00 00 00  returns 0x04 (0001ms, 2233ms total)
T50BC 080:317 JLINK_ReadMemEx(0x0202FA1C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FA1C) - Data: 00 00 00 00  returns 0x04 (0001ms, 2234ms total)
T50BC 080:318 JLINK_ReadMemEx(0x0202FA20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FA20) - Data: 30 00 00 00  returns 0x04 (0001ms, 2235ms total)
T50BC 080:319 JLINK_ReadMemEx(0x0202FA24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FA24) - Data: 00 05 10 06  returns 0x04 (0001ms, 2236ms total)
T50BC 080:321 JLINK_ReadMemEx(0x0202FA28, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FA28) - Data: 06 00 00 02  returns 0x04 (0001ms, 2237ms total)
T50BC 080:322 JLINK_ReadMemEx(0x0202FA2C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FA2C) - Data: FF 05 ED 49  returns 0x04 (0001ms, 2238ms total)
T50BC 080:324 JLINK_ReadMemEx(0x0202FA30, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FA30) - Data: ED 05 FF 00  returns 0x04 (0001ms, 2239ms total)
T50BC 080:325 JLINK_ReadMemEx(0x0202FA34, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FA34) - Data: 14 00 04 00  returns 0x04 (0001ms, 2240ms total)
T50BC 080:326 JLINK_ReadMemEx(0x0202FA38, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FA38) - Data: 7C 00 7B 01  returns 0x04 (0001ms, 2241ms total)
T50BC 080:327 JLINK_ReadMemEx(0x0202FA3C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FA3C) - Data: 05 02 03 00  returns 0x04 (0001ms, 2242ms total)
T50BC 080:329 JLINK_ReadMemEx(0x0202FA40, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FA40) - Data: 5B 0F 01 00  returns 0x04 (0001ms, 2243ms total)
T50BC 080:330 JLINK_ReadMemEx(0x0202FA44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FA44) - Data: 65 F9 00 00  returns 0x04 (0001ms, 2244ms total)
T50BC 080:331 JLINK_ReadMemEx(0x0202FA48, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FA48) - Data: 00 00 00 00  returns 0x04 (0001ms, 2245ms total)
T50BC 080:332 JLINK_ReadMemEx(0x0202FA4C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FA4C) - Data: 00 00 00 00  returns 0x04 (0001ms, 2246ms total)
T50BC 080:334 JLINK_ReadMemEx(0x0202FA50, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FA50) - Data: 00 00 00 00  returns 0x04 (0001ms, 2247ms total)
T50BC 080:335 JLINK_ReadMemEx(0x0202FA54, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FA54) - Data: 00 00 00 00  returns 0x04 (0001ms, 2248ms total)
T50BC 080:337 JLINK_ReadMemEx(0x0202FA58, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FA58) - Data: 00 00 00 00  returns 0x04 (0001ms, 2249ms total)
T50BC 080:338 JLINK_ReadMemEx(0x0202FA5C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FA5C) - Data: 00 00 00 00  returns 0x04 (0001ms, 2250ms total)
T50BC 080:339 JLINK_ReadMemEx(0x0202FA60, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FA60) - Data: 00 00 00 00  returns 0x04 (0001ms, 2251ms total)
T50BC 080:340 JLINK_ReadMemEx(0x0202FA64, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FA64) - Data: 00 00 00 00  returns 0x04 (0001ms, 2252ms total)
T50BC 080:342 JLINK_ReadMemEx(0x0202FA68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FA68) - Data: 00 00 00 00  returns 0x04 (0001ms, 2253ms total)
T50BC 080:343 JLINK_ReadMemEx(0x0202FA6C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FA6C) - Data: 00 00 00 00  returns 0x04 (0001ms, 2254ms total)
T50BC 080:345 JLINK_ReadMemEx(0x0202FA70, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FA70) - Data: 00 00 00 00  returns 0x04 (0001ms, 2255ms total)
T50BC 080:346 JLINK_ReadMemEx(0x0202FA74, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FA74) - Data: 00 00 00 00  returns 0x04 (0001ms, 2256ms total)
T50BC 080:348 JLINK_ReadMemEx(0x0202FA78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FA78) - Data: 00 00 00 00  returns 0x04 (0000ms, 2256ms total)
T50BC 080:348 JLINK_ReadMemEx(0x0202FA7C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FA7C) - Data: 00 00 00 00  returns 0x04 (0001ms, 2257ms total)
T50BC 080:350 JLINK_ReadMemEx(0x0202FA80, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FA80) - Data: 00 00 00 00  returns 0x04 (0001ms, 2258ms total)
T50BC 080:351 JLINK_ReadMemEx(0x0202FA84, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FA84) - Data: 00 00 00 00  returns 0x04 (0001ms, 2259ms total)
T50BC 080:353 JLINK_ReadMemEx(0x0202FA88, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FA88) - Data: 00 00 00 00  returns 0x04 (0001ms, 2260ms total)
T50BC 080:354 JLINK_ReadMemEx(0x0202FA8C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FA8C) - Data: 00 00 00 00  returns 0x04 (0002ms, 2262ms total)
T50BC 080:356 JLINK_ReadMemEx(0x0202FA90, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FA90) - Data: 00 00 00 00  returns 0x04 (0001ms, 2263ms total)
T50BC 080:357 JLINK_ReadMemEx(0x0202FA94, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FA94) - Data: 00 00 00 00  returns 0x04 (0001ms, 2264ms total)
T50BC 080:358 JLINK_ReadMemEx(0x0202FA98, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FA98) - Data: 00 00 00 00  returns 0x04 (0001ms, 2265ms total)
T50BC 080:359 JLINK_ReadMemEx(0x0202FA9C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FA9C) - Data: 00 00 00 00  returns 0x04 (0003ms, 2268ms total)
T50BC 080:363 JLINK_ReadMemEx(0x0202FAA0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FAA0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2269ms total)
T50BC 080:364 JLINK_ReadMemEx(0x0202FAA4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FAA4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2270ms total)
T50BC 080:366 JLINK_ReadMemEx(0x0202FAA8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FAA8) - Data: 00 00 00 00  returns 0x04 (0001ms, 2271ms total)
T50BC 080:367 JLINK_ReadMemEx(0x0202FAAC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FAAC) - Data: 00 00 00 00  returns 0x04 (0001ms, 2272ms total)
T50BC 080:368 JLINK_ReadMemEx(0x0202FAB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FAB0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2273ms total)
T50BC 080:369 JLINK_ReadMemEx(0x0202FAB4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FAB4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2274ms total)
T50BC 080:371 JLINK_ReadMemEx(0x0202FAB8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FAB8) - Data: 00 00 00 00  returns 0x04 (0001ms, 2275ms total)
T50BC 080:372 JLINK_ReadMemEx(0x0202FABC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FABC) - Data: 00 00 00 00  returns 0x04 (0001ms, 2276ms total)
T50BC 080:374 JLINK_ReadMemEx(0x0202FAC0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FAC0) - Data: 00 00 00 00  returns 0x04 (0000ms, 2276ms total)
T50BC 080:374 JLINK_ReadMemEx(0x0202FAC4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FAC4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2277ms total)
T50BC 080:376 JLINK_ReadMemEx(0x0202FAC8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FAC8) - Data: 00 00 00 00  returns 0x04 (0001ms, 2278ms total)
T50BC 080:377 JLINK_ReadMemEx(0x0202FACC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FACC) - Data: 00 00 00 00  returns 0x04 (0001ms, 2279ms total)
T50BC 080:379 JLINK_ReadMemEx(0x0202FAD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FAD0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2280ms total)
T50BC 080:380 JLINK_ReadMemEx(0x0202FAD4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FAD4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2281ms total)
T50BC 080:382 JLINK_ReadMemEx(0x0202FAD8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FAD8) - Data: 00 00 00 00  returns 0x04 (0001ms, 2282ms total)
T50BC 080:383 JLINK_ReadMemEx(0x0202FADC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FADC) - Data: 00 00 00 00  returns 0x04 (0000ms, 2282ms total)
T50BC 080:384 JLINK_ReadMemEx(0x0202FAE0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FAE0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2283ms total)
T50BC 080:385 JLINK_ReadMemEx(0x0202FAE4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FAE4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2284ms total)
T50BC 080:386 JLINK_ReadMemEx(0x0202FAE8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FAE8) - Data: 00 00 00 00  returns 0x04 (0002ms, 2286ms total)
T50BC 080:388 JLINK_ReadMemEx(0x0202FAEC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FAEC) - Data: 00 00 00 00  returns 0x04 (0001ms, 2287ms total)
T50BC 080:390 JLINK_ReadMemEx(0x0202FAF0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FAF0) - Data: 00 00 00 00  returns 0x04 (0001ms, 2288ms total)
T50BC 080:391 JLINK_ReadMemEx(0x0202FAF4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FAF4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2289ms total)
T50BC 080:393 JLINK_ReadMemEx(0x0202FAF8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FAF8) - Data: 00 00 00 00  returns 0x04 (0001ms, 2290ms total)
T50BC 080:394 JLINK_ReadMemEx(0x0202FAFC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FAFC) - Data: 00 00 00 00  returns 0x04 (0001ms, 2291ms total)
T50BC 080:395 JLINK_ReadMemEx(0x0202FB00, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FB00) - Data: 00 00 00 00  returns 0x04 (0001ms, 2292ms total)
T50BC 080:396 JLINK_ReadMemEx(0x0202FB04, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FB04) - Data: 00 00 00 00  returns 0x04 (0001ms, 2293ms total)
T50BC 080:398 JLINK_ReadMemEx(0x0202FB08, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FB08) - Data: 00 00 00 00  returns 0x04 (0001ms, 2294ms total)
T50BC 080:399 JLINK_ReadMemEx(0x0202FB0C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FB0C) - Data: 00 00 00 00  returns 0x04 (0001ms, 2295ms total)
T50BC 080:401 JLINK_ReadMemEx(0x0202FB10, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FB10) - Data: 00 00 00 00  returns 0x04 (0000ms, 2295ms total)
T50BC 080:402 JLINK_ReadMemEx(0x0202FB14, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FB14) - Data: 00 00 00 00  returns 0x04 (0001ms, 2297ms total)
T50BC 080:403 JLINK_ReadMemEx(0x0202FB18, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FB18) - Data: 00 00 00 00  returns 0x04 (0001ms, 2298ms total)
T50BC 080:404 JLINK_ReadMemEx(0x0202FB1C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FB1C) - Data: 00 00 00 00  returns 0x04 (0001ms, 2299ms total)
T50BC 080:406 JLINK_ReadMemEx(0x0202FB20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FB20) - Data: 00 00 00 00  returns 0x04 (0001ms, 2300ms total)
T50BC 080:407 JLINK_ReadMemEx(0x0202FB24, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FB24) - Data: 00 00 00 00  returns 0x04 (0001ms, 2301ms total)
T50BC 080:409 JLINK_ReadMemEx(0x0202FB28, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FB28) - Data: 00 00 00 00  returns 0x04 (0000ms, 2301ms total)
T50BC 080:409 JLINK_ReadMemEx(0x0202FB2C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FB2C) - Data: 00 00 00 00  returns 0x04 (0001ms, 2302ms total)
T50BC 080:411 JLINK_ReadMemEx(0x0202FB30, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FB30) - Data: 00 00 00 00  returns 0x04 (0001ms, 2303ms total)
T50BC 080:412 JLINK_ReadMemEx(0x0202FB34, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FB34) - Data: 00 00 00 00  returns 0x04 (0001ms, 2304ms total)
T50BC 080:413 JLINK_ReadMemEx(0x0202FB38, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FB38) - Data: 00 00 00 00  returns 0x04 (0002ms, 2306ms total)
T50BC 080:415 JLINK_ReadMemEx(0x0202FB3C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FB3C) - Data: 00 00 00 00  returns 0x04 (0001ms, 2307ms total)
T50BC 080:416 JLINK_ReadMemEx(0x0202FB40, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FB40) - Data: 00 00 00 00  returns 0x04 (0001ms, 2308ms total)
T50BC 080:417 JLINK_ReadMemEx(0x0202FB44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FB44) - Data: 00 00 00 00  returns 0x04 (0001ms, 2309ms total)
T50BC 080:420 JLINK_ReadMemEx(0x0202FB48, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FB48) - Data: 01 01 01 00  returns 0x04 (0001ms, 2310ms total)
T50BC 080:421 JLINK_ReadMemEx(0x0202FB4C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FB4C) - Data: 60 00 20 00  returns 0x04 (0001ms, 2311ms total)
T50BC 080:422 JLINK_ReadMemEx(0x0202FB50, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FB50) - Data: 88 13 00 00  returns 0x04 (0001ms, 2312ms total)
T50BC 080:423 JLINK_ReadMemEx(0x0202FB54, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FB54) - Data: 00 00 00 00  returns 0x04 (0001ms, 2313ms total)
T50BC 080:425 JLINK_ReadMemEx(0x0202FB58, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FB58) - Data: E0 53 00 00  returns 0x04 (0001ms, 2314ms total)
T50BC 080:426 JLINK_ReadMemEx(0x0202FB5C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FB5C) - Data: 20 AC FF 00  returns 0x04 (0001ms, 2315ms total)
T50BC 080:428 JLINK_ReadMemEx(0x0202FB60, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FB60) - Data: 00 00 00 00  returns 0x04 (0001ms, 2316ms total)
T50BC 080:429 JLINK_ReadMemEx(0x0202FB64, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FB64) - Data: 0D 07 0E 08  returns 0x04 (0001ms, 2317ms total)
T50BC 080:431 JLINK_ReadMemEx(0x0202FB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FB68) - Data: 0E 08 0E 08  returns 0x04 (0001ms, 2318ms total)
T50BC 080:432 JLINK_ReadMemEx(0x0202FB6C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FB6C) - Data: 0E 08 0C 03  returns 0x04 (0000ms, 2318ms total)
T50BC 080:433 JLINK_ReadMemEx(0x0202FB70, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FB70) - Data: 0D 05 0B 05  returns 0x04 (0001ms, 2319ms total)
T50BC 080:434 JLINK_ReadMemEx(0x0202FB74, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FB74) - Data: 0D 07 0D 07  returns 0x04 (0000ms, 2319ms total)
T50BC 080:436 JLINK_ReadMemEx(0x0202FB78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FB78) - Data: 0D 07 0D 07  returns 0x04 (0001ms, 2320ms total)
T50BC 080:437 JLINK_ReadMemEx(0x0202FB7C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202FB7C) - Data: 01 01 00 00  returns 0x04 (0001ms, 2321ms total)
T50BC 080:442 JLINK_ReadMemEx(0x02026B40, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x02026B40) -- Updating C cache (64 bytes @ 0x02026B40) -- Read from C cache (4 bytes @ 0x02026B40) - Data: 7B 69 0F 00  returns 0x04 (0002ms, 2323ms total)
T50BC 080:474 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x02026E00) -- Updating C cache (64 bytes @ 0x02026E00) -- Read from C cache (4 bytes @ 0x02026E20) - Data: CD 18 0E 00  returns 0x04 (0002ms, 2325ms total)
T50BC 080:478 JLINK_ReadMemEx(0x020276F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x020276C0) -- Updating C cache (64 bytes @ 0x020276C0) -- Read from C cache (4 bytes @ 0x020276F0) - Data: 50 C3 00 00  returns 0x04 (0002ms, 2327ms total)
T50BC 080:481 JLINK_ReadMemEx(0x0202634F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x02026340) -- Updating C cache (64 bytes @ 0x02026340) -- Read from C cache (1 bytes @ 0x0202634F) - Data: 01  returns 0x01 (0001ms, 2328ms total)
T50BC 080:482 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x02027640) -- Updating C cache (64 bytes @ 0x02027640) -- Read from C cache (1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0002ms, 2330ms total)
T50BC 080:484 JLINK_ReadMemEx(0x020274DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x020274C0) -- Updating C cache (64 bytes @ 0x020274C0) -- Read from C cache (1 bytes @ 0x020274DD) - Data: 00  returns 0x01 (0001ms, 2331ms total)
T50BC 080:486 JLINK_ReadMemEx(0x02026E10, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026E10) - Data: 34 12 00 00  returns 0x04 (0000ms, 2331ms total)
T50BC 080:487 JLINK_ReadMemEx(0x02028444, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028444) - Data: FB 66 11 00  returns 0x04 (0001ms, 2333ms total)
T50BC 080:488 JLINK_ReadMemEx(0x02028440, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028440) - Data: 59 68 11 00  returns 0x04 (0002ms, 2335ms total)
T50BC 080:491 JLINK_ReadMemEx(0x02028448, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028448) - Data: E5 74 0F 00  returns 0x04 (0001ms, 2336ms total)
T50BC 080:492 JLINK_ReadMemEx(0x02028454, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028454) - Data: 01 00 00 00  returns 0x04 (0001ms, 2337ms total)
T50BC 080:494 JLINK_ReadMemEx(0x0202844C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202844C) - Data: E3 5E 0C 00  returns 0x04 (0000ms, 2337ms total)
T50BC 080:495 JLINK_ReadMemEx(0x02026E18, 0x0008 Bytes, ..., Flags = 0x02000000) -- Read from C cache (8 bytes @ 0x02026E18) - Data: 22 68 63 B1 82 83 06 40  returns 0x08 (0000ms, 2337ms total)
T50BC 080:495 JLINK_ReadMemEx(0x02027660, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x02027660) - Data: 00  returns 0x01 (0000ms, 2337ms total)
T50BC 080:495 JLINK_ReadMemEx(0x02026E20, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026E20) - Data: CD 18 0E 00  returns 0x04 (0000ms, 2337ms total)
T50BC 080:496 JLINK_ReadMemEx(0x020277F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x020277C0) -- Updating C cache (64 bytes @ 0x020277C0) -- Read from C cache (4 bytes @ 0x020277F0) - Data: 7D 55 0D 00  returns 0x04 (0002ms, 2339ms total)
T50BC 080:499 JLINK_ReadMemEx(0x020276F8, 0x0008 Bytes, ..., Flags = 0x02000000) -- Read from C cache (8 bytes @ 0x020276F8) - Data: BD C0 79 16 00 00 00 00  returns 0x08 (0000ms, 2339ms total)
T50BC 080:499 JLINK_ReadMemEx(0x02027730, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x02027700) -- Updating C cache (64 bytes @ 0x02027700) -- Read from C cache (8 bytes @ 0x02027730) - Data: 18 9E 57 19 00 00 00 00  returns 0x08 (0002ms, 2341ms total)
T50BC 080:502 JLINK_ReadMemEx(0x02028C90, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C90) - Data: 72 DD DD 02 00 00 00 00  returns 0x08 (0001ms, 2342ms total)
T50BC 080:503 JLINK_ReadMemEx(0x02028C88, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028C88) - Data: 65 DD DD 02 00 00 00 00  returns 0x08 (0001ms, 2343ms total)
T50BC 080:504 JLINK_ReadMemEx(0x02028460, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02028460) - Data: 9E D8 89 9D D8 09 B8 3F  returns 0x08 (0000ms, 2343ms total)
T50BC 080:504 JLINK_ReadMemEx(0x02028468, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02028468) - Data: 06 00 00 00  returns 0x04 (0002ms, 2345ms total)
T50BC 080:507 JLINK_ReadMemEx(0x0202707C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x02027040) -- Updating C cache (64 bytes @ 0x02027040) -- Read from C cache (4 bytes @ 0x0202707C) - Data: 71 EF FF FF  returns 0x04 (0001ms, 2346ms total)
T50BC 080:509 JLINK_ReadMemEx(0x02027080, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x02027080) -- Updating C cache (64 bytes @ 0x02027080) -- Read from C cache (4 bytes @ 0x02027080) - Data: 9B F0 FF FF  returns 0x04 (0002ms, 2348ms total)
T50BC 080:514 JLINK_ReadMemEx(0x000001A2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00000180) -- Updating C cache (64 bytes @ 0x00000180) -- Read from C cache (2 bytes @ 0x000001A2) - Data: FB D2  returns 0x02 (0001ms, 2349ms total)
T50BC 080:515 JLINK_ReadMemEx(0x000001A4, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x000001C0) -- Updating C cache (64 bytes @ 0x000001C0) -- Read from C cache (60 bytes @ 0x000001A4) - Data: 70 47 00 22 F6 E7 10 B5 13 46 0A 46 04 46 19 46 ...  returns 0x3C (0002ms, 2351ms total)
T50BC 080:517 JLINK_ReadMemEx(0x000001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000001A4) - Data: 70 47  returns 0x02 (0000ms, 2351ms total)
T50BC 080:517 JLINK_ReadMemEx(0x000001A4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000001A4) - Data: 70 47 00 22 F6 E7 10 B5 13 46 0A 46 04 46 19 46 ...  returns 0x3C (0000ms, 2351ms total)
T50BC 080:517 JLINK_ReadMemEx(0x000001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000001A4) - Data: 70 47  returns 0x02 (0000ms, 2351ms total)
T50BC 080:517 JLINK_ReadMemEx(0x000001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000001A6) - Data: 00 22  returns 0x02 (0000ms, 2351ms total)
T50BC 080:517 JLINK_ReadMemEx(0x000001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000001A6) - Data: 00 22  returns 0x02 (0001ms, 2352ms total)
T50BC 080:518 JLINK_ReadMemEx(0x000001A8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000001A8) - Data: F6 E7 10 B5 13 46 0A 46 04 46 19 46 FF F7 F0 FF ...  returns 0x3C (0000ms, 2352ms total)
T50BC 080:518 JLINK_ReadMemEx(0x000001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000001A8) - Data: F6 E7  returns 0x02 (0000ms, 2352ms total)
T50BC 080:518 JLINK_ReadMemEx(0x000001A8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000001A8) - Data: F6 E7 10 B5 13 46 0A 46 04 46 19 46 FF F7 F0 FF ...  returns 0x3C (0000ms, 2352ms total)
T50BC 080:518 JLINK_ReadMemEx(0x000001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000001A8) - Data: F6 E7  returns 0x02 (0000ms, 2352ms total)
T50BC 080:518 JLINK_ReadMemEx(0x000001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000001AA) - Data: 10 B5  returns 0x02 (0000ms, 2352ms total)
T50BC 080:518 JLINK_ReadMemEx(0x000001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000001AA) - Data: 10 B5  returns 0x02 (0000ms, 2352ms total)
T50BC 080:518 JLINK_ReadMemEx(0x000001AC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000001AC) - Data: 13 46 0A 46 04 46 19 46 FF F7 F0 FF 20 46 10 BD ...  returns 0x3C (0000ms, 2352ms total)
T50BC 080:518 JLINK_ReadMemEx(0x000001AC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000001AC) - Data: 13 46  returns 0x02 (0000ms, 2352ms total)
T50BC 080:518 JLINK_ReadMemEx(0x000001AC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000001AC) - Data: 13 46 0A 46 04 46 19 46 FF F7 F0 FF 20 46 10 BD ...  returns 0x3C (0000ms, 2352ms total)
T50BC 080:518 JLINK_ReadMemEx(0x000001AC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000001AC) - Data: 13 46  returns 0x02 (0000ms, 2352ms total)
T50BC 080:518 JLINK_ReadMemEx(0x000001AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000001AE) - Data: 0A 46  returns 0x02 (0001ms, 2353ms total)
T50BC 080:519 JLINK_ReadMemEx(0x000001AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000001AE) - Data: 0A 46  returns 0x02 (0000ms, 2353ms total)
T50BC 080:519 JLINK_ReadMemEx(0x000001B0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000001B0) - Data: 04 46 19 46 FF F7 F0 FF 20 46 10 BD F8 B5 02 46 ...  returns 0x3C (0000ms, 2353ms total)
T50BC 080:519 JLINK_ReadMemEx(0x000001B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000001B0) - Data: 04 46  returns 0x02 (0000ms, 2353ms total)
T50BC 083:038 JLINK_Close() -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> (0025ms, 2378ms total)
T50BC 083:038  (0025ms, 2378ms total)
T50BC 083:038 Closed (0025ms, 2378ms total)