forked from SZV10X_Software/SZV103_FM33A0xxEV_SiZhu

jinlicong
2024-05-30 a1810b89e66f184c62a0588ae7d57c91d0c376e8
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
 
T26E8 000:001 SEGGER J-Link V6.48b Log File (0000ms, 0001ms total)
T26E8 000:001 DLL Compiled: Aug  2 2019 10:18:25 (0000ms, 0001ms total)
T26E8 000:001 Logging started @ 2024-05-30 12:00 (0000ms, 0001ms total)
T26E8 000:001 JLINK_SetWarnOutHandler(...) (0000ms, 0001ms total)
T26E8 000:001 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 (0055ms, 0056ms total)
T26E8 000:001 WEBSRV Webserver running on local port 19080 (0055ms, 0056ms total)
T26E8 000:001   returns O.K. (0055ms, 0056ms total)
T26E8 000:056 JLINK_GetEmuCaps()  returns 0xB9FF7BBF (0000ms, 0056ms total)
T26E8 000:056 JLINK_TIF_GetAvailable(...) (0000ms, 0056ms total)
T26E8 000:056 JLINK_SetErrorOutHandler(...) (0000ms, 0056ms total)
T26E8 000:056 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 (0001ms, 0057ms total)
T26E8 000:056 XML referenced by ref file: C:\Program Files (x86)\SEGGER\JLink\JLinkDevices.xml (0002ms, 0058ms total)
T26E8 000:056 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 (1134ms, 1190ms total)
T26E8 001:190 JLINK_ExecCommand("Device = FM33A06XEV", ...). Device "FM33A06XEV" selected.  returns 0x00 (0000ms, 1190ms total)
T26E8 001:191 JLINK_ExecCommand("DisableConnectionTimeout", ...).   returns 0x01 (0001ms, 1191ms total)
T26E8 001:192 JLINK_GetHardwareVersion()  returns 0x16F30 (0000ms, 1191ms total)
T26E8 001:192 JLINK_GetDLLVersion()  returns 64802 (0000ms, 1191ms total)
T26E8 001:192 JLINK_GetFirmwareString(...) (0000ms, 1191ms total)
T26E8 001:192 JLINK_GetDLLVersion()  returns 64802 (0000ms, 1191ms total)
T26E8 001:192 JLINK_GetCompileDateTime() (0000ms, 1191ms total)
T26E8 001:192 JLINK_GetFirmwareString(...) (0000ms, 1191ms total)
T26E8 001:192 JLINK_GetHardwareVersion()  returns 0x16F30 (0000ms, 1191ms total)
T26E8 001:192 JLINK_TIF_Select(JLINKARM_TIF_SWD)  returns 0x00 (0001ms, 1192ms total)
T26E8 001:193 JLINK_SetSpeed(2000) (0001ms, 1193ms total)
T26E8 001:194 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 (0138ms, 1331ms total)
T26E8 001:332 JLINK_GetDLLVersion()  returns 64802 (0000ms, 1331ms total)
T26E8 001:332 JLINK_CORE_GetFound()  returns 0x60000FF (0000ms, 1331ms total)
T26E8 001:332 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xE00FF000  returns 0x00 (0000ms, 1331ms total)
T26E8 001:332 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xE00FF000  returns 0x00 (0000ms, 1331ms total)
T26E8 001:332 JLINK_GetDebugInfo(0x101 = JLINKARM_DEBUG_INFO_ETM_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 1331ms total)
T26E8 001:332 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, 1332ms total)
T26E8 001:333 JLINK_GetDebugInfo(0x102 = JLINKARM_DEBUG_INFO_MTB_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 1332ms total)
T26E8 001:333 JLINK_GetDebugInfo(0x103 = JLINKARM_DEBUG_INFO_TPIU_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 1332ms total)
T26E8 001:333 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, 1333ms total)
T26E8 001:334 JLINK_GetDebugInfo(0x104 = JLINKARM_DEBUG_INFO_ITM_ADDR_INDEX) -- Value=0xE0000000  returns 0x00 (0000ms, 1333ms total)
T26E8 001:334 JLINK_GetDebugInfo(0x105 = JLINKARM_DEBUG_INFO_DWT_ADDR_INDEX) -- Value=0xE0001000  returns 0x00 (0000ms, 1333ms total)
T26E8 001:334 JLINK_GetDebugInfo(0x106 = JLINKARM_DEBUG_INFO_FPB_ADDR_INDEX) -- Value=0xE0002000  returns 0x00 (0000ms, 1333ms total)
T26E8 001:334 JLINK_GetDebugInfo(0x107 = JLINKARM_DEBUG_INFO_NVIC_ADDR_INDEX) -- Value=0xE000E000  returns 0x00 (0000ms, 1333ms total)
T26E8 001:334 JLINK_GetDebugInfo(0x10C = JLINKARM_DEBUG_INFO_DBG_ADDR_INDEX) -- Value=0xE000EDF0  returns 0x00 (0000ms, 1333ms total)
T26E8 001:334 JLINK_GetDebugInfo(0x01 = Unknown) -- Value=0x00000000  returns 0x00 (0000ms, 1333ms total)
T26E8 001:334 JLINK_ReadMemU32(0xE000ED00, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED00) - Data: 00 C3 0C 41  returns 1 (0000ms, 1333ms total)
T26E8 001:334 JLINK_GetDebugInfo(0x10F = JLINKARM_DEBUG_INFO_HAS_CORTEX_M_SECURITY_EXT_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 1333ms total)
T26E8 001:334 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_RESETPIN)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 1333ms total)
T26E8 001:334 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) (0139ms, 1472ms total)
T26E8 001:473 JLINK_ReadReg(R15 (PC))  returns 0x000000D8 (0000ms, 1472ms total)
T26E8 001:473 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 1472ms total)
T26E8 001:473 JLINK_Halt()  returns 0x00 (0000ms, 1472ms total)
T26E8 001:473 JLINK_ReadMemU32(0xE000EDF0, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) - Data: 03 00 03 00  returns 1 (0001ms, 1473ms total)
T26E8 001:474 JLINK_WriteU32(0xE000EDF0, 0xA05F0003) -- CPU_WriteMem(4 bytes @ 0xE000EDF0)  returns 0 (0001ms, 1474ms total)
T26E8 001:475 JLINK_WriteU32(0xE000EDFC, 0x01000000) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)  returns 0 (0000ms, 1474ms total)
T26E8 001:475 JLINK_GetHWStatus(...)  returns 0x00 (0001ms, 1475ms total)
T26E8 001:476 JLINK_GetNumBPUnits(Type = 0xFFFFFF00)  returns 0x04 (0000ms, 1475ms total)
T26E8 001:476 JLINK_GetNumBPUnits(Type = 0xF0)  returns 0x2000 (0000ms, 1475ms total)
T26E8 001:476 JLINK_GetNumWPUnits()  returns 0x01 (0000ms, 1475ms total)
T26E8 001:476 JLINK_GetSpeed()  returns 0x7D0 (0000ms, 1475ms total)
T26E8 001:476 JLINK_ReadMemU32(0xE000E004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000E004) - Data: 00 00 00 00  returns 1 (0000ms, 1475ms total)
T26E8 001:476 JLINK_ReadReg(R15 (PC))  returns 0x000000D8 (0000ms, 1475ms total)
T26E8 001:476 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 1475ms total)
T26E8 001:551 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_RESETPIN)  returns JLINKARM_CM3_RESET_TYPE_RESETPIN (0000ms, 1475ms total)
T26E8 001:551 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) (0138ms, 1613ms total)
T26E8 001:689 JLINK_ReadReg(R15 (PC))  returns 0x000000D8 (0000ms, 1613ms total)
T26E8 001:689 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 1613ms total)
T26E8 001:689 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 (0002ms, 1615ms total)
T26E8 001:691 JLINK_ReadMemEx(0x000000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000000D8) - Data: 04 48  returns 0x02 (0000ms, 1615ms total)
T26E8 001:691 JLINK_ReadMemEx(0x000000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000000DA) - Data: 80 47  returns 0x02 (0000ms, 1615ms total)
T26E8 003:147 JLINK_ReadReg(R0)  returns 0x00000000 (0000ms, 1615ms total)
T26E8 003:147 JLINK_ReadReg(R1)  returns 0x200005DA (0000ms, 1615ms total)
T26E8 003:147 JLINK_ReadReg(R2)  returns 0x05150796 (0000ms, 1615ms total)
T26E8 003:147 JLINK_ReadReg(R3)  returns 0x00002240 (0000ms, 1615ms total)
T26E8 003:147 JLINK_ReadReg(R4)  returns 0x0000E0D4 (0000ms, 1615ms total)
T26E8 003:147 JLINK_ReadReg(R5)  returns 0x00000001 (0000ms, 1615ms total)
T26E8 003:147 JLINK_ReadReg(R6)  returns 0x0000E0D4 (0000ms, 1615ms total)
T26E8 003:147 JLINK_ReadReg(R7)  returns 0x00000000 (0000ms, 1615ms total)
T26E8 003:147 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 1615ms total)
T26E8 003:147 JLINK_ReadReg(R9)  returns 0x20000204 (0000ms, 1615ms total)
T26E8 003:147 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 1615ms total)
T26E8 003:147 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 1615ms total)
T26E8 003:147 JLINK_ReadReg(R12)  returns 0x00000003 (0000ms, 1615ms total)
T26E8 003:147 JLINK_ReadReg(R13 (SP))  returns 0x20006AB0 (0000ms, 1615ms total)
T26E8 003:147 JLINK_ReadReg(R14)  returns 0x0000A9F7 (0000ms, 1615ms total)
T26E8 003:147 JLINK_ReadReg(R15 (PC))  returns 0x000000D8 (0001ms, 1616ms total)
T26E8 003:148 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 1616ms total)
T26E8 003:148 JLINK_ReadReg(MSP)  returns 0x20006AB0 (0000ms, 1616ms total)
T26E8 003:148 JLINK_ReadReg(PSP)  returns 0x20001000 (0000ms, 1616ms total)
T26E8 003:148 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 1616ms total)
T26E8 003:172 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000280) -- Updating C cache (64 bytes @ 0x20000280) -- Read from C cache (4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1617ms total)
T26E8 003:173 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 1617ms total)
T26E8 003:174 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 1618ms total)
T26E8 003:177 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 1618ms total)
T26E8 003:177 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 1618ms total)
T26E8 003:177 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 1618ms total)
T26E8 003:208 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000240) -- Updating C cache (64 bytes @ 0x20000240) -- Read from C cache (1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 1619ms total)
T26E8 003:210 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0000ms, 1619ms total)
T26E8 003:210 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0000ms, 1619ms total)
T26E8 003:214 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000480) -- Updating C cache (64 bytes @ 0x20000480) -- Read from C cache (1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 1620ms total)
T26E8 003:215 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0000ms, 1620ms total)
T26E8 003:215 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0000ms, 1620ms total)
T26E8 003:245 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001000) -- Updating C cache (64 bytes @ 0x20001000) -- Read from C cache (2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0002ms, 1622ms total)
T26E8 003:247 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0000ms, 1622ms total)
T26E8 003:247 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0000ms, 1622ms total)
T26E8 003:291 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0000ms, 1622ms total)
T1120 003:312 JLINK_ReadMemEx(0x000000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000000D8) - Data: 04 48  returns 0x02 (0000ms, 1622ms total)
T1120 003:312 JLINK_SetBPEx(Addr = 0x0000D09C, Type = 0xFFFFFFF2)  returns 0x00000001 (0000ms, 1622ms total)
T1120 003:312 JLINK_SetBPEx(Addr = 0x0000D0AE, Type = 0xFFFFFFF2)  returns 0x00000002 (0000ms, 1622ms total)
T1120 003:312 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 @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU_WriteMem(4 bytes @ 0xE0002014) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0006ms, 1628ms total)
T1120 003:419 JLINK_IsHalted()  returns TRUE (0005ms, 1633ms total)
T1120 003:424 JLINK_Halt()  returns 0x00 (0000ms, 1628ms total)
T1120 003:424 JLINK_IsHalted()  returns TRUE (0000ms, 1628ms total)
T1120 003:424 JLINK_IsHalted()  returns TRUE (0000ms, 1628ms total)
T1120 003:424 JLINK_IsHalted()  returns TRUE (0000ms, 1628ms total)
T1120 003:424 JLINK_ReadReg(R15 (PC))  returns 0x0000D09C (0000ms, 1628ms total)
T1120 003:424 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 1628ms total)
T1120 003:424 JLINK_ClrBPEx(BPHandle = 0x00000001)  returns 0x00 (0000ms, 1628ms total)
T1120 003:424 JLINK_ClrBPEx(BPHandle = 0x00000002)  returns 0x00 (0000ms, 1628ms total)
T1120 003:424 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 02 00 00 00  returns 1 (0001ms, 1629ms total)
T1120 003:425 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 1 (0000ms, 1629ms total)
T1120 003:426 JLINK_ReadReg(R0)  returns 0x0000D09D (0000ms, 1629ms total)
T1120 003:426 JLINK_ReadReg(R1)  returns 0x20006AB0 (0000ms, 1629ms total)
T1120 003:426 JLINK_ReadReg(R2)  returns 0x00000000 (0000ms, 1629ms total)
T1120 003:426 JLINK_ReadReg(R3)  returns 0x0000BA9B (0000ms, 1629ms total)
T1120 003:426 JLINK_ReadReg(R4)  returns 0x0000E0D4 (0000ms, 1629ms total)
T1120 003:426 JLINK_ReadReg(R5)  returns 0x00000001 (0000ms, 1629ms total)
T1120 003:426 JLINK_ReadReg(R6)  returns 0x0000E0D4 (0000ms, 1629ms total)
T1120 003:426 JLINK_ReadReg(R7)  returns 0x00000000 (0000ms, 1629ms total)
T1120 003:426 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 1629ms total)
T1120 003:426 JLINK_ReadReg(R9)  returns 0x20000204 (0000ms, 1629ms total)
T1120 003:426 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 1629ms total)
T1120 003:426 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 1629ms total)
T1120 003:426 JLINK_ReadReg(R12)  returns 0x00000003 (0000ms, 1629ms total)
T1120 003:426 JLINK_ReadReg(R13 (SP))  returns 0x20006AB0 (0000ms, 1629ms total)
T1120 003:426 JLINK_ReadReg(R14)  returns 0x00000A69 (0000ms, 1629ms total)
T1120 003:426 JLINK_ReadReg(R15 (PC))  returns 0x0000D09C (0000ms, 1629ms total)
T1120 003:426 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 1629ms total)
T1120 003:426 JLINK_ReadReg(MSP)  returns 0x20006AB0 (0000ms, 1629ms total)
T1120 003:426 JLINK_ReadReg(PSP)  returns 0x20001000 (0000ms, 1629ms total)
T1120 003:426 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 1629ms total)
T26E8 003:427 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000280) -- Updating C cache (64 bytes @ 0x20000280) -- Read from C cache (4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0002ms, 1631ms total)
T26E8 003:429 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 1631ms total)
T26E8 003:429 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000240) -- Updating C cache (64 bytes @ 0x20000240) -- Read from C cache (1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0002ms, 1633ms total)
T26E8 003:431 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000480) -- Updating C cache (64 bytes @ 0x20000480) -- Read from C cache (1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 1634ms total)
T26E8 003:433 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001000) -- Updating C cache (64 bytes @ 0x20001000) -- Read from C cache (2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 1635ms total)
T26E8 003:437 JLINK_ReadMemEx(0x0000D09C, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x0000D080) -- Updating C cache (128 bytes @ 0x0000D080) -- Read from C cache (60 bytes @ 0x0000D09C) - Data: 1C B5 FD F7 BF FD FF F7 E5 FE 00 F0 1B FB 00 F0 ...  returns 0x3C (0002ms, 1637ms total)
T26E8 003:439 JLINK_ReadMemEx(0x0000D09C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000D09C) - Data: 1C B5  returns 0x02 (0000ms, 1637ms total)
T26E8 003:439 JLINK_ReadMemEx(0x0000D09E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000D09E) - Data: FD F7  returns 0x02 (0000ms, 1637ms total)
T26E8 010:792 JLINK_ReadMemEx(0x20000F5A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000F40) -- Updating C cache (64 bytes @ 0x20000F40) -- Read from C cache (2 bytes @ 0x20000F5A) - Data: 00 00  returns 0x02 (0002ms, 1639ms total)
T26E8 010:794 JLINK_ReadMemEx(0x20000F5C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000F5C) - Data: 00  returns 0x01 (0000ms, 1639ms total)
T26E8 010:794 JLINK_ReadMemEx(0x20000F5D, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000F5D) - Data: 00  returns 0x01 (0000ms, 1639ms total)
T26E8 010:794 JLINK_ReadMemEx(0x20000F5E, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000F5E) - Data: 00  returns 0x01 (0000ms, 1639ms total)
T26E8 010:794 JLINK_ReadMemEx(0x20000F5F, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000F5F) - Data: 00  returns 0x01 (0000ms, 1639ms total)
T26E8 010:794 JLINK_ReadMemEx(0x20000F60, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000F60) - Data: 00  returns 0x01 (0000ms, 1639ms total)
T26E8 010:794 JLINK_ReadMemEx(0x20000F61, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000F61) - Data: 00  returns 0x01 (0000ms, 1639ms total)
T26E8 010:794 JLINK_ReadMemEx(0x20000F62, 0x0008 Bytes, ..., Flags = 0x02000000) -- Read from C cache (8 bytes @ 0x20000F62) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0000ms, 1639ms total)
T26E8 010:794 JLINK_ReadMemEx(0x20000F6A, 0x0008 Bytes, ..., Flags = 0x02000000) -- Read from C cache (8 bytes @ 0x20000F6A) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0000ms, 1639ms total)
T26E8 010:794 JLINK_ReadMemEx(0x20000F72, 0x0008 Bytes, ..., Flags = 0x02000000) -- Read from C cache (8 bytes @ 0x20000F72) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0000ms, 1639ms total)
T26E8 010:794 JLINK_ReadMemEx(0x20000F7A, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000F80) -- Updating C cache (64 bytes @ 0x20000F80) -- Read from C cache (8 bytes @ 0x20000F7A) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0003ms, 1642ms total)
T26E8 010:797 JLINK_ReadMemEx(0x20000F82, 0x0008 Bytes, ..., Flags = 0x02000000) -- Read from C cache (8 bytes @ 0x20000F82) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0000ms, 1642ms total)
T26E8 010:797 JLINK_ReadMemEx(0x20000F8A, 0x0008 Bytes, ..., Flags = 0x02000000) -- Read from C cache (8 bytes @ 0x20000F8A) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0000ms, 1642ms total)
T26E8 010:797 JLINK_ReadMemEx(0x20000F92, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000F92) - Data: 00  returns 0x01 (0000ms, 1642ms total)
T26E8 010:797 JLINK_ReadMemEx(0x20000F93, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000F93) - Data: 00 00 00 00  returns 0x04 (0000ms, 1642ms total)
T26E8 010:797 JLINK_ReadMemEx(0x20000F97, 0x0008 Bytes, ..., Flags = 0x02000000) -- Read from C cache (8 bytes @ 0x20000F97) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0000ms, 1642ms total)
T26E8 010:797 JLINK_ReadMemEx(0x20000F9F, 0x0008 Bytes, ..., Flags = 0x02000000) -- Read from C cache (8 bytes @ 0x20000F9F) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0000ms, 1642ms total)
T26E8 010:797 JLINK_ReadMemEx(0x20000FA7, 0x0008 Bytes, ..., Flags = 0x02000000) -- Read from C cache (8 bytes @ 0x20000FA7) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0000ms, 1642ms total)
T26E8 010:797 JLINK_ReadMemEx(0x20000FAF, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000FAF) - Data: 00  returns 0x01 (0000ms, 1642ms total)
T26E8 018:164 JLINK_ReadMemEx(0x000033BC, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x00003380) -- Updating C cache (128 bytes @ 0x00003380) -- Read from C cache (60 bytes @ 0x000033BC) - Data: 0B 00 08 F0 56 FB 09 1A 0C 0E 11 14 17 06 08 0A ...  returns 0x3C (0002ms, 1644ms total)
T26E8 018:166 JLINK_ReadMemEx(0x000033BC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000033BC) - Data: 0B 00  returns 0x02 (0000ms, 1644ms total)
T26E8 018:166 JLINK_ReadMemEx(0x000033BE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000033BE) - Data: 08 F0  returns 0x02 (0000ms, 1644ms total)
T26E8 018:166 JLINK_ReadMemEx(0x000033BE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000033BE) - Data: 08 F0  returns 0x02 (0000ms, 1644ms total)
T26E8 018:166 JLINK_ReadMemEx(0x000033C0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000033C0) - Data: 56 FB 09 1A 0C 0E 11 14 17 06 08 0A 1A 00 69 20 ...  returns 0x3C (0000ms, 1644ms total)
T26E8 018:166 JLINK_ReadMemEx(0x000033C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000033C0) - Data: 56 FB  returns 0x02 (0000ms, 1644ms total)
T26E8 024:733 JLINK_ReadMemEx(0x0000BA02, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0000BA00) -- Updating C cache (64 bytes @ 0x0000BA00) -- Read from C cache (2 bytes @ 0x0000BA02) - Data: 00 BF  returns 0x02 (0002ms, 1646ms total)
T26E8 024:735 JLINK_ReadMemEx(0x0000BA04, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000BA04) - Data: 00 20 FE F7 7B FD 03 49 08 70 00 E0 00 BF 00 BF ...  returns 0x3C (0000ms, 1646ms total)
T26E8 024:735 JLINK_ReadMemEx(0x0000BA04, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BA04) - Data: 00 20  returns 0x02 (0000ms, 1646ms total)
T26E8 027:610 JLINK_ReadMemEx(0x20000349, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000340) -- Updating C cache (64 bytes @ 0x20000340) -- Read from C cache (1 bytes @ 0x20000349) - Data: 00  returns 0x01 (0002ms, 1648ms total)
T26E8 027:612 JLINK_ReadMemEx(0x2000034A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000034A) - Data: 00  returns 0x01 (0000ms, 1648ms total)
T26E8 027:612 JLINK_ReadMemEx(0x2000034B, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000034B) - Data: 00 00  returns 0x02 (0000ms, 1648ms total)
T26E8 027:612 JLINK_ReadMemEx(0x2000034D, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000034D) - Data: 00 00  returns 0x02 (0000ms, 1648ms total)
T26E8 027:612 JLINK_ReadMemEx(0x2000034F, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000034F) - Data: 00 00  returns 0x02 (0000ms, 1648ms total)
T26E8 027:656 JLINK_ReadMemEx(0x0000BA04, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000BA04) - Data: 00 20 FE F7 7B FD 03 49 08 70 00 E0 00 BF 00 BF ...  returns 0x3C (0000ms, 1648ms total)
T26E8 027:656 JLINK_ReadMemEx(0x0000BA04, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BA04) - Data: 00 20  returns 0x02 (0000ms, 1648ms total)
T26E8 027:656 JLINK_ReadMemEx(0x0000BA06, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BA06) - Data: FE F7  returns 0x02 (0000ms, 1648ms total)
T26E8 028:157 JLINK_ReadMemEx(0x20000349, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000349) - Data: 00  returns 0x01 (0000ms, 1648ms total)
T1120 043:263 JLINK_ReadMemEx(0x0000D09C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000D09C) - Data: 1C B5  returns 0x02 (0000ms, 1648ms total)
T1120 043:263 JLINK_SetBPEx(Addr = 0x0000BA04, Type = 0xFFFFFFF2)  returns 0x00000003 (0000ms, 1648ms total)
T1120 043:263 JLINK_SetBPEx(Addr = 0x0000A52A, Type = 0xFFFFFFF2)  returns 0x00000004 (0000ms, 1648ms total)
T1120 043:263 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 @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) (0005ms, 1653ms total)
T1120 043:369 JLINK_IsHalted()  returns TRUE (0005ms, 1658ms total)
T1120 043:374 JLINK_Halt()  returns 0x00 (0000ms, 1653ms total)
T1120 043:374 JLINK_IsHalted()  returns TRUE (0000ms, 1653ms total)
T1120 043:374 JLINK_IsHalted()  returns TRUE (0000ms, 1653ms total)
T1120 043:374 JLINK_IsHalted()  returns TRUE (0000ms, 1653ms total)
T1120 043:374 JLINK_ReadReg(R15 (PC))  returns 0x0000BA04 (0000ms, 1653ms total)
T1120 043:374 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 1653ms total)
T1120 043:374 JLINK_ClrBPEx(BPHandle = 0x00000003)  returns 0x00 (0000ms, 1653ms total)
T1120 043:374 JLINK_ClrBPEx(BPHandle = 0x00000004)  returns 0x00 (0000ms, 1653ms total)
T1120 043:374 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 02 00 00 00  returns 1 (0001ms, 1654ms total)
T1120 043:375 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 1 (0001ms, 1655ms total)
T1120 043:376 JLINK_ReadReg(R0)  returns 0x00000002 (0000ms, 1655ms total)
T1120 043:376 JLINK_ReadReg(R1)  returns 0x20000323 (0000ms, 1655ms total)
T1120 043:376 JLINK_ReadReg(R2)  returns 0x00000060 (0000ms, 1655ms total)
T1120 043:376 JLINK_ReadReg(R3)  returns 0x0000ADBB (0000ms, 1655ms total)
T1120 043:376 JLINK_ReadReg(R4)  returns 0x00000002 (0000ms, 1655ms total)
T1120 043:376 JLINK_ReadReg(R5)  returns 0x00000001 (0000ms, 1655ms total)
T1120 043:376 JLINK_ReadReg(R6)  returns 0x0000E0D4 (0000ms, 1655ms total)
T1120 043:376 JLINK_ReadReg(R7)  returns 0x00000000 (0000ms, 1655ms total)
T1120 043:376 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 1655ms total)
T1120 043:376 JLINK_ReadReg(R9)  returns 0x20000204 (0000ms, 1655ms total)
T1120 043:376 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 1655ms total)
T1120 043:376 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 1655ms total)
T1120 043:376 JLINK_ReadReg(R12)  returns 0x00000003 (0000ms, 1655ms total)
T1120 043:376 JLINK_ReadReg(R13 (SP))  returns 0x20006A88 (0000ms, 1655ms total)
T1120 043:376 JLINK_ReadReg(R14)  returns 0x0000D6BF (0000ms, 1655ms total)
T1120 043:376 JLINK_ReadReg(R15 (PC))  returns 0x0000BA04 (0000ms, 1655ms total)
T1120 043:376 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 1655ms total)
T1120 043:376 JLINK_ReadReg(MSP)  returns 0x20006A88 (0000ms, 1655ms total)
T1120 043:376 JLINK_ReadReg(PSP)  returns 0x20001000 (0000ms, 1655ms total)
T1120 043:376 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 1655ms total)
T26E8 043:376 JLINK_ReadMemEx(0x20006A8C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20006A80) -- Updating C cache (64 bytes @ 0x20006A80) -- Read from C cache (4 bytes @ 0x20006A8C) - Data: BF D6 00 00  returns 0x04 (0002ms, 1657ms total)
T26E8 043:378 JLINK_ReadMemEx(0x20006A88, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20006A88) - Data: D4 E0 00 00  returns 0x04 (0000ms, 1657ms total)
T26E8 043:378 JLINK_ReadMemEx(0x20006A8C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20006A8C) - Data: BF D6 00 00  returns 0x04 (0000ms, 1657ms total)
T26E8 043:378 JLINK_ReadMemEx(0x20006A9C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20006A9C) - Data: AF D0 00 00  returns 0x04 (0000ms, 1657ms total)
T26E8 043:378 JLINK_ReadMemEx(0x20006A9C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20006A9C) - Data: AF D0 00 00  returns 0x04 (0000ms, 1657ms total)
T26E8 043:378 JLINK_ReadMemEx(0x20006AAC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20006AAC) - Data: 69 0A 00 00  returns 0x04 (0000ms, 1657ms total)
T26E8 043:379 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000280) -- Updating C cache (64 bytes @ 0x20000280) -- Read from C cache (4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0002ms, 1659ms total)
T26E8 043:381 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 1659ms total)
T26E8 043:382 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000240) -- Updating C cache (64 bytes @ 0x20000240) -- Read from C cache (1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 1660ms total)
T26E8 043:384 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000480) -- Updating C cache (64 bytes @ 0x20000480) -- Read from C cache (1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 1662ms total)
T26E8 043:386 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001000) -- Updating C cache (64 bytes @ 0x20001000) -- Read from C cache (2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 1663ms total)
T1120 044:625 JLINK_ReadMemEx(0x0000BA04, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0000BA00) -- Updating C cache (64 bytes @ 0x0000BA00) -- Read from C cache (2 bytes @ 0x0000BA04) - Data: 00 20  returns 0x02 (0001ms, 1664ms total)
T1120 044:626 JLINK_Step() -- Read from C cache (2 bytes @ 0x0000BA04) -- 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) -- Simulated  returns 0x00 (0005ms, 1669ms total)
T1120 044:631 JLINK_ReadReg(R15 (PC))  returns 0x0000BA06 (0000ms, 1669ms total)
T1120 044:631 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 1669ms total)
T1120 044:631 JLINK_SetBPEx(Addr = 0x0000BA04, Type = 0xFFFFFFF2)  returns 0x00000005 (0000ms, 1669ms total)
T1120 044:631 JLINK_SetBPEx(Addr = 0x0000A52A, Type = 0xFFFFFFF2)  returns 0x00000006 (0000ms, 1669ms total)
T1120 044:631 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, 1675ms total)
T1120 044:737 JLINK_IsHalted()  returns TRUE (0006ms, 1681ms total)
T1120 044:743 JLINK_Halt()  returns 0x00 (0000ms, 1675ms total)
T1120 044:743 JLINK_IsHalted()  returns TRUE (0000ms, 1675ms total)
T1120 044:743 JLINK_IsHalted()  returns TRUE (0000ms, 1675ms total)
T1120 044:743 JLINK_IsHalted()  returns TRUE (0000ms, 1675ms total)
T1120 044:743 JLINK_ReadReg(R15 (PC))  returns 0x0000A52A (0000ms, 1675ms total)
T1120 044:743 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 1675ms total)
T1120 044:743 JLINK_ClrBPEx(BPHandle = 0x00000005)  returns 0x00 (0000ms, 1675ms total)
T1120 044:743 JLINK_ClrBPEx(BPHandle = 0x00000006)  returns 0x00 (0000ms, 1675ms total)
T1120 044:743 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 02 00 00 00  returns 1 (0001ms, 1676ms total)
T1120 044:744 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 1 (0000ms, 1676ms total)
T1120 044:744 JLINK_ReadReg(R0)  returns 0x00000000 (0001ms, 1677ms total)
T1120 044:745 JLINK_ReadReg(R1)  returns 0x00000080 (0000ms, 1677ms total)
T1120 044:745 JLINK_ReadReg(R2)  returns 0x40000C40 (0000ms, 1677ms total)
T1120 044:745 JLINK_ReadReg(R3)  returns 0x00000000 (0000ms, 1677ms total)
T1120 044:745 JLINK_ReadReg(R4)  returns 0x00000000 (0000ms, 1677ms total)
T1120 044:745 JLINK_ReadReg(R5)  returns 0x00000001 (0000ms, 1677ms total)
T1120 044:745 JLINK_ReadReg(R6)  returns 0x00000000 (0000ms, 1677ms total)
T1120 044:745 JLINK_ReadReg(R7)  returns 0x00000000 (0000ms, 1677ms total)
T1120 044:745 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 1677ms total)
T1120 044:745 JLINK_ReadReg(R9)  returns 0x20000204 (0000ms, 1677ms total)
T1120 044:745 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 1677ms total)
T1120 044:745 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 1677ms total)
T1120 044:745 JLINK_ReadReg(R12)  returns 0x00000003 (0000ms, 1677ms total)
T1120 044:745 JLINK_ReadReg(R13 (SP))  returns 0x20006A78 (0000ms, 1677ms total)
T1120 044:745 JLINK_ReadReg(R14)  returns 0x0000A529 (0000ms, 1677ms total)
T1120 044:745 JLINK_ReadReg(R15 (PC))  returns 0x0000A52A (0000ms, 1677ms total)
T1120 044:745 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 1677ms total)
T1120 044:745 JLINK_ReadReg(MSP)  returns 0x20006A78 (0000ms, 1677ms total)
T1120 044:745 JLINK_ReadReg(PSP)  returns 0x20001000 (0000ms, 1677ms total)
T1120 044:745 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 1677ms total)
T26E8 044:745 JLINK_ReadMemEx(0x20006A84, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20006A80) -- Updating C cache (64 bytes @ 0x20006A80) -- Read from C cache (4 bytes @ 0x20006A84) - Data: 0B BA 00 00  returns 0x04 (0002ms, 1679ms total)
T26E8 044:747 JLINK_ReadMemEx(0x20006A78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20006A40) -- Updating C cache (64 bytes @ 0x20006A40) -- Read from C cache (4 bytes @ 0x20006A78) - Data: 02 00 00 00  returns 0x04 (0002ms, 1681ms total)
T26E8 044:749 JLINK_ReadMemEx(0x20006A7C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20006A7C) - Data: 01 00 00 00  returns 0x04 (0000ms, 1681ms total)
T26E8 044:749 JLINK_ReadMemEx(0x20006A80, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20006A80) - Data: D4 E0 00 00  returns 0x04 (0000ms, 1681ms total)
T26E8 044:749 JLINK_ReadMemEx(0x20006A84, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20006A84) - Data: 0B BA 00 00  returns 0x04 (0000ms, 1681ms total)
T26E8 044:749 JLINK_ReadMemEx(0x20006A8C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20006A8C) - Data: BF D6 00 00  returns 0x04 (0000ms, 1681ms total)
T26E8 044:749 JLINK_ReadMemEx(0x20006A88, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20006A88) - Data: D4 E0 00 00  returns 0x04 (0000ms, 1681ms total)
T26E8 044:749 JLINK_ReadMemEx(0x20006A8C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20006A8C) - Data: BF D6 00 00  returns 0x04 (0000ms, 1681ms total)
T26E8 044:749 JLINK_ReadMemEx(0x20006A9C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20006A9C) - Data: AF D0 00 00  returns 0x04 (0000ms, 1681ms total)
T26E8 044:749 JLINK_ReadMemEx(0x20006A9C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20006A9C) - Data: AF D0 00 00  returns 0x04 (0000ms, 1681ms total)
T26E8 044:749 JLINK_ReadMemEx(0x20006AAC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20006AAC) - Data: 69 0A 00 00  returns 0x04 (0000ms, 1681ms total)
T26E8 044:750 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000280) -- Updating C cache (64 bytes @ 0x20000280) -- Read from C cache (4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0002ms, 1683ms total)
T26E8 044:752 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 1683ms total)
T26E8 044:753 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000240) -- Updating C cache (64 bytes @ 0x20000240) -- Read from C cache (1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 1684ms total)
T26E8 044:754 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000480) -- Updating C cache (64 bytes @ 0x20000480) -- Read from C cache (1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0002ms, 1686ms total)
T26E8 044:756 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001000) -- Updating C cache (64 bytes @ 0x20001000) -- Read from C cache (2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0002ms, 1688ms total)
T26E8 051:413 JLINK_ReadMemEx(0x0000A516, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0000A500) -- Updating C cache (64 bytes @ 0x0000A500) -- Read from C cache (2 bytes @ 0x0000A516) - Data: 40 21  returns 0x02 (0002ms, 1690ms total)
T26E8 051:415 JLINK_ReadMemEx(0x0000A518, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0000A540) -- Updating C cache (64 bytes @ 0x0000A540) -- Read from C cache (60 bytes @ 0x0000A518) - Data: 0D 48 F8 F7 32 FB 05 46 80 21 0B 48 F8 F7 2D FB ...  returns 0x3C (0001ms, 1691ms total)
T26E8 051:416 JLINK_ReadMemEx(0x0000A518, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000A518) - Data: 0D 48  returns 0x02 (0000ms, 1691ms total)
T26E8 051:416 JLINK_ReadMemEx(0x0000A518, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000A518) - Data: 0D 48 F8 F7 32 FB 05 46 80 21 0B 48 F8 F7 2D FB ...  returns 0x3C (0000ms, 1691ms total)
T26E8 051:416 JLINK_ReadMemEx(0x0000A518, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000A518) - Data: 0D 48  returns 0x02 (0000ms, 1691ms total)
T26E8 051:416 JLINK_ReadMemEx(0x0000A51A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000A51A) - Data: F8 F7  returns 0x02 (0000ms, 1691ms total)
T26E8 053:988 JLINK_ReadMemEx(0x0000A534, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000A534) - Data: 01 2D 03 D1 00 2C 01 D1 02 20 F8 E7 01 2D 03 D1 ...  returns 0x3C (0000ms, 1691ms total)
T26E8 053:988 JLINK_ReadMemEx(0x0000A534, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000A534) - Data: 01 2D  returns 0x02 (0000ms, 1691ms total)
T26E8 053:988 JLINK_ReadMemEx(0x0000A536, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000A536) - Data: 03 D1  returns 0x02 (0000ms, 1691ms total)
T26E8 055:281 JLINK_ReadMemEx(0x0000A53C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000A53C) - Data: 02 20 F8 E7 01 2D 03 D1 01 2C 01 D1 05 20 F2 E7 ...  returns 0x3C (0000ms, 1691ms total)
T26E8 055:281 JLINK_ReadMemEx(0x0000A53C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000A53C) - Data: 02 20  returns 0x02 (0000ms, 1691ms total)
T26E8 055:281 JLINK_ReadMemEx(0x0000A53E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000A53E) - Data: F8 E7  returns 0x02 (0000ms, 1691ms total)
T26E8 055:281 JLINK_ReadMemEx(0x0000A53E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000A53E) - Data: F8 E7  returns 0x02 (0000ms, 1691ms total)
T26E8 055:281 JLINK_ReadMemEx(0x0000A540, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000A540) - Data: 01 2D 03 D1 01 2C 01 D1 05 20 F2 E7 05 20 F0 E7 ...  returns 0x3C (0000ms, 1691ms total)
T26E8 055:281 JLINK_ReadMemEx(0x0000A540, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000A540) - Data: 01 2D  returns 0x02 (0000ms, 1691ms total)
T1120 058:151 JLINK_ReadMemEx(0x0000A52A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000A52A) - Data: 00 2D  returns 0x02 (0000ms, 1691ms total)
T1120 058:151 JLINK_Step() -- Read from C cache (2 bytes @ 0x0000A52A) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Simulated  returns 0x00 (0002ms, 1693ms total)
T1120 058:153 JLINK_ReadReg(R15 (PC))  returns 0x0000A52C (0000ms, 1693ms total)
T1120 058:153 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 1693ms total)
T1120 058:153 JLINK_SetBPEx(Addr = 0x0000BA04, Type = 0xFFFFFFF2)  returns 0x00000007 (0000ms, 1693ms total)
T1120 058:153 JLINK_SetBPEx(Addr = 0x0000A52A, Type = 0xFFFFFFF2)  returns 0x00000008 (0000ms, 1693ms total)
T1120 058:153 JLINK_SetBPEx(Addr = 0x0000A53C, Type = 0xFFFFFFF2)  returns 0x00000009 (0000ms, 1693ms total)
T1120 058:153 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0006ms, 1699ms total)
T1120 058:260 JLINK_IsHalted()  returns TRUE (0006ms, 1705ms total)
T1120 058:266 JLINK_Halt()  returns 0x00 (0000ms, 1699ms total)
T1120 058:266 JLINK_IsHalted()  returns TRUE (0000ms, 1699ms total)
T1120 058:266 JLINK_IsHalted()  returns TRUE (0000ms, 1699ms total)
T1120 058:266 JLINK_IsHalted()  returns TRUE (0000ms, 1699ms total)
T1120 058:266 JLINK_ReadReg(R15 (PC))  returns 0x0000A53C (0000ms, 1699ms total)
T1120 058:266 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 1699ms total)
T1120 058:266 JLINK_ClrBPEx(BPHandle = 0x00000007)  returns 0x00 (0000ms, 1699ms total)
T1120 058:266 JLINK_ClrBPEx(BPHandle = 0x00000008)  returns 0x00 (0000ms, 1699ms total)
T1120 058:266 JLINK_ClrBPEx(BPHandle = 0x00000009)  returns 0x00 (0000ms, 1699ms total)
T1120 058:266 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 02 00 00 00  returns 1 (0001ms, 1700ms total)
T1120 058:267 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 1 (0001ms, 1701ms total)
T1120 058:268 JLINK_ReadReg(R0)  returns 0x00000000 (0000ms, 1701ms total)
T1120 058:268 JLINK_ReadReg(R1)  returns 0x00000080 (0000ms, 1701ms total)
T1120 058:268 JLINK_ReadReg(R2)  returns 0x40000C40 (0000ms, 1701ms total)
T1120 058:269 JLINK_ReadReg(R3)  returns 0x00000000 (0000ms, 1701ms total)
T1120 058:269 JLINK_ReadReg(R4)  returns 0x00000000 (0000ms, 1701ms total)
T1120 058:269 JLINK_ReadReg(R5)  returns 0x00000001 (0000ms, 1701ms total)
T1120 058:269 JLINK_ReadReg(R6)  returns 0x00000000 (0000ms, 1701ms total)
T1120 058:269 JLINK_ReadReg(R7)  returns 0x00000000 (0000ms, 1701ms total)
T1120 058:269 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 1701ms total)
T1120 058:269 JLINK_ReadReg(R9)  returns 0x20000204 (0000ms, 1701ms total)
T1120 058:269 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 1701ms total)
T1120 058:269 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 1701ms total)
T1120 058:269 JLINK_ReadReg(R12)  returns 0x00000003 (0000ms, 1701ms total)
T1120 058:269 JLINK_ReadReg(R13 (SP))  returns 0x20006A78 (0000ms, 1701ms total)
T1120 058:269 JLINK_ReadReg(R14)  returns 0x0000A529 (0000ms, 1701ms total)
T1120 058:269 JLINK_ReadReg(R15 (PC))  returns 0x0000A53C (0000ms, 1701ms total)
T1120 058:269 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 1701ms total)
T1120 058:269 JLINK_ReadReg(MSP)  returns 0x20006A78 (0000ms, 1701ms total)
T1120 058:269 JLINK_ReadReg(PSP)  returns 0x20001000 (0000ms, 1701ms total)
T1120 058:269 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 1701ms total)
T26E8 058:270 JLINK_ReadMemEx(0x20006A84, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20006A80) -- Updating C cache (64 bytes @ 0x20006A80) -- Read from C cache (4 bytes @ 0x20006A84) - Data: 0B BA 00 00  returns 0x04 (0002ms, 1703ms total)
T26E8 058:272 JLINK_ReadMemEx(0x20006A78, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20006A40) -- Updating C cache (64 bytes @ 0x20006A40) -- Read from C cache (4 bytes @ 0x20006A78) - Data: 02 00 00 00  returns 0x04 (0001ms, 1704ms total)
T26E8 058:273 JLINK_ReadMemEx(0x20006A7C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20006A7C) - Data: 01 00 00 00  returns 0x04 (0000ms, 1704ms total)
T26E8 058:273 JLINK_ReadMemEx(0x20006A80, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20006A80) - Data: D4 E0 00 00  returns 0x04 (0001ms, 1705ms total)
T26E8 058:274 JLINK_ReadMemEx(0x20006A84, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20006A84) - Data: 0B BA 00 00  returns 0x04 (0000ms, 1705ms total)
T26E8 058:274 JLINK_ReadMemEx(0x20006A8C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20006A8C) - Data: BF D6 00 00  returns 0x04 (0000ms, 1705ms total)
T26E8 058:274 JLINK_ReadMemEx(0x20006A88, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20006A88) - Data: D4 E0 00 00  returns 0x04 (0000ms, 1705ms total)
T26E8 058:274 JLINK_ReadMemEx(0x20006A8C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20006A8C) - Data: BF D6 00 00  returns 0x04 (0000ms, 1705ms total)
T26E8 058:274 JLINK_ReadMemEx(0x20006A9C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20006A9C) - Data: AF D0 00 00  returns 0x04 (0000ms, 1705ms total)
T26E8 058:274 JLINK_ReadMemEx(0x20006A9C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20006A9C) - Data: AF D0 00 00  returns 0x04 (0000ms, 1705ms total)
T26E8 058:274 JLINK_ReadMemEx(0x20006AAC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20006AAC) - Data: 69 0A 00 00  returns 0x04 (0000ms, 1705ms total)
T26E8 058:274 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000280) -- Updating C cache (64 bytes @ 0x20000280) -- Read from C cache (4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0002ms, 1707ms total)
T26E8 058:276 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 1707ms total)
T26E8 058:277 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000240) -- Updating C cache (64 bytes @ 0x20000240) -- Read from C cache (1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0002ms, 1709ms total)
T26E8 058:279 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000480) -- Updating C cache (64 bytes @ 0x20000480) -- Read from C cache (1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0002ms, 1711ms total)
T26E8 058:281 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001000) -- Updating C cache (64 bytes @ 0x20001000) -- Read from C cache (2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0002ms, 1713ms total)
T26E8 058:286 JLINK_ReadMemEx(0x0000A53C, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x0000A500) -- Updating C cache (128 bytes @ 0x0000A500) -- Read from C cache (60 bytes @ 0x0000A53C) - Data: 02 20 F8 E7 01 2D 03 D1 01 2C 01 D1 05 20 F2 E7 ...  returns 0x3C (0002ms, 1715ms total)
T26E8 058:288 JLINK_ReadMemEx(0x0000A53C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000A53C) - Data: 02 20  returns 0x02 (0000ms, 1715ms total)
T26E8 058:288 JLINK_ReadMemEx(0x0000A53E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000A53E) - Data: F8 E7  returns 0x02 (0000ms, 1715ms total)
T26E8 058:288 JLINK_ReadMemEx(0x0000A53E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000A53E) - Data: F8 E7  returns 0x02 (0000ms, 1715ms total)
T26E8 058:288 JLINK_ReadMemEx(0x0000A540, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000A540) - Data: 01 2D 03 D1 01 2C 01 D1 05 20 F2 E7 05 20 F0 E7 ...  returns 0x3C (0000ms, 1715ms total)
T26E8 058:288 JLINK_ReadMemEx(0x0000A540, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000A540) - Data: 01 2D  returns 0x02 (0000ms, 1715ms total)
T1120 062:007 JLINK_ReadMemEx(0x0000A53C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000A53C) - Data: 02 20  returns 0x02 (0001ms, 1716ms total)
T1120 062:008 JLINK_Go() -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0002010) (0004ms, 1720ms total)
T1120 062:113 JLINK_IsHalted()  returns FALSE (0001ms, 1721ms total)
T1120 062:214 JLINK_IsHalted()  returns FALSE (0000ms, 1720ms total)
T1120 062:315 JLINK_IsHalted()  returns FALSE (0000ms, 1720ms total)
T1120 062:416 JLINK_IsHalted()  returns FALSE (0000ms, 1720ms total)
T1120 062:517 JLINK_IsHalted()  returns FALSE (0000ms, 1720ms total)
T26E8 062:619 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1721ms total)
T26E8 062:620 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1722ms total)
T26E8 062:623 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 1723ms total)
T26E8 062:624 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 1724ms total)
T26E8 062:626 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 1725ms total)
T1120 062:627 JLINK_IsHalted()  returns FALSE (0001ms, 1726ms total)
T1120 062:729 JLINK_IsHalted()  returns FALSE (0000ms, 1725ms total)
T1120 062:830 JLINK_IsHalted()  returns FALSE (0001ms, 1726ms total)
T1120 062:931 JLINK_IsHalted()  returns FALSE (0001ms, 1726ms total)
T1120 063:033 JLINK_IsHalted()  returns FALSE (0001ms, 1726ms total)
T26E8 063:134 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1726ms total)
T26E8 063:135 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1727ms total)
T26E8 063:137 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 1728ms total)
T26E8 063:138 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 1729ms total)
T26E8 063:140 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 1730ms total)
T1120 063:141 JLINK_IsHalted()  returns FALSE (0000ms, 1730ms total)
T1120 063:242 JLINK_IsHalted()  returns FALSE (0001ms, 1731ms total)
T1120 063:344 JLINK_IsHalted()  returns FALSE (0001ms, 1731ms total)
T1120 063:445 JLINK_IsHalted()  returns FALSE (0000ms, 1730ms total)
T1120 063:546 JLINK_IsHalted()  returns FALSE (0001ms, 1731ms total)
T1120 063:648 JLINK_IsHalted()  returns FALSE (0001ms, 1731ms total)
T26E8 063:750 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1731ms total)
T26E8 063:751 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1732ms total)
T26E8 063:754 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 1733ms total)
T26E8 063:755 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 1734ms total)
T26E8 063:757 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0000ms, 1734ms total)
T1120 063:757 JLINK_IsHalted()  returns FALSE (0001ms, 1735ms total)
T1120 063:859 JLINK_IsHalted()  returns FALSE (0001ms, 1735ms total)
T1120 063:960 JLINK_IsHalted()  returns FALSE (0000ms, 1734ms total)
T1120 064:061 JLINK_IsHalted()  returns FALSE (0000ms, 1734ms total)
T1120 064:162 JLINK_IsHalted()  returns FALSE (0001ms, 1735ms total)
T26E8 064:263 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1735ms total)
T26E8 064:264 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1736ms total)
T26E8 064:267 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0002ms, 1738ms total)
T26E8 064:269 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0000ms, 1738ms total)
T26E8 064:270 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 1739ms total)
T1120 064:271 JLINK_IsHalted()  returns FALSE (0000ms, 1739ms total)
T1120 064:373 JLINK_IsHalted()  returns FALSE (0000ms, 1739ms total)
T1120 064:475 JLINK_IsHalted()  returns FALSE (0000ms, 1739ms total)
T1120 064:576 JLINK_IsHalted()  returns FALSE (0001ms, 1740ms total)
T1120 064:677 JLINK_IsHalted()  returns FALSE (0000ms, 1739ms total)
T26E8 064:779 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1740ms total)
T26E8 064:781 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1741ms total)
T26E8 064:784 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 1742ms total)
T26E8 064:785 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 1743ms total)
T26E8 064:786 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 1744ms total)
T1120 064:787 JLINK_IsHalted()  returns FALSE (0001ms, 1745ms total)
T1120 064:889 JLINK_IsHalted()  returns FALSE (0001ms, 1745ms total)
T1120 064:991 JLINK_IsHalted()  returns FALSE (0000ms, 1744ms total)
T1120 065:092 JLINK_IsHalted()  returns FALSE (0001ms, 1745ms total)
T1120 065:194 JLINK_IsHalted()  returns FALSE (0001ms, 1745ms total)
T26E8 065:296 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1745ms total)
T26E8 065:297 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1746ms total)
T26E8 065:300 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 1747ms total)
T26E8 065:301 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 1748ms total)
T26E8 065:303 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 1749ms total)
T1120 065:304 JLINK_IsHalted()  returns FALSE (0001ms, 1750ms total)
T1120 065:406 JLINK_IsHalted()  returns FALSE (0000ms, 1749ms total)
T1120 065:507 JLINK_IsHalted()  returns FALSE (0001ms, 1750ms total)
T1120 065:609 JLINK_IsHalted()  returns FALSE (0001ms, 1750ms total)
T1120 065:710 JLINK_IsHalted()  returns FALSE (0001ms, 1750ms total)
T26E8 065:812 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1750ms total)
T26E8 065:813 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 1750ms total)
T26E8 065:814 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0000ms, 1750ms total)
T26E8 065:814 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0002ms, 1752ms total)
T26E8 065:816 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 1753ms total)
T1120 065:817 JLINK_IsHalted()  returns FALSE (0001ms, 1754ms total)
T1120 065:918 JLINK_IsHalted()  returns FALSE (0000ms, 1753ms total)
T1120 066:019 JLINK_IsHalted()  returns FALSE (0001ms, 1754ms total)
T1120 066:120 JLINK_IsHalted()  returns FALSE (0001ms, 1754ms total)
T1120 066:222 JLINK_IsHalted()  returns FALSE (0001ms, 1754ms total)
T26E8 066:323 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1754ms total)
T26E8 066:325 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 1754ms total)
T26E8 066:327 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 1755ms total)
T26E8 066:328 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 1756ms total)
T26E8 066:330 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0000ms, 1756ms total)
T1120 066:331 JLINK_IsHalted()  returns FALSE (0000ms, 1756ms total)
T1120 066:432 JLINK_IsHalted()  returns FALSE (0001ms, 1757ms total)
T1120 066:533 JLINK_IsHalted()  returns FALSE (0001ms, 1757ms total)
T1120 066:635 JLINK_IsHalted()  returns FALSE (0001ms, 1757ms total)
T1120 066:736 JLINK_IsHalted()  returns FALSE (0000ms, 1756ms total)
T26E8 066:838 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1757ms total)
T26E8 066:839 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 1757ms total)
T26E8 066:841 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0000ms, 1757ms total)
T26E8 066:841 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0002ms, 1759ms total)
T26E8 066:844 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 1760ms total)
T1120 066:845 JLINK_IsHalted()  returns FALSE (0000ms, 1760ms total)
T1120 066:947 JLINK_IsHalted()  returns FALSE (0001ms, 1761ms total)
T1120 067:048 JLINK_IsHalted()  returns FALSE (0001ms, 1761ms total)
T1120 067:149 JLINK_IsHalted()  returns FALSE (0001ms, 1761ms total)
T1120 067:250 JLINK_IsHalted()  returns FALSE (0001ms, 1761ms total)
T26E8 067:353 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1761ms total)
T26E8 067:354 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1762ms total)
T26E8 067:358 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 1763ms total)
T26E8 067:359 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 1764ms total)
T26E8 067:361 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 1765ms total)
T1120 067:362 JLINK_IsHalted()  returns FALSE (0001ms, 1766ms total)
T1120 067:463 JLINK_IsHalted()  returns FALSE (0001ms, 1766ms total)
T1120 067:564 JLINK_IsHalted()  returns FALSE (0001ms, 1766ms total)
T1120 067:666 JLINK_IsHalted()  returns FALSE (0001ms, 1766ms total)
T1120 067:767 JLINK_IsHalted()  returns FALSE (0001ms, 1766ms total)
T26E8 067:869 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1766ms total)
T26E8 067:870 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1767ms total)
T26E8 067:872 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 1768ms total)
T26E8 067:873 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 1769ms total)
T26E8 067:875 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 1770ms total)
T1120 067:876 JLINK_IsHalted()  returns FALSE (0000ms, 1770ms total)
T1120 067:977 JLINK_IsHalted()  returns FALSE (0001ms, 1771ms total)
T1120 068:079 JLINK_IsHalted()  returns FALSE (0000ms, 1770ms total)
T1120 068:180 JLINK_IsHalted()  returns FALSE (0001ms, 1771ms total)
T1120 068:281 JLINK_IsHalted()  returns FALSE (0001ms, 1771ms total)
T1120 068:383 JLINK_IsHalted()  returns FALSE (0001ms, 1771ms total)
T26E8 068:484 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1771ms total)
T26E8 068:485 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1772ms total)
T26E8 068:487 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 1773ms total)
T26E8 068:488 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 1774ms total)
T26E8 068:490 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 1775ms total)
T1120 068:491 JLINK_IsHalted()  returns FALSE (0001ms, 1776ms total)
T1120 068:593 JLINK_IsHalted()  returns FALSE (0000ms, 1775ms total)
T1120 068:694 JLINK_IsHalted()  returns FALSE (0000ms, 1775ms total)
T1120 068:795 JLINK_IsHalted()  returns FALSE (0001ms, 1776ms total)
T1120 068:897 JLINK_IsHalted()  returns FALSE (0000ms, 1775ms total)
T26E8 068:998 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 1775ms total)
T26E8 068:998 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1776ms total)
T26E8 069:000 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 1777ms total)
T26E8 069:001 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0000ms, 1777ms total)
T26E8 069:002 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 1779ms total)
T1120 069:003 JLINK_IsHalted()  returns FALSE (0000ms, 1779ms total)
T1120 069:105 JLINK_IsHalted()  returns FALSE (0000ms, 1779ms total)
T1120 069:206 JLINK_IsHalted()  returns FALSE (0001ms, 1780ms total)
T1120 069:307 JLINK_IsHalted()  returns FALSE (0001ms, 1780ms total)
T1120 069:408 JLINK_IsHalted()  returns FALSE (0000ms, 1779ms total)
T26E8 069:509 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1780ms total)
T26E8 069:510 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1781ms total)
T26E8 069:512 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0000ms, 1781ms total)
T26E8 069:512 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 1782ms total)
T26E8 069:514 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0000ms, 1782ms total)
T1120 069:514 JLINK_IsHalted()  returns FALSE (0001ms, 1783ms total)
T1120 069:616 JLINK_IsHalted()  returns FALSE (0000ms, 1782ms total)
T1120 069:718 JLINK_IsHalted()  returns FALSE (0000ms, 1782ms total)
T1120 069:819 JLINK_IsHalted()  returns FALSE (0000ms, 1782ms total)
T1120 069:920 JLINK_IsHalted()  returns FALSE (0001ms, 1783ms total)
T1120 070:022 JLINK_IsHalted()  returns FALSE (0001ms, 1783ms total)
T26E8 070:124 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 1782ms total)
T26E8 070:124 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 1782ms total)
T26E8 070:126 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 1783ms total)
T26E8 070:127 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 1784ms total)
T26E8 070:128 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0002ms, 1786ms total)
T1120 070:130 JLINK_IsHalted()  returns FALSE (0000ms, 1786ms total)
T1120 070:231 JLINK_IsHalted()  returns FALSE (0000ms, 1786ms total)
T1120 070:333 JLINK_IsHalted()  returns FALSE (0000ms, 1786ms total)
T1120 070:434 JLINK_IsHalted()  returns FALSE (0001ms, 1787ms total)
T1120 070:535 JLINK_IsHalted()  returns FALSE (0001ms, 1787ms total)
T26E8 070:637 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1787ms total)
T26E8 070:638 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 1787ms total)
T26E8 070:639 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0002ms, 1789ms total)
T26E8 070:641 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0000ms, 1789ms total)
T26E8 070:641 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 1790ms total)
T1120 070:642 JLINK_IsHalted()  returns FALSE (0001ms, 1791ms total)
T1120 070:744 JLINK_IsHalted()  returns FALSE (0001ms, 1791ms total)
T1120 070:846 JLINK_IsHalted()  returns FALSE (0001ms, 1791ms total)
T1120 070:948 JLINK_IsHalted()  returns FALSE (0001ms, 1791ms total)
T1120 071:049 JLINK_IsHalted()  returns FALSE (0000ms, 1790ms total)
T26E8 071:150 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1791ms total)
T26E8 071:151 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 1791ms total)
T26E8 071:152 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 1792ms total)
T26E8 071:153 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 1793ms total)
T26E8 071:154 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 1794ms total)
T1120 071:155 JLINK_IsHalted()  returns FALSE (0001ms, 1795ms total)
T1120 071:257 JLINK_IsHalted()  returns FALSE (0001ms, 1795ms total)
T1120 071:358 JLINK_IsHalted()  returns FALSE (0001ms, 1795ms total)
T1120 071:460 JLINK_IsHalted()  returns FALSE (0001ms, 1795ms total)
T1120 071:561 JLINK_IsHalted()  returns FALSE (0000ms, 1794ms total)
T1120 071:663 JLINK_IsHalted()  returns FALSE (0001ms, 1795ms total)
T26E8 071:765 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 1794ms total)
T26E8 071:765 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1795ms total)
T26E8 071:767 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 1796ms total)
T26E8 071:768 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0000ms, 1796ms total)
T26E8 071:769 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 1797ms total)
T1120 071:770 JLINK_IsHalted()  returns FALSE (0001ms, 1798ms total)
T1120 071:872 JLINK_IsHalted()  returns FALSE (0001ms, 1798ms total)
T1120 071:974 JLINK_IsHalted()  returns FALSE (0000ms, 1797ms total)
T1120 072:074 JLINK_IsHalted()  returns FALSE (0001ms, 1798ms total)
T1120 072:176 JLINK_IsHalted()  returns FALSE (0000ms, 1797ms total)
T26E8 072:277 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1798ms total)
T26E8 072:278 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1799ms total)
T26E8 072:280 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 1800ms total)
T26E8 072:281 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 1801ms total)
T26E8 072:283 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 1802ms total)
T1120 072:284 JLINK_IsHalted()  returns FALSE (0000ms, 1802ms total)
T1120 072:385 JLINK_IsHalted()  returns FALSE (0000ms, 1802ms total)
T1120 072:486 JLINK_IsHalted()  returns FALSE (0001ms, 1803ms total)
T1120 072:587 JLINK_IsHalted()  returns FALSE (0000ms, 1802ms total)
T1120 072:688 JLINK_IsHalted()  returns FALSE (0001ms, 1803ms total)
T26E8 072:790 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1803ms total)
T26E8 072:791 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1804ms total)
T26E8 072:792 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 1805ms total)
T26E8 072:793 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0002ms, 1807ms total)
T26E8 072:795 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 1808ms total)
T1120 072:796 JLINK_IsHalted()  returns FALSE (0000ms, 1808ms total)
T1120 072:897 JLINK_IsHalted()  returns FALSE (0001ms, 1809ms total)
T1120 072:999 JLINK_IsHalted()  returns FALSE (0000ms, 1808ms total)
T1120 073:100 JLINK_IsHalted()  returns FALSE (0001ms, 1809ms total)
T1120 073:201 JLINK_IsHalted()  returns FALSE (0001ms, 1809ms total)
T1120 073:303 JLINK_IsHalted()  returns FALSE (0000ms, 1808ms total)
T26E8 073:404 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1809ms total)
T26E8 073:405 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1810ms total)
T26E8 073:409 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 1811ms total)
T26E8 073:410 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 1812ms total)
T26E8 073:411 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0002ms, 1814ms total)
T1120 073:413 JLINK_IsHalted()  returns FALSE (0001ms, 1815ms total)
T1120 073:515 JLINK_IsHalted()  returns FALSE (0001ms, 1815ms total)
T1120 073:616 JLINK_IsHalted()  returns FALSE (0000ms, 1814ms total)
T1120 073:717 JLINK_IsHalted()  returns FALSE (0001ms, 1815ms total)
T1120 073:818 JLINK_IsHalted()  returns FALSE (0001ms, 1815ms total)
T26E8 073:919 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1815ms total)
T26E8 073:920 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0002ms, 1817ms total)
T26E8 073:922 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 1818ms total)
T26E8 073:923 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 1819ms total)
T26E8 073:925 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 1820ms total)
T1120 073:926 JLINK_IsHalted()  returns FALSE (0001ms, 1821ms total)
T1120 074:029 JLINK_IsHalted()  returns FALSE (0000ms, 1820ms total)
T1120 074:130 JLINK_IsHalted()  returns FALSE (0001ms, 1821ms total)
T1120 074:232 JLINK_IsHalted()  returns FALSE (0001ms, 1821ms total)
T1120 074:334 JLINK_IsHalted()  returns FALSE (0001ms, 1821ms total)
T26E8 074:435 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1821ms total)
T26E8 074:436 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1822ms total)
T26E8 074:441 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 1823ms total)
T26E8 074:442 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 1824ms total)
T26E8 074:444 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 1825ms total)
T1120 074:445 JLINK_IsHalted()  returns FALSE (0000ms, 1825ms total)
T1120 074:546 JLINK_IsHalted()  returns FALSE (0001ms, 1826ms total)
T1120 074:647 JLINK_IsHalted()  returns FALSE (0001ms, 1826ms total)
T1120 074:748 JLINK_IsHalted()  returns FALSE (0001ms, 1826ms total)
T1120 074:850 JLINK_IsHalted()  returns FALSE (0000ms, 1825ms total)
T26E8 074:951 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1826ms total)
T26E8 074:952 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1827ms total)
T26E8 074:953 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 1828ms total)
T26E8 074:954 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 1829ms total)
T26E8 074:955 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 1830ms total)
T1120 074:956 JLINK_IsHalted()  returns FALSE (0001ms, 1831ms total)
T1120 075:059 JLINK_IsHalted()  returns FALSE (0001ms, 1831ms total)
T1120 075:160 JLINK_IsHalted()  returns FALSE (0000ms, 1830ms total)
T1120 075:261 JLINK_IsHalted()  returns FALSE (0001ms, 1831ms total)
T1120 075:363 JLINK_IsHalted()  returns FALSE (0000ms, 1830ms total)
T26E8 075:463 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1831ms total)
T26E8 075:464 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1832ms total)
T26E8 075:466 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 1833ms total)
T26E8 075:467 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 1834ms total)
T26E8 075:469 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 1835ms total)
T1120 075:470 JLINK_IsHalted()  returns FALSE (0001ms, 1836ms total)
T1120 075:571 JLINK_IsHalted()  returns FALSE (0000ms, 1835ms total)
T1120 075:672 JLINK_IsHalted()  returns FALSE (0001ms, 1836ms total)
T1120 075:774 JLINK_IsHalted()  returns FALSE (0001ms, 1836ms total)
T1120 075:875 JLINK_IsHalted()  returns FALSE (0001ms, 1836ms total)
T26E8 075:977 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1836ms total)
T26E8 075:978 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 1836ms total)
T26E8 075:980 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 1837ms total)
T26E8 075:981 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0000ms, 1837ms total)
T26E8 075:982 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 1838ms total)
T1120 075:983 JLINK_IsHalted()  returns FALSE (0001ms, 1839ms total)
T1120 076:085 JLINK_IsHalted()  returns FALSE (0001ms, 1839ms total)
T1120 076:186 JLINK_IsHalted()  returns FALSE (0001ms, 1839ms total)
T1120 076:288 JLINK_IsHalted()  returns FALSE (0001ms, 1839ms total)
T1120 076:390 JLINK_IsHalted()  returns FALSE (0000ms, 1838ms total)
T1120 076:491 JLINK_IsHalted()  returns FALSE (0000ms, 1838ms total)
T26E8 076:593 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1839ms total)
T26E8 076:594 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1840ms total)
T26E8 076:596 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 1841ms total)
T26E8 076:597 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0000ms, 1841ms total)
T26E8 076:598 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 1842ms total)
T1120 076:599 JLINK_IsHalted()  returns FALSE (0001ms, 1843ms total)
T1120 076:701 JLINK_IsHalted()  returns FALSE (0001ms, 1843ms total)
T1120 076:802 JLINK_IsHalted()  returns FALSE (0001ms, 1843ms total)
T1120 076:903 JLINK_IsHalted()  returns FALSE (0000ms, 1842ms total)
T1120 077:005 JLINK_IsHalted()  returns FALSE (0001ms, 1843ms total)
T26E8 077:108 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1843ms total)
T26E8 077:109 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1844ms total)
T26E8 077:112 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 1845ms total)
T26E8 077:113 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 1846ms total)
T26E8 077:114 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0002ms, 1848ms total)
T1120 077:116 JLINK_IsHalted()  returns FALSE (0001ms, 1849ms total)
T1120 077:218 JLINK_IsHalted()  returns FALSE (0001ms, 1849ms total)
T1120 077:319 JLINK_IsHalted()  returns FALSE (0000ms, 1848ms total)
T1120 077:420 JLINK_IsHalted()  returns FALSE (0001ms, 1849ms total)
T1120 077:522 JLINK_IsHalted()  returns FALSE (0001ms, 1849ms total)
T26E8 077:623 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 1848ms total)
T26E8 077:623 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1849ms total)
T26E8 077:625 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 1850ms total)
T26E8 077:626 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 1851ms total)
T26E8 077:627 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 1852ms total)
T1120 077:628 JLINK_IsHalted()  returns FALSE (0000ms, 1852ms total)
T1120 077:730 JLINK_IsHalted()  returns FALSE (0000ms, 1852ms total)
T1120 077:831 JLINK_IsHalted()  returns FALSE (0000ms, 1852ms total)
T1120 077:932 JLINK_IsHalted()  returns FALSE (0001ms, 1853ms total)
T1120 078:034 JLINK_IsHalted()  returns FALSE (0001ms, 1853ms total)
T26E8 078:135 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1853ms total)
T26E8 078:136 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 1853ms total)
T26E8 078:138 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0000ms, 1853ms total)
T26E8 078:138 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 1854ms total)
T26E8 078:139 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0002ms, 1856ms total)
T1120 078:141 JLINK_IsHalted()  returns FALSE (0000ms, 1856ms total)
T1120 078:242 JLINK_IsHalted()  returns FALSE (0000ms, 1856ms total)
T1120 078:343 JLINK_IsHalted()  returns FALSE (0000ms, 1856ms total)
T1120 078:444 JLINK_IsHalted()  returns FALSE (0000ms, 1856ms total)
T1120 078:545 JLINK_IsHalted()  returns FALSE (0001ms, 1857ms total)
T1120 078:647 JLINK_IsHalted()  returns FALSE (0000ms, 1856ms total)
T26E8 078:748 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1857ms total)
T26E8 078:749 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1858ms total)
T26E8 078:751 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0000ms, 1858ms total)
T26E8 078:751 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 1859ms total)
T26E8 078:753 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 1860ms total)
T1120 078:754 JLINK_IsHalted()  returns FALSE (0001ms, 1861ms total)
T1120 078:856 JLINK_IsHalted()  returns FALSE (0001ms, 1861ms total)
T1120 078:957 JLINK_IsHalted()  returns FALSE (0000ms, 1860ms total)
T1120 079:058 JLINK_IsHalted()  returns FALSE (0001ms, 1861ms total)
T1120 079:160 JLINK_IsHalted()  returns FALSE (0001ms, 1861ms total)
T26E8 079:262 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 1860ms total)
T26E8 079:262 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1861ms total)
T26E8 079:264 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 1862ms total)
T26E8 079:265 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 1863ms total)
T26E8 079:266 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 1864ms total)
T1120 079:267 JLINK_IsHalted()  returns FALSE (0001ms, 1865ms total)
T1120 079:368 JLINK_IsHalted()  returns FALSE (0000ms, 1864ms total)
T1120 079:470 JLINK_IsHalted()  returns FALSE (0001ms, 1865ms total)
T1120 079:572 JLINK_IsHalted()  returns FALSE (0001ms, 1865ms total)
T1120 079:673 JLINK_IsHalted()  returns FALSE (0001ms, 1865ms total)
T26E8 079:775 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1865ms total)
T26E8 079:776 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1866ms total)
T26E8 079:778 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 1867ms total)
T26E8 079:779 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 1868ms total)
T26E8 079:780 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 1869ms total)
T1120 079:781 JLINK_IsHalted()  returns FALSE (0001ms, 1870ms total)
T1120 079:882 JLINK_IsHalted()  returns FALSE (0001ms, 1870ms total)
T1120 079:984 JLINK_IsHalted()  returns FALSE (0001ms, 1870ms total)
T1120 080:085 JLINK_IsHalted()  returns FALSE (0001ms, 1870ms total)
T1120 080:186 JLINK_IsHalted()  returns FALSE (0001ms, 1870ms total)
T1120 080:288 JLINK_IsHalted()  returns FALSE (0001ms, 1870ms total)
T26E8 080:390 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1870ms total)
T26E8 080:391 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1871ms total)
T26E8 080:394 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 1872ms total)
T26E8 080:395 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 1873ms total)
T26E8 080:396 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 1874ms total)
T1120 080:397 JLINK_IsHalted()  returns FALSE (0001ms, 1875ms total)
T1120 080:498 JLINK_IsHalted()  returns FALSE (0001ms, 1875ms total)
T1120 080:600 JLINK_IsHalted()  returns FALSE (0001ms, 1875ms total)
T1120 080:702 JLINK_IsHalted()  returns FALSE (0000ms, 1874ms total)
T1120 080:803 JLINK_IsHalted()  returns FALSE (0000ms, 1874ms total)
T26E8 080:905 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1875ms total)
T26E8 080:906 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1876ms total)
T26E8 080:908 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 1877ms total)
T26E8 080:909 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 1878ms total)
T26E8 080:911 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 1879ms total)
T1120 080:912 JLINK_IsHalted()  returns FALSE (0001ms, 1880ms total)
T1120 081:013 JLINK_IsHalted()  returns FALSE (0001ms, 1880ms total)
T1120 081:115 JLINK_IsHalted()  returns FALSE (0000ms, 1879ms total)
T1120 081:217 JLINK_IsHalted()  returns FALSE (0000ms, 1879ms total)
T1120 081:318 JLINK_IsHalted()  returns FALSE (0001ms, 1880ms total)
T26E8 081:420 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1880ms total)
T26E8 081:421 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1881ms total)
T26E8 081:423 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 1882ms total)
T26E8 081:424 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 1883ms total)
T26E8 081:425 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0002ms, 1885ms total)
T1120 081:427 JLINK_IsHalted()  returns FALSE (0000ms, 1885ms total)
T1120 081:528 JLINK_IsHalted()  returns FALSE (0000ms, 1885ms total)
T1120 081:629 JLINK_IsHalted()  returns FALSE (0001ms, 1886ms total)
T1120 081:731 JLINK_IsHalted()  returns FALSE (0001ms, 1886ms total)
T1120 081:833 JLINK_IsHalted()  returns FALSE (0001ms, 1886ms total)
T26E8 081:935 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1886ms total)
T26E8 081:936 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1887ms total)
T26E8 081:938 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 1888ms total)
T26E8 081:939 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 1889ms total)
T26E8 081:940 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 1890ms total)
T1120 081:941 JLINK_IsHalted()  returns FALSE (0002ms, 1892ms total)
T1120 082:043 JLINK_IsHalted()  returns FALSE (0000ms, 1890ms total)
T1120 082:145 JLINK_IsHalted()  returns FALSE (0001ms, 1891ms total)
T1120 082:247 JLINK_IsHalted()  returns FALSE (0001ms, 1891ms total)
T1120 082:349 JLINK_IsHalted()  returns FALSE (0001ms, 1891ms total)
T26E8 082:450 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1891ms total)
T26E8 082:451 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 1891ms total)
T26E8 082:452 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0002ms, 1893ms total)
T26E8 082:454 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0000ms, 1893ms total)
T26E8 082:455 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 1894ms total)
T1120 082:456 JLINK_IsHalted()  returns FALSE (0001ms, 1895ms total)
T1120 082:558 JLINK_IsHalted()  returns FALSE (0000ms, 1894ms total)
T1120 082:660 JLINK_IsHalted()  returns FALSE (0000ms, 1894ms total)
T1120 082:761 JLINK_IsHalted()  returns FALSE (0001ms, 1895ms total)
T1120 082:863 JLINK_IsHalted()  returns FALSE (0001ms, 1895ms total)
T26E8 082:965 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 1894ms total)
T26E8 082:965 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1895ms total)
T26E8 082:967 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 1896ms total)
T26E8 082:968 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 1897ms total)
T26E8 082:969 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 1898ms total)
T1120 082:970 JLINK_IsHalted()  returns FALSE (0001ms, 1899ms total)
T1120 083:072 JLINK_IsHalted()  returns FALSE (0001ms, 1899ms total)
T1120 083:173 JLINK_IsHalted()  returns FALSE (0001ms, 1899ms total)
T1120 083:274 JLINK_IsHalted()  returns FALSE (0000ms, 1898ms total)
T1120 083:376 JLINK_IsHalted()  returns FALSE (0000ms, 1898ms total)
T26E8 083:477 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 1898ms total)
T26E8 083:477 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1899ms total)
T26E8 083:481 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 1900ms total)
T26E8 083:482 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 1901ms total)
T26E8 083:483 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 1902ms total)
T1120 083:484 JLINK_IsHalted()  returns FALSE (0001ms, 1903ms total)
T1120 083:585 JLINK_IsHalted()  returns FALSE (0001ms, 1903ms total)
T1120 083:686 JLINK_IsHalted()  returns FALSE (0001ms, 1903ms total)
T1120 083:788 JLINK_IsHalted()  returns FALSE (0000ms, 1902ms total)
T1120 083:890 JLINK_IsHalted()  returns FALSE (0001ms, 1903ms total)
T1120 083:991 JLINK_IsHalted()  returns FALSE (0001ms, 1903ms total)
T26E8 084:092 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1903ms total)
T26E8 084:093 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1904ms total)
T26E8 084:094 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 1905ms total)
T26E8 084:095 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 1906ms total)
T26E8 084:096 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 1907ms total)
T1120 084:097 JLINK_IsHalted()  returns FALSE (0001ms, 1908ms total)
T1120 084:199 JLINK_IsHalted()  returns FALSE (0001ms, 1908ms total)
T1120 084:301 JLINK_IsHalted()  returns FALSE (0001ms, 1908ms total)
T1120 084:402 JLINK_IsHalted()  returns FALSE (0000ms, 1907ms total)
T1120 084:503 JLINK_IsHalted()  returns FALSE (0000ms, 1907ms total)
T26E8 084:605 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1908ms total)
T26E8 084:606 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1909ms total)
T26E8 084:608 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 1910ms total)
T26E8 084:609 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 1911ms total)
T26E8 084:610 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 1912ms total)
T1120 084:611 JLINK_IsHalted()  returns FALSE (0001ms, 1913ms total)
T1120 084:712 JLINK_IsHalted()  returns FALSE (0000ms, 1912ms total)
T1120 084:813 JLINK_IsHalted()  returns FALSE (0001ms, 1913ms total)
T1120 084:915 JLINK_IsHalted()  returns FALSE (0001ms, 1913ms total)
T1120 085:017 JLINK_IsHalted()  returns FALSE (0001ms, 1913ms total)
T26E8 085:119 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1913ms total)
T26E8 085:120 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1914ms total)
T26E8 085:124 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 1915ms total)
T26E8 085:125 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0002ms, 1917ms total)
T26E8 085:128 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 1918ms total)
T1120 085:129 JLINK_IsHalted()  returns FALSE (0001ms, 1919ms total)
T1120 085:231 JLINK_IsHalted()  returns FALSE (0001ms, 1919ms total)
T1120 085:332 JLINK_IsHalted()  returns FALSE (0001ms, 1919ms total)
T1120 085:434 JLINK_IsHalted()  returns FALSE (0001ms, 1919ms total)
T1120 085:535 JLINK_IsHalted()  returns FALSE (0000ms, 1918ms total)
T26E8 085:637 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1919ms total)
T26E8 085:638 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1920ms total)
T26E8 085:641 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 1921ms total)
T26E8 085:642 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0000ms, 1921ms total)
T26E8 085:643 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 1922ms total)
T1120 085:644 JLINK_IsHalted()  returns FALSE (0001ms, 1923ms total)
T1120 085:746 JLINK_IsHalted()  returns FALSE (0000ms, 1922ms total)
T1120 085:847 JLINK_IsHalted()  returns FALSE (0001ms, 1923ms total)
T1120 085:949 JLINK_IsHalted()  returns FALSE (0000ms, 1922ms total)
T1120 086:050 JLINK_IsHalted()  returns FALSE (0001ms, 1923ms total)
T26E8 086:151 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1923ms total)
T26E8 086:152 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 1923ms total)
T26E8 086:154 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 1924ms total)
T26E8 086:155 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0000ms, 1924ms total)
T26E8 086:156 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0002ms, 1926ms total)
T1120 086:158 JLINK_IsHalted()  returns FALSE (0001ms, 1927ms total)
T1120 086:260 JLINK_IsHalted()  returns FALSE (0001ms, 1927ms total)
T1120 086:361 JLINK_IsHalted()  returns FALSE (0001ms, 1927ms total)
T1120 086:462 JLINK_IsHalted()  returns FALSE (0001ms, 1927ms total)
T1120 086:563 JLINK_IsHalted()  returns FALSE (0000ms, 1926ms total)
T26E8 086:665 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1927ms total)
T26E8 086:666 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1928ms total)
T26E8 086:667 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 1929ms total)
T26E8 086:668 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 1930ms total)
T26E8 086:669 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 1931ms total)
T1120 086:670 JLINK_IsHalted()  returns FALSE (0001ms, 1932ms total)
T1120 086:772 JLINK_IsHalted()  returns FALSE (0001ms, 1932ms total)
T1120 086:874 JLINK_IsHalted()  returns FALSE (0001ms, 1932ms total)
T1120 086:975 JLINK_IsHalted()  returns FALSE (0001ms, 1932ms total)
T1120 087:076 JLINK_IsHalted()  returns FALSE (0001ms, 1932ms total)
T1120 087:178 JLINK_IsHalted()  returns FALSE (0001ms, 1932ms total)
T26E8 087:279 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1932ms total)
T26E8 087:280 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1933ms total)
T26E8 087:282 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 1934ms total)
T26E8 087:283 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 1935ms total)
T26E8 087:285 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 1936ms total)
T1120 087:286 JLINK_IsHalted()  returns FALSE (0001ms, 1937ms total)
T1120 087:387 JLINK_IsHalted()  returns FALSE (0001ms, 1937ms total)
T1120 087:489 JLINK_IsHalted()  returns FALSE (0001ms, 1937ms total)
T1120 087:591 JLINK_IsHalted()  returns FALSE (0000ms, 1936ms total)
T1120 087:692 JLINK_IsHalted()  returns FALSE (0001ms, 1937ms total)
T26E8 087:793 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1937ms total)
T26E8 087:794 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1938ms total)
T26E8 087:795 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 1939ms total)
T26E8 087:796 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 1940ms total)
T26E8 087:797 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 1941ms total)
T1120 087:798 JLINK_IsHalted()  returns FALSE (0001ms, 1942ms total)
T1120 087:900 JLINK_IsHalted()  returns FALSE (0001ms, 1942ms total)
T1120 088:002 JLINK_IsHalted()  returns FALSE (0001ms, 1942ms total)
T1120 088:104 JLINK_IsHalted()  returns FALSE (0001ms, 1942ms total)
T1120 088:206 JLINK_IsHalted()  returns FALSE (0001ms, 1942ms total)
T26E8 088:307 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1942ms total)
T26E8 088:308 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1943ms total)
T26E8 088:311 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 1944ms total)
T26E8 088:312 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 1945ms total)
T26E8 088:314 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 1946ms total)
T1120 088:315 JLINK_IsHalted()  returns FALSE (0001ms, 1947ms total)
T1120 088:417 JLINK_IsHalted()  returns FALSE (0001ms, 1947ms total)
T1120 088:519 JLINK_IsHalted()  returns FALSE (0001ms, 1947ms total)
T1120 088:621 JLINK_IsHalted()  returns FALSE (0000ms, 1946ms total)
T1120 088:722 JLINK_IsHalted()  returns FALSE (0001ms, 1947ms total)
T26E8 088:824 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1947ms total)
T26E8 088:825 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1948ms total)
T26E8 088:828 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 1949ms total)
T26E8 088:829 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 1950ms total)
T26E8 088:831 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 1951ms total)
T1120 088:832 JLINK_IsHalted()  returns FALSE (0000ms, 1951ms total)
T1120 088:933 JLINK_IsHalted()  returns FALSE (0001ms, 1952ms total)
T1120 089:035 JLINK_IsHalted()  returns FALSE (0001ms, 1952ms total)
T1120 089:136 JLINK_IsHalted()  returns FALSE (0000ms, 1951ms total)
T1120 089:237 JLINK_IsHalted()  returns FALSE (0000ms, 1951ms total)
T26E8 089:339 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1952ms total)
T26E8 089:340 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1953ms total)
T26E8 089:343 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 1954ms total)
T26E8 089:344 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 1955ms total)
T26E8 089:345 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 1956ms total)
T1120 089:346 JLINK_IsHalted()  returns FALSE (0001ms, 1957ms total)
T1120 089:448 JLINK_IsHalted()  returns FALSE (0001ms, 1957ms total)
T1120 089:550 JLINK_IsHalted()  returns FALSE (0001ms, 1957ms total)
T1120 089:652 JLINK_IsHalted()  returns FALSE (0000ms, 1956ms total)
T1120 089:753 JLINK_IsHalted()  returns FALSE (0001ms, 1957ms total)
T26E8 089:855 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1957ms total)
T26E8 089:856 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1958ms total)
T26E8 089:858 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0000ms, 1958ms total)
T26E8 089:858 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0000ms, 1958ms total)
T26E8 089:859 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 1959ms total)
T1120 089:860 JLINK_IsHalted()  returns FALSE (0001ms, 1960ms total)
T1120 089:961 JLINK_IsHalted()  returns FALSE (0001ms, 1960ms total)
T1120 090:063 JLINK_IsHalted()  returns FALSE (0001ms, 1960ms total)
T1120 090:164 JLINK_IsHalted()  returns FALSE (0001ms, 1960ms total)
T1120 090:265 JLINK_IsHalted()  returns FALSE (0001ms, 1960ms total)
T1120 090:367 JLINK_IsHalted()  returns FALSE (0000ms, 1959ms total)
T26E8 090:468 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1960ms total)
T26E8 090:469 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1961ms total)
T26E8 090:471 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0002ms, 1963ms total)
T26E8 090:473 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0000ms, 1963ms total)
T26E8 090:474 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 1964ms total)
T1120 090:476 JLINK_IsHalted()  returns FALSE (0000ms, 1964ms total)
T1120 090:577 JLINK_IsHalted()  returns FALSE (0000ms, 1964ms total)
T1120 090:678 JLINK_IsHalted()  returns FALSE (0001ms, 1965ms total)
T1120 090:780 JLINK_IsHalted()  returns FALSE (0001ms, 1965ms total)
T1120 090:881 JLINK_IsHalted()  returns FALSE (0000ms, 1964ms total)
T26E8 090:983 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1965ms total)
T26E8 090:984 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1966ms total)
T26E8 090:987 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 1967ms total)
T26E8 090:988 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 1968ms total)
T26E8 090:990 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 1969ms total)
T1120 090:992 JLINK_IsHalted()  returns FALSE (0001ms, 1970ms total)
T1120 091:094 JLINK_IsHalted()  returns FALSE (0001ms, 1970ms total)
T1120 091:196 JLINK_IsHalted()  returns FALSE (0001ms, 1970ms total)
T1120 091:297 JLINK_IsHalted()  returns FALSE (0001ms, 1970ms total)
T1120 091:399 JLINK_IsHalted()  returns FALSE (0001ms, 1970ms total)
T26E8 091:500 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1970ms total)
T26E8 091:501 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0002ms, 1972ms total)
T26E8 091:505 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 1973ms total)
T26E8 091:506 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 1974ms total)
T26E8 091:508 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 1975ms total)
T1120 091:509 JLINK_IsHalted()  returns FALSE (0001ms, 1976ms total)
T1120 091:611 JLINK_IsHalted()  returns FALSE (0001ms, 1976ms total)
T1120 091:712 JLINK_IsHalted()  returns FALSE (0001ms, 1976ms total)
T1120 091:814 JLINK_IsHalted()  returns FALSE (0000ms, 1975ms total)
T1120 091:916 JLINK_IsHalted()  returns FALSE (0000ms, 1975ms total)
T26E8 092:017 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 1975ms total)
T26E8 092:017 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1976ms total)
T26E8 092:019 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 1977ms total)
T26E8 092:020 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 1978ms total)
T26E8 092:021 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 1979ms total)
T1120 092:022 JLINK_IsHalted()  returns FALSE (0001ms, 1980ms total)
T1120 092:124 JLINK_IsHalted()  returns FALSE (0001ms, 1980ms total)
T1120 092:226 JLINK_IsHalted()  returns FALSE (0001ms, 1980ms total)
T1120 092:327 JLINK_IsHalted()  returns FALSE (0001ms, 1980ms total)
T1120 092:428 JLINK_IsHalted()  returns FALSE (0001ms, 1980ms total)
T26E8 092:530 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 1979ms total)
T26E8 092:530 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1980ms total)
T26E8 092:532 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 1981ms total)
T26E8 092:533 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 1982ms total)
T26E8 092:534 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 1983ms total)
T1120 092:535 JLINK_IsHalted()  returns FALSE (0001ms, 1984ms total)
T1120 092:637 JLINK_IsHalted()  returns FALSE (0001ms, 1984ms total)
T1120 092:738 JLINK_IsHalted()  returns FALSE (0001ms, 1984ms total)
T1120 092:839 JLINK_IsHalted()  returns FALSE (0001ms, 1984ms total)
T1120 092:941 JLINK_IsHalted()  returns FALSE (0001ms, 1984ms total)
T26E8 093:043 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1984ms total)
T26E8 093:044 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1985ms total)
T26E8 093:047 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 1986ms total)
T26E8 093:048 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 1987ms total)
T26E8 093:050 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 1988ms total)
T1120 093:051 JLINK_IsHalted()  returns FALSE (0000ms, 1988ms total)
T1120 093:152 JLINK_IsHalted()  returns FALSE (0001ms, 1989ms total)
T1120 093:253 JLINK_IsHalted()  returns FALSE (0001ms, 1989ms total)
T1120 093:355 JLINK_IsHalted()  returns FALSE (0001ms, 1989ms total)
T1120 093:456 JLINK_IsHalted()  returns FALSE (0001ms, 1989ms total)
T26E8 093:557 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1989ms total)
T26E8 093:558 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1990ms total)
T26E8 093:560 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 1991ms total)
T26E8 093:561 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 1992ms total)
T26E8 093:562 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 1993ms total)
T1120 093:563 JLINK_IsHalted()  returns FALSE (0001ms, 1994ms total)
T1120 093:665 JLINK_IsHalted()  returns FALSE (0001ms, 1994ms total)
T1120 093:766 JLINK_IsHalted()  returns FALSE (0000ms, 1993ms total)
T1120 093:867 JLINK_IsHalted()  returns FALSE (0000ms, 1993ms total)
T1120 093:968 JLINK_IsHalted()  returns FALSE (0001ms, 1994ms total)
T1120 094:070 JLINK_IsHalted()  returns FALSE (0001ms, 1994ms total)
T26E8 094:171 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1994ms total)
T26E8 094:172 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 1994ms total)
T26E8 094:174 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 1995ms total)
T26E8 094:175 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0000ms, 1995ms total)
T26E8 094:176 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 1996ms total)
T1120 094:177 JLINK_IsHalted()  returns FALSE (0002ms, 1998ms total)
T1120 094:279 JLINK_IsHalted()  returns FALSE (0001ms, 1997ms total)
T1120 094:381 JLINK_IsHalted()  returns FALSE (0001ms, 1997ms total)
T1120 094:483 JLINK_IsHalted()  returns FALSE (0001ms, 1997ms total)
T1120 094:584 JLINK_IsHalted()  returns FALSE (0001ms, 1997ms total)
T26E8 094:685 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1997ms total)
T26E8 094:686 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 1998ms total)
T26E8 094:689 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0002ms, 2000ms total)
T26E8 094:691 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0000ms, 2000ms total)
T26E8 094:692 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2001ms total)
T1120 094:693 JLINK_IsHalted()  returns FALSE (0001ms, 2002ms total)
T1120 094:795 JLINK_IsHalted()  returns FALSE (0001ms, 2002ms total)
T1120 094:896 JLINK_IsHalted()  returns FALSE (0001ms, 2002ms total)
T1120 094:997 JLINK_IsHalted()  returns FALSE (0001ms, 2002ms total)
T1120 095:098 JLINK_IsHalted()  returns FALSE (0002ms, 2003ms total)
T26E8 095:201 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2002ms total)
T26E8 095:202 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2003ms total)
T26E8 095:205 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2004ms total)
T26E8 095:206 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0000ms, 2004ms total)
T26E8 095:208 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2005ms total)
T1120 095:209 JLINK_IsHalted()  returns FALSE (0001ms, 2006ms total)
T1120 095:310 JLINK_IsHalted()  returns FALSE (0001ms, 2006ms total)
T1120 095:412 JLINK_IsHalted()  returns FALSE (0001ms, 2006ms total)
T1120 095:514 JLINK_IsHalted()  returns FALSE (0001ms, 2006ms total)
T1120 095:616 JLINK_IsHalted()  returns FALSE (0001ms, 2006ms total)
T26E8 095:717 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2006ms total)
T26E8 095:718 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2007ms total)
T26E8 095:720 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2008ms total)
T26E8 095:721 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2009ms total)
T26E8 095:722 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2010ms total)
T1120 095:723 JLINK_IsHalted()  returns FALSE (0002ms, 2012ms total)
T1120 095:825 JLINK_IsHalted()  returns FALSE (0000ms, 2010ms total)
T1120 095:927 JLINK_IsHalted()  returns FALSE (0001ms, 2011ms total)
T1120 096:028 JLINK_IsHalted()  returns FALSE (0001ms, 2011ms total)
T1120 096:130 JLINK_IsHalted()  returns FALSE (0001ms, 2011ms total)
T26E8 096:231 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2011ms total)
T26E8 096:232 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2012ms total)
T26E8 096:236 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2013ms total)
T26E8 096:237 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2014ms total)
T26E8 096:240 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2015ms total)
T1120 096:241 JLINK_IsHalted()  returns FALSE (0001ms, 2016ms total)
T1120 096:343 JLINK_IsHalted()  returns FALSE (0000ms, 2015ms total)
T1120 096:444 JLINK_IsHalted()  returns FALSE (0000ms, 2015ms total)
T1120 096:546 JLINK_IsHalted()  returns FALSE (0001ms, 2016ms total)
T1120 096:647 JLINK_IsHalted()  returns FALSE (0000ms, 2015ms total)
T26E8 096:748 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2016ms total)
T26E8 096:749 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 2016ms total)
T26E8 096:751 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0002ms, 2018ms total)
T26E8 096:753 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0000ms, 2018ms total)
T26E8 096:753 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2019ms total)
T1120 096:754 JLINK_IsHalted()  returns FALSE (0001ms, 2020ms total)
T1120 096:856 JLINK_IsHalted()  returns FALSE (0001ms, 2020ms total)
T1120 096:957 JLINK_IsHalted()  returns FALSE (0000ms, 2019ms total)
T1120 097:058 JLINK_IsHalted()  returns FALSE (0001ms, 2020ms total)
T1120 097:160 JLINK_IsHalted()  returns FALSE (0001ms, 2020ms total)
T26E8 097:262 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2020ms total)
T26E8 097:263 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 2020ms total)
T26E8 097:265 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2021ms total)
T26E8 097:266 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2022ms total)
T26E8 097:267 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0002ms, 2024ms total)
T1120 097:269 JLINK_IsHalted()  returns FALSE (0001ms, 2025ms total)
T1120 097:370 JLINK_IsHalted()  returns FALSE (0000ms, 2024ms total)
T1120 097:471 JLINK_IsHalted()  returns FALSE (0001ms, 2025ms total)
T1120 097:572 JLINK_IsHalted()  returns FALSE (0001ms, 2025ms total)
T1120 097:673 JLINK_IsHalted()  returns FALSE (0001ms, 2025ms total)
T26E8 097:775 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2025ms total)
T26E8 097:776 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2026ms total)
T26E8 097:777 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0002ms, 2028ms total)
T26E8 097:779 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0000ms, 2028ms total)
T26E8 097:780 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2029ms total)
T1120 097:781 JLINK_IsHalted()  returns FALSE (0001ms, 2030ms total)
T1120 097:883 JLINK_IsHalted()  returns FALSE (0001ms, 2030ms total)
T1120 097:984 JLINK_IsHalted()  returns FALSE (0001ms, 2030ms total)
T1120 098:086 JLINK_IsHalted()  returns FALSE (0001ms, 2030ms total)
T1120 098:187 JLINK_IsHalted()  returns FALSE (0001ms, 2030ms total)
T1120 098:289 JLINK_IsHalted()  returns FALSE (0000ms, 2029ms total)
T26E8 098:390 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2030ms total)
T26E8 098:391 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0002ms, 2032ms total)
T26E8 098:395 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2033ms total)
T26E8 098:396 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2034ms total)
T26E8 098:399 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0000ms, 2034ms total)
T1120 098:400 JLINK_IsHalted()  returns FALSE (0000ms, 2034ms total)
T1120 098:501 JLINK_IsHalted()  returns FALSE (0001ms, 2035ms total)
T1120 098:603 JLINK_IsHalted()  returns FALSE (0000ms, 2034ms total)
T1120 098:704 JLINK_IsHalted()  returns FALSE (0000ms, 2034ms total)
T1120 098:805 JLINK_IsHalted()  returns FALSE (0001ms, 2035ms total)
T26E8 098:906 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2035ms total)
T26E8 098:907 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2036ms total)
T26E8 098:913 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2037ms total)
T26E8 098:914 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0000ms, 2037ms total)
T26E8 098:916 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2038ms total)
T1120 098:917 JLINK_IsHalted()  returns FALSE (0001ms, 2039ms total)
T1120 099:018 JLINK_IsHalted()  returns FALSE (0001ms, 2039ms total)
T1120 099:119 JLINK_IsHalted()  returns FALSE (0001ms, 2039ms total)
T1120 099:221 JLINK_IsHalted()  returns FALSE (0001ms, 2039ms total)
T1120 099:323 JLINK_IsHalted()  returns FALSE (0000ms, 2038ms total)
T26E8 099:424 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2039ms total)
T26E8 099:425 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2040ms total)
T26E8 099:428 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2041ms total)
T26E8 099:429 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0000ms, 2041ms total)
T26E8 099:430 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2042ms total)
T1120 099:431 JLINK_IsHalted()  returns FALSE (0000ms, 2042ms total)
T1120 099:532 JLINK_IsHalted()  returns FALSE (0000ms, 2042ms total)
T1120 099:634 JLINK_IsHalted()  returns FALSE (0001ms, 2043ms total)
T1120 099:735 JLINK_IsHalted()  returns FALSE (0001ms, 2043ms total)
T1120 099:836 JLINK_IsHalted()  returns FALSE (0001ms, 2043ms total)
T26E8 099:937 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2043ms total)
T26E8 099:938 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2044ms total)
T26E8 099:939 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2045ms total)
T26E8 099:940 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2046ms total)
T26E8 099:941 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2047ms total)
T1120 099:942 JLINK_IsHalted()  returns FALSE (0001ms, 2048ms total)
T1120 100:044 JLINK_IsHalted()  returns FALSE (0001ms, 2048ms total)
T1120 100:146 JLINK_IsHalted()  returns FALSE (0001ms, 2048ms total)
T1120 100:248 JLINK_IsHalted()  returns FALSE (0001ms, 2048ms total)
T1120 100:349 JLINK_IsHalted()  returns FALSE (0001ms, 2048ms total)
T26E8 100:451 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 2047ms total)
T26E8 100:451 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2048ms total)
T26E8 100:454 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0000ms, 2048ms total)
T26E8 100:454 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2049ms total)
T26E8 100:456 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2050ms total)
T1120 100:457 JLINK_IsHalted()  returns FALSE (0001ms, 2051ms total)
T1120 100:559 JLINK_IsHalted()  returns FALSE (0000ms, 2050ms total)
T1120 100:660 JLINK_IsHalted()  returns FALSE (0001ms, 2051ms total)
T1120 100:762 JLINK_IsHalted()  returns FALSE (0001ms, 2051ms total)
T1120 100:863 JLINK_IsHalted()  returns FALSE (0000ms, 2050ms total)
T26E8 100:966 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2051ms total)
T26E8 100:967 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 2051ms total)
T26E8 100:969 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2052ms total)
T26E8 100:970 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2053ms total)
T26E8 100:972 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0000ms, 2053ms total)
T1120 100:972 JLINK_IsHalted()  returns FALSE (0001ms, 2054ms total)
T1120 101:074 JLINK_IsHalted()  returns FALSE (0001ms, 2054ms total)
T1120 101:175 JLINK_IsHalted()  returns FALSE (0000ms, 2053ms total)
T1120 101:277 JLINK_IsHalted()  returns FALSE (0001ms, 2054ms total)
T1120 101:378 JLINK_IsHalted()  returns FALSE (0001ms, 2054ms total)
T26E8 101:480 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 2053ms total)
T26E8 101:480 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2054ms total)
T26E8 101:482 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0002ms, 2056ms total)
T26E8 101:484 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2057ms total)
T26E8 101:485 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2058ms total)
T1120 101:486 JLINK_IsHalted()  returns FALSE (0001ms, 2059ms total)
T1120 101:587 JLINK_IsHalted()  returns FALSE (0001ms, 2059ms total)
T1120 101:688 JLINK_IsHalted()  returns FALSE (0001ms, 2059ms total)
T1120 101:790 JLINK_IsHalted()  returns FALSE (0001ms, 2059ms total)
T1120 101:892 JLINK_IsHalted()  returns FALSE (0001ms, 2059ms total)
T26E8 101:994 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2059ms total)
T26E8 101:995 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2060ms total)
T26E8 101:997 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0000ms, 2060ms total)
T26E8 101:997 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2061ms total)
T26E8 101:999 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2062ms total)
T1120 102:000 JLINK_IsHalted()  returns FALSE (0000ms, 2062ms total)
T1120 102:102 JLINK_IsHalted()  returns FALSE (0001ms, 2063ms total)
T1120 102:204 JLINK_IsHalted()  returns FALSE (0001ms, 2063ms total)
T1120 102:306 JLINK_IsHalted()  returns FALSE (0001ms, 2063ms total)
T1120 102:407 JLINK_IsHalted()  returns FALSE (0000ms, 2062ms total)
T26E8 102:508 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2063ms total)
T26E8 102:509 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2064ms total)
T26E8 102:512 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0002ms, 2066ms total)
T26E8 102:514 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0000ms, 2066ms total)
T26E8 102:516 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2067ms total)
T1120 102:517 JLINK_IsHalted()  returns FALSE (0001ms, 2068ms total)
T1120 102:619 JLINK_IsHalted()  returns FALSE (0001ms, 2068ms total)
T1120 102:720 JLINK_IsHalted()  returns FALSE (0001ms, 2068ms total)
T1120 102:821 JLINK_IsHalted()  returns FALSE (0001ms, 2068ms total)
T1120 102:923 JLINK_IsHalted()  returns FALSE (0000ms, 2067ms total)
T26E8 103:024 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2068ms total)
T26E8 103:025 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2069ms total)
T26E8 103:027 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2070ms total)
T26E8 103:028 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0000ms, 2070ms total)
T26E8 103:029 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2071ms total)
T1120 103:030 JLINK_IsHalted()  returns FALSE (0001ms, 2072ms total)
T1120 103:132 JLINK_IsHalted()  returns FALSE (0001ms, 2072ms total)
T1120 103:233 JLINK_IsHalted()  returns FALSE (0001ms, 2072ms total)
T1120 103:335 JLINK_IsHalted()  returns FALSE (0001ms, 2072ms total)
T1120 103:437 JLINK_IsHalted()  returns FALSE (0001ms, 2072ms total)
T1120 103:538 JLINK_IsHalted()  returns FALSE (0001ms, 2072ms total)
T26E8 103:639 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2072ms total)
T26E8 103:640 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0002ms, 2074ms total)
T26E8 103:643 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2075ms total)
T26E8 103:644 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2076ms total)
T26E8 103:646 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2077ms total)
T1120 103:647 JLINK_IsHalted()  returns FALSE (0000ms, 2077ms total)
T1120 103:748 JLINK_IsHalted()  returns FALSE (0001ms, 2078ms total)
T1120 103:849 JLINK_IsHalted()  returns FALSE (0001ms, 2078ms total)
T1120 103:951 JLINK_IsHalted()  returns FALSE (0001ms, 2078ms total)
T1120 104:053 JLINK_IsHalted()  returns FALSE (0001ms, 2078ms total)
T26E8 104:155 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2078ms total)
T26E8 104:156 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2079ms total)
T26E8 104:158 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2080ms total)
T26E8 104:159 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2081ms total)
T26E8 104:162 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0000ms, 2081ms total)
T1120 104:163 JLINK_IsHalted()  returns FALSE (0001ms, 2082ms total)
T1120 104:265 JLINK_IsHalted()  returns FALSE (0001ms, 2082ms total)
T1120 104:366 JLINK_IsHalted()  returns FALSE (0001ms, 2082ms total)
T1120 104:468 JLINK_IsHalted()  returns FALSE (0001ms, 2082ms total)
T1120 104:569 JLINK_IsHalted()  returns FALSE (0001ms, 2082ms total)
T26E8 104:670 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2082ms total)
T26E8 104:671 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2083ms total)
T26E8 104:673 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2084ms total)
T26E8 104:674 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2085ms total)
T26E8 104:675 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2086ms total)
T1120 104:676 JLINK_IsHalted()  returns FALSE (0001ms, 2087ms total)
T1120 104:778 JLINK_IsHalted()  returns FALSE (0001ms, 2087ms total)
T1120 104:879 JLINK_IsHalted()  returns FALSE (0001ms, 2087ms total)
T1120 104:980 JLINK_IsHalted()  returns FALSE (0001ms, 2087ms total)
T1120 105:082 JLINK_IsHalted()  returns FALSE (0000ms, 2086ms total)
T26E8 105:183 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2087ms total)
T26E8 105:184 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 2087ms total)
T26E8 105:188 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2088ms total)
T26E8 105:189 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2089ms total)
T26E8 105:191 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0000ms, 2089ms total)
T1120 105:192 JLINK_IsHalted()  returns FALSE (0000ms, 2089ms total)
T1120 105:294 JLINK_IsHalted()  returns FALSE (0001ms, 2090ms total)
T1120 105:395 JLINK_IsHalted()  returns FALSE (0001ms, 2090ms total)
T1120 105:497 JLINK_IsHalted()  returns FALSE (0001ms, 2090ms total)
T1120 105:599 JLINK_IsHalted()  returns FALSE (0000ms, 2089ms total)
T26E8 105:700 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2090ms total)
T26E8 105:701 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2091ms total)
T26E8 105:702 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0002ms, 2093ms total)
T26E8 105:704 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0000ms, 2093ms total)
T26E8 105:705 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2094ms total)
T1120 105:706 JLINK_IsHalted()  returns FALSE (0001ms, 2095ms total)
T1120 105:808 JLINK_IsHalted()  returns FALSE (0001ms, 2095ms total)
T1120 105:909 JLINK_IsHalted()  returns FALSE (0000ms, 2094ms total)
T1120 106:010 JLINK_IsHalted()  returns FALSE (0000ms, 2094ms total)
T1120 106:111 JLINK_IsHalted()  returns FALSE (0000ms, 2094ms total)
T26E8 106:213 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2095ms total)
T26E8 106:214 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2096ms total)
T26E8 106:215 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2097ms total)
T26E8 106:216 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2098ms total)
T26E8 106:218 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0000ms, 2098ms total)
T1120 106:219 JLINK_IsHalted()  returns FALSE (0000ms, 2098ms total)
T1120 106:320 JLINK_IsHalted()  returns FALSE (0001ms, 2099ms total)
T1120 106:422 JLINK_IsHalted()  returns FALSE (0001ms, 2099ms total)
T1120 106:524 JLINK_IsHalted()  returns FALSE (0001ms, 2099ms total)
T1120 106:625 JLINK_IsHalted()  returns FALSE (0000ms, 2098ms total)
T26E8 106:727 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2099ms total)
T26E8 106:728 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2100ms total)
T26E8 106:733 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2101ms total)
T26E8 106:734 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2102ms total)
T26E8 106:736 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2103ms total)
T1120 106:737 JLINK_IsHalted()  returns FALSE (0000ms, 2103ms total)
T1120 106:838 JLINK_IsHalted()  returns FALSE (0001ms, 2104ms total)
T1120 106:940 JLINK_IsHalted()  returns FALSE (0001ms, 2104ms total)
T1120 107:042 JLINK_IsHalted()  returns FALSE (0001ms, 2104ms total)
T1120 107:143 JLINK_IsHalted()  returns FALSE (0000ms, 2103ms total)
T26E8 107:244 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2104ms total)
T26E8 107:245 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2105ms total)
T26E8 107:247 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2106ms total)
T26E8 107:248 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0000ms, 2106ms total)
T26E8 107:249 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2107ms total)
T1120 107:250 JLINK_IsHalted()  returns FALSE (0002ms, 2109ms total)
T1120 107:352 JLINK_IsHalted()  returns FALSE (0001ms, 2108ms total)
T1120 107:453 JLINK_IsHalted()  returns FALSE (0000ms, 2107ms total)
T1120 107:555 JLINK_IsHalted()  returns FALSE (0001ms, 2108ms total)
T1120 107:657 JLINK_IsHalted()  returns FALSE (0001ms, 2108ms total)
T26E8 107:759 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 2107ms total)
T26E8 107:759 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2108ms total)
T26E8 107:762 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0000ms, 2108ms total)
T26E8 107:762 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2109ms total)
T26E8 107:764 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0002ms, 2111ms total)
T1120 107:766 JLINK_IsHalted()  returns FALSE (0001ms, 2112ms total)
T1120 107:868 JLINK_IsHalted()  returns FALSE (0001ms, 2112ms total)
T1120 107:969 JLINK_IsHalted()  returns FALSE (0001ms, 2112ms total)
T1120 108:070 JLINK_IsHalted()  returns FALSE (0000ms, 2111ms total)
T1120 108:172 JLINK_IsHalted()  returns FALSE (0001ms, 2112ms total)
T26E8 108:274 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2112ms total)
T26E8 108:275 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 2112ms total)
T26E8 108:276 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2113ms total)
T26E8 108:277 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2114ms total)
T26E8 108:279 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0000ms, 2114ms total)
T1120 108:279 JLINK_IsHalted()  returns FALSE (0000ms, 2114ms total)
T1120 108:380 JLINK_IsHalted()  returns FALSE (0001ms, 2115ms total)
T1120 108:482 JLINK_IsHalted()  returns FALSE (0000ms, 2114ms total)
T1120 108:583 JLINK_IsHalted()  returns FALSE (0001ms, 2115ms total)
T1120 108:684 JLINK_IsHalted()  returns FALSE (0001ms, 2115ms total)
T1120 108:786 JLINK_IsHalted()  returns FALSE (0000ms, 2114ms total)
T26E8 108:887 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2115ms total)
T26E8 108:888 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2116ms total)
T26E8 108:890 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2117ms total)
T26E8 108:891 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2118ms total)
T26E8 108:893 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2119ms total)
T1120 108:894 JLINK_IsHalted()  returns FALSE (0001ms, 2120ms total)
T1120 108:996 JLINK_IsHalted()  returns FALSE (0000ms, 2119ms total)
T1120 109:097 JLINK_IsHalted()  returns FALSE (0001ms, 2120ms total)
T1120 109:198 JLINK_IsHalted()  returns FALSE (0001ms, 2120ms total)
T1120 109:300 JLINK_IsHalted()  returns FALSE (0000ms, 2119ms total)
T26E8 109:401 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2120ms total)
T26E8 109:402 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 2120ms total)
T26E8 109:404 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0000ms, 2120ms total)
T26E8 109:404 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2121ms total)
T26E8 109:406 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2122ms total)
T1120 109:407 JLINK_IsHalted()  returns FALSE (0001ms, 2123ms total)
T1120 109:509 JLINK_IsHalted()  returns FALSE (0000ms, 2122ms total)
T1120 109:610 JLINK_IsHalted()  returns FALSE (0001ms, 2123ms total)
T1120 109:712 JLINK_IsHalted()  returns FALSE (0001ms, 2123ms total)
T1120 109:813 JLINK_IsHalted()  returns FALSE (0001ms, 2123ms total)
T26E8 109:915 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2123ms total)
T26E8 109:916 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 2123ms total)
T26E8 109:918 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0000ms, 2123ms total)
T26E8 109:918 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2124ms total)
T26E8 109:920 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2125ms total)
T1120 109:921 JLINK_IsHalted()  returns FALSE (0001ms, 2126ms total)
T1120 110:023 JLINK_IsHalted()  returns FALSE (0001ms, 2126ms total)
T1120 110:124 JLINK_IsHalted()  returns FALSE (0001ms, 2126ms total)
T1120 110:226 JLINK_IsHalted()  returns FALSE (0000ms, 2125ms total)
T1120 110:327 JLINK_IsHalted()  returns FALSE (0001ms, 2126ms total)
T1120 110:429 JLINK_IsHalted()  returns FALSE (0001ms, 2126ms total)
T26E8 110:531 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2126ms total)
T26E8 110:532 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2127ms total)
T26E8 110:536 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0000ms, 2127ms total)
T26E8 110:536 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0002ms, 2129ms total)
T26E8 110:539 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2130ms total)
T1120 110:540 JLINK_IsHalted()  returns FALSE (0000ms, 2130ms total)
T1120 110:641 JLINK_IsHalted()  returns FALSE (0001ms, 2131ms total)
T1120 110:743 JLINK_IsHalted()  returns FALSE (0001ms, 2131ms total)
T1120 110:845 JLINK_IsHalted()  returns FALSE (0001ms, 2131ms total)
T1120 110:946 JLINK_IsHalted()  returns FALSE (0001ms, 2131ms total)
T26E8 111:048 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2131ms total)
T26E8 111:049 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2132ms total)
T26E8 111:051 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0002ms, 2134ms total)
T26E8 111:053 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2135ms total)
T26E8 111:055 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2136ms total)
T1120 111:056 JLINK_IsHalted()  returns FALSE (0001ms, 2137ms total)
T1120 111:157 JLINK_IsHalted()  returns FALSE (0000ms, 2136ms total)
T1120 111:259 JLINK_IsHalted()  returns FALSE (0001ms, 2137ms total)
T1120 111:360 JLINK_IsHalted()  returns FALSE (0000ms, 2136ms total)
T1120 111:461 JLINK_IsHalted()  returns FALSE (0001ms, 2137ms total)
T26E8 111:563 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 2136ms total)
T26E8 111:564 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2137ms total)
T26E8 111:565 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2138ms total)
T26E8 111:566 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2139ms total)
T26E8 111:567 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2140ms total)
T1120 111:568 JLINK_IsHalted()  returns FALSE (0001ms, 2141ms total)
T1120 111:670 JLINK_IsHalted()  returns FALSE (0001ms, 2141ms total)
T1120 111:772 JLINK_IsHalted()  returns FALSE (0000ms, 2140ms total)
T1120 111:873 JLINK_IsHalted()  returns FALSE (0001ms, 2141ms total)
T1120 111:975 JLINK_IsHalted()  returns FALSE (0001ms, 2141ms total)
T26E8 112:076 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2141ms total)
T26E8 112:077 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 2141ms total)
T26E8 112:078 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2142ms total)
T26E8 112:079 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2143ms total)
T26E8 112:080 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2144ms total)
T1120 112:081 JLINK_IsHalted()  returns FALSE (0001ms, 2145ms total)
T1120 112:182 JLINK_IsHalted()  returns FALSE (0001ms, 2145ms total)
T1120 112:284 JLINK_IsHalted()  returns FALSE (0001ms, 2145ms total)
T1120 112:386 JLINK_IsHalted()  returns FALSE (0000ms, 2144ms total)
T1120 112:487 JLINK_IsHalted()  returns FALSE (0000ms, 2144ms total)
T26E8 112:588 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 2144ms total)
T26E8 112:588 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2145ms total)
T26E8 112:590 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2146ms total)
T26E8 112:591 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0000ms, 2146ms total)
T26E8 112:592 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2147ms total)
T1120 112:593 JLINK_IsHalted()  returns FALSE (0000ms, 2147ms total)
T1120 112:695 JLINK_IsHalted()  returns FALSE (0000ms, 2147ms total)
T1120 112:796 JLINK_IsHalted()  returns FALSE (0000ms, 2147ms total)
T1120 112:897 JLINK_IsHalted()  returns FALSE (0000ms, 2147ms total)
T1120 112:998 JLINK_IsHalted()  returns FALSE (0000ms, 2147ms total)
T1120 113:099 JLINK_IsHalted()  returns FALSE (0001ms, 2148ms total)
T26E8 113:200 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2148ms total)
T26E8 113:201 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2149ms total)
T26E8 113:205 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2150ms total)
T26E8 113:206 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0000ms, 2150ms total)
T26E8 113:208 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0002ms, 2152ms total)
T1120 113:211 JLINK_IsHalted()  returns FALSE (0000ms, 2152ms total)
T1120 113:311 JLINK_IsHalted()  returns FALSE (0000ms, 2152ms total)
T1120 113:412 JLINK_IsHalted()  returns FALSE (0000ms, 2152ms total)
T1120 113:513 JLINK_IsHalted()  returns FALSE (0001ms, 2153ms total)
T1120 113:614 JLINK_IsHalted()  returns FALSE (0001ms, 2153ms total)
T26E8 113:716 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2153ms total)
T26E8 113:717 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2154ms total)
T26E8 113:720 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2155ms total)
T26E8 113:721 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2156ms total)
T26E8 113:723 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2157ms total)
T1120 113:724 JLINK_IsHalted()  returns FALSE (0001ms, 2158ms total)
T1120 113:826 JLINK_IsHalted()  returns FALSE (0001ms, 2158ms total)
T1120 113:927 JLINK_IsHalted()  returns FALSE (0001ms, 2158ms total)
T1120 114:028 JLINK_IsHalted()  returns FALSE (0001ms, 2158ms total)
T1120 114:130 JLINK_IsHalted()  returns FALSE (0000ms, 2157ms total)
T26E8 114:231 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2158ms total)
T26E8 114:232 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2159ms total)
T26E8 114:235 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0000ms, 2159ms total)
T26E8 114:236 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0000ms, 2160ms total)
T26E8 114:237 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2161ms total)
T1120 114:238 JLINK_IsHalted()  returns FALSE (0001ms, 2162ms total)
T1120 114:340 JLINK_IsHalted()  returns FALSE (0000ms, 2161ms total)
T1120 114:441 JLINK_IsHalted()  returns FALSE (0001ms, 2162ms total)
T1120 114:543 JLINK_IsHalted()  returns FALSE (0000ms, 2161ms total)
T1120 114:644 JLINK_IsHalted()  returns FALSE (0000ms, 2161ms total)
T26E8 114:745 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2162ms total)
T26E8 114:746 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 2162ms total)
T26E8 114:748 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0000ms, 2162ms total)
T26E8 114:748 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2163ms total)
T26E8 114:750 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2164ms total)
T1120 114:751 JLINK_IsHalted()  returns FALSE (0001ms, 2165ms total)
T1120 114:853 JLINK_IsHalted()  returns FALSE (0001ms, 2165ms total)
T1120 114:954 JLINK_IsHalted()  returns FALSE (0001ms, 2165ms total)
T1120 115:055 JLINK_IsHalted()  returns FALSE (0001ms, 2165ms total)
T1120 115:157 JLINK_IsHalted()  returns FALSE (0000ms, 2164ms total)
T26E8 115:258 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2165ms total)
T26E8 115:259 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2166ms total)
T26E8 115:261 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0000ms, 2166ms total)
T26E8 115:261 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2167ms total)
T26E8 115:262 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2168ms total)
T1120 115:263 JLINK_IsHalted()  returns FALSE (0001ms, 2169ms total)
T1120 115:365 JLINK_IsHalted()  returns FALSE (0001ms, 2169ms total)
T1120 115:467 JLINK_IsHalted()  returns FALSE (0001ms, 2169ms total)
T1120 115:569 JLINK_IsHalted()  returns FALSE (0001ms, 2169ms total)
T1120 115:671 JLINK_IsHalted()  returns FALSE (0001ms, 2169ms total)
T1120 115:772 JLINK_IsHalted()  returns FALSE (0000ms, 2168ms total)
T26E8 115:873 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0002ms, 2170ms total)
T26E8 115:875 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 2170ms total)
T26E8 115:877 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2171ms total)
T26E8 115:878 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2172ms total)
T26E8 115:881 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2173ms total)
T1120 115:882 JLINK_IsHalted()  returns FALSE (0001ms, 2174ms total)
T1120 115:983 JLINK_IsHalted()  returns FALSE (0001ms, 2174ms total)
T1120 116:085 JLINK_IsHalted()  returns FALSE (0001ms, 2174ms total)
T1120 116:187 JLINK_IsHalted()  returns FALSE (0000ms, 2173ms total)
T1120 116:288 JLINK_IsHalted()  returns FALSE (0000ms, 2173ms total)
T26E8 116:389 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2174ms total)
T26E8 116:390 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2175ms total)
T26E8 116:393 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2176ms total)
T26E8 116:394 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2177ms total)
T26E8 116:395 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0002ms, 2179ms total)
T1120 116:397 JLINK_IsHalted()  returns FALSE (0000ms, 2179ms total)
T1120 116:499 JLINK_IsHalted()  returns FALSE (0000ms, 2179ms total)
T1120 116:600 JLINK_IsHalted()  returns FALSE (0000ms, 2179ms total)
T1120 116:701 JLINK_IsHalted()  returns FALSE (0000ms, 2179ms total)
T1120 116:802 JLINK_IsHalted()  returns FALSE (0000ms, 2179ms total)
T26E8 116:903 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2180ms total)
T26E8 116:904 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2181ms total)
T26E8 116:907 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2182ms total)
T26E8 116:908 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2183ms total)
T26E8 116:912 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2184ms total)
T1120 116:913 JLINK_IsHalted()  returns FALSE (0000ms, 2184ms total)
T1120 117:014 JLINK_IsHalted()  returns FALSE (0001ms, 2185ms total)
T1120 117:116 JLINK_IsHalted()  returns FALSE (0001ms, 2185ms total)
T1120 117:217 JLINK_IsHalted()  returns FALSE (0001ms, 2185ms total)
T1120 117:319 JLINK_IsHalted()  returns FALSE (0001ms, 2185ms total)
T26E8 117:420 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2185ms total)
T26E8 117:421 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2186ms total)
T26E8 117:423 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2187ms total)
T26E8 117:424 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2188ms total)
T26E8 117:426 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2189ms total)
T1120 117:427 JLINK_IsHalted()  returns FALSE (0001ms, 2190ms total)
T1120 117:528 JLINK_IsHalted()  returns FALSE (0000ms, 2189ms total)
T1120 117:630 JLINK_IsHalted()  returns FALSE (0000ms, 2189ms total)
T1120 117:731 JLINK_IsHalted()  returns FALSE (0001ms, 2190ms total)
T1120 117:833 JLINK_IsHalted()  returns FALSE (0000ms, 2189ms total)
T26E8 117:934 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2190ms total)
T26E8 117:935 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2191ms total)
T26E8 117:938 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0000ms, 2191ms total)
T26E8 117:938 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2192ms total)
T26E8 117:940 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2193ms total)
T1120 117:941 JLINK_IsHalted()  returns FALSE (0001ms, 2194ms total)
T1120 118:043 JLINK_IsHalted()  returns FALSE (0001ms, 2194ms total)
T1120 118:144 JLINK_IsHalted()  returns FALSE (0001ms, 2194ms total)
T1120 118:246 JLINK_IsHalted()  returns FALSE (0000ms, 2193ms total)
T1120 118:347 JLINK_IsHalted()  returns FALSE (0000ms, 2193ms total)
T26E8 118:448 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2194ms total)
T26E8 118:449 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2195ms total)
T26E8 118:452 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0002ms, 2197ms total)
T26E8 118:454 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0000ms, 2197ms total)
T26E8 118:454 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2198ms total)
T1120 118:455 JLINK_IsHalted()  returns FALSE (0001ms, 2199ms total)
T1120 118:557 JLINK_IsHalted()  returns FALSE (0001ms, 2199ms total)
T1120 118:658 JLINK_IsHalted()  returns FALSE (0001ms, 2199ms total)
T1120 118:760 JLINK_IsHalted()  returns FALSE (0000ms, 2198ms total)
T1120 118:861 JLINK_IsHalted()  returns FALSE (0000ms, 2198ms total)
T26E8 118:964 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2199ms total)
T26E8 118:965 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2200ms total)
T26E8 118:968 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2201ms total)
T26E8 118:969 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2202ms total)
T26E8 118:971 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0000ms, 2202ms total)
T1120 118:971 JLINK_IsHalted()  returns FALSE (0001ms, 2203ms total)
T1120 119:073 JLINK_IsHalted()  returns FALSE (0001ms, 2203ms total)
T1120 119:174 JLINK_IsHalted()  returns FALSE (0001ms, 2203ms total)
T1120 119:276 JLINK_IsHalted()  returns FALSE (0001ms, 2203ms total)
T1120 119:377 JLINK_IsHalted()  returns FALSE (0001ms, 2203ms total)
T26E8 119:478 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2203ms total)
T26E8 119:479 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2204ms total)
T26E8 119:483 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2205ms total)
T26E8 119:484 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2206ms total)
T26E8 119:485 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2207ms total)
T1120 119:486 JLINK_IsHalted()  returns FALSE (0001ms, 2208ms total)
T1120 119:588 JLINK_IsHalted()  returns FALSE (0001ms, 2208ms total)
T1120 119:690 JLINK_IsHalted()  returns FALSE (0001ms, 2208ms total)
T1120 119:791 JLINK_IsHalted()  returns FALSE (0001ms, 2208ms total)
T1120 119:893 JLINK_IsHalted()  returns FALSE (0001ms, 2208ms total)
T26E8 119:995 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2208ms total)
T26E8 119:996 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2209ms total)
T26E8 119:998 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2210ms total)
T26E8 119:999 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2211ms total)
T26E8 120:000 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2212ms total)
T1120 120:001 JLINK_IsHalted()  returns FALSE (0001ms, 2213ms total)
T1120 120:103 JLINK_IsHalted()  returns FALSE (0000ms, 2212ms total)
T1120 120:204 JLINK_IsHalted()  returns FALSE (0001ms, 2213ms total)
T1120 120:305 JLINK_IsHalted()  returns FALSE (0000ms, 2212ms total)
T1120 120:406 JLINK_IsHalted()  returns FALSE (0000ms, 2212ms total)
T1120 120:508 JLINK_IsHalted()  returns FALSE (0000ms, 2212ms total)
T26E8 120:609 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2213ms total)
T26E8 120:610 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2214ms total)
T26E8 120:613 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2215ms total)
T26E8 120:614 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2216ms total)
T26E8 120:617 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2217ms total)
T1120 120:618 JLINK_IsHalted()  returns FALSE (0001ms, 2218ms total)
T1120 120:720 JLINK_IsHalted()  returns FALSE (0001ms, 2218ms total)
T1120 120:821 JLINK_IsHalted()  returns FALSE (0001ms, 2218ms total)
T1120 120:923 JLINK_IsHalted()  returns FALSE (0001ms, 2218ms total)
T1120 121:025 JLINK_IsHalted()  returns FALSE (0000ms, 2217ms total)
T26E8 121:127 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2218ms total)
T26E8 121:128 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2219ms total)
T26E8 121:130 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2220ms total)
T26E8 121:131 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2221ms total)
T26E8 121:133 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2222ms total)
T1120 121:134 JLINK_IsHalted()  returns FALSE (0001ms, 2223ms total)
T1120 121:236 JLINK_IsHalted()  returns FALSE (0000ms, 2222ms total)
T1120 121:337 JLINK_IsHalted()  returns FALSE (0001ms, 2223ms total)
T1120 121:439 JLINK_IsHalted()  returns FALSE (0001ms, 2223ms total)
T1120 121:541 JLINK_IsHalted()  returns FALSE (0001ms, 2223ms total)
T26E8 121:643 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2223ms total)
T26E8 121:644 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2224ms total)
T26E8 121:647 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0000ms, 2224ms total)
T26E8 121:648 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0000ms, 2225ms total)
T26E8 121:650 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2226ms total)
T1120 121:651 JLINK_IsHalted()  returns FALSE (0001ms, 2227ms total)
T1120 121:753 JLINK_IsHalted()  returns FALSE (0000ms, 2226ms total)
T1120 121:854 JLINK_IsHalted()  returns FALSE (0000ms, 2226ms total)
T1120 121:955 JLINK_IsHalted()  returns FALSE (0001ms, 2227ms total)
T1120 122:057 JLINK_IsHalted()  returns FALSE (0000ms, 2226ms total)
T26E8 122:158 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 2226ms total)
T26E8 122:158 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2227ms total)
T26E8 122:160 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2228ms total)
T26E8 122:161 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0000ms, 2228ms total)
T26E8 122:162 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2229ms total)
T1120 122:163 JLINK_IsHalted()  returns FALSE (0000ms, 2229ms total)
T1120 122:265 JLINK_IsHalted()  returns FALSE (0000ms, 2229ms total)
T1120 122:366 JLINK_IsHalted()  returns FALSE (0000ms, 2229ms total)
T1120 122:467 JLINK_IsHalted()  returns FALSE (0001ms, 2230ms total)
T1120 122:569 JLINK_IsHalted()  returns FALSE (0001ms, 2230ms total)
T26E8 122:671 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2230ms total)
T26E8 122:672 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 2230ms total)
T26E8 122:672 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0002ms, 2232ms total)
T26E8 122:674 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2233ms total)
T26E8 122:675 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2234ms total)
T1120 122:676 JLINK_IsHalted()  returns FALSE (0001ms, 2235ms total)
T1120 122:778 JLINK_IsHalted()  returns FALSE (0000ms, 2234ms total)
T1120 122:879 JLINK_IsHalted()  returns FALSE (0000ms, 2234ms total)
T1120 122:979 JLINK_IsHalted()  returns FALSE (0000ms, 2234ms total)
T1120 123:081 JLINK_IsHalted()  returns FALSE (0000ms, 2234ms total)
T26E8 123:182 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2235ms total)
T26E8 123:183 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 2235ms total)
T26E8 123:184 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2236ms total)
T26E8 123:185 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2237ms total)
T26E8 123:186 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2238ms total)
T1120 123:187 JLINK_IsHalted()  returns FALSE (0000ms, 2238ms total)
T1120 123:288 JLINK_IsHalted()  returns FALSE (0000ms, 2238ms total)
T1120 123:390 JLINK_IsHalted()  returns FALSE (0001ms, 2239ms total)
T1120 123:491 JLINK_IsHalted()  returns FALSE (0001ms, 2239ms total)
T1120 123:592 JLINK_IsHalted()  returns FALSE (0001ms, 2239ms total)
T1120 123:693 JLINK_IsHalted()  returns FALSE (0001ms, 2239ms total)
T26E8 123:795 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2239ms total)
T26E8 123:796 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 2239ms total)
T26E8 123:798 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2240ms total)
T26E8 123:799 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2241ms total)
T26E8 123:801 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2242ms total)
T1120 123:802 JLINK_IsHalted()  returns FALSE (0000ms, 2242ms total)
T1120 123:903 JLINK_IsHalted()  returns FALSE (0000ms, 2242ms total)
T1120 124:004 JLINK_IsHalted()  returns FALSE (0001ms, 2243ms total)
T1120 124:106 JLINK_IsHalted()  returns FALSE (0000ms, 2242ms total)
T1120 124:207 JLINK_IsHalted()  returns FALSE (0000ms, 2242ms total)
T26E8 124:309 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 2242ms total)
T26E8 124:309 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0002ms, 2244ms total)
T26E8 124:312 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2245ms total)
T26E8 124:313 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2246ms total)
T26E8 124:314 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2247ms total)
T1120 124:315 JLINK_IsHalted()  returns FALSE (0001ms, 2248ms total)
T1120 124:416 JLINK_IsHalted()  returns FALSE (0000ms, 2247ms total)
T1120 124:517 JLINK_IsHalted()  returns FALSE (0001ms, 2248ms total)
T1120 124:619 JLINK_IsHalted()  returns FALSE (0000ms, 2247ms total)
T1120 124:721 JLINK_IsHalted()  returns FALSE (0001ms, 2248ms total)
T26E8 124:824 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2248ms total)
T26E8 124:825 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2249ms total)
T26E8 124:827 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0002ms, 2251ms total)
T26E8 124:829 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0000ms, 2251ms total)
T26E8 124:830 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2252ms total)
T1120 124:831 JLINK_IsHalted()  returns FALSE (0001ms, 2253ms total)
T1120 124:932 JLINK_IsHalted()  returns FALSE (0000ms, 2252ms total)
T1120 125:034 JLINK_IsHalted()  returns FALSE (0001ms, 2253ms total)
T1120 125:136 JLINK_IsHalted()  returns FALSE (0001ms, 2253ms total)
T1120 125:237 JLINK_IsHalted()  returns FALSE (0001ms, 2253ms total)
T26E8 125:342 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2253ms total)
T26E8 125:343 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2254ms total)
T26E8 125:346 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2255ms total)
T26E8 125:347 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2256ms total)
T26E8 125:349 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2257ms total)
T1120 125:350 JLINK_IsHalted()  returns FALSE (0001ms, 2258ms total)
T1120 125:452 JLINK_IsHalted()  returns FALSE (0001ms, 2258ms total)
T1120 125:553 JLINK_IsHalted()  returns FALSE (0001ms, 2258ms total)
T1120 125:655 JLINK_IsHalted()  returns FALSE (0001ms, 2258ms total)
T1120 125:757 JLINK_IsHalted()  returns FALSE (0001ms, 2258ms total)
T26E8 125:859 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2258ms total)
T26E8 125:860 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2259ms total)
T26E8 125:863 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0000ms, 2259ms total)
T26E8 125:863 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2260ms total)
T26E8 125:865 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2261ms total)
T1120 125:866 JLINK_IsHalted()  returns FALSE (0001ms, 2262ms total)
T1120 125:967 JLINK_IsHalted()  returns FALSE (0001ms, 2262ms total)
T1120 126:069 JLINK_IsHalted()  returns FALSE (0000ms, 2261ms total)
T1120 126:171 JLINK_IsHalted()  returns FALSE (0001ms, 2262ms total)
T1120 126:272 JLINK_IsHalted()  returns FALSE (0001ms, 2262ms total)
T26E8 126:374 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2262ms total)
T26E8 126:375 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2263ms total)
T26E8 126:378 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0000ms, 2263ms total)
T26E8 126:378 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2264ms total)
T26E8 126:380 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2265ms total)
T1120 126:381 JLINK_IsHalted()  returns FALSE (0001ms, 2266ms total)
T1120 126:483 JLINK_IsHalted()  returns FALSE (0001ms, 2266ms total)
T1120 126:585 JLINK_IsHalted()  returns FALSE (0001ms, 2266ms total)
T1120 126:687 JLINK_IsHalted()  returns FALSE (0001ms, 2266ms total)
T1120 126:788 JLINK_IsHalted()  returns FALSE (0000ms, 2265ms total)
T26E8 126:889 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 2265ms total)
T26E8 126:890 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 2265ms total)
T26E8 126:891 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2266ms total)
T26E8 126:892 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2267ms total)
T26E8 126:893 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2268ms total)
T1120 126:894 JLINK_IsHalted()  returns FALSE (0001ms, 2269ms total)
T1120 126:996 JLINK_IsHalted()  returns FALSE (0001ms, 2269ms total)
T1120 127:098 JLINK_IsHalted()  returns FALSE (0000ms, 2268ms total)
T1120 127:199 JLINK_IsHalted()  returns FALSE (0001ms, 2269ms total)
T1120 127:301 JLINK_IsHalted()  returns FALSE (0001ms, 2269ms total)
T26E8 127:402 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2269ms total)
T26E8 127:403 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 2269ms total)
T26E8 127:404 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0002ms, 2271ms total)
T26E8 127:406 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0000ms, 2271ms total)
T26E8 127:406 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0002ms, 2273ms total)
T1120 127:408 JLINK_IsHalted()  returns FALSE (0000ms, 2273ms total)
T1120 127:509 JLINK_IsHalted()  returns FALSE (0001ms, 2274ms total)
T1120 127:610 JLINK_IsHalted()  returns FALSE (0001ms, 2274ms total)
T1120 127:712 JLINK_IsHalted()  returns FALSE (0001ms, 2274ms total)
T1120 127:813 JLINK_IsHalted()  returns FALSE (0000ms, 2273ms total)
T26E8 127:914 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2274ms total)
T26E8 127:915 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2275ms total)
T26E8 127:916 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2276ms total)
T26E8 127:917 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2277ms total)
T26E8 127:918 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2278ms total)
T1120 127:919 JLINK_IsHalted()  returns FALSE (0001ms, 2279ms total)
T1120 128:021 JLINK_IsHalted()  returns FALSE (0001ms, 2279ms total)
T1120 128:122 JLINK_IsHalted()  returns FALSE (0001ms, 2279ms total)
T1120 128:224 JLINK_IsHalted()  returns FALSE (0000ms, 2278ms total)
T1120 128:325 JLINK_IsHalted()  returns FALSE (0000ms, 2278ms total)
T1120 128:426 JLINK_IsHalted()  returns FALSE (0001ms, 2279ms total)
T26E8 128:528 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2279ms total)
T26E8 128:529 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2280ms total)
T26E8 128:532 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0000ms, 2280ms total)
T26E8 128:532 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2281ms total)
T26E8 128:534 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2282ms total)
T1120 128:535 JLINK_IsHalted()  returns FALSE (0001ms, 2283ms total)
T1120 128:636 JLINK_IsHalted()  returns FALSE (0001ms, 2283ms total)
T1120 128:738 JLINK_IsHalted()  returns FALSE (0001ms, 2283ms total)
T1120 128:840 JLINK_IsHalted()  returns FALSE (0001ms, 2283ms total)
T1120 128:941 JLINK_IsHalted()  returns FALSE (0001ms, 2283ms total)
T26E8 129:042 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2283ms total)
T26E8 129:043 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2284ms total)
T26E8 129:046 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2285ms total)
T26E8 129:047 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2286ms total)
T26E8 129:048 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0002ms, 2288ms total)
T1120 129:050 JLINK_IsHalted()  returns FALSE (0001ms, 2289ms total)
T1120 129:152 JLINK_IsHalted()  returns FALSE (0001ms, 2289ms total)
T1120 129:254 JLINK_IsHalted()  returns FALSE (0001ms, 2289ms total)
T1120 129:356 JLINK_IsHalted()  returns FALSE (0001ms, 2289ms total)
T1120 129:458 JLINK_IsHalted()  returns FALSE (0000ms, 2288ms total)
T26E8 129:559 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2289ms total)
T26E8 129:560 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2290ms total)
T26E8 129:563 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2291ms total)
T26E8 129:564 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2292ms total)
T26E8 129:566 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2293ms total)
T1120 129:567 JLINK_IsHalted()  returns FALSE (0001ms, 2294ms total)
T1120 129:669 JLINK_IsHalted()  returns FALSE (0001ms, 2294ms total)
T1120 129:770 JLINK_IsHalted()  returns FALSE (0001ms, 2294ms total)
T1120 129:872 JLINK_IsHalted()  returns FALSE (0000ms, 2293ms total)
T1120 129:973 JLINK_IsHalted()  returns FALSE (0001ms, 2294ms total)
T26E8 130:075 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2294ms total)
T26E8 130:076 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2295ms total)
T26E8 130:077 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2296ms total)
T26E8 130:078 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2297ms total)
T26E8 130:079 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2298ms total)
T1120 130:080 JLINK_IsHalted()  returns FALSE (0001ms, 2299ms total)
T1120 130:182 JLINK_IsHalted()  returns FALSE (0000ms, 2298ms total)
T1120 130:283 JLINK_IsHalted()  returns FALSE (0001ms, 2299ms total)
T1120 130:385 JLINK_IsHalted()  returns FALSE (0000ms, 2298ms total)
T1120 130:486 JLINK_IsHalted()  returns FALSE (0000ms, 2298ms total)
T26E8 130:587 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2299ms total)
T26E8 130:588 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 2299ms total)
T26E8 130:590 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0000ms, 2299ms total)
T26E8 130:590 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0002ms, 2301ms total)
T26E8 130:592 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2302ms total)
T1120 130:593 JLINK_IsHalted()  returns FALSE (0000ms, 2302ms total)
T1120 130:694 JLINK_IsHalted()  returns FALSE (0001ms, 2303ms total)
T1120 130:796 JLINK_IsHalted()  returns FALSE (0001ms, 2303ms total)
T1120 130:897 JLINK_IsHalted()  returns FALSE (0001ms, 2303ms total)
T1120 130:999 JLINK_IsHalted()  returns FALSE (0000ms, 2302ms total)
T1120 131:100 JLINK_IsHalted()  returns FALSE (0000ms, 2302ms total)
T26E8 131:201 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2303ms total)
T26E8 131:202 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2304ms total)
T26E8 131:203 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0002ms, 2306ms total)
T26E8 131:205 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0000ms, 2306ms total)
T26E8 131:205 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0002ms, 2308ms total)
T1120 131:207 JLINK_IsHalted()  returns FALSE (0000ms, 2308ms total)
T1120 131:308 JLINK_IsHalted()  returns FALSE (0001ms, 2309ms total)
T1120 131:409 JLINK_IsHalted()  returns FALSE (0001ms, 2309ms total)
T1120 131:511 JLINK_IsHalted()  returns FALSE (0000ms, 2308ms total)
T1120 131:612 JLINK_IsHalted()  returns FALSE (0001ms, 2309ms total)
T26E8 131:715 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2309ms total)
T26E8 131:716 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2310ms total)
T26E8 131:718 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2311ms total)
T26E8 131:719 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2312ms total)
T26E8 131:721 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2313ms total)
T1120 131:722 JLINK_IsHalted()  returns FALSE (0000ms, 2313ms total)
T1120 131:824 JLINK_IsHalted()  returns FALSE (0001ms, 2314ms total)
T1120 131:926 JLINK_IsHalted()  returns FALSE (0001ms, 2314ms total)
T1120 132:028 JLINK_IsHalted()  returns FALSE (0001ms, 2314ms total)
T1120 132:129 JLINK_IsHalted()  returns FALSE (0001ms, 2314ms total)
T26E8 132:231 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2314ms total)
T26E8 132:232 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2315ms total)
T26E8 132:233 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2316ms total)
T26E8 132:234 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2317ms total)
T26E8 132:235 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2318ms total)
T1120 132:236 JLINK_IsHalted()  returns FALSE (0001ms, 2319ms total)
T1120 132:338 JLINK_IsHalted()  returns FALSE (0000ms, 2318ms total)
T1120 132:440 JLINK_IsHalted()  returns FALSE (0001ms, 2319ms total)
T1120 132:541 JLINK_IsHalted()  returns FALSE (0000ms, 2318ms total)
T1120 132:642 JLINK_IsHalted()  returns FALSE (0001ms, 2319ms total)
T26E8 132:744 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2319ms total)
T26E8 132:745 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2320ms total)
T26E8 132:748 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2321ms total)
T26E8 132:749 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2322ms total)
T26E8 132:751 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2323ms total)
T1120 132:752 JLINK_IsHalted()  returns FALSE (0000ms, 2323ms total)
T1120 132:853 JLINK_IsHalted()  returns FALSE (0001ms, 2324ms total)
T1120 132:954 JLINK_IsHalted()  returns FALSE (0001ms, 2324ms total)
T1120 133:056 JLINK_IsHalted()  returns FALSE (0001ms, 2324ms total)
T1120 133:157 JLINK_IsHalted()  returns FALSE (0001ms, 2324ms total)
T26E8 133:258 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2324ms total)
T26E8 133:259 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2325ms total)
T26E8 133:261 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2326ms total)
T26E8 133:262 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2327ms total)
T26E8 133:263 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0002ms, 2329ms total)
T1120 133:265 JLINK_IsHalted()  returns FALSE (0000ms, 2329ms total)
T1120 133:366 JLINK_IsHalted()  returns FALSE (0001ms, 2330ms total)
T1120 133:468 JLINK_IsHalted()  returns FALSE (0001ms, 2330ms total)
T1120 133:569 JLINK_IsHalted()  returns FALSE (0001ms, 2330ms total)
T1120 133:671 JLINK_IsHalted()  returns FALSE (0001ms, 2330ms total)
T1120 133:773 JLINK_IsHalted()  returns FALSE (0001ms, 2330ms total)
T26E8 133:876 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2330ms total)
T26E8 133:877 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2331ms total)
T26E8 133:880 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0000ms, 2331ms total)
T26E8 133:880 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2332ms total)
T26E8 133:882 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2333ms total)
T1120 133:883 JLINK_IsHalted()  returns FALSE (0001ms, 2334ms total)
T1120 133:985 JLINK_IsHalted()  returns FALSE (0001ms, 2334ms total)
T1120 134:086 JLINK_IsHalted()  returns FALSE (0001ms, 2334ms total)
T1120 134:188 JLINK_IsHalted()  returns FALSE (0000ms, 2333ms total)
T1120 134:289 JLINK_IsHalted()  returns FALSE (0001ms, 2334ms total)
T26E8 134:390 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2334ms total)
T26E8 134:391 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2335ms total)
T26E8 134:393 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2336ms total)
T26E8 134:394 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2337ms total)
T26E8 134:396 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2338ms total)
T1120 134:397 JLINK_IsHalted()  returns FALSE (0001ms, 2339ms total)
T1120 134:499 JLINK_IsHalted()  returns FALSE (0001ms, 2339ms total)
T1120 134:600 JLINK_IsHalted()  returns FALSE (0000ms, 2338ms total)
T1120 134:701 JLINK_IsHalted()  returns FALSE (0000ms, 2338ms total)
T1120 134:802 JLINK_IsHalted()  returns FALSE (0001ms, 2339ms total)
T26E8 134:903 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0002ms, 2340ms total)
T26E8 134:905 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 2340ms total)
T26E8 134:908 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0000ms, 2340ms total)
T26E8 134:908 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2341ms total)
T26E8 134:911 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2342ms total)
T1120 134:912 JLINK_IsHalted()  returns FALSE (0001ms, 2343ms total)
T1120 135:013 JLINK_IsHalted()  returns FALSE (0001ms, 2343ms total)
T1120 135:114 JLINK_IsHalted()  returns FALSE (0000ms, 2342ms total)
T1120 135:216 JLINK_IsHalted()  returns FALSE (0001ms, 2343ms total)
T1120 135:318 JLINK_IsHalted()  returns FALSE (0001ms, 2343ms total)
T26E8 135:419 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2343ms total)
T26E8 135:420 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2344ms total)
T26E8 135:424 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2345ms total)
T26E8 135:425 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2346ms total)
T26E8 135:427 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2347ms total)
T1120 135:429 JLINK_IsHalted()  returns FALSE (0000ms, 2347ms total)
T1120 135:530 JLINK_IsHalted()  returns FALSE (0001ms, 2348ms total)
T1120 135:632 JLINK_IsHalted()  returns FALSE (0001ms, 2348ms total)
T1120 135:734 JLINK_IsHalted()  returns FALSE (0000ms, 2347ms total)
T1120 135:835 JLINK_IsHalted()  returns FALSE (0001ms, 2348ms total)
T26E8 135:937 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2348ms total)
T26E8 135:938 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 2348ms total)
T26E8 135:939 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2349ms total)
T26E8 135:940 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2350ms total)
T26E8 135:942 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0000ms, 2350ms total)
T1120 135:942 JLINK_IsHalted()  returns FALSE (0001ms, 2351ms total)
T1120 136:044 JLINK_IsHalted()  returns FALSE (0000ms, 2350ms total)
T1120 136:146 JLINK_IsHalted()  returns FALSE (0001ms, 2351ms total)
T1120 136:248 JLINK_IsHalted()  returns FALSE (0001ms, 2351ms total)
T1120 136:349 JLINK_IsHalted()  returns FALSE (0001ms, 2351ms total)
T26E8 136:451 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2351ms total)
T26E8 136:452 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2352ms total)
T26E8 136:454 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0000ms, 2352ms total)
T26E8 136:454 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2353ms total)
T26E8 136:456 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2354ms total)
T1120 136:457 JLINK_IsHalted()  returns FALSE (0000ms, 2354ms total)
T1120 136:558 JLINK_IsHalted()  returns FALSE (0001ms, 2355ms total)
T1120 136:660 JLINK_IsHalted()  returns FALSE (0001ms, 2355ms total)
T1120 136:761 JLINK_IsHalted()  returns FALSE (0001ms, 2355ms total)
T1120 136:863 JLINK_IsHalted()  returns FALSE (0001ms, 2355ms total)
T26E8 136:964 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2355ms total)
T26E8 136:965 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2356ms total)
T26E8 136:971 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0002ms, 2358ms total)
T26E8 136:973 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0000ms, 2358ms total)
T26E8 136:974 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2359ms total)
T1120 136:975 JLINK_IsHalted()  returns FALSE (0001ms, 2360ms total)
T1120 137:076 JLINK_IsHalted()  returns FALSE (0001ms, 2360ms total)
T1120 137:178 JLINK_IsHalted()  returns FALSE (0001ms, 2360ms total)
T1120 137:279 JLINK_IsHalted()  returns FALSE (0001ms, 2360ms total)
T1120 137:380 JLINK_IsHalted()  returns FALSE (0001ms, 2360ms total)
T26E8 137:482 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2360ms total)
T26E8 137:483 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2361ms total)
T26E8 137:487 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2362ms total)
T26E8 137:488 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2363ms total)
T26E8 137:490 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2364ms total)
T1120 137:491 JLINK_IsHalted()  returns FALSE (0001ms, 2365ms total)
T1120 137:592 JLINK_IsHalted()  returns FALSE (0001ms, 2365ms total)
T1120 137:693 JLINK_IsHalted()  returns FALSE (0001ms, 2365ms total)
T1120 137:794 JLINK_IsHalted()  returns FALSE (0001ms, 2365ms total)
T1120 137:897 JLINK_IsHalted()  returns FALSE (0001ms, 2365ms total)
T26E8 137:998 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2365ms total)
T26E8 137:999 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 2365ms total)
T26E8 138:001 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2366ms total)
T26E8 138:002 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0000ms, 2366ms total)
T26E8 138:004 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2367ms total)
T1120 138:005 JLINK_IsHalted()  returns FALSE (0001ms, 2368ms total)
T1120 138:107 JLINK_IsHalted()  returns FALSE (0001ms, 2368ms total)
T1120 138:209 JLINK_IsHalted()  returns FALSE (0000ms, 2367ms total)
T1120 138:310 JLINK_IsHalted()  returns FALSE (0001ms, 2368ms total)
T1120 138:412 JLINK_IsHalted()  returns FALSE (0000ms, 2367ms total)
T26E8 138:513 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2368ms total)
T26E8 138:514 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 2368ms total)
T26E8 138:515 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0000ms, 2368ms total)
T26E8 138:515 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0002ms, 2370ms total)
T26E8 138:518 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2371ms total)
T1120 138:519 JLINK_IsHalted()  returns FALSE (0000ms, 2371ms total)
T1120 138:619 JLINK_IsHalted()  returns FALSE (0001ms, 2372ms total)
T1120 138:721 JLINK_IsHalted()  returns FALSE (0001ms, 2372ms total)
T1120 138:822 JLINK_IsHalted()  returns FALSE (0001ms, 2372ms total)
T1120 138:923 JLINK_IsHalted()  returns FALSE (0000ms, 2371ms total)
T26E8 139:025 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 2371ms total)
T26E8 139:026 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2372ms total)
T26E8 139:027 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2373ms total)
T26E8 139:028 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2374ms total)
T26E8 139:029 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2375ms total)
T1120 139:030 JLINK_IsHalted()  returns FALSE (0001ms, 2376ms total)
T1120 139:131 JLINK_IsHalted()  returns FALSE (0000ms, 2375ms total)
T1120 139:232 JLINK_IsHalted()  returns FALSE (0001ms, 2376ms total)
T1120 139:334 JLINK_IsHalted()  returns FALSE (0001ms, 2376ms total)
T1120 139:435 JLINK_IsHalted()  returns FALSE (0000ms, 2375ms total)
T1120 139:536 JLINK_IsHalted()  returns FALSE (0001ms, 2376ms total)
T26E8 139:640 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2376ms total)
T26E8 139:641 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2377ms total)
T26E8 139:644 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2378ms total)
T26E8 139:645 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2379ms total)
T26E8 139:647 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0002ms, 2381ms total)
T1120 139:649 JLINK_IsHalted()  returns FALSE (0000ms, 2381ms total)
T1120 139:750 JLINK_IsHalted()  returns FALSE (0000ms, 2381ms total)
T1120 139:851 JLINK_IsHalted()  returns FALSE (0001ms, 2382ms total)
T1120 139:952 JLINK_IsHalted()  returns FALSE (0001ms, 2382ms total)
T1120 140:054 JLINK_IsHalted()  returns FALSE (0001ms, 2382ms total)
T26E8 140:156 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0002ms, 2383ms total)
T26E8 140:158 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2384ms total)
T26E8 140:160 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2385ms total)
T26E8 140:161 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2386ms total)
T26E8 140:163 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0000ms, 2386ms total)
T1120 140:164 JLINK_IsHalted()  returns FALSE (0000ms, 2386ms total)
T1120 140:265 JLINK_IsHalted()  returns FALSE (0000ms, 2386ms total)
T1120 140:367 JLINK_IsHalted()  returns FALSE (0001ms, 2387ms total)
T1120 140:468 JLINK_IsHalted()  returns FALSE (0001ms, 2387ms total)
T1120 140:570 JLINK_IsHalted()  returns FALSE (0001ms, 2387ms total)
T26E8 140:672 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2387ms total)
T26E8 140:673 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0002ms, 2389ms total)
T26E8 140:677 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2390ms total)
T26E8 140:678 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0000ms, 2390ms total)
T26E8 140:679 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2391ms total)
T1120 140:680 JLINK_IsHalted()  returns FALSE (0001ms, 2392ms total)
T1120 140:782 JLINK_IsHalted()  returns FALSE (0001ms, 2392ms total)
T1120 140:884 JLINK_IsHalted()  returns FALSE (0001ms, 2392ms total)
T1120 140:985 JLINK_IsHalted()  returns FALSE (0001ms, 2392ms total)
T1120 141:087 JLINK_IsHalted()  returns FALSE (0000ms, 2391ms total)
T26E8 141:188 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2392ms total)
T26E8 141:189 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2393ms total)
T26E8 141:190 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2394ms total)
T26E8 141:191 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2395ms total)
T26E8 141:193 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2396ms total)
T1120 141:194 JLINK_IsHalted()  returns FALSE (0000ms, 2396ms total)
T1120 141:295 JLINK_IsHalted()  returns FALSE (0001ms, 2397ms total)
T1120 141:396 JLINK_IsHalted()  returns FALSE (0001ms, 2397ms total)
T1120 141:498 JLINK_IsHalted()  returns FALSE (0001ms, 2397ms total)
T1120 141:600 JLINK_IsHalted()  returns FALSE (0001ms, 2397ms total)
T26E8 141:701 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2397ms total)
T26E8 141:702 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 2397ms total)
T26E8 141:704 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2398ms total)
T26E8 141:705 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0000ms, 2398ms total)
T26E8 141:706 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2399ms total)
T1120 141:707 JLINK_IsHalted()  returns FALSE (0001ms, 2400ms total)
T1120 141:808 JLINK_IsHalted()  returns FALSE (0001ms, 2400ms total)
T1120 141:910 JLINK_IsHalted()  returns FALSE (0001ms, 2400ms total)
T1120 142:011 JLINK_IsHalted()  returns FALSE (0000ms, 2399ms total)
T1120 142:113 JLINK_IsHalted()  returns FALSE (0000ms, 2399ms total)
T26E8 142:214 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2400ms total)
T26E8 142:215 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2401ms total)
T26E8 142:217 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0000ms, 2401ms total)
T26E8 142:217 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2402ms total)
T26E8 142:219 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2403ms total)
T1120 142:220 JLINK_IsHalted()  returns FALSE (0001ms, 2404ms total)
T1120 142:321 JLINK_IsHalted()  returns FALSE (0001ms, 2404ms total)
T1120 142:422 JLINK_IsHalted()  returns FALSE (0001ms, 2404ms total)
T1120 142:524 JLINK_IsHalted()  returns FALSE (0000ms, 2403ms total)
T1120 142:625 JLINK_IsHalted()  returns FALSE (0001ms, 2404ms total)
T1120 142:726 JLINK_IsHalted()  returns FALSE (0001ms, 2404ms total)
T26E8 142:827 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2404ms total)
T26E8 142:828 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 2404ms total)
T26E8 142:834 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2405ms total)
T26E8 142:835 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2406ms total)
T26E8 142:837 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2407ms total)
T1120 142:838 JLINK_IsHalted()  returns FALSE (0001ms, 2408ms total)
T1120 142:940 JLINK_IsHalted()  returns FALSE (0001ms, 2408ms total)
T1120 143:042 JLINK_IsHalted()  returns FALSE (0001ms, 2408ms total)
T1120 143:143 JLINK_IsHalted()  returns FALSE (0001ms, 2408ms total)
T1120 143:245 JLINK_IsHalted()  returns FALSE (0000ms, 2407ms total)
T26E8 143:346 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2408ms total)
T26E8 143:347 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2409ms total)
T26E8 143:350 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0000ms, 2409ms total)
T26E8 143:351 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0000ms, 2410ms total)
T26E8 143:352 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2411ms total)
T1120 143:353 JLINK_IsHalted()  returns FALSE (0001ms, 2412ms total)
T1120 143:455 JLINK_IsHalted()  returns FALSE (0000ms, 2411ms total)
T1120 143:556 JLINK_IsHalted()  returns FALSE (0001ms, 2412ms total)
T1120 143:657 JLINK_IsHalted()  returns FALSE (0001ms, 2412ms total)
T1120 143:758 JLINK_IsHalted()  returns FALSE (0000ms, 2411ms total)
T26E8 143:860 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2412ms total)
T26E8 143:861 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2413ms total)
T26E8 143:865 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2414ms total)
T26E8 143:866 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0000ms, 2414ms total)
T26E8 143:867 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2415ms total)
T1120 143:868 JLINK_IsHalted()  returns FALSE (0001ms, 2416ms total)
T1120 143:970 JLINK_IsHalted()  returns FALSE (0001ms, 2416ms total)
T1120 144:072 JLINK_IsHalted()  returns FALSE (0001ms, 2416ms total)
T1120 144:174 JLINK_IsHalted()  returns FALSE (0000ms, 2415ms total)
T1120 144:275 JLINK_IsHalted()  returns FALSE (0001ms, 2416ms total)
T26E8 144:377 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2416ms total)
T26E8 144:379 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2417ms total)
T26E8 144:382 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2418ms total)
T26E8 144:383 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0000ms, 2418ms total)
T26E8 144:385 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2419ms total)
T1120 144:386 JLINK_IsHalted()  returns FALSE (0000ms, 2419ms total)
T1120 144:487 JLINK_IsHalted()  returns FALSE (0000ms, 2419ms total)
T1120 144:589 JLINK_IsHalted()  returns FALSE (0001ms, 2420ms total)
T1120 144:691 JLINK_IsHalted()  returns FALSE (0000ms, 2419ms total)
T1120 144:792 JLINK_IsHalted()  returns FALSE (0001ms, 2420ms total)
T26E8 144:895 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2420ms total)
T26E8 144:896 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2421ms total)
T26E8 144:899 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2422ms total)
T26E8 144:900 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2423ms total)
T26E8 144:901 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2424ms total)
T1120 144:902 JLINK_IsHalted()  returns FALSE (0001ms, 2425ms total)
T1120 145:004 JLINK_IsHalted()  returns FALSE (0001ms, 2425ms total)
T1120 145:105 JLINK_IsHalted()  returns FALSE (0001ms, 2425ms total)
T1120 145:207 JLINK_IsHalted()  returns FALSE (0001ms, 2425ms total)
T1120 145:308 JLINK_IsHalted()  returns FALSE (0001ms, 2425ms total)
T26E8 145:409 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2425ms total)
T26E8 145:410 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2426ms total)
T26E8 145:412 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2427ms total)
T26E8 145:413 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2428ms total)
T26E8 145:415 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2429ms total)
T1120 145:416 JLINK_IsHalted()  returns FALSE (0000ms, 2429ms total)
T1120 145:518 JLINK_IsHalted()  returns FALSE (0001ms, 2430ms total)
T1120 145:619 JLINK_IsHalted()  returns FALSE (0001ms, 2430ms total)
T1120 145:721 JLINK_IsHalted()  returns FALSE (0001ms, 2430ms total)
T1120 145:823 JLINK_IsHalted()  returns FALSE (0001ms, 2430ms total)
T26E8 145:924 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2430ms total)
T26E8 145:925 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2431ms total)
T26E8 145:927 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2432ms total)
T26E8 145:928 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2433ms total)
T26E8 145:930 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2434ms total)
T1120 145:931 JLINK_IsHalted()  returns FALSE (0000ms, 2434ms total)
T1120 146:032 JLINK_IsHalted()  returns FALSE (0001ms, 2435ms total)
T1120 146:134 JLINK_IsHalted()  returns FALSE (0000ms, 2434ms total)
T1120 146:236 JLINK_IsHalted()  returns FALSE (0001ms, 2435ms total)
T1120 146:338 JLINK_IsHalted()  returns FALSE (0000ms, 2434ms total)
T26E8 146:439 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2435ms total)
T26E8 146:440 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2436ms total)
T26E8 146:442 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2437ms total)
T26E8 146:443 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2438ms total)
T26E8 146:445 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0000ms, 2438ms total)
T1120 146:446 JLINK_IsHalted()  returns FALSE (0000ms, 2438ms total)
T1120 146:547 JLINK_IsHalted()  returns FALSE (0000ms, 2438ms total)
T1120 146:648 JLINK_IsHalted()  returns FALSE (0001ms, 2439ms total)
T1120 146:749 JLINK_IsHalted()  returns FALSE (0001ms, 2439ms total)
T1120 146:851 JLINK_IsHalted()  returns FALSE (0001ms, 2439ms total)
T26E8 146:952 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2439ms total)
T26E8 146:953 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 2439ms total)
T26E8 146:954 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0002ms, 2441ms total)
T26E8 146:956 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0000ms, 2441ms total)
T26E8 146:957 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2442ms total)
T1120 146:958 JLINK_IsHalted()  returns FALSE (0000ms, 2442ms total)
T1120 147:060 JLINK_IsHalted()  returns FALSE (0001ms, 2443ms total)
T1120 147:162 JLINK_IsHalted()  returns FALSE (0001ms, 2443ms total)
T1120 147:263 JLINK_IsHalted()  returns FALSE (0001ms, 2443ms total)
T1120 147:364 JLINK_IsHalted()  returns FALSE (0001ms, 2443ms total)
T26E8 147:465 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 2442ms total)
T26E8 147:465 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0002ms, 2444ms total)
T26E8 147:467 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2445ms total)
T26E8 147:468 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2446ms total)
T26E8 147:470 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2447ms total)
T1120 147:471 JLINK_IsHalted()  returns FALSE (0000ms, 2447ms total)
T1120 147:573 JLINK_IsHalted()  returns FALSE (0000ms, 2447ms total)
T1120 147:675 JLINK_IsHalted()  returns FALSE (0001ms, 2448ms total)
T1120 147:776 JLINK_IsHalted()  returns FALSE (0001ms, 2448ms total)
T1120 147:877 JLINK_IsHalted()  returns FALSE (0001ms, 2448ms total)
T26E8 147:979 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2448ms total)
T26E8 147:980 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 2448ms total)
T26E8 147:981 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2449ms total)
T26E8 147:982 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2450ms total)
T26E8 147:983 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2451ms total)
T1120 147:984 JLINK_IsHalted()  returns FALSE (0000ms, 2451ms total)
T1120 148:086 JLINK_IsHalted()  returns FALSE (0001ms, 2452ms total)
T1120 148:188 JLINK_IsHalted()  returns FALSE (0000ms, 2451ms total)
T1120 148:289 JLINK_IsHalted()  returns FALSE (0001ms, 2452ms total)
T1120 148:391 JLINK_IsHalted()  returns FALSE (0000ms, 2451ms total)
T1120 148:492 JLINK_IsHalted()  returns FALSE (0001ms, 2452ms total)
T26E8 148:593 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2452ms total)
T26E8 148:594 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2453ms total)
T26E8 148:597 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2454ms total)
T26E8 148:598 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2455ms total)
T26E8 148:599 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2456ms total)
T1120 148:600 JLINK_IsHalted()  returns FALSE (0001ms, 2457ms total)
T1120 148:702 JLINK_IsHalted()  returns FALSE (0001ms, 2457ms total)
T1120 148:803 JLINK_IsHalted()  returns FALSE (0001ms, 2457ms total)
T1120 148:905 JLINK_IsHalted()  returns FALSE (0001ms, 2457ms total)
T1120 149:006 JLINK_IsHalted()  returns FALSE (0001ms, 2457ms total)
T26E8 149:108 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2457ms total)
T26E8 149:109 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 2457ms total)
T26E8 149:115 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0000ms, 2457ms total)
T26E8 149:115 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2458ms total)
T26E8 149:117 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2459ms total)
T1120 149:118 JLINK_IsHalted()  returns FALSE (0001ms, 2460ms total)
T1120 149:219 JLINK_IsHalted()  returns FALSE (0001ms, 2460ms total)
T1120 149:321 JLINK_IsHalted()  returns FALSE (0001ms, 2460ms total)
T1120 149:422 JLINK_IsHalted()  returns FALSE (0001ms, 2460ms total)
T1120 149:524 JLINK_IsHalted()  returns FALSE (0001ms, 2460ms total)
T26E8 149:626 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2460ms total)
T26E8 149:627 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2461ms total)
T26E8 149:630 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2462ms total)
T26E8 149:631 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0000ms, 2462ms total)
T26E8 149:632 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2463ms total)
T1120 149:633 JLINK_IsHalted()  returns FALSE (0000ms, 2463ms total)
T1120 149:734 JLINK_IsHalted()  returns FALSE (0001ms, 2464ms total)
T1120 149:836 JLINK_IsHalted()  returns FALSE (0001ms, 2464ms total)
T1120 149:937 JLINK_IsHalted()  returns FALSE (0000ms, 2463ms total)
T1120 150:038 JLINK_IsHalted()  returns FALSE (0001ms, 2464ms total)
T26E8 150:140 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2464ms total)
T26E8 150:141 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 2464ms total)
T26E8 150:143 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0002ms, 2467ms total)
T26E8 150:145 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0000ms, 2467ms total)
T26E8 150:146 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2468ms total)
T1120 150:147 JLINK_IsHalted()  returns FALSE (0001ms, 2469ms total)
T1120 150:249 JLINK_IsHalted()  returns FALSE (0001ms, 2469ms total)
T1120 150:350 JLINK_IsHalted()  returns FALSE (0001ms, 2469ms total)
T1120 150:452 JLINK_IsHalted()  returns FALSE (0001ms, 2469ms total)
T1120 150:553 JLINK_IsHalted()  returns FALSE (0001ms, 2469ms total)
T26E8 150:655 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2469ms total)
T26E8 150:656 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2470ms total)
T26E8 150:658 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2471ms total)
T26E8 150:659 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0000ms, 2471ms total)
T26E8 150:660 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2472ms total)
T1120 150:661 JLINK_IsHalted()  returns FALSE (0001ms, 2473ms total)
T1120 150:763 JLINK_IsHalted()  returns FALSE (0001ms, 2473ms total)
T1120 150:865 JLINK_IsHalted()  returns FALSE (0001ms, 2473ms total)
T1120 150:966 JLINK_IsHalted()  returns FALSE (0001ms, 2473ms total)
T1120 151:067 JLINK_IsHalted()  returns FALSE (0001ms, 2473ms total)
T26E8 151:168 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2473ms total)
T26E8 151:169 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 2473ms total)
T26E8 151:170 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2474ms total)
T26E8 151:171 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2475ms total)
T26E8 151:172 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2476ms total)
T1120 151:173 JLINK_IsHalted()  returns FALSE (0001ms, 2477ms total)
T1120 151:275 JLINK_IsHalted()  returns FALSE (0001ms, 2477ms total)
T1120 151:377 JLINK_IsHalted()  returns FALSE (0000ms, 2476ms total)
T1120 151:478 JLINK_IsHalted()  returns FALSE (0001ms, 2477ms total)
T1120 151:579 JLINK_IsHalted()  returns FALSE (0001ms, 2477ms total)
T26E8 151:681 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2477ms total)
T26E8 151:682 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 2477ms total)
T26E8 151:683 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2478ms total)
T26E8 151:684 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2479ms total)
T26E8 151:685 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2480ms total)
T1120 151:686 JLINK_IsHalted()  returns FALSE (0001ms, 2481ms total)
T1120 151:788 JLINK_IsHalted()  returns FALSE (0001ms, 2481ms total)
T1120 151:889 JLINK_IsHalted()  returns FALSE (0001ms, 2481ms total)
T1120 151:991 JLINK_IsHalted()  returns FALSE (0000ms, 2480ms total)
T1120 152:092 JLINK_IsHalted()  returns FALSE (0001ms, 2481ms total)
T1120 152:194 JLINK_IsHalted()  returns FALSE (0001ms, 2481ms total)
T26E8 152:296 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 2480ms total)
T26E8 152:296 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2481ms total)
T26E8 152:299 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2482ms total)
T26E8 152:300 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2483ms total)
T26E8 152:302 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2484ms total)
T1120 152:303 JLINK_IsHalted()  returns FALSE (0001ms, 2485ms total)
T1120 152:404 JLINK_IsHalted()  returns FALSE (0001ms, 2485ms total)
T1120 152:505 JLINK_IsHalted()  returns FALSE (0001ms, 2485ms total)
T1120 152:607 JLINK_IsHalted()  returns FALSE (0001ms, 2485ms total)
T1120 152:708 JLINK_IsHalted()  returns FALSE (0001ms, 2485ms total)
T26E8 152:810 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 2484ms total)
T26E8 152:810 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2485ms total)
T26E8 152:812 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2486ms total)
T26E8 152:813 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0000ms, 2486ms total)
T26E8 152:814 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2487ms total)
T1120 152:815 JLINK_IsHalted()  returns FALSE (0001ms, 2488ms total)
T1120 152:917 JLINK_IsHalted()  returns FALSE (0000ms, 2487ms total)
T1120 153:018 JLINK_IsHalted()  returns FALSE (0000ms, 2487ms total)
T1120 153:119 JLINK_IsHalted()  returns FALSE (0000ms, 2487ms total)
T1120 153:220 JLINK_IsHalted()  returns FALSE (0000ms, 2487ms total)
T26E8 153:322 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2488ms total)
T26E8 153:323 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 2488ms total)
T26E8 153:323 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0002ms, 2490ms total)
T26E8 153:325 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2491ms total)
T26E8 153:326 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2492ms total)
T1120 153:327 JLINK_IsHalted()  returns FALSE (0000ms, 2492ms total)
T1120 153:429 JLINK_IsHalted()  returns FALSE (0000ms, 2492ms total)
T1120 153:530 JLINK_IsHalted()  returns FALSE (0001ms, 2493ms total)
T1120 153:632 JLINK_IsHalted()  returns FALSE (0001ms, 2493ms total)
T1120 153:733 JLINK_IsHalted()  returns FALSE (0000ms, 2492ms total)
T1120 153:835 JLINK_IsHalted()  returns FALSE (0000ms, 2492ms total)
T26E8 153:936 JLINK_ReadMemEx(0x0000A540, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000A540) - Data: 01 2D  returns 0x02 (0001ms, 2493ms total)
T26E8 153:937 JLINK_ReadMemEx(0x0000A542, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000A542) - Data: 03 D1  returns 0x02 (0001ms, 2494ms total)
T26E8 153:939 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 2494ms total)
T26E8 153:939 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0002ms, 2496ms total)
T26E8 153:942 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0000ms, 2496ms total)
T26E8 153:942 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2497ms total)
T26E8 153:944 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2498ms total)
T1120 153:945 JLINK_IsHalted()  returns FALSE (0000ms, 2498ms total)
T1120 154:046 JLINK_IsHalted()  returns FALSE (0000ms, 2498ms total)
T1120 154:148 JLINK_IsHalted()  returns FALSE (0000ms, 2498ms total)
T1120 154:249 JLINK_IsHalted()  returns FALSE (0000ms, 2498ms total)
T26E8 154:335 JLINK_ReadMemEx(0x0000A53C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000A53C) - Data: 02 20  returns 0x02 (0001ms, 2499ms total)
T26E8 154:336 JLINK_ReadMemEx(0x0000A53E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000A53E) - Data: F8 E7  returns 0x02 (0001ms, 2500ms total)
T26E8 154:337 JLINK_ReadMemEx(0x0000A53E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000A53E) - Data: F8 E7  returns 0x02 (0001ms, 2501ms total)
T26E8 154:338 JLINK_ReadMemEx(0x0000A540, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000A540) - Data: 01 2D  returns 0x02 (0001ms, 2502ms total)
T1120 154:351 JLINK_IsHalted()  returns FALSE (0000ms, 2502ms total)
T26E8 154:452 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 2502ms total)
T26E8 154:452 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2503ms total)
T26E8 154:454 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2504ms total)
T26E8 154:455 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2505ms total)
T26E8 154:456 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2506ms total)
T1120 154:457 JLINK_IsHalted()  returns FALSE (0001ms, 2507ms total)
T1120 154:559 JLINK_IsHalted()  returns FALSE (0000ms, 2506ms total)
T1120 154:660 JLINK_IsHalted()  returns FALSE (0000ms, 2506ms total)
T1120 154:762 JLINK_IsHalted()  returns FALSE (0000ms, 2506ms total)
T1120 154:864 JLINK_IsHalted()  returns FALSE (0001ms, 2507ms total)
T26E8 154:965 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2507ms total)
T26E8 154:966 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2508ms total)
T26E8 154:969 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2509ms total)
T26E8 154:970 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2510ms total)
T26E8 154:972 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2511ms total)
T1120 154:973 JLINK_IsHalted()  returns FALSE (0001ms, 2512ms total)
T1120 155:075 JLINK_IsHalted()  returns FALSE (0000ms, 2511ms total)
T1120 155:177 JLINK_IsHalted()  returns FALSE (0000ms, 2511ms total)
T1120 155:278 JLINK_IsHalted()  returns FALSE (0000ms, 2511ms total)
T1120 155:379 JLINK_IsHalted()  returns FALSE (0000ms, 2511ms total)
T26E8 155:480 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 2511ms total)
T26E8 155:480 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2512ms total)
T26E8 155:482 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2513ms total)
T26E8 155:483 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0000ms, 2513ms total)
T26E8 155:483 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0002ms, 2515ms total)
T1120 155:485 JLINK_IsHalted()  returns FALSE (0000ms, 2515ms total)
T1120 155:587 JLINK_IsHalted()  returns FALSE (0000ms, 2515ms total)
T1120 155:688 JLINK_IsHalted()  returns FALSE (0000ms, 2515ms total)
T1120 155:789 JLINK_IsHalted()  returns FALSE (0000ms, 2515ms total)
T1120 155:890 JLINK_IsHalted()  returns FALSE (0001ms, 2516ms total)
T26E8 155:992 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2516ms total)
T26E8 155:993 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2517ms total)
T26E8 155:995 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2518ms total)
T26E8 155:996 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2519ms total)
T26E8 155:997 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2520ms total)
T1120 155:998 JLINK_IsHalted()  returns FALSE (0001ms, 2521ms total)
T1120 156:100 JLINK_IsHalted()  returns FALSE (0001ms, 2521ms total)
T1120 156:201 JLINK_IsHalted()  returns FALSE (0000ms, 2520ms total)
T1120 156:302 JLINK_IsHalted()  returns FALSE (0000ms, 2520ms total)
T1120 156:404 JLINK_IsHalted()  returns FALSE (0000ms, 2520ms total)
T1120 156:506 JLINK_IsHalted()  returns FALSE (0000ms, 2520ms total)
T26E8 156:607 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2521ms total)
T26E8 156:608 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2522ms total)
T26E8 156:614 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2523ms total)
T26E8 156:615 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2524ms total)
T26E8 156:617 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2525ms total)
T1120 156:618 JLINK_IsHalted()  returns FALSE (0001ms, 2526ms total)
T1120 156:720 JLINK_IsHalted()  returns FALSE (0001ms, 2526ms total)
T1120 156:822 JLINK_IsHalted()  returns FALSE (0000ms, 2525ms total)
T1120 156:924 JLINK_IsHalted()  returns FALSE (0000ms, 2525ms total)
T1120 157:025 JLINK_IsHalted()  returns FALSE (0001ms, 2526ms total)
T26E8 157:129 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0002ms, 2527ms total)
T26E8 157:131 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2528ms total)
T26E8 157:134 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0002ms, 2530ms total)
T26E8 157:136 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0000ms, 2530ms total)
T26E8 157:137 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2531ms total)
T1120 157:138 JLINK_IsHalted()  returns FALSE (0001ms, 2532ms total)
T1120 157:240 JLINK_IsHalted()  returns FALSE (0001ms, 2532ms total)
T1120 157:342 JLINK_IsHalted()  returns FALSE (0000ms, 2531ms total)
T1120 157:444 JLINK_IsHalted()  returns FALSE (0000ms, 2531ms total)
T1120 157:545 JLINK_IsHalted()  returns FALSE (0000ms, 2531ms total)
T26E8 157:646 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2532ms total)
T26E8 157:647 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2533ms total)
T26E8 157:649 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2534ms total)
T26E8 157:650 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0000ms, 2534ms total)
T26E8 157:650 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0002ms, 2536ms total)
T1120 157:652 JLINK_IsHalted()  returns FALSE (0001ms, 2537ms total)
T1120 157:753 JLINK_IsHalted()  returns FALSE (0000ms, 2536ms total)
T1120 157:854 JLINK_IsHalted()  returns FALSE (0000ms, 2536ms total)
T1120 157:956 JLINK_IsHalted()  returns FALSE (0000ms, 2536ms total)
T1120 158:057 JLINK_IsHalted()  returns FALSE (0001ms, 2537ms total)
T26E8 158:158 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2537ms total)
T26E8 158:159 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 2537ms total)
T26E8 158:161 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2538ms total)
T26E8 158:162 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2539ms total)
T26E8 158:164 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2540ms total)
T1120 158:165 JLINK_IsHalted()  returns FALSE (0001ms, 2541ms total)
T1120 158:267 JLINK_IsHalted()  returns FALSE (0001ms, 2541ms total)
T1120 158:369 JLINK_IsHalted()  returns FALSE (0000ms, 2540ms total)
T1120 158:470 JLINK_IsHalted()  returns FALSE (0001ms, 2541ms total)
T26E8 158:533 JLINK_ReadMemEx(0x200002AE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002AE) - Data: 00  returns 0x01 (0001ms, 2541ms total)
T26E8 158:534 JLINK_ReadMemEx(0x200002B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200002B0) - Data: 83 00  returns 0x02 (0001ms, 2542ms total)
T26E8 158:535 JLINK_ReadMemEx(0x200002B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200002B2) - Data: 00 00  returns 0x02 (0000ms, 2542ms total)
T26E8 158:535 JLINK_ReadMemEx(0x200002B4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002B4) - Data: 00  returns 0x01 (0001ms, 2543ms total)
T26E8 158:536 JLINK_ReadMemEx(0x200002AE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002AE) - Data: 00  returns 0x01 (0001ms, 2544ms total)
T26E8 158:537 JLINK_ReadMemEx(0x200002B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200002B0) - Data: 83 00  returns 0x02 (0001ms, 2545ms total)
T26E8 158:538 JLINK_ReadMemEx(0x200002B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200002B2) - Data: 00 00  returns 0x02 (0000ms, 2545ms total)
T26E8 158:538 JLINK_ReadMemEx(0x200002B4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002B4) - Data: 00  returns 0x01 (0001ms, 2546ms total)
T26E8 158:545 JLINK_ReadMemEx(0x200002AE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002AE) - Data: 00  returns 0x01 (0001ms, 2547ms total)
T26E8 158:546 JLINK_ReadMemEx(0x200002B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200002B0) - Data: 83 00  returns 0x02 (0001ms, 2548ms total)
T26E8 158:547 JLINK_ReadMemEx(0x200002B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200002B2) - Data: 00 00  returns 0x02 (0001ms, 2549ms total)
T26E8 158:548 JLINK_ReadMemEx(0x200002B4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002B4) - Data: 00  returns 0x01 (0001ms, 2550ms total)
T1120 158:572 JLINK_IsHalted()  returns FALSE (0000ms, 2550ms total)
T26E8 158:675 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2551ms total)
T26E8 158:676 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2552ms total)
T26E8 158:678 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2553ms total)
T26E8 158:679 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0002ms, 2555ms total)
T26E8 158:681 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2556ms total)
T26E8 158:682 JLINK_ReadMemEx(0x200002AE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002AE) - Data: 00  returns 0x01 (0001ms, 2557ms total)
T26E8 158:683 JLINK_ReadMemEx(0x200002B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200002B0) - Data: 83 00  returns 0x02 (0001ms, 2558ms total)
T26E8 158:684 JLINK_ReadMemEx(0x200002B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200002B2) - Data: 00 00  returns 0x02 (0001ms, 2559ms total)
T26E8 158:685 JLINK_ReadMemEx(0x200002B4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002B4) - Data: 00  returns 0x01 (0000ms, 2559ms total)
T1120 158:685 JLINK_IsHalted()  returns FALSE (0001ms, 2560ms total)
T1120 158:787 JLINK_IsHalted()  returns FALSE (0000ms, 2559ms total)
T1120 158:888 JLINK_IsHalted()  returns FALSE (0001ms, 2560ms total)
T1120 158:989 JLINK_IsHalted()  returns FALSE (0000ms, 2559ms total)
T1120 159:091 JLINK_IsHalted()  returns FALSE (0001ms, 2560ms total)
T26E8 159:128 JLINK_ReadMemEx(0x200002AE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002AE) - Data: 00  returns 0x01 (0001ms, 2560ms total)
T26E8 159:129 JLINK_ReadMemEx(0x200002B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200002B0) - Data: 83 00  returns 0x02 (0001ms, 2561ms total)
T26E8 159:130 JLINK_ReadMemEx(0x200002B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200002B2) - Data: 00 00  returns 0x02 (0000ms, 2561ms total)
T26E8 159:130 JLINK_ReadMemEx(0x200002B4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002B4) - Data: 00  returns 0x01 (0001ms, 2562ms total)
T26E8 159:193 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2563ms total)
T26E8 159:194 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2564ms total)
T26E8 159:196 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2565ms total)
T26E8 159:197 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0000ms, 2565ms total)
T26E8 159:197 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0002ms, 2567ms total)
T1120 159:199 JLINK_IsHalted()  returns FALSE (0001ms, 2568ms total)
T1120 159:301 JLINK_IsHalted()  returns FALSE (0000ms, 2567ms total)
T1120 159:402 JLINK_IsHalted()  returns FALSE (0001ms, 2568ms total)
T26E8 159:479 JLINK_ReadMemEx(0x200002B6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002B6) - Data: 00  returns 0x01 (0001ms, 2568ms total)
T26E8 159:480 JLINK_ReadMemEx(0x200002B7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002B7) - Data: 00  returns 0x01 (0002ms, 2570ms total)
T26E8 159:482 JLINK_ReadMemEx(0x200002B8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002B8) - Data: 00  returns 0x01 (0001ms, 2571ms total)
T26E8 159:483 JLINK_ReadMemEx(0x200002B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002B9) - Data: 00  returns 0x01 (0001ms, 2572ms total)
T26E8 159:484 JLINK_ReadMemEx(0x200002BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002BA) - Data: 00  returns 0x01 (0000ms, 2572ms total)
T26E8 159:484 JLINK_ReadMemEx(0x200002BB, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002BB) - Data: F1 6B E6 40  returns 0x04 (0001ms, 2573ms total)
T26E8 159:485 JLINK_ReadMemEx(0x200002BF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002BF) - Data: 00  returns 0x01 (0000ms, 2573ms total)
T26E8 159:485 JLINK_ReadMemEx(0x200002C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002C0) - Data: 23 FF BF 40  returns 0x04 (0002ms, 2575ms total)
T26E8 159:487 JLINK_ReadMemEx(0x200002C4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002C4) - Data: 00  returns 0x01 (0000ms, 2575ms total)
T26E8 159:487 JLINK_ReadMemEx(0x200002C5, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002C5) - Data: D0 3C D9 41  returns 0x04 (0001ms, 2576ms total)
T26E8 159:488 JLINK_ReadMemEx(0x200002C9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002C9) - Data: 64  returns 0x01 (0001ms, 2577ms total)
T26E8 159:489 JLINK_ReadMemEx(0x200002CA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CA) - Data: 64  returns 0x01 (0001ms, 2578ms total)
T26E8 159:490 JLINK_ReadMemEx(0x200002CB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CB) - Data: 64  returns 0x01 (0001ms, 2579ms total)
T26E8 159:491 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 40  returns 0x01 (0000ms, 2579ms total)
T26E8 159:491 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 00  returns 0x01 (0000ms, 2579ms total)
T26E8 159:491 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 00  returns 0x01 (0001ms, 2580ms total)
T26E8 159:492 JLINK_ReadMemEx(0x200002B6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002B6) - Data: 00  returns 0x01 (0001ms, 2581ms total)
T26E8 159:493 JLINK_ReadMemEx(0x200002B7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002B7) - Data: 00  returns 0x01 (0000ms, 2581ms total)
T26E8 159:494 JLINK_ReadMemEx(0x200002B8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002B8) - Data: 00  returns 0x01 (0001ms, 2583ms total)
T26E8 159:495 JLINK_ReadMemEx(0x200002B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002B9) - Data: 00  returns 0x01 (0001ms, 2584ms total)
T26E8 159:496 JLINK_ReadMemEx(0x200002BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002BA) - Data: 00  returns 0x01 (0001ms, 2585ms total)
T26E8 159:497 JLINK_ReadMemEx(0x200002BB, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002BB) - Data: F1 6B E6 40  returns 0x04 (0000ms, 2585ms total)
T26E8 159:497 JLINK_ReadMemEx(0x200002BF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002BF) - Data: 00  returns 0x01 (0002ms, 2587ms total)
T26E8 159:499 JLINK_ReadMemEx(0x200002C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002C0) - Data: 23 FF BF 40  returns 0x04 (0000ms, 2587ms total)
T26E8 159:499 JLINK_ReadMemEx(0x200002C4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002C4) - Data: 00  returns 0x01 (0001ms, 2588ms total)
T26E8 159:500 JLINK_ReadMemEx(0x200002C5, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002C5) - Data: D0 3C D9 41  returns 0x04 (0000ms, 2588ms total)
T26E8 159:500 JLINK_ReadMemEx(0x200002C9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002C9) - Data: 64  returns 0x01 (0001ms, 2589ms total)
T26E8 159:501 JLINK_ReadMemEx(0x200002CA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CA) - Data: 64  returns 0x01 (0001ms, 2590ms total)
T26E8 159:502 JLINK_ReadMemEx(0x200002CB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CB) - Data: 64  returns 0x01 (0002ms, 2592ms total)
T26E8 159:504 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 40  returns 0x01 (0001ms, 2593ms total)
T1120 159:505 JLINK_IsHalted()  returns FALSE (0000ms, 2592ms total)
T26E8 159:505 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 00  returns 0x01 (0001ms, 2593ms total)
T26E8 159:506 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 00  returns 0x01 (0001ms, 2594ms total)
T26E8 159:517 JLINK_ReadMemEx(0x200002B6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002B6) - Data: 00  returns 0x01 (0000ms, 2594ms total)
T26E8 159:517 JLINK_ReadMemEx(0x200002B7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002B7) - Data: 00  returns 0x01 (0001ms, 2595ms total)
T26E8 159:518 JLINK_ReadMemEx(0x200002B8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002B8) - Data: 00  returns 0x01 (0001ms, 2596ms total)
T26E8 159:519 JLINK_ReadMemEx(0x200002B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002B9) - Data: 00  returns 0x01 (0001ms, 2597ms total)
T26E8 159:520 JLINK_ReadMemEx(0x200002BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002BA) - Data: 00  returns 0x01 (0000ms, 2597ms total)
T26E8 159:520 JLINK_ReadMemEx(0x200002BB, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002BB) - Data: F1 6B E6 40  returns 0x04 (0001ms, 2598ms total)
T26E8 159:521 JLINK_ReadMemEx(0x200002BF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002BF) - Data: 00  returns 0x01 (0001ms, 2599ms total)
T26E8 159:522 JLINK_ReadMemEx(0x200002C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002C0) - Data: 23 FF BF 40  returns 0x04 (0001ms, 2600ms total)
T26E8 159:523 JLINK_ReadMemEx(0x200002C4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002C4) - Data: 00  returns 0x01 (0000ms, 2600ms total)
T26E8 159:523 JLINK_ReadMemEx(0x200002C5, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002C5) - Data: D0 3C D9 41  returns 0x04 (0001ms, 2601ms total)
T26E8 159:524 JLINK_ReadMemEx(0x200002C9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002C9) - Data: 64  returns 0x01 (0001ms, 2602ms total)
T26E8 159:525 JLINK_ReadMemEx(0x200002CA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CA) - Data: 64  returns 0x01 (0001ms, 2603ms total)
T26E8 159:526 JLINK_ReadMemEx(0x200002CB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CB) - Data: 64  returns 0x01 (0001ms, 2604ms total)
T26E8 159:527 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 40  returns 0x01 (0000ms, 2604ms total)
T26E8 159:527 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 00  returns 0x01 (0001ms, 2605ms total)
T26E8 159:528 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 00  returns 0x01 (0001ms, 2606ms total)
T1120 159:605 JLINK_IsHalted()  returns FALSE (0001ms, 2607ms total)
T26E8 159:707 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2607ms total)
T26E8 159:708 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2608ms total)
T26E8 159:711 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2609ms total)
T26E8 159:712 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2610ms total)
T26E8 159:714 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2611ms total)
T26E8 159:715 JLINK_ReadMemEx(0x200002B6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002B6) - Data: 00  returns 0x01 (0002ms, 2613ms total)
T26E8 159:717 JLINK_ReadMemEx(0x200002B7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002B7) - Data: 00  returns 0x01 (0001ms, 2614ms total)
T26E8 159:718 JLINK_ReadMemEx(0x200002B8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002B8) - Data: 00  returns 0x01 (0000ms, 2614ms total)
T26E8 159:718 JLINK_ReadMemEx(0x200002B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002B9) - Data: 00  returns 0x01 (0000ms, 2614ms total)
T26E8 159:718 JLINK_ReadMemEx(0x200002BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002BA) - Data: 00  returns 0x01 (0001ms, 2615ms total)
T26E8 159:719 JLINK_ReadMemEx(0x200002BB, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002BB) - Data: F1 6B E6 40  returns 0x04 (0001ms, 2616ms total)
T26E8 159:720 JLINK_ReadMemEx(0x200002BF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002BF) - Data: 00  returns 0x01 (0001ms, 2617ms total)
T26E8 159:721 JLINK_ReadMemEx(0x200002C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002C0) - Data: 23 FF BF 40  returns 0x04 (0001ms, 2618ms total)
T26E8 159:722 JLINK_ReadMemEx(0x200002C4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002C4) - Data: 00  returns 0x01 (0001ms, 2619ms total)
T26E8 159:723 JLINK_ReadMemEx(0x200002C5, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002C5) - Data: D0 3C D9 41  returns 0x04 (0001ms, 2620ms total)
T26E8 159:724 JLINK_ReadMemEx(0x200002C9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002C9) - Data: 64  returns 0x01 (0000ms, 2620ms total)
T26E8 159:724 JLINK_ReadMemEx(0x200002CA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CA) - Data: 64  returns 0x01 (0001ms, 2621ms total)
T26E8 159:725 JLINK_ReadMemEx(0x200002CB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CB) - Data: 64  returns 0x01 (0001ms, 2622ms total)
T26E8 159:726 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 40  returns 0x01 (0001ms, 2623ms total)
T26E8 159:727 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 00  returns 0x01 (0001ms, 2624ms total)
T26E8 159:728 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 00  returns 0x01 (0001ms, 2625ms total)
T1120 159:729 JLINK_IsHalted()  returns FALSE (0000ms, 2625ms total)
T1120 159:831 JLINK_IsHalted()  returns FALSE (0001ms, 2626ms total)
T1120 159:932 JLINK_IsHalted()  returns FALSE (0001ms, 2626ms total)
T1120 160:034 JLINK_IsHalted()  returns FALSE (0001ms, 2626ms total)
T1120 160:135 JLINK_IsHalted()  returns FALSE (0001ms, 2626ms total)
T26E8 160:236 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2626ms total)
T26E8 160:237 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0002ms, 2628ms total)
T26E8 160:242 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0002ms, 2630ms total)
T26E8 160:244 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2631ms total)
T26E8 160:247 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2632ms total)
T26E8 160:248 JLINK_ReadMemEx(0x200002B6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002B6) - Data: 00  returns 0x01 (0001ms, 2633ms total)
T26E8 160:249 JLINK_ReadMemEx(0x200002B7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002B7) - Data: 00  returns 0x01 (0001ms, 2634ms total)
T26E8 160:250 JLINK_ReadMemEx(0x200002B8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002B8) - Data: 00  returns 0x01 (0000ms, 2634ms total)
T26E8 160:250 JLINK_ReadMemEx(0x200002B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002B9) - Data: 00  returns 0x01 (0001ms, 2635ms total)
T26E8 160:251 JLINK_ReadMemEx(0x200002BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002BA) - Data: 00  returns 0x01 (0001ms, 2636ms total)
T26E8 160:252 JLINK_ReadMemEx(0x200002BB, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002BB) - Data: F1 6B E6 40  returns 0x04 (0001ms, 2637ms total)
T26E8 160:253 JLINK_ReadMemEx(0x200002BF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002BF) - Data: 00  returns 0x01 (0001ms, 2638ms total)
T26E8 160:254 JLINK_ReadMemEx(0x200002C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002C0) - Data: 23 FF BF 40  returns 0x04 (0001ms, 2639ms total)
T26E8 160:255 JLINK_ReadMemEx(0x200002C4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002C4) - Data: 00  returns 0x01 (0000ms, 2639ms total)
T26E8 160:255 JLINK_ReadMemEx(0x200002C5, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002C5) - Data: D0 3C D9 41  returns 0x04 (0001ms, 2640ms total)
T26E8 160:256 JLINK_ReadMemEx(0x200002C9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002C9) - Data: 64  returns 0x01 (0001ms, 2641ms total)
T26E8 160:257 JLINK_ReadMemEx(0x200002CA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CA) - Data: 64  returns 0x01 (0001ms, 2642ms total)
T26E8 160:258 JLINK_ReadMemEx(0x200002CB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CB) - Data: 64  returns 0x01 (0000ms, 2642ms total)
T26E8 160:258 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 40  returns 0x01 (0000ms, 2642ms total)
T26E8 160:258 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 00  returns 0x01 (0002ms, 2644ms total)
T26E8 160:260 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 00  returns 0x01 (0001ms, 2645ms total)
T1120 160:261 JLINK_IsHalted()  returns FALSE (0001ms, 2646ms total)
T1120 160:363 JLINK_IsHalted()  returns FALSE (0001ms, 2646ms total)
T1120 160:465 JLINK_IsHalted()  returns FALSE (0000ms, 2645ms total)
T26E8 160:467 JLINK_ReadMemEx(0x200002B6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002B6) - Data: 00  returns 0x01 (0001ms, 2646ms total)
T26E8 160:468 JLINK_ReadMemEx(0x200002B7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002B7) - Data: 00  returns 0x01 (0001ms, 2647ms total)
T26E8 160:469 JLINK_ReadMemEx(0x200002B8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002B8) - Data: 00  returns 0x01 (0000ms, 2647ms total)
T26E8 160:469 JLINK_ReadMemEx(0x200002B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002B9) - Data: 00  returns 0x01 (0001ms, 2648ms total)
T26E8 160:470 JLINK_ReadMemEx(0x200002BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002BA) - Data: 00  returns 0x01 (0001ms, 2649ms total)
T26E8 160:471 JLINK_ReadMemEx(0x200002BB, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002BB) - Data: F1 6B E6 40  returns 0x04 (0001ms, 2650ms total)
T26E8 160:472 JLINK_ReadMemEx(0x200002BF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002BF) - Data: 00  returns 0x01 (0001ms, 2651ms total)
T26E8 160:473 JLINK_ReadMemEx(0x200002C0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002C0) - Data: 23 FF BF 40  returns 0x04 (0000ms, 2651ms total)
T26E8 160:473 JLINK_ReadMemEx(0x200002C4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002C4) - Data: 00  returns 0x01 (0001ms, 2652ms total)
T26E8 160:474 JLINK_ReadMemEx(0x200002C5, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200002C5) - Data: D0 3C D9 41  returns 0x04 (0001ms, 2653ms total)
T26E8 160:475 JLINK_ReadMemEx(0x200002C9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002C9) - Data: 64  returns 0x01 (0001ms, 2654ms total)
T26E8 160:476 JLINK_ReadMemEx(0x200002CA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CA) - Data: 64  returns 0x01 (0000ms, 2654ms total)
T26E8 160:476 JLINK_ReadMemEx(0x200002CB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CB) - Data: 64  returns 0x01 (0001ms, 2655ms total)
T26E8 160:477 JLINK_ReadMemEx(0x200002CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CC) - Data: 40  returns 0x01 (0001ms, 2656ms total)
T26E8 160:478 JLINK_ReadMemEx(0x200002CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CD) - Data: 00  returns 0x01 (0000ms, 2656ms total)
T26E8 160:478 JLINK_ReadMemEx(0x200002CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002CE) - Data: 00  returns 0x01 (0001ms, 2657ms total)
T1120 160:565 JLINK_IsHalted()  returns FALSE (0000ms, 2657ms total)
T1120 160:667 JLINK_IsHalted()  returns FALSE (0000ms, 2657ms total)
T26E8 160:769 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 2657ms total)
T26E8 160:769 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2658ms total)
T26E8 160:771 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2659ms total)
T26E8 160:772 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0000ms, 2659ms total)
T26E8 160:773 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2660ms total)
T1120 160:774 JLINK_IsHalted()  returns FALSE (0001ms, 2661ms total)
T1120 160:876 JLINK_IsHalted()  returns FALSE (0000ms, 2660ms total)
T1120 160:977 JLINK_IsHalted()  returns FALSE (0001ms, 2661ms total)
T1120 161:078 JLINK_IsHalted()  returns FALSE (0000ms, 2660ms total)
T1120 161:180 JLINK_IsHalted()  returns FALSE (0001ms, 2661ms total)
T26E8 161:281 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2661ms total)
T26E8 161:282 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2662ms total)
T26E8 161:284 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2663ms total)
T26E8 161:285 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2664ms total)
T26E8 161:286 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2665ms total)
T1120 161:287 JLINK_IsHalted()  returns FALSE (0001ms, 2666ms total)
T1120 161:389 JLINK_IsHalted()  returns FALSE (0001ms, 2666ms total)
T1120 161:490 JLINK_IsHalted()  returns FALSE (0000ms, 2665ms total)
T1120 161:592 JLINK_IsHalted()  returns FALSE (0000ms, 2665ms total)
T1120 161:693 JLINK_IsHalted()  returns FALSE (0001ms, 2666ms total)
T26E8 161:794 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2666ms total)
T26E8 161:795 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0002ms, 2668ms total)
T26E8 161:799 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2669ms total)
T26E8 161:800 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0000ms, 2669ms total)
T26E8 161:800 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2670ms total)
T1120 161:802 JLINK_IsHalted()  returns FALSE (0000ms, 2670ms total)
T1120 161:904 JLINK_IsHalted()  returns FALSE (0001ms, 2671ms total)
T1120 162:005 JLINK_IsHalted()  returns FALSE (0001ms, 2671ms total)
T1120 162:107 JLINK_IsHalted()  returns FALSE (0001ms, 2671ms total)
T1120 162:208 JLINK_IsHalted()  returns FALSE (0001ms, 2671ms total)
T26E8 162:310 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 2670ms total)
T26E8 162:310 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2671ms total)
T26E8 162:312 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2672ms total)
T26E8 162:313 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2673ms total)
T26E8 162:314 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2674ms total)
T1120 162:315 JLINK_IsHalted()  returns FALSE (0001ms, 2675ms total)
T1120 162:417 JLINK_IsHalted()  returns FALSE (0001ms, 2675ms total)
T1120 162:518 JLINK_IsHalted()  returns FALSE (0001ms, 2675ms total)
T1120 162:620 JLINK_IsHalted()  returns FALSE (0001ms, 2675ms total)
T1120 162:722 JLINK_IsHalted()  returns FALSE (0001ms, 2675ms total)
T26E8 162:823 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2675ms total)
T26E8 162:824 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2676ms total)
T26E8 162:826 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0002ms, 2678ms total)
T26E8 162:828 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0000ms, 2678ms total)
T26E8 162:829 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0002ms, 2680ms total)
T1120 162:831 JLINK_IsHalted()  returns FALSE (0001ms, 2681ms total)
T1120 162:933 JLINK_IsHalted()  returns FALSE (0001ms, 2681ms total)
T1120 163:035 JLINK_IsHalted()  returns FALSE (0001ms, 2681ms total)
T1120 163:137 JLINK_IsHalted()  returns FALSE (0000ms, 2680ms total)
T1120 163:237 JLINK_IsHalted()  returns FALSE (0000ms, 2680ms total)
T26E8 163:339 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 2680ms total)
T26E8 163:339 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2681ms total)
T26E8 163:341 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2682ms total)
T26E8 163:342 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0000ms, 2682ms total)
T26E8 163:343 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2683ms total)
T1120 163:344 JLINK_IsHalted()  returns FALSE (0001ms, 2684ms total)
T1120 163:446 JLINK_IsHalted()  returns FALSE (0000ms, 2683ms total)
T1120 163:547 JLINK_IsHalted()  returns FALSE (0001ms, 2684ms total)
T1120 163:648 JLINK_IsHalted()  returns FALSE (0001ms, 2684ms total)
T1120 163:750 JLINK_IsHalted()  returns FALSE (0000ms, 2683ms total)
T1120 163:851 JLINK_IsHalted()  returns FALSE (0000ms, 2683ms total)
T26E8 163:959 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2684ms total)
T26E8 163:960 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2685ms total)
T26E8 163:962 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2686ms total)
T26E8 163:963 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0000ms, 2686ms total)
T26E8 163:964 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2687ms total)
T1120 163:965 JLINK_IsHalted()  returns FALSE (0001ms, 2688ms total)
T1120 164:066 JLINK_IsHalted()  returns FALSE (0000ms, 2687ms total)
T1120 164:168 JLINK_IsHalted()  returns FALSE (0001ms, 2688ms total)
T1120 164:269 JLINK_IsHalted()  returns FALSE (0000ms, 2687ms total)
T1120 164:370 JLINK_IsHalted()  returns FALSE (0001ms, 2688ms total)
T26E8 164:472 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 2687ms total)
T26E8 164:472 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2688ms total)
T26E8 164:474 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2689ms total)
T26E8 164:475 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2690ms total)
T26E8 164:476 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0002ms, 2692ms total)
T1120 164:478 JLINK_IsHalted()  returns FALSE (0001ms, 2693ms total)
T1120 164:579 JLINK_IsHalted()  returns FALSE (0000ms, 2692ms total)
T1120 164:681 JLINK_IsHalted()  returns FALSE (0000ms, 2692ms total)
T1120 164:782 JLINK_IsHalted()  returns FALSE (0000ms, 2692ms total)
T1120 164:883 JLINK_IsHalted()  returns FALSE (0000ms, 2692ms total)
T26E8 164:984 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2693ms total)
T26E8 164:985 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2694ms total)
T26E8 164:987 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2695ms total)
T26E8 164:988 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2696ms total)
T26E8 164:990 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0000ms, 2696ms total)
T1120 164:991 JLINK_IsHalted()  returns FALSE (0000ms, 2696ms total)
T1120 165:092 JLINK_IsHalted()  returns FALSE (0001ms, 2697ms total)
T1120 165:193 JLINK_IsHalted()  returns FALSE (0001ms, 2697ms total)
T1120 165:295 JLINK_IsHalted()  returns FALSE (0000ms, 2696ms total)
T1120 165:396 JLINK_IsHalted()  returns FALSE (0001ms, 2697ms total)
T26E8 165:498 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 2696ms total)
T26E8 165:498 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2697ms total)
T26E8 165:500 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0000ms, 2697ms total)
T26E8 165:501 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0000ms, 2697ms total)
T26E8 165:502 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2698ms total)
T1120 165:503 JLINK_IsHalted()  returns FALSE (0001ms, 2699ms total)
T1120 165:605 JLINK_IsHalted()  returns FALSE (0001ms, 2699ms total)
T1120 165:707 JLINK_IsHalted()  returns FALSE (0000ms, 2698ms total)
T1120 165:808 JLINK_IsHalted()  returns FALSE (0000ms, 2698ms total)
T1120 165:908 JLINK_IsHalted()  returns FALSE (0000ms, 2698ms total)
T26E8 166:010 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 2698ms total)
T26E8 166:011 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 2698ms total)
T26E8 166:012 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2699ms total)
T26E8 166:013 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2700ms total)
T26E8 166:014 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2701ms total)
T1120 166:015 JLINK_IsHalted()  returns FALSE (0000ms, 2701ms total)
T1120 166:116 JLINK_IsHalted()  returns FALSE (0000ms, 2701ms total)
T1120 166:217 JLINK_IsHalted()  returns FALSE (0001ms, 2702ms total)
T1120 166:319 JLINK_IsHalted()  returns FALSE (0000ms, 2701ms total)
T1120 166:420 JLINK_IsHalted()  returns FALSE (0000ms, 2701ms total)
T1120 166:522 JLINK_IsHalted()  returns FALSE (0000ms, 2701ms total)
T26E8 166:623 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2702ms total)
T26E8 166:624 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2703ms total)
T26E8 166:625 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2704ms total)
T26E8 166:626 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2705ms total)
T26E8 166:627 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0002ms, 2707ms total)
T1120 166:629 JLINK_IsHalted()  returns FALSE (0001ms, 2708ms total)
T1120 166:731 JLINK_IsHalted()  returns FALSE (0000ms, 2707ms total)
T1120 166:832 JLINK_IsHalted()  returns FALSE (0001ms, 2708ms total)
T1120 166:933 JLINK_IsHalted()  returns FALSE (0000ms, 2707ms total)
T1120 167:034 JLINK_IsHalted()  returns FALSE (0001ms, 2708ms total)
T26E8 167:136 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 2707ms total)
T26E8 167:136 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 2707ms total)
T26E8 167:137 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2708ms total)
T26E8 167:138 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2709ms total)
T26E8 167:139 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2710ms total)
T1120 167:140 JLINK_IsHalted()  returns FALSE (0001ms, 2711ms total)
T1120 167:243 JLINK_IsHalted()  returns FALSE (0000ms, 2710ms total)
T1120 167:344 JLINK_IsHalted()  returns FALSE (0000ms, 2710ms total)
T1120 167:445 JLINK_IsHalted()  returns FALSE (0000ms, 2710ms total)
T1120 167:546 JLINK_IsHalted()  returns FALSE (0001ms, 2711ms total)
T1120 167:647 JLINK_IsHalted()  returns FALSE (0000ms, 2710ms total)
T26E8 167:749 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2711ms total)
T26E8 167:750 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2712ms total)
T26E8 167:752 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2713ms total)
T26E8 167:753 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2714ms total)
T26E8 167:755 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2715ms total)
T1120 167:756 JLINK_IsHalted()  returns FALSE (0000ms, 2715ms total)
T1120 167:857 JLINK_IsHalted()  returns FALSE (0001ms, 2716ms total)
T1120 167:959 JLINK_IsHalted()  returns FALSE (0001ms, 2716ms total)
T1120 168:061 JLINK_IsHalted()  returns FALSE (0001ms, 2716ms total)
T1120 168:163 JLINK_IsHalted()  returns FALSE (0001ms, 2716ms total)
T26E8 168:265 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2716ms total)
T26E8 168:266 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0000ms, 2716ms total)
T26E8 168:267 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2717ms total)
T26E8 168:268 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2718ms total)
T26E8 168:269 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2719ms total)
T1120 168:270 JLINK_IsHalted()  returns FALSE (0001ms, 2720ms total)
T1120 168:372 JLINK_IsHalted()  returns FALSE (0001ms, 2720ms total)
T1120 168:473 JLINK_IsHalted()  returns FALSE (0000ms, 2719ms total)
T1120 168:574 JLINK_IsHalted()  returns FALSE (0001ms, 2720ms total)
T1120 168:675 JLINK_IsHalted()  returns FALSE (0001ms, 2720ms total)
T26E8 168:777 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2720ms total)
T26E8 168:778 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2721ms total)
T26E8 168:784 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0000ms, 2721ms total)
T26E8 168:784 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2722ms total)
T26E8 168:786 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0002ms, 2724ms total)
T1120 168:788 JLINK_IsHalted()  returns FALSE (0000ms, 2724ms total)
T1120 168:889 JLINK_IsHalted()  returns FALSE (0001ms, 2725ms total)
T1120 168:991 JLINK_IsHalted()  returns FALSE (0001ms, 2725ms total)
T1120 169:093 JLINK_IsHalted()  returns FALSE (0001ms, 2725ms total)
T1120 169:195 JLINK_IsHalted()  returns FALSE (0001ms, 2725ms total)
T26E8 169:297 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2725ms total)
T26E8 169:298 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2726ms total)
T26E8 169:304 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2727ms total)
T26E8 169:305 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2728ms total)
T26E8 169:307 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2729ms total)
T1120 169:308 JLINK_IsHalted()  returns FALSE (0000ms, 2729ms total)
T1120 169:410 JLINK_IsHalted()  returns FALSE (0000ms, 2729ms total)
T1120 169:512 JLINK_IsHalted()  returns FALSE (0001ms, 2730ms total)
T1120 169:613 JLINK_IsHalted()  returns FALSE (0000ms, 2729ms total)
T1120 169:715 JLINK_IsHalted()  returns FALSE (0000ms, 2729ms total)
T26E8 169:816 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2730ms total)
T26E8 169:817 JLINK_ReadMemEx(0x20000290, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000290) - Data: 00 00 00 00  returns 0x04 (0001ms, 2731ms total)
T26E8 169:819 JLINK_ReadMemEx(0x20000274, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000274) - Data: 00  returns 0x01 (0001ms, 2732ms total)
T26E8 169:820 JLINK_ReadMemEx(0x200004B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200004B5) - Data: 00  returns 0x01 (0001ms, 2733ms total)
T26E8 169:821 JLINK_ReadMemEx(0x2000100D, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000100D) - Data: 00 00  returns 0x02 (0001ms, 2734ms total)
T1120 169:822 JLINK_IsHalted()  returns FALSE (0000ms, 2734ms total)
T1120 169:923 JLINK_IsHalted()  returns FALSE (0001ms, 2735ms total)
T1120 170:025 JLINK_Halt()  returns 0x00 (0005ms, 2739ms total)
T1120 170:030 JLINK_IsHalted()  returns TRUE (0000ms, 2739ms total)
T1120 170:030 JLINK_IsHalted()  returns TRUE (0000ms, 2739ms total)
T1120 170:030 JLINK_IsHalted()  returns TRUE (0000ms, 2739ms total)
T1120 170:030 JLINK_ReadReg(R15 (PC))  returns 0x0000D1EE (0000ms, 2739ms total)
T1120 170:030 JLINK_ReadReg(XPSR)  returns 0x81000000 (0000ms, 2739ms total)
T1120 170:030 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 01 00 00 00  returns 1 (0001ms, 2740ms total)
T1120 170:031 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 1 (0001ms, 2741ms total)
T26E8 170:624 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> (0021ms, 2762ms total)
T26E8 170:624  (0021ms, 2762ms total)
T26E8 170:624 Closed (0021ms, 2762ms total)