1
yincheng.zhong
2023-01-04 0660a0aa5b998d5f8e76f138e63280b11cbc5e68
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
T6814 4849:393 SEGGER J-Link V6.46 Log File (0000ms, 21358ms total)
T6814 4849:393 DLL Compiled: May 23 2019 17:49:56 (0000ms, 21358ms total)
T6814 4849:393 Logging started @ 2023-01-04 10:57 (0000ms, 21358ms total)
T6814 4849:393 JLINK_SetWarnOutHandler(...) (0000ms, 21358ms total)
T6814 4849:393 JLINK_OpenEx(...)
Firmware: J-Link ARM-OB STM32 compiled Aug 22 2012 19:52:04
Hardware: V7.00
S/N: 20090928
Feature(s): RDI,FlashDL,FlashBP,JFlash,GDB
TELNET listener socket opened on port 19021WEBSRV 
Starting webserver (0026ms, 21384ms total)
T6814 4849:393 WEBSRV Webserver running on local port 19080 (0026ms, 21384ms total)
T6814 4849:393   returns O.K. (0026ms, 21384ms total)
T6814 4849:419 JLINK_GetEmuCaps()  returns 0x88EA5833 (0000ms, 21384ms total)
T6814 4849:419 JLINK_TIF_GetAvailable(...) (0001ms, 21385ms total)
T6814 4849:420 JLINK_SetErrorOutHandler(...) (0000ms, 21385ms total)
T6814 4849:420 JLINK_ExecCommand("ProjectFile = "E:\GIT\XRange_Tag\MDK-ARM\JLinkSettings.ini"", ...).   returns 0x00 (0002ms, 21387ms total)
T6814 4849:422 JLINK_ExecCommand("Device = STM32L051C8Tx", ...). Device "STM32L051C8" selected.  returns 0x00 (0001ms, 21388ms total)
T6814 4849:423 JLINK_ExecCommand("DisableConnectionTimeout", ...).   returns 0x01 (0000ms, 21388ms total)
T6814 4849:423 JLINK_GetHardwareVersion()  returns 0x11170 (0000ms, 21388ms total)
T6814 4849:423 JLINK_GetDLLVersion()  returns 64600 (0000ms, 21388ms total)
T6814 4849:423 JLINK_GetFirmwareString(...) (0000ms, 21388ms total)
T6814 4849:423 JLINK_GetDLLVersion()  returns 64600 (0000ms, 21388ms total)
T6814 4849:423 JLINK_GetCompileDateTime() (0000ms, 21388ms total)
T6814 4849:423 JLINK_GetFirmwareString(...) (0000ms, 21388ms total)
T6814 4849:423 JLINK_GetHardwareVersion()  returns 0x11170 (0000ms, 21388ms total)
T6814 4849:423 JLINK_TIF_Select(JLINKARM_TIF_SWD)  returns 0x00 (0001ms, 21389ms total)
T6814 4849:424 JLINK_SetSpeed(5000) (0000ms, 21389ms total)
T6814 4849:424 JLINK_GetId() >0x10B TIF>Found SW-DP with ID 0x0BC11477 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF>
 >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF>
 >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x10B TIF>Found SW-DP with ID 0x0BC11477 >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 reached
AP[0]: AHB-AP (IDR: 0x04770031)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: 0xF0000000 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>CPUID register: 0x410CC601. Implementer code: 0x41 (ARM)
Found Cortex-M0 r0p1, Little endian. -- Max. mem block: 0x00002C18 -- 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] @ F0000000 -- CPU_ReadMem(16 bytes @ 0xF0000000) -- CPU_ReadMem(16 bytes @ 0xE00FFFF0)
 -- CPU_ReadMem(16 bytes @ 0xE00FFFE0)ROMTbl[0][0]: E00FF000, CID: B105100D, PID: 000BB4C0 ROM TableROMTbl[1] @ E00FF000 -- CPU_ReadMem(16 bytes @ 0xE00FF000) -- CPU_ReadMem(16 bytes @ 0xE000EFF0) -- CPU_ReadMem(16 bytes @ 0xE000EFE0)ROMTbl[1][0]: E000E000, CID: B105E00D, PID: 000BB008 SCS -- CPU_ReadMem(16 bytes @ 0xE0001FF0) -- CPU_ReadMem(16 bytes @ 0xE0001FE0)ROMTbl[1][1]: E0001000, CID: B105E00D, PID: 000BB00A DWT -- CPU_ReadMem(16 bytes @ 0xE0002FF0) -- CPU_ReadMem(16 bytes @ 0xE0002FE0)
