forked from SZV10X_Software/SZV103_FM33A0xxEV_SiZhu

jinlicong
2024-06-12 f03cf3ae7a36954e64fc014e6bb7afd20c5a5247
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
 
T3214 000:001 SEGGER J-Link V6.48b Log File (0001ms, 0002ms total)
T3214 000:001 DLL Compiled: Aug  2 2019 10:18:25 (0001ms, 0002ms total)
T3214 000:001 Logging started @ 2024-06-12 09:12 (0001ms, 0002ms total)
T3214 000:002 JLINK_SetWarnOutHandler(...) (0000ms, 0002ms total)
T3214 000:002 JLINK_OpenEx(...)
Firmware: J-Link V9 compiled May  7 2021 16:26:12
Hardware: V9.40
S/N: 69400374
Feature(s): RDI, GDB, FlashDL, FlashBP, JFlash
TELNET listener socket opened on port 19021WEBSRV 
Starting webserver (0038ms, 0040ms total)
T3214 000:002 WEBSRV Webserver running on local port 19080 (0038ms, 0040ms total)
T3214 000:002   returns O.K. (0038ms, 0040ms total)
T3214 000:040 JLINK_GetEmuCaps()  returns 0xB9FF7BBF (0000ms, 0040ms total)
T3214 000:040 JLINK_TIF_GetAvailable(...) (0001ms, 0041ms total)
T3214 000:041 JLINK_SetErrorOutHandler(...) (0000ms, 0041ms total)
T3214 000:041 JLINK_ExecCommand("ProjectFile = "E:\GasFlowmeter\Internet_of_things_valve\SZV103\SZV103_FM33A0xxEV_SiZhu\KEIL_MDKARM\JLinkSettings.ini"", ...). Ref file found at: D:\Program Files\MDK5\ARM\Segger\JLinkDevices.ref (0000ms, 0041ms total)
T3214 000:041 XML referenced by ref file: C:\Program Files (x86)\SEGGER\JLink\JLinkDevices.xml (0000ms, 0041ms total)
T3214 000:041 C:\Program Files (x86)\SEGGER\JLink\JLinkDevices.xml evaluated successfully.
  ***** Internal Error: Error in XML device description file: Unknown/Missing core identifier for device "FM33FK54x"Device "CORTEX-M0" selected.  returns 0x00 (1259ms, 1300ms total)
T3214 001:300 JLINK_ExecCommand("Device = FM33A06XEV", ...). Device "FM33A06XEV" selected.  returns 0x00 (0001ms, 1301ms total)
T3214 001:302 JLINK_ExecCommand("DisableConnectionTimeout", ...).   returns 0x01 (0000ms, 1301ms total)
T3214 001:302 JLINK_GetHardwareVersion()  returns 0x16F30 (0000ms, 1301ms total)
T3214 001:302 JLINK_GetDLLVersion()  returns 64802 (0000ms, 1301ms total)
T3214 001:302 JLINK_GetFirmwareString(...) (0000ms, 1301ms total)
T3214 001:302 JLINK_GetDLLVersion()  returns 64802 (0000ms, 1301ms total)
T3214 001:302 JLINK_GetCompileDateTime() (0000ms, 1301ms total)
T3214 001:302 JLINK_GetFirmwareString(...) (0000ms, 1301ms total)
T3214 001:302 JLINK_GetHardwareVersion()  returns 0x16F30 (0000ms, 1301ms total)
T3214 001:302 JLINK_TIF_Select(JLINKARM_TIF_SWD)  returns 0x00 (0002ms, 1303ms total)
T3214 001:304 JLINK_SetSpeed(2000) (0000ms, 1303ms total)
T3214 001:304 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: 0x410CC300. Implementer code: 0x41 (ARM)Unknown core, assuming Cortex-M0Found Cortex-M0 r0p0, Little endian.
 -- Max. mem block: 0x00011028 -- 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: 000BB00D ??? -- 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 (0143ms, 1446ms total)