ROMTbl[1][2]: E0002000, CID: B105E00D, PID: 000BB00B FPB >0x0D TIF> >0x21 TIF>  returns 0x0BC11477 (0169ms, 21558ms total)
T6814 4849:593 JLINK_GetDLLVersion()  returns 64600 (0000ms, 21558ms total)
T6814 4849:593 JLINK_CORE_GetFound()  returns 0x60000FF (0000ms, 21558ms total)
T6814 4849:593 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xF0000000  returns 0x00 (0000ms, 21558ms total)
T6814 4849:593 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xF0000000  returns 0x00 (0000ms, 21558ms total)
T6814 4849:593 JLINK_GetDebugInfo(0x101 = JLINKARM_DEBUG_INFO_ETM_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 21558ms total)
T6814 4849:593 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, 21559ms total)
T6814 4849:594 JLINK_GetDebugInfo(0x102 = JLINKARM_DEBUG_INFO_MTB_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 21559ms total)
T6814 4849:594 JLINK_GetDebugInfo(0x103 = JLINKARM_DEBUG_INFO_TPIU_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 21559ms total)
T6814 4849:594 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 (0000ms, 21559ms total)
T6814 4849:595 JLINK_GetDebugInfo(0x104 = JLINKARM_DEBUG_INFO_ITM_ADDR_INDEX) -- Value=0xE0000000  returns 0x00 (0000ms, 21560ms total)
T6814 4849:595 JLINK_GetDebugInfo(0x105 = JLINKARM_DEBUG_INFO_DWT_ADDR_INDEX) -- Value=0xE0001000  returns 0x00 (0000ms, 21560ms total)
T6814 4849:595 JLINK_GetDebugInfo(0x106 = JLINKARM_DEBUG_INFO_FPB_ADDR_INDEX) -- Value=0xE0002000  returns 0x00 (0000ms, 21560ms total)
T6814 4849:595 JLINK_GetDebugInfo(0x107 = JLINKARM_DEBUG_INFO_NVIC_ADDR_INDEX) -- Value=0xE000E000  returns 0x00 (0000ms, 21560ms total)
T6814 4849:595 JLINK_GetDebugInfo(0x10C = JLINKARM_DEBUG_INFO_DBG_ADDR_INDEX) -- Value=0xE000EDF0  returns 0x00 (0000ms, 21560ms total)
T6814 4849:595 JLINK_GetDebugInfo(0x01 = Unknown) -- Value=0x00000000  returns 0x00 (0000ms, 21560ms total)
T6814 4849:595 JLINK_ReadMemU32(0xE000ED00, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED00) - Data: 01 C6 0C 41  returns 1 (0000ms, 21560ms total)
T6814 4849:595 JLINK_GetDebugInfo(0x10F = JLINKARM_DEBUG_INFO_HAS_CORTEX_M_SECURITY_EXT_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 21560ms total)
T6814 4849:595 JLINK_Halt()  returns 0x00 (0004ms, 21564ms total)
T6814 4849:599 JLINK_ReadMemU32(0xE000EDF0, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) - Data: 03 00 03 01  returns 1 (0001ms, 21565ms total)
T6814 4849:600 JLINK_WriteU32(0xE000EDF0, 0xA05F0003) -- CPU_WriteMem(4 bytes @ 0xE000EDF0)  returns 0 (0000ms, 21565ms total)
T6814 4849:600 JLINK_WriteU32(0xE000EDFC, 0x01000000) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)  returns 0 (0001ms, 21566ms total)
T6814 4849:601 JLINK_GetHWStatus(...)  returns 0x00 (0000ms, 21566ms total)
T6814 4849:601 JLINK_GetNumBPUnits(Type = 0xFFFFFF00)  returns 0x04 (0000ms, 21566ms total)
T6814 4849:601 JLINK_GetNumBPUnits(Type = 0xF0)  returns 0x2000 (0000ms, 21566ms total)
T6814 4849:601 JLINK_GetNumWPUnits()  returns 0x02 (0000ms, 21566ms total)
T6814 4849:601 JLINK_GetSpeed()  returns 0xFA0 (0000ms, 21566ms total)
T6814 4849:601 JLINK_ReadMemU32(0xE000E004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000E004) - Data: 00 00 00 00  returns 1 (0001ms, 21567ms total)
T6814 4849:602 JLINK_ReadReg(R15 (PC))  returns 0x080052E0 (0001ms, 21568ms total)
T6814 4849:603 JLINK_ReadReg(XPSR)  returns 0x01000000 (0000ms, 21568ms total)
T6814 4851:203 JLINK_ReadReg(R0)  returns 0x00010000 (0000ms, 21568ms total)
T6814 4851:203 JLINK_ReadReg(R1)  returns 0x003BC000 (0000ms, 21568ms total)
T6814 4851:203 JLINK_ReadReg(R2)  returns 0x009B4000 (0000ms, 21568ms total)
T6814 4851:203 JLINK_ReadReg(R3)  returns 0x00EA0000 (0000ms, 21568ms total)
T6814 4851:203 JLINK_ReadReg(R4)  returns 0x0000007F (0000ms, 21568ms total)
T6814 4851:203 JLINK_ReadReg(R5)  returns 0x00000000 (0000ms, 21568ms total)
T6814 4851:203 JLINK_ReadReg(R6)  returns 0x441B4000 (0001ms, 21569ms total)
T6814 4851:204 JLINK_ReadReg(R7)  returns 0x50000400 (0000ms, 21569ms total)
T6814 4851:204 JLINK_ReadReg(R8)  returns 0xFFFFFFFF (0000ms, 21569ms total)
T6814 4851:204 JLINK_ReadReg(R9)  returns 0xFFFFFFFF (0000ms, 21569ms total)
T6814 4851:204 JLINK_ReadReg(R10)  returns 0xFFFFFFFF (0000ms, 21569ms total)
T6814 4851:204 JLINK_ReadReg(R11)  returns 0xFFFFFFFF (0000ms, 21569ms total)
T6814 4851:204 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 21569ms total)
T6814 4851:204 JLINK_ReadReg(R13 (SP))  returns 0x20001C28 (0000ms, 21569ms total)
T6814 4851:204 JLINK_ReadReg(R14)  returns 0x08006243 (0000ms, 21569ms total)
T6814 4851:204 JLINK_ReadReg(R15 (PC))  returns 0x080052E0 (0000ms, 21569ms total)
T6814 4851:204 JLINK_ReadReg(XPSR)  returns 0x01000000 (0000ms, 21569ms total)
T6814 4851:204 JLINK_ReadReg(MSP)  returns 0x20001C28 (0000ms, 21569ms total)
T6814 4851:204 JLINK_ReadReg(PSP)  returns 0xFFFFFFFC (0000ms, 21569ms total)
T6814 4851:204 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 21569ms total)
T6814 4851:204 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000080) -- Updating C cache (64 bytes @ 0x20000080) -- Read from C cache (1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 21570ms total)
T6814 4851:205 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 21570ms total)
T6814 4851:205 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 21570ms total)
T6814 4851:209 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000140) -- Updating C cache (64 bytes @ 0x20000140) -- Read from C cache (2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 21571ms total)
T6814 4851:210 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0000ms, 21571ms total)
T6814 4851:210 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0000ms, 21571ms total)
T6814 4851:221 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0000ms, 21571ms total)
T6814 4851:221 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0000ms, 21571ms total)
T6814 4851:221 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0000ms, 21571ms total)
T6814 4851:224 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 21571ms total)
T6814 4851:224 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 21571ms total)
T6814 4851:224 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 21572ms total)
T6814 4851:228 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000B2) - Data: 00 00  returns 0x02 (0000ms, 21572ms total)
T6814 4851:228 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000B2) - Data: 00 00  returns 0x02 (0000ms, 21572ms total)
T6814 4851:228 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000B2) - Data: 00 00  returns 0x02 (0000ms, 21572ms total)
T6814 4851:236 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 21572ms total)
T6814 4851:236 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 21572ms total)
T6814 4851:236 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 21572ms total)
T6814 4851:240 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 21572ms total)
T6814 4851:240 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 21572ms total)
T6814 4851:240 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 21572ms total)
T6814 4851:244 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000164) - Data: 00 00  returns 0x02 (0000ms, 21572ms total)
T6814 4851:244 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000164) - Data: 00 00  returns 0x02 (0000ms, 21572ms total)
T6814 4851:244 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000164) - Data: 00 00  returns 0x02 (0000ms, 21572ms total)
T6814 4851:249 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0000ms, 21572ms total)
T6814 4851:249 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0000ms, 21572ms total)
T6814 4851:249 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0000ms, 21572ms total)
T6814 4851:275 JLINK_ReadMemEx(0x20001C34, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001C00) -- Updating C cache (64 bytes @ 0x20001C00) -- Read from C cache (4 bytes @ 0x20001C34) - Data: 43 62 00 08  returns 0x04 (0001ms, 21573ms total)
T6814 4851:277 JLINK_ReadMemEx(0x20001C28, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001C28) - Data: 34 01 00 20  returns 0x04 (0000ms, 21573ms total)
T6814 4851:277 JLINK_ReadMemEx(0x20001C2C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001C2C) - Data: 00 04 00 50  returns 0x04 (0000ms, 21573ms total)
T6814 4851:277 JLINK_ReadMemEx(0x20001C30, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001C30) - Data: 00 40 1B 44  returns 0x04 (0000ms, 21573ms total)
T6814 4851:277 JLINK_ReadMemEx(0x20001C34, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001C34) - Data: 43 62 00 08  returns 0x04 (0000ms, 21573ms total)
T6814 4851:277 JLINK_ReadMemEx(0x20001C4C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001C40) -- Updating C cache (64 bytes @ 0x20001C40) -- Read from C cache (4 bytes @ 0x20001C4C) - Data: 21 87 00 08  returns 0x04 (0001ms, 21574ms total)
T6814 4851:279 JLINK_ReadMemEx(0x20001C3C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001C3C) - Data: 34 01 00 20  returns 0x04 (0000ms, 21574ms total)
T6814 4851:279 JLINK_ReadMemEx(0x20001C40, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001C40) - Data: 00 00 00 00  returns 0x04 (0000ms, 21574ms total)
T6814 4851:279 JLINK_ReadMemEx(0x20001C44, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001C44) - Data: E0 0D 00 20  returns 0x04 (0000ms, 21574ms total)
T6814 4851:279 JLINK_ReadMemEx(0x20001C48, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001C48) - Data: 00 04 00 50  returns 0x04 (0000ms, 21574ms total)
T6814 4851:279 JLINK_ReadMemEx(0x20001C4C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001C4C) - Data: 21 87 00 08  returns 0x04 (0000ms, 21574ms total)
T6814 4851:279 JLINK_ReadMemEx(0x20001C64, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001C64) - Data: 07 BA 00 08  returns 0x04 (0000ms, 21574ms total)
T6814 4851:279 JLINK_ReadMemEx(0x20001C54, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001C54) - Data: 34 01 00 20  returns 0x04 (0000ms, 21574ms total)
T6814 4851:279 JLINK_ReadMemEx(0x20001C58, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001C58) - Data: 00 00 00 00  returns 0x04 (0000ms, 21574ms total)
T6814 4851:279 JLINK_ReadMemEx(0x20001C5C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001C5C) - Data: A2 00 00 20  returns 0x04 (0000ms, 21574ms total)
T6814 4851:279 JLINK_ReadMemEx(0x20001C60, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001C60) - Data: 72 00 00 20  returns 0x04 (0000ms, 21574ms total)
T6814 4851:279 JLINK_ReadMemEx(0x20001C64, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001C64) - Data: 07 BA 00 08  returns 0x04 (0000ms, 21574ms total)
T6814 4851:283 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 21574ms total)
T6814 4851:283 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0000ms, 21574ms total)
T6814 4851:286 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0000ms, 21574ms total)
T6814 4851:288 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 21574ms total)
T6814 4851:288 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000B2) - Data: 00 00  returns 0x02 (0000ms, 21574ms total)
T6814 4851:291 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 21574ms total)
T6814 4851:291 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 21574ms total)
T6814 4851:291 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000164) - Data: 00 00  returns 0x02 (0000ms, 21574ms total)
T6814 4851:293 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0000ms, 21574ms total)
T6814 4851:295 JLINK_ReadMemEx(0x080052E0, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x080052C0) -- Updating C cache (128 bytes @ 0x080052C0) -- Read from C cache (60 bytes @ 0x080052E0) - Data: 49 00 00 28 F7 D1 00 29 0A D0 91 42 02 D1 01 21 ...  returns 0x3C (0001ms, 21575ms total)
T6814 4851:297 JLINK_ReadMemEx(0x080052E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080052E0) - Data: 49 00  returns 0x02 (0000ms, 21576ms total)
T6814 4851:297 JLINK_ReadMemEx(0x080052E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080052E2) - Data: 00 28  returns 0x02 (0000ms, 21576ms total)
T6814 4851:297 JLINK_ReadMemEx(0x080052E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080052E2) - Data: 00 28  returns 0x02 (0000ms, 21576ms total)
T6814 4851:297 JLINK_ReadMemEx(0x080052E4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080052E4) - Data: F7 D1 00 29 0A D0 91 42 02 D1 01 21 C9 07 05 E0 ...  returns 0x3C (0000ms, 21576ms total)
T6814 4851:297 JLINK_ReadMemEx(0x080052E4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080052E4) - Data: F7 D1  returns 0x02 (0000ms, 21576ms total)
T6814 4851:297 JLINK_ReadMemEx(0x080052E4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080052E4) - Data: F7 D1 00 29 0A D0 91 42 02 D1 01 21 C9 07 05 E0 ...  returns 0x3C (0000ms, 21576ms total)
T6814 4851:297 JLINK_ReadMemEx(0x080052E4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080052E4) - Data: F7 D1  returns 0x02 (0000ms, 21576ms total)
T6814 4851:297 JLINK_ReadMemEx(0x080052E6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080052E6) - Data: 00 29  returns 0x02 (0000ms, 21576ms total)
T6814 4851:297 JLINK_ReadMemEx(0x080052E6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080052E6) - Data: 00 29  returns 0x02 (0000ms, 21576ms total)
T6814 4851:297 JLINK_ReadMemEx(0x080052E8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080052E8) - Data: 0A D0 91 42 02 D1 01 21 C9 07 05 E0 91 42 01 D2 ...  returns 0x3C (0000ms, 21576ms total)
T6814 4851:297 JLINK_ReadMemEx(0x080052E8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080052E8) - Data: 0A D0  returns 0x02 (0000ms, 21576ms total)
T6814 4851:297 JLINK_ReadMemEx(0x080052E8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080052E8) - Data: 0A D0 91 42 02 D1 01 21 C9 07 05 E0 91 42 01 D2 ...  returns 0x3C (0000ms, 21576ms total)
T6814 4851:297 JLINK_ReadMemEx(0x080052E8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080052E8) - Data: 0A D0  returns 0x02 (0000ms, 21576ms total)
T6814 4851:297 JLINK_ReadMemEx(0x080052EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080052EA) - Data: 91 42  returns 0x02 (0000ms, 21576ms total)
T5504 4854:137 JLINK_ReadMemEx(0x080052E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080052E0) - Data: 49 00  returns 0x02 (0000ms, 21576ms total)
T5504 4854:137 JLINK_Go() -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0003ms, 21579ms total)
T5504 4854:241 JLINK_IsHalted()  returns FALSE (0000ms, 21579ms total)
T5504 4854:342 JLINK_IsHalted()  returns FALSE (0000ms, 21579ms total)
T5504 4854:443 JLINK_IsHalted()  returns FALSE (0000ms, 21579ms total)
T5504 4854:544 JLINK_IsHalted()  returns FALSE (0001ms, 21580ms total)
T5504 4854:646 JLINK_IsHalted()  returns FALSE (0000ms, 21579ms total)
T6814 4854:751 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 21580ms total)
T6814 4854:752 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0000ms, 21580ms total)
T6814 4854:752 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0001ms, 21581ms total)
T6814 4854:753 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 21582ms total)
T6814 4854:754 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: B9 03  returns 0x02 (0000ms, 21582ms total)
T6814 4854:757 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 21583ms total)
T6814 4854:758 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 21583ms total)
T6814 4854:758 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 09 00  returns 0x02 (0001ms, 21584ms total)
T6814 4854:762 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0000ms, 21584ms total)
T5504 4854:763 JLINK_IsHalted()  returns FALSE (0000ms, 21584ms total)
T5504 4854:864 JLINK_IsHalted()  returns FALSE (0000ms, 21584ms total)
T5504 4854:965 JLINK_IsHalted()  returns FALSE (0000ms, 21584ms total)
T5504 4855:066 JLINK_IsHalted()  returns FALSE (0000ms, 21584ms total)
T5504 4855:167 JLINK_IsHalted()  returns FALSE (0000ms, 21584ms total)
T6814 4855:271 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 21585ms total)
T6814 4855:272 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 21586ms total)
T6814 4855:273 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0001ms, 21587ms total)
T6814 4855:274 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 21587ms total)
T6814 4855:274 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: B9 03  returns 0x02 (0001ms, 21588ms total)
T6814 4855:278 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 21588ms total)
T6814 4855:278 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 21589ms total)
T6814 4855:279 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 09 00  returns 0x02 (0001ms, 21590ms total)
T6814 4855:282 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0001ms, 21591ms total)
T5504 4855:283 JLINK_IsHalted()  returns FALSE (0001ms, 21592ms total)
T5504 4855:385 JLINK_IsHalted()  returns FALSE (0000ms, 21591ms total)
T5504 4855:486 JLINK_IsHalted()  returns FALSE (0000ms, 21591ms total)
T5504 4855:587 JLINK_IsHalted()  returns FALSE (0000ms, 21591ms total)
T5504 4855:688 JLINK_IsHalted()  returns FALSE (0000ms, 21591ms total)
T6814 4855:793 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 21591ms total)
T6814 4855:793 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 21592ms total)
T6814 4855:794 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0001ms, 21593ms total)
T6814 4855:795 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 21593ms total)
T6814 4855:795 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 0E 01  returns 0x02 (0001ms, 21594ms total)
T6814 4855:799 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 21594ms total)
T6814 4855:799 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 21595ms total)
T6814 4855:800 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 09 00  returns 0x02 (0001ms, 21596ms total)
T6814 4855:801 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0000ms, 21596ms total)
T5504 4855:801 JLINK_IsHalted()  returns FALSE (0001ms, 21597ms total)
T5504 4855:903 JLINK_IsHalted()  returns FALSE (0000ms, 21596ms total)
T5504 4856:004 JLINK_IsHalted()  returns FALSE (0000ms, 21596ms total)
T5504 4856:105 JLINK_IsHalted()  returns FALSE (0000ms, 21596ms total)
T5504 4856:206 JLINK_IsHalted()  returns FALSE (0000ms, 21596ms total)
T6814 4856:311 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 21597ms total)
T6814 4856:312 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 21598ms total)
T6814 4856:313 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0000ms, 21598ms total)
T6814 4856:313 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 21599ms total)
T6814 4856:314 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 0E 01  returns 0x02 (0001ms, 21600ms total)
T6814 4856:318 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 21600ms total)
T6814 4856:318 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 21601ms total)
T6814 4856:319 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 09 00  returns 0x02 (0001ms, 21602ms total)
T6814 4856:320 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0000ms, 21602ms total)
T5504 4856:320 JLINK_IsHalted()  returns FALSE (0001ms, 21603ms total)
T5504 4856:422 JLINK_IsHalted()  returns FALSE (0000ms, 21602ms total)
T5504 4856:523 JLINK_IsHalted()  returns FALSE (0000ms, 21602ms total)
T5504 4856:624 JLINK_IsHalted()  returns FALSE (0000ms, 21602ms total)
T5504 4856:725 JLINK_IsHalted()  returns FALSE (0000ms, 21602ms total)
T6814 4856:830 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 21603ms total)
T6814 4856:831 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0000ms, 21603ms total)
T6814 4856:831 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0001ms, 21604ms total)
T6814 4856:832 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 21604ms total)
T6814 4856:833 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 17 01  returns 0x02 (0000ms, 21605ms total)
T6814 4856:836 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 21606ms total)
T6814 4856:837 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 21606ms total)
T6814 4856:837 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 09 00  returns 0x02 (0001ms, 21607ms total)
T6814 4856:838 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0001ms, 21608ms total)
T5504 4856:839 JLINK_IsHalted()  returns FALSE (0000ms, 21608ms total)
T5504 4856:940 JLINK_IsHalted()  returns FALSE (0000ms, 21608ms total)
T5504 4857:041 JLINK_IsHalted()  returns FALSE (0000ms, 21608ms total)
T5504 4857:142 JLINK_IsHalted()  returns FALSE (0000ms, 21608ms total)
T5504 4857:243 JLINK_IsHalted()  returns FALSE (0000ms, 21608ms total)
T6814 4857:348 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 21608ms total)
T6814 4857:348 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 21609ms total)
T6814 4857:349 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0001ms, 21610ms total)
T6814 4857:350 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 21610ms total)
T6814 4857:350 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 17 01  returns 0x02 (0001ms, 21611ms total)
T6814 4857:354 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 21612ms total)
T6814 4857:355 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 21612ms total)
T6814 4857:355 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 09 00  returns 0x02 (0001ms, 21613ms total)
T6814 4857:356 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0001ms, 21614ms total)
T5504 4857:357 JLINK_IsHalted()  returns FALSE (0000ms, 21614ms total)
T5504 4857:458 JLINK_IsHalted()  returns FALSE (0000ms, 21614ms total)
T5504 4857:559 JLINK_IsHalted()  returns FALSE (0000ms, 21614ms total)
T5504 4857:660 JLINK_IsHalted()  returns FALSE (0000ms, 21614ms total)
T5504 4857:762 JLINK_IsHalted()  returns FALSE (0000ms, 21614ms total)
T6814 4857:866 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 21615ms total)
T6814 4857:867 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 21616ms total)
T6814 4857:868 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0000ms, 21616ms total)
T6814 4857:868 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 01  returns 0x01 (0001ms, 21617ms total)
T6814 4857:872 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 17 01  returns 0x02 (0001ms, 21618ms total)
T6814 4857:873 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 21618ms total)
T6814 4857:873 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 21619ms total)
T6814 4857:874 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 09 00  returns 0x02 (0000ms, 21619ms total)
T6814 4857:874 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0001ms, 21620ms total)
T5504 4857:875 JLINK_IsHalted()  returns FALSE (0001ms, 21621ms total)
T5504 4857:977 JLINK_IsHalted()  returns FALSE (0000ms, 21620ms total)
T5504 4858:078 JLINK_IsHalted()  returns FALSE (0000ms, 21620ms total)
T5504 4858:179 JLINK_IsHalted()  returns FALSE (0000ms, 21620ms total)
T5504 4858:280 JLINK_IsHalted()  returns FALSE (0000ms, 21620ms total)
T6814 4858:385 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 21620ms total)
T6814 4858:385 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 21621ms total)
T6814 4858:386 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0000ms, 21621ms total)
T6814 4858:386 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 01  returns 0x01 (0001ms, 21622ms total)
T6814 4858:390 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 17 01  returns 0x02 (0000ms, 21622ms total)
T6814 4858:390 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 21623ms total)
T6814 4858:391 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 21624ms total)
T6814 4858:392 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 09 00  returns 0x02 (0000ms, 21624ms total)
T6814 4858:392 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0001ms, 21625ms total)
T5504 4858:393 JLINK_IsHalted()  returns FALSE (0000ms, 21625ms total)
T5504 4858:494 JLINK_IsHalted()  returns FALSE (0000ms, 21625ms total)
T5504 4858:595 JLINK_IsHalted()  returns FALSE (0000ms, 21625ms total)
T5504 4858:696 JLINK_IsHalted()  returns FALSE (0000ms, 21625ms total)
T5504 4858:797 JLINK_IsHalted()  returns FALSE (0000ms, 21625ms total)
T6814 4858:902 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 21625ms total)
T6814 4858:902 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 21626ms total)
T6814 4858:903 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 31 00  returns 0x02 (0001ms, 21627ms total)
T6814 4858:906 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 02  returns 0x01 (0001ms, 21628ms total)
T6814 4858:910 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 17 01  returns 0x02 (0001ms, 21629ms total)
T6814 4858:911 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 21629ms total)
T6814 4858:911 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 21630ms total)
T6814 4858:912 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 09 00  returns 0x02 (0000ms, 21630ms total)
T6814 4858:912 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0001ms, 21631ms total)
T5504 4858:913 JLINK_IsHalted()  returns FALSE (0001ms, 21632ms total)
T5504 4859:015 JLINK_IsHalted()  returns FALSE (0000ms, 21631ms total)
T5504 4859:116 JLINK_IsHalted()  returns FALSE (0000ms, 21631ms total)
T5504 4859:217 JLINK_IsHalted()  returns FALSE (0000ms, 21631ms total)
T5504 4859:318 JLINK_IsHalted()  returns FALSE (0000ms, 21631ms total)
T6814 4859:422 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 21632ms total)
T6814 4859:423 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 21633ms total)
T6814 4859:424 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 31 00  returns 0x02 (0000ms, 21633ms total)
T6814 4859:427 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 02  returns 0x01 (0001ms, 21634ms total)
T6814 4859:431 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 17 01  returns 0x02 (0000ms, 21634ms total)
T6814 4859:431 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 21635ms total)
T6814 4859:432 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 21636ms total)
T6814 4859:433 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 09 00  returns 0x02 (0000ms, 21636ms total)
T6814 4859:433 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0001ms, 21637ms total)
T5504 4859:434 JLINK_IsHalted()  returns FALSE (0001ms, 21638ms total)
T5504 4859:536 JLINK_IsHalted()  returns FALSE (0000ms, 21637ms total)
T5504 4859:637 JLINK_IsHalted()  returns FALSE (0000ms, 21637ms total)
T5504 4859:738 JLINK_IsHalted()  returns FALSE (0000ms, 21637ms total)
T5504 4859:839 JLINK_IsHalted()  returns FALSE (0000ms, 21637ms total)
T6814 4859:943 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 21638ms total)
T6814 4859:944 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 21639ms total)
T6814 4859:945 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 31 00  returns 0x02 (0000ms, 21639ms total)
T6814 4859:945 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 03  returns 0x01 (0001ms, 21640ms total)
T6814 4859:949 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 17 01  returns 0x02 (0000ms, 21640ms total)
T6814 4859:949 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 21641ms total)
T6814 4859:950 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 21642ms total)
T6814 4859:951 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 09 00  returns 0x02 (0000ms, 21642ms total)
T6814 4859:951 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0001ms, 21643ms total)
T5504 4859:952 JLINK_IsHalted()  returns FALSE (0001ms, 21644ms total)
T5504 4860:054 JLINK_IsHalted()  returns FALSE (0000ms, 21643ms total)
T5504 4860:155 JLINK_IsHalted()  returns FALSE (0000ms, 21643ms total)
T5504 4860:256 JLINK_IsHalted()  returns FALSE (0000ms, 21643ms total)
T5504 4860:357 JLINK_IsHalted()  returns FALSE (0000ms, 21643ms total)
T6814 4860:462 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 21643ms total)
T6814 4860:462 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 21644ms total)
T6814 4860:463 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 31 00  returns 0x02 (0001ms, 21645ms total)
T6814 4860:464 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 21645ms total)
T6814 4860:470 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 50 02  returns 0x02 (0001ms, 21646ms total)
T6814 4860:474 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 21646ms total)
T6814 4860:474 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 21647ms total)
T6814 4860:475 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 06 00  returns 0x02 (0001ms, 21648ms total)
T6814 4860:479 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0000ms, 21648ms total)
T5504 4860:479 JLINK_IsHalted()  returns FALSE (0001ms, 21649ms total)
T5504 4860:581 JLINK_IsHalted()  returns FALSE (0000ms, 21648ms total)
T5504 4860:682 JLINK_IsHalted()  returns FALSE (0000ms, 21648ms total)
T5504 4860:783 JLINK_IsHalted()  returns FALSE (0003ms, 21651ms total)
T5504 4860:887 JLINK_IsHalted()  returns FALSE (0003ms, 21651ms total)
T6814 4860:993 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0003ms, 21651ms total)
T6814 4860:996 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0004ms, 21655ms total)
T6814 4861:000 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 31 00  returns 0x02 (0003ms, 21658ms total)
T6814 4861:003 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0003ms, 21661ms total)
T6814 4861:009 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: B2 00  returns 0x02 (0004ms, 21665ms total)
T6814 4861:019 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 21666ms total)
T6814 4861:020 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0003ms, 21669ms total)
T6814 4861:023 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: F5 00  returns 0x02 (0003ms, 21672ms total)
T6814 4861:032 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0001ms, 21673ms total)
T5504 4861:033 JLINK_IsHalted()  returns FALSE (0003ms, 21676ms total)
T5504 4861:137 JLINK_IsHalted()  returns FALSE (0003ms, 21676ms total)
T5504 4861:241 JLINK_IsHalted()  returns FALSE (0002ms, 21675ms total)
T5504 4861:344 JLINK_IsHalted()  returns FALSE (0003ms, 21676ms total)
T5504 4861:448 JLINK_IsHalted()  returns FALSE (0002ms, 21675ms total)
T6814 4861:554 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0003ms, 21676ms total)
T6814 4861:557 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0003ms, 21679ms total)
T6814 4861:560 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 31 00  returns 0x02 (0004ms, 21683ms total)
T6814 4861:564 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 21683ms total)
T6814 4861:564 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: B2 00  returns 0x02 (0001ms, 21684ms total)
T6814 4861:568 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 21685ms total)
T6814 4861:569 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 21685ms total)
T6814 4861:569 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: F5 00  returns 0x02 (0001ms, 21686ms total)
T6814 4861:573 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0001ms, 21687ms total)
T5504 4861:574 JLINK_IsHalted()  returns FALSE (0000ms, 21687ms total)
T5504 4861:675 JLINK_IsHalted()  returns FALSE (0000ms, 21687ms total)
T5504 4861:776 JLINK_IsHalted()  returns FALSE (0000ms, 21687ms total)
T5504 4861:877 JLINK_IsHalted()  returns FALSE (0000ms, 21687ms total)
T5504 4861:978 JLINK_IsHalted()  returns FALSE (0000ms, 21687ms total)
T6814 4862:082 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 00  returns 0x01 (0001ms, 21688ms total)
T6814 4862:086 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: 00 00  returns 0x02 (0001ms, 21689ms total)
T6814 4862:089 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0001ms, 21690ms total)
T6814 4862:093 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 21691ms total)
T6814 4862:094 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 00 00  returns 0x02 (0000ms, 21691ms total)
T6814 4862:097 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 21692ms total)
T6814 4862:098 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 21692ms total)
T6814 4862:098 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 00 00  returns 0x02 (0001ms, 21693ms total)
T6814 4862:102 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 00 00  returns 0x02 (0000ms, 21693ms total)
T5504 4862:105 JLINK_IsHalted()  returns FALSE (0000ms, 21693ms total)
T5504 4862:207 JLINK_IsHalted()  returns FALSE (0000ms, 21693ms total)
T5504 4862:308 JLINK_IsHalted()  returns FALSE (0000ms, 21693ms total)
T5504 4862:409 JLINK_IsHalted()  returns FALSE (0000ms, 21693ms total)
T5504 4862:510 JLINK_IsHalted()  returns FALSE (0000ms, 21693ms total)
T6814 4862:615 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 00  returns 0x01 (0000ms, 21693ms total)
T6814 4862:618 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: 00 00  returns 0x02 (0001ms, 21694ms total)
T6814 4862:622 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0000ms, 21694ms total)
T6814 4862:626 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 21694ms total)
T6814 4862:626 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 00 00  returns 0x02 (0001ms, 21695ms total)
T6814 4862:630 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 21695ms total)
T6814 4862:631 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 21695ms total)
T6814 4862:631 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 00 00  returns 0x02 (0001ms, 21696ms total)
T6814 4862:635 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 00 00  returns 0x02 (0000ms, 21696ms total)
T5504 4862:638 JLINK_IsHalted()  returns FALSE (0000ms, 21696ms total)
T5504 4862:739 JLINK_IsHalted()  returns FALSE (0000ms, 21696ms total)
T5504 4862:840 JLINK_IsHalted()  returns FALSE (0000ms, 21696ms total)
T5504 4862:941 JLINK_IsHalted()  returns FALSE (0000ms, 21696ms total)
T5504 4863:042 JLINK_IsHalted()  returns FALSE (0000ms, 21696ms total)
T6814 4863:147 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 00  returns 0x01 (0000ms, 21696ms total)
T6814 4863:147 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: 00 00  returns 0x02 (0001ms, 21697ms total)
T6814 4863:148 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0000ms, 21697ms total)
T6814 4863:148 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 21698ms total)
T6814 4863:149 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 00 00  returns 0x02 (0001ms, 21699ms total)
T6814 4863:150 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 21699ms total)
T6814 4863:150 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 21700ms total)
T6814 4863:151 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 00 00  returns 0x02 (0001ms, 21701ms total)
T6814 4863:152 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 00 00  returns 0x02 (0000ms, 21701ms total)
T5504 4863:152 JLINK_IsHalted()  returns FALSE (0001ms, 21702ms total)
T5504 4863:254 JLINK_IsHalted()  returns FALSE (0000ms, 21701ms total)
T5504 4863:355 JLINK_IsHalted()  returns FALSE (0000ms, 21701ms total)
T5504 4863:456 JLINK_IsHalted()  returns FALSE (0002ms, 21703ms total)
T5504 4863:559 JLINK_IsHalted()  returns FALSE (0002ms, 21703ms total)
T6814 4863:666 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0002ms, 21703ms total)
T6814 4863:671 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0004ms, 21707ms total)
T6814 4863:678 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0000ms, 21707ms total)
T6814 4863:678 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0004ms, 21711ms total)
T6814 4863:682 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 00 00  returns 0x02 (0003ms, 21714ms total)
T6814 4863:685 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0003ms, 21717ms total)
T6814 4863:688 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0004ms, 21721ms total)
T6814 4863:692 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 00 00  returns 0x02 (0003ms, 21724ms total)
T6814 4863:695 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0003ms, 21727ms total)
T5504 4863:701 JLINK_IsHalted()  returns FALSE (0004ms, 21731ms total)
T5504 4863:806 JLINK_IsHalted()  returns FALSE (0002ms, 21729ms total)
T5504 4863:909 JLINK_IsHalted()  returns FALSE (0003ms, 21730ms total)
T5504 4864:013 JLINK_IsHalted()  returns FALSE (0002ms, 21729ms total)
T5504 4864:116 JLINK_IsHalted()  returns FALSE (0003ms, 21730ms total)
T6814 4864:223 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0003ms, 21730ms total)
T6814 4864:229 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0003ms, 21733ms total)
T6814 4864:235 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0004ms, 21737ms total)
T6814 4864:239 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0003ms, 21740ms total)
T6814 4864:242 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 00 00  returns 0x02 (0004ms, 21744ms total)
T6814 4864:246 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0003ms, 21747ms total)
T6814 4864:249 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 21748ms total)
T6814 4864:250 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 00 00  returns 0x02 (0000ms, 21748ms total)
T6814 4864:250 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0001ms, 21749ms total)
T5504 4864:254 JLINK_IsHalted()  returns FALSE (0000ms, 21749ms total)
T5504 4864:355 JLINK_IsHalted()  returns FALSE (0000ms, 21749ms total)
T5504 4864:456 JLINK_IsHalted()  returns FALSE (0000ms, 21749ms total)
T5504 4864:557 JLINK_IsHalted()  returns FALSE (0000ms, 21749ms total)
T5504 4864:658 JLINK_IsHalted()  returns FALSE (0000ms, 21749ms total)
T6814 4864:763 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 00  returns 0x01 (0000ms, 21749ms total)
T6814 4864:767 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: 00 00  returns 0x02 (0000ms, 21749ms total)
T6814 4864:770 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0001ms, 21750ms total)
T6814 4864:771 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 21750ms total)
T6814 4864:771 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 00 00  returns 0x02 (0001ms, 21751ms total)
T6814 4864:772 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 21752ms total)
T6814 4864:773 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 21752ms total)
T6814 4864:773 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 00 00  returns 0x02 (0001ms, 21753ms total)
T6814 4864:774 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 00 00  returns 0x02 (0001ms, 21754ms total)
T5504 4864:778 JLINK_IsHalted()  returns FALSE (0000ms, 21754ms total)
T5504 4864:879 JLINK_IsHalted()  returns FALSE (0000ms, 21754ms total)
T5504 4864:980 JLINK_IsHalted()  returns FALSE (0000ms, 21754ms total)
T5504 4865:081 JLINK_IsHalted()  returns FALSE (0000ms, 21754ms total)
T5504 4865:182 JLINK_IsHalted()  returns FALSE (0000ms, 21754ms total)
T6814 4865:286 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 00  returns 0x01 (0001ms, 21755ms total)
T6814 4865:290 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: 00 00  returns 0x02 (0001ms, 21756ms total)
T6814 4865:293 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0001ms, 21757ms total)
T6814 4865:294 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 21758ms total)
T6814 4865:295 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 00 00  returns 0x02 (0000ms, 21758ms total)
T6814 4865:295 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 21759ms total)
T6814 4865:296 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 21760ms total)
T6814 4865:297 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 00 00  returns 0x02 (0000ms, 21760ms total)
T6814 4865:297 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 00 00  returns 0x02 (0001ms, 21761ms total)
T5504 4865:301 JLINK_IsHalted()  returns FALSE (0001ms, 21762ms total)
T5504 4865:403 JLINK_IsHalted()  returns FALSE (0000ms, 21761ms total)
T5504 4865:504 JLINK_IsHalted()  returns FALSE (0000ms, 21761ms total)
T5504 4865:605 JLINK_IsHalted()  returns FALSE (0000ms, 21761ms total)
T5504 4865:706 JLINK_IsHalted()  returns FALSE (0000ms, 21761ms total)
T6814 4865:811 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 00  returns 0x01 (0000ms, 21761ms total)
T6814 4865:811 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: 00 00  returns 0x02 (0001ms, 21762ms total)
T6814 4865:812 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0001ms, 21763ms total)
T6814 4865:813 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 21763ms total)
T6814 4865:813 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 00 00  returns 0x02 (0001ms, 21764ms total)
T6814 4865:814 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 21764ms total)
T6814 4865:814 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 21765ms total)
T6814 4865:815 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 00 00  returns 0x02 (0001ms, 21766ms total)
T6814 4865:816 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 00 00  returns 0x02 (0000ms, 21766ms total)
T5504 4865:817 JLINK_IsHalted()  returns FALSE (0000ms, 21766ms total)
T5504 4865:918 JLINK_IsHalted()  returns FALSE (0000ms, 21766ms total)
T5504 4866:019 JLINK_IsHalted()  returns FALSE (0000ms, 21766ms total)
T5504 4866:120 JLINK_IsHalted()  returns FALSE (0000ms, 21766ms total)
T5504 4866:221 JLINK_IsHalted()  returns FALSE (0000ms, 21766ms total)
T6814 4866:325 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 01  returns 0x01 (0001ms, 21767ms total)
T6814 4866:329 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 21768ms total)
T6814 4866:333 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0000ms, 21768ms total)
T6814 4866:334 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 21769ms total)
T6814 4866:334 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 00 00  returns 0x02 (0001ms, 21770ms total)
T6814 4866:335 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 21770ms total)
T6814 4866:335 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 21771ms total)
T6814 4866:336 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 00 00  returns 0x02 (0001ms, 21772ms total)
T6814 4866:337 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: FF FF  returns 0x02 (0000ms, 21772ms total)
T5504 4866:340 JLINK_IsHalted()  returns FALSE (0000ms, 21772ms total)
T5504 4866:441 JLINK_IsHalted()  returns FALSE (0000ms, 21772ms total)
T5504 4866:542 JLINK_IsHalted()  returns FALSE (0000ms, 21772ms total)
T5504 4866:644 JLINK_IsHalted()  returns FALSE (0000ms, 21772ms total)
T5504 4866:745 JLINK_IsHalted()  returns FALSE (0000ms, 21772ms total)
T6814 4866:849 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 01  returns 0x01 (0001ms, 21773ms total)
T6814 4866:853 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 21774ms total)
T6814 4866:857 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0000ms, 21774ms total)
T6814 4866:857 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 21775ms total)
T6814 4866:858 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 00 00  returns 0x02 (0001ms, 21776ms total)
T6814 4866:859 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 21777ms total)
T6814 4866:860 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 21777ms total)
T6814 4866:860 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 00 00  returns 0x02 (0001ms, 21778ms total)
T6814 4866:861 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: FF FF  returns 0x02 (0001ms, 21779ms total)
T5504 4866:865 JLINK_IsHalted()  returns FALSE (0000ms, 21779ms total)
T5504 4866:966 JLINK_IsHalted()  returns FALSE (0000ms, 21779ms total)
T5504 4867:067 JLINK_IsHalted()  returns FALSE (0000ms, 21779ms total)
T5504 4867:168 JLINK_IsHalted()  returns FALSE (0000ms, 21779ms total)
T5504 4867:269 JLINK_IsHalted()  returns FALSE (0000ms, 21779ms total)
T6814 4867:374 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 01  returns 0x01 (0000ms, 21779ms total)
T6814 4867:374 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 21780ms total)
T6814 4867:375 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0000ms, 21780ms total)
T6814 4867:375 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 21781ms total)
T6814 4867:376 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 00 00  returns 0x02 (0001ms, 21782ms total)
T6814 4867:377 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 21782ms total)
T6814 4867:377 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 21783ms total)
T6814 4867:378 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 00 00  returns 0x02 (0001ms, 21784ms total)
T6814 4867:379 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: FF FF  returns 0x02 (0000ms, 21784ms total)
T5504 4867:379 JLINK_IsHalted()  returns FALSE (0001ms, 21785ms total)
T5504 4867:481 JLINK_IsHalted()  returns FALSE (0000ms, 21784ms total)
T5504 4867:582 JLINK_IsHalted()  returns FALSE (0000ms, 21784ms total)
T5504 4867:683 JLINK_IsHalted()  returns FALSE (0000ms, 21784ms total)
T5504 4867:784 JLINK_IsHalted()  returns FALSE (0000ms, 21784ms total)
T6814 4867:888 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 01  returns 0x01 (0001ms, 21785ms total)
T6814 4867:889 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 21786ms total)
T6814 4867:890 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0000ms, 21786ms total)
T6814 4867:890 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 21787ms total)
T6814 4867:891 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 00 00  returns 0x02 (0000ms, 21787ms total)
T6814 4867:891 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 21788ms total)
T6814 4867:892 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 21789ms total)
T6814 4867:893 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 00 00  returns 0x02 (0000ms, 21789ms total)
T6814 4867:893 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: FF FF  returns 0x02 (0001ms, 21790ms total)
T5504 4867:894 JLINK_IsHalted()  returns FALSE (0001ms, 21791ms total)
T5504 4867:996 JLINK_IsHalted()  returns FALSE (0000ms, 21790ms total)
T5504 4868:097 JLINK_IsHalted()  returns FALSE (0000ms, 21790ms total)
T5504 4868:198 JLINK_IsHalted()  returns FALSE (0000ms, 21790ms total)
T5504 4868:299 JLINK_IsHalted()  returns FALSE (0000ms, 21790ms total)
T6814 4868:403 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 01  returns 0x01 (0001ms, 21791ms total)
T6814 4868:404 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 21792ms total)
T6814 4868:405 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0000ms, 21792ms total)
T6814 4868:405 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 21793ms total)
T6814 4868:406 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 00 00  returns 0x02 (0001ms, 21794ms total)
T6814 4868:407 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 21794ms total)
T6814 4868:407 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 21795ms total)
T6814 4868:408 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 00 00  returns 0x02 (0000ms, 21795ms total)
T6814 4868:408 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: FF FF  returns 0x02 (0001ms, 21796ms total)
T5504 4868:409 JLINK_IsHalted()  returns FALSE (0001ms, 21797ms total)
T5504 4868:511 JLINK_IsHalted()  returns FALSE (0000ms, 21796ms total)
T5504 4868:612 JLINK_IsHalted()  returns FALSE (0000ms, 21796ms total)
T5504 4868:713 JLINK_IsHalted()  returns FALSE (0000ms, 21796ms total)
T5504 4868:814 JLINK_IsHalted()  returns FALSE (0000ms, 21796ms total)
T6814 4868:919 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 01  returns 0x01 (0000ms, 21796ms total)
T6814 4868:919 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 21797ms total)
T6814 4868:920 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0001ms, 21798ms total)
T6814 4868:921 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 21798ms total)
T6814 4868:921 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 00 00  returns 0x02 (0001ms, 21799ms total)
T6814 4868:922 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 21800ms total)
T6814 4868:923 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 21800ms total)
T6814 4868:923 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 00 00  returns 0x02 (0001ms, 21801ms total)
T6814 4868:924 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: FF FF  returns 0x02 (0000ms, 21801ms total)
T5504 4868:924 JLINK_IsHalted()  returns FALSE (0001ms, 21802ms total)
T5504 4869:026 JLINK_IsHalted()  returns FALSE (0000ms, 21801ms total)
T5504 4869:127 JLINK_IsHalted()  returns FALSE (0000ms, 21801ms total)
T5504 4869:228 JLINK_IsHalted()  returns FALSE (0000ms, 21801ms total)
T5504 4869:329 JLINK_IsHalted()  returns FALSE (0000ms, 21801ms total)
T6814 4869:433 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 21802ms total)
T6814 4869:437 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 21803ms total)
T6814 4869:438 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0000ms, 21803ms total)
T6814 4869:438 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 21804ms total)
T6814 4869:439 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 00 00  returns 0x02 (0001ms, 21805ms total)
T6814 4869:440 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 21805ms total)
T6814 4869:440 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 21806ms total)
T6814 4869:441 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 00 00  returns 0x02 (0000ms, 21806ms total)
T6814 4869:441 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0001ms, 21807ms total)
T5504 4869:445 JLINK_IsHalted()  returns FALSE (0001ms, 21808ms total)
T5504 4869:547 JLINK_IsHalted()  returns FALSE (0000ms, 21807ms total)
T5504 4869:648 JLINK_IsHalted()  returns FALSE (0000ms, 21807ms total)
T5504 4869:749 JLINK_IsHalted()  returns FALSE (0000ms, 21807ms total)
T5504 4869:850 JLINK_IsHalted()  returns FALSE (0000ms, 21807ms total)
T6814 4869:954 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 21808ms total)
T6814 4869:958 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 21809ms total)
T6814 4869:959 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0001ms, 21810ms total)
T6814 4869:960 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 01  returns 0x01 (0000ms, 21810ms total)
T6814 4869:963 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 00 00  returns 0x02 (0001ms, 21811ms total)
T6814 4869:964 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 21811ms total)
T6814 4869:964 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 21812ms total)
T6814 4869:965 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 00 00  returns 0x02 (0001ms, 21813ms total)
T6814 4869:966 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0000ms, 21813ms total)
T5504 4869:969 JLINK_IsHalted()  returns FALSE (0001ms, 21814ms total)
T5504 4870:071 JLINK_IsHalted()  returns FALSE (0000ms, 21813ms total)
T5504 4870:172 JLINK_IsHalted()  returns FALSE (0000ms, 21813ms total)
T5504 4870:273 JLINK_IsHalted()  returns FALSE (0000ms, 21813ms total)
T5504 4870:374 JLINK_IsHalted()  returns FALSE (0000ms, 21813ms total)
T6814 4870:479 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 21813ms total)
T6814 4870:479 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 21814ms total)
T6814 4870:480 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0000ms, 21814ms total)
T6814 4870:480 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 01  returns 0x01 (0001ms, 21815ms total)
T6814 4870:484 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 00 00  returns 0x02 (0001ms, 21816ms total)
T6814 4870:485 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 21816ms total)
T6814 4870:485 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 21817ms total)
T6814 4870:486 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 00 00  returns 0x02 (0001ms, 21818ms total)
T6814 4870:487 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0000ms, 21818ms total)
T5504 4870:487 JLINK_IsHalted()  returns FALSE (0001ms, 21819ms total)
T5504 4870:589 JLINK_IsHalted()  returns FALSE (0000ms, 21818ms total)
T5504 4870:690 JLINK_IsHalted()  returns FALSE (0000ms, 21818ms total)
T5504 4870:791 JLINK_IsHalted()  returns FALSE (0000ms, 21818ms total)
T5504 4870:892 JLINK_IsHalted()  returns FALSE (0000ms, 21818ms total)
T6814 4870:996 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 21819ms total)
T6814 4870:997 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 21820ms total)
T6814 4870:998 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0000ms, 21820ms total)
T6814 4870:998 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 02  returns 0x01 (0001ms, 21821ms total)
T6814 4871:002 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 00 00  returns 0x02 (0001ms, 21822ms total)
T6814 4871:003 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 21822ms total)
T6814 4871:003 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 21823ms total)
T6814 4871:004 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 00 00  returns 0x02 (0000ms, 21823ms total)
T6814 4871:004 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0001ms, 21824ms total)
T5504 4871:005 JLINK_IsHalted()  returns FALSE (0001ms, 21825ms total)
T5504 4871:108 JLINK_IsHalted()  returns FALSE (0000ms, 21824ms total)
T5504 4871:209 JLINK_IsHalted()  returns FALSE (0000ms, 21824ms total)
T5504 4871:310 JLINK_IsHalted()  returns FALSE (0000ms, 21824ms total)
T5504 4871:411 JLINK_IsHalted()  returns FALSE (0000ms, 21824ms total)
T6814 4871:516 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 21824ms total)
T6814 4871:516 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 21825ms total)
T6814 4871:517 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0001ms, 21826ms total)
T6814 4871:518 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 02  returns 0x01 (0000ms, 21826ms total)
T6814 4871:521 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 00 00  returns 0x02 (0001ms, 21827ms total)
T6814 4871:522 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 21827ms total)
T6814 4871:522 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 21828ms total)
T6814 4871:523 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 00 00  returns 0x02 (0001ms, 21829ms total)
T6814 4871:524 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0000ms, 21829ms total)
T5504 4871:524 JLINK_IsHalted()  returns FALSE (0001ms, 21830ms total)
T5504 4871:626 JLINK_IsHalted()  returns FALSE (0000ms, 21829ms total)
T5504 4871:727 JLINK_IsHalted()  returns FALSE (0000ms, 21829ms total)
T5504 4871:828 JLINK_IsHalted()  returns FALSE (0000ms, 21829ms total)
T5504 4871:929 JLINK_IsHalted()  returns FALSE (0000ms, 21829ms total)
T6814 4872:034 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 21830ms total)
T6814 4872:035 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0000ms, 21830ms total)
T6814 4872:035 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0001ms, 21831ms total)
T6814 4872:036 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 21832ms total)
T6814 4872:039 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: D7 02  returns 0x02 (0001ms, 21833ms total)
T6814 4872:042 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 21834ms total)
T6814 4872:043 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 21835ms total)
T6814 4872:044 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: EC 01  returns 0x02 (0000ms, 21835ms total)
T6814 4872:047 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0001ms, 21836ms total)
T5504 4872:048 JLINK_IsHalted()  returns FALSE (0000ms, 21836ms total)
T5504 4872:149 JLINK_IsHalted()  returns FALSE (0000ms, 21836ms total)
T5504 4872:250 JLINK_IsHalted()  returns FALSE (0000ms, 21836ms total)
T5504 4872:351 JLINK_IsHalted()  returns FALSE (0000ms, 21836ms total)
T5504 4872:452 JLINK_IsHalted()  returns FALSE (0000ms, 21836ms total)
T6814 4872:557 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 21836ms total)
T6814 4872:557 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 21837ms total)
T6814 4872:558 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0001ms, 21838ms total)
T6814 4872:559 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 21838ms total)
T6814 4872:562 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: DC 02  returns 0x02 (0001ms, 21839ms total)
T6814 4872:569 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 21839ms total)
T6814 4872:569 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 21840ms total)
T6814 4872:570 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 09 00  returns 0x02 (0001ms, 21841ms total)
T6814 4872:576 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0001ms, 21842ms total)
T5504 4872:577 JLINK_IsHalted()  returns FALSE (0001ms, 21843ms total)
T5504 4872:679 JLINK_IsHalted()  returns FALSE (0000ms, 21842ms total)
T5504 4872:780 JLINK_IsHalted()  returns FALSE (0000ms, 21842ms total)
T5504 4872:881 JLINK_IsHalted()  returns FALSE (0000ms, 21842ms total)
T5504 4872:982 JLINK_IsHalted()  returns FALSE (0000ms, 21842ms total)
T6814 4873:087 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 21842ms total)
T6814 4873:087 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 21843ms total)
T6814 4873:088 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0000ms, 21843ms total)
T6814 4873:088 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 21844ms total)
T6814 4873:089 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: DC 02  returns 0x02 (0001ms, 21845ms total)
T6814 4873:093 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 21845ms total)
T6814 4873:093 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 21846ms total)
T6814 4873:094 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 09 00  returns 0x02 (0001ms, 21847ms total)
T6814 4873:098 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0000ms, 21847ms total)
T5504 4873:098 JLINK_IsHalted()  returns FALSE (0001ms, 21848ms total)
T5504 4873:200 JLINK_IsHalted()  returns FALSE (0000ms, 21847ms total)
T5504 4873:301 JLINK_IsHalted()  returns FALSE (0000ms, 21847ms total)
T5504 4873:402 JLINK_IsHalted()  returns FALSE (0000ms, 21847ms total)
T5504 4873:503 JLINK_IsHalted()  returns FALSE (0000ms, 21847ms total)
T6814 4873:608 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 21847ms total)
T6814 4873:608 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 21848ms total)
T6814 4873:609 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0001ms, 21849ms total)
T6814 4873:610 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 01  returns 0x01 (0000ms, 21849ms total)
T6814 4873:613 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: DC 02  returns 0x02 (0001ms, 21850ms total)
T6814 4873:614 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 21851ms total)
T6814 4873:615 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 21851ms total)
T6814 4873:615 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 09 00  returns 0x02 (0001ms, 21852ms total)
T6814 4873:616 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0000ms, 21852ms total)
T5504 4873:616 JLINK_IsHalted()  returns FALSE (0001ms, 21853ms total)
T5504 4873:718 JLINK_IsHalted()  returns FALSE (0000ms, 21852ms total)
T5504 4873:819 JLINK_IsHalted()  returns FALSE (0000ms, 21852ms total)
T5504 4873:920 JLINK_IsHalted()  returns FALSE (0000ms, 21852ms total)
T5504 4874:021 JLINK_IsHalted()  returns FALSE (0000ms, 21852ms total)
T6814 4874:126 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 21852ms total)
T6814 4874:126 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 21853ms total)
T6814 4874:127 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0001ms, 21854ms total)
T6814 4874:128 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 01  returns 0x01 (0000ms, 21854ms total)
T6814 4874:131 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: DC 02  returns 0x02 (0001ms, 21855ms total)
T6814 4874:132 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 21855ms total)
T6814 4874:132 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 21856ms total)
T6814 4874:133 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 09 00  returns 0x02 (0001ms, 21857ms total)
T6814 4874:134 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0000ms, 21857ms total)
T5504 4874:134 JLINK_IsHalted()  returns FALSE (0001ms, 21858ms total)
T5504 4874:236 JLINK_IsHalted()  returns FALSE (0000ms, 21857ms total)
T5504 4874:337 JLINK_IsHalted()  returns FALSE (0000ms, 21857ms total)
T5504 4874:438 JLINK_IsHalted()  returns FALSE (0000ms, 21857ms total)
T5504 4874:539 JLINK_IsHalted()  returns FALSE (0000ms, 21857ms total)
T6814 4874:643 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 21858ms total)
T6814 4874:644 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 21859ms total)
T6814 4874:645 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0000ms, 21859ms total)
T6814 4874:645 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 02  returns 0x01 (0001ms, 21860ms total)
T6814 4874:648 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: DC 02  returns 0x02 (0001ms, 21861ms total)
T6814 4874:649 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 21861ms total)
T6814 4874:650 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 21862ms total)
T6814 4874:650 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 09 00  returns 0x02 (0001ms, 21863ms total)
T6814 4874:651 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0000ms, 21863ms total)
T5504 4874:651 JLINK_IsHalted()  returns FALSE (0001ms, 21864ms total)
T5504 4874:753 JLINK_IsHalted()  returns FALSE (0000ms, 21863ms total)
T5504 4874:854 JLINK_IsHalted()  returns FALSE (0000ms, 21863ms total)
T5504 4874:955 JLINK_IsHalted()  returns FALSE (0000ms, 21863ms total)
T5504 4875:056 JLINK_IsHalted()  returns FALSE (0000ms, 21863ms total)
T6814 4875:160 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 21864ms total)
T6814 4875:161 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 21865ms total)
T6814 4875:162 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0000ms, 21865ms total)
T6814 4875:162 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 02  returns 0x01 (0001ms, 21866ms total)
T6814 4875:166 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: DC 02  returns 0x02 (0001ms, 21867ms total)
T6814 4875:167 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 21867ms total)
T6814 4875:167 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 21868ms total)
T6814 4875:168 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 09 00  returns 0x02 (0001ms, 21869ms total)
T6814 4875:169 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0000ms, 21869ms total)
T5504 4875:169 JLINK_IsHalted()  returns FALSE (0001ms, 21870ms total)
T5504 4875:271 JLINK_IsHalted()  returns FALSE (0000ms, 21869ms total)
T5504 4875:372 JLINK_IsHalted()  returns FALSE (0000ms, 21869ms total)
T5504 4875:473 JLINK_IsHalted()  returns FALSE (0000ms, 21869ms total)
T5504 4875:575 JLINK_IsHalted()  returns FALSE (0000ms, 21869ms total)
T6814 4875:680 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 21870ms total)
T6814 4875:681 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0000ms, 21870ms total)
T6814 4875:681 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 13 00  returns 0x02 (0001ms, 21871ms total)
T6814 4875:685 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 03  returns 0x01 (0001ms, 21872ms total)
T6814 4875:688 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: DC 02  returns 0x02 (0001ms, 21873ms total)
T6814 4875:689 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 21874ms total)
T6814 4875:690 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 21874ms total)
T6814 4875:690 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 09 00  returns 0x02 (0001ms, 21875ms total)
T6814 4875:691 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0001ms, 21876ms total)
T5504 4875:692 JLINK_IsHalted()  returns FALSE (0000ms, 21876ms total)
T5504 4875:793 JLINK_IsHalted()  returns FALSE (0000ms, 21876ms total)
T5504 4875:894 JLINK_IsHalted()  returns FALSE (0000ms, 21876ms total)
T5504 4875:995 JLINK_IsHalted()  returns FALSE (0000ms, 21876ms total)
T5504 4876:096 JLINK_IsHalted()  returns FALSE (0000ms, 21876ms total)
T6814 4876:201 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 21876ms total)
T6814 4876:201 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 21877ms total)
T6814 4876:202 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 13 00  returns 0x02 (0000ms, 21877ms total)
T6814 4876:205 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 03  returns 0x01 (0001ms, 21878ms total)
T6814 4876:209 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: DC 02  returns 0x02 (0000ms, 21878ms total)
T6814 4876:209 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 21879ms total)
T6814 4876:210 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 21880ms total)
T6814 4876:211 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 09 00  returns 0x02 (0000ms, 21880ms total)
T6814 4876:211 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0001ms, 21881ms total)
T5504 4876:212 JLINK_IsHalted()  returns FALSE (0001ms, 21882ms total)
T5504 4876:314 JLINK_IsHalted()  returns FALSE (0000ms, 21881ms total)
T5504 4876:415 JLINK_IsHalted()  returns FALSE (0000ms, 21881ms total)
T5504 4876:516 JLINK_IsHalted()  returns FALSE (0000ms, 21881ms total)
T5504 4876:617 JLINK_IsHalted()  returns FALSE (0000ms, 21881ms total)
T6814 4876:722 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 21881ms total)
T6814 4876:722 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 21882ms total)
T6814 4876:723 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 13 00  returns 0x02 (0001ms, 21883ms total)
T6814 4876:724 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 04  returns 0x01 (0000ms, 21883ms total)
T6814 4876:727 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: DC 02  returns 0x02 (0001ms, 21884ms total)
T6814 4876:728 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 21884ms total)
T6814 4876:728 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 21885ms total)
T6814 4876:729 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 09 00  returns 0x02 (0001ms, 21886ms total)
T6814 4876:730 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0000ms, 21886ms total)
T5504 4876:730 JLINK_IsHalted()  returns FALSE (0001ms, 21887ms total)
T5504 4876:832 JLINK_IsHalted()  returns FALSE (0000ms, 21886ms total)
T5504 4876:933 JLINK_IsHalted()  returns FALSE (0000ms, 21886ms total)
T5504 4877:034 JLINK_IsHalted()  returns FALSE (0000ms, 21886ms total)
T5504 4877:135 JLINK_IsHalted()  returns FALSE (0000ms, 21886ms total)
T6814 4877:239 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 21887ms total)
T6814 4877:240 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 21888ms total)
T6814 4877:241 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 13 00  returns 0x02 (0000ms, 21888ms total)
T6814 4877:241 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 04  returns 0x01 (0001ms, 21889ms total)
T6814 4877:245 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: DC 02  returns 0x02 (0001ms, 21890ms total)
T6814 4877:246 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 21890ms total)
T6814 4877:246 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 21891ms total)
T6814 4877:247 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 09 00  returns 0x02 (0000ms, 21891ms total)
T6814 4877:248 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0000ms, 21891ms total)
T5504 4877:248 JLINK_IsHalted()  returns FALSE (0001ms, 21892ms total)
T5504 4877:350 JLINK_IsHalted()  returns FALSE (0000ms, 21891ms total)
T5504 4877:451 JLINK_IsHalted()  returns FALSE (0000ms, 21891ms total)
T5504 4877:552 JLINK_IsHalted()  returns FALSE (0000ms, 21891ms total)
T5504 4877:653 JLINK_IsHalted()  returns FALSE (0000ms, 21891ms total)
T6814 4877:758 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 21891ms total)
T6814 4877:758 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 21892ms total)
T6814 4877:759 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 13 00  returns 0x02 (0001ms, 21893ms total)
T6814 4877:760 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 05  returns 0x01 (0000ms, 21893ms total)
T6814 4877:763 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: DC 02  returns 0x02 (0001ms, 21894ms total)
T6814 4877:764 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 21895ms total)
T6814 4877:765 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 21895ms total)
T6814 4877:765 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 09 00  returns 0x02 (0001ms, 21896ms total)
T6814 4877:766 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0000ms, 21896ms total)
T5504 4877:766 JLINK_IsHalted()  returns FALSE (0001ms, 21897ms total)
T5504 4877:868 JLINK_IsHalted()  returns FALSE (0000ms, 21896ms total)
T5504 4877:969 JLINK_IsHalted()  returns FALSE (0000ms, 21896ms total)
T5504 4878:070 JLINK_IsHalted()  returns FALSE (0000ms, 21896ms total)
T5504 4878:171 JLINK_IsHalted()  returns FALSE (0000ms, 21896ms total)
T6814 4878:276 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 21896ms total)
T6814 4878:276 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 21897ms total)
T6814 4878:277 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 13 00  returns 0x02 (0001ms, 21898ms total)
T6814 4878:278 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 05  returns 0x01 (0000ms, 21898ms total)
T6814 4878:281 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: DC 02  returns 0x02 (0001ms, 21899ms total)
T6814 4878:282 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 21900ms total)
T6814 4878:283 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 21900ms total)
T6814 4878:283 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 09 00  returns 0x02 (0001ms, 21901ms total)
T6814 4878:284 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0001ms, 21902ms total)
T5504 4878:285 JLINK_IsHalted()  returns FALSE (0000ms, 21902ms total)
T5504 4878:386 JLINK_IsHalted()  returns FALSE (0000ms, 21902ms total)
T5504 4878:487 JLINK_IsHalted()  returns FALSE (0000ms, 21902ms total)
T5504 4878:588 JLINK_IsHalted()  returns FALSE (0000ms, 21902ms total)
T5504 4878:689 JLINK_IsHalted()  returns FALSE (0000ms, 21902ms total)
T6814 4878:793 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 01  returns 0x01 (0001ms, 21903ms total)
T6814 4878:797 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 21904ms total)
T6814 4878:798 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 13 00  returns 0x02 (0001ms, 21905ms total)
T6814 4878:799 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 06  returns 0x01 (0000ms, 21905ms total)
T6814 4878:802 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: DC 02  returns 0x02 (0001ms, 21906ms total)
T6814 4878:803 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 21906ms total)
T6814 4878:803 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 21907ms total)
T6814 4878:804 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 09 00  returns 0x02 (0001ms, 21908ms total)
T6814 4878:805 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0000ms, 21908ms total)
T5504 4878:805 JLINK_IsHalted()  returns FALSE (0001ms, 21909ms total)
T5504 4878:907 JLINK_IsHalted()  returns FALSE (0000ms, 21908ms total)
T5504 4879:008 JLINK_IsHalted()  returns FALSE (0000ms, 21908ms total)
T5504 4879:109 JLINK_IsHalted()  returns FALSE (0000ms, 21908ms total)
T5504 4879:210 JLINK_IsHalted()  returns FALSE (0000ms, 21908ms total)
T6814 4879:314 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 01  returns 0x01 (0001ms, 21909ms total)
T6814 4879:318 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 21910ms total)
T6814 4879:319 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 13 00  returns 0x02 (0000ms, 21910ms total)
T6814 4879:319 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 06  returns 0x01 (0001ms, 21911ms total)
T6814 4879:323 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: DC 02  returns 0x02 (0001ms, 21912ms total)
T6814 4879:324 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 21912ms total)
T6814 4879:324 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 21913ms total)
T6814 4879:325 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 09 00  returns 0x02 (0000ms, 21913ms total)
T6814 4879:325 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0001ms, 21914ms total)
T5504 4879:326 JLINK_IsHalted()  returns FALSE (0001ms, 21915ms total)
T5504 4879:428 JLINK_IsHalted()  returns FALSE (0000ms, 21914ms total)
T5504 4879:529 JLINK_IsHalted()  returns FALSE (0000ms, 21914ms total)
T5504 4879:630 JLINK_IsHalted()  returns FALSE (0000ms, 21914ms total)
T5504 4879:731 JLINK_IsHalted()  returns FALSE (0000ms, 21914ms total)
T6814 4879:835 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 01  returns 0x01 (0001ms, 21915ms total)
T6814 4879:836 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 21916ms total)
T6814 4879:837 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 13 00  returns 0x02 (0000ms, 21916ms total)
T6814 4879:837 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 21917ms total)
T6814 4879:841 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: DC 02  returns 0x02 (0001ms, 21918ms total)
T6814 4879:842 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 21918ms total)
T6814 4879:842 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 21919ms total)
T6814 4879:843 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 09 00  returns 0x02 (0000ms, 21919ms total)
T6814 4879:843 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: FF FF  returns 0x02 (0001ms, 21920ms total)
T5504 4879:847 JLINK_IsHalted()  returns FALSE (0001ms, 21921ms total)
T5504 4879:949 JLINK_IsHalted()  returns FALSE (0000ms, 21920ms total)
T5504 4880:051 JLINK_IsHalted()  returns FALSE (0000ms, 21920ms total)
T5504 4880:152 JLINK_IsHalted()  returns FALSE (0000ms, 21920ms total)
T5504 4880:253 JLINK_IsHalted()  returns FALSE (0000ms, 21920ms total)
T6814 4880:358 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 01  returns 0x01 (0000ms, 21920ms total)
T6814 4880:358 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 21921ms total)
T6814 4880:359 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 13 00  returns 0x02 (0000ms, 21921ms total)
T6814 4880:360 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 21921ms total)
T6814 4880:363 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: DC 02  returns 0x02 (0001ms, 21922ms total)
T6814 4880:364 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 21922ms total)
T6814 4880:364 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 21923ms total)
T6814 4880:365 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 09 00  returns 0x02 (0001ms, 21924ms total)
T6814 4880:366 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: FF FF  returns 0x02 (0000ms, 21924ms total)
T5504 4880:369 JLINK_IsHalted()  returns FALSE (0001ms, 21925ms total)
T5504 4880:471 JLINK_IsHalted()  returns FALSE (0000ms, 21924ms total)
T5504 4880:572 JLINK_IsHalted()  returns FALSE (0000ms, 21924ms total)
T5504 4880:673 JLINK_IsHalted()  returns FALSE (0000ms, 21924ms total)
T5504 4880:774 JLINK_IsHalted()  returns FALSE (0000ms, 21924ms total)
T6814 4880:879 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 01  returns 0x01 (0000ms, 21924ms total)
T6814 4880:879 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 21925ms total)
T6814 4880:880 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 13 00  returns 0x02 (0001ms, 21926ms total)
T6814 4880:881 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 21926ms total)
T6814 4880:881 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: DC 02  returns 0x02 (0001ms, 21927ms total)
T6814 4880:882 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 21928ms total)
T6814 4880:883 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 21928ms total)
T6814 4880:883 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 09 00  returns 0x02 (0001ms, 21929ms total)
T6814 4880:884 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: FF FF  returns 0x02 (0001ms, 21930ms total)
T5504 4880:885 JLINK_IsHalted()  returns FALSE (0000ms, 21930ms total)
T5504 4880:986 JLINK_IsHalted()  returns FALSE (0000ms, 21930ms total)
T5504 4881:087 JLINK_IsHalted()  returns FALSE (0000ms, 21930ms total)
T5504 4881:188 JLINK_IsHalted()  returns FALSE (0000ms, 21930ms total)
T5504 4881:289 JLINK_IsHalted()  returns FALSE (0000ms, 21930ms total)
T6814 4881:394 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 01  returns 0x01 (0000ms, 21930ms total)
T6814 4881:394 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 21931ms total)
T6814 4881:395 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 13 00  returns 0x02 (0001ms, 21932ms total)
T6814 4881:396 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 21932ms total)
T6814 4881:396 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: DC 02  returns 0x02 (0001ms, 21933ms total)
T6814 4881:397 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 21934ms total)
T6814 4881:398 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 21934ms total)
T6814 4881:398 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 09 00  returns 0x02 (0001ms, 21935ms total)
T6814 4881:399 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: FF FF  returns 0x02 (0000ms, 21935ms total)
T5504 4881:399 JLINK_IsHalted()  returns FALSE (0001ms, 21936ms total)
T5504 4881:501 JLINK_IsHalted()  returns FALSE (0000ms, 21935ms total)
T5504 4881:602 JLINK_IsHalted()  returns FALSE (0000ms, 21935ms total)
T5504 4881:703 JLINK_IsHalted()  returns FALSE (0000ms, 21935ms total)
T5504 4881:804 JLINK_IsHalted()  returns FALSE (0000ms, 21935ms total)
T6814 4881:909 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 01  returns 0x01 (0000ms, 21935ms total)
T6814 4881:909 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 21936ms total)
T6814 4881:910 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 13 00  returns 0x02 (0001ms, 21937ms total)
T6814 4881:911 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 21937ms total)
T6814 4881:911 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: DC 02  returns 0x02 (0001ms, 21938ms total)
T6814 4881:912 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 21938ms total)
T6814 4881:912 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 21939ms total)
T6814 4881:913 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 09 00  returns 0x02 (0001ms, 21940ms total)
T6814 4881:914 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: FF FF  returns 0x02 (0000ms, 21940ms total)
T5504 4881:914 JLINK_IsHalted()  returns FALSE (0001ms, 21941ms total)
T5504 4882:016 JLINK_IsHalted()  returns FALSE (0000ms, 21940ms total)
T5504 4882:117 JLINK_IsHalted()  returns FALSE (0000ms, 21940ms total)
T5504 4882:218 JLINK_IsHalted()  returns FALSE (0000ms, 21940ms total)
T5504 4882:319 JLINK_IsHalted()  returns FALSE (0000ms, 21940ms total)
T6814 4882:424 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 01  returns 0x01 (0000ms, 21940ms total)
T6814 4882:424 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 21941ms total)
T6814 4882:425 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 13 00  returns 0x02 (0001ms, 21942ms total)
T6814 4882:426 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 21942ms total)
T6814 4882:426 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: DC 02  returns 0x02 (0001ms, 21943ms total)
T6814 4882:427 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 21943ms total)
T6814 4882:427 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 21944ms total)
T6814 4882:428 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 09 00  returns 0x02 (0001ms, 21945ms total)
T6814 4882:429 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: FF FF  returns 0x02 (0000ms, 21945ms total)
T5504 4882:429 JLINK_IsHalted()  returns FALSE (0001ms, 21946ms total)
T5504 4882:531 JLINK_IsHalted()  returns FALSE (0000ms, 21945ms total)
T5504 4882:632 JLINK_IsHalted()  returns FALSE (0000ms, 21945ms total)
T5504 4882:733 JLINK_IsHalted()  returns FALSE (0000ms, 21945ms total)
T5504 4882:834 JLINK_IsHalted()  returns FALSE (0000ms, 21945ms total)
T6814 4882:939 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 01  returns 0x01 (0000ms, 21945ms total)
T6814 4882:939 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 21946ms total)
T6814 4882:940 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 13 00  returns 0x02 (0001ms, 21947ms total)
T6814 4882:941 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 21947ms total)
T6814 4882:941 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: DC 02  returns 0x02 (0001ms, 21948ms total)
T6814 4882:942 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 21948ms total)
T6814 4882:942 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 21949ms total)
T6814 4882:943 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 09 00  returns 0x02 (0001ms, 21950ms total)
T6814 4882:944 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: FF FF  returns 0x02 (0000ms, 21950ms total)
T5504 4882:944 JLINK_IsHalted()  returns FALSE (0001ms, 21951ms total)
T5504 4883:046 JLINK_IsHalted()  returns FALSE (0000ms, 21950ms total)
T5504 4883:147 JLINK_IsHalted()  returns FALSE (0000ms, 21950ms total)
T5504 4883:248 JLINK_IsHalted()  returns FALSE (0000ms, 21950ms total)
T5504 4883:349 JLINK_IsHalted()  returns FALSE (0000ms, 21950ms total)
T6814 4883:454 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 01  returns 0x01 (0000ms, 21950ms total)
T6814 4883:454 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 21951ms total)
T6814 4883:455 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 13 00  returns 0x02 (0001ms, 21952ms total)
T6814 4883:456 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 21952ms total)
T6814 4883:456 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: DC 02  returns 0x02 (0001ms, 21953ms total)
T6814 4883:457 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 21953ms total)
T6814 4883:457 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 21954ms total)
T6814 4883:458 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 09 00  returns 0x02 (0001ms, 21955ms total)
T6814 4883:459 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: FF FF  returns 0x02 (0000ms, 21955ms total)
T5504 4883:459 JLINK_IsHalted()  returns FALSE (0001ms, 21956ms total)
T5504 4883:561 JLINK_IsHalted()  returns FALSE (0000ms, 21955ms total)
T5504 4883:662 JLINK_IsHalted()  returns FALSE (0000ms, 21955ms total)
T5504 4883:763 JLINK_IsHalted()  returns FALSE (0000ms, 21955ms total)
T5504 4883:864 JLINK_IsHalted()  returns FALSE (0000ms, 21955ms total)
T6814 4883:969 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 01  returns 0x01 (0000ms, 21955ms total)
T6814 4883:969 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 21956ms total)
T6814 4883:970 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 13 00  returns 0x02 (0001ms, 21957ms total)
T6814 4883:971 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 21957ms total)
T6814 4883:971 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: DC 02  returns 0x02 (0001ms, 21958ms total)
T6814 4883:972 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 21959ms total)
T6814 4883:973 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 21959ms total)
T6814 4883:973 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 09 00  returns 0x02 (0001ms, 21960ms total)
T6814 4883:974 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: FF FF  returns 0x02 (0001ms, 21961ms total)
T5504 4883:975 JLINK_IsHalted()  returns FALSE (0000ms, 21961ms total)
T5504 4884:076 JLINK_IsHalted()  returns FALSE (0000ms, 21961ms total)
T5504 4884:177 JLINK_IsHalted()  returns FALSE (0000ms, 21961ms total)
T5504 4884:278 JLINK_IsHalted()  returns FALSE (0000ms, 21961ms total)
T5504 4884:379 JLINK_IsHalted()  returns FALSE (0000ms, 21961ms total)
T6814 4884:485 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 01  returns 0x01 (0000ms, 21961ms total)
T6814 4884:485 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 21962ms total)
T6814 4884:486 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 13 00  returns 0x02 (0001ms, 21963ms total)
T6814 4884:487 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 21963ms total)
T6814 4884:487 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: DC 02  returns 0x02 (0001ms, 21964ms total)
T6814 4884:488 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 21964ms total)
T6814 4884:488 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 21965ms total)
T6814 4884:489 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 09 00  returns 0x02 (0001ms, 21966ms total)
T6814 4884:490 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: FF FF  returns 0x02 (0000ms, 21966ms total)
T5504 4884:490 JLINK_IsHalted()  returns FALSE (0001ms, 21967ms total)
T5504 4884:592 JLINK_IsHalted()  returns FALSE (0000ms, 21966ms total)
T5504 4884:693 JLINK_IsHalted()  returns FALSE (0000ms, 21966ms total)
T5504 4884:794 JLINK_IsHalted()  returns FALSE (0000ms, 21966ms total)
T5504 4884:895 JLINK_IsHalted()  returns FALSE (0000ms, 21966ms total)
T6814 4884:999 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 01  returns 0x01 (0001ms, 21967ms total)
T6814 4885:000 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 21968ms total)
T6814 4885:001 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 13 00  returns 0x02 (0000ms, 21968ms total)
T6814 4885:001 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 21969ms total)
T6814 4885:002 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: DC 02  returns 0x02 (0001ms, 21970ms total)
T6814 4885:003 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 21970ms total)
T6814 4885:003 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 21971ms total)
T6814 4885:004 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 09 00  returns 0x02 (0001ms, 21972ms total)
T6814 4885:005 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: FF FF  returns 0x02 (0000ms, 21972ms total)
T5504 4885:005 JLINK_IsHalted()  returns FALSE (0001ms, 21973ms total)
T5504 4885:107 JLINK_IsHalted()  returns FALSE (0000ms, 21972ms total)
T5504 4885:208 JLINK_IsHalted()  returns FALSE (0000ms, 21972ms total)
T5504 4885:309 JLINK_IsHalted()  returns FALSE (0000ms, 21972ms total)
T5504 4885:410 JLINK_IsHalted()  returns FALSE (0000ms, 21972ms total)
T6814 4885:515 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 01  returns 0x01 (0000ms, 21972ms total)
T6814 4885:515 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 21973ms total)
T6814 4885:516 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 13 00  returns 0x02 (0001ms, 21974ms total)
T6814 4885:517 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 21974ms total)
T6814 4885:517 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: DC 02  returns 0x02 (0001ms, 21975ms total)
T6814 4885:518 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 21975ms total)
T6814 4885:518 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 21976ms total)
T6814 4885:519 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 09 00  returns 0x02 (0001ms, 21977ms total)
T6814 4885:520 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: FF FF  returns 0x02 (0000ms, 21977ms total)
T5504 4885:520 JLINK_IsHalted()  returns FALSE (0001ms, 21978ms total)
T5504 4885:622 JLINK_IsHalted()  returns FALSE (0000ms, 21977ms total)
T5504 4885:723 JLINK_IsHalted()  returns FALSE (0000ms, 21977ms total)
T5504 4885:824 JLINK_IsHalted()  returns FALSE (0000ms, 21977ms total)
T5504 4885:925 JLINK_IsHalted()  returns FALSE (0000ms, 21977ms total)
T6814 4886:030 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 01  returns 0x01 (0000ms, 21977ms total)
T6814 4886:030 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 21978ms total)
T6814 4886:031 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 13 00  returns 0x02 (0001ms, 21979ms total)
T6814 4886:032 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 21979ms total)
T6814 4886:032 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: DC 02  returns 0x02 (0001ms, 21980ms total)
T6814 4886:033 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 21980ms total)
T6814 4886:033 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 21981ms total)
T6814 4886:034 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 09 00  returns 0x02 (0001ms, 21982ms total)
T6814 4886:035 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: FF FF  returns 0x02 (0000ms, 21982ms total)
T5504 4886:035 JLINK_IsHalted()  returns FALSE (0001ms, 21983ms total)
T5504 4886:137 JLINK_IsHalted()  returns FALSE (0000ms, 21982ms total)
T5504 4886:238 JLINK_IsHalted()  returns FALSE (0000ms, 21982ms total)
T5504 4886:339 JLINK_IsHalted()  returns FALSE (0001ms, 21983ms total)
T5504 4886:441 JLINK_IsHalted()  returns FALSE (0000ms, 21982ms total)
T6814 4886:546 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 01  returns 0x01 (0003ms, 21985ms total)
T6814 4886:549 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0000ms, 21985ms total)
T6814 4886:549 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 13 00  returns 0x02 (0001ms, 21986ms total)
T6814 4886:550 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 21987ms total)
T6814 4886:551 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: DC 02  returns 0x02 (0000ms, 21987ms total)
T6814 4886:551 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 21988ms total)
T6814 4886:552 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 21988ms total)
T6814 4886:552 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 09 00  returns 0x02 (0001ms, 21989ms total)
T6814 4886:553 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: FF FF  returns 0x02 (0001ms, 21990ms total)
T5504 4886:554 JLINK_IsHalted()  returns FALSE (0000ms, 21990ms total)
T5504 4886:655 JLINK_IsHalted()  returns FALSE (0000ms, 21990ms total)
T5504 4886:756 JLINK_IsHalted()  returns FALSE (0000ms, 21990ms total)
T5504 4886:857 JLINK_IsHalted()  returns FALSE (0000ms, 21990ms total)
T5504 4886:958 JLINK_IsHalted()  returns FALSE (0000ms, 21990ms total)
T6814 4887:062 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 01  returns 0x01 (0001ms, 21991ms total)
T6814 4887:063 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 21992ms total)
T6814 4887:064 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 13 00  returns 0x02 (0001ms, 21993ms total)
T6814 4887:065 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 21993ms total)
T6814 4887:065 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: DC 02  returns 0x02 (0001ms, 21994ms total)
T6814 4887:066 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 21994ms total)
T6814 4887:066 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 21995ms total)
T6814 4887:067 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 09 00  returns 0x02 (0001ms, 21996ms total)
T6814 4887:068 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: FF FF  returns 0x02 (0000ms, 21996ms total)
T5504 4887:068 JLINK_IsHalted()  returns FALSE (0001ms, 21997ms total)
T5504 4887:170 JLINK_IsHalted()  returns FALSE (0000ms, 21996ms total)
T5504 4887:271 JLINK_IsHalted()  returns FALSE (0000ms, 21996ms total)
T5504 4887:372 JLINK_IsHalted()  returns FALSE (0000ms, 21996ms total)
T5504 4887:473 JLINK_IsHalted()  returns FALSE (0000ms, 21996ms total)
T6814 4887:578 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 01  returns 0x01 (0000ms, 21996ms total)
T6814 4887:578 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 21997ms total)
T6814 4887:579 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 13 00  returns 0x02 (0001ms, 21998ms total)
T6814 4887:580 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 21998ms total)
T6814 4887:580 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: DC 02  returns 0x02 (0001ms, 21999ms total)
T6814 4887:581 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 21999ms total)
T6814 4887:581 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 22000ms total)
T6814 4887:582 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 09 00  returns 0x02 (0001ms, 22001ms total)
T6814 4887:583 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: FF FF  returns 0x02 (0000ms, 22001ms total)
T5504 4887:583 JLINK_IsHalted()  returns FALSE (0001ms, 22002ms total)
T5504 4887:685 JLINK_IsHalted()  returns FALSE (0000ms, 22001ms total)
T5504 4887:786 JLINK_IsHalted()  returns FALSE (0000ms, 22001ms total)
T5504 4887:887 JLINK_IsHalted()  returns FALSE (0000ms, 22001ms total)
T5504 4887:988 JLINK_IsHalted()  returns FALSE (0000ms, 22001ms total)
T6814 4888:093 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 01  returns 0x01 (0000ms, 22001ms total)
T6814 4888:093 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 22002ms total)
T6814 4888:094 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 13 00  returns 0x02 (0001ms, 22003ms total)
T6814 4888:095 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 22003ms total)
T6814 4888:095 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: DC 02  returns 0x02 (0001ms, 22004ms total)
T6814 4888:096 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 22004ms total)
T6814 4888:096 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 22005ms total)
T6814 4888:097 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 09 00  returns 0x02 (0001ms, 22006ms total)
T6814 4888:098 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: FF FF  returns 0x02 (0000ms, 22006ms total)
T5504 4888:098 JLINK_IsHalted()  returns FALSE (0001ms, 22007ms total)
T5504 4888:200 JLINK_IsHalted()  returns FALSE (0000ms, 22006ms total)
T5504 4888:301 JLINK_IsHalted()  returns FALSE (0000ms, 22006ms total)
T5504 4888:402 JLINK_IsHalted()  returns FALSE (0000ms, 22006ms total)
T5504 4888:503 JLINK_IsHalted()  returns FALSE (0000ms, 22006ms total)
T6814 4888:608 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 22006ms total)
T6814 4888:612 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0000ms, 22006ms total)
T6814 4888:612 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 13 00  returns 0x02 (0001ms, 22007ms total)
T6814 4888:613 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 22008ms total)
T6814 4888:614 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: DC 02  returns 0x02 (0000ms, 22008ms total)
T6814 4888:614 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 22009ms total)
T6814 4888:615 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 22009ms total)
T6814 4888:615 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 09 00  returns 0x02 (0001ms, 22010ms total)
T6814 4888:616 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0001ms, 22011ms total)
T5504 4888:620 JLINK_IsHalted()  returns FALSE (0000ms, 22011ms total)
T5504 4888:721 JLINK_IsHalted()  returns FALSE (0000ms, 22011ms total)
T5504 4888:822 JLINK_IsHalted()  returns FALSE (0000ms, 22011ms total)
T5504 4888:924 JLINK_IsHalted()  returns FALSE (0000ms, 22011ms total)
T5504 4889:025 JLINK_IsHalted()  returns FALSE (0000ms, 22011ms total)
T6814 4889:129 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 22012ms total)
T6814 4889:133 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 22013ms total)
T6814 4889:134 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 13 00  returns 0x02 (0001ms, 22014ms total)
T6814 4889:135 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 22014ms total)
T6814 4889:135 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: DC 02  returns 0x02 (0001ms, 22015ms total)
T6814 4889:136 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 22016ms total)
T6814 4889:137 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 22016ms total)
T6814 4889:137 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 09 00  returns 0x02 (0001ms, 22017ms total)
T6814 4889:138 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0000ms, 22017ms total)
T5504 4889:141 JLINK_IsHalted()  returns FALSE (0001ms, 22018ms total)
T5504 4889:243 JLINK_IsHalted()  returns FALSE (0000ms, 22017ms total)
T5504 4889:344 JLINK_IsHalted()  returns FALSE (0000ms, 22017ms total)
T5504 4889:445 JLINK_IsHalted()  returns FALSE (0000ms, 22017ms total)
T5504 4889:546 JLINK_IsHalted()  returns FALSE (0000ms, 22017ms total)
T6814 4889:651 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 22017ms total)
T6814 4889:651 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 22018ms total)
T6814 4889:652 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 13 00  returns 0x02 (0001ms, 22019ms total)
T6814 4889:653 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 01  returns 0x01 (0000ms, 22019ms total)
T6814 4889:656 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: DC 02  returns 0x02 (0001ms, 22020ms total)
T6814 4889:657 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 22021ms total)
T6814 4889:658 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 22021ms total)
T6814 4889:658 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 09 00  returns 0x02 (0001ms, 22022ms total)
T6814 4889:659 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0000ms, 22022ms total)
T5504 4889:659 JLINK_IsHalted()  returns FALSE (0001ms, 22023ms total)
T5504 4889:761 JLINK_IsHalted()  returns FALSE (0000ms, 22022ms total)
T5504 4889:862 JLINK_IsHalted()  returns FALSE (0000ms, 22022ms total)
T5504 4889:963 JLINK_IsHalted()  returns FALSE (0000ms, 22022ms total)
T5504 4890:064 JLINK_IsHalted()  returns FALSE (0000ms, 22022ms total)
T6814 4890:169 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 22022ms total)
T6814 4890:169 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 22023ms total)
T6814 4890:170 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 13 00  returns 0x02 (0000ms, 22023ms total)
T6814 4890:170 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 01  returns 0x01 (0001ms, 22024ms total)
T6814 4890:174 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: DC 02  returns 0x02 (0001ms, 22025ms total)
T6814 4890:175 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 22025ms total)
T6814 4890:175 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 22026ms total)
T6814 4890:176 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 09 00  returns 0x02 (0000ms, 22026ms total)
T6814 4890:176 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0001ms, 22027ms total)
T5504 4890:177 JLINK_IsHalted()  returns FALSE (0001ms, 22028ms total)
T5504 4890:279 JLINK_IsHalted()  returns FALSE (0000ms, 22027ms total)
T5504 4890:380 JLINK_IsHalted()  returns FALSE (0000ms, 22027ms total)
T5504 4890:481 JLINK_IsHalted()  returns FALSE (0002ms, 22029ms total)
T5504 4890:584 JLINK_IsHalted()  returns FALSE (0002ms, 22029ms total)
T6814 4890:691 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0002ms, 22029ms total)
T6814 4890:693 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0003ms, 22032ms total)
T6814 4890:696 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 13 00  returns 0x02 (0004ms, 22036ms total)
T6814 4890:700 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0003ms, 22039ms total)
T6814 4890:706 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: A7 03  returns 0x02 (0004ms, 22043ms total)
T6814 4890:713 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0003ms, 22046ms total)
T6814 4890:716 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0004ms, 22050ms total)
T6814 4890:720 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: AF 03  returns 0x02 (0003ms, 22053ms total)
T6814 4890:726 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0004ms, 22057ms total)
T5504 4890:730 JLINK_IsHalted()  returns FALSE (0003ms, 22060ms total)
T5504 4890:834 JLINK_IsHalted()  returns FALSE (0002ms, 22059ms total)
T5504 4890:937 JLINK_IsHalted()  returns FALSE (0003ms, 22060ms total)
T5504 4891:041 JLINK_IsHalted()  returns FALSE (0002ms, 22059ms total)
T5504 4891:144 JLINK_IsHalted()  returns FALSE (0003ms, 22060ms total)
T6814 4891:251 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0002ms, 22059ms total)
T6814 4891:253 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0004ms, 22063ms total)
T6814 4891:257 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 13 00  returns 0x02 (0003ms, 22066ms total)
T6814 4891:260 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0003ms, 22069ms total)
T6814 4891:266 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: A7 03  returns 0x02 (0004ms, 22073ms total)
T6814 4891:273 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0004ms, 22077ms total)
T6814 4891:277 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0003ms, 22080ms total)
T6814 4891:280 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: AF 03  returns 0x02 (0003ms, 22083ms total)
T6814 4891:286 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0001ms, 22084ms total)
T5504 4891:287 JLINK_IsHalted()  returns FALSE (0001ms, 22085ms total)
T5504 4891:389 JLINK_IsHalted()  returns FALSE (0000ms, 22084ms total)
T5504 4891:490 JLINK_IsHalted()  returns FALSE (0000ms, 22084ms total)
T5504 4891:591 JLINK_IsHalted()  returns FALSE (0000ms, 22084ms total)
T5504 4891:692 JLINK_IsHalted()  returns FALSE (0000ms, 22084ms total)
T6814 4891:796 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 00  returns 0x01 (0001ms, 22085ms total)
T6814 4891:800 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: 00 00  returns 0x02 (0001ms, 22086ms total)
T6814 4891:804 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0000ms, 22086ms total)
T6814 4891:807 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 22087ms total)
T6814 4891:808 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 00 00  returns 0x02 (0000ms, 22087ms total)
T6814 4891:811 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 22088ms total)
T6814 4891:812 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 22088ms total)
T6814 4891:812 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 00 00  returns 0x02 (0001ms, 22089ms total)
T6814 4891:816 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 00 00  returns 0x02 (0000ms, 22089ms total)
T5504 4891:819 JLINK_IsHalted()  returns FALSE (0000ms, 22089ms total)
T5504 4891:920 JLINK_IsHalted()  returns FALSE (0000ms, 22089ms total)
T5504 4892:021 JLINK_IsHalted()  returns FALSE (0000ms, 22089ms total)
T5504 4892:123 JLINK_IsHalted()  returns FALSE (0000ms, 22089ms total)
T5504 4892:224 JLINK_IsHalted()  returns FALSE (0000ms, 22089ms total)
T6814 4892:329 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 00  returns 0x01 (0000ms, 22089ms total)
T6814 4892:333 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: 00 00  returns 0x02 (0000ms, 22089ms total)
T6814 4892:336 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0001ms, 22090ms total)
T6814 4892:340 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 22090ms total)
T6814 4892:340 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 00 00  returns 0x02 (0001ms, 22091ms total)
T6814 4892:344 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 22091ms total)
T6814 4892:344 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 22092ms total)
T6814 4892:345 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 00 00  returns 0x02 (0001ms, 22093ms total)
T6814 4892:348 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 00 00  returns 0x02 (0001ms, 22094ms total)
T5504 4892:351 JLINK_IsHalted()  returns FALSE (0001ms, 22095ms total)
T5504 4892:453 JLINK_IsHalted()  returns FALSE (0000ms, 22094ms total)
T5504 4892:554 JLINK_IsHalted()  returns FALSE (0000ms, 22094ms total)
T5504 4892:655 JLINK_IsHalted()  returns FALSE (0000ms, 22094ms total)
T5504 4892:756 JLINK_IsHalted()  returns FALSE (0000ms, 22094ms total)
T6814 4892:861 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 00  returns 0x01 (0000ms, 22094ms total)
T6814 4892:861 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: 00 00  returns 0x02 (0001ms, 22095ms total)
T6814 4892:862 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0001ms, 22096ms total)
T6814 4892:863 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 22096ms total)
T6814 4892:863 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 00 00  returns 0x02 (0001ms, 22097ms total)
T6814 4892:864 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 22098ms total)
T6814 4892:865 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 22098ms total)
T6814 4892:865 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 00 00  returns 0x02 (0001ms, 22099ms total)
T6814 4892:866 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 00 00  returns 0x02 (0000ms, 22099ms total)
T5504 4892:867 JLINK_IsHalted()  returns FALSE (0000ms, 22099ms total)
T5504 4892:968 JLINK_IsHalted()  returns FALSE (0000ms, 22099ms total)
T5504 4893:069 JLINK_IsHalted()  returns FALSE (0000ms, 22099ms total)
T5504 4893:170 JLINK_IsHalted()  returns FALSE (0001ms, 22100ms total)
T5504 4893:272 JLINK_IsHalted()  returns FALSE (0002ms, 22101ms total)
T6814 4893:378 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0003ms, 22102ms total)
T6814 4893:384 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0004ms, 22106ms total)
T6814 4893:390 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0001ms, 22107ms total)
T6814 4893:391 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0003ms, 22110ms total)
T6814 4893:394 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 00 00  returns 0x02 (0004ms, 22114ms total)
T6814 4893:398 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0003ms, 22117ms total)
T6814 4893:401 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0003ms, 22120ms total)
T6814 4893:404 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 00 00  returns 0x02 (0004ms, 22124ms total)
T6814 4893:408 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0003ms, 22127ms total)
T5504 4893:414 JLINK_IsHalted()  returns FALSE (0004ms, 22131ms total)
T5504 4893:519 JLINK_IsHalted()  returns FALSE (0002ms, 22129ms total)
T5504 4893:622 JLINK_IsHalted()  returns FALSE (0003ms, 22130ms total)
T5504 4893:726 JLINK_IsHalted()  returns FALSE (0002ms, 22129ms total)
T5504 4893:829 JLINK_IsHalted()  returns FALSE (0002ms, 22129ms total)
T6814 4893:936 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0002ms, 22129ms total)
T6814 4893:941 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0004ms, 22133ms total)
T6814 4893:948 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0004ms, 22137ms total)
T6814 4893:952 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0003ms, 22140ms total)
T6814 4893:955 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 00 00  returns 0x02 (0003ms, 22143ms total)
T6814 4893:958 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0004ms, 22147ms total)
T6814 4893:962 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0003ms, 22150ms total)
T6814 4893:965 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 00 00  returns 0x02 (0003ms, 22153ms total)
T6814 4893:968 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0004ms, 22157ms total)
T5504 4893:975 JLINK_IsHalted()  returns FALSE (0000ms, 22157ms total)
T5504 4894:076 JLINK_IsHalted()  returns FALSE (0000ms, 22157ms total)
T5504 4894:177 JLINK_IsHalted()  returns FALSE (0000ms, 22157ms total)
T5504 4894:278 JLINK_IsHalted()  returns FALSE (0000ms, 22157ms total)
T5504 4894:379 JLINK_IsHalted()  returns FALSE (0000ms, 22157ms total)
T6814 4894:483 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 00  returns 0x01 (0001ms, 22158ms total)
T6814 4894:487 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: 00 00  returns 0x02 (0001ms, 22159ms total)
T6814 4894:490 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0001ms, 22160ms total)
T6814 4894:491 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 22161ms total)
T6814 4894:492 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 00 00  returns 0x02 (0000ms, 22161ms total)
T6814 4894:492 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 22162ms total)
T6814 4894:493 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 22162ms total)
T6814 4894:494 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 00 00  returns 0x02 (0000ms, 22162ms total)
T6814 4894:494 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 00 00  returns 0x02 (0001ms, 22163ms total)
T5504 4894:498 JLINK_IsHalted()  returns FALSE (0000ms, 22163ms total)
T5504 4894:599 JLINK_IsHalted()  returns FALSE (0000ms, 22163ms total)
T5504 4894:700 JLINK_IsHalted()  returns FALSE (0000ms, 22163ms total)
T5504 4894:801 JLINK_IsHalted()  returns FALSE (0000ms, 22163ms total)
T5504 4894:902 JLINK_IsHalted()  returns FALSE (0000ms, 22163ms total)
T6814 4895:007 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 00  returns 0x01 (0000ms, 22163ms total)
T6814 4895:010 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: 00 00  returns 0x02 (0001ms, 22164ms total)
T6814 4895:014 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0000ms, 22164ms total)
T6814 4895:014 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 22165ms total)
T6814 4895:015 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 00 00  returns 0x02 (0001ms, 22166ms total)
T6814 4895:016 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 22166ms total)
T6814 4895:016 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 22167ms total)
T6814 4895:017 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 00 00  returns 0x02 (0001ms, 22168ms total)
T6814 4895:018 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 00 00  returns 0x02 (0000ms, 22168ms total)
T5504 4895:021 JLINK_IsHalted()  returns FALSE (0001ms, 22169ms total)
T5504 4895:123 JLINK_IsHalted()  returns FALSE (0000ms, 22168ms total)
T5504 4895:224 JLINK_IsHalted()  returns FALSE (0000ms, 22168ms total)
T5504 4895:325 JLINK_IsHalted()  returns FALSE (0000ms, 22168ms total)
T5504 4895:426 JLINK_IsHalted()  returns FALSE (0000ms, 22168ms total)
T6814 4895:531 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 00  returns 0x01 (0000ms, 22168ms total)
T6814 4895:531 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: 00 00  returns 0x02 (0001ms, 22169ms total)
T6814 4895:532 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0001ms, 22170ms total)
T6814 4895:533 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 22170ms total)
T6814 4895:533 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 00 00  returns 0x02 (0001ms, 22171ms total)
T6814 4895:534 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 22172ms total)
T6814 4895:535 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 22172ms total)
T6814 4895:535 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 00 00  returns 0x02 (0001ms, 22173ms total)
T6814 4895:536 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 00 00  returns 0x02 (0000ms, 22173ms total)
T5504 4895:536 JLINK_IsHalted()  returns FALSE (0001ms, 22174ms total)
T5504 4895:639 JLINK_IsHalted()  returns FALSE (0000ms, 22173ms total)
T5504 4895:740 JLINK_IsHalted()  returns FALSE (0000ms, 22173ms total)
T5504 4895:841 JLINK_IsHalted()  returns FALSE (0000ms, 22173ms total)
T5504 4895:942 JLINK_IsHalted()  returns FALSE (0000ms, 22173ms total)
T6814 4896:046 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 22174ms total)
T6814 4896:050 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0000ms, 22174ms total)
T6814 4896:053 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0000ms, 22174ms total)
T6814 4896:053 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 22175ms total)
T6814 4896:054 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 00 00  returns 0x02 (0001ms, 22176ms total)
T6814 4896:055 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 22176ms total)
T6814 4896:055 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 22177ms total)
T6814 4896:056 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 00 00  returns 0x02 (0001ms, 22178ms total)
T6814 4896:057 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0000ms, 22178ms total)
T5504 4896:060 JLINK_IsHalted()  returns FALSE (0000ms, 22178ms total)
T5504 4896:161 JLINK_IsHalted()  returns FALSE (0000ms, 22178ms total)
T5504 4896:262 JLINK_IsHalted()  returns FALSE (0000ms, 22178ms total)
T5504 4896:363 JLINK_IsHalted()  returns FALSE (0000ms, 22178ms total)
T5504 4896:464 JLINK_IsHalted()  returns FALSE (0000ms, 22178ms total)
T6814 4896:568 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 22179ms total)
T6814 4896:572 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 22180ms total)
T6814 4896:575 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0001ms, 22181ms total)
T6814 4896:576 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 22181ms total)
T6814 4896:576 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 00 00  returns 0x02 (0001ms, 22182ms total)
T6814 4896:577 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 22182ms total)
T6814 4896:577 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 22183ms total)
T6814 4896:578 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 00 00  returns 0x02 (0001ms, 22184ms total)
T6814 4896:579 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0000ms, 22184ms total)
T5504 4896:582 JLINK_IsHalted()  returns FALSE (0001ms, 22185ms total)
T5504 4896:684 JLINK_IsHalted()  returns FALSE (0000ms, 22184ms total)
T5504 4896:785 JLINK_IsHalted()  returns FALSE (0000ms, 22184ms total)
T5504 4896:886 JLINK_IsHalted()  returns FALSE (0000ms, 22184ms total)
T5504 4896:987 JLINK_IsHalted()  returns FALSE (0000ms, 22184ms total)
T6814 4897:091 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 22185ms total)
T6814 4897:092 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 22186ms total)
T6814 4897:093 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0000ms, 22186ms total)
T6814 4897:093 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 01  returns 0x01 (0001ms, 22187ms total)
T6814 4897:097 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 00 00  returns 0x02 (0001ms, 22188ms total)
T6814 4897:098 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 22188ms total)
T6814 4897:098 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 22189ms total)
T6814 4897:099 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 00 00  returns 0x02 (0001ms, 22190ms total)
T6814 4897:100 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0000ms, 22190ms total)
T5504 4897:100 JLINK_IsHalted()  returns FALSE (0001ms, 22191ms total)
T5504 4897:202 JLINK_IsHalted()  returns FALSE (0000ms, 22190ms total)
T5504 4897:303 JLINK_IsHalted()  returns FALSE (0000ms, 22190ms total)
T5504 4897:404 JLINK_IsHalted()  returns FALSE (0000ms, 22190ms total)
T5504 4897:505 JLINK_IsHalted()  returns FALSE (0000ms, 22190ms total)
T6814 4897:609 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 22191ms total)
T6814 4897:610 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0000ms, 22191ms total)
T6814 4897:611 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0000ms, 22191ms total)
T6814 4897:611 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 01  returns 0x01 (0001ms, 22192ms total)
T6814 4897:614 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 00 00  returns 0x02 (0001ms, 22193ms total)
T6814 4897:615 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 22193ms total)
T6814 4897:615 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 22194ms total)
T6814 4897:616 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 00 00  returns 0x02 (0001ms, 22195ms total)
T6814 4897:617 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0000ms, 22195ms total)
T5504 4897:617 JLINK_IsHalted()  returns FALSE (0001ms, 22196ms total)
T5504 4897:719 JLINK_IsHalted()  returns FALSE (0000ms, 22195ms total)
T5504 4897:820 JLINK_IsHalted()  returns FALSE (0000ms, 22195ms total)
T5504 4897:921 JLINK_IsHalted()  returns FALSE (0000ms, 22195ms total)
T5504 4898:022 JLINK_IsHalted()  returns FALSE (0000ms, 22195ms total)
T6814 4898:126 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 22196ms total)
T6814 4898:127 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 22197ms total)
T6814 4898:128 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0000ms, 22197ms total)
T6814 4898:128 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 02  returns 0x01 (0001ms, 22198ms total)
T6814 4898:131 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 00 00  returns 0x02 (0001ms, 22199ms total)
T6814 4898:132 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 22200ms total)
T6814 4898:133 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 22200ms total)
T6814 4898:133 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 00 00  returns 0x02 (0001ms, 22201ms total)
T6814 4898:134 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0001ms, 22202ms total)
T5504 4898:135 JLINK_IsHalted()  returns FALSE (0000ms, 22202ms total)
T5504 4898:236 JLINK_IsHalted()  returns FALSE (0000ms, 22202ms total)
T5504 4898:337 JLINK_IsHalted()  returns FALSE (0000ms, 22202ms total)
T5504 4898:438 JLINK_IsHalted()  returns FALSE (0000ms, 22202ms total)
T5504 4898:539 JLINK_IsHalted()  returns FALSE (0000ms, 22202ms total)
T6814 4898:643 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 22203ms total)
T6814 4898:644 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 22204ms total)
T6814 4898:645 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0001ms, 22205ms total)
T6814 4898:646 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 02  returns 0x01 (0000ms, 22205ms total)
T6814 4898:649 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 00 00  returns 0x02 (0001ms, 22206ms total)
T6814 4898:650 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 22206ms total)
T6814 4898:650 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 22207ms total)
T6814 4898:651 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 00 00  returns 0x02 (0001ms, 22208ms total)
T6814 4898:652 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0000ms, 22208ms total)
T5504 4898:652 JLINK_IsHalted()  returns FALSE (0001ms, 22209ms total)
T5504 4898:754 JLINK_IsHalted()  returns FALSE (0000ms, 22208ms total)
T5504 4898:855 JLINK_IsHalted()  returns FALSE (0000ms, 22208ms total)
T5504 4898:956 JLINK_IsHalted()  returns FALSE (0000ms, 22208ms total)
T5504 4899:057 JLINK_IsHalted()  returns FALSE (0000ms, 22208ms total)
T6814 4899:161 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 22209ms total)
T6814 4899:162 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 22210ms total)
T6814 4899:163 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0000ms, 22210ms total)
T6814 4899:163 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 22211ms total)
T6814 4899:167 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: B6 02  returns 0x02 (0001ms, 22212ms total)
T6814 4899:171 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 22213ms total)
T6814 4899:172 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 22213ms total)
T6814 4899:172 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: D0 00  returns 0x02 (0001ms, 22214ms total)
T6814 4899:176 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0001ms, 22215ms total)
T5504 4899:177 JLINK_IsHalted()  returns FALSE (0000ms, 22215ms total)
T5504 4899:278 JLINK_IsHalted()  returns FALSE (0000ms, 22215ms total)
T5504 4899:379 JLINK_IsHalted()  returns FALSE (0000ms, 22215ms total)
T5504 4899:480 JLINK_IsHalted()  returns FALSE (0000ms, 22215ms total)
T5504 4899:581 JLINK_IsHalted()  returns FALSE (0000ms, 22215ms total)
T6814 4899:685 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 22216ms total)
T6814 4899:686 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 22217ms total)
T6814 4899:687 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0000ms, 22217ms total)
T6814 4899:687 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 22218ms total)
T6814 4899:691 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: C9 01  returns 0x02 (0000ms, 22218ms total)
T6814 4899:697 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 22219ms total)
T6814 4899:698 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 22219ms total)
T6814 4899:698 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 09 00  returns 0x02 (0001ms, 22220ms total)
T6814 4899:705 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0000ms, 22220ms total)
T5504 4899:705 JLINK_IsHalted()  returns FALSE (0001ms, 22221ms total)
T5504 4899:807 JLINK_IsHalted()  returns FALSE (0000ms, 22220ms total)
T5504 4899:908 JLINK_IsHalted()  returns FALSE (0000ms, 22220ms total)
T5504 4900:010 JLINK_IsHalted()  returns FALSE (0000ms, 22220ms total)
T5504 4900:111 JLINK_IsHalted()  returns FALSE (0000ms, 22220ms total)
T6814 4900:216 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 22220ms total)
T6814 4900:216 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 22221ms total)
T6814 4900:217 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0001ms, 22222ms total)
T6814 4900:218 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 22222ms total)
T6814 4900:218 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: C9 01  returns 0x02 (0001ms, 22223ms total)
T6814 4900:222 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 22223ms total)
T6814 4900:222 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 22224ms total)
T6814 4900:223 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 09 00  returns 0x02 (0001ms, 22225ms total)
T6814 4900:227 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0000ms, 22225ms total)
T5504 4900:227 JLINK_IsHalted()  returns FALSE (0001ms, 22226ms total)
T5504 4900:329 JLINK_IsHalted()  returns FALSE (0000ms, 22225ms total)
T5504 4900:430 JLINK_IsHalted()  returns FALSE (0000ms, 22225ms total)
T5504 4900:531 JLINK_IsHalted()  returns FALSE (0000ms, 22225ms total)
T5504 4900:632 JLINK_IsHalted()  returns FALSE (0000ms, 22225ms total)
T6814 4900:736 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 22226ms total)
T6814 4900:737 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 22227ms total)
T6814 4900:738 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0000ms, 22227ms total)
T6814 4900:738 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 22228ms total)
T6814 4900:739 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 20 01  returns 0x02 (0001ms, 22229ms total)
T6814 4900:743 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 22229ms total)
T6814 4900:743 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 22230ms total)
T6814 4900:744 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 09 00  returns 0x02 (0000ms, 22230ms total)
T6814 4900:744 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0001ms, 22231ms total)
T5504 4900:745 JLINK_IsHalted()  returns FALSE (0001ms, 22232ms total)
T5504 4900:847 JLINK_IsHalted()  returns FALSE (0000ms, 22231ms total)
T5504 4900:948 JLINK_IsHalted()  returns FALSE (0000ms, 22231ms total)
T5504 4901:049 JLINK_IsHalted()  returns FALSE (0000ms, 22231ms total)
T5504 4901:150 JLINK_IsHalted()  returns FALSE (0000ms, 22231ms total)
T6814 4901:255 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 22231ms total)
T6814 4901:255 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 22232ms total)
T6814 4901:256 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0000ms, 22232ms total)
T6814 4901:256 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 22233ms total)
T6814 4901:257 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 20 01  returns 0x02 (0001ms, 22234ms total)
T6814 4901:261 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 22235ms total)
T6814 4901:262 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 22235ms total)
T6814 4901:262 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 09 00  returns 0x02 (0001ms, 22236ms total)
T6814 4901:263 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0001ms, 22237ms total)
T5504 4901:264 JLINK_IsHalted()  returns FALSE (0000ms, 22237ms total)
T5504 4901:365 JLINK_IsHalted()  returns FALSE (0000ms, 22237ms total)
T5504 4901:466 JLINK_IsHalted()  returns FALSE (0000ms, 22237ms total)
T5504 4901:567 JLINK_IsHalted()  returns FALSE (0000ms, 22237ms total)
T5504 4901:668 JLINK_IsHalted()  returns FALSE (0000ms, 22237ms total)
T6814 4901:773 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 22237ms total)
T6814 4901:773 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 22238ms total)
T6814 4901:774 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0001ms, 22239ms total)
T6814 4901:775 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 22239ms total)
T6814 4901:775 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 12 01  returns 0x02 (0001ms, 22240ms total)
T6814 4901:779 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 22240ms total)
T6814 4901:779 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 22241ms total)
T6814 4901:780 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 09 00  returns 0x02 (0001ms, 22242ms total)
T6814 4901:781 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0000ms, 22242ms total)
T5504 4901:781 JLINK_IsHalted()  returns FALSE (0001ms, 22243ms total)
T5504 4901:883 JLINK_IsHalted()  returns FALSE (0000ms, 22242ms total)
T5504 4901:984 JLINK_IsHalted()  returns FALSE (0000ms, 22242ms total)
T5504 4902:085 JLINK_IsHalted()  returns FALSE (0000ms, 22242ms total)
T5504 4902:186 JLINK_IsHalted()  returns FALSE (0000ms, 22242ms total)
T6814 4902:290 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 22243ms total)
T6814 4902:291 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 22244ms total)
T6814 4902:292 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 00 00  returns 0x02 (0000ms, 22244ms total)
T6814 4902:293 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 22245ms total)
T6814 4902:293 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 12 01  returns 0x02 (0001ms, 22246ms total)
T6814 4902:297 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 22246ms total)
T6814 4902:297 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 22247ms total)
T6814 4902:298 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 09 00  returns 0x02 (0001ms, 22248ms total)
T6814 4902:299 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0000ms, 22248ms total)
T5504 4902:299 JLINK_IsHalted()  returns FALSE (0001ms, 22249ms total)
T5504 4902:401 JLINK_IsHalted()  returns FALSE (0000ms, 22248ms total)
T6814 4902:484 JLINK_SetBPEx(Addr = 0x08009346, Type = 0xFFFFFFF2) -- CPU is running -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002008)  returns 0x00000001 (0001ms, 22249ms total)
T5504 4902:502 JLINK_IsHalted()  returns FALSE (0000ms, 22249ms total)
T5504 4902:603 JLINK_IsHalted()  returns FALSE (0000ms, 22249ms total)
T5504 4902:704 JLINK_IsHalted()  returns FALSE (0000ms, 22249ms total)
T6814 4902:809 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 22249ms total)
T6814 4902:809 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 22250ms total)
T6814 4902:810 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 56 00  returns 0x02 (0000ms, 22250ms total)
T6814 4902:813 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 22251ms total)
T6814 4902:814 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 1B 01  returns 0x02 (0001ms, 22252ms total)
T6814 4902:817 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 22253ms total)
T6814 4902:818 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0001ms, 22254ms total)
T6814 4902:819 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 09 00  returns 0x02 (0000ms, 22254ms total)
T6814 4902:819 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0001ms, 22255ms total)
T5504 4902:820 JLINK_IsHalted()  returns FALSE (0001ms, 22256ms total)
T5504 4902:922 JLINK_IsHalted()  returns FALSE (0000ms, 22255ms total)
T5504 4903:023 JLINK_IsHalted()  returns FALSE (0000ms, 22255ms total)
T5504 4903:124 JLINK_IsHalted()  returns FALSE (0000ms, 22255ms total)
T5504 4903:225 JLINK_IsHalted()  returns FALSE (0000ms, 22255ms total)
T6814 4903:330 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0000ms, 22255ms total)
T6814 4903:330 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 22256ms total)
T6814 4903:331 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 56 00  returns 0x02 (0001ms, 22257ms total)
T6814 4903:334 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 22258ms total)
T6814 4903:335 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 1B 01  returns 0x02 (0001ms, 22259ms total)
T6814 4903:339 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 22260ms total)
T6814 4903:340 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 22260ms total)
T6814 4903:340 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 09 00  returns 0x02 (0001ms, 22261ms total)
T6814 4903:341 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0000ms, 22261ms total)
T5504 4903:341 JLINK_IsHalted()  returns FALSE (0001ms, 22262ms total)
T5504 4903:443 JLINK_IsHalted()  returns FALSE (0000ms, 22261ms total)
T5504 4903:544 JLINK_IsHalted()  returns FALSE (0000ms, 22261ms total)
T5504 4903:645 JLINK_IsHalted()  returns FALSE (0000ms, 22261ms total)
T5504 4903:746 JLINK_IsHalted()  returns FALSE (0000ms, 22261ms total)
T6814 4903:850 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 22262ms total)
T6814 4903:851 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0001ms, 22263ms total)
T6814 4903:852 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000A8) - Data: 56 00  returns 0x02 (0000ms, 22263ms total)
T6814 4903:852 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0001ms, 22264ms total)
T6814 4903:853 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B2) - Data: 0C 01  returns 0x02 (0000ms, 22264ms total)
T6814 4903:856 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0001ms, 22265ms total)
T6814 4903:857 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 22265ms total)
T6814 4903:857 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000164) - Data: 09 00  returns 0x02 (0001ms, 22266ms total)
T6814 4903:858 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0001ms, 22267ms total)
T5504 4903:859 JLINK_IsHalted()  returns FALSE (0000ms, 22267ms total)
T5504 4903:960 JLINK_IsHalted()  returns TRUE (0003ms, 22270ms total)
T5504 4903:963 JLINK_Halt()  returns 0x00 (0000ms, 22267ms total)
T5504 4903:963 JLINK_IsHalted()  returns TRUE (0000ms, 22267ms total)
T5504 4903:963 JLINK_IsHalted()  returns TRUE (0000ms, 22267ms total)
T5504 4903:963 JLINK_IsHalted()  returns TRUE (0000ms, 22267ms total)
T5504 4903:963 JLINK_ReadReg(R15 (PC))  returns 0x08009346 (0000ms, 22267ms total)
T5504 4903:963 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 22267ms total)
T5504 4903:963 JLINK_ClrBPEx(BPHandle = 0x00000001)  returns 0x00 (0000ms, 22267ms total)
T5504 4903:963 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 1 (0001ms, 22268ms total)
T5504 4903:964 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 1 (0001ms, 22269ms total)
T5504 4903:965 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 1 (0000ms, 22269ms total)
T5504 4903:965 JLINK_ReadReg(R0)  returns 0x00000000 (0000ms, 22269ms total)
T5504 4903:965 JLINK_ReadReg(R1)  returns 0x20001425 (0000ms, 22269ms total)
T5504 4903:965 JLINK_ReadReg(R2)  returns 0x00000002 (0000ms, 22269ms total)
T5504 4903:965 JLINK_ReadReg(R3)  returns 0x00000002 (0000ms, 22269ms total)
T5504 4903:965 JLINK_ReadReg(R4)  returns 0x20000088 (0000ms, 22269ms total)
T5504 4903:965 JLINK_ReadReg(R5)  returns 0x00000000 (0000ms, 22269ms total)
T5504 4903:965 JLINK_ReadReg(R6)  returns 0x20001420 (0000ms, 22269ms total)
T5504 4903:965 JLINK_ReadReg(R7)  returns 0x00000001 (0000ms, 22269ms total)
T5504 4903:965 JLINK_ReadReg(R8)  returns 0xFFFFFFFF (0000ms, 22269ms total)
T5504 4903:966 JLINK_ReadReg(R9)  returns 0xFFFFFFFF (0000ms, 22270ms total)
T5504 4903:966 JLINK_ReadReg(R10)  returns 0xFFFFFFFF (0000ms, 22270ms total)
T5504 4903:966 JLINK_ReadReg(R11)  returns 0xFFFFFFFF (0000ms, 22270ms total)
T5504 4903:966 JLINK_ReadReg(R12)  returns 0x20001C00 (0000ms, 22270ms total)
T5504 4903:966 JLINK_ReadReg(R13 (SP))  returns 0x20001C10 (0000ms, 22270ms total)
T5504 4903:966 JLINK_ReadReg(R14)  returns 0x0800930B (0000ms, 22270ms total)
T5504 4903:966 JLINK_ReadReg(R15 (PC))  returns 0x08009346 (0000ms, 22270ms total)
T5504 4903:966 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 22270ms total)
T5504 4903:966 JLINK_ReadReg(MSP)  returns 0x20001C10 (0000ms, 22270ms total)
T5504 4903:966 JLINK_ReadReg(PSP)  returns 0xFFFFFFFC (0000ms, 22270ms total)
T5504 4903:966 JLINK_ReadReg(CFBP)  returns 0x00000001 (0000ms, 22270ms total)
T6814 4903:966 JLINK_ReadMemEx(0x20001C4C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001C40) -- Updating C cache (64 bytes @ 0x20001C40) -- Read from C cache (4 bytes @ 0x20001C4C) - Data: F9 9D 00 08  returns 0x04 (0001ms, 22271ms total)
T6814 4903:967 JLINK_ReadMemEx(0x20001C3C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001C00) -- Updating C cache (64 bytes @ 0x20001C00) -- Read from C cache (4 bytes @ 0x20001C3C) - Data: 88 00 00 20  returns 0x04 (0002ms, 22273ms total)
T6814 4903:969 JLINK_ReadMemEx(0x20001C40, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001C40) - Data: 00 00 00 50  returns 0x04 (0000ms, 22273ms total)
T6814 4903:969 JLINK_ReadMemEx(0x20001C44, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001C44) - Data: 00 00 00 00  returns 0x04 (0000ms, 22273ms total)
T6814 4903:969 JLINK_ReadMemEx(0x20001C48, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001C48) - Data: 00 80 00 00  returns 0x04 (0000ms, 22273ms total)
T6814 4903:969 JLINK_ReadMemEx(0x20001C4C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001C4C) - Data: F9 9D 00 08  returns 0x04 (0000ms, 22273ms total)
T6814 4903:969 JLINK_ReadMemEx(0x20001C64, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001C64) - Data: CD B9 00 08  returns 0x04 (0000ms, 22273ms total)
T6814 4903:969 JLINK_ReadMemEx(0x20001C54, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001C54) - Data: 34 01 00 20  returns 0x04 (0000ms, 22273ms total)
T6814 4903:969 JLINK_ReadMemEx(0x20001C58, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001C58) - Data: 00 00 00 00  returns 0x04 (0000ms, 22273ms total)
T6814 4903:969 JLINK_ReadMemEx(0x20001C5C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001C5C) - Data: A2 00 00 20  returns 0x04 (0000ms, 22273ms total)
T6814 4903:969 JLINK_ReadMemEx(0x20001C60, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001C60) - Data: 72 00 00 20  returns 0x04 (0000ms, 22273ms total)
T6814 4903:969 JLINK_ReadMemEx(0x20001C64, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001C64) - Data: CD B9 00 08  returns 0x04 (0000ms, 22273ms total)
T6814 4903:970 JLINK_ReadMemEx(0x20001C2C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001C2C) - Data: 01  returns 0x01 (0000ms, 22273ms total)
T6814 4903:970 JLINK_ReadMemEx(0x20001C1C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20001C1C) - Data: 01 00  returns 0x02 (0000ms, 22273ms total)
T6814 4903:971 JLINK_ReadMemEx(0x20001C2C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001C2C) - Data: 01  returns 0x01 (0000ms, 22273ms total)
T6814 4903:971 JLINK_ReadMemEx(0x20001C1C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20001C1C) - Data: 01 00  returns 0x02 (0000ms, 22273ms total)
T6814 4903:971 JLINK_ReadMemEx(0x20001308, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001300) -- Updating C cache (64 bytes @ 0x20001300) -- Read from C cache (32 bytes @ 0x20001308) - Data: 00 95 83 00 00 04 00 56 00 17 FB FF FF FF A6 01 ...  returns 0x20 (0001ms, 22274ms total)
T6814 4903:978 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000080) -- Updating C cache (64 bytes @ 0x20000080) -- Read from C cache (1 bytes @ 0x20000088) - Data: 03  returns 0x01 (0001ms, 22275ms total)
T6814 4903:979 JLINK_ReadMemEx(0x20000140, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000140) -- Updating C cache (64 bytes @ 0x20000140) -- Read from C cache (2 bytes @ 0x20000140) - Data: C8 00  returns 0x02 (0002ms, 22277ms total)
T6814 4903:981 JLINK_ReadMemEx(0x200000A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000A8) - Data: 56 00  returns 0x02 (0000ms, 22277ms total)
T6814 4903:981 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000008C) - Data: 00  returns 0x01 (0000ms, 22277ms total)
T6814 4903:981 JLINK_ReadMemEx(0x200000B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000B2) - Data: 68 02  returns 0x02 (0000ms, 22277ms total)
T6814 4903:987 JLINK_ReadMemEx(0x20000097, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000097) - Data: 00  returns 0x01 (0000ms, 22277ms total)
T6814 4903:987 JLINK_ReadMemEx(0x20000096, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000096) - Data: 00  returns 0x01 (0000ms, 22277ms total)
T6814 4903:987 JLINK_ReadMemEx(0x20000164, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000164) - Data: A6 01  returns 0x02 (0000ms, 22277ms total)
T6814 4903:990 JLINK_ReadMemEx(0x200000B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000B6) - Data: 95 83  returns 0x02 (0000ms, 22277ms total)
T6814 4903:997 JLINK_ReadMemEx(0x08009346, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08009340) -- Updating C cache (64 bytes @ 0x08009340) -- Read from C cache (2 bytes @ 0x08009346) - Data: 70 78  returns 0x02 (0001ms, 22278ms total)
T6814 4903:998 JLINK_ReadMemEx(0x08009348, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08009380) -- Updating C cache (64 bytes @ 0x08009380) -- Read from C cache (60 bytes @ 0x08009348) - Data: A0 72 B2 78 62 72 02 2B 13 D1 10 28 0C D0 C8 28 ...  returns 0x3C (0001ms, 22279ms total)
T6814 4904:000 JLINK_ReadMemEx(0x08009348, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08009348) - Data: A0 72  returns 0x02 (0000ms, 22279ms total)
T6814 4904:000 JLINK_ReadMemEx(0x08009348, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08009348) - Data: A0 72 B2 78 62 72 02 2B 13 D1 10 28 0C D0 C8 28 ...  returns 0x3C (0000ms, 22279ms total)
T6814 4904:000 JLINK_ReadMemEx(0x08009348, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08009348) - Data: A0 72  returns 0x02 (0000ms, 22279ms total)
T6814 4904:000 JLINK_ReadMemEx(0x0800934A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800934A) - Data: B2 78  returns 0x02 (0000ms, 22279ms total)
T6814 4904:000 JLINK_ReadMemEx(0x0800934A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800934A) - Data: B2 78  returns 0x02 (0000ms, 22279ms total)
T6814 4904:000 JLINK_ReadMemEx(0x0800934C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800934C) - Data: 62 72 02 2B 13 D1 10 28 0C D0 C8 28 0F D2 31 4B ...  returns 0x3C (0000ms, 22279ms total)
T6814 4904:000 JLINK_ReadMemEx(0x0800934C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800934C) - Data: 62 72  returns 0x02 (0000ms, 22279ms total)
T6814 4905:305 JLINK_ReadMemEx(0x200000CE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200000C0) -- Updating C cache (64 bytes @ 0x200000C0) -- Read from C cache (2 bytes @ 0x200000CE) - Data: 90 E3  returns 0x02 (0002ms, 22281ms total)
T6814 4907:433 JLINK_ReadMemEx(0x20001425, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001400) -- Updating C cache (64 bytes @ 0x20001400) -- Read from C cache (1 bytes @ 0x20001425) - Data: 90  returns 0x01 (0001ms, 22282ms total)
T6814 4907:726 JLINK_ReadMemEx(0x08009300, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08009300) -- Updating C cache (64 bytes @ 0x08009300) -- Read from C cache (60 bytes @ 0x08009300) - Data: 02 22 71 1D 3A 38 FB F7 5D FF 00 28 19 D0 34 E0 ...  returns 0x3C (0001ms, 22283ms total)
T6814 4907:727 JLINK_ReadMemEx(0x08009300, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08009300) - Data: 02 22  returns 0x02 (0000ms, 22283ms total)
T6814 4907:727 JLINK_ReadMemEx(0x08009302, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08009302) - Data: 71 1D  returns 0x02 (0000ms, 22283ms total)
T6814 4907:727 JLINK_ReadMemEx(0x08009302, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08009302) - Data: 71 1D  returns 0x02 (0000ms, 22283ms total)
T6814 4907:727 JLINK_ReadMemEx(0x08009304, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08009304) - Data: 3A 38 FB F7 5D FF 00 28 19 D0 34 E0 A1 6D A2 6E ...  returns 0x3C (0000ms, 22283ms total)
T6814 4907:727 JLINK_ReadMemEx(0x08009304, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08009304) - Data: 3A 38  returns 0x02 (0000ms, 22283ms total)
T6814 4907:727 JLINK_ReadMemEx(0x08009304, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08009304) - Data: 3A 38 FB F7 5D FF 00 28 19 D0 34 E0 A1 6D A2 6E ...  returns 0x3C (0000ms, 22283ms total)
T6814 4907:727 JLINK_ReadMemEx(0x08009304, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08009304) - Data: 3A 38  returns 0x02 (0000ms, 22283ms total)
T6814 4907:727 JLINK_ReadMemEx(0x08009306, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08009306) - Data: FB F7  returns 0x02 (0000ms, 22283ms total)
T6814 4908:398 JLINK_ReadMemEx(0x20001420, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001420) - Data: 02  returns 0x01 (0000ms, 22283ms total)
T6814 4908:398 JLINK_ReadMemEx(0x20001421, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001421) - Data: 60  returns 0x01 (0000ms, 22283ms total)
T6814 4908:398 JLINK_ReadMemEx(0x20001422, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001422) - Data: 02  returns 0x01 (0000ms, 22283ms total)
T6814 4908:398 JLINK_ReadMemEx(0x20001423, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001423) - Data: 01  returns 0x01 (0000ms, 22283ms total)
T6814 4908:398 JLINK_ReadMemEx(0x20001424, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001424) - Data: 00  returns 0x01 (0000ms, 22283ms total)
T6814 4908:398 JLINK_ReadMemEx(0x20001425, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001425) - Data: 90  returns 0x01 (0000ms, 22283ms total)
T6814 4908:398 JLINK_ReadMemEx(0x20001426, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001426) - Data: E3  returns 0x01 (0000ms, 22283ms total)
T6814 4908:399 JLINK_ReadMemEx(0x20001427, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001427) - Data: 7C  returns 0x01 (0000ms, 22284ms total)
T6814 4908:399 JLINK_ReadMemEx(0x20001428, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001428) - Data: DA  returns 0x01 (0000ms, 22284ms total)
T6814 4908:399 JLINK_ReadMemEx(0x20001429, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001429) - Data: FF  returns 0x01 (0000ms, 22284ms total)
T6814 4908:399 JLINK_ReadMemEx(0x2000142A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000142A) - Data: 01  returns 0x01 (0000ms, 22284ms total)
T6814 4908:399 JLINK_ReadMemEx(0x2000142B, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000142B) - Data: 00  returns 0x01 (0000ms, 22284ms total)
T6814 4908:399 JLINK_ReadMemEx(0x2000142C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000142C) - Data: FF  returns 0x01 (0000ms, 22284ms total)
T6814 4908:399 JLINK_ReadMemEx(0x2000142D, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000142D) - Data: FF  returns 0x01 (0000ms, 22284ms total)
T6814 4908:399 JLINK_ReadMemEx(0x2000142E, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000142E) - Data: 01  returns 0x01 (0000ms, 22284ms total)
T6814 4908:399 JLINK_ReadMemEx(0x2000142F, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000142F) - Data: 00  returns 0x01 (0000ms, 22284ms total)
T6814 4908:399 JLINK_ReadMemEx(0x20001430, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001430) - Data: FF  returns 0x01 (0000ms, 22284ms total)
T6814 4908:399 JLINK_ReadMemEx(0x20001431, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001431) - Data: FF  returns 0x01 (0000ms, 22284ms total)
T6814 4908:399 JLINK_ReadMemEx(0x20001432, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001432) - Data: 01  returns 0x01 (0000ms, 22284ms total)
T6814 4908:399 JLINK_ReadMemEx(0x20001433, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001433) - Data: 00  returns 0x01 (0000ms, 22284ms total)
T6814 4908:399 JLINK_ReadMemEx(0x20001434, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001434) - Data: 00  returns 0x01 (0000ms, 22284ms total)
T6814 4908:399 JLINK_ReadMemEx(0x20001435, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001435) - Data: 00  returns 0x01 (0000ms, 22284ms total)
T6814 4908:399 JLINK_ReadMemEx(0x20001436, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001436) - Data: 00  returns 0x01 (0000ms, 22284ms total)
T6814 4908:399 JLINK_ReadMemEx(0x20001437, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001437) - Data: 00  returns 0x01 (0000ms, 22284ms total)
T6814 4908:399 JLINK_ReadMemEx(0x20001438, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001438) - Data: 00  returns 0x01 (0000ms, 22284ms total)
T6814 4908:399 JLINK_ReadMemEx(0x20001439, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001439) - Data: 00  returns 0x01 (0000ms, 22284ms total)
T6814 4908:399 JLINK_ReadMemEx(0x2000143A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000143A) - Data: 00  returns 0x01 (0001ms, 22285ms total)
T6814 4908:400 JLINK_ReadMemEx(0x2000143B, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000143B) - Data: 00  returns 0x01 (0000ms, 22285ms total)
T6814 4908:400 JLINK_ReadMemEx(0x2000143C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000143C) - Data: 00  returns 0x01 (0000ms, 22285ms total)
T6814 4908:400 JLINK_ReadMemEx(0x2000143D, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000143D) - Data: 00  returns 0x01 (0000ms, 22285ms total)
T6814 4908:400 JLINK_ReadMemEx(0x2000143E, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000143E) - Data: 00  returns 0x01 (0000ms, 22285ms total)
T6814 4908:400 JLINK_ReadMemEx(0x2000143F, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000143F) - Data: 00  returns 0x01 (0000ms, 22285ms total)
T6814 4908:400 JLINK_ReadMemEx(0x20001440, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001440) -- Updating C cache (64 bytes @ 0x20001440) -- Read from C cache (1 bytes @ 0x20001440) - Data: 00  returns 0x01 (0001ms, 22286ms total)
T6814 4908:401 JLINK_ReadMemEx(0x20001441, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001441) - Data: 00  returns 0x01 (0000ms, 22286ms total)
T6814 4908:401 JLINK_ReadMemEx(0x20001442, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001442) - Data: 00  returns 0x01 (0000ms, 22286ms total)
T6814 4908:401 JLINK_ReadMemEx(0x20001443, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001443) - Data: 00  returns 0x01 (0000ms, 22286ms total)
T6814 4908:401 JLINK_ReadMemEx(0x20001444, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001444) - Data: 00  returns 0x01 (0000ms, 22286ms total)
T6814 4908:401 JLINK_ReadMemEx(0x20001445, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001445) - Data: 00  returns 0x01 (0000ms, 22286ms total)
T6814 4908:401 JLINK_ReadMemEx(0x20001446, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001446) - Data: 00  returns 0x01 (0000ms, 22286ms total)
T6814 4908:401 JLINK_ReadMemEx(0x20001447, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001447) - Data: 00  returns 0x01 (0000ms, 22286ms total)
T6814 4908:401 JLINK_ReadMemEx(0x20001448, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001448) - Data: 00  returns 0x01 (0001ms, 22287ms total)
T6814 4908:402 JLINK_ReadMemEx(0x20001449, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001449) - Data: 00  returns 0x01 (0000ms, 22287ms total)
T6814 4908:402 JLINK_ReadMemEx(0x2000144A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000144A) - Data: 00  returns 0x01 (0000ms, 22287ms total)
T6814 4908:402 JLINK_ReadMemEx(0x2000144B, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000144B) - Data: 00  returns 0x01 (0000ms, 22287ms total)
T6814 4908:402 JLINK_ReadMemEx(0x2000144C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000144C) - Data: 00  returns 0x01 (0000ms, 22287ms total)
T6814 4908:402 JLINK_ReadMemEx(0x2000144D, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000144D) - Data: 00  returns 0x01 (0000ms, 22287ms total)
T6814 4908:402 JLINK_ReadMemEx(0x2000144E, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000144E) - Data: 00  returns 0x01 (0000ms, 22287ms total)
T6814 4908:402 JLINK_ReadMemEx(0x2000144F, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000144F) - Data: 00  returns 0x01 (0000ms, 22287ms total)
T6814 4908:402 JLINK_ReadMemEx(0x20001450, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001450) - Data: 00  returns 0x01 (0000ms, 22287ms total)
T6814 4993:948 JLINK_ReadMemEx(0x20001420, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001420) - Data: 02  returns 0x01 (0000ms, 22287ms total)
T6814 4993:948 JLINK_ReadMemEx(0x20001421, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001421) - Data: 60  returns 0x01 (0000ms, 22287ms total)
T6814 4993:948 JLINK_ReadMemEx(0x20001422, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001422) - Data: 02  returns 0x01 (0000ms, 22287ms total)
T6814 4993:948 JLINK_ReadMemEx(0x20001423, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001423) - Data: 01  returns 0x01 (0000ms, 22287ms total)
T6814 4993:948 JLINK_ReadMemEx(0x20001424, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001424) - Data: 00  returns 0x01 (0000ms, 22287ms total)
T6814 4993:948 JLINK_ReadMemEx(0x20001425, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001425) - Data: 90  returns 0x01 (0000ms, 22287ms total)
T6814 4993:948 JLINK_ReadMemEx(0x20001426, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001426) - Data: E3  returns 0x01 (0001ms, 22288ms total)
T6814 4993:949 JLINK_ReadMemEx(0x20001427, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001427) - Data: 7C  returns 0x01 (0000ms, 22288ms total)
T6814 4993:949 JLINK_ReadMemEx(0x20001428, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001428) - Data: DA  returns 0x01 (0000ms, 22288ms total)
T6814 4993:949 JLINK_ReadMemEx(0x20001429, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001429) - Data: FF  returns 0x01 (0000ms, 22288ms total)
T6814 4993:949 JLINK_ReadMemEx(0x2000142A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000142A) - Data: 01  returns 0x01 (0000ms, 22288ms total)
T6814 4993:949 JLINK_ReadMemEx(0x2000142B, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000142B) - Data: 00  returns 0x01 (0000ms, 22288ms total)
T6814 4993:949 JLINK_ReadMemEx(0x2000142C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000142C) - Data: FF  returns 0x01 (0000ms, 22288ms total)
T6814 4993:949 JLINK_ReadMemEx(0x2000142D, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000142D) - Data: FF  returns 0x01 (0000ms, 22288ms total)
T6814 4993:949 JLINK_ReadMemEx(0x2000142E, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000142E) - Data: 01  returns 0x01 (0000ms, 22288ms total)
T6814 4993:949 JLINK_ReadMemEx(0x2000142F, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000142F) - Data: 00  returns 0x01 (0000ms, 22288ms total)
T6814 4993:949 JLINK_ReadMemEx(0x20001430, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001430) - Data: FF  returns 0x01 (0000ms, 22288ms total)
T6814 4993:949 JLINK_ReadMemEx(0x20001431, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001431) - Data: FF  returns 0x01 (0000ms, 22288ms total)
T6814 4993:949 JLINK_ReadMemEx(0x20001432, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001432) - Data: 01  returns 0x01 (0000ms, 22288ms total)
T6814 4993:949 JLINK_ReadMemEx(0x20001433, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001433) - Data: 00  returns 0x01 (0000ms, 22288ms total)
T6814 4993:949 JLINK_ReadMemEx(0x20001434, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001434) - Data: 00  returns 0x01 (0000ms, 22288ms total)
T6814 4993:949 JLINK_ReadMemEx(0x20001435, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001435) - Data: 00  returns 0x01 (0000ms, 22288ms total)
T6814 4993:949 JLINK_ReadMemEx(0x20001436, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001436) - Data: 00  returns 0x01 (0000ms, 22288ms total)
T6814 4993:949 JLINK_ReadMemEx(0x20001437, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001437) - Data: 00  returns 0x01 (0000ms, 22288ms total)
T6814 4993:949 JLINK_ReadMemEx(0x20001438, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001438) - Data: 00  returns 0x01 (0000ms, 22288ms total)
T6814 4993:949 JLINK_ReadMemEx(0x20001439, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001439) - Data: 00  returns 0x01 (0000ms, 22288ms total)
T6814 4993:949 JLINK_ReadMemEx(0x2000143A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000143A) - Data: 00  returns 0x01 (0001ms, 22289ms total)
T6814 4993:950 JLINK_ReadMemEx(0x2000143B, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000143B) - Data: 00  returns 0x01 (0000ms, 22289ms total)
T6814 4993:950 JLINK_ReadMemEx(0x2000143C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000143C) - Data: 00  returns 0x01 (0000ms, 22289ms total)
T6814 4993:950 JLINK_ReadMemEx(0x2000143D, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000143D) - Data: 00  returns 0x01 (0000ms, 22289ms total)
T6814 4993:950 JLINK_ReadMemEx(0x2000143E, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000143E) - Data: 00  returns 0x01 (0000ms, 22289ms total)
T6814 4993:950 JLINK_ReadMemEx(0x2000143F, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000143F) - Data: 00  returns 0x01 (0000ms, 22289ms total)
T6814 4993:950 JLINK_ReadMemEx(0x20001440, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001440) - Data: 00  returns 0x01 (0000ms, 22289ms total)
T6814 4993:950 JLINK_ReadMemEx(0x20001441, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001441) - Data: 00  returns 0x01 (0000ms, 22289ms total)
T6814 4993:950 JLINK_ReadMemEx(0x20001442, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001442) - Data: 00  returns 0x01 (0000ms, 22289ms total)
T6814 4993:950 JLINK_ReadMemEx(0x20001443, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001443) - Data: 00  returns 0x01 (0000ms, 22289ms total)
T6814 4993:950 JLINK_ReadMemEx(0x20001444, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001444) - Data: 00  returns 0x01 (0000ms, 22289ms total)
T6814 4993:950 JLINK_ReadMemEx(0x20001445, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001445) - Data: 00  returns 0x01 (0000ms, 22289ms total)
T6814 4993:950 JLINK_ReadMemEx(0x20001446, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001446) - Data: 00  returns 0x01 (0000ms, 22289ms total)
T6814 4993:950 JLINK_ReadMemEx(0x20001447, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001447) - Data: 00  returns 0x01 (0000ms, 22289ms total)
T6814 4993:950 JLINK_ReadMemEx(0x20001448, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001448) - Data: 00  returns 0x01 (0000ms, 22289ms total)
T6814 4993:950 JLINK_ReadMemEx(0x20001449, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001449) - Data: 00  returns 0x01 (0000ms, 22289ms total)
T6814 4993:950 JLINK_ReadMemEx(0x2000144A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000144A) - Data: 00  returns 0x01 (0000ms, 22289ms total)
T6814 4993:950 JLINK_ReadMemEx(0x2000144B, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000144B) - Data: 00  returns 0x01 (0000ms, 22289ms total)
T6814 4993:950 JLINK_ReadMemEx(0x2000144C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000144C) - Data: 00  returns 0x01 (0000ms, 22289ms total)
T6814 4993:950 JLINK_ReadMemEx(0x2000144D, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000144D) - Data: 00  returns 0x01 (0000ms, 22289ms total)
T6814 4993:950 JLINK_ReadMemEx(0x2000144E, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000144E) - Data: 00  returns 0x01 (0000ms, 22289ms total)
T6814 4993:951 JLINK_ReadMemEx(0x2000144F, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000144F) - Data: 00  returns 0x01 (0000ms, 22289ms total)
T6814 4993:951 JLINK_ReadMemEx(0x20001450, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001450) - Data: 00  returns 0x01 (0000ms, 22289ms total)
T5504 4995:184 JLINK_ReadMemEx(0x08009346, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08009346) - Data: 70 78  returns 0x02 (0000ms, 22289ms total)
T5504 4995:184 JLINK_Step()
  ***** Error: CPU is not halted  returns 0x01 (0003ms, 22292ms total)
T5504 4996:486 JLINK_Close() -- CPU is running -- CPU is running -- CPU is running -- CPU is runningCPU could not be halted -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU_WriteMem(4 bytes @ 0xE0002014) >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> (0020ms, 22312ms total)
T5504 4996:486  (0020ms, 22312ms total)
T5504 4996:486 Closed (0020ms, 22312ms total)