T3214 001:447 JLINK_GetDLLVersion()  returns 64802 (0000ms, 1446ms total)
T3214 001:447 JLINK_CORE_GetFound()  returns 0x60000FF (0000ms, 1446ms total)
T3214 001:447 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xE00FF000  returns 0x00 (0000ms, 1446ms total)
T3214 001:447 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xE00FF000  returns 0x00 (0000ms, 1446ms total)
T3214 001:447 JLINK_GetDebugInfo(0x101 = JLINKARM_DEBUG_INFO_ETM_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 1446ms total)
T3214 001:447 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, 1447ms total)
T3214 001:448 JLINK_GetDebugInfo(0x102 = JLINKARM_DEBUG_INFO_MTB_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 1447ms total)
T3214 001:448 JLINK_GetDebugInfo(0x103 = JLINKARM_DEBUG_INFO_TPIU_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 1447ms total)
T3214 001:448 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, 1448ms total)
T3214 001:449 JLINK_GetDebugInfo(0x104 = JLINKARM_DEBUG_INFO_ITM_ADDR_INDEX) -- Value=0xE0000000  returns 0x00 (0000ms, 1448ms total)
T3214 001:449 JLINK_GetDebugInfo(0x105 = JLINKARM_DEBUG_INFO_DWT_ADDR_INDEX) -- Value=0xE0001000  returns 0x00 (0000ms, 1448ms total)
T3214 001:449 JLINK_GetDebugInfo(0x106 = JLINKARM_DEBUG_INFO_FPB_ADDR_INDEX) -- Value=0xE0002000  returns 0x00 (0000ms, 1448ms total)
T3214 001:449 JLINK_GetDebugInfo(0x107 = JLINKARM_DEBUG_INFO_NVIC_ADDR_INDEX) -- Value=0xE000E000  returns 0x00 (0000ms, 1448ms total)
T3214 001:449 JLINK_GetDebugInfo(0x10C = JLINKARM_DEBUG_INFO_DBG_ADDR_INDEX) -- Value=0xE000EDF0  returns 0x00 (0000ms, 1448ms total)
T3214 001:449 JLINK_GetDebugInfo(0x01 = Unknown) -- Value=0x00000000  returns 0x00 (0000ms, 1448ms total)
T3214 001:449 JLINK_ReadMemU32(0xE000ED00, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED00) - Data: 00 C3 0C 41  returns 1 (0002ms, 1450ms total)
T3214 001:451 JLINK_GetDebugInfo(0x10F = JLINKARM_DEBUG_INFO_HAS_CORTEX_M_SECURITY_EXT_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 1450ms total)
T3214 001:451 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_RESETPIN)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 1450ms total)
T3214 001:451 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.Reset: Reset device via reset pin -- 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) (0137ms, 1587ms total)
T3214 001:589 JLINK_ReadReg(R15 (PC))  returns 0x000000D8 (0000ms, 1588ms total)
T3214 001:589 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 1588ms total)
T3214 001:589 JLINK_Halt()  returns 0x00 (0000ms, 1588ms total)
T3214 001:589 JLINK_ReadMemU32(0xE000EDF0, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) - Data: 03 00 03 00  returns 1 (0001ms, 1589ms total)
T3214 001:590 JLINK_WriteU32(0xE000EDF0, 0xA05F0003) -- CPU_WriteMem(4 bytes @ 0xE000EDF0)  returns 0 (0001ms, 1590ms total)
T3214 001:591 JLINK_WriteU32(0xE000EDFC, 0x01000000) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)  returns 0 (0000ms, 1590ms total)
T3214 001:591 JLINK_GetHWStatus(...)  returns 0x00 (0000ms, 1590ms total)
T3214 001:592 JLINK_GetNumBPUnits(Type = 0xFFFFFF00)  returns 0x04 (0000ms, 1590ms total)
T3214 001:592 JLINK_GetNumBPUnits(Type = 0xF0)  returns 0x2000 (0000ms, 1590ms total)
T3214 001:592 JLINK_GetNumWPUnits()  returns 0x01 (0000ms, 1590ms total)
T3214 001:592 JLINK_GetSpeed()  returns 0x7D0 (0000ms, 1590ms total)
T3214 001:592 JLINK_ReadMemU32(0xE000E004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000E004) - Data: 00 00 00 00  returns 1 (0000ms, 1590ms total)
T3214 001:592 JLINK_ReadReg(R15 (PC))  returns 0x000000D8 (0000ms, 1590ms total)
T3214 001:592 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 1590ms total)
T3214 001:667 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_RESETPIN)  returns JLINKARM_CM3_RESET_TYPE_RESETPIN (0000ms, 1590ms total)
T3214 001:667 JLINK_Reset() -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)Reset: Halt core after reset via DEMCR.VC_CORERESET.Reset: Reset device via reset pin -- 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) (0139ms, 1729ms total)
T3214 001:806 JLINK_ReadReg(R15 (PC))  returns 0x000000D8 (0000ms, 1729ms total)
T3214 001:806 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 1729ms total)
T3214 001:806 JLINK_ReadMemEx(0x000000D8, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x000000C0) -- Updating C cache (128 bytes @ 0x000000C0) -- Read from C cache (60 bytes @ 0x000000D8) - Data: 04 48 80 47 04 48 00 47 FE E7 FE E7 FE E7 FE E7 ...  returns 0x3C (0003ms, 1732ms total)
T3214 001:809 JLINK_ReadMemEx(0x000000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000000D8) - Data: 04 48  returns 0x02 (0000ms, 1732ms total)
T3214 001:809 JLINK_ReadMemEx(0x000000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000000DA) - Data: 80 47  returns 0x02 (0000ms, 1732ms total)
T3214 001:809 JLINK_ReadMemEx(0x000000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000000DA) - Data: 80 47  returns 0x02 (0000ms, 1732ms total)
T3214 001:809 JLINK_ReadMemEx(0x000000DC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000000DC) - Data: 04 48 00 47 FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 ...  returns 0x3C (0000ms, 1732ms total)
T3214 001:809 JLINK_ReadMemEx(0x000000DC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000000DC) - Data: 04 48  returns 0x02 (0000ms, 1732ms total)
T3214 001:809 JLINK_ReadMemEx(0x000000DC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000000DC) - Data: 04 48 00 47 FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 ...  returns 0x3C (0000ms, 1732ms total)
T3214 001:809 JLINK_ReadMemEx(0x000000DC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000000DC) - Data: 04 48  returns 0x02 (0000ms, 1732ms total)
T3214 001:809 JLINK_ReadMemEx(0x000000DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000000DE) - Data: 00 47  returns 0x02 (0000ms, 1732ms total)
T3214 001:809 JLINK_ReadMemEx(0x000000DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000000DE) - Data: 00 47  returns 0x02 (0000ms, 1732ms total)
T3214 001:809 JLINK_ReadMemEx(0x000000E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000000E0) - Data: FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 D5 4C 00 00 ...  returns 0x3C (0000ms, 1732ms total)
T3214 001:809 JLINK_ReadMemEx(0x000000E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000000E0) - Data: FE E7  returns 0x02 (0000ms, 1732ms total)
T3214 001:809 JLINK_ReadMemEx(0x000000E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000000E0) - Data: FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 D5 4C 00 00 ...  returns 0x3C (0000ms, 1732ms total)
T3214 001:809 JLINK_ReadMemEx(0x000000E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000000E0) - Data: FE E7  returns 0x02 (0000ms, 1732ms total)
T3214 001:809 JLINK_ReadMemEx(0x000000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000000E2) - Data: FE E7  returns 0x02 (0000ms, 1732ms total)
T3214 001:809 JLINK_ReadMemEx(0x000000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000000E2) - Data: FE E7  returns 0x02 (0000ms, 1732ms total)
T3214 001:809 JLINK_ReadMemEx(0x000000E4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000000E4) - Data: FE E7 FE E7 FE E7 FE E7 D5 4C 00 00 C1 00 00 00 ...  returns 0x3C (0000ms, 1732ms total)
T3214 001:809 JLINK_ReadMemEx(0x000000E4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000000E4) - Data: FE E7  returns 0x02 (0000ms, 1732ms total)
T3214 001:809 JLINK_ReadMemEx(0x000000E4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000000E4) - Data: FE E7 FE E7 FE E7 FE E7 D5 4C 00 00 C1 00 00 00 ...  returns 0x3C (0000ms, 1732ms total)
T3214 001:810 JLINK_ReadMemEx(0x000000E4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000000E4) - Data: FE E7  returns 0x02 (0000ms, 1732ms total)
T3214 001:810 JLINK_ReadMemEx(0x000000E6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000000E6) - Data: FE E7  returns 0x02 (0000ms, 1732ms total)
T3214 002:973 JLINK_ReadMemEx(0x0001AB14, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x0001AB00) -- Updating C cache (128 bytes @ 0x0001AB00) -- Read from C cache (60 bytes @ 0x0001AB14) - Data: F8 BD 67 20 00 03 84 42 04 D2 60 19 67 21 09 03 ...  returns 0x3C (0003ms, 1735ms total)
T3214 002:976 JLINK_ReadMemEx(0x0001AB14, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0001AB14) - Data: F8 BD  returns 0x02 (0000ms, 1735ms total)
T3214 002:976 JLINK_ReadMemEx(0x0001AB16, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0001AB16) - Data: 67 20  returns 0x02 (0000ms, 1735ms total)
T3214 002:976 JLINK_ReadMemEx(0x0001AB16, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0001AB16) - Data: 67 20  returns 0x02 (0000ms, 1735ms total)
T3214 002:976 JLINK_ReadMemEx(0x0001AB18, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0001AB18) - Data: 00 03 84 42 04 D2 60 19 67 21 09 03 88 42 01 D3 ...  returns 0x3C (0000ms, 1735ms total)
T3214 002:976 JLINK_ReadMemEx(0x0001AB18, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0001AB18) - Data: 00 03  returns 0x02 (0000ms, 1735ms total)
T3214 002:976 JLINK_ReadMemEx(0x0001AB18, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0001AB18) - Data: 00 03 84 42 04 D2 60 19 67 21 09 03 88 42 01 D3 ...  returns 0x3C (0000ms, 1735ms total)
T3214 002:976 JLINK_ReadMemEx(0x0001AB18, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0001AB18) - Data: 00 03  returns 0x02 (0000ms, 1735ms total)
T3214 002:976 JLINK_ReadMemEx(0x0001AB1A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0001AB1A) - Data: 84 42  returns 0x02 (0000ms, 1735ms total)
T3214 002:976 JLINK_ReadMemEx(0x0001AB1A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0001AB1A) - Data: 84 42  returns 0x02 (0000ms, 1735ms total)
T3214 002:976 JLINK_ReadMemEx(0x0001AB1C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0001AB1C) - Data: 04 D2 60 19 67 21 09 03 88 42 01 D3 03 20 F3 E7 ...  returns 0x3C (0000ms, 1735ms total)
T3214 002:976 JLINK_ReadMemEx(0x0001AB1C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0001AB1C) - Data: 04 D2  returns 0x02 (0000ms, 1735ms total)
T3214 002:976 JLINK_ReadMemEx(0x0001AB1C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0001AB1C) - Data: 04 D2 60 19 67 21 09 03 88 42 01 D3 03 20 F3 E7 ...  returns 0x3C (0000ms, 1735ms total)
T3214 002:976 JLINK_ReadMemEx(0x0001AB1C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0001AB1C) - Data: 04 D2  returns 0x02 (0000ms, 1735ms total)
T3214 002:976 JLINK_ReadMemEx(0x0001AB1E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0001AB1E) - Data: 60 19  returns 0x02 (0000ms, 1735ms total)
T3214 003:138 JLINK_ReadReg(R0)  returns 0x00000005 (0001ms, 1736ms total)
T3214 003:139 JLINK_ReadReg(R1)  returns 0x000001F5 (0000ms, 1736ms total)
T3214 003:139 JLINK_ReadReg(R2)  returns 0x00000000 (0000ms, 1736ms total)
T3214 003:139 JLINK_ReadReg(R3)  returns 0xE000E000 (0000ms, 1736ms total)
T3214 003:139 JLINK_ReadReg(R4)  returns 0x000001F5 (0000ms, 1736ms total)
T3214 003:139 JLINK_ReadReg(R5)  returns 0x00000000 (0000ms, 1736ms total)
T3214 003:139 JLINK_ReadReg(R6)  returns 0x40000C80 (0000ms, 1736ms total)
T3214 003:139 JLINK_ReadReg(R7)  returns 0x00000020 (0000ms, 1736ms total)
T3214 003:139 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 1736ms total)
T3214 003:139 JLINK_ReadReg(R9)  returns 0x20000204 (0000ms, 1736ms total)
T3214 003:139 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 1736ms total)
T3214 003:139 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 1736ms total)
T3214 003:139 JLINK_ReadReg(R12)  returns 0x00000003 (0000ms, 1736ms total)
T3214 003:139 JLINK_ReadReg(R13 (SP))  returns 0x2000A118 (0000ms, 1736ms total)
T3214 003:139 JLINK_ReadReg(R14)  returns 0x0001DDD5 (0000ms, 1736ms total)
T3214 003:139 JLINK_ReadReg(R15 (PC))  returns 0x000000D8 (0000ms, 1736ms total)
T3214 003:139 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 1736ms total)
T3214 003:139 JLINK_ReadReg(MSP)  returns 0x2000A118 (0000ms, 1736ms total)
T3214 003:139 JLINK_ReadReg(PSP)  returns 0x20001000 (0000ms, 1736ms total)
T3214 003:139 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 1736ms total)
T1720 003:251 JLINK_ReadMemEx(0x000000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000000D8) - Data: 04 48  returns 0x02 (0000ms, 1736ms total)
T1720 003:251 JLINK_SetBPEx(Addr = 0x0002A044, Type = 0xFFFFFFF2)  returns 0x00000001 (0000ms, 1736ms total)
T1720 003:251 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, 1742ms total)
T1720 003:358 JLINK_IsHalted()  returns FALSE (0000ms, 1742ms total)
T1720 003:460 JLINK_IsHalted()  returns FALSE (0001ms, 1743ms total)
T1720 003:562 JLINK_IsHalted()  returns FALSE (0001ms, 1743ms total)
T1720 003:664 JLINK_IsHalted()  returns FALSE (0001ms, 1743ms total)
T1720 003:766 JLINK_IsHalted()  returns FALSE (0001ms, 1743ms total)
T1720 003:868 JLINK_IsHalted()  returns FALSE (0001ms, 1743ms total)
T1720 003:970 JLINK_IsHalted()  returns FALSE (0001ms, 1743ms total)
T1720 004:072 JLINK_IsHalted()  returns FALSE (0001ms, 1743ms total)
T1720 004:173 JLINK_IsHalted()  returns FALSE (0001ms, 1743ms total)
T1720 004:275 JLINK_IsHalted()  returns FALSE (0001ms, 1743ms total)
T1720 004:384 JLINK_IsHalted()  returns FALSE (0001ms, 1743ms total)
T1720 004:486 JLINK_IsHalted()  returns TRUE (0006ms, 1748ms total)
T1720 004:492 JLINK_Halt()  returns 0x00 (0000ms, 1742ms total)
T1720 004:492 JLINK_IsHalted()  returns TRUE (0000ms, 1742ms total)
T1720 004:492 JLINK_IsHalted()  returns TRUE (0000ms, 1742ms total)
T1720 004:492 JLINK_IsHalted()  returns TRUE (0000ms, 1742ms total)
T1720 004:492 JLINK_ReadReg(R15 (PC))  returns 0x0002A044 (0000ms, 1742ms total)
T1720 004:492 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 1742ms total)
T1720 004:492 JLINK_ClrBPEx(BPHandle = 0x00000001)  returns 0x00 (0000ms, 1742ms total)
T1720 004:492 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 02 00 00 00  returns 1 (0001ms, 1743ms total)
T1720 004:493 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 1 (0001ms, 1744ms total)
T1720 004:494 JLINK_ReadReg(R0)  returns 0x0002A045 (0000ms, 1744ms total)
T1720 004:494 JLINK_ReadReg(R1)  returns 0x20007180 (0000ms, 1744ms total)
T1720 004:494 JLINK_ReadReg(R2)  returns 0x00000000 (0000ms, 1744ms total)
T1720 004:494 JLINK_ReadReg(R3)  returns 0x0002892B (0000ms, 1744ms total)
T1720 004:494 JLINK_ReadReg(R4)  returns 0x0002BED0 (0000ms, 1744ms total)
T1720 004:494 JLINK_ReadReg(R5)  returns 0x00000001 (0000ms, 1744ms total)
T1720 004:494 JLINK_ReadReg(R6)  returns 0x0002BED0 (0000ms, 1744ms total)
T1720 004:494 JLINK_ReadReg(R7)  returns 0x00000020 (0000ms, 1744ms total)
T1720 004:494 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 1744ms total)
T1720 004:494 JLINK_ReadReg(R9)  returns 0x20000204 (0000ms, 1744ms total)
T1720 004:494 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 1744ms total)
T1720 004:494 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 1744ms total)
T1720 004:494 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 1744ms total)
T1720 004:494 JLINK_ReadReg(R13 (SP))  returns 0x20007180 (0000ms, 1744ms total)
T1720 004:494 JLINK_ReadReg(R14)  returns 0x00019CAD (0000ms, 1744ms total)
T1720 004:494 JLINK_ReadReg(R15 (PC))  returns 0x0002A044 (0000ms, 1744ms total)
T1720 004:494 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 1744ms total)
T1720 004:494 JLINK_ReadReg(MSP)  returns 0x20007180 (0000ms, 1744ms total)
T1720 004:494 JLINK_ReadReg(PSP)  returns 0x20001000 (0000ms, 1744ms total)
T1720 004:494 JLINK_ReadReg(CFBP)  returns 0x00000001 (0000ms, 1744ms total)
T3214 004:504 JLINK_ReadMemEx(0x00029F44, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00029F40) -- Updating C cache (64 bytes @ 0x00029F40) -- Read from C cache (60 bytes @ 0x00029F44) - Data: 01 20 10 49 08 70 0D 48 C0 88 00 28 07 DD 00 BF ...  returns 0x3C (0001ms, 1745ms total)
T3214 004:505 JLINK_ReadMemEx(0x00029F44, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029F44) - Data: 01 20  returns 0x02 (0000ms, 1745ms total)
T3214 004:505 JLINK_ReadMemEx(0x00029F46, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029F46) - Data: 10 49  returns 0x02 (0000ms, 1745ms total)
T3214 004:505 JLINK_ReadMemEx(0x00029F46, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029F46) - Data: 10 49  returns 0x02 (0000ms, 1745ms total)
T3214 004:505 JLINK_ReadMemEx(0x00029F48, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00029F80) -- Updating C cache (64 bytes @ 0x00029F80) -- Read from C cache (60 bytes @ 0x00029F48) - Data: 08 70 0D 48 C0 88 00 28 07 DD 00 BF 1E 21 0A 48 ...  returns 0x3C (0002ms, 1747ms total)
T3214 004:507 JLINK_ReadMemEx(0x00029F48, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029F48) - Data: 08 70  returns 0x02 (0000ms, 1747ms total)
T3214 004:507 JLINK_ReadMemEx(0x00029F48, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00029F48) - Data: 08 70 0D 48 C0 88 00 28 07 DD 00 BF 1E 21 0A 48 ...  returns 0x3C (0000ms, 1747ms total)
T3214 004:507 JLINK_ReadMemEx(0x00029F48, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029F48) - Data: 08 70  returns 0x02 (0000ms, 1747ms total)
T3214 004:507 JLINK_ReadMemEx(0x00029F4A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029F4A) - Data: 0D 48  returns 0x02 (0000ms, 1747ms total)
T3214 004:507 JLINK_ReadMemEx(0x00029F4A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029F4A) - Data: 0D 48  returns 0x02 (0000ms, 1747ms total)
T3214 004:507 JLINK_ReadMemEx(0x00029F4C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00029F4C) - Data: C0 88 00 28 07 DD 00 BF 1E 21 0A 48 C1 80 00 20 ...  returns 0x3C (0000ms, 1747ms total)
T3214 004:507 JLINK_ReadMemEx(0x00029F4C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029F4C) - Data: C0 88  returns 0x02 (0000ms, 1747ms total)
T3214 004:507 JLINK_ReadMemEx(0x00029F4C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00029F4C) - Data: C0 88 00 28 07 DD 00 BF 1E 21 0A 48 C1 80 00 20 ...  returns 0x3C (0000ms, 1747ms total)
T3214 004:507 JLINK_ReadMemEx(0x00029F4C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029F4C) - Data: C0 88  returns 0x02 (0000ms, 1747ms total)
T3214 004:507 JLINK_ReadMemEx(0x00029F4E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029F4E) - Data: 00 28  returns 0x02 (0000ms, 1747ms total)
T3214 004:507 JLINK_ReadMemEx(0x00029F4E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029F4E) - Data: 00 28  returns 0x02 (0000ms, 1747ms total)
T3214 004:507 JLINK_ReadMemEx(0x00029F50, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00029F50) - Data: 07 DD 00 BF 1E 21 0A 48 C1 80 00 20 08 49 08 71 ...  returns 0x3C (0000ms, 1747ms total)
T3214 004:507 JLINK_ReadMemEx(0x00029F50, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029F50) - Data: 07 DD  returns 0x02 (0000ms, 1747ms total)
T3214 004:507 JLINK_ReadMemEx(0x00029F50, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00029F50) - Data: 07 DD 00 BF 1E 21 0A 48 C1 80 00 20 08 49 08 71 ...  returns 0x3C (0000ms, 1747ms total)
T3214 004:507 JLINK_ReadMemEx(0x00029F50, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029F50) - Data: 07 DD  returns 0x02 (0000ms, 1747ms total)
T3214 004:507 JLINK_ReadMemEx(0x00029F52, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029F52) - Data: 00 BF  returns 0x02 (0000ms, 1747ms total)
T3214 004:507 JLINK_ReadMemEx(0x00029F52, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029F52) - Data: 00 BF  returns 0x02 (0000ms, 1747ms total)
T3214 004:507 JLINK_ReadMemEx(0x00029F54, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00029F54) - Data: 1E 21 0A 48 C1 80 00 20 08 49 08 71 00 BF 01 20 ...  returns 0x3C (0000ms, 1747ms total)
T3214 004:507 JLINK_ReadMemEx(0x00029F54, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029F54) - Data: 1E 21  returns 0x02 (0000ms, 1747ms total)
T3214 004:507 JLINK_ReadMemEx(0x00029F54, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00029F54) - Data: 1E 21 0A 48 C1 80 00 20 08 49 08 71 00 BF 01 20 ...  returns 0x3C (0000ms, 1747ms total)
T3214 004:507 JLINK_ReadMemEx(0x00029F54, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029F54) - Data: 1E 21  returns 0x02 (0000ms, 1747ms total)
T3214 004:507 JLINK_ReadMemEx(0x00029F56, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029F56) - Data: 0A 48  returns 0x02 (0000ms, 1747ms total)
T3214 004:507 JLINK_ReadMemEx(0x00029F56, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029F56) - Data: 0A 48  returns 0x02 (0000ms, 1747ms total)
T3214 004:507 JLINK_ReadMemEx(0x00029F58, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00029F58) - Data: C1 80 00 20 08 49 08 71 00 BF 01 20 09 49 08 70 ...  returns 0x3C (0000ms, 1747ms total)
T3214 004:507 JLINK_ReadMemEx(0x00029F58, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029F58) - Data: C1 80  returns 0x02 (0000ms, 1747ms total)
T3214 004:507 JLINK_ReadMemEx(0x00029F58, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00029F58) - Data: C1 80 00 20 08 49 08 71 00 BF 01 20 09 49 08 70 ...  returns 0x3C (0000ms, 1747ms total)
T3214 004:507 JLINK_ReadMemEx(0x00029F58, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029F58) - Data: C1 80  returns 0x02 (0000ms, 1747ms total)
T3214 004:507 JLINK_ReadMemEx(0x00029F5A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029F5A) - Data: 00 20  returns 0x02 (0000ms, 1747ms total)
T3214 004:507 JLINK_ReadMemEx(0x00029F5A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029F5A) - Data: 00 20  returns 0x02 (0000ms, 1747ms total)
T3214 004:507 JLINK_ReadMemEx(0x00029F5C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00029F5C) - Data: 08 49 08 71 00 BF 01 20 09 49 08 70 02 20 09 49 ...  returns 0x3C (0000ms, 1747ms total)
T3214 004:507 JLINK_ReadMemEx(0x00029F5C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029F5C) - Data: 08 49  returns 0x02 (0000ms, 1747ms total)
T3214 004:507 JLINK_ReadMemEx(0x00029F5C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00029F5C) - Data: 08 49 08 71 00 BF 01 20 09 49 08 70 02 20 09 49 ...  returns 0x3C (0000ms, 1747ms total)
T3214 004:507 JLINK_ReadMemEx(0x00029F5C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029F5C) - Data: 08 49  returns 0x02 (0000ms, 1747ms total)
T3214 004:507 JLINK_ReadMemEx(0x00029F5E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029F5E) - Data: 08 71  returns 0x02 (0000ms, 1747ms total)
T3214 004:507 JLINK_ReadMemEx(0x00029F5E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029F5E) - Data: 08 71  returns 0x02 (0000ms, 1747ms total)
T3214 004:507 JLINK_ReadMemEx(0x00029F60, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00029F60) - Data: 00 BF 01 20 09 49 08 70 02 20 09 49 08 70 10 BD ...  returns 0x3C (0000ms, 1747ms total)
T3214 004:507 JLINK_ReadMemEx(0x00029F60, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029F60) - Data: 00 BF  returns 0x02 (0000ms, 1747ms total)
T3214 004:507 JLINK_ReadMemEx(0x00029F60, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00029F60) - Data: 00 BF 01 20 09 49 08 70 02 20 09 49 08 70 10 BD ...  returns 0x3C (0000ms, 1747ms total)
T3214 004:507 JLINK_ReadMemEx(0x00029F60, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029F60) - Data: 00 BF  returns 0x02 (0000ms, 1747ms total)
T3214 004:507 JLINK_ReadMemEx(0x00029F62, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029F62) - Data: 01 20  returns 0x02 (0000ms, 1747ms total)
T3214 004:507 JLINK_ReadMemEx(0x00029F62, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029F62) - Data: 01 20  returns 0x02 (0000ms, 1747ms total)
T3214 004:507 JLINK_ReadMemEx(0x00029F64, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00029F64) - Data: 09 49 08 70 02 20 09 49 08 70 10 BD 00 0D 00 40 ...  returns 0x3C (0000ms, 1747ms total)
T3214 004:507 JLINK_ReadMemEx(0x00029F64, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029F64) - Data: 09 49  returns 0x02 (0000ms, 1747ms total)
T3214 004:507 JLINK_ReadMemEx(0x00029F64, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00029F64) - Data: 09 49 08 70 02 20 09 49 08 70 10 BD 00 0D 00 40 ...  returns 0x3C (0000ms, 1747ms total)
T3214 004:507 JLINK_ReadMemEx(0x00029F64, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029F64) - Data: 09 49  returns 0x02 (0000ms, 1747ms total)
T3214 004:507 JLINK_ReadMemEx(0x00029F66, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029F66) - Data: 08 70  returns 0x02 (0000ms, 1747ms total)
T3214 004:507 JLINK_ReadMemEx(0x00029F66, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029F66) - Data: 08 70  returns 0x02 (0000ms, 1747ms total)
T3214 004:507 JLINK_ReadMemEx(0x00029F68, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00029F68) - Data: 02 20 09 49 08 70 10 BD 00 0D 00 40 D2 02 00 20 ...  returns 0x3C (0000ms, 1747ms total)
T3214 004:507 JLINK_ReadMemEx(0x00029F68, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029F68) - Data: 02 20  returns 0x02 (0000ms, 1747ms total)
T3214 004:507 JLINK_ReadMemEx(0x00029F68, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00029F68) - Data: 02 20 09 49 08 70 10 BD 00 0D 00 40 D2 02 00 20 ...  returns 0x3C (0000ms, 1747ms total)
T3214 004:507 JLINK_ReadMemEx(0x00029F68, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029F68) - Data: 02 20  returns 0x02 (0000ms, 1747ms total)
T3214 004:507 JLINK_ReadMemEx(0x00029F6A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029F6A) - Data: 09 49  returns 0x02 (0000ms, 1747ms total)
T3214 004:507 JLINK_ReadMemEx(0x00029F6A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029F6A) - Data: 09 49  returns 0x02 (0000ms, 1747ms total)
T3214 004:507 JLINK_ReadMemEx(0x00029F6C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00029F6C) - Data: 08 70 10 BD 00 0D 00 40 D2 02 00 20 D3 02 00 20 ...  returns 0x3C (0000ms, 1747ms total)
T3214 004:507 JLINK_ReadMemEx(0x00029F6C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029F6C) - Data: 08 70  returns 0x02 (0000ms, 1747ms total)
T3214 004:507 JLINK_ReadMemEx(0x00029F6C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00029F6C) - Data: 08 70 10 BD 00 0D 00 40 D2 02 00 20 D3 02 00 20 ...  returns 0x3C (0000ms, 1747ms total)
T3214 004:507 JLINK_ReadMemEx(0x00029F6C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029F6C) - Data: 08 70  returns 0x02 (0000ms, 1747ms total)
T3214 004:507 JLINK_ReadMemEx(0x00029F6E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029F6E) - Data: 10 BD  returns 0x02 (0000ms, 1747ms total)
T3214 004:507 JLINK_ReadMemEx(0x00029F6E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029F6E) - Data: 10 BD  returns 0x02 (0001ms, 1748ms total)
T3214 004:508 JLINK_ReadMemEx(0x00029F70, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00029F70) - Data: 00 0D 00 40 D2 02 00 20 D3 02 00 20 D4 02 00 20 ...  returns 0x3C (0000ms, 1748ms total)
T3214 004:508 JLINK_ReadMemEx(0x00029F70, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029F70) - Data: 00 0D  returns 0x02 (0000ms, 1748ms total)
T3214 004:508 JLINK_ReadMemEx(0x00029F94, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00029FC0) -- Updating C cache (64 bytes @ 0x00029FC0) -- Read from C cache (60 bytes @ 0x00029F94) - Data: 10 B5 00 20 15 49 08 70 15 48 C0 88 00 28 0B DC ...  returns 0x3C (0002ms, 1750ms total)
T3214 004:510 JLINK_ReadMemEx(0x00029F94, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029F94) - Data: 10 B5  returns 0x02 (0000ms, 1750ms total)
T3214 004:510 JLINK_ReadMemEx(0x00029F96, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029F96) - Data: 00 20  returns 0x02 (0000ms, 1750ms total)
T3214 004:510 JLINK_ReadMemEx(0x00029F96, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029F96) - Data: 00 20  returns 0x02 (0000ms, 1750ms total)
T3214 004:510 JLINK_ReadMemEx(0x00029F98, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00029F98) - Data: 15 49 08 70 15 48 C0 88 00 28 0B DC 14 48 00 78 ...  returns 0x3C (0000ms, 1750ms total)
T3214 004:510 JLINK_ReadMemEx(0x00029F98, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029F98) - Data: 15 49  returns 0x02 (0000ms, 1750ms total)
T3214 004:510 JLINK_ReadMemEx(0x00029F98, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00029F98) - Data: 15 49 08 70 15 48 C0 88 00 28 0B DC 14 48 00 78 ...  returns 0x3C (0000ms, 1750ms total)
T3214 004:510 JLINK_ReadMemEx(0x00029F98, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029F98) - Data: 15 49  returns 0x02 (0000ms, 1750ms total)
T3214 004:510 JLINK_ReadMemEx(0x00029F9A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029F9A) - Data: 08 70  returns 0x02 (0000ms, 1750ms total)
T3214 004:510 JLINK_ReadMemEx(0x00029F9A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029F9A) - Data: 08 70  returns 0x02 (0000ms, 1750ms total)
T3214 004:510 JLINK_ReadMemEx(0x00029F9C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00029F9C) - Data: 15 48 C0 88 00 28 0B DC 14 48 00 78 40 07 40 0F ...  returns 0x3C (0000ms, 1750ms total)
T3214 004:510 JLINK_ReadMemEx(0x00029F9C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029F9C) - Data: 15 48  returns 0x02 (0000ms, 1750ms total)
T3214 004:510 JLINK_ReadMemEx(0x00029F9C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00029F9C) - Data: 15 48 C0 88 00 28 0B DC 14 48 00 78 40 07 40 0F ...  returns 0x3C (0000ms, 1750ms total)
T3214 004:510 JLINK_ReadMemEx(0x00029F9C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029F9C) - Data: 15 48  returns 0x02 (0000ms, 1750ms total)
T3214 004:510 JLINK_ReadMemEx(0x00029F9E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029F9E) - Data: C0 88  returns 0x02 (0000ms, 1750ms total)
T3214 004:510 JLINK_ReadMemEx(0x00029F9E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029F9E) - Data: C0 88  returns 0x02 (0000ms, 1750ms total)
T3214 004:510 JLINK_ReadMemEx(0x00029FA0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00029FA0) - Data: 00 28 0B DC 14 48 00 78 40 07 40 0F 01 28 05 D0 ...  returns 0x3C (0000ms, 1750ms total)
T3214 004:510 JLINK_ReadMemEx(0x00029FA0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FA0) - Data: 00 28  returns 0x02 (0000ms, 1750ms total)
T3214 004:510 JLINK_ReadMemEx(0x00029FA0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00029FA0) - Data: 00 28 0B DC 14 48 00 78 40 07 40 0F 01 28 05 D0 ...  returns 0x3C (0000ms, 1750ms total)
T3214 004:510 JLINK_ReadMemEx(0x00029FA0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FA0) - Data: 00 28  returns 0x02 (0000ms, 1750ms total)
T3214 004:510 JLINK_ReadMemEx(0x00029FA2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FA2) - Data: 0B DC  returns 0x02 (0000ms, 1750ms total)
T3214 004:510 JLINK_ReadMemEx(0x00029FA2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FA2) - Data: 0B DC  returns 0x02 (0000ms, 1750ms total)
T3214 004:510 JLINK_ReadMemEx(0x00029FA4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00029FA4) - Data: 14 48 00 78 40 07 40 0F 01 28 05 D0 11 48 40 78 ...  returns 0x3C (0000ms, 1750ms total)
T3214 004:510 JLINK_ReadMemEx(0x00029FA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FA4) - Data: 14 48  returns 0x02 (0000ms, 1750ms total)
T3214 004:510 JLINK_ReadMemEx(0x00029FA4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00029FA4) - Data: 14 48 00 78 40 07 40 0F 01 28 05 D0 11 48 40 78 ...  returns 0x3C (0000ms, 1750ms total)
T3214 004:510 JLINK_ReadMemEx(0x00029FA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FA4) - Data: 14 48  returns 0x02 (0000ms, 1750ms total)
T3214 004:510 JLINK_ReadMemEx(0x00029FA6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FA6) - Data: 00 78  returns 0x02 (0000ms, 1750ms total)
T3214 004:510 JLINK_ReadMemEx(0x00029FA6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FA6) - Data: 00 78  returns 0x02 (0000ms, 1750ms total)
T3214 004:510 JLINK_ReadMemEx(0x00029FA8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00029FA8) - Data: 40 07 40 0F 01 28 05 D0 11 48 40 78 80 07 C0 0F ...  returns 0x3C (0000ms, 1750ms total)
T3214 004:510 JLINK_ReadMemEx(0x00029FA8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FA8) - Data: 40 07  returns 0x02 (0000ms, 1750ms total)
T3214 004:510 JLINK_ReadMemEx(0x00029FA8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00029FA8) - Data: 40 07 40 0F 01 28 05 D0 11 48 40 78 80 07 C0 0F ...  returns 0x3C (0000ms, 1750ms total)
T3214 004:510 JLINK_ReadMemEx(0x00029FA8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FA8) - Data: 40 07  returns 0x02 (0000ms, 1750ms total)
T3214 004:510 JLINK_ReadMemEx(0x00029FAA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FAA) - Data: 40 0F  returns 0x02 (0000ms, 1750ms total)
T3214 004:510 JLINK_ReadMemEx(0x00029FAA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FAA) - Data: 40 0F  returns 0x02 (0000ms, 1750ms total)
T3214 004:510 JLINK_ReadMemEx(0x00029FAC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00029FAC) - Data: 01 28 05 D0 11 48 40 78 80 07 C0 0F 00 28 0E D0 ...  returns 0x3C (0000ms, 1750ms total)
T3214 004:510 JLINK_ReadMemEx(0x00029FAC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FAC) - Data: 01 28  returns 0x02 (0000ms, 1750ms total)
T3214 004:510 JLINK_ReadMemEx(0x00029FAC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00029FAC) - Data: 01 28 05 D0 11 48 40 78 80 07 C0 0F 00 28 0E D0 ...  returns 0x3C (0000ms, 1750ms total)
T3214 004:510 JLINK_ReadMemEx(0x00029FAC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FAC) - Data: 01 28  returns 0x02 (0000ms, 1750ms total)
T3214 004:510 JLINK_ReadMemEx(0x00029FAE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FAE) - Data: 05 D0  returns 0x02 (0000ms, 1750ms total)
T3214 004:510 JLINK_ReadMemEx(0x00029FAE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FAE) - Data: 05 D0  returns 0x02 (0000ms, 1750ms total)
T3214 004:510 JLINK_ReadMemEx(0x00029FB0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00029FB0) - Data: 11 48 40 78 80 07 C0 0F 00 28 0E D0 0F 48 00 78 ...  returns 0x3C (0000ms, 1750ms total)
T3214 004:510 JLINK_ReadMemEx(0x00029FB0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FB0) - Data: 11 48  returns 0x02 (0000ms, 1750ms total)
T3214 004:510 JLINK_ReadMemEx(0x00029FB0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00029FB0) - Data: 11 48 40 78 80 07 C0 0F 00 28 0E D0 0F 48 00 78 ...  returns 0x3C (0000ms, 1750ms total)
T3214 004:510 JLINK_ReadMemEx(0x00029FB0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FB0) - Data: 11 48  returns 0x02 (0000ms, 1750ms total)
T3214 004:510 JLINK_ReadMemEx(0x00029FB2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FB2) - Data: 40 78  returns 0x02 (0000ms, 1750ms total)
T3214 004:510 JLINK_ReadMemEx(0x00029FB2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FB2) - Data: 40 78  returns 0x02 (0000ms, 1750ms total)
T3214 004:510 JLINK_ReadMemEx(0x00029FB4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00029FB4) - Data: 80 07 C0 0F 00 28 0E D0 0F 48 00 78 01 28 04 D1 ...  returns 0x3C (0000ms, 1750ms total)
T3214 004:510 JLINK_ReadMemEx(0x00029FB4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FB4) - Data: 80 07  returns 0x02 (0000ms, 1750ms total)
T3214 004:510 JLINK_ReadMemEx(0x00029FB4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00029FB4) - Data: 80 07 C0 0F 00 28 0E D0 0F 48 00 78 01 28 04 D1 ...  returns 0x3C (0000ms, 1750ms total)
T3214 004:510 JLINK_ReadMemEx(0x00029FB4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FB4) - Data: 80 07  returns 0x02 (0001ms, 1751ms total)
T3214 004:511 JLINK_ReadMemEx(0x00029FB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FB6) - Data: C0 0F  returns 0x02 (0000ms, 1751ms total)
T3214 004:511 JLINK_ReadMemEx(0x00029FB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FB6) - Data: C0 0F  returns 0x02 (0000ms, 1751ms total)
T3214 004:511 JLINK_ReadMemEx(0x00029FB8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00029FB8) - Data: 00 28 0E D0 0F 48 00 78 01 28 04 D1 00 20 0D 49 ...  returns 0x3C (0000ms, 1751ms total)
T3214 004:511 JLINK_ReadMemEx(0x00029FB8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FB8) - Data: 00 28  returns 0x02 (0000ms, 1751ms total)
T3214 004:511 JLINK_ReadMemEx(0x00029FB8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00029FB8) - Data: 00 28 0E D0 0F 48 00 78 01 28 04 D1 00 20 0D 49 ...  returns 0x3C (0000ms, 1751ms total)
T3214 004:511 JLINK_ReadMemEx(0x00029FB8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FB8) - Data: 00 28  returns 0x02 (0000ms, 1751ms total)
T3214 004:511 JLINK_ReadMemEx(0x00029FBA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FBA) - Data: 0E D0  returns 0x02 (0000ms, 1751ms total)
T3214 004:511 JLINK_ReadMemEx(0x00029FBA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FBA) - Data: 0E D0  returns 0x02 (0000ms, 1751ms total)
T3214 004:511 JLINK_ReadMemEx(0x00029FBC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00029FBC) - Data: 0F 48 00 78 01 28 04 D1 00 20 0D 49 08 70 F9 F7 ...  returns 0x3C (0000ms, 1751ms total)
T3214 004:511 JLINK_ReadMemEx(0x00029FBC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FBC) - Data: 0F 48  returns 0x02 (0000ms, 1751ms total)
T3214 004:511 JLINK_ReadMemEx(0x00029FBC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00029FBC) - Data: 0F 48 00 78 01 28 04 D1 00 20 0D 49 08 70 F9 F7 ...  returns 0x3C (0000ms, 1751ms total)
T3214 004:511 JLINK_ReadMemEx(0x00029FBC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FBC) - Data: 0F 48  returns 0x02 (0000ms, 1751ms total)
T3214 004:511 JLINK_ReadMemEx(0x00029FBE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FBE) - Data: 00 78  returns 0x02 (0000ms, 1751ms total)
T3214 004:511 JLINK_ReadMemEx(0x00029FBE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FBE) - Data: 00 78  returns 0x02 (0000ms, 1751ms total)
T3214 004:511 JLINK_ReadMemEx(0x00029FC0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00029FC0) - Data: 01 28 04 D1 00 20 0D 49 08 70 F9 F7 E1 F9 F9 F7 ...  returns 0x3C (0000ms, 1751ms total)
T3214 004:511 JLINK_ReadMemEx(0x00029FC0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FC0) - Data: 01 28  returns 0x02 (0000ms, 1751ms total)
T3214 004:511 JLINK_ReadMemEx(0x00029FC0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00029FC0) - Data: 01 28 04 D1 00 20 0D 49 08 70 F9 F7 E1 F9 F9 F7 ...  returns 0x3C (0000ms, 1751ms total)
T3214 004:511 JLINK_ReadMemEx(0x00029FC0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FC0) - Data: 01 28  returns 0x02 (0000ms, 1751ms total)
T3214 004:511 JLINK_ReadMemEx(0x00029FC2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FC2) - Data: 04 D1  returns 0x02 (0000ms, 1751ms total)
T3214 004:511 JLINK_ReadMemEx(0x00029FC2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FC2) - Data: 04 D1  returns 0x02 (0000ms, 1751ms total)
T3214 004:511 JLINK_ReadMemEx(0x00029FC4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00029FC4) - Data: 00 20 0D 49 08 70 F9 F7 E1 F9 F9 F7 53 F9 00 20 ...  returns 0x3C (0000ms, 1751ms total)
T3214 004:511 JLINK_ReadMemEx(0x00029FC4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FC4) - Data: 00 20  returns 0x02 (0000ms, 1751ms total)
T3214 004:511 JLINK_ReadMemEx(0x00029FC4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00029FC4) - Data: 00 20 0D 49 08 70 F9 F7 E1 F9 F9 F7 53 F9 00 20 ...  returns 0x3C (0000ms, 1751ms total)
T3214 004:511 JLINK_ReadMemEx(0x00029FC4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FC4) - Data: 00 20  returns 0x02 (0000ms, 1751ms total)
T3214 004:511 JLINK_ReadMemEx(0x00029FC6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FC6) - Data: 0D 49  returns 0x02 (0000ms, 1751ms total)
T3214 004:511 JLINK_ReadMemEx(0x00029FC6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FC6) - Data: 0D 49  returns 0x02 (0000ms, 1751ms total)
T3214 004:511 JLINK_ReadMemEx(0x00029FC8, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0002A000) -- Updating C cache (64 bytes @ 0x0002A000) -- Read from C cache (60 bytes @ 0x00029FC8) - Data: 08 70 F9 F7 E1 F9 F9 F7 53 F9 00 20 0A 49 08 70 ...  returns 0x3C (0001ms, 1752ms total)
T3214 004:512 JLINK_ReadMemEx(0x00029FC8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FC8) - Data: 08 70  returns 0x02 (0000ms, 1752ms total)
T3214 004:512 JLINK_ReadMemEx(0x00029FC8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00029FC8) - Data: 08 70 F9 F7 E1 F9 F9 F7 53 F9 00 20 0A 49 08 70 ...  returns 0x3C (0000ms, 1752ms total)
T3214 004:512 JLINK_ReadMemEx(0x00029FC8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FC8) - Data: 08 70  returns 0x02 (0000ms, 1752ms total)
T3214 004:512 JLINK_ReadMemEx(0x00029FCA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FCA) - Data: F9 F7  returns 0x02 (0000ms, 1752ms total)
T3214 004:512 JLINK_ReadMemEx(0x00029FCA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FCA) - Data: F9 F7  returns 0x02 (0000ms, 1752ms total)
T3214 004:512 JLINK_ReadMemEx(0x00029FCC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00029FCC) - Data: E1 F9 F9 F7 53 F9 00 20 0A 49 08 70 08 E0 09 48 ...  returns 0x3C (0000ms, 1752ms total)
T3214 004:512 JLINK_ReadMemEx(0x00029FCC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FCC) - Data: E1 F9  returns 0x02 (0000ms, 1752ms total)
T3214 004:512 JLINK_ReadMemEx(0x00029FCE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FCE) - Data: F9 F7  returns 0x02 (0000ms, 1752ms total)
T3214 004:512 JLINK_ReadMemEx(0x00029FD0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00029FD0) - Data: 53 F9 00 20 0A 49 08 70 08 E0 09 48 00 78 00 28 ...  returns 0x3C (0000ms, 1752ms total)
T3214 004:512 JLINK_ReadMemEx(0x00029FD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FD0) - Data: 53 F9  returns 0x02 (0000ms, 1752ms total)
T3214 004:512 JLINK_ReadMemEx(0x00029FD2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FD2) - Data: 00 20  returns 0x02 (0000ms, 1752ms total)
T3214 004:512 JLINK_ReadMemEx(0x00029FD4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00029FD4) - Data: 0A 49 08 70 08 E0 09 48 00 78 00 28 04 D1 01 20 ...  returns 0x3C (0000ms, 1752ms total)
T3214 004:512 JLINK_ReadMemEx(0x00029FD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FD4) - Data: 0A 49  returns 0x02 (0000ms, 1752ms total)
T3214 004:512 JLINK_ReadMemEx(0x00029FD4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00029FD4) - Data: 0A 49 08 70 08 E0 09 48 00 78 00 28 04 D1 01 20 ...  returns 0x3C (0000ms, 1752ms total)
T3214 004:512 JLINK_ReadMemEx(0x00029FD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FD4) - Data: 0A 49  returns 0x02 (0000ms, 1752ms total)
T3214 004:512 JLINK_ReadMemEx(0x00029FD6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FD6) - Data: 08 70  returns 0x02 (0000ms, 1752ms total)
T3214 004:512 JLINK_ReadMemEx(0x00029FD6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FD6) - Data: 08 70  returns 0x02 (0000ms, 1752ms total)
T3214 004:512 JLINK_ReadMemEx(0x00029FD8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00029FD8) - Data: 08 E0 09 48 00 78 00 28 04 D1 01 20 06 49 08 70 ...  returns 0x3C (0000ms, 1752ms total)
T3214 004:512 JLINK_ReadMemEx(0x00029FD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FD8) - Data: 08 E0  returns 0x02 (0000ms, 1752ms total)
T3214 004:512 JLINK_ReadMemEx(0x00029FD8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00029FD8) - Data: 08 E0 09 48 00 78 00 28 04 D1 01 20 06 49 08 70 ...  returns 0x3C (0000ms, 1752ms total)
T3214 004:512 JLINK_ReadMemEx(0x00029FD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FD8) - Data: 08 E0  returns 0x02 (0000ms, 1752ms total)
T3214 004:512 JLINK_ReadMemEx(0x00029FDA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FDA) - Data: 09 48  returns 0x02 (0000ms, 1752ms total)
T3214 004:512 JLINK_ReadMemEx(0x00029FDA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FDA) - Data: 09 48  returns 0x02 (0000ms, 1752ms total)
T3214 004:512 JLINK_ReadMemEx(0x00029FDC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00029FDC) - Data: 00 78 00 28 04 D1 01 20 06 49 08 70 F4 F7 6E FD ...  returns 0x3C (0000ms, 1752ms total)
T3214 004:512 JLINK_ReadMemEx(0x00029FDC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FDC) - Data: 00 78  returns 0x02 (0000ms, 1752ms total)
T3214 004:512 JLINK_ReadMemEx(0x00029FDC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00029FDC) - Data: 00 78 00 28 04 D1 01 20 06 49 08 70 F4 F7 6E FD ...  returns 0x3C (0000ms, 1752ms total)
T3214 004:512 JLINK_ReadMemEx(0x00029FDC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FDC) - Data: 00 78  returns 0x02 (0000ms, 1752ms total)
T3214 004:512 JLINK_ReadMemEx(0x00029FDE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FDE) - Data: 00 28  returns 0x02 (0000ms, 1752ms total)
T3214 004:512 JLINK_ReadMemEx(0x00029FDE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FDE) - Data: 00 28  returns 0x02 (0000ms, 1752ms total)
T3214 004:512 JLINK_ReadMemEx(0x00029FE0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00029FE0) - Data: 04 D1 01 20 06 49 08 70 F4 F7 6E FD 10 BD 00 00 ...  returns 0x3C (0000ms, 1752ms total)
T3214 004:512 JLINK_ReadMemEx(0x00029FE0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FE0) - Data: 04 D1  returns 0x02 (0000ms, 1752ms total)
T3214 004:512 JLINK_ReadMemEx(0x00029FE0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00029FE0) - Data: 04 D1 01 20 06 49 08 70 F4 F7 6E FD 10 BD 00 00 ...  returns 0x3C (0000ms, 1752ms total)
T3214 004:512 JLINK_ReadMemEx(0x00029FE0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FE0) - Data: 04 D1  returns 0x02 (0000ms, 1752ms total)
T3214 004:512 JLINK_ReadMemEx(0x00029FE2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FE2) - Data: 01 20  returns 0x02 (0000ms, 1752ms total)
T3214 004:512 JLINK_ReadMemEx(0x00029FE2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FE2) - Data: 01 20  returns 0x02 (0000ms, 1752ms total)
T3214 004:512 JLINK_ReadMemEx(0x00029FE4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00029FE4) - Data: 06 49 08 70 F4 F7 6E FD 10 BD 00 00 79 06 00 20 ...  returns 0x3C (0000ms, 1752ms total)
T3214 004:512 JLINK_ReadMemEx(0x00029FE4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FE4) - Data: 06 49  returns 0x02 (0000ms, 1752ms total)
T3214 004:512 JLINK_ReadMemEx(0x00029FE4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00029FE4) - Data: 06 49 08 70 F4 F7 6E FD 10 BD 00 00 79 06 00 20 ...  returns 0x3C (0000ms, 1752ms total)
T3214 004:512 JLINK_ReadMemEx(0x00029FE4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FE4) - Data: 06 49  returns 0x02 (0000ms, 1752ms total)
T3214 004:512 JLINK_ReadMemEx(0x00029FE6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FE6) - Data: 08 70  returns 0x02 (0000ms, 1752ms total)
T3214 004:512 JLINK_ReadMemEx(0x00029FE6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FE6) - Data: 08 70  returns 0x02 (0001ms, 1753ms total)
T3214 004:513 JLINK_ReadMemEx(0x00029FE8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00029FE8) - Data: F4 F7 6E FD 10 BD 00 00 79 06 00 20 9A 02 00 20 ...  returns 0x3C (0000ms, 1753ms total)
T3214 004:513 JLINK_ReadMemEx(0x00029FE8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FE8) - Data: F4 F7  returns 0x02 (0000ms, 1753ms total)
T3214 004:513 JLINK_ReadMemEx(0x00029FE8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00029FE8) - Data: F4 F7 6E FD 10 BD 00 00 79 06 00 20 9A 02 00 20 ...  returns 0x3C (0000ms, 1753ms total)
T3214 004:513 JLINK_ReadMemEx(0x00029FE8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FE8) - Data: F4 F7  returns 0x02 (0000ms, 1753ms total)
T3214 004:513 JLINK_ReadMemEx(0x00029FEA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FEA) - Data: 6E FD  returns 0x02 (0000ms, 1753ms total)
T3214 004:513 JLINK_ReadMemEx(0x00029FEC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00029FEC) - Data: 10 BD 00 00 79 06 00 20 9A 02 00 20 C0 08 00 20 ...  returns 0x3C (0000ms, 1753ms total)
T3214 004:513 JLINK_ReadMemEx(0x00029FEC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FEC) - Data: 10 BD  returns 0x02 (0000ms, 1753ms total)
T3214 004:513 JLINK_ReadMemEx(0x00029FEE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00029FEE) - Data: 00 00  returns 0x02 (0000ms, 1753ms total)
T3214 004:513 JLINK_ReadMemEx(0x0002A004, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0002A004) - Data: 10 B5 01 21 04 48 F0 F7 73 FF 00 22 FF 21 01 31 ...  returns 0x3C (0000ms, 1753ms total)
T3214 004:513 JLINK_ReadMemEx(0x0002A004, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0002A004) - Data: 10 B5  returns 0x02 (0000ms, 1753ms total)
T3214 004:513 JLINK_ReadMemEx(0x0002A006, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0002A006) - Data: 01 21  returns 0x02 (0000ms, 1753ms total)
T3214 004:513 JLINK_ReadMemEx(0x0002A006, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0002A006) - Data: 01 21  returns 0x02 (0000ms, 1753ms total)
T3214 004:513 JLINK_ReadMemEx(0x0002A008, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0002A040) -- Updating C cache (64 bytes @ 0x0002A040) -- Read from C cache (60 bytes @ 0x0002A008) - Data: 04 48 F0 F7 73 FF 00 22 FF 21 01 31 02 48 FA F7 ...  returns 0x3C (0002ms, 1755ms total)
T3214 004:515 JLINK_ReadMemEx(0x0002A008, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0002A008) - Data: 04 48  returns 0x02 (0000ms, 1755ms total)
T3214 004:515 JLINK_ReadMemEx(0x0002A008, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0002A008) - Data: 04 48 F0 F7 73 FF 00 22 FF 21 01 31 02 48 FA F7 ...  returns 0x3C (0000ms, 1755ms total)
T3214 004:515 JLINK_ReadMemEx(0x0002A008, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0002A008) - Data: 04 48  returns 0x02 (0000ms, 1755ms total)
T3214 004:515 JLINK_ReadMemEx(0x0002A00A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0002A00A) - Data: F0 F7  returns 0x02 (0000ms, 1755ms total)
T3214 004:515 JLINK_ReadMemEx(0x0002A00A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0002A00A) - Data: F0 F7  returns 0x02 (0000ms, 1755ms total)
T3214 004:515 JLINK_ReadMemEx(0x0002A00C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0002A00C) - Data: 73 FF 00 22 FF 21 01 31 02 48 FA F7 3B FB 10 BD ...  returns 0x3C (0000ms, 1755ms total)
T3214 004:515 JLINK_ReadMemEx(0x0002A00C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0002A00C) - Data: 73 FF  returns 0x02 (0000ms, 1755ms total)
T3214 004:515 JLINK_ReadMemEx(0x0002A00E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0002A00E) - Data: 00 22  returns 0x02 (0000ms, 1755ms total)
T3214 004:515 JLINK_ReadMemEx(0x0002A010, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0002A010) - Data: FF 21 01 31 02 48 FA F7 3B FB 10 BD 07 00 00 01 ...  returns 0x3C (0000ms, 1755ms total)
T3214 004:515 JLINK_ReadMemEx(0x0002A010, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0002A010) - Data: FF 21  returns 0x02 (0000ms, 1755ms total)
T3214 004:515 JLINK_ReadMemEx(0x0002A010, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0002A010) - Data: FF 21 01 31 02 48 FA F7 3B FB 10 BD 07 00 00 01 ...  returns 0x3C (0000ms, 1755ms total)
T3214 004:515 JLINK_ReadMemEx(0x0002A010, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0002A010) - Data: FF 21  returns 0x02 (0000ms, 1755ms total)
T3214 004:515 JLINK_ReadMemEx(0x0002A012, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0002A012) - Data: 01 31  returns 0x02 (0000ms, 1755ms total)
T3214 004:515 JLINK_ReadMemEx(0x0002A012, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0002A012) - Data: 01 31  returns 0x02 (0000ms, 1755ms total)
T3214 004:515 JLINK_ReadMemEx(0x0002A014, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0002A014) - Data: 02 48 FA F7 3B FB 10 BD 07 00 00 01 C0 0C 00 40 ...  returns 0x3C (0000ms, 1755ms total)
T3214 004:515 JLINK_ReadMemEx(0x0002A014, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0002A014) - Data: 02 48  returns 0x02 (0000ms, 1755ms total)
T3214 004:515 JLINK_ReadMemEx(0x0002A014, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0002A014) - Data: 02 48 FA F7 3B FB 10 BD 07 00 00 01 C0 0C 00 40 ...  returns 0x3C (0000ms, 1755ms total)
T3214 004:515 JLINK_ReadMemEx(0x0002A014, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0002A014) - Data: 02 48  returns 0x02 (0000ms, 1755ms total)
T3214 004:515 JLINK_ReadMemEx(0x0002A016, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0002A016) - Data: FA F7  returns 0x02 (0000ms, 1755ms total)
T3214 004:515 JLINK_ReadMemEx(0x0002A016, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0002A016) - Data: FA F7  returns 0x02 (0000ms, 1755ms total)
T3214 004:515 JLINK_ReadMemEx(0x0002A018, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0002A018) - Data: 3B FB 10 BD 07 00 00 01 C0 0C 00 40 10 B5 01 21 ...  returns 0x3C (0000ms, 1755ms total)
T3214 004:515 JLINK_ReadMemEx(0x0002A018, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0002A018) - Data: 3B FB  returns 0x02 (0000ms, 1755ms total)
T3214 004:515 JLINK_ReadMemEx(0x0002A01A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0002A01A) - Data: 10 BD  returns 0x02 (0000ms, 1755ms total)
T3214 004:515 JLINK_ReadMemEx(0x0002A01C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0002A01C) - Data: 07 00 00 01 C0 0C 00 40 10 B5 01 21 04 48 F0 F7 ...  returns 0x3C (0000ms, 1755ms total)
T3214 004:515 JLINK_ReadMemEx(0x0002A01C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0002A01C) - Data: 07 00  returns 0x02 (0000ms, 1755ms total)
T3214 004:515 JLINK_ReadMemEx(0x0002A024, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0002A024) - Data: 10 B5 01 21 04 48 F0 F7 63 FF 00 22 80 21 03 48 ...  returns 0x3C (0000ms, 1755ms total)
T3214 004:515 JLINK_ReadMemEx(0x0002A024, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0002A024) - Data: 10 B5  returns 0x02 (0000ms, 1755ms total)
T3214 004:515 JLINK_ReadMemEx(0x0002A026, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0002A026) - Data: 01 21  returns 0x02 (0000ms, 1755ms total)
T3214 004:515 JLINK_ReadMemEx(0x0002A026, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0002A026) - Data: 01 21  returns 0x02 (0000ms, 1755ms total)
T3214 004:515 JLINK_ReadMemEx(0x0002A028, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0002A028) - Data: 04 48 F0 F7 63 FF 00 22 80 21 03 48 F3 F7 8B FF ...  returns 0x3C (0000ms, 1755ms total)
T3214 004:515 JLINK_ReadMemEx(0x0002A028, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0002A028) - Data: 04 48  returns 0x02 (0000ms, 1755ms total)
T3214 004:515 JLINK_ReadMemEx(0x0002A028, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0002A028) - Data: 04 48 F0 F7 63 FF 00 22 80 21 03 48 F3 F7 8B FF ...  returns 0x3C (0000ms, 1755ms total)
T3214 004:515 JLINK_ReadMemEx(0x0002A028, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0002A028) - Data: 04 48  returns 0x02 (0000ms, 1755ms total)
T3214 004:515 JLINK_ReadMemEx(0x0002A02A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0002A02A) - Data: F0 F7  returns 0x02 (0000ms, 1755ms total)
T3214 004:515 JLINK_ReadMemEx(0x0002A02A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0002A02A) - Data: F0 F7  returns 0x02 (0000ms, 1755ms total)
T3214 004:515 JLINK_ReadMemEx(0x0002A02C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0002A02C) - Data: 63 FF 00 22 80 21 03 48 F3 F7 8B FF 10 BD 00 00 ...  returns 0x3C (0000ms, 1755ms total)
T3214 004:515 JLINK_ReadMemEx(0x0002A02C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0002A02C) - Data: 63 FF  returns 0x02 (0000ms, 1755ms total)
T3214 004:515 JLINK_ReadMemEx(0x0002A02E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0002A02E) - Data: 00 22  returns 0x02 (0000ms, 1755ms total)
T3214 004:515 JLINK_ReadMemEx(0x0002A030, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0002A030) - Data: 80 21 03 48 F3 F7 8B FF 10 BD 00 00 07 00 00 01 ...  returns 0x3C (0000ms, 1755ms total)
T3214 004:515 JLINK_ReadMemEx(0x0002A030, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0002A030) - Data: 80 21  returns 0x02 (0000ms, 1755ms total)
T3214 004:515 JLINK_ReadMemEx(0x0002A030, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0002A030) - Data: 80 21 03 48 F3 F7 8B FF 10 BD 00 00 07 00 00 01 ...  returns 0x3C (0000ms, 1755ms total)
T3214 004:515 JLINK_ReadMemEx(0x0002A030, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0002A030) - Data: 80 21  returns 0x02 (0000ms, 1755ms total)
T3214 004:515 JLINK_ReadMemEx(0x0002A032, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0002A032) - Data: 03 48  returns 0x02 (0000ms, 1755ms total)
T3214 004:515 JLINK_ReadMemEx(0x0002A032, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0002A032) - Data: 03 48  returns 0x02 (0000ms, 1755ms total)
T3214 004:515 JLINK_ReadMemEx(0x0002A034, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0002A034) - Data: F3 F7 8B FF 10 BD 00 00 07 00 00 01 80 0D 00 40 ...  returns 0x3C (0000ms, 1755ms total)
T3214 004:515 JLINK_ReadMemEx(0x0002A034, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0002A034) - Data: F3 F7  returns 0x02 (0000ms, 1755ms total)
T3214 004:515 JLINK_ReadMemEx(0x0002A034, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0002A034) - Data: F3 F7 8B FF 10 BD 00 00 07 00 00 01 80 0D 00 40 ...  returns 0x3C (0000ms, 1755ms total)
T3214 004:515 JLINK_ReadMemEx(0x0002A034, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0002A034) - Data: F3 F7  returns 0x02 (0000ms, 1755ms total)
T3214 004:515 JLINK_ReadMemEx(0x0002A036, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0002A036) - Data: 8B FF  returns 0x02 (0000ms, 1755ms total)
T3214 004:515 JLINK_ReadMemEx(0x0002A038, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0002A038) - Data: 10 BD 00 00 07 00 00 01 80 0D 00 40 1C B5 FC F7 ...  returns 0x3C (0000ms, 1755ms total)
T3214 004:515 JLINK_ReadMemEx(0x0002A038, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0002A038) - Data: 10 BD  returns 0x02 (0000ms, 1755ms total)
T3214 004:515 JLINK_ReadMemEx(0x0002A03A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0002A03A) - Data: 00 00  returns 0x02 (0000ms, 1755ms total)
T3214 004:515 JLINK_ReadMemEx(0x0002A042, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0002A042) - Data: 00 40  returns 0x02 (0000ms, 1755ms total)
T3214 004:515 JLINK_ReadMemEx(0x0002A044, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0002A044) - Data: 1C B5 FC F7 B5 FF FF F7 E5 FE 01 F0 89 F8 01 F0 ...  returns 0x3C (0000ms, 1755ms total)
T3214 004:515 JLINK_ReadMemEx(0x0002A044, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0002A044) - Data: 1C B5  returns 0x02 (0000ms, 1755ms total)
T3214 004:515 JLINK_ReadMemEx(0x0002A044, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0002A044) - Data: 1C B5 FC F7 B5 FF FF F7 E5 FE 01 F0 89 F8 01 F0 ...  returns 0x3C (0000ms, 1755ms total)
T3214 004:515 JLINK_ReadMemEx(0x0002A044, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0002A044) - Data: 1C B5  returns 0x02 (0000ms, 1755ms total)
T3214 004:515 JLINK_ReadMemEx(0x0002A046, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0002A046) - Data: FC F7  returns 0x02 (0000ms, 1755ms total)
T3214 005:936 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200002C0) -- Updating C cache (64 bytes @ 0x200002C0) -- Read from C cache (1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0002ms, 1757ms total)
T3214 005:938 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200002CD) - Data: 01  returns 0x01 (0000ms, 1757ms total)
T3214 005:938 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200002CE) - Data: 01  returns 0x01 (0000ms, 1757ms total)
T3214 005:938 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200002CF) - Data: 00  returns 0x01 (0000ms, 1757ms total)
T3214 005:938 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200002D0) - Data: 00  returns 0x01 (0000ms, 1757ms total)
T3214 005:938 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200002D1) - Data: 00  returns 0x01 (0000ms, 1757ms total)
T3214 005:938 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0000ms, 1757ms total)
T3214 005:938 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200002CD) - Data: 01  returns 0x01 (0000ms, 1757ms total)
T3214 005:938 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200002CE) - Data: 01  returns 0x01 (0000ms, 1757ms total)
T3214 005:938 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200002CF) - Data: 00  returns 0x01 (0000ms, 1757ms total)
T3214 005:938 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200002D0) - Data: 00  returns 0x01 (0000ms, 1757ms total)
T3214 005:938 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200002D1) - Data: 00  returns 0x01 (0000ms, 1757ms total)
T3214 005:943 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0000ms, 1757ms total)
T3214 005:943 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200002CD) - Data: 01  returns 0x01 (0000ms, 1757ms total)
T3214 005:943 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200002CE) - Data: 01  returns 0x01 (0000ms, 1757ms total)
T3214 005:943 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200002CF) - Data: 00  returns 0x01 (0000ms, 1757ms total)
T3214 005:943 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200002D0) - Data: 00  returns 0x01 (0000ms, 1757ms total)
T3214 005:943 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200002D1) - Data: 00  returns 0x01 (0000ms, 1757ms total)
T1720 008:994 JLINK_ReadMemEx(0x0002A044, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0002A044) - Data: 1C B5  returns 0x02 (0000ms, 1757ms total)
T1720 008:994 JLINK_Go() -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) (0004ms, 1761ms total)
T1720 009:099 JLINK_IsHalted()  returns FALSE (0001ms, 1762ms total)
T1720 009:200 JLINK_IsHalted()  returns FALSE (0001ms, 1762ms total)
T1720 009:302 JLINK_IsHalted()  returns FALSE (0000ms, 1761ms total)
T1720 009:403 JLINK_IsHalted()  returns FALSE (0000ms, 1761ms total)
T3214 009:504 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 1762ms total)
T3214 009:505 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0000ms, 1762ms total)
T3214 009:505 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 1763ms total)
T3214 009:506 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 1764ms total)
T3214 009:507 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0001ms, 1765ms total)
T3214 009:508 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 22  returns 0x01 (0001ms, 1766ms total)
T1720 009:510 JLINK_IsHalted()  returns FALSE (0001ms, 1767ms total)
T1720 009:611 JLINK_IsHalted()  returns FALSE (0001ms, 1767ms total)
T1720 009:713 JLINK_IsHalted()  returns FALSE (0000ms, 1766ms total)
T1720 009:814 JLINK_IsHalted()  returns FALSE (0000ms, 1766ms total)
T1720 009:916 JLINK_IsHalted()  returns FALSE (0001ms, 1767ms total)
T3214 010:017 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 1767ms total)
T3214 010:018 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 1768ms total)
T3214 010:019 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 1769ms total)
T3214 010:020 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0000ms, 1769ms total)
T3214 010:020 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0001ms, 1770ms total)
T3214 010:021 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 23  returns 0x01 (0001ms, 1771ms total)
T1720 010:023 JLINK_IsHalted()  returns FALSE (0001ms, 1772ms total)
T1720 010:124 JLINK_IsHalted()  returns FALSE (0000ms, 1771ms total)
T1720 010:226 JLINK_IsHalted()  returns FALSE (0001ms, 1772ms total)
T1720 010:327 JLINK_IsHalted()  returns FALSE (0000ms, 1771ms total)
T1720 010:428 JLINK_IsHalted()  returns FALSE (0001ms, 1772ms total)
T1720 010:529 JLINK_IsHalted()  returns FALSE (0000ms, 1771ms total)
T3214 010:631 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 1772ms total)
T3214 010:632 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 1773ms total)
T3214 010:633 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 1774ms total)
T3214 010:634 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 1775ms total)
T3214 010:635 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0001ms, 1776ms total)
T3214 010:636 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 23  returns 0x01 (0001ms, 1777ms total)
T1720 010:640 JLINK_IsHalted()  returns FALSE (0001ms, 1778ms total)
T1720 010:741 JLINK_IsHalted()  returns FALSE (0001ms, 1778ms total)
T1720 010:843 JLINK_IsHalted()  returns FALSE (0001ms, 1778ms total)
T1720 010:945 JLINK_IsHalted()  returns FALSE (0001ms, 1778ms total)
T1720 011:046 JLINK_IsHalted()  returns FALSE (0001ms, 1778ms total)
T3214 011:147 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 1778ms total)
T3214 011:148 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0000ms, 1778ms total)
T3214 011:148 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 1779ms total)
T3214 011:149 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 1780ms total)
T3214 011:150 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0000ms, 1780ms total)
T3214 011:150 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 24  returns 0x01 (0002ms, 1782ms total)
T1720 011:154 JLINK_IsHalted()  returns FALSE (0000ms, 1782ms total)
T1720 011:256 JLINK_IsHalted()  returns FALSE (0000ms, 1782ms total)
T1720 011:357 JLINK_IsHalted()  returns FALSE (0001ms, 1783ms total)
T1720 011:459 JLINK_IsHalted()  returns FALSE (0001ms, 1783ms total)
T1720 011:561 JLINK_IsHalted()  returns FALSE (0001ms, 1783ms total)
T3214 011:663 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0002ms, 1784ms total)
T3214 011:665 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 1785ms total)
T3214 011:666 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 1786ms total)
T3214 011:667 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 1787ms total)
T3214 011:668 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0001ms, 1788ms total)
T3214 011:669 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 24  returns 0x01 (0001ms, 1789ms total)
T1720 011:673 JLINK_IsHalted()  returns FALSE (0001ms, 1790ms total)
T1720 011:774 JLINK_IsHalted()  returns FALSE (0001ms, 1790ms total)
T1720 011:876 JLINK_IsHalted()  returns FALSE (0000ms, 1789ms total)
T1720 011:977 JLINK_IsHalted()  returns FALSE (0001ms, 1790ms total)
T1720 012:080 JLINK_IsHalted()  returns FALSE (0000ms, 1789ms total)
T3214 012:180 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 1790ms total)
T3214 012:181 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 1791ms total)
T3214 012:182 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 1792ms total)
T3214 012:183 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 1793ms total)
T3214 012:184 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0001ms, 1794ms total)
T3214 012:185 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 25  returns 0x01 (0000ms, 1794ms total)
T1720 012:188 JLINK_IsHalted()  returns FALSE (0001ms, 1795ms total)
T1720 012:290 JLINK_IsHalted()  returns FALSE (0000ms, 1794ms total)
T1720 012:391 JLINK_IsHalted()  returns FALSE (0000ms, 1794ms total)
T1720 012:492 JLINK_IsHalted()  returns FALSE (0001ms, 1795ms total)
T1720 012:593 JLINK_IsHalted()  returns FALSE (0001ms, 1795ms total)
T3214 012:695 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 1795ms total)
T3214 012:696 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 1796ms total)
T3214 012:697 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 1797ms total)
T3214 012:698 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 1798ms total)
T3214 012:699 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0000ms, 1798ms total)
T3214 012:699 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 25  returns 0x01 (0001ms, 1799ms total)
T1720 012:703 JLINK_IsHalted()  returns FALSE (0001ms, 1800ms total)
T1720 012:804 JLINK_IsHalted()  returns FALSE (0000ms, 1799ms total)
T1720 012:906 JLINK_IsHalted()  returns FALSE (0001ms, 1800ms total)
T1720 013:007 JLINK_IsHalted()  returns FALSE (0001ms, 1800ms total)
T1720 013:109 JLINK_IsHalted()  returns FALSE (0001ms, 1800ms total)
T3214 013:210 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 1800ms total)
T3214 013:211 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 1801ms total)
T3214 013:212 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 1802ms total)
T3214 013:213 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0000ms, 1802ms total)
T3214 013:213 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0001ms, 1803ms total)
T3214 013:214 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 26  returns 0x01 (0001ms, 1804ms total)
T1720 013:217 JLINK_IsHalted()  returns FALSE (0001ms, 1805ms total)
T1720 013:319 JLINK_IsHalted()  returns FALSE (0001ms, 1805ms total)
T1720 013:420 JLINK_IsHalted()  returns FALSE (0001ms, 1805ms total)
T1720 013:522 JLINK_IsHalted()  returns FALSE (0001ms, 1805ms total)
T1720 013:623 JLINK_IsHalted()  returns FALSE (0001ms, 1805ms total)
T3214 013:725 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 1805ms total)
T3214 013:726 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 1806ms total)
T3214 013:727 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 1807ms total)
T3214 013:728 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0000ms, 1807ms total)
T3214 013:728 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0001ms, 1808ms total)
T3214 013:729 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 26  returns 0x01 (0001ms, 1809ms total)
T1720 013:734 JLINK_IsHalted()  returns FALSE (0001ms, 1810ms total)
T1720 013:835 JLINK_IsHalted()  returns FALSE (0000ms, 1809ms total)
T1720 013:936 JLINK_IsHalted()  returns FALSE (0001ms, 1810ms total)
T1720 014:038 JLINK_IsHalted()  returns FALSE (0000ms, 1809ms total)
T1720 014:139 JLINK_IsHalted()  returns FALSE (0000ms, 1809ms total)
T3214 014:240 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0000ms, 1809ms total)
T3214 014:240 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0002ms, 1811ms total)
T3214 014:242 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 1812ms total)
T3214 014:243 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0000ms, 1812ms total)
T3214 014:243 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0001ms, 1813ms total)
T3214 014:244 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 27  returns 0x01 (0001ms, 1814ms total)
T1720 014:246 JLINK_IsHalted()  returns FALSE (0000ms, 1814ms total)
T1720 014:348 JLINK_IsHalted()  returns FALSE (0001ms, 1815ms total)
T1720 014:449 JLINK_IsHalted()  returns FALSE (0001ms, 1815ms total)
T1720 014:551 JLINK_IsHalted()  returns FALSE (0001ms, 1815ms total)
T1720 014:652 JLINK_IsHalted()  returns FALSE (0000ms, 1814ms total)
T3214 014:753 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0000ms, 1814ms total)
T3214 014:753 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 1815ms total)
T3214 014:754 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0002ms, 1817ms total)
T3214 014:756 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0000ms, 1817ms total)
T3214 014:756 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0001ms, 1818ms total)
T3214 014:757 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 27  returns 0x01 (0000ms, 1818ms total)
T1720 014:759 JLINK_IsHalted()  returns FALSE (0001ms, 1819ms total)
T1720 014:860 JLINK_IsHalted()  returns FALSE (0001ms, 1819ms total)
T1720 014:961 JLINK_IsHalted()  returns FALSE (0001ms, 1819ms total)
T1720 015:062 JLINK_IsHalted()  returns FALSE (0001ms, 1819ms total)
T1720 015:164 JLINK_IsHalted()  returns FALSE (0001ms, 1819ms total)
T3214 015:266 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 1819ms total)
T3214 015:267 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 1820ms total)
T3214 015:268 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0000ms, 1820ms total)
T3214 015:268 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 1821ms total)
T3214 015:269 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0001ms, 1822ms total)
T3214 015:270 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 28  returns 0x01 (0001ms, 1823ms total)
T1720 015:273 JLINK_IsHalted()  returns FALSE (0001ms, 1824ms total)
T1720 015:375 JLINK_IsHalted()  returns FALSE (0001ms, 1824ms total)
T1720 015:477 JLINK_IsHalted()  returns FALSE (0001ms, 1824ms total)
T1720 015:578 JLINK_IsHalted()  returns FALSE (0001ms, 1824ms total)
T1720 015:680 JLINK_IsHalted()  returns FALSE (0001ms, 1824ms total)
T3214 015:782 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0002ms, 1825ms total)
T3214 015:784 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 1826ms total)
T3214 015:785 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 1827ms total)
T3214 015:786 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 1828ms total)
T3214 015:787 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0001ms, 1829ms total)
T3214 015:788 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 28  returns 0x01 (0001ms, 1830ms total)
T1720 015:792 JLINK_IsHalted()  returns FALSE (0001ms, 1831ms total)
T1720 015:894 JLINK_IsHalted()  returns FALSE (0001ms, 1831ms total)
T1720 015:995 JLINK_IsHalted()  returns FALSE (0000ms, 1830ms total)
T1720 016:096 JLINK_IsHalted()  returns FALSE (0000ms, 1830ms total)
T1720 016:198 JLINK_IsHalted()  returns FALSE (0000ms, 1830ms total)
T3214 016:299 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0000ms, 1830ms total)
T3214 016:299 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 1831ms total)
T3214 016:300 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 1832ms total)
T3214 016:301 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 1833ms total)
T3214 016:302 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0000ms, 1833ms total)
T3214 016:302 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 29  returns 0x01 (0001ms, 1834ms total)
T1720 016:304 JLINK_IsHalted()  returns FALSE (0001ms, 1835ms total)
T1720 016:405 JLINK_IsHalted()  returns FALSE (0001ms, 1835ms total)
T1720 016:507 JLINK_IsHalted()  returns FALSE (0001ms, 1835ms total)
T1720 016:608 JLINK_IsHalted()  returns FALSE (0001ms, 1835ms total)
T1720 016:709 JLINK_IsHalted()  returns FALSE (0002ms, 1836ms total)
T1720 016:812 JLINK_IsHalted()  returns FALSE (0001ms, 1835ms total)
T3214 016:914 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 1835ms total)
T3214 016:915 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 1836ms total)
T3214 016:916 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 1837ms total)
T3214 016:917 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0000ms, 1837ms total)
T3214 016:917 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0001ms, 1838ms total)
T3214 016:918 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 29  returns 0x01 (0001ms, 1839ms total)
T1720 016:923 JLINK_IsHalted()  returns FALSE (0000ms, 1839ms total)
T1720 017:025 JLINK_IsHalted()  returns FALSE (0000ms, 1839ms total)
T1720 017:126 JLINK_IsHalted()  returns FALSE (0000ms, 1839ms total)
T1720 017:227 JLINK_IsHalted()  returns FALSE (0001ms, 1840ms total)
T1720 017:329 JLINK_IsHalted()  returns FALSE (0000ms, 1839ms total)
T3214 017:431 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0000ms, 1839ms total)
T3214 017:431 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 1840ms total)
T3214 017:432 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 1841ms total)
T3214 017:433 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 1842ms total)
T3214 017:434 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0000ms, 1842ms total)
T3214 017:434 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 30  returns 0x01 (0001ms, 1843ms total)
T1720 017:436 JLINK_IsHalted()  returns FALSE (0001ms, 1844ms total)
T1720 017:538 JLINK_IsHalted()  returns FALSE (0000ms, 1843ms total)
T1720 017:639 JLINK_IsHalted()  returns FALSE (0000ms, 1843ms total)
T1720 017:740 JLINK_IsHalted()  returns FALSE (0000ms, 1843ms total)
T1720 017:841 JLINK_IsHalted()  returns FALSE (0001ms, 1844ms total)
T3214 017:942 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0000ms, 1843ms total)
T3214 017:942 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 1844ms total)
T3214 017:943 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 1845ms total)
T3214 017:944 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 1846ms total)
T3214 017:945 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0001ms, 1847ms total)
T3214 017:946 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 30  returns 0x01 (0000ms, 1847ms total)
T1720 017:947 JLINK_IsHalted()  returns FALSE (0002ms, 1849ms total)
T1720 018:049 JLINK_IsHalted()  returns FALSE (0000ms, 1847ms total)
T1720 018:151 JLINK_IsHalted()  returns FALSE (0000ms, 1847ms total)
T1720 018:252 JLINK_IsHalted()  returns FALSE (0001ms, 1848ms total)
T1720 018:353 JLINK_IsHalted()  returns FALSE (0001ms, 1848ms total)
T3214 018:456 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 1848ms total)
T3214 018:457 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 1849ms total)
T3214 018:458 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 1850ms total)
T3214 018:459 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 1851ms total)
T3214 018:460 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0001ms, 1852ms total)
T3214 018:461 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 31  returns 0x01 (0001ms, 1853ms total)
T1720 018:468 JLINK_IsHalted()  returns FALSE (0001ms, 1854ms total)
T1720 018:570 JLINK_IsHalted()  returns FALSE (0001ms, 1854ms total)
T1720 018:671 JLINK_IsHalted()  returns FALSE (0000ms, 1853ms total)
T1720 018:773 JLINK_IsHalted()  returns FALSE (0001ms, 1854ms total)
T1720 018:874 JLINK_IsHalted()  returns FALSE (0001ms, 1854ms total)
T3214 018:975 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 1854ms total)
T3214 018:976 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 1855ms total)
T3214 018:977 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 1856ms total)
T3214 018:978 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 1857ms total)
T3214 018:979 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0001ms, 1858ms total)
T3214 018:980 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 31  returns 0x01 (0001ms, 1859ms total)
T1720 018:985 JLINK_IsHalted()  returns FALSE (0001ms, 1860ms total)
T1720 019:087 JLINK_IsHalted()  returns FALSE (0001ms, 1860ms total)
T1720 019:188 JLINK_IsHalted()  returns FALSE (0001ms, 1860ms total)
T1720 019:290 JLINK_IsHalted()  returns FALSE (0001ms, 1860ms total)
T1720 019:392 JLINK_IsHalted()  returns FALSE (0001ms, 1860ms total)
T3214 019:493 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 1860ms total)
T3214 019:494 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0000ms, 1860ms total)
T3214 019:494 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 1861ms total)
T3214 019:495 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0000ms, 1861ms total)
T3214 019:495 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0002ms, 1863ms total)
T3214 019:497 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 32  returns 0x01 (0000ms, 1863ms total)
T1720 019:499 JLINK_IsHalted()  returns FALSE (0001ms, 1864ms total)
T1720 019:601 JLINK_IsHalted()  returns FALSE (0001ms, 1864ms total)
T1720 019:702 JLINK_IsHalted()  returns FALSE (0001ms, 1864ms total)
T1720 019:803 JLINK_IsHalted()  returns FALSE (0001ms, 1864ms total)
T1720 019:904 JLINK_IsHalted()  returns FALSE (0002ms, 1865ms total)
T3214 020:006 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 1864ms total)
T3214 020:007 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 1865ms total)
T3214 020:008 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0000ms, 1865ms total)
T3214 020:008 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0002ms, 1867ms total)
T3214 020:010 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0000ms, 1867ms total)
T3214 020:010 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 33  returns 0x01 (0001ms, 1868ms total)
T1720 020:013 JLINK_IsHalted()  returns FALSE (0002ms, 1870ms total)
T1720 020:115 JLINK_IsHalted()  returns FALSE (0001ms, 1869ms total)
T1720 020:217 JLINK_IsHalted()  returns FALSE (0001ms, 1869ms total)
T1720 020:319 JLINK_IsHalted()  returns FALSE (0000ms, 1868ms total)
T1720 020:420 JLINK_IsHalted()  returns FALSE (0000ms, 1868ms total)
T3214 020:521 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 1869ms total)
T3214 020:522 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 1870ms total)
T3214 020:523 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 1871ms total)
T3214 020:524 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0000ms, 1871ms total)
T3214 020:524 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0001ms, 1872ms total)
T3214 020:525 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 33  returns 0x01 (0001ms, 1873ms total)
T1720 020:527 JLINK_IsHalted()  returns FALSE (0001ms, 1874ms total)
T1720 020:629 JLINK_IsHalted()  returns FALSE (0000ms, 1873ms total)
T1720 020:730 JLINK_IsHalted()  returns FALSE (0001ms, 1874ms total)
T1720 020:831 JLINK_IsHalted()  returns FALSE (0001ms, 1874ms total)
T1720 020:933 JLINK_IsHalted()  returns FALSE (0001ms, 1874ms total)
T3214 021:034 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 1874ms total)
T3214 021:035 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 1875ms total)
T3214 021:036 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 1876ms total)
T3214 021:037 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 1877ms total)
T3214 021:038 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0000ms, 1877ms total)
T3214 021:038 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 34  returns 0x01 (0001ms, 1878ms total)
T1720 021:043 JLINK_IsHalted()  returns FALSE (0001ms, 1879ms total)
T1720 021:144 JLINK_IsHalted()  returns FALSE (0001ms, 1879ms total)
T1720 021:246 JLINK_IsHalted()  returns FALSE (0001ms, 1879ms total)
T1720 021:348 JLINK_IsHalted()  returns FALSE (0001ms, 1879ms total)
T1720 021:449 JLINK_IsHalted()  returns FALSE (0001ms, 1879ms total)
T3214 021:552 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 1879ms total)
T3214 021:553 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0000ms, 1879ms total)
T3214 021:553 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 1880ms total)
T3214 021:554 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 1881ms total)
T3214 021:555 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0001ms, 1882ms total)
T3214 021:556 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 34  returns 0x01 (0001ms, 1883ms total)
T1720 021:559 JLINK_IsHalted()  returns FALSE (0001ms, 1884ms total)
T1720 021:661 JLINK_IsHalted()  returns FALSE (0000ms, 1883ms total)
T1720 021:762 JLINK_IsHalted()  returns FALSE (0000ms, 1883ms total)
T1720 021:863 JLINK_IsHalted()  returns FALSE (0000ms, 1883ms total)
T1720 021:964 JLINK_IsHalted()  returns FALSE (0000ms, 1883ms total)
T3214 022:065 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0000ms, 1883ms total)
T3214 022:065 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 1884ms total)
T3214 022:066 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 1885ms total)
T3214 022:067 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 1886ms total)
T3214 022:068 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0000ms, 1886ms total)
T3214 022:068 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 35  returns 0x01 (0001ms, 1887ms total)
T1720 022:070 JLINK_IsHalted()  returns FALSE (0001ms, 1888ms total)
T1720 022:172 JLINK_IsHalted()  returns FALSE (0000ms, 1887ms total)
T1720 022:273 JLINK_IsHalted()  returns FALSE (0001ms, 1888ms total)
T1720 022:375 JLINK_IsHalted()  returns FALSE (0001ms, 1888ms total)
T1720 022:476 JLINK_IsHalted()  returns FALSE (0001ms, 1888ms total)
T1720 022:577 JLINK_IsHalted()  returns FALSE (0001ms, 1888ms total)
T3214 022:679 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 1888ms total)
T3214 022:680 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 1889ms total)
T3214 022:681 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 1890ms total)
T3214 022:682 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 1891ms total)
T3214 022:683 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0000ms, 1891ms total)
T3214 022:683 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 35  returns 0x01 (0001ms, 1892ms total)
T1720 022:687 JLINK_IsHalted()  returns FALSE (0001ms, 1893ms total)
T1720 022:789 JLINK_IsHalted()  returns FALSE (0000ms, 1892ms total)
T1720 022:890 JLINK_IsHalted()  returns FALSE (0000ms, 1892ms total)
T1720 022:991 JLINK_IsHalted()  returns FALSE (0000ms, 1892ms total)
T1720 023:092 JLINK_IsHalted()  returns FALSE (0000ms, 1892ms total)
T3214 023:193 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0000ms, 1892ms total)
T3214 023:193 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 1893ms total)
T3214 023:194 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 1894ms total)
T3214 023:195 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0000ms, 1894ms total)
T3214 023:195 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0001ms, 1895ms total)
T3214 023:196 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 36  returns 0x01 (0001ms, 1896ms total)
T1720 023:198 JLINK_IsHalted()  returns FALSE (0001ms, 1897ms total)
T1720 023:301 JLINK_IsHalted()  returns FALSE (0001ms, 1897ms total)
T1720 023:402 JLINK_IsHalted()  returns FALSE (0000ms, 1896ms total)
T1720 023:504 JLINK_IsHalted()  returns FALSE (0000ms, 1896ms total)
T1720 023:605 JLINK_IsHalted()  returns FALSE (0001ms, 1897ms total)
T3214 023:706 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 1897ms total)
T3214 023:707 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 1898ms total)
T3214 023:708 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 1899ms total)
T3214 023:709 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 1900ms total)
T3214 023:710 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0001ms, 1901ms total)
T3214 023:711 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 36  returns 0x01 (0000ms, 1901ms total)
T1720 023:712 JLINK_IsHalted()  returns FALSE (0001ms, 1902ms total)
T1720 023:814 JLINK_IsHalted()  returns FALSE (0001ms, 1902ms total)
T1720 023:915 JLINK_IsHalted()  returns FALSE (0001ms, 1902ms total)
T1720 024:017 JLINK_IsHalted()  returns FALSE (0001ms, 1902ms total)
T1720 024:118 JLINK_IsHalted()  returns FALSE (0000ms, 1901ms total)
T3214 024:219 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 1902ms total)
T3214 024:220 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 1903ms total)
T3214 024:221 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 1904ms total)
T3214 024:222 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0000ms, 1904ms total)
T3214 024:222 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0001ms, 1905ms total)
T3214 024:223 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 37  returns 0x01 (0001ms, 1906ms total)
T1720 024:225 JLINK_IsHalted()  returns FALSE (0001ms, 1907ms total)
T1720 024:326 JLINK_IsHalted()  returns FALSE (0000ms, 1906ms total)
T1720 024:428 JLINK_IsHalted()  returns FALSE (0001ms, 1907ms total)
T1720 024:529 JLINK_IsHalted()  returns FALSE (0001ms, 1907ms total)
T1720 024:631 JLINK_IsHalted()  returns FALSE (0001ms, 1907ms total)
T1720 024:733 JLINK_IsHalted()  returns FALSE (0000ms, 1906ms total)
T3214 024:835 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0002ms, 1908ms total)
T3214 024:837 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 1909ms total)
T3214 024:838 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 1910ms total)
T3214 024:839 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 1911ms total)
T3214 024:840 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0001ms, 1912ms total)
T3214 024:841 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 37  returns 0x01 (0001ms, 1913ms total)
T1720 024:844 JLINK_IsHalted()  returns FALSE (0001ms, 1914ms total)
T1720 024:945 JLINK_IsHalted()  returns FALSE (0001ms, 1914ms total)
T1720 025:047 JLINK_IsHalted()  returns FALSE (0001ms, 1914ms total)
T1720 025:148 JLINK_IsHalted()  returns FALSE (0001ms, 1914ms total)
T1720 025:250 JLINK_IsHalted()  returns FALSE (0000ms, 1913ms total)
T3214 025:352 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0000ms, 1913ms total)
T3214 025:352 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0002ms, 1915ms total)
T3214 025:354 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0000ms, 1915ms total)
T3214 025:354 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 1916ms total)
T3214 025:355 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0000ms, 1916ms total)
T3214 025:355 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 38  returns 0x01 (0002ms, 1918ms total)
T1720 025:359 JLINK_IsHalted()  returns FALSE (0001ms, 1919ms total)
T1720 025:460 JLINK_IsHalted()  returns FALSE (0001ms, 1919ms total)
T1720 025:561 JLINK_IsHalted()  returns FALSE (0001ms, 1919ms total)
T1720 025:662 JLINK_IsHalted()  returns FALSE (0001ms, 1919ms total)
T1720 025:763 JLINK_IsHalted()  returns FALSE (0001ms, 1919ms total)
T3214 025:865 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0002ms, 1920ms total)
T3214 025:867 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 1921ms total)
T3214 025:868 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0000ms, 1921ms total)
T3214 025:868 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 1922ms total)
T3214 025:869 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0001ms, 1923ms total)
T3214 025:870 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 38  returns 0x01 (0001ms, 1924ms total)
T1720 025:875 JLINK_IsHalted()  returns FALSE (0001ms, 1925ms total)
T1720 025:976 JLINK_IsHalted()  returns FALSE (0000ms, 1924ms total)
T1720 026:077 JLINK_IsHalted()  returns FALSE (0000ms, 1924ms total)
T1720 026:178 JLINK_IsHalted()  returns FALSE (0000ms, 1924ms total)
T1720 026:279 JLINK_IsHalted()  returns FALSE (0001ms, 1925ms total)
T3214 026:383 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 1925ms total)
T3214 026:384 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 1926ms total)
T3214 026:386 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 1927ms total)
T3214 026:387 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 1928ms total)
T3214 026:388 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0001ms, 1929ms total)
T3214 026:389 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 39  returns 0x01 (0000ms, 1929ms total)
T1720 026:393 JLINK_IsHalted()  returns FALSE (0001ms, 1930ms total)
T1720 026:495 JLINK_IsHalted()  returns FALSE (0001ms, 1930ms total)
T1720 026:597 JLINK_IsHalted()  returns FALSE (0001ms, 1930ms total)
T1720 026:699 JLINK_IsHalted()  returns FALSE (0001ms, 1930ms total)
T1720 026:800 JLINK_IsHalted()  returns FALSE (0001ms, 1930ms total)
T3214 026:902 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 1930ms total)
T3214 026:903 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 1931ms total)
T3214 026:904 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0000ms, 1931ms total)
T3214 026:904 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0002ms, 1933ms total)
T3214 026:906 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0000ms, 1933ms total)
T3214 026:906 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 39  returns 0x01 (0001ms, 1934ms total)
T1720 026:913 JLINK_IsHalted()  returns FALSE (0001ms, 1935ms total)
T1720 027:014 JLINK_IsHalted()  returns FALSE (0000ms, 1934ms total)
T1720 027:116 JLINK_IsHalted()  returns FALSE (0001ms, 1935ms total)
T1720 027:217 JLINK_IsHalted()  returns FALSE (0000ms, 1934ms total)
T1720 027:318 JLINK_IsHalted()  returns FALSE (0001ms, 1935ms total)
T3214 027:419 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 1935ms total)
T3214 027:420 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 1936ms total)
T3214 027:421 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 1937ms total)
T3214 027:422 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 1938ms total)
T3214 027:424 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0001ms, 1939ms total)
T3214 027:425 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 40  returns 0x01 (0001ms, 1940ms total)
T1720 027:433 JLINK_IsHalted()  returns FALSE (0001ms, 1941ms total)
T1720 027:535 JLINK_IsHalted()  returns FALSE (0000ms, 1940ms total)
T1720 027:636 JLINK_IsHalted()  returns FALSE (0001ms, 1941ms total)
T1720 027:738 JLINK_IsHalted()  returns FALSE (0001ms, 1941ms total)
T1720 027:840 JLINK_IsHalted()  returns FALSE (0001ms, 1941ms total)
T3214 027:942 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 1941ms total)
T3214 027:943 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 1942ms total)
T3214 027:944 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0000ms, 1942ms total)
T3214 027:944 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 1943ms total)
T3214 027:945 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0001ms, 1944ms total)
T3214 027:946 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 40  returns 0x01 (0000ms, 1944ms total)
T1720 027:949 JLINK_IsHalted()  returns FALSE (0001ms, 1945ms total)
T1720 028:051 JLINK_IsHalted()  returns FALSE (0001ms, 1945ms total)
T1720 028:152 JLINK_IsHalted()  returns FALSE (0001ms, 1945ms total)
T1720 028:254 JLINK_IsHalted()  returns FALSE (0001ms, 1945ms total)
T1720 028:355 JLINK_IsHalted()  returns FALSE (0000ms, 1944ms total)
T3214 028:456 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 1945ms total)
T3214 028:457 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 1946ms total)
T3214 028:458 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0000ms, 1946ms total)
T3214 028:458 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 1947ms total)
T3214 028:459 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0001ms, 1948ms total)
T3214 028:460 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 41  returns 0x01 (0000ms, 1948ms total)
T1720 028:462 JLINK_IsHalted()  returns FALSE (0000ms, 1948ms total)
T1720 028:563 JLINK_IsHalted()  returns FALSE (0000ms, 1948ms total)
T1720 028:664 JLINK_IsHalted()  returns FALSE (0001ms, 1949ms total)
T1720 028:765 JLINK_IsHalted()  returns FALSE (0001ms, 1949ms total)
T1720 028:866 JLINK_IsHalted()  returns FALSE (0000ms, 1948ms total)
T1720 028:967 JLINK_IsHalted()  returns FALSE (0000ms, 1948ms total)
T3214 029:068 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0000ms, 1948ms total)
T3214 029:068 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 1949ms total)
T3214 029:069 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 1950ms total)
T3214 029:070 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 1951ms total)
T3214 029:071 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0000ms, 1951ms total)
T3214 029:071 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 42  returns 0x01 (0001ms, 1952ms total)
T1720 029:074 JLINK_IsHalted()  returns FALSE (0001ms, 1953ms total)
T1720 029:176 JLINK_IsHalted()  returns FALSE (0000ms, 1952ms total)
T1720 029:277 JLINK_IsHalted()  returns FALSE (0001ms, 1953ms total)
T1720 029:378 JLINK_IsHalted()  returns FALSE (0001ms, 1953ms total)
T1720 029:479 JLINK_IsHalted()  returns FALSE (0000ms, 1952ms total)
T3214 029:580 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 1953ms total)
T3214 029:581 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 1954ms total)
T3214 029:583 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0000ms, 1954ms total)
T3214 029:583 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 1955ms total)
T3214 029:584 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0002ms, 1957ms total)
T3214 029:586 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 42  returns 0x01 (0000ms, 1957ms total)
T1720 029:590 JLINK_IsHalted()  returns FALSE (0001ms, 1958ms total)
T1720 029:692 JLINK_IsHalted()  returns FALSE (0001ms, 1958ms total)
T1720 029:793 JLINK_IsHalted()  returns FALSE (0001ms, 1958ms total)
T1720 029:895 JLINK_IsHalted()  returns FALSE (0001ms, 1958ms total)
T1720 029:996 JLINK_IsHalted()  returns FALSE (0000ms, 1957ms total)
T3214 030:097 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 1958ms total)
T3214 030:098 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 1959ms total)
T3214 030:099 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0000ms, 1959ms total)
T3214 030:100 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0000ms, 1960ms total)
T3214 030:100 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0001ms, 1961ms total)
T3214 030:101 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 43  returns 0x01 (0001ms, 1962ms total)
T1720 030:103 JLINK_IsHalted()  returns FALSE (0001ms, 1963ms total)
T1720 030:205 JLINK_IsHalted()  returns FALSE (0000ms, 1962ms total)
T1720 030:307 JLINK_IsHalted()  returns FALSE (0000ms, 1962ms total)
T1720 030:408 JLINK_IsHalted()  returns FALSE (0000ms, 1962ms total)
T1720 030:509 JLINK_IsHalted()  returns FALSE (0000ms, 1962ms total)
T3214 030:610 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 1963ms total)
T3214 030:611 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0000ms, 1963ms total)
T3214 030:611 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 1964ms total)
T3214 030:612 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 1965ms total)
T3214 030:613 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0001ms, 1966ms total)
T3214 030:614 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 43  returns 0x01 (0001ms, 1967ms total)
T1720 030:618 JLINK_IsHalted()  returns FALSE (0000ms, 1967ms total)
T1720 030:719 JLINK_IsHalted()  returns FALSE (0001ms, 1968ms total)
T1720 030:821 JLINK_IsHalted()  returns FALSE (0000ms, 1967ms total)
T1720 030:923 JLINK_IsHalted()  returns FALSE (0001ms, 1968ms total)
T1720 031:024 JLINK_IsHalted()  returns FALSE (0000ms, 1967ms total)
T3214 031:125 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 1968ms total)
T3214 031:126 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 1969ms total)
T3214 031:127 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 1970ms total)
T3214 031:128 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 1971ms total)
T3214 031:129 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0001ms, 1972ms total)
T3214 031:130 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 44  returns 0x01 (0001ms, 1973ms total)
T1720 031:133 JLINK_IsHalted()  returns FALSE (0000ms, 1973ms total)
T1720 031:235 JLINK_IsHalted()  returns FALSE (0000ms, 1973ms total)
T1720 031:335 JLINK_IsHalted()  returns FALSE (0000ms, 1973ms total)
T1720 031:436 JLINK_IsHalted()  returns FALSE (0001ms, 1974ms total)
T1720 031:537 JLINK_IsHalted()  returns FALSE (0000ms, 1973ms total)
T1720 031:639 JLINK_IsHalted()  returns FALSE (0001ms, 1974ms total)
T3214 031:741 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 1974ms total)
T3214 031:742 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 1975ms total)
T3214 031:743 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 1976ms total)
T3214 031:744 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 1977ms total)
T3214 031:745 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0000ms, 1977ms total)
T3214 031:745 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 44  returns 0x01 (0001ms, 1978ms total)
T1720 031:748 JLINK_IsHalted()  returns FALSE (0001ms, 1979ms total)
T1720 031:849 JLINK_IsHalted()  returns FALSE (0001ms, 1979ms total)
T1720 031:951 JLINK_IsHalted()  returns FALSE (0001ms, 1979ms total)
T1720 032:053 JLINK_IsHalted()  returns FALSE (0000ms, 1978ms total)
T1720 032:154 JLINK_IsHalted()  returns FALSE (0000ms, 1978ms total)
T3214 032:255 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0000ms, 1978ms total)
T3214 032:255 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 1979ms total)
T3214 032:256 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 1980ms total)
T3214 032:257 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 1981ms total)
T3214 032:258 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0000ms, 1981ms total)
T3214 032:258 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 45  returns 0x01 (0001ms, 1982ms total)
T1720 032:261 JLINK_IsHalted()  returns FALSE (0000ms, 1982ms total)
T1720 032:383 JLINK_IsHalted()  returns FALSE (0003ms, 1985ms total)
T1720 032:487 JLINK_IsHalted()  returns FALSE (0002ms, 1984ms total)
T1720 032:590 JLINK_IsHalted()  returns FALSE (0000ms, 1982ms total)
T1720 032:691 JLINK_IsHalted()  returns FALSE (0000ms, 1982ms total)
T3214 032:792 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0000ms, 1982ms total)
T3214 032:792 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 1983ms total)
T3214 032:793 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 1984ms total)
T3214 032:794 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0000ms, 1984ms total)
T3214 032:794 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0001ms, 1985ms total)
T3214 032:795 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 45  returns 0x01 (0001ms, 1986ms total)
T1720 032:797 JLINK_IsHalted()  returns FALSE (0001ms, 1987ms total)
T1720 032:899 JLINK_IsHalted()  returns FALSE (0000ms, 1986ms total)
T1720 033:000 JLINK_IsHalted()  returns FALSE (0000ms, 1986ms total)
T1720 033:101 JLINK_IsHalted()  returns FALSE (0000ms, 1986ms total)
T1720 033:202 JLINK_IsHalted()  returns FALSE (0000ms, 1986ms total)
T3214 033:303 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0000ms, 1986ms total)
T3214 033:303 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 1987ms total)
T3214 033:304 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 1988ms total)
T3214 033:305 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0000ms, 1988ms total)
T3214 033:305 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0001ms, 1989ms total)
T3214 033:306 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 46  returns 0x01 (0001ms, 1990ms total)
T1720 033:309 JLINK_IsHalted()  returns FALSE (0000ms, 1990ms total)
T1720 033:410 JLINK_IsHalted()  returns FALSE (0001ms, 1991ms total)
T1720 033:512 JLINK_IsHalted()  returns FALSE (0001ms, 1991ms total)
T1720 033:613 JLINK_IsHalted()  returns FALSE (0001ms, 1991ms total)
T1720 033:714 JLINK_IsHalted()  returns FALSE (0001ms, 1991ms total)
T3214 033:816 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 1991ms total)
T3214 033:817 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 1992ms total)
T3214 033:818 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 1993ms total)
T3214 033:819 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0000ms, 1993ms total)
T3214 033:819 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0001ms, 1994ms total)
T3214 033:820 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 46  returns 0x01 (0001ms, 1995ms total)
T1720 033:823 JLINK_IsHalted()  returns FALSE (0001ms, 1996ms total)
T1720 033:924 JLINK_IsHalted()  returns FALSE (0000ms, 1995ms total)
T1720 034:025 JLINK_IsHalted()  returns FALSE (0002ms, 1997ms total)
T1720 034:127 JLINK_IsHalted()  returns FALSE (0001ms, 1996ms total)
T1720 034:228 JLINK_IsHalted()  returns FALSE (0001ms, 1996ms total)
T3214 034:330 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 1996ms total)
T3214 034:331 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0000ms, 1996ms total)
T3214 034:331 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 1997ms total)
T3214 034:332 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 1998ms total)
T3214 034:333 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0001ms, 1999ms total)
T3214 034:334 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 47  returns 0x01 (0000ms, 1999ms total)
T1720 034:336 JLINK_IsHalted()  returns FALSE (0001ms, 2000ms total)
T1720 034:438 JLINK_IsHalted()  returns FALSE (0000ms, 1999ms total)
T1720 034:538 JLINK_IsHalted()  returns FALSE (0000ms, 1999ms total)
T1720 034:640 JLINK_IsHalted()  returns FALSE (0000ms, 1999ms total)
T1720 034:741 JLINK_IsHalted()  returns FALSE (0001ms, 2000ms total)
T1720 034:842 JLINK_IsHalted()  returns FALSE (0001ms, 2000ms total)
T3214 034:943 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2000ms total)
T3214 034:944 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2001ms total)
T3214 034:945 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0000ms, 2001ms total)
T3214 034:945 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2002ms total)
T3214 034:946 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0000ms, 2002ms total)
T3214 034:946 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 47  returns 0x01 (0001ms, 2003ms total)
T1720 034:951 JLINK_IsHalted()  returns FALSE (0001ms, 2004ms total)
T1720 035:053 JLINK_IsHalted()  returns FALSE (0001ms, 2004ms total)
T1720 035:154 JLINK_IsHalted()  returns FALSE (0001ms, 2004ms total)
T1720 035:255 JLINK_IsHalted()  returns FALSE (0001ms, 2004ms total)
T1720 035:356 JLINK_IsHalted()  returns FALSE (0001ms, 2004ms total)
T3214 035:457 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2004ms total)
T3214 035:458 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2005ms total)
T3214 035:459 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2006ms total)
T3214 035:460 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2007ms total)
T3214 035:461 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0001ms, 2008ms total)
T3214 035:462 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 48  returns 0x01 (0000ms, 2008ms total)
T1720 035:466 JLINK_IsHalted()  returns FALSE (0001ms, 2009ms total)
T1720 035:568 JLINK_IsHalted()  returns FALSE (0001ms, 2009ms total)
T1720 035:670 JLINK_IsHalted()  returns FALSE (0001ms, 2009ms total)
T1720 035:771 JLINK_IsHalted()  returns FALSE (0000ms, 2008ms total)
T1720 035:872 JLINK_IsHalted()  returns FALSE (0001ms, 2009ms total)
T3214 035:975 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2009ms total)
T3214 035:976 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2010ms total)
T3214 035:977 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2011ms total)
T3214 035:978 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2012ms total)
T3214 035:979 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0001ms, 2013ms total)
T3214 035:980 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 48  returns 0x01 (0000ms, 2013ms total)
T1720 035:982 JLINK_IsHalted()  returns FALSE (0002ms, 2015ms total)
T1720 036:084 JLINK_IsHalted()  returns FALSE (0001ms, 2014ms total)
T1720 036:186 JLINK_IsHalted()  returns FALSE (0000ms, 2013ms total)
T1720 036:287 JLINK_IsHalted()  returns FALSE (0000ms, 2013ms total)
T1720 036:388 JLINK_IsHalted()  returns FALSE (0000ms, 2013ms total)
T3214 036:489 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2014ms total)
T3214 036:490 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2015ms total)
T3214 036:491 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0000ms, 2015ms total)
T3214 036:491 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2016ms total)
T3214 036:492 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0001ms, 2017ms total)
T3214 036:493 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 49  returns 0x01 (0001ms, 2018ms total)
T1720 036:496 JLINK_IsHalted()  returns FALSE (0001ms, 2019ms total)
T1720 036:597 JLINK_IsHalted()  returns FALSE (0001ms, 2019ms total)
T1720 036:699 JLINK_IsHalted()  returns FALSE (0000ms, 2018ms total)
T1720 036:800 JLINK_IsHalted()  returns FALSE (0001ms, 2019ms total)
T1720 036:901 JLINK_IsHalted()  returns FALSE (0000ms, 2018ms total)
T3214 037:002 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0002ms, 2020ms total)
T3214 037:004 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0000ms, 2020ms total)
T3214 037:004 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2021ms total)
T3214 037:005 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2022ms total)
T3214 037:006 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0001ms, 2023ms total)
T3214 037:007 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 50  returns 0x01 (0001ms, 2024ms total)
T1720 037:012 JLINK_IsHalted()  returns FALSE (0001ms, 2025ms total)
T1720 037:114 JLINK_IsHalted()  returns FALSE (0000ms, 2024ms total)
T1720 037:215 JLINK_IsHalted()  returns FALSE (0001ms, 2025ms total)
T1720 037:316 JLINK_IsHalted()  returns FALSE (0001ms, 2025ms total)
T1720 037:417 JLINK_IsHalted()  returns FALSE (0001ms, 2025ms total)
T3214 037:519 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2025ms total)
T3214 037:520 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0002ms, 2027ms total)
T3214 037:522 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0000ms, 2027ms total)
T3214 037:522 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2028ms total)
T3214 037:523 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0001ms, 2029ms total)
T3214 037:524 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 50  returns 0x01 (0001ms, 2030ms total)
T1720 037:527 JLINK_IsHalted()  returns FALSE (0001ms, 2031ms total)
T1720 037:628 JLINK_IsHalted()  returns FALSE (0000ms, 2030ms total)
T1720 037:730 JLINK_IsHalted()  returns FALSE (0000ms, 2030ms total)
T1720 037:832 JLINK_IsHalted()  returns FALSE (0003ms, 2033ms total)
T1720 037:936 JLINK_IsHalted()  returns FALSE (0001ms, 2031ms total)
T3214 038:037 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0000ms, 2030ms total)
T3214 038:037 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2031ms total)
T3214 038:038 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2032ms total)
T3214 038:039 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2033ms total)
T3214 038:040 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0000ms, 2033ms total)
T3214 038:040 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 51  returns 0x01 (0001ms, 2034ms total)
T1720 038:044 JLINK_IsHalted()  returns FALSE (0001ms, 2035ms total)
T1720 038:145 JLINK_IsHalted()  returns FALSE (0000ms, 2034ms total)
T1720 038:246 JLINK_IsHalted()  returns FALSE (0000ms, 2034ms total)
T1720 038:347 JLINK_IsHalted()  returns FALSE (0000ms, 2034ms total)
T1720 038:448 JLINK_IsHalted()  returns FALSE (0000ms, 2034ms total)
T3214 038:549 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0000ms, 2034ms total)
T3214 038:549 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2035ms total)
T3214 038:550 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2036ms total)
T3214 038:551 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0000ms, 2036ms total)
T3214 038:551 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0001ms, 2037ms total)
T3214 038:552 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 51  returns 0x01 (0001ms, 2038ms total)
T1720 038:554 JLINK_IsHalted()  returns FALSE (0001ms, 2039ms total)
T1720 038:656 JLINK_IsHalted()  returns FALSE (0000ms, 2038ms total)
T1720 038:757 JLINK_IsHalted()  returns FALSE (0001ms, 2039ms total)
T1720 038:858 JLINK_IsHalted()  returns FALSE (0001ms, 2039ms total)
T1720 038:960 JLINK_IsHalted()  returns FALSE (0002ms, 2040ms total)
T1720 039:062 JLINK_IsHalted()  returns FALSE (0001ms, 2039ms total)
T3214 039:163 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0000ms, 2038ms total)
T3214 039:164 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0000ms, 2038ms total)
T3214 039:164 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2039ms total)
T3214 039:165 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2040ms total)
T3214 039:166 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0001ms, 2041ms total)
T3214 039:167 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 52  returns 0x01 (0000ms, 2041ms total)
T1720 039:170 JLINK_IsHalted()  returns FALSE (0000ms, 2041ms total)
T1720 039:271 JLINK_IsHalted()  returns FALSE (0000ms, 2041ms total)
T1720 039:372 JLINK_IsHalted()  returns FALSE (0001ms, 2042ms total)
T1720 039:473 JLINK_IsHalted()  returns FALSE (0001ms, 2042ms total)
T1720 039:575 JLINK_IsHalted()  returns FALSE (0000ms, 2041ms total)
T3214 039:677 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2042ms total)
T3214 039:678 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2043ms total)
T3214 039:679 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2044ms total)
T3214 039:680 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0000ms, 2044ms total)
T3214 039:680 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0001ms, 2045ms total)
T3214 039:681 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 52  returns 0x01 (0001ms, 2046ms total)
T1720 039:683 JLINK_IsHalted()  returns FALSE (0001ms, 2047ms total)
T1720 039:785 JLINK_IsHalted()  returns FALSE (0000ms, 2046ms total)
T1720 039:887 JLINK_IsHalted()  returns FALSE (0000ms, 2046ms total)
T1720 039:987 JLINK_IsHalted()  returns FALSE (0001ms, 2047ms total)
T1720 040:089 JLINK_IsHalted()  returns FALSE (0000ms, 2046ms total)
T3214 040:190 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0000ms, 2046ms total)
T3214 040:190 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2047ms total)
T3214 040:191 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0000ms, 2047ms total)
T3214 040:191 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0002ms, 2049ms total)
T3214 040:193 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0001ms, 2050ms total)
T3214 040:194 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 53  returns 0x01 (0001ms, 2051ms total)
T1720 040:196 JLINK_IsHalted()  returns FALSE (0001ms, 2052ms total)
T1720 040:297 JLINK_IsHalted()  returns FALSE (0000ms, 2051ms total)
T1720 040:397 JLINK_IsHalted()  returns FALSE (0001ms, 2052ms total)
T1720 040:499 JLINK_IsHalted()  returns FALSE (0000ms, 2051ms total)
T1720 040:601 JLINK_IsHalted()  returns FALSE (0000ms, 2051ms total)
T1720 040:702 JLINK_IsHalted()  returns FALSE (0000ms, 2051ms total)
T3214 040:803 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0000ms, 2051ms total)
T3214 040:803 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2052ms total)
T3214 040:804 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2053ms total)
T3214 040:805 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0000ms, 2053ms total)
T3214 040:805 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0000ms, 2053ms total)
T3214 040:805 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 53  returns 0x01 (0001ms, 2054ms total)
T1720 040:808 JLINK_IsHalted()  returns FALSE (0000ms, 2054ms total)
T1720 040:910 JLINK_IsHalted()  returns FALSE (0001ms, 2055ms total)
T1720 041:011 JLINK_IsHalted()  returns FALSE (0001ms, 2055ms total)
T1720 041:112 JLINK_IsHalted()  returns FALSE (0001ms, 2055ms total)
T1720 041:213 JLINK_IsHalted()  returns FALSE (0000ms, 2054ms total)
T3214 041:314 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2055ms total)
T3214 041:315 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2056ms total)
T3214 041:316 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2057ms total)
T3214 041:317 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0000ms, 2057ms total)
T3214 041:317 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0001ms, 2058ms total)
T3214 041:318 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 54  returns 0x01 (0001ms, 2059ms total)
T1720 041:321 JLINK_IsHalted()  returns FALSE (0001ms, 2060ms total)
T1720 041:422 JLINK_IsHalted()  returns FALSE (0000ms, 2059ms total)
T1720 041:523 JLINK_IsHalted()  returns FALSE (0001ms, 2060ms total)
T1720 041:625 JLINK_IsHalted()  returns FALSE (0001ms, 2060ms total)
T1720 041:726 JLINK_IsHalted()  returns FALSE (0001ms, 2060ms total)
T1720 041:827 JLINK_IsHalted()  returns FALSE (0001ms, 2060ms total)
T3214 041:929 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2060ms total)
T3214 041:930 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2061ms total)
T3214 041:931 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0000ms, 2061ms total)
T3214 041:931 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2062ms total)
T3214 041:932 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0001ms, 2063ms total)
T3214 041:933 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 54  returns 0x01 (0001ms, 2064ms total)
T1720 041:936 JLINK_IsHalted()  returns FALSE (0001ms, 2065ms total)
T1720 042:038 JLINK_IsHalted()  returns FALSE (0000ms, 2064ms total)
T1720 042:140 JLINK_IsHalted()  returns FALSE (0000ms, 2064ms total)
T1720 042:241 JLINK_IsHalted()  returns FALSE (0001ms, 2065ms total)
T1720 042:342 JLINK_IsHalted()  returns FALSE (0001ms, 2065ms total)
T3214 042:444 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2065ms total)
T3214 042:445 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2066ms total)
T3214 042:446 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2067ms total)
T3214 042:447 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0000ms, 2067ms total)
T3214 042:447 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0001ms, 2068ms total)
T3214 042:448 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 55  returns 0x01 (0001ms, 2069ms total)
T1720 042:451 JLINK_IsHalted()  returns FALSE (0002ms, 2071ms total)
T1720 042:553 JLINK_IsHalted()  returns FALSE (0001ms, 2070ms total)
T1720 042:654 JLINK_IsHalted()  returns FALSE (0001ms, 2070ms total)
T1720 042:756 JLINK_IsHalted()  returns FALSE (0001ms, 2070ms total)
T1720 042:857 JLINK_IsHalted()  returns FALSE (0000ms, 2069ms total)
T3214 042:960 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2070ms total)
T3214 042:961 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2071ms total)
T3214 042:962 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0000ms, 2071ms total)
T3214 042:962 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2072ms total)
T3214 042:963 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0001ms, 2073ms total)
T3214 042:964 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 55  returns 0x01 (0001ms, 2074ms total)
T1720 042:968 JLINK_IsHalted()  returns FALSE (0001ms, 2075ms total)
T1720 043:069 JLINK_IsHalted()  returns FALSE (0001ms, 2075ms total)
T1720 043:171 JLINK_IsHalted()  returns FALSE (0000ms, 2074ms total)
T1720 043:273 JLINK_IsHalted()  returns FALSE (0000ms, 2074ms total)
T1720 043:373 JLINK_IsHalted()  returns FALSE (0002ms, 2076ms total)
T3214 043:475 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2075ms total)
T3214 043:476 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2076ms total)
T3214 043:477 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0000ms, 2076ms total)
T3214 043:477 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2077ms total)
T3214 043:478 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0001ms, 2078ms total)
T3214 043:479 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 56  returns 0x01 (0000ms, 2078ms total)
T1720 043:481 JLINK_IsHalted()  returns FALSE (0001ms, 2079ms total)
T1720 043:584 JLINK_IsHalted()  returns FALSE (0000ms, 2078ms total)
T1720 043:685 JLINK_IsHalted()  returns FALSE (0000ms, 2078ms total)
T1720 043:786 JLINK_IsHalted()  returns FALSE (0000ms, 2078ms total)
T1720 043:888 JLINK_IsHalted()  returns FALSE (0001ms, 2079ms total)
T3214 043:989 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2079ms total)
T3214 043:990 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0000ms, 2079ms total)
T3214 043:990 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0002ms, 2081ms total)
T3214 043:992 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0000ms, 2081ms total)
T3214 043:992 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0001ms, 2082ms total)
T3214 043:993 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 56  returns 0x01 (0001ms, 2083ms total)
T1720 043:997 JLINK_IsHalted()  returns FALSE (0001ms, 2084ms total)
T1720 044:098 JLINK_IsHalted()  returns FALSE (0001ms, 2084ms total)
T1720 044:200 JLINK_IsHalted()  returns FALSE (0001ms, 2084ms total)
T1720 044:302 JLINK_IsHalted()  returns FALSE (0000ms, 2083ms total)
T1720 044:403 JLINK_IsHalted()  returns FALSE (0000ms, 2083ms total)
T3214 044:505 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2084ms total)
T3214 044:506 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0000ms, 2084ms total)
T3214 044:506 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0002ms, 2086ms total)
T3214 044:508 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0000ms, 2086ms total)
T3214 044:508 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0001ms, 2087ms total)
T3214 044:509 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 57  returns 0x01 (0000ms, 2087ms total)
T1720 044:511 JLINK_IsHalted()  returns FALSE (0001ms, 2088ms total)
T1720 044:613 JLINK_IsHalted()  returns FALSE (0001ms, 2088ms total)
T1720 044:715 JLINK_IsHalted()  returns FALSE (0001ms, 2088ms total)
T1720 044:817 JLINK_IsHalted()  returns FALSE (0000ms, 2087ms total)
T1720 044:919 JLINK_IsHalted()  returns FALSE (0001ms, 2088ms total)
T3214 045:020 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2088ms total)
T3214 045:021 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2089ms total)
T3214 045:022 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2090ms total)
T3214 045:024 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0000ms, 2090ms total)
T3214 045:024 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0001ms, 2091ms total)
T3214 045:025 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 58  returns 0x01 (0001ms, 2092ms total)
T1720 045:029 JLINK_IsHalted()  returns FALSE (0001ms, 2093ms total)
T1720 045:131 JLINK_IsHalted()  returns FALSE (0000ms, 2092ms total)
T1720 045:232 JLINK_IsHalted()  returns FALSE (0001ms, 2093ms total)
T1720 045:334 JLINK_IsHalted()  returns FALSE (0001ms, 2093ms total)
T1720 045:435 JLINK_IsHalted()  returns FALSE (0001ms, 2093ms total)
T3214 045:536 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2093ms total)
T3214 045:537 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2094ms total)
T3214 045:538 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2095ms total)
T3214 045:539 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2096ms total)
T3214 045:540 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0000ms, 2096ms total)
T3214 045:540 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 58  returns 0x01 (0000ms, 2096ms total)
T1720 045:544 JLINK_IsHalted()  returns FALSE (0000ms, 2096ms total)
T1720 045:645 JLINK_IsHalted()  returns FALSE (0002ms, 2098ms total)
T1720 045:747 JLINK_IsHalted()  returns FALSE (0000ms, 2096ms total)
T1720 045:848 JLINK_IsHalted()  returns FALSE (0001ms, 2097ms total)
T1720 045:949 JLINK_IsHalted()  returns FALSE (0001ms, 2097ms total)
T3214 046:050 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2097ms total)
T3214 046:051 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2098ms total)
T3214 046:052 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2099ms total)
T3214 046:053 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2100ms total)
T3214 046:054 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0000ms, 2100ms total)
T3214 046:054 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 59  returns 0x01 (0001ms, 2101ms total)
T1720 046:059 JLINK_IsHalted()  returns FALSE (0001ms, 2102ms total)
T1720 046:161 JLINK_IsHalted()  returns FALSE (0001ms, 2102ms total)
T1720 046:262 JLINK_IsHalted()  returns FALSE (0001ms, 2102ms total)
T1720 046:363 JLINK_IsHalted()  returns FALSE (0001ms, 2102ms total)
T1720 046:465 JLINK_IsHalted()  returns FALSE (0001ms, 2102ms total)
T3214 046:566 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2102ms total)
T3214 046:567 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0000ms, 2102ms total)
T3214 046:567 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0000ms, 2102ms total)
T3214 046:567 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2103ms total)
T3214 046:568 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0001ms, 2104ms total)
T3214 046:569 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 59  returns 0x01 (0001ms, 2105ms total)
T1720 046:571 JLINK_IsHalted()  returns FALSE (0001ms, 2106ms total)
T1720 046:673 JLINK_IsHalted()  returns FALSE (0001ms, 2106ms total)
T1720 046:774 JLINK_IsHalted()  returns FALSE (0001ms, 2106ms total)
T1720 046:876 JLINK_IsHalted()  returns FALSE (0000ms, 2105ms total)
T1720 046:977 JLINK_IsHalted()  returns FALSE (0001ms, 2106ms total)
T3214 047:078 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2106ms total)
T3214 047:079 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2107ms total)
T3214 047:080 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2108ms total)
T3214 047:081 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2109ms total)
T3214 047:082 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0000ms, 2109ms total)
T3214 047:084 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 00  returns 0x01 (0001ms, 2110ms total)
T1720 047:088 JLINK_IsHalted()  returns FALSE (0001ms, 2111ms total)
T1720 047:190 JLINK_IsHalted()  returns FALSE (0001ms, 2111ms total)
T1720 047:291 JLINK_IsHalted()  returns FALSE (0001ms, 2111ms total)
T1720 047:392 JLINK_IsHalted()  returns FALSE (0001ms, 2111ms total)
T1720 047:494 JLINK_IsHalted()  returns FALSE (0001ms, 2111ms total)
T3214 047:595 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2111ms total)
T3214 047:596 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2112ms total)
T3214 047:597 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2113ms total)
T3214 047:598 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2114ms total)
T3214 047:599 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0001ms, 2115ms total)
T3214 047:601 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 00  returns 0x01 (0002ms, 2117ms total)
T1720 047:606 JLINK_IsHalted()  returns FALSE (0001ms, 2118ms total)
T1720 047:707 JLINK_IsHalted()  returns FALSE (0001ms, 2118ms total)
T1720 047:808 JLINK_IsHalted()  returns FALSE (0001ms, 2118ms total)
T1720 047:909 JLINK_IsHalted()  returns FALSE (0001ms, 2118ms total)
T1720 048:011 JLINK_IsHalted()  returns FALSE (0001ms, 2118ms total)
T3214 048:113 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2118ms total)
T3214 048:114 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2119ms total)
T3214 048:115 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0000ms, 2119ms total)
T3214 048:115 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2120ms total)
T3214 048:116 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0001ms, 2121ms total)
T3214 048:117 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 01  returns 0x01 (0001ms, 2122ms total)
T1720 048:120 JLINK_IsHalted()  returns FALSE (0000ms, 2122ms total)
T1720 048:220 JLINK_IsHalted()  returns FALSE (0001ms, 2123ms total)
T1720 048:322 JLINK_IsHalted()  returns FALSE (0001ms, 2123ms total)
T1720 048:423 JLINK_IsHalted()  returns FALSE (0001ms, 2123ms total)
T1720 048:525 JLINK_IsHalted()  returns FALSE (0001ms, 2123ms total)
T3214 048:626 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2123ms total)
T3214 048:627 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0000ms, 2123ms total)
T3214 048:627 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2124ms total)
T3214 048:628 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2125ms total)
T3214 048:629 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0001ms, 2126ms total)
T3214 048:630 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 01  returns 0x01 (0000ms, 2126ms total)
T1720 048:636 JLINK_IsHalted()  returns FALSE (0001ms, 2127ms total)
T1720 048:737 JLINK_IsHalted()  returns FALSE (0001ms, 2127ms total)
T1720 048:839 JLINK_IsHalted()  returns FALSE (0001ms, 2127ms total)
T1720 048:940 JLINK_IsHalted()  returns FALSE (0001ms, 2127ms total)
T1720 049:042 JLINK_IsHalted()  returns FALSE (0001ms, 2127ms total)
T3214 049:145 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0000ms, 2126ms total)
T3214 049:145 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2127ms total)
T3214 049:146 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2128ms total)
T3214 049:147 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2129ms total)
T3214 049:148 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0001ms, 2130ms total)
T3214 049:149 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 02  returns 0x01 (0000ms, 2130ms total)
T1720 049:150 JLINK_IsHalted()  returns FALSE (0000ms, 2130ms total)
T1720 049:252 JLINK_IsHalted()  returns FALSE (0001ms, 2131ms total)
T1720 049:353 JLINK_IsHalted()  returns FALSE (0001ms, 2131ms total)
T1720 049:454 JLINK_IsHalted()  returns FALSE (0001ms, 2131ms total)
T1720 049:556 JLINK_IsHalted()  returns FALSE (0001ms, 2131ms total)
T3214 049:657 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2131ms total)
T3214 049:658 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2132ms total)
T3214 049:659 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2133ms total)
T3214 049:660 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2134ms total)
T3214 049:661 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0000ms, 2134ms total)
T3214 049:661 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 02  returns 0x01 (0001ms, 2135ms total)
T1720 049:665 JLINK_IsHalted()  returns FALSE (0001ms, 2136ms total)
T1720 049:767 JLINK_IsHalted()  returns FALSE (0000ms, 2135ms total)
T1720 049:868 JLINK_IsHalted()  returns FALSE (0000ms, 2135ms total)
T1720 049:969 JLINK_IsHalted()  returns FALSE (0000ms, 2135ms total)
T1720 050:070 JLINK_IsHalted()  returns FALSE (0001ms, 2136ms total)
T3214 050:172 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2136ms total)
T3214 050:173 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0000ms, 2136ms total)
T3214 050:173 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2137ms total)
T3214 050:174 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2138ms total)
T3214 050:175 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0000ms, 2138ms total)
T3214 050:175 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 03  returns 0x01 (0001ms, 2139ms total)
T1720 050:178 JLINK_IsHalted()  returns FALSE (0000ms, 2139ms total)
T1720 050:279 JLINK_IsHalted()  returns FALSE (0000ms, 2139ms total)
T1720 050:381 JLINK_IsHalted()  returns FALSE (0000ms, 2139ms total)
T1720 050:482 JLINK_IsHalted()  returns FALSE (0000ms, 2139ms total)
T1720 050:584 JLINK_IsHalted()  returns FALSE (0000ms, 2139ms total)
T1720 050:685 JLINK_IsHalted()  returns FALSE (0000ms, 2139ms total)
T3214 050:786 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2140ms total)
T3214 050:788 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2141ms total)
T3214 050:789 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0000ms, 2141ms total)
T3214 050:789 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2142ms total)
T3214 050:790 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0001ms, 2143ms total)
T3214 050:791 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 03  returns 0x01 (0001ms, 2144ms total)
T1720 050:795 JLINK_IsHalted()  returns FALSE (0001ms, 2145ms total)
T3214 050:861 JLINK_ReadMemEx(0x0002B63E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0002B63E) - Data: 26 49  returns 0x02 (0001ms, 2145ms total)
T3214 050:862 JLINK_ReadMemEx(0x0002B640, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0002B640) - Data: 22 48  returns 0x02 (0001ms, 2146ms total)
T3214 050:863 JLINK_ReadMemEx(0x0002B640, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0002B640) - Data: 22 48  returns 0x02 (0001ms, 2147ms total)
T3214 050:864 JLINK_ReadMemEx(0x0002B642, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0002B642) - Data: 80 1C  returns 0x02 (0001ms, 2148ms total)
T3214 050:865 JLINK_ReadMemEx(0x0002B642, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0002B642) - Data: 80 1C  returns 0x02 (0001ms, 2149ms total)
T3214 050:866 JLINK_ReadMemEx(0x0002B644, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0002B644) - Data: FC F7  returns 0x02 (0001ms, 2150ms total)
T3214 050:867 JLINK_ReadMemEx(0x0002B644, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0002B644) - Data: FC F7  returns 0x02 (0001ms, 2151ms total)
T3214 050:868 JLINK_ReadMemEx(0x0002B646, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0002B646) - Data: 72 F9  returns 0x02 (0000ms, 2151ms total)
T3214 050:868 JLINK_ReadMemEx(0x0002B648, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0002B648) - Data: 23 48  returns 0x02 (0000ms, 2151ms total)
T3214 050:868 JLINK_ReadMemEx(0x0002B64A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0002B64A) - Data: FC F7  returns 0x02 (0001ms, 2152ms total)
T1720 050:896 JLINK_IsHalted()  returns FALSE (0000ms, 2152ms total)
T1720 050:998 JLINK_IsHalted()  returns FALSE (0000ms, 2152ms total)
T1720 051:099 JLINK_IsHalted()  returns FALSE (0001ms, 2153ms total)
T1720 051:200 JLINK_IsHalted()  returns FALSE (0001ms, 2153ms total)
T3214 051:301 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2153ms total)
T3214 051:302 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0000ms, 2153ms total)
T3214 051:302 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2154ms total)
T3214 051:303 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2155ms total)
T3214 051:304 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0001ms, 2156ms total)
T3214 051:305 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 04  returns 0x01 (0000ms, 2156ms total)
T1720 051:306 JLINK_IsHalted()  returns FALSE (0001ms, 2157ms total)
T1720 051:407 JLINK_IsHalted()  returns FALSE (0002ms, 2158ms total)
T1720 051:509 JLINK_IsHalted()  returns FALSE (0001ms, 2157ms total)
T1720 051:610 JLINK_IsHalted()  returns FALSE (0000ms, 2156ms total)
T1720 051:711 JLINK_IsHalted()  returns FALSE (0000ms, 2156ms total)
T3214 051:812 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2157ms total)
T3214 051:813 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2158ms total)
T3214 051:814 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0000ms, 2158ms total)
T3214 051:814 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2159ms total)
T3214 051:815 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0001ms, 2160ms total)
T3214 051:816 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 04  returns 0x01 (0001ms, 2161ms total)
T1720 051:819 JLINK_IsHalted()  returns FALSE (0001ms, 2162ms total)
T1720 051:921 JLINK_IsHalted()  returns FALSE (0001ms, 2162ms total)
T1720 052:023 JLINK_IsHalted()  returns FALSE (0000ms, 2161ms total)
T1720 052:124 JLINK_IsHalted()  returns FALSE (0001ms, 2162ms total)
T1720 052:225 JLINK_IsHalted()  returns FALSE (0001ms, 2162ms total)
T1720 052:326 JLINK_IsHalted()  returns FALSE (0001ms, 2162ms total)
T3214 052:428 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2162ms total)
T3214 052:429 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0000ms, 2162ms total)
T3214 052:429 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2163ms total)
T3214 052:430 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2164ms total)
T3214 052:431 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0001ms, 2165ms total)
T3214 052:432 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 05  returns 0x01 (0000ms, 2165ms total)
T1720 052:435 JLINK_IsHalted()  returns FALSE (0001ms, 2166ms total)
T1720 052:536 JLINK_IsHalted()  returns FALSE (0000ms, 2165ms total)
T1720 052:637 JLINK_IsHalted()  returns FALSE (0000ms, 2165ms total)
T1720 052:738 JLINK_IsHalted()  returns FALSE (0000ms, 2165ms total)
T1720 052:839 JLINK_IsHalted()  returns FALSE (0000ms, 2165ms total)
T3214 052:940 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2166ms total)
T3214 052:941 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0000ms, 2166ms total)
T3214 052:941 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0002ms, 2168ms total)
T3214 052:943 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0000ms, 2168ms total)
T3214 052:943 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0001ms, 2169ms total)
T3214 052:944 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 05  returns 0x01 (0000ms, 2169ms total)
T1720 052:945 JLINK_IsHalted()  returns FALSE (0001ms, 2170ms total)
T1720 053:047 JLINK_IsHalted()  returns FALSE (0001ms, 2170ms total)
T1720 053:148 JLINK_IsHalted()  returns FALSE (0001ms, 2170ms total)
T1720 053:250 JLINK_IsHalted()  returns FALSE (0001ms, 2170ms total)
T3214 053:316 JLINK_ReadMemEx(0x000276C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x000276C4) - Data: 39 46  returns 0x02 (0001ms, 2170ms total)
T3214 053:317 JLINK_ReadMemEx(0x000276C6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x000276C6) - Data: 30 46  returns 0x02 (0001ms, 2171ms total)
T3214 053:318 JLINK_ReadMemEx(0x000276C6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x000276C6) - Data: 30 46  returns 0x02 (0000ms, 2171ms total)
T3214 053:318 JLINK_ReadMemEx(0x000276C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x000276C8) - Data: F3 F7  returns 0x02 (0001ms, 2172ms total)
T3214 053:319 JLINK_ReadMemEx(0x000276C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x000276C8) - Data: F3 F7  returns 0x02 (0001ms, 2173ms total)
T3214 053:320 JLINK_ReadMemEx(0x000276CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x000276CA) - Data: 78 F9  returns 0x02 (0000ms, 2173ms total)
T3214 053:320 JLINK_ReadMemEx(0x000276CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x000276CC) - Data: 05 46  returns 0x02 (0001ms, 2174ms total)
T3214 053:321 JLINK_ReadMemEx(0x000276CE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x000276CE) - Data: 00 2D  returns 0x02 (0001ms, 2175ms total)
T3214 053:322 JLINK_ReadMemEx(0x000276CE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x000276CE) - Data: 00 2D  returns 0x02 (0001ms, 2176ms total)
T3214 053:323 JLINK_ReadMemEx(0x000276D0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x000276D0) - Data: 01 D1  returns 0x02 (0001ms, 2177ms total)
T1720 053:351 JLINK_IsHalted()  returns FALSE (0000ms, 2177ms total)
T1720 053:452 JLINK_IsHalted()  returns FALSE (0000ms, 2177ms total)
T3214 053:554 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0000ms, 2177ms total)
T3214 053:554 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2178ms total)
T3214 053:555 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2179ms total)
T3214 053:556 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2180ms total)
T3214 053:557 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0000ms, 2180ms total)
T3214 053:557 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 06  returns 0x01 (0001ms, 2181ms total)
T1720 053:559 JLINK_IsHalted()  returns FALSE (0001ms, 2182ms total)
T1720 053:661 JLINK_IsHalted()  returns FALSE (0000ms, 2181ms total)
T1720 053:762 JLINK_IsHalted()  returns FALSE (0000ms, 2181ms total)
T1720 053:863 JLINK_IsHalted()  returns FALSE (0000ms, 2181ms total)
T1720 053:964 JLINK_IsHalted()  returns FALSE (0001ms, 2182ms total)
T3214 054:066 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0000ms, 2181ms total)
T3214 054:066 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2182ms total)
T3214 054:067 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2183ms total)
T3214 054:068 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2184ms total)
T3214 054:069 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0001ms, 2185ms total)
T3214 054:070 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 07  returns 0x01 (0000ms, 2185ms total)
T1720 054:071 JLINK_IsHalted()  returns FALSE (0000ms, 2185ms total)
T1720 054:173 JLINK_IsHalted()  returns FALSE (0001ms, 2186ms total)
T1720 054:274 JLINK_IsHalted()  returns FALSE (0000ms, 2185ms total)
T1720 054:375 JLINK_IsHalted()  returns FALSE (0000ms, 2185ms total)
T1720 054:476 JLINK_IsHalted()  returns FALSE (0001ms, 2186ms total)
T1720 054:577 JLINK_IsHalted()  returns FALSE (0001ms, 2186ms total)
T3214 054:679 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2186ms total)
T3214 054:680 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2187ms total)
T3214 054:681 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2188ms total)
T3214 054:682 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2189ms total)
T3214 054:683 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0000ms, 2189ms total)
T3214 054:683 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 07  returns 0x01 (0001ms, 2190ms total)
T1720 054:686 JLINK_IsHalted()  returns FALSE (0001ms, 2191ms total)
T1720 054:788 JLINK_IsHalted()  returns FALSE (0000ms, 2190ms total)
T1720 054:889 JLINK_IsHalted()  returns FALSE (0001ms, 2191ms total)
T1720 054:991 JLINK_IsHalted()  returns FALSE (0000ms, 2190ms total)
T3214 055:065 JLINK_ReadMemEx(0x00027984, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00027984) - Data: 2A 46  returns 0x02 (0000ms, 2190ms total)
T3214 055:066 JLINK_ReadMemEx(0x00027986, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00027986) - Data: 39 46  returns 0x02 (0000ms, 2190ms total)
T3214 055:066 JLINK_ReadMemEx(0x00027986, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00027986) - Data: 39 46  returns 0x02 (0001ms, 2191ms total)
T3214 055:067 JLINK_ReadMemEx(0x00027988, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00027988) - Data: 30 46  returns 0x02 (0001ms, 2192ms total)
T3214 055:068 JLINK_ReadMemEx(0x00027988, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00027988) - Data: 30 46  returns 0x02 (0001ms, 2193ms total)
T3214 055:069 JLINK_ReadMemEx(0x0002798A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0002798A) - Data: FF F7  returns 0x02 (0001ms, 2194ms total)
T3214 055:070 JLINK_ReadMemEx(0x0002798A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0002798A) - Data: FF F7  returns 0x02 (0001ms, 2195ms total)
T3214 055:071 JLINK_ReadMemEx(0x0002798C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0002798C) - Data: 91 FE  returns 0x02 (0001ms, 2196ms total)
T3214 055:072 JLINK_ReadMemEx(0x0002798E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0002798E) - Data: 18 E0  returns 0x02 (0000ms, 2196ms total)
T3214 055:072 JLINK_ReadMemEx(0x00027990, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00027990) - Data: 2A 46  returns 0x02 (0001ms, 2197ms total)
T1720 055:092 JLINK_IsHalted()  returns FALSE (0001ms, 2198ms total)
T3214 055:193 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2198ms total)
T3214 055:194 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0000ms, 2198ms total)
T3214 055:194 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2199ms total)
T3214 055:195 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2200ms total)
T3214 055:196 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0001ms, 2201ms total)
T3214 055:197 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 08  returns 0x01 (0000ms, 2201ms total)
T1720 055:198 JLINK_IsHalted()  returns FALSE (0002ms, 2203ms total)
T1720 055:300 JLINK_IsHalted()  returns FALSE (0000ms, 2201ms total)
T1720 055:401 JLINK_IsHalted()  returns FALSE (0000ms, 2201ms total)
T1720 055:503 JLINK_IsHalted()  returns FALSE (0000ms, 2201ms total)
T1720 055:604 JLINK_IsHalted()  returns FALSE (0000ms, 2201ms total)
T3214 055:705 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2202ms total)
T3214 055:706 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0000ms, 2202ms total)
T3214 055:706 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2203ms total)
T3214 055:707 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2204ms total)
T3214 055:708 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0001ms, 2205ms total)
T3214 055:709 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 08  returns 0x01 (0000ms, 2205ms total)
T1720 055:711 JLINK_IsHalted()  returns FALSE (0000ms, 2205ms total)
T1720 055:812 JLINK_IsHalted()  returns FALSE (0000ms, 2205ms total)
T1720 055:913 JLINK_IsHalted()  returns FALSE (0000ms, 2205ms total)
T1720 056:014 JLINK_IsHalted()  returns FALSE (0001ms, 2206ms total)
T1720 056:115 JLINK_IsHalted()  returns FALSE (0001ms, 2206ms total)
T1720 056:216 JLINK_IsHalted()  returns FALSE (0002ms, 2207ms total)
T3214 056:318 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0000ms, 2205ms total)
T3214 056:318 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2206ms total)
T3214 056:319 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2207ms total)
T3214 056:320 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2208ms total)
T3214 056:321 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0000ms, 2208ms total)
T3214 056:321 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 09  returns 0x01 (0001ms, 2209ms total)
T1720 056:323 JLINK_IsHalted()  returns FALSE (0001ms, 2210ms total)
T1720 056:425 JLINK_IsHalted()  returns FALSE (0001ms, 2210ms total)
T1720 056:527 JLINK_IsHalted()  returns FALSE (0000ms, 2209ms total)
T1720 056:628 JLINK_IsHalted()  returns FALSE (0000ms, 2209ms total)
T1720 056:730 JLINK_IsHalted()  returns FALSE (0001ms, 2210ms total)
T3214 056:833 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2210ms total)
T3214 056:834 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2211ms total)
T3214 056:835 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0000ms, 2211ms total)
T3214 056:835 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2212ms total)
T3214 056:836 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0001ms, 2213ms total)
T3214 056:837 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 09  returns 0x01 (0000ms, 2213ms total)
T1720 056:839 JLINK_IsHalted()  returns FALSE (0001ms, 2214ms total)
T1720 056:941 JLINK_IsHalted()  returns FALSE (0001ms, 2214ms total)
T1720 057:042 JLINK_IsHalted()  returns FALSE (0001ms, 2214ms total)
T1720 057:143 JLINK_IsHalted()  returns FALSE (0001ms, 2214ms total)
T1720 057:245 JLINK_IsHalted()  returns FALSE (0001ms, 2214ms total)
T3214 057:348 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2214ms total)
T3214 057:349 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2215ms total)
T3214 057:350 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2216ms total)
T3214 057:351 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2217ms total)
T3214 057:352 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0001ms, 2218ms total)
T3214 057:353 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 10  returns 0x01 (0001ms, 2219ms total)
T1720 057:357 JLINK_IsHalted()  returns FALSE (0001ms, 2220ms total)
T1720 057:458 JLINK_IsHalted()  returns FALSE (0001ms, 2220ms total)
T1720 057:560 JLINK_IsHalted()  returns FALSE (0001ms, 2220ms total)
T1720 057:661 JLINK_IsHalted()  returns FALSE (0001ms, 2220ms total)
T1720 057:763 JLINK_IsHalted()  returns FALSE (0001ms, 2220ms total)
T3214 057:865 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0000ms, 2219ms total)
T3214 057:865 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2220ms total)
T3214 057:866 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2221ms total)
T3214 057:867 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2222ms total)
T3214 057:868 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0000ms, 2222ms total)
T3214 057:868 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 10  returns 0x01 (0001ms, 2223ms total)
T1720 057:869 JLINK_IsHalted()  returns FALSE (0002ms, 2225ms total)
T1720 057:972 JLINK_IsHalted()  returns FALSE (0000ms, 2223ms total)
T1720 058:073 JLINK_IsHalted()  returns FALSE (0001ms, 2224ms total)
T1720 058:174 JLINK_IsHalted()  returns FALSE (0001ms, 2224ms total)
T1720 058:276 JLINK_IsHalted()  returns FALSE (0001ms, 2224ms total)
T3214 058:382 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2224ms total)
T3214 058:383 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2225ms total)
T3214 058:384 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2226ms total)
T3214 058:385 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2227ms total)
T3214 058:386 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0002ms, 2229ms total)
T3214 058:388 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 11  returns 0x01 (0000ms, 2229ms total)
T1720 058:393 JLINK_IsHalted()  returns FALSE (0001ms, 2230ms total)
T1720 058:495 JLINK_IsHalted()  returns FALSE (0001ms, 2230ms total)
T1720 058:596 JLINK_IsHalted()  returns FALSE (0001ms, 2230ms total)
T1720 058:698 JLINK_IsHalted()  returns FALSE (0001ms, 2230ms total)
T1720 058:800 JLINK_IsHalted()  returns FALSE (0001ms, 2230ms total)
T3214 058:901 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2230ms total)
T3214 058:902 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2231ms total)
T3214 058:903 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2232ms total)
T3214 058:904 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2233ms total)
T3214 058:905 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0001ms, 2234ms total)
T3214 058:906 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 11  returns 0x01 (0001ms, 2235ms total)
T1720 058:912 JLINK_IsHalted()  returns FALSE (0001ms, 2236ms total)
T1720 059:014 JLINK_IsHalted()  returns FALSE (0001ms, 2236ms total)
T1720 059:116 JLINK_IsHalted()  returns FALSE (0001ms, 2236ms total)
T1720 059:218 JLINK_IsHalted()  returns FALSE (0000ms, 2235ms total)
T1720 059:319 JLINK_IsHalted()  returns FALSE (0001ms, 2236ms total)
T3214 059:420 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2236ms total)
T3214 059:421 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2237ms total)
T3214 059:422 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2238ms total)
T3214 059:423 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2239ms total)
T3214 059:424 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0001ms, 2240ms total)
T3214 059:425 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 12  returns 0x01 (0001ms, 2241ms total)
T1720 059:429 JLINK_IsHalted()  returns FALSE (0001ms, 2242ms total)
T1720 059:531 JLINK_IsHalted()  returns FALSE (0000ms, 2241ms total)
T1720 059:632 JLINK_IsHalted()  returns FALSE (0001ms, 2242ms total)
T1720 059:733 JLINK_IsHalted()  returns FALSE (0001ms, 2242ms total)
T1720 059:834 JLINK_IsHalted()  returns FALSE (0001ms, 2242ms total)
T3214 059:936 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2242ms total)
T3214 059:937 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2243ms total)
T3214 059:938 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2244ms total)
T3214 059:939 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0000ms, 2244ms total)
T3214 059:939 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0001ms, 2245ms total)
T3214 059:940 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 12  returns 0x01 (0001ms, 2246ms total)
T1720 059:945 JLINK_IsHalted()  returns FALSE (0001ms, 2247ms total)
T1720 060:047 JLINK_IsHalted()  returns FALSE (0000ms, 2246ms total)
T1720 060:148 JLINK_IsHalted()  returns FALSE (0000ms, 2246ms total)
T1720 060:249 JLINK_IsHalted()  returns FALSE (0001ms, 2247ms total)
T1720 060:350 JLINK_IsHalted()  returns FALSE (0001ms, 2247ms total)
T3214 060:451 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2247ms total)
T3214 060:452 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0000ms, 2247ms total)
T3214 060:452 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2248ms total)
T3214 060:453 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2249ms total)
T3214 060:454 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0000ms, 2249ms total)
T3214 060:454 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 13  returns 0x01 (0001ms, 2250ms total)
T1720 060:457 JLINK_IsHalted()  returns FALSE (0000ms, 2250ms total)
T1720 060:558 JLINK_IsHalted()  returns FALSE (0000ms, 2250ms total)
T1720 060:659 JLINK_IsHalted()  returns FALSE (0000ms, 2250ms total)
T1720 060:759 JLINK_IsHalted()  returns FALSE (0000ms, 2250ms total)
T1720 060:860 JLINK_IsHalted()  returns FALSE (0001ms, 2251ms total)
T3214 060:914 JLINK_SetBPEx(Addr = 0x000276B8, Type = 0xFFFFFFF2) -- CPU is running -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002008)  returns 0x00000002 (0002ms, 2252ms total)
T3214 060:963 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2253ms total)
T3214 060:964 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2254ms total)
T3214 060:965 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2255ms total)
T3214 060:966 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2256ms total)
T3214 060:967 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0001ms, 2257ms total)
T3214 060:968 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 13  returns 0x01 (0000ms, 2257ms total)
T1720 060:971 JLINK_IsHalted()  returns FALSE (0002ms, 2259ms total)
T1720 061:074 JLINK_IsHalted()  returns FALSE (0000ms, 2257ms total)
T1720 061:175 JLINK_IsHalted()  returns FALSE (0001ms, 2258ms total)
T1720 061:277 JLINK_IsHalted()  returns FALSE (0001ms, 2258ms total)
T1720 061:378 JLINK_IsHalted()  returns FALSE (0001ms, 2258ms total)
T3214 061:480 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2258ms total)
T3214 061:481 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2259ms total)
T3214 061:482 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2260ms total)
T3214 061:483 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2261ms total)
T3214 061:484 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0001ms, 2262ms total)
T3214 061:485 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 14  returns 0x01 (0001ms, 2263ms total)
T1720 061:489 JLINK_IsHalted()  returns FALSE (0001ms, 2264ms total)
T1720 061:591 JLINK_IsHalted()  returns FALSE (0001ms, 2264ms total)
T1720 061:692 JLINK_IsHalted()  returns FALSE (0001ms, 2264ms total)
T1720 061:794 JLINK_IsHalted()  returns FALSE (0001ms, 2264ms total)
T1720 061:896 JLINK_IsHalted()  returns FALSE (0001ms, 2264ms total)
T3214 061:998 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2264ms total)
T3214 061:999 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2265ms total)
T3214 062:000 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2266ms total)
T3214 062:001 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2267ms total)
T3214 062:002 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0001ms, 2268ms total)
T3214 062:003 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 15  returns 0x01 (0000ms, 2268ms total)
T1720 062:007 JLINK_IsHalted()  returns FALSE (0001ms, 2269ms total)
T1720 062:108 JLINK_IsHalted()  returns FALSE (0001ms, 2269ms total)
T1720 062:210 JLINK_IsHalted()  returns FALSE (0001ms, 2269ms total)
T1720 062:311 JLINK_IsHalted()  returns FALSE (0001ms, 2269ms total)
T1720 062:413 JLINK_IsHalted()  returns FALSE (0001ms, 2269ms total)
T3214 062:514 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0002ms, 2270ms total)
T3214 062:516 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2271ms total)
T3214 062:517 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2272ms total)
T3214 062:518 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2273ms total)
T3214 062:519 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0001ms, 2274ms total)
T3214 062:520 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 15  returns 0x01 (0001ms, 2275ms total)
T1720 062:526 JLINK_IsHalted()  returns FALSE (0001ms, 2276ms total)
T1720 062:628 JLINK_IsHalted()  returns FALSE (0001ms, 2276ms total)
T1720 062:730 JLINK_IsHalted()  returns FALSE (0001ms, 2276ms total)
T1720 062:831 JLINK_IsHalted()  returns FALSE (0000ms, 2275ms total)
T1720 062:932 JLINK_IsHalted()  returns FALSE (0001ms, 2276ms total)
T3214 063:034 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2276ms total)
T3214 063:035 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2277ms total)
T3214 063:036 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2278ms total)
T3214 063:037 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2279ms total)
T3214 063:038 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0001ms, 2280ms total)
T3214 063:039 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 16  returns 0x01 (0001ms, 2281ms total)
T1720 063:044 JLINK_IsHalted()  returns FALSE (0001ms, 2282ms total)
T1720 063:145 JLINK_IsHalted()  returns FALSE (0001ms, 2282ms total)
T1720 063:247 JLINK_IsHalted()  returns FALSE (0000ms, 2281ms total)
T1720 063:348 JLINK_IsHalted()  returns FALSE (0001ms, 2282ms total)
T1720 063:449 JLINK_IsHalted()  returns FALSE (0001ms, 2282ms total)
T3214 063:550 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2282ms total)
T3214 063:551 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0000ms, 2282ms total)
T3214 063:551 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0002ms, 2284ms total)
T3214 063:553 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0000ms, 2284ms total)
T3214 063:553 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0001ms, 2285ms total)
T3214 063:554 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 16  returns 0x01 (0001ms, 2286ms total)
T1720 063:557 JLINK_IsHalted()  returns FALSE (0001ms, 2287ms total)
T1720 063:659 JLINK_IsHalted()  returns FALSE (0000ms, 2286ms total)
T1720 063:760 JLINK_IsHalted()  returns FALSE (0000ms, 2286ms total)
T1720 063:861 JLINK_IsHalted()  returns FALSE (0000ms, 2286ms total)
T1720 063:963 JLINK_IsHalted()  returns FALSE (0001ms, 2287ms total)
T3214 064:007 JLINK_SetBPEx(Addr = 0x000276E0, Type = 0xFFFFFFF2) -- CPU is running -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000200C)  returns 0x00000003 (0001ms, 2287ms total)
T3214 064:064 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2288ms total)
T3214 064:065 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2289ms total)
T3214 064:066 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2290ms total)
T3214 064:067 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2291ms total)
T3214 064:068 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0000ms, 2291ms total)
T3214 064:068 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 17  returns 0x01 (0001ms, 2292ms total)
T1720 064:072 JLINK_IsHalted()  returns FALSE (0001ms, 2293ms total)
T1720 064:175 JLINK_IsHalted()  returns FALSE (0000ms, 2292ms total)
T1720 064:275 JLINK_IsHalted()  returns FALSE (0001ms, 2293ms total)
T1720 064:377 JLINK_IsHalted()  returns FALSE (0001ms, 2293ms total)
T1720 064:478 JLINK_IsHalted()  returns FALSE (0001ms, 2293ms total)
T3214 064:580 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2293ms total)
T3214 064:581 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0000ms, 2293ms total)
T3214 064:581 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2294ms total)
T3214 064:582 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2295ms total)
T3214 064:583 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0001ms, 2296ms total)
T3214 064:584 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 17  returns 0x01 (0000ms, 2296ms total)
T1720 064:585 JLINK_IsHalted()  returns FALSE (0001ms, 2297ms total)
T1720 064:687 JLINK_IsHalted()  returns FALSE (0000ms, 2296ms total)
T1720 064:787 JLINK_IsHalted()  returns FALSE (0001ms, 2297ms total)
T1720 064:889 JLINK_IsHalted()  returns FALSE (0000ms, 2296ms total)
T1720 064:990 JLINK_IsHalted()  returns FALSE (0000ms, 2296ms total)
T1720 065:092 JLINK_IsHalted()  returns FALSE (0000ms, 2296ms total)
T3214 065:196 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2297ms total)
T3214 065:197 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2298ms total)
T3214 065:198 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2299ms total)
T3214 065:199 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0000ms, 2299ms total)
T3214 065:199 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0001ms, 2300ms total)
T3214 065:200 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 18  returns 0x01 (0001ms, 2301ms total)
T1720 065:202 JLINK_IsHalted()  returns FALSE (0001ms, 2302ms total)
T1720 065:304 JLINK_IsHalted()  returns FALSE (0000ms, 2301ms total)
T1720 065:405 JLINK_IsHalted()  returns FALSE (0001ms, 2302ms total)
T1720 065:507 JLINK_IsHalted()  returns FALSE (0001ms, 2302ms total)
T1720 065:609 JLINK_IsHalted()  returns FALSE (0001ms, 2302ms total)
T3214 065:710 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2302ms total)
T3214 065:711 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0002ms, 2304ms total)
T3214 065:713 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2305ms total)
T3214 065:714 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2306ms total)
T3214 065:715 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0000ms, 2306ms total)
T3214 065:715 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 18  returns 0x01 (0002ms, 2308ms total)
T1720 065:720 JLINK_IsHalted()  returns FALSE (0001ms, 2309ms total)
T1720 065:822 JLINK_IsHalted()  returns FALSE (0000ms, 2308ms total)
T1720 065:923 JLINK_IsHalted()  returns FALSE (0000ms, 2308ms total)
T1720 066:024 JLINK_IsHalted()  returns FALSE (0001ms, 2309ms total)
T1720 066:125 JLINK_IsHalted()  returns FALSE (0001ms, 2309ms total)
T3214 066:226 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2309ms total)
T3214 066:227 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2310ms total)
T3214 066:228 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0000ms, 2310ms total)
T3214 066:228 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0002ms, 2312ms total)
T3214 066:230 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0001ms, 2313ms total)
T3214 066:231 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 19  returns 0x01 (0001ms, 2314ms total)
T1720 066:235 JLINK_IsHalted()  returns FALSE (0001ms, 2315ms total)
T1720 066:337 JLINK_IsHalted()  returns FALSE (0000ms, 2314ms total)
T1720 066:438 JLINK_IsHalted()  returns FALSE (0001ms, 2315ms total)
T1720 066:539 JLINK_IsHalted()  returns FALSE (0000ms, 2314ms total)
T1720 066:641 JLINK_IsHalted()  returns FALSE (0001ms, 2315ms total)
T3214 066:742 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2315ms total)
T3214 066:743 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2316ms total)
T3214 066:744 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2317ms total)
T3214 066:745 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2318ms total)
T3214 066:746 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0000ms, 2318ms total)
T3214 066:746 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 19  returns 0x01 (0001ms, 2319ms total)
T1720 066:751 JLINK_IsHalted()  returns FALSE (0001ms, 2320ms total)
T1720 066:854 JLINK_IsHalted()  returns FALSE (0001ms, 2320ms total)
T1720 066:956 JLINK_IsHalted()  returns FALSE (0001ms, 2320ms total)
T1720 067:058 JLINK_IsHalted()  returns FALSE (0001ms, 2320ms total)
T1720 067:160 JLINK_IsHalted()  returns FALSE (0000ms, 2319ms total)
T3214 067:262 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2320ms total)
T3214 067:263 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2321ms total)
T3214 067:264 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2322ms total)
T3214 067:265 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2323ms total)
T3214 067:266 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0000ms, 2323ms total)
T3214 067:266 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 20  returns 0x01 (0001ms, 2324ms total)
T1720 067:269 JLINK_IsHalted()  returns FALSE (0001ms, 2325ms total)
T3214 067:285 JLINK_ReadMemEx(0x000276C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x000276C4) - Data: 39 46  returns 0x02 (0001ms, 2325ms total)
T3214 067:286 JLINK_ReadMemEx(0x000276C6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x000276C6) - Data: 30 46  returns 0x02 (0000ms, 2325ms total)
T3214 067:286 JLINK_ReadMemEx(0x000276C6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x000276C6) - Data: 30 46  returns 0x02 (0001ms, 2326ms total)
T3214 067:287 JLINK_ReadMemEx(0x000276C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x000276C8) - Data: F3 F7  returns 0x02 (0001ms, 2327ms total)
T3214 067:288 JLINK_ReadMemEx(0x000276C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x000276C8) - Data: F3 F7  returns 0x02 (0001ms, 2328ms total)
T3214 067:289 JLINK_ReadMemEx(0x000276CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x000276CA) - Data: 78 F9  returns 0x02 (0001ms, 2329ms total)
T3214 067:290 JLINK_ReadMemEx(0x000276CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x000276CC) - Data: 05 46  returns 0x02 (0000ms, 2329ms total)
T3214 067:290 JLINK_ReadMemEx(0x000276CE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x000276CE) - Data: 00 2D  returns 0x02 (0001ms, 2330ms total)
T3214 067:291 JLINK_ReadMemEx(0x000276CE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x000276CE) - Data: 00 2D  returns 0x02 (0001ms, 2331ms total)
T3214 067:292 JLINK_ReadMemEx(0x000276D0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x000276D0) - Data: 01 D1  returns 0x02 (0001ms, 2332ms total)
T1720 067:371 JLINK_IsHalted()  returns FALSE (0000ms, 2332ms total)
T1720 067:472 JLINK_IsHalted()  returns FALSE (0000ms, 2332ms total)
T1720 067:574 JLINK_IsHalted()  returns FALSE (0001ms, 2333ms total)
T1720 067:675 JLINK_IsHalted()  returns FALSE (0001ms, 2333ms total)
T3214 067:777 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2333ms total)
T3214 067:778 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2334ms total)
T3214 067:779 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2335ms total)
T3214 067:780 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2336ms total)
T3214 067:781 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0000ms, 2336ms total)
T3214 067:781 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 20  returns 0x01 (0001ms, 2337ms total)
T1720 067:785 JLINK_IsHalted()  returns FALSE (0001ms, 2338ms total)
T1720 067:887 JLINK_IsHalted()  returns FALSE (0000ms, 2337ms total)
T1720 067:987 JLINK_IsHalted()  returns FALSE (0001ms, 2338ms total)
T1720 068:088 JLINK_IsHalted()  returns FALSE (0001ms, 2338ms total)
T1720 068:190 JLINK_IsHalted()  returns FALSE (0001ms, 2338ms total)
T3214 068:291 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2338ms total)
T3214 068:292 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0000ms, 2338ms total)
T3214 068:292 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2339ms total)
T3214 068:293 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2340ms total)
T3214 068:294 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0001ms, 2341ms total)
T3214 068:295 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 21  returns 0x01 (0000ms, 2341ms total)
T1720 068:295 JLINK_IsHalted()  returns FALSE (0002ms, 2343ms total)
T1720 068:398 JLINK_IsHalted()  returns FALSE (0000ms, 2341ms total)
T1720 068:500 JLINK_IsHalted()  returns FALSE (0000ms, 2341ms total)
T1720 068:601 JLINK_IsHalted()  returns FALSE (0001ms, 2342ms total)
T1720 068:703 JLINK_IsHalted()  returns FALSE (0001ms, 2342ms total)
T3214 068:804 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2342ms total)
T3214 068:805 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2343ms total)
T3214 068:806 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2344ms total)
T3214 068:807 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0000ms, 2344ms total)
T3214 068:807 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0001ms, 2345ms total)
T3214 068:808 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 21  returns 0x01 (0000ms, 2345ms total)
T1720 068:814 JLINK_IsHalted()  returns FALSE (0001ms, 2346ms total)
T1720 068:916 JLINK_IsHalted()  returns FALSE (0001ms, 2346ms total)
T1720 069:018 JLINK_IsHalted()  returns FALSE (0000ms, 2345ms total)
T1720 069:119 JLINK_IsHalted()  returns FALSE (0000ms, 2345ms total)
T1720 069:220 JLINK_IsHalted()  returns FALSE (0001ms, 2346ms total)
T3214 069:326 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2346ms total)
T3214 069:327 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2347ms total)
T3214 069:328 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2348ms total)
T3214 069:329 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0000ms, 2348ms total)
T3214 069:329 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0001ms, 2349ms total)
T3214 069:330 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 22  returns 0x01 (0001ms, 2350ms total)
T1720 069:332 JLINK_IsHalted()  returns FALSE (0001ms, 2351ms total)
T1720 069:433 JLINK_IsHalted()  returns FALSE (0000ms, 2350ms total)
T1720 069:534 JLINK_IsHalted()  returns FALSE (0001ms, 2351ms total)
T1720 069:635 JLINK_IsHalted()  returns FALSE (0000ms, 2350ms total)
T1720 069:736 JLINK_IsHalted()  returns FALSE (0000ms, 2350ms total)
T3214 069:837 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2351ms total)
T3214 069:838 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2352ms total)
T3214 069:839 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0000ms, 2352ms total)
T3214 069:839 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2353ms total)
T3214 069:840 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0000ms, 2353ms total)
T3214 069:840 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 22  returns 0x01 (0002ms, 2355ms total)
T1720 069:843 JLINK_IsHalted()  returns FALSE (0000ms, 2355ms total)
T1720 069:944 JLINK_IsHalted()  returns FALSE (0000ms, 2355ms total)
T1720 070:045 JLINK_IsHalted()  returns FALSE (0001ms, 2356ms total)
T1720 070:146 JLINK_IsHalted()  returns FALSE (0001ms, 2356ms total)
T1720 070:247 JLINK_IsHalted()  returns FALSE (0000ms, 2355ms total)
T3214 070:349 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2356ms total)
T3214 070:350 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0000ms, 2356ms total)
T3214 070:350 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2357ms total)
T3214 070:351 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0000ms, 2357ms total)
T3214 070:351 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0002ms, 2359ms total)
T3214 070:353 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 23  returns 0x01 (0001ms, 2360ms total)
T1720 070:355 JLINK_IsHalted()  returns FALSE (0001ms, 2361ms total)
T1720 070:456 JLINK_IsHalted()  returns FALSE (0001ms, 2361ms total)
T1720 070:558 JLINK_IsHalted()  returns FALSE (0001ms, 2361ms total)
T1720 070:659 JLINK_IsHalted()  returns FALSE (0001ms, 2361ms total)
T1720 070:761 JLINK_IsHalted()  returns FALSE (0000ms, 2360ms total)
T3214 070:862 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0000ms, 2360ms total)
T3214 070:862 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2361ms total)
T3214 070:863 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2362ms total)
T3214 070:864 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2363ms total)
T3214 070:865 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0000ms, 2363ms total)
T3214 070:865 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 23  returns 0x01 (0001ms, 2364ms total)
T1720 070:867 JLINK_IsHalted()  returns FALSE (0001ms, 2365ms total)
T1720 070:968 JLINK_IsHalted()  returns FALSE (0001ms, 2365ms total)
T1720 071:069 JLINK_IsHalted()  returns FALSE (0000ms, 2364ms total)
T1720 071:170 JLINK_IsHalted()  returns FALSE (0000ms, 2364ms total)
T1720 071:272 JLINK_IsHalted()  returns FALSE (0000ms, 2364ms total)
T1720 071:373 JLINK_IsHalted()  returns FALSE (0001ms, 2365ms total)
T3214 071:474 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2365ms total)
T3214 071:475 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2366ms total)
T3214 071:476 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2367ms total)
T3214 071:477 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2368ms total)
T3214 071:478 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0001ms, 2369ms total)
T3214 071:479 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 24  returns 0x01 (0000ms, 2369ms total)
T1720 071:480 JLINK_IsHalted()  returns FALSE (0001ms, 2370ms total)
T1720 071:582 JLINK_IsHalted()  returns FALSE (0000ms, 2369ms total)
T1720 071:683 JLINK_IsHalted()  returns FALSE (0000ms, 2369ms total)
T1720 071:784 JLINK_IsHalted()  returns FALSE (0000ms, 2369ms total)
T1720 071:886 JLINK_IsHalted()  returns FALSE (0000ms, 2369ms total)
T3214 071:987 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2370ms total)
T3214 071:988 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0000ms, 2370ms total)
T3214 071:988 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2371ms total)
T3214 071:989 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2372ms total)
T3214 071:990 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0001ms, 2373ms total)
T3214 071:991 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 24  returns 0x01 (0000ms, 2373ms total)
T1720 071:993 JLINK_IsHalted()  returns FALSE (0001ms, 2374ms total)
T1720 072:094 JLINK_IsHalted()  returns FALSE (0000ms, 2373ms total)
T1720 072:196 JLINK_IsHalted()  returns FALSE (0000ms, 2373ms total)
T1720 072:297 JLINK_IsHalted()  returns FALSE (0000ms, 2373ms total)
T1720 072:398 JLINK_IsHalted()  returns FALSE (0000ms, 2373ms total)
T1720 072:499 JLINK_IsHalted()  returns FALSE (0000ms, 2373ms total)
T3214 072:600 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2374ms total)
T3214 072:601 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0000ms, 2374ms total)
T3214 072:601 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2375ms total)
T3214 072:602 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2376ms total)
T3214 072:603 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0001ms, 2377ms total)
T3214 072:604 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 25  returns 0x01 (0001ms, 2378ms total)
T1720 072:606 JLINK_IsHalted()  returns FALSE (0000ms, 2378ms total)
T1720 072:707 JLINK_IsHalted()  returns FALSE (0001ms, 2379ms total)
T1720 072:808 JLINK_IsHalted()  returns FALSE (0000ms, 2378ms total)
T1720 072:909 JLINK_IsHalted()  returns FALSE (0000ms, 2378ms total)
T1720 073:011 JLINK_IsHalted()  returns FALSE (0000ms, 2378ms total)
T3214 073:114 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0000ms, 2378ms total)
T3214 073:114 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2379ms total)
T3214 073:115 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2380ms total)
T3214 073:116 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2381ms total)
T3214 073:117 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0000ms, 2381ms total)
T3214 073:117 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 26  returns 0x01 (0001ms, 2382ms total)
T1720 073:120 JLINK_IsHalted()  returns FALSE (0000ms, 2382ms total)
T1720 073:222 JLINK_IsHalted()  returns FALSE (0000ms, 2382ms total)
T1720 073:323 JLINK_IsHalted()  returns FALSE (0000ms, 2382ms total)
T1720 073:424 JLINK_IsHalted()  returns FALSE (0001ms, 2383ms total)
T1720 073:525 JLINK_IsHalted()  returns FALSE (0000ms, 2382ms total)
T3214 073:626 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0000ms, 2382ms total)
T3214 073:626 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2383ms total)
T3214 073:627 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2384ms total)
T3214 073:628 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0000ms, 2384ms total)
T3214 073:628 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0001ms, 2385ms total)
T3214 073:629 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 26  returns 0x01 (0001ms, 2386ms total)
T1720 073:632 JLINK_IsHalted()  returns FALSE (0001ms, 2387ms total)
T1720 073:734 JLINK_IsHalted()  returns FALSE (0000ms, 2386ms total)
T1720 073:834 JLINK_IsHalted()  returns FALSE (0000ms, 2386ms total)
T1720 073:936 JLINK_IsHalted()  returns FALSE (0001ms, 2387ms total)
T1720 074:037 JLINK_IsHalted()  returns FALSE (0000ms, 2386ms total)
T1720 074:138 JLINK_IsHalted()  returns FALSE (0000ms, 2386ms total)
T3214 074:238 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2387ms total)
T3214 074:239 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2388ms total)
T3214 074:240 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2389ms total)
T3214 074:241 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2390ms total)
T3214 074:242 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0001ms, 2391ms total)
T3214 074:243 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 27  returns 0x01 (0000ms, 2391ms total)
T1720 074:247 JLINK_IsHalted()  returns FALSE (0001ms, 2392ms total)
T1720 074:350 JLINK_IsHalted()  returns FALSE (0000ms, 2391ms total)
T1720 074:451 JLINK_IsHalted()  returns FALSE (0000ms, 2391ms total)
T1720 074:556 JLINK_IsHalted()  returns FALSE (0002ms, 2393ms total)
T1720 074:659 JLINK_IsHalted()  returns FALSE (0000ms, 2391ms total)
T3214 074:760 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2392ms total)
T3214 074:761 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0000ms, 2392ms total)
T3214 074:761 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2393ms total)
T3214 074:762 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2394ms total)
T3214 074:763 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0000ms, 2394ms total)
T3214 074:763 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 27  returns 0x01 (0001ms, 2395ms total)
T1720 074:770 JLINK_IsHalted()  returns FALSE (0001ms, 2396ms total)
T1720 074:872 JLINK_IsHalted()  returns FALSE (0000ms, 2395ms total)
T1720 074:973 JLINK_IsHalted()  returns FALSE (0000ms, 2395ms total)
T1720 075:074 JLINK_IsHalted()  returns FALSE (0000ms, 2395ms total)
T1720 075:175 JLINK_IsHalted()  returns FALSE (0000ms, 2395ms total)
T3214 075:276 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0000ms, 2395ms total)
T3214 075:276 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2396ms total)
T3214 075:277 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2397ms total)
T3214 075:278 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2398ms total)
T3214 075:279 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0000ms, 2398ms total)
T3214 075:279 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 28  returns 0x01 (0001ms, 2399ms total)
T1720 075:281 JLINK_IsHalted()  returns FALSE (0001ms, 2400ms total)
T1720 075:383 JLINK_IsHalted()  returns FALSE (0000ms, 2399ms total)
T1720 075:485 JLINK_IsHalted()  returns FALSE (0000ms, 2399ms total)
T1720 075:585 JLINK_IsHalted()  returns FALSE (0001ms, 2400ms total)
T1720 075:687 JLINK_IsHalted()  returns FALSE (0000ms, 2399ms total)
T3214 075:788 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0000ms, 2399ms total)
T3214 075:788 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2400ms total)
T3214 075:789 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2401ms total)
T3214 075:790 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0000ms, 2401ms total)
T3214 075:790 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0001ms, 2402ms total)
T3214 075:791 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 28  returns 0x01 (0001ms, 2403ms total)
T1720 075:794 JLINK_IsHalted()  returns FALSE (0000ms, 2403ms total)
T1720 075:896 JLINK_IsHalted()  returns FALSE (0001ms, 2404ms total)
T1720 075:997 JLINK_IsHalted()  returns FALSE (0001ms, 2404ms total)
T1720 076:099 JLINK_IsHalted()  returns FALSE (0000ms, 2403ms total)
T1720 076:200 JLINK_IsHalted()  returns FALSE (0000ms, 2403ms total)
T3214 076:302 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0000ms, 2403ms total)
T3214 076:302 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2404ms total)
T3214 076:303 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2405ms total)
T3214 076:304 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0000ms, 2405ms total)
T3214 076:304 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0001ms, 2406ms total)
T3214 076:305 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 29  returns 0x01 (0001ms, 2407ms total)
T1720 076:307 JLINK_IsHalted()  returns FALSE (0001ms, 2408ms total)
T1720 076:409 JLINK_IsHalted()  returns FALSE (0000ms, 2407ms total)
T1720 076:510 JLINK_IsHalted()  returns FALSE (0000ms, 2407ms total)
T1720 076:612 JLINK_IsHalted()  returns FALSE (0001ms, 2408ms total)
T1720 076:713 JLINK_IsHalted()  returns FALSE (0000ms, 2407ms total)
T3214 076:814 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0000ms, 2407ms total)
T3214 076:814 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2408ms total)
T3214 076:815 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2409ms total)
T3214 076:816 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0000ms, 2409ms total)
T3214 076:816 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0001ms, 2410ms total)
T3214 076:817 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 29  returns 0x01 (0000ms, 2410ms total)
T1720 076:821 JLINK_IsHalted()  returns FALSE (0001ms, 2411ms total)
T1720 076:923 JLINK_IsHalted()  returns FALSE (0000ms, 2410ms total)
T1720 077:024 JLINK_IsHalted()  returns FALSE (0000ms, 2410ms total)
T1720 077:125 JLINK_IsHalted()  returns FALSE (0000ms, 2410ms total)
T1720 077:227 JLINK_IsHalted()  returns FALSE (0000ms, 2410ms total)
T3214 077:328 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0000ms, 2410ms total)
T3214 077:328 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2411ms total)
T3214 077:329 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2412ms total)
T3214 077:330 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0000ms, 2412ms total)
T3214 077:330 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0001ms, 2413ms total)
T3214 077:331 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 30  returns 0x01 (0001ms, 2414ms total)
T1720 077:333 JLINK_IsHalted()  returns FALSE (0001ms, 2415ms total)
T1720 077:435 JLINK_IsHalted()  returns FALSE (0000ms, 2414ms total)
T1720 077:536 JLINK_IsHalted()  returns FALSE (0000ms, 2414ms total)
T1720 077:637 JLINK_IsHalted()  returns FALSE (0000ms, 2414ms total)
T1720 077:739 JLINK_IsHalted()  returns FALSE (0000ms, 2414ms total)
T1720 077:840 JLINK_IsHalted()  returns FALSE (0001ms, 2415ms total)
T3214 077:942 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2415ms total)
T3214 077:943 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2416ms total)
T3214 077:944 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0000ms, 2416ms total)
T3214 077:944 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2417ms total)
T3214 077:945 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0001ms, 2418ms total)
T3214 077:946 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 30  returns 0x01 (0001ms, 2419ms total)
T1720 077:949 JLINK_IsHalted()  returns FALSE (0001ms, 2420ms total)
T1720 078:050 JLINK_IsHalted()  returns FALSE (0001ms, 2420ms total)
T1720 078:151 JLINK_IsHalted()  returns FALSE (0001ms, 2420ms total)
T1720 078:253 JLINK_IsHalted()  returns FALSE (0001ms, 2420ms total)
T1720 078:354 JLINK_IsHalted()  returns FALSE (0000ms, 2419ms total)
T3214 078:455 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2420ms total)
T3214 078:456 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2421ms total)
T3214 078:457 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2422ms total)
T3214 078:458 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2423ms total)
T3214 078:459 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0000ms, 2423ms total)
T3214 078:459 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 31  returns 0x01 (0000ms, 2423ms total)
T1720 078:461 JLINK_IsHalted()  returns FALSE (0001ms, 2424ms total)
T1720 078:563 JLINK_IsHalted()  returns FALSE (0001ms, 2424ms total)
T1720 078:664 JLINK_IsHalted()  returns FALSE (0000ms, 2423ms total)
T1720 078:765 JLINK_IsHalted()  returns FALSE (0000ms, 2423ms total)
T1720 078:866 JLINK_IsHalted()  returns FALSE (0001ms, 2424ms total)
T1720 078:967 JLINK_IsHalted()  returns FALSE (0001ms, 2424ms total)
T3214 079:069 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2424ms total)
T3214 079:070 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2425ms total)
T3214 079:071 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2426ms total)
T3214 079:072 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2427ms total)
T3214 079:073 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0001ms, 2428ms total)
T3214 079:074 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 32  returns 0x01 (0000ms, 2428ms total)
T1720 079:076 JLINK_IsHalted()  returns FALSE (0002ms, 2430ms total)
T1720 079:178 JLINK_IsHalted()  returns FALSE (0001ms, 2429ms total)
T1720 079:279 JLINK_IsHalted()  returns FALSE (0001ms, 2429ms total)
T1720 079:380 JLINK_IsHalted()  returns FALSE (0001ms, 2429ms total)
T1720 079:481 JLINK_IsHalted()  returns FALSE (0001ms, 2429ms total)
T3214 079:582 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2429ms total)
T3214 079:583 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2430ms total)
T3214 079:584 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2431ms total)
T3214 079:585 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0000ms, 2431ms total)
T3214 079:585 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0001ms, 2432ms total)
T3214 079:586 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 32  returns 0x01 (0001ms, 2433ms total)
T1720 079:589 JLINK_IsHalted()  returns FALSE (0001ms, 2434ms total)
T1720 079:691 JLINK_IsHalted()  returns FALSE (0000ms, 2433ms total)
T1720 079:792 JLINK_IsHalted()  returns FALSE (0001ms, 2434ms total)
T1720 079:893 JLINK_IsHalted()  returns FALSE (0001ms, 2434ms total)
T1720 079:995 JLINK_IsHalted()  returns FALSE (0001ms, 2434ms total)
T3214 080:097 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0000ms, 2433ms total)
T3214 080:097 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2434ms total)
T3214 080:098 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2435ms total)
T3214 080:099 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2436ms total)
T3214 080:100 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0000ms, 2436ms total)
T3214 080:100 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 33  returns 0x01 (0001ms, 2437ms total)
T1720 080:103 JLINK_IsHalted()  returns FALSE (0000ms, 2437ms total)
T1720 080:204 JLINK_IsHalted()  returns FALSE (0001ms, 2438ms total)
T1720 080:305 JLINK_IsHalted()  returns FALSE (0001ms, 2438ms total)
T1720 080:407 JLINK_IsHalted()  returns FALSE (0000ms, 2437ms total)
T1720 080:508 JLINK_IsHalted()  returns FALSE (0000ms, 2437ms total)
T3214 080:609 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2438ms total)
T3214 080:610 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0000ms, 2438ms total)
T3214 080:610 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2439ms total)
T3214 080:611 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2440ms total)
T3214 080:612 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0001ms, 2441ms total)
T3214 080:613 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 33  returns 0x01 (0000ms, 2441ms total)
T1720 080:616 JLINK_IsHalted()  returns FALSE (0001ms, 2442ms total)
T1720 080:718 JLINK_IsHalted()  returns FALSE (0001ms, 2442ms total)
T1720 080:820 JLINK_IsHalted()  returns FALSE (0001ms, 2442ms total)
T1720 080:922 JLINK_IsHalted()  returns TRUE (0005ms, 2446ms total)
T1720 080:927 JLINK_Halt()  returns 0x00 (0000ms, 2441ms total)
T1720 080:927 JLINK_IsHalted()  returns TRUE (0000ms, 2441ms total)
T1720 080:927 JLINK_IsHalted()  returns TRUE (0000ms, 2441ms total)
T1720 080:927 JLINK_IsHalted()  returns TRUE (0000ms, 2441ms total)
T1720 080:927 JLINK_ReadReg(R15 (PC))  returns 0x000276B8 (0000ms, 2441ms total)
T1720 080:927 JLINK_ReadReg(XPSR)  returns 0x01000000 (0000ms, 2441ms total)
T1720 080:927 JLINK_ClrBPEx(BPHandle = 0x00000002)  returns 0x00 (0000ms, 2441ms total)
T1720 080:927 JLINK_ClrBPEx(BPHandle = 0x00000003)  returns 0x00 (0000ms, 2441ms total)
T1720 080:927 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 02 00 00 00  returns 1 (0001ms, 2442ms total)
T1720 080:928 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 1 (0001ms, 2443ms total)
T1720 080:929 JLINK_ReadReg(R0)  returns 0x00009601 (0000ms, 2443ms total)
T1720 080:929 JLINK_ReadReg(R1)  returns 0x20001540 (0000ms, 2443ms total)
T1720 080:929 JLINK_ReadReg(R2)  returns 0x20001933 (0000ms, 2443ms total)
T1720 080:929 JLINK_ReadReg(R3)  returns 0x00027985 (0000ms, 2443ms total)
T1720 080:929 JLINK_ReadReg(R4)  returns 0x20001933 (0000ms, 2443ms total)
T1720 080:929 JLINK_ReadReg(R5)  returns 0x20001933 (0000ms, 2443ms total)
T1720 080:929 JLINK_ReadReg(R6)  returns 0x20001540 (0000ms, 2443ms total)
T1720 080:929 JLINK_ReadReg(R7)  returns 0x20001540 (0000ms, 2443ms total)
T1720 080:929 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 2443ms total)
T1720 080:929 JLINK_ReadReg(R9)  returns 0x20000204 (0000ms, 2443ms total)
T1720 080:929 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 2443ms total)
T1720 080:929 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 2443ms total)
T1720 080:929 JLINK_ReadReg(R12)  returns 0x00000003 (0000ms, 2443ms total)
T1720 080:929 JLINK_ReadReg(R13 (SP))  returns 0x20007130 (0000ms, 2443ms total)
T1720 080:929 JLINK_ReadReg(R14)  returns 0x0002798F (0000ms, 2443ms total)
T1720 080:929 JLINK_ReadReg(R15 (PC))  returns 0x000276B8 (0000ms, 2443ms total)
T1720 080:929 JLINK_ReadReg(XPSR)  returns 0x01000000 (0000ms, 2443ms total)
T1720 080:929 JLINK_ReadReg(MSP)  returns 0x20007130 (0000ms, 2443ms total)
T1720 080:929 JLINK_ReadReg(PSP)  returns 0x20001000 (0000ms, 2443ms total)
T1720 080:929 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 2443ms total)
T3214 080:929 JLINK_ReadMemEx(0x20007144, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20007140) -- Updating C cache (64 bytes @ 0x20007140) -- Read from C cache (4 bytes @ 0x20007144) - Data: 8F 79 02 00  returns 0x04 (0002ms, 2445ms total)
T3214 080:931 JLINK_ReadMemEx(0x20007134, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20007100) -- Updating C cache (64 bytes @ 0x20007100) -- Read from C cache (4 bytes @ 0x20007134) - Data: 32 15 00 20  returns 0x04 (0001ms, 2446ms total)
T3214 080:932 JLINK_ReadMemEx(0x20007138, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20007138) - Data: 33 19 00 20  returns 0x04 (0000ms, 2446ms total)
T3214 080:932 JLINK_ReadMemEx(0x2000713C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000713C) - Data: 01 96 00 00  returns 0x04 (0000ms, 2446ms total)
T3214 080:932 JLINK_ReadMemEx(0x20007140, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20007140) - Data: 40 15 00 20  returns 0x04 (0000ms, 2446ms total)
T3214 080:932 JLINK_ReadMemEx(0x20007144, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20007144) - Data: 8F 79 02 00  returns 0x04 (0000ms, 2446ms total)
T3214 080:932 JLINK_ReadMemEx(0x2000715C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000715C) - Data: 49 B6 02 00  returns 0x04 (0000ms, 2446ms total)
T3214 080:932 JLINK_ReadMemEx(0x2000714C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000714C) - Data: 36 00 00 00  returns 0x04 (0000ms, 2446ms total)
T3214 080:932 JLINK_ReadMemEx(0x20007150, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20007150) - Data: 16 61 00 00  returns 0x04 (0000ms, 2446ms total)
T3214 080:932 JLINK_ReadMemEx(0x20007154, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20007154) - Data: D0 BE 02 00  returns 0x04 (0000ms, 2446ms total)
T3214 080:932 JLINK_ReadMemEx(0x20007158, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20007158) - Data: 20 00 00 00  returns 0x04 (0000ms, 2446ms total)
T3214 080:932 JLINK_ReadMemEx(0x2000715C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000715C) - Data: 49 B6 02 00  returns 0x04 (0000ms, 2446ms total)
T3214 080:932 JLINK_ReadMemEx(0x2000716C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000716C) - Data: B9 A1 02 00  returns 0x04 (0000ms, 2446ms total)
T3214 080:932 JLINK_ReadMemEx(0x20007160, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20007160) - Data: D0 BE 02 00  returns 0x04 (0000ms, 2446ms total)
T3214 080:932 JLINK_ReadMemEx(0x20007164, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20007164) - Data: 01 00 00 00  returns 0x04 (0000ms, 2446ms total)
T3214 080:932 JLINK_ReadMemEx(0x20007168, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20007168) - Data: D0 BE 02 00  returns 0x04 (0000ms, 2446ms total)
T3214 080:932 JLINK_ReadMemEx(0x2000716C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000716C) - Data: B9 A1 02 00  returns 0x04 (0000ms, 2446ms total)
T3214 080:932 JLINK_ReadMemEx(0x2000717C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000717C) - Data: AD 9C 01 00  returns 0x04 (0000ms, 2446ms total)
T3214 080:932 JLINK_ReadMemEx(0x20007148, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20007148) - Data: 00 00  returns 0x02 (0000ms, 2446ms total)
T3214 080:932 JLINK_ReadMemEx(0x20001540, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001540) -- Updating C cache (64 bytes @ 0x20001540) -- Read from C cache (32 bytes @ 0x20001540) - Data: 00 10 00 00 00 28 01 00 BF C9 BF C9 00 02 00 00 ...  returns 0x20 (0002ms, 2448ms total)
T3214 080:934 JLINK_ReadMemEx(0x20007148, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20007148) - Data: 00 00  returns 0x02 (0000ms, 2448ms total)
T3214 080:934 JLINK_ReadMemEx(0x20001540, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x20001540) - Data: 00 10 00 00 00 28 01 00 BF C9 BF C9 00 02 00 00 ...  returns 0x20 (0000ms, 2448ms total)
T3214 080:934 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200002C0) -- Updating C cache (64 bytes @ 0x200002C0) -- Read from C cache (1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0002ms, 2450ms total)
T3214 080:936 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0000ms, 2450ms total)
T3214 080:936 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0000ms, 2450ms total)
T3214 080:936 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0000ms, 2450ms total)
T3214 080:936 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0000ms, 2450ms total)
T3214 080:936 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200002D1) - Data: 33  returns 0x01 (0000ms, 2450ms total)
T3214 080:939 JLINK_ReadMemEx(0x000276B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00027680) -- Updating C cache (64 bytes @ 0x00027680) -- Read from C cache (2 bytes @ 0x000276B6) - Data: 00 BF  returns 0x02 (0002ms, 2452ms total)
T3214 080:941 JLINK_ReadMemEx(0x000276B8, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x000276C0) -- Updating C cache (64 bytes @ 0x000276C0) -- Read from C cache (60 bytes @ 0x000276B8) - Data: 0A 48 41 7B 02 7B 08 02 10 43 87 1E 39 46 30 46 ...  returns 0x3C (0001ms, 2453ms total)
T3214 080:942 JLINK_ReadMemEx(0x000276B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000276B8) - Data: 0A 48  returns 0x02 (0000ms, 2453ms total)
T3214 080:942 JLINK_ReadMemEx(0x000276B8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000276B8) - Data: 0A 48 41 7B 02 7B 08 02 10 43 87 1E 39 46 30 46 ...  returns 0x3C (0000ms, 2453ms total)
T3214 080:942 JLINK_ReadMemEx(0x000276B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000276B8) - Data: 0A 48  returns 0x02 (0000ms, 2453ms total)
T3214 080:942 JLINK_ReadMemEx(0x000276BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000276BA) - Data: 41 7B  returns 0x02 (0000ms, 2453ms total)
T3214 080:942 JLINK_ReadMemEx(0x000276BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000276BA) - Data: 41 7B  returns 0x02 (0000ms, 2453ms total)
T3214 080:942 JLINK_ReadMemEx(0x000276BC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000276BC) - Data: 02 7B 08 02 10 43 87 1E 39 46 30 46 F3 F7 78 F9 ...  returns 0x3C (0000ms, 2453ms total)
T3214 080:942 JLINK_ReadMemEx(0x000276BC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000276BC) - Data: 02 7B  returns 0x02 (0000ms, 2453ms total)
T3214 080:942 JLINK_ReadMemEx(0x000276BC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000276BC) - Data: 02 7B 08 02 10 43 87 1E 39 46 30 46 F3 F7 78 F9 ...  returns 0x3C (0000ms, 2453ms total)
T3214 080:942 JLINK_ReadMemEx(0x000276BC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000276BC) - Data: 02 7B  returns 0x02 (0000ms, 2453ms total)
T3214 080:942 JLINK_ReadMemEx(0x000276BE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000276BE) - Data: 08 02  returns 0x02 (0000ms, 2453ms total)
T3214 080:942 JLINK_ReadMemEx(0x000276BE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000276BE) - Data: 08 02  returns 0x02 (0000ms, 2453ms total)
T3214 080:942 JLINK_ReadMemEx(0x000276C0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000276C0) - Data: 10 43 87 1E 39 46 30 46 F3 F7 78 F9 05 46 00 2D ...  returns 0x3C (0000ms, 2453ms total)
T3214 080:942 JLINK_ReadMemEx(0x000276C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000276C0) - Data: 10 43  returns 0x02 (0000ms, 2453ms total)
T1720 084:173 JLINK_ReadMemEx(0x000276B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000276B8) - Data: 0A 48  returns 0x02 (0000ms, 2453ms total)
T1720 084:173 JLINK_Step() -- Read from C cache (2 bytes @ 0x000276B8) -- CPU_ReadMem(4 bytes @ 0xE000ED18) -- CPU_WriteMem(4 bytes @ 0xE000ED18) -- CPU_ReadMem(4 bytes @ 0xE000ED18) -- CPU_WriteMem(4 bytes @ 0xE000ED18) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Read from C cache (4 bytes @ 0x000276E4) -- Simulated  returns 0x00 (0004ms, 2457ms total)
T1720 084:177 JLINK_ReadReg(R15 (PC))  returns 0x000276BA (0000ms, 2457ms total)
T1720 084:177 JLINK_ReadReg(XPSR)  returns 0x01000000 (0001ms, 2458ms total)
T1720 084:178 JLINK_SetBPEx(Addr = 0x000276B8, Type = 0xFFFFFFF2)  returns 0x00000004 (0000ms, 2458ms total)
T1720 084:178 JLINK_SetBPEx(Addr = 0x000276E0, Type = 0xFFFFFFF2)  returns 0x00000005 (0000ms, 2458ms total)
T1720 084:178 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0005ms, 2463ms total)
T1720 084:284 JLINK_IsHalted()  returns FALSE (0001ms, 2464ms total)
T1720 084:386 JLINK_IsHalted()  returns FALSE (0001ms, 2464ms total)
T1720 084:488 JLINK_IsHalted()  returns FALSE (0001ms, 2464ms total)
T1720 084:589 JLINK_IsHalted()  returns FALSE (0001ms, 2464ms total)
T3214 084:693 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2464ms total)
T3214 084:694 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2465ms total)
T3214 084:695 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2466ms total)
T3214 084:696 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2467ms total)
T3214 084:697 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0001ms, 2468ms total)
T3214 084:698 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 33  returns 0x01 (0000ms, 2468ms total)
T1720 084:701 JLINK_IsHalted()  returns FALSE (0001ms, 2469ms total)
T1720 084:803 JLINK_IsHalted()  returns FALSE (0001ms, 2469ms total)
T1720 084:904 JLINK_IsHalted()  returns FALSE (0001ms, 2469ms total)
T1720 085:006 JLINK_IsHalted()  returns FALSE (0001ms, 2469ms total)
T1720 085:107 JLINK_IsHalted()  returns FALSE (0001ms, 2469ms total)
T3214 085:208 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2469ms total)
T3214 085:209 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0000ms, 2469ms total)
T3214 085:209 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2470ms total)
T3214 085:210 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0002ms, 2472ms total)
T3214 085:212 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0001ms, 2473ms total)
T3214 085:213 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 33  returns 0x01 (0000ms, 2473ms total)
T1720 085:215 JLINK_IsHalted()  returns FALSE (0002ms, 2475ms total)
T1720 085:318 JLINK_IsHalted()  returns FALSE (0001ms, 2474ms total)
T1720 085:419 JLINK_IsHalted()  returns TRUE (0006ms, 2479ms total)
T1720 085:425 JLINK_Halt()  returns 0x00 (0000ms, 2473ms total)
T1720 085:425 JLINK_IsHalted()  returns TRUE (0000ms, 2473ms total)
T1720 085:425 JLINK_IsHalted()  returns TRUE (0000ms, 2473ms total)
T1720 085:425 JLINK_IsHalted()  returns TRUE (0000ms, 2473ms total)
T1720 085:425 JLINK_ReadReg(R15 (PC))  returns 0x000276E0 (0000ms, 2473ms total)
T1720 085:425 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 2473ms total)
T1720 085:425 JLINK_ClrBPEx(BPHandle = 0x00000004)  returns 0x00 (0000ms, 2473ms total)
T1720 085:425 JLINK_ClrBPEx(BPHandle = 0x00000005)  returns 0x00 (0000ms, 2473ms total)
T1720 085:425 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 02 00 00 00  returns 1 (0001ms, 2474ms total)
T1720 085:426 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 1 (0001ms, 2475ms total)
T1720 085:427 JLINK_ReadReg(R0)  returns 0x00000000 (0000ms, 2475ms total)
T1720 085:427 JLINK_ReadReg(R1)  returns 0xB330B330 (0000ms, 2475ms total)
T1720 085:427 JLINK_ReadReg(R2)  returns 0x00000000 (0001ms, 2476ms total)
T1720 085:428 JLINK_ReadReg(R3)  returns 0x00027985 (0000ms, 2476ms total)
T1720 085:428 JLINK_ReadReg(R4)  returns 0x20001933 (0000ms, 2476ms total)
T1720 085:428 JLINK_ReadReg(R5)  returns 0x00000000 (0000ms, 2476ms total)
T1720 085:428 JLINK_ReadReg(R6)  returns 0x20001540 (0000ms, 2476ms total)
T1720 085:428 JLINK_ReadReg(R7)  returns 0x00000028 (0000ms, 2476ms total)
T1720 085:428 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 2476ms total)
T1720 085:428 JLINK_ReadReg(R9)  returns 0x20000204 (0000ms, 2476ms total)
T1720 085:428 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 2476ms total)
T1720 085:428 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 2476ms total)
T1720 085:428 JLINK_ReadReg(R12)  returns 0x00000003 (0000ms, 2476ms total)
T1720 085:428 JLINK_ReadReg(R13 (SP))  returns 0x20007130 (0000ms, 2476ms total)
T1720 085:428 JLINK_ReadReg(R14)  returns 0x0001C2B7 (0000ms, 2476ms total)
T1720 085:428 JLINK_ReadReg(R15 (PC))  returns 0x000276E0 (0000ms, 2476ms total)
T1720 085:428 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 2476ms total)
T1720 085:428 JLINK_ReadReg(MSP)  returns 0x20007130 (0000ms, 2476ms total)
T1720 085:429 JLINK_ReadReg(PSP)  returns 0x20001000 (0000ms, 2477ms total)
T1720 085:429 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 2477ms total)
T3214 085:431 JLINK_ReadMemEx(0x20007144, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20007140) -- Updating C cache (64 bytes @ 0x20007140) -- Read from C cache (4 bytes @ 0x20007144) - Data: 8F 79 02 00  returns 0x04 (0002ms, 2479ms total)
T3214 085:433 JLINK_ReadMemEx(0x20007134, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20007100) -- Updating C cache (64 bytes @ 0x20007100) -- Read from C cache (4 bytes @ 0x20007134) - Data: 32 15 00 20  returns 0x04 (0002ms, 2481ms total)
T3214 085:435 JLINK_ReadMemEx(0x20007138, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20007138) - Data: 33 19 00 20  returns 0x04 (0000ms, 2481ms total)
T3214 085:435 JLINK_ReadMemEx(0x2000713C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000713C) - Data: 01 96 00 00  returns 0x04 (0000ms, 2481ms total)
T3214 085:435 JLINK_ReadMemEx(0x20007140, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20007140) - Data: 40 15 00 20  returns 0x04 (0000ms, 2481ms total)
T3214 085:435 JLINK_ReadMemEx(0x20007144, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20007144) - Data: 8F 79 02 00  returns 0x04 (0000ms, 2481ms total)
T3214 085:435 JLINK_ReadMemEx(0x2000715C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000715C) - Data: 49 B6 02 00  returns 0x04 (0000ms, 2481ms total)
T3214 085:435 JLINK_ReadMemEx(0x2000714C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000714C) - Data: 36 00 00 00  returns 0x04 (0000ms, 2481ms total)
T3214 085:435 JLINK_ReadMemEx(0x20007150, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20007150) - Data: 16 61 00 00  returns 0x04 (0000ms, 2481ms total)
T3214 085:435 JLINK_ReadMemEx(0x20007154, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20007154) - Data: D0 BE 02 00  returns 0x04 (0000ms, 2481ms total)
T3214 085:435 JLINK_ReadMemEx(0x20007158, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20007158) - Data: 20 00 00 00  returns 0x04 (0000ms, 2481ms total)
T3214 085:435 JLINK_ReadMemEx(0x2000715C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000715C) - Data: 49 B6 02 00  returns 0x04 (0000ms, 2481ms total)
T3214 085:435 JLINK_ReadMemEx(0x2000716C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000716C) - Data: B9 A1 02 00  returns 0x04 (0000ms, 2481ms total)
T3214 085:435 JLINK_ReadMemEx(0x20007160, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20007160) - Data: D0 BE 02 00  returns 0x04 (0000ms, 2481ms total)
T3214 085:435 JLINK_ReadMemEx(0x20007164, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20007164) - Data: 01 00 00 00  returns 0x04 (0000ms, 2481ms total)
T3214 085:435 JLINK_ReadMemEx(0x20007168, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20007168) - Data: D0 BE 02 00  returns 0x04 (0000ms, 2481ms total)
T3214 085:435 JLINK_ReadMemEx(0x2000716C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000716C) - Data: B9 A1 02 00  returns 0x04 (0000ms, 2481ms total)
T3214 085:435 JLINK_ReadMemEx(0x2000717C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000717C) - Data: AD 9C 01 00  returns 0x04 (0000ms, 2481ms total)
T3214 085:435 JLINK_ReadMemEx(0x20007148, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20007148) - Data: 00 00  returns 0x02 (0000ms, 2481ms total)
T3214 085:435 JLINK_ReadMemEx(0x20001540, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001540) -- Updating C cache (64 bytes @ 0x20001540) -- Read from C cache (32 bytes @ 0x20001540) - Data: 00 10 00 00 00 28 01 00 BF C9 BF C9 00 02 00 00 ...  returns 0x20 (0002ms, 2483ms total)
T3214 085:437 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200002C0) -- Updating C cache (64 bytes @ 0x200002C0) -- Read from C cache (1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0002ms, 2485ms total)
T3214 085:439 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0000ms, 2485ms total)
T3214 085:439 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0000ms, 2485ms total)
T3214 085:439 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0000ms, 2485ms total)
T3214 085:439 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0000ms, 2485ms total)
T3214 085:439 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200002D1) - Data: 33  returns 0x01 (0000ms, 2485ms total)
T3214 085:444 JLINK_ReadMemEx(0x000276D8, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x000276C0) -- Updating C cache (128 bytes @ 0x000276C0) -- Read from C cache (60 bytes @ 0x000276D8) - Data: 03 20 A0 72 00 20 E0 72 28 46 F8 BD 30 15 00 20 ...  returns 0x3C (0003ms, 2488ms total)
T3214 085:447 JLINK_ReadMemEx(0x000276D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000276D8) - Data: 03 20  returns 0x02 (0000ms, 2488ms total)
T3214 085:447 JLINK_ReadMemEx(0x000276DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000276DA) - Data: A0 72  returns 0x02 (0000ms, 2488ms total)
T3214 085:447 JLINK_ReadMemEx(0x000276DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000276DA) - Data: A0 72  returns 0x02 (0000ms, 2488ms total)
T3214 085:447 JLINK_ReadMemEx(0x000276DC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000276DC) - Data: 00 20 E0 72 28 46 F8 BD 30 15 00 20 F8 B5 0C 46 ...  returns 0x3C (0000ms, 2488ms total)
T3214 085:447 JLINK_ReadMemEx(0x000276DC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000276DC) - Data: 00 20  returns 0x02 (0000ms, 2488ms total)
T3214 085:447 JLINK_ReadMemEx(0x000276DC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000276DC) - Data: 00 20 E0 72 28 46 F8 BD 30 15 00 20 F8 B5 0C 46 ...  returns 0x3C (0000ms, 2488ms total)
T3214 085:447 JLINK_ReadMemEx(0x000276DC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000276DC) - Data: 00 20  returns 0x02 (0000ms, 2488ms total)
T3214 085:447 JLINK_ReadMemEx(0x000276DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000276DE) - Data: E0 72  returns 0x02 (0000ms, 2488ms total)
T3214 085:447 JLINK_ReadMemEx(0x000276DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000276DE) - Data: E0 72  returns 0x02 (0000ms, 2488ms total)
T3214 085:447 JLINK_ReadMemEx(0x000276E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000276E0) - Data: 28 46 F8 BD 30 15 00 20 F8 B5 0C 46 15 46 00 BF ...  returns 0x3C (0000ms, 2488ms total)
T3214 085:447 JLINK_ReadMemEx(0x000276E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000276E0) - Data: 28 46  returns 0x02 (0000ms, 2488ms total)
T3214 085:447 JLINK_ReadMemEx(0x000276E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000276E0) - Data: 28 46 F8 BD 30 15 00 20 F8 B5 0C 46 15 46 00 BF ...  returns 0x3C (0000ms, 2488ms total)
T3214 085:447 JLINK_ReadMemEx(0x000276E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000276E0) - Data: 28 46  returns 0x02 (0000ms, 2488ms total)
T3214 085:447 JLINK_ReadMemEx(0x000276E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000276E2) - Data: F8 BD  returns 0x02 (0000ms, 2488ms total)
T3214 085:447 JLINK_ReadMemEx(0x000276E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000276E2) - Data: F8 BD  returns 0x02 (0000ms, 2488ms total)
T3214 085:447 JLINK_ReadMemEx(0x000276E4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000276E4) - Data: 30 15 00 20 F8 B5 0C 46 15 46 00 BF E0 78 00 06 ...  returns 0x3C (0000ms, 2488ms total)
T3214 085:447 JLINK_ReadMemEx(0x000276E4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000276E4) - Data: 30 15  returns 0x02 (0000ms, 2488ms total)
T3214 085:447 JLINK_ReadMemEx(0x000276E4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000276E4) - Data: 30 15 00 20 F8 B5 0C 46 15 46 00 BF E0 78 00 06 ...  returns 0x3C (0000ms, 2488ms total)
T3214 085:447 JLINK_ReadMemEx(0x000276E4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000276E4) - Data: 30 15  returns 0x02 (0000ms, 2488ms total)
T3214 085:447 JLINK_ReadMemEx(0x000276E6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000276E6) - Data: 00 20  returns 0x02 (0000ms, 2488ms total)
T3214 085:447 JLINK_ReadMemEx(0x000276E6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000276E6) - Data: 00 20  returns 0x02 (0000ms, 2488ms total)
T3214 085:447 JLINK_ReadMemEx(0x000276E8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000276E8) - Data: F8 B5 0C 46 15 46 00 BF E0 78 00 06 A1 78 09 04 ...  returns 0x3C (0000ms, 2488ms total)
T3214 085:447 JLINK_ReadMemEx(0x000276E8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000276E8) - Data: F8 B5  returns 0x02 (0000ms, 2488ms total)
T1720 087:372 JLINK_ReadMemEx(0x000276E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000276E0) - Data: 28 46  returns 0x02 (0000ms, 2488ms total)
T1720 087:372 JLINK_Step() -- Read from C cache (2 bytes @ 0x000276E0) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Simulated  returns 0x00 (0002ms, 2490ms total)
T1720 087:374 JLINK_ReadReg(R15 (PC))  returns 0x000276E2 (0000ms, 2490ms total)
T1720 087:374 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 2490ms total)
T1720 087:374 JLINK_SetBPEx(Addr = 0x000276B8, Type = 0xFFFFFFF2)  returns 0x00000006 (0000ms, 2490ms total)
T1720 087:374 JLINK_SetBPEx(Addr = 0x000276E0, Type = 0xFFFFFFF2)  returns 0x00000007 (0000ms, 2490ms total)
T1720 087:374 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0006ms, 2496ms total)
T1720 087:481 JLINK_IsHalted()  returns FALSE (0000ms, 2496ms total)
T1720 087:582 JLINK_IsHalted()  returns FALSE (0001ms, 2497ms total)
T1720 087:684 JLINK_IsHalted()  returns FALSE (0000ms, 2496ms total)
T1720 087:785 JLINK_IsHalted()  returns FALSE (0000ms, 2496ms total)
T1720 087:886 JLINK_IsHalted()  returns FALSE (0001ms, 2497ms total)
T3214 087:987 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2497ms total)
T3214 087:988 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2498ms total)
T3214 087:989 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2499ms total)
T3214 087:990 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2500ms total)
T3214 087:991 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0001ms, 2501ms total)
T3214 087:992 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 40  returns 0x01 (0000ms, 2501ms total)
T1720 087:997 JLINK_IsHalted()  returns FALSE (0001ms, 2502ms total)
T1720 088:098 JLINK_IsHalted()  returns FALSE (0001ms, 2502ms total)
T1720 088:199 JLINK_IsHalted()  returns FALSE (0001ms, 2502ms total)
T1720 088:300 JLINK_IsHalted()  returns FALSE (0001ms, 2502ms total)
T1720 088:402 JLINK_IsHalted()  returns FALSE (0001ms, 2502ms total)
T3214 088:503 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0000ms, 2501ms total)
T3214 088:503 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0001ms, 2502ms total)
T3214 088:504 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2503ms total)
T3214 088:505 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2504ms total)
T3214 088:506 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0001ms, 2505ms total)
T3214 088:507 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 41  returns 0x01 (0000ms, 2505ms total)
T1720 088:509 JLINK_IsHalted()  returns FALSE (0001ms, 2506ms total)
T1720 088:611 JLINK_IsHalted()  returns FALSE (0000ms, 2505ms total)
T1720 088:713 JLINK_IsHalted()  returns FALSE (0001ms, 2506ms total)
T1720 088:814 JLINK_IsHalted()  returns FALSE (0001ms, 2506ms total)
T1720 088:915 JLINK_IsHalted()  returns FALSE (0001ms, 2506ms total)
T3214 089:017 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2506ms total)
T3214 089:018 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0000ms, 2506ms total)
T3214 089:018 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2507ms total)
T3214 089:019 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2508ms total)
T3214 089:020 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0001ms, 2509ms total)
T3214 089:021 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 41  returns 0x01 (0000ms, 2509ms total)
T1720 089:022 JLINK_IsHalted()  returns FALSE (0001ms, 2510ms total)
T1720 089:123 JLINK_IsHalted()  returns FALSE (0001ms, 2510ms total)
T1720 089:225 JLINK_IsHalted()  returns FALSE (0001ms, 2510ms total)
T1720 089:327 JLINK_IsHalted()  returns FALSE (0000ms, 2509ms total)
T1720 089:428 JLINK_IsHalted()  returns FALSE (0000ms, 2509ms total)
T1720 089:529 JLINK_IsHalted()  returns FALSE (0000ms, 2509ms total)
T3214 089:631 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 24  returns 0x01 (0001ms, 2510ms total)
T3214 089:632 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 06  returns 0x01 (0000ms, 2510ms total)
T3214 089:632 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0001ms, 2511ms total)
T3214 089:633 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 17  returns 0x01 (0001ms, 2512ms total)
T3214 089:634 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 13  returns 0x01 (0001ms, 2513ms total)
T3214 089:635 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 42  returns 0x01 (0000ms, 2513ms total)
T1720 089:636 JLINK_IsHalted()  returns FALSE (0001ms, 2514ms total)
T1720 089:738 JLINK_IsHalted()  returns FALSE (0001ms, 2514ms total)
T1720 089:839 JLINK_IsHalted()  returns FALSE (0001ms, 2514ms total)
T1720 089:940 JLINK_IsHalted()  returns FALSE (0001ms, 2514ms total)
T1720 090:041 JLINK_IsHalted()  returns FALSE (0000ms, 2513ms total)
T3214 090:143 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 00  returns 0x01 (0000ms, 2513ms total)
T3214 090:144 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 00  returns 0x01 (0001ms, 2514ms total)
T3214 090:146 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 00  returns 0x01 (0000ms, 2514ms total)
T3214 090:147 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 00  returns 0x01 (0000ms, 2514ms total)
T3214 090:147 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 00  returns 0x01 (0001ms, 2515ms total)
T3214 090:148 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 00  returns 0x01 (0002ms, 2517ms total)
T1720 090:151 JLINK_IsHalted()  returns FALSE (0000ms, 2517ms total)
T3214 090:159 JLINK_ClrBPEx(BPHandle = 0x00000006) -- CPU is running -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002014)  returns 0x00 (0006ms, 2523ms total)
T3214 090:165 JLINK_ClrBPEx(BPHandle = 0x00000007) -- CPU is running -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002014)  returns 0x00 (0004ms, 2527ms total)
T1720 090:252 JLINK_IsHalted()  returns FALSE (0001ms, 2528ms total)
T1720 090:354 JLINK_IsHalted()  returns FALSE (0000ms, 2527ms total)
T1720 090:455 JLINK_IsHalted()  returns FALSE (0000ms, 2527ms total)
T1720 090:556 JLINK_IsHalted()  returns FALSE (0000ms, 2527ms total)
T3214 090:657 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 49  returns 0x01 (0001ms, 2528ms total)
T3214 090:659 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 00  returns 0x01 (0001ms, 2529ms total)
T3214 090:660 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 00  returns 0x01 (0001ms, 2530ms total)
T3214 090:661 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 28  returns 0x01 (0002ms, 2532ms total)
T3214 090:663 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: F7  returns 0x01 (0001ms, 2533ms total)
T3214 090:664 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: D1  returns 0x01 (0001ms, 2534ms total)
T1720 090:667 JLINK_IsHalted()  returns FALSE (0001ms, 2535ms total)
T1720 090:768 JLINK_IsHalted()  returns FALSE (0001ms, 2535ms total)
T1720 090:870 JLINK_IsHalted()  returns FALSE (0001ms, 2535ms total)
T1720 090:971 JLINK_IsHalted()  returns FALSE (0000ms, 2534ms total)
T1720 091:072 JLINK_IsHalted()  returns FALSE (0000ms, 2534ms total)
T3214 091:172 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 00  returns 0x01 (0001ms, 2535ms total)
T3214 091:173 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 21  returns 0x01 (0002ms, 2537ms total)
T3214 091:175 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 31  returns 0x01 (0001ms, 2538ms total)
T3214 091:176 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: E0  returns 0x01 (0001ms, 2539ms total)
T3214 091:177 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: C8  returns 0x01 (0001ms, 2540ms total)
T3214 091:178 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 00  returns 0x01 (0001ms, 2541ms total)
T1720 091:180 JLINK_IsHalted()  returns FALSE (0001ms, 2542ms total)
T1720 091:282 JLINK_IsHalted()  returns FALSE (0001ms, 2542ms total)
T1720 091:383 JLINK_IsHalted()  returns FALSE (0001ms, 2542ms total)
T1720 091:486 JLINK_IsHalted()  returns FALSE (0000ms, 2541ms total)
T1720 091:587 JLINK_IsHalted()  returns FALSE (0000ms, 2541ms total)
T3214 091:688 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: E8  returns 0x01 (0000ms, 2541ms total)
T3214 091:689 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: E7  returns 0x01 (0000ms, 2541ms total)
T3214 091:690 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 38  returns 0x01 (0000ms, 2541ms total)
T3214 091:690 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 46  returns 0x01 (0001ms, 2542ms total)
T3214 091:694 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: E6  returns 0x01 (0001ms, 2543ms total)
T3214 091:695 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: E7  returns 0x01 (0001ms, 2544ms total)
T1720 091:697 JLINK_IsHalted()  returns FALSE (0001ms, 2545ms total)
T1720 091:799 JLINK_IsHalted()  returns FALSE (0000ms, 2544ms total)
T1720 091:900 JLINK_IsHalted()  returns FALSE (0000ms, 2544ms total)
T1720 092:001 JLINK_IsHalted()  returns FALSE (0000ms, 2544ms total)
T1720 092:102 JLINK_IsHalted()  returns FALSE (0000ms, 2544ms total)
T3214 092:204 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 06  returns 0x01 (0000ms, 2544ms total)
T3214 092:205 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 48  returns 0x01 (0000ms, 2544ms total)
T3214 092:206 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: FF  returns 0x01 (0000ms, 2544ms total)
T3214 092:207 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: F7  returns 0x01 (0000ms, 2544ms total)
T3214 092:208 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 73  returns 0x01 (0000ms, 2544ms total)
T3214 092:209 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: FE  returns 0x01 (0001ms, 2545ms total)
T1720 092:211 JLINK_IsHalted()  returns FALSE (0001ms, 2546ms total)
T1720 092:313 JLINK_IsHalted()  returns FALSE (0000ms, 2545ms total)
T1720 092:415 JLINK_IsHalted()  returns FALSE (0000ms, 2545ms total)
T1720 092:516 JLINK_IsHalted()  returns FALSE (0000ms, 2545ms total)
T1720 092:617 JLINK_IsHalted()  returns FALSE (0000ms, 2545ms total)
T3214 092:718 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 10  returns 0x01 (0001ms, 2546ms total)
T3214 092:719 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 1A  returns 0x01 (0001ms, 2547ms total)
T3214 092:720 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 29  returns 0x01 (0001ms, 2548ms total)
T3214 092:721 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 08  returns 0x01 (0001ms, 2549ms total)
T3214 092:722 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 1A  returns 0x01 (0001ms, 2550ms total)
T3214 092:723 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 9C  returns 0x01 (0001ms, 2551ms total)
T1720 092:725 JLINK_IsHalted()  returns FALSE (0001ms, 2552ms total)
T1720 092:826 JLINK_IsHalted()  returns FALSE (0001ms, 2552ms total)
T1720 092:927 JLINK_IsHalted()  returns FALSE (0001ms, 2552ms total)
T1720 093:029 JLINK_IsHalted()  returns FALSE (0000ms, 2551ms total)
T1720 093:129 JLINK_IsHalted()  returns FALSE (0001ms, 2552ms total)
T1720 093:230 JLINK_IsHalted()  returns FALSE (0001ms, 2552ms total)
T3214 093:332 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: FF  returns 0x01 (0000ms, 2551ms total)
T3214 093:333 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: FF  returns 0x01 (0001ms, 2552ms total)
T3214 093:334 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 00  returns 0x01 (0001ms, 2553ms total)
T3214 093:335 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 00  returns 0x01 (0001ms, 2554ms total)
T3214 093:336 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: F8  returns 0x01 (0001ms, 2555ms total)
T3214 093:337 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: B5  returns 0x01 (0001ms, 2556ms total)
T1720 093:339 JLINK_IsHalted()  returns FALSE (0000ms, 2556ms total)
T1720 093:441 JLINK_IsHalted()  returns FALSE (0001ms, 2557ms total)
T1720 093:542 JLINK_IsHalted()  returns FALSE (0000ms, 2556ms total)
T1720 093:643 JLINK_IsHalted()  returns FALSE (0001ms, 2557ms total)
T1720 093:745 JLINK_IsHalted()  returns FALSE (0001ms, 2557ms total)
T3214 093:846 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 33  returns 0x01 (0001ms, 2557ms total)
T3214 093:847 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 1D  returns 0x01 (0001ms, 2558ms total)
T3214 093:848 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 00  returns 0x01 (0001ms, 2559ms total)
T3214 093:851 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 20  returns 0x01 (0000ms, 2559ms total)
T3214 093:853 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: C0  returns 0x01 (0001ms, 2560ms total)
T3214 093:854 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 08  returns 0x01 (0001ms, 2561ms total)
T1720 093:856 JLINK_IsHalted()  returns FALSE (0000ms, 2561ms total)
T1720 093:956 JLINK_IsHalted()  returns FALSE (0000ms, 2561ms total)
T1720 094:058 JLINK_IsHalted()  returns FALSE (0001ms, 2562ms total)
T1720 094:159 JLINK_IsHalted()  returns FALSE (0001ms, 2562ms total)
T1720 094:261 JLINK_IsHalted()  returns FALSE (0000ms, 2561ms total)
T3214 094:361 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 13  returns 0x01 (0001ms, 2562ms total)
T3214 094:364 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 48  returns 0x01 (0001ms, 2563ms total)
T3214 094:365 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: FF  returns 0x01 (0002ms, 2565ms total)
T3214 094:367 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: F7  returns 0x01 (0001ms, 2566ms total)
T3214 094:368 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 5A  returns 0x01 (0001ms, 2567ms total)
T3214 094:369 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: F9  returns 0x01 (0001ms, 2568ms total)
T1720 094:371 JLINK_IsHalted()  returns FALSE (0001ms, 2569ms total)
T1720 094:473 JLINK_IsHalted()  returns FALSE (0001ms, 2569ms total)
T1720 094:574 JLINK_IsHalted()  returns FALSE (0001ms, 2569ms total)
T1720 094:675 JLINK_IsHalted()  returns FALSE (0001ms, 2569ms total)
T1720 094:777 JLINK_IsHalted()  returns FALSE (0001ms, 2569ms total)
T3214 094:879 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 08  returns 0x01 (0001ms, 2569ms total)
T3214 094:881 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 48  returns 0x01 (0000ms, 2569ms total)
T3214 094:882 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: FF  returns 0x01 (0001ms, 2570ms total)
T3214 094:883 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: F7  returns 0x01 (0001ms, 2571ms total)
T3214 094:884 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 82  returns 0x01 (0001ms, 2572ms total)
T3214 094:885 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: FB  returns 0x01 (0001ms, 2573ms total)
T1720 094:887 JLINK_IsHalted()  returns FALSE (0001ms, 2574ms total)
T1720 094:989 JLINK_IsHalted()  returns FALSE (0000ms, 2573ms total)
T1720 095:091 JLINK_IsHalted()  returns FALSE (0001ms, 2574ms total)
T1720 095:192 JLINK_IsHalted()  returns FALSE (0001ms, 2574ms total)
T1720 095:294 JLINK_IsHalted()  returns FALSE (0000ms, 2573ms total)
T3214 095:395 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 9A  returns 0x01 (0001ms, 2574ms total)
T3214 095:396 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 72  returns 0x01 (0001ms, 2575ms total)
T3214 095:397 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 1A  returns 0x01 (0001ms, 2576ms total)
T3214 095:398 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 46  returns 0x01 (0001ms, 2577ms total)
T3214 095:399 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 92  returns 0x01 (0001ms, 2578ms total)
T3214 095:400 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 7A  returns 0x01 (0001ms, 2579ms total)
T1720 095:402 JLINK_IsHalted()  returns FALSE (0001ms, 2580ms total)
T1720 095:503 JLINK_IsHalted()  returns FALSE (0001ms, 2580ms total)
T1720 095:605 JLINK_IsHalted()  returns FALSE (0001ms, 2580ms total)
T1720 095:707 JLINK_IsHalted()  returns FALSE (0001ms, 2580ms total)
T1720 095:808 JLINK_IsHalted()  returns FALSE (0001ms, 2580ms total)
T3214 095:911 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 04  returns 0x01 (0002ms, 2581ms total)
T3214 095:913 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 23  returns 0x01 (0001ms, 2582ms total)
T3214 095:914 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 9A  returns 0x01 (0002ms, 2584ms total)
T3214 095:916 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 43  returns 0x01 (0001ms, 2585ms total)
T3214 095:917 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: A1  returns 0x01 (0001ms, 2586ms total)
T3214 095:918 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 4B  returns 0x01 (0001ms, 2587ms total)
T1720 095:921 JLINK_IsHalted()  returns FALSE (0001ms, 2588ms total)
T1720 096:023 JLINK_IsHalted()  returns FALSE (0001ms, 2588ms total)
T1720 096:124 JLINK_IsHalted()  returns FALSE (0001ms, 2588ms total)
T1720 096:227 JLINK_IsHalted()  returns FALSE (0001ms, 2588ms total)
T1720 096:328 JLINK_IsHalted()  returns FALSE (0001ms, 2588ms total)
T3214 096:430 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 04  returns 0x01 (0001ms, 2588ms total)
T3214 096:432 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 23  returns 0x01 (0001ms, 2589ms total)
T3214 096:433 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 9A  returns 0x01 (0001ms, 2590ms total)
T3214 096:434 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 43  returns 0x01 (0001ms, 2591ms total)
T3214 096:435 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: A1  returns 0x01 (0001ms, 2592ms total)
T3214 096:436 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 4B  returns 0x01 (0001ms, 2593ms total)
T1720 096:438 JLINK_IsHalted()  returns FALSE (0001ms, 2594ms total)
T1720 096:539 JLINK_IsHalted()  returns FALSE (0001ms, 2594ms total)
T1720 096:641 JLINK_IsHalted()  returns FALSE (0000ms, 2593ms total)
T1720 096:743 JLINK_IsHalted()  returns FALSE (0001ms, 2594ms total)
T1720 096:845 JLINK_IsHalted()  returns FALSE (0000ms, 2593ms total)
T3214 096:947 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 02  returns 0x01 (0001ms, 2594ms total)
T3214 096:949 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 23  returns 0x01 (0001ms, 2595ms total)
T3214 096:950 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 1A  returns 0x01 (0000ms, 2595ms total)
T3214 096:951 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 43  returns 0x01 (0000ms, 2595ms total)
T3214 096:951 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: DC  returns 0x01 (0002ms, 2597ms total)
T3214 096:953 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 4B  returns 0x01 (0000ms, 2597ms total)
T1720 096:955 JLINK_IsHalted()  returns FALSE (0000ms, 2597ms total)
T1720 097:056 JLINK_IsHalted()  returns FALSE (0001ms, 2598ms total)
T1720 097:157 JLINK_IsHalted()  returns FALSE (0002ms, 2599ms total)
T1720 097:259 JLINK_IsHalted()  returns FALSE (0001ms, 2598ms total)
T1720 097:360 JLINK_IsHalted()  returns FALSE (0000ms, 2597ms total)
T3214 097:461 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 5A  returns 0x01 (0001ms, 2598ms total)
T3214 097:462 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 75  returns 0x01 (0001ms, 2599ms total)
T3214 097:463 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 1A  returns 0x01 (0001ms, 2600ms total)
T3214 097:464 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 46  returns 0x01 (0002ms, 2602ms total)
T3214 097:466 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 12  returns 0x01 (0001ms, 2603ms total)
T3214 097:467 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 7D  returns 0x01 (0000ms, 2603ms total)
T1720 097:469 JLINK_IsHalted()  returns FALSE (0001ms, 2604ms total)
T1720 097:570 JLINK_IsHalted()  returns FALSE (0001ms, 2604ms total)
T1720 097:672 JLINK_IsHalted()  returns FALSE (0001ms, 2604ms total)
T1720 097:773 JLINK_IsHalted()  returns FALSE (0000ms, 2603ms total)
T1720 097:874 JLINK_IsHalted()  returns FALSE (0000ms, 2603ms total)
T3214 097:974 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: B4  returns 0x01 (0001ms, 2604ms total)
T3214 097:978 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 4A  returns 0x01 (0001ms, 2605ms total)
T3214 097:980 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 52  returns 0x01 (0001ms, 2606ms total)
T3214 097:981 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 7F  returns 0x01 (0002ms, 2608ms total)
T3214 097:983 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 10  returns 0x01 (0001ms, 2609ms total)
T3214 097:984 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 23  returns 0x01 (0001ms, 2610ms total)
T1720 097:987 JLINK_IsHalted()  returns FALSE (0001ms, 2611ms total)
T1720 098:088 JLINK_IsHalted()  returns FALSE (0001ms, 2611ms total)
T1720 098:189 JLINK_IsHalted()  returns FALSE (0001ms, 2611ms total)
T1720 098:291 JLINK_IsHalted()  returns FALSE (0001ms, 2611ms total)
T1720 098:392 JLINK_IsHalted()  returns FALSE (0001ms, 2611ms total)
T3214 098:493 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: B4  returns 0x01 (0001ms, 2611ms total)
T3214 098:495 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 4A  returns 0x01 (0001ms, 2612ms total)
T3214 098:496 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 12  returns 0x01 (0002ms, 2614ms total)
T3214 098:498 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 7D  returns 0x01 (0001ms, 2615ms total)
T3214 098:499 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 10  returns 0x01 (0001ms, 2616ms total)
T3214 098:500 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 23  returns 0x01 (0001ms, 2617ms total)
T1720 098:505 JLINK_IsHalted()  returns FALSE (0001ms, 2618ms total)
T1720 098:606 JLINK_IsHalted()  returns FALSE (0001ms, 2618ms total)
T1720 098:707 JLINK_IsHalted()  returns FALSE (0001ms, 2618ms total)
T1720 098:808 JLINK_IsHalted()  returns FALSE (0001ms, 2618ms total)
T1720 098:910 JLINK_IsHalted()  returns FALSE (0001ms, 2618ms total)
T3214 099:011 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 74  returns 0x01 (0001ms, 2618ms total)
T3214 099:012 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 19  returns 0x01 (0001ms, 2619ms total)
T3214 099:014 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 03  returns 0x01 (0001ms, 2620ms total)
T3214 099:015 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: E0  returns 0x01 (0001ms, 2621ms total)
T3214 099:017 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 60  returns 0x01 (0001ms, 2622ms total)
T3214 099:018 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 49  returns 0x01 (0001ms, 2623ms total)
T1720 099:021 JLINK_IsHalted()  returns FALSE (0001ms, 2624ms total)
T1720 099:122 JLINK_IsHalted()  returns FALSE (0001ms, 2624ms total)
T1720 099:223 JLINK_IsHalted()  returns FALSE (0001ms, 2624ms total)
T1720 099:325 JLINK_IsHalted()  returns FALSE (0001ms, 2624ms total)
T1720 099:427 JLINK_IsHalted()  returns FALSE (0001ms, 2624ms total)
T3214 099:528 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 41  returns 0x01 (0000ms, 2623ms total)
T3214 099:529 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 60  returns 0x01 (0001ms, 2624ms total)
T3214 099:530 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 00  returns 0x01 (0001ms, 2625ms total)
T3214 099:531 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 21  returns 0x01 (0001ms, 2626ms total)
T3214 099:532 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 01  returns 0x01 (0001ms, 2627ms total)
T3214 099:535 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 60  returns 0x01 (0001ms, 2628ms total)
T1720 099:537 JLINK_IsHalted()  returns FALSE (0001ms, 2629ms total)
T1720 099:640 JLINK_IsHalted()  returns FALSE (0000ms, 2628ms total)
T1720 099:741 JLINK_IsHalted()  returns FALSE (0001ms, 2629ms total)
T1720 099:842 JLINK_IsHalted()  returns FALSE (0002ms, 2630ms total)
T1720 099:945 JLINK_IsHalted()  returns FALSE (0001ms, 2629ms total)
T3214 100:046 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 82  returns 0x01 (0001ms, 2629ms total)
T3214 100:048 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 21  returns 0x01 (0001ms, 2630ms total)
T3214 100:051 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: B6  returns 0x01 (0001ms, 2631ms total)
T3214 100:053 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 48  returns 0x01 (0001ms, 2632ms total)
T3214 100:054 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: F4  returns 0x01 (0001ms, 2633ms total)
T3214 100:055 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: F7  returns 0x01 (0001ms, 2634ms total)
T1720 100:058 JLINK_IsHalted()  returns FALSE (0001ms, 2635ms total)
T1720 100:159 JLINK_IsHalted()  returns FALSE (0001ms, 2635ms total)
T1720 100:260 JLINK_IsHalted()  returns FALSE (0001ms, 2635ms total)
T1720 100:361 JLINK_IsHalted()  returns FALSE (0001ms, 2635ms total)
T1720 100:463 JLINK_IsHalted()  returns FALSE (0000ms, 2634ms total)
T3214 100:564 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 15  returns 0x01 (0001ms, 2635ms total)
T3214 100:565 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 46  returns 0x01 (0001ms, 2636ms total)
T3214 100:566 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 01  returns 0x01 (0001ms, 2637ms total)
T3214 100:567 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 21  returns 0x01 (0001ms, 2638ms total)
T3214 100:568 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 25  returns 0x01 (0001ms, 2639ms total)
T3214 100:569 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 48  returns 0x01 (0001ms, 2640ms total)
T1720 100:571 JLINK_IsHalted()  returns FALSE (0001ms, 2641ms total)
T1720 100:672 JLINK_IsHalted()  returns FALSE (0001ms, 2641ms total)
T1720 100:774 JLINK_IsHalted()  returns FALSE (0001ms, 2641ms total)
T1720 100:875 JLINK_IsHalted()  returns FALSE (0001ms, 2641ms total)
T1720 100:976 JLINK_IsHalted()  returns FALSE (0001ms, 2641ms total)
T1720 101:077 JLINK_IsHalted()  returns FALSE (0000ms, 2640ms total)
T3214 101:178 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 80  returns 0x01 (0001ms, 2641ms total)
T3214 101:184 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 30  returns 0x01 (0001ms, 2642ms total)
T3214 101:185 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 2C  returns 0x01 (0001ms, 2643ms total)
T3214 101:186 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: F0  returns 0x01 (0001ms, 2644ms total)
T3214 101:188 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 8B  returns 0x01 (0001ms, 2645ms total)
T3214 101:189 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: F8  returns 0x01 (0001ms, 2646ms total)
T1720 101:191 JLINK_IsHalted()  returns FALSE (0001ms, 2647ms total)
T1720 101:293 JLINK_IsHalted()  returns FALSE (0001ms, 2647ms total)
T1720 101:395 JLINK_IsHalted()  returns FALSE (0000ms, 2646ms total)
T1720 101:496 JLINK_IsHalted()  returns FALSE (0001ms, 2647ms total)
T1720 101:597 JLINK_IsHalted()  returns FALSE (0000ms, 2646ms total)
T3214 101:698 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 88  returns 0x01 (0002ms, 2648ms total)
T3214 101:701 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 43  returns 0x01 (0000ms, 2648ms total)
T3214 101:702 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 08  returns 0x01 (0001ms, 2649ms total)
T3214 101:703 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 30  returns 0x01 (0001ms, 2650ms total)
T3214 101:704 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 24  returns 0x01 (0001ms, 2651ms total)
T3214 101:705 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 49  returns 0x01 (0001ms, 2652ms total)
T1720 101:712 JLINK_IsHalted()  returns FALSE (0000ms, 2652ms total)
T1720 101:813 JLINK_IsHalted()  returns FALSE (0001ms, 2653ms total)
T1720 101:915 JLINK_IsHalted()  returns FALSE (0001ms, 2653ms total)
T1720 102:017 JLINK_IsHalted()  returns FALSE (0001ms, 2653ms total)
T1720 102:119 JLINK_IsHalted()  returns FALSE (0001ms, 2653ms total)
T3214 102:220 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 88  returns 0x01 (0001ms, 2653ms total)
T3214 102:222 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 43  returns 0x01 (0002ms, 2655ms total)
T3214 102:224 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 08  returns 0x01 (0002ms, 2657ms total)
T3214 102:226 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 30  returns 0x01 (0001ms, 2658ms total)
T3214 102:227 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 24  returns 0x01 (0001ms, 2659ms total)
T3214 102:228 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 49  returns 0x01 (0001ms, 2660ms total)
T1720 102:231 JLINK_IsHalted()  returns FALSE (0001ms, 2661ms total)
T1720 102:332 JLINK_IsHalted()  returns FALSE (0001ms, 2661ms total)
T1720 102:433 JLINK_IsHalted()  returns FALSE (0001ms, 2661ms total)
T1720 102:535 JLINK_IsHalted()  returns FALSE (0001ms, 2661ms total)
T1720 102:637 JLINK_IsHalted()  returns FALSE (0001ms, 2661ms total)
T3214 102:738 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: C1  returns 0x01 (0000ms, 2660ms total)
T3214 102:739 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 70  returns 0x01 (0001ms, 2661ms total)
T3214 102:740 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 15  returns 0x01 (0000ms, 2661ms total)
T3214 102:740 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 20  returns 0x01 (0001ms, 2662ms total)
T3214 102:741 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: F8  returns 0x01 (0001ms, 2663ms total)
T3214 102:742 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: F7  returns 0x01 (0001ms, 2664ms total)
T1720 102:744 JLINK_IsHalted()  returns FALSE (0001ms, 2665ms total)
T1720 102:845 JLINK_IsHalted()  returns FALSE (0001ms, 2665ms total)
T1720 102:946 JLINK_IsHalted()  returns FALSE (0001ms, 2665ms total)
T1720 103:048 JLINK_IsHalted()  returns FALSE (0001ms, 2665ms total)
T1720 103:149 JLINK_IsHalted()  returns FALSE (0000ms, 2664ms total)
T3214 103:250 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 22  returns 0x01 (0002ms, 2666ms total)
T3214 103:252 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 46  returns 0x01 (0001ms, 2667ms total)
T3214 103:253 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 2B  returns 0x01 (0001ms, 2668ms total)
T3214 103:254 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 46  returns 0x01 (0001ms, 2669ms total)
T3214 103:256 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 03  returns 0x01 (0001ms, 2670ms total)
T3214 103:257 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 91  returns 0x01 (0001ms, 2671ms total)
T1720 103:260 JLINK_IsHalted()  returns FALSE (0000ms, 2671ms total)
T1720 103:361 JLINK_IsHalted()  returns FALSE (0001ms, 2672ms total)
T1720 103:463 JLINK_IsHalted()  returns FALSE (0001ms, 2672ms total)
T1720 103:564 JLINK_IsHalted()  returns FALSE (0001ms, 2672ms total)
T1720 103:666 JLINK_IsHalted()  returns FALSE (0001ms, 2672ms total)
T3214 103:767 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 6C  returns 0x01 (0001ms, 2672ms total)
T3214 103:770 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 07  returns 0x01 (0001ms, 2673ms total)
T3214 103:771 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 00  returns 0x01 (0002ms, 2675ms total)
T3214 103:773 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 20  returns 0x01 (0001ms, 2676ms total)
T3214 103:774 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 7A  returns 0x01 (0001ms, 2677ms total)
T3214 103:775 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 20  returns 0x01 (0001ms, 2678ms total)
T1720 103:778 JLINK_IsHalted()  returns FALSE (0001ms, 2679ms total)
T1720 103:880 JLINK_IsHalted()  returns FALSE (0001ms, 2679ms total)
T1720 103:981 JLINK_IsHalted()  returns FALSE (0001ms, 2679ms total)
T1720 104:082 JLINK_IsHalted()  returns FALSE (0001ms, 2679ms total)
T1720 104:184 JLINK_IsHalted()  returns FALSE (0001ms, 2679ms total)
T3214 104:285 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 80  returns 0x01 (0001ms, 2679ms total)
T3214 104:287 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: A8  returns 0x01 (0001ms, 2680ms total)
T3214 104:288 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 41  returns 0x01 (0001ms, 2681ms total)
T3214 104:289 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 72  returns 0x01 (0001ms, 2682ms total)
T3214 104:290 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 83  returns 0x01 (0001ms, 2683ms total)
T3214 104:291 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 48  returns 0x01 (0002ms, 2685ms total)
T1720 104:296 JLINK_IsHalted()  returns FALSE (0001ms, 2686ms total)
T1720 104:397 JLINK_IsHalted()  returns FALSE (0001ms, 2686ms total)
T1720 104:499 JLINK_IsHalted()  returns FALSE (0001ms, 2686ms total)
T1720 104:601 JLINK_IsHalted()  returns FALSE (0000ms, 2685ms total)
T1720 104:702 JLINK_IsHalted()  returns FALSE (0000ms, 2685ms total)
T3214 104:802 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 00  returns 0x01 (0000ms, 2685ms total)
T3214 104:803 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 78  returns 0x01 (0002ms, 2687ms total)
T3214 104:805 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 01  returns 0x01 (0001ms, 2688ms total)
T3214 104:806 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 40  returns 0x01 (0001ms, 2689ms total)
T3214 104:807 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 38  returns 0x01 (0001ms, 2690ms total)
T3214 104:808 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: B5  returns 0x01 (0001ms, 2691ms total)
T1720 104:811 JLINK_IsHalted()  returns FALSE (0001ms, 2692ms total)
T1720 104:913 JLINK_IsHalted()  returns FALSE (0000ms, 2691ms total)
T1720 105:014 JLINK_IsHalted()  returns FALSE (0000ms, 2691ms total)
T1720 105:115 JLINK_IsHalted()  returns FALSE (0000ms, 2691ms total)
T1720 105:216 JLINK_IsHalted()  returns FALSE (0000ms, 2691ms total)
T3214 105:317 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 09  returns 0x01 (0001ms, 2692ms total)
T3214 105:318 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 12  returns 0x01 (0001ms, 2693ms total)
T3214 105:319 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 83  returns 0x01 (0001ms, 2694ms total)
T3214 105:320 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: 12  returns 0x01 (0001ms, 2695ms total)
T3214 105:321 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: 59  returns 0x01 (0001ms, 2696ms total)
T3214 105:322 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: 2A  returns 0x01 (0001ms, 2697ms total)
T1720 105:324 JLINK_IsHalted()  returns FALSE (0001ms, 2698ms total)
T1720 105:426 JLINK_IsHalted()  returns FALSE (0000ms, 2697ms total)
T1720 105:527 JLINK_IsHalted()  returns FALSE (0000ms, 2697ms total)
T1720 105:628 JLINK_IsHalted()  returns FALSE (0000ms, 2697ms total)
T1720 105:728 JLINK_IsHalted()  returns FALSE (0000ms, 2697ms total)
T3214 105:830 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: FF  returns 0x01 (0000ms, 2697ms total)
T3214 105:831 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: FF  returns 0x01 (0001ms, 2698ms total)
T3214 105:832 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: FF  returns 0x01 (0001ms, 2699ms total)
T3214 105:833 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: FF  returns 0x01 (0001ms, 2700ms total)
T3214 105:834 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: FF  returns 0x01 (0001ms, 2701ms total)
T3214 105:835 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: FF  returns 0x01 (0001ms, 2702ms total)
T1720 105:837 JLINK_IsHalted()  returns FALSE (0000ms, 2702ms total)
T1720 105:938 JLINK_IsHalted()  returns FALSE (0000ms, 2702ms total)
T1720 106:038 JLINK_IsHalted()  returns FALSE (0000ms, 2702ms total)
T1720 106:139 JLINK_IsHalted()  returns FALSE (0001ms, 2703ms total)
T1720 106:240 JLINK_IsHalted()  returns FALSE (0001ms, 2703ms total)
T1720 106:341 JLINK_IsHalted()  returns FALSE (0001ms, 2703ms total)
T3214 106:449 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: FF  returns 0x01 (0001ms, 2703ms total)
T3214 106:452 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: FF  returns 0x01 (0001ms, 2704ms total)
T3214 106:453 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: FF  returns 0x01 (0001ms, 2705ms total)
T3214 106:455 JLINK_ReadMemEx(0x200002CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CF) - Data: FF  returns 0x01 (0000ms, 2705ms total)
T3214 106:456 JLINK_ReadMemEx(0x200002D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D0) - Data: FF  returns 0x01 (0001ms, 2706ms total)
T3214 106:457 JLINK_ReadMemEx(0x200002D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D1) - Data: FF  returns 0x01 (0001ms, 2707ms total)
T1720 106:459 JLINK_IsHalted()  returns FALSE (0001ms, 2708ms total)
T1720 106:561 JLINK_IsHalted()  returns FALSE (0001ms, 2708ms total)
T1720 106:662 JLINK_Halt()  returns 0x00 (0005ms, 2712ms total)
T1720 106:667 JLINK_IsHalted()  returns TRUE (0000ms, 2712ms total)
T1720 106:667 JLINK_IsHalted()  returns TRUE (0000ms, 2712ms total)
T1720 106:667 JLINK_IsHalted()  returns TRUE (0000ms, 2712ms total)
T1720 106:667 JLINK_ReadReg(R15 (PC))  returns 0x00004C7A (0000ms, 2712ms total)
T1720 106:667 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 2712ms total)
T1720 106:667 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 01 00 00 00  returns 1 (0001ms, 2713ms total)
T1720 106:668 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 1 (0001ms, 2714ms total)
T3214 107:240 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> (0017ms, 2731ms total)
T3214 107:240  (0017ms, 2731ms total)
T3214 107:240 Closed (0017ms, 2731ms total)