WXK
2025-05-23 8415b6bc61925a1a234fe393d8375d3828756931
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
 
TC3B4 000:081 SEGGER J-Link V6.30d Log File (0000ms, 0044ms total)
TC3B4 000:081 DLL Compiled: Feb 16 2018 13:30:32 (0000ms, 0044ms total)
TC3B4 000:081 Logging started @ 2025-05-22 16:43 (0000ms, 0044ms total)
TC3B4 000:081 JLINK_SetWarnOutHandler(...) (0000ms, 0044ms total)
TC3B4 000:081 JLINK_OpenEx(...)
Firmware: J-Link ARM-OB STM32 compiled Aug 22 2012 19:52:04
Hardware: V7.00
S/N: 20090928
Feature(s): RDI,FlashDL,FlashBP,JFlash,GDB
TELNET listener socket opened on port 19021WEBSRV 
Starting webserver (0041ms, 0085ms total)
TC3B4 000:081 WEBSRV Webserver running on local port 19081 (0041ms, 0085ms total)
TC3B4 000:081   returns O.K. (0041ms, 0085ms total)
TC3B4 000:122 JLINK_GetEmuCaps()  returns 0x88EA5833 (0000ms, 0085ms total)
TC3B4 000:122 JLINK_TIF_GetAvailable(...) (0000ms, 0085ms total)
TC3B4 000:122 JLINK_SetErrorOutHandler(...) (0000ms, 0085ms total)
TC3B4 000:122 JLINK_ExecCommand("ProjectFile = "C:\git-mk8000\ChinaUWBProject - 4G¹¤¿¨BOOT\dualboots_Gai_youhua\keil\customboot\JLinkSettings.ini"", ...). C:\Keil_v5\ARM\Segger\JLinkDevices.xml evaluated successfully.  returns 0x00 (0100ms, 0185ms total)
TC3B4 000:222 JLINK_ExecCommand("Device = MK8000", ...). Device "MK8000" selected.  returns 0x00 (0006ms, 0191ms total)
TC3B4 000:228 JLINK_ExecCommand("DisableConnectionTimeout", ...).   returns 0x01 (0000ms, 0191ms total)
TC3B4 000:228 JLINK_GetHardwareVersion()  returns 0x11170 (0000ms, 0191ms total)
TC3B4 000:228 JLINK_GetDLLVersion()  returns 63004 (0000ms, 0191ms total)
TC3B4 000:228 JLINK_GetFirmwareString(...) (0000ms, 0191ms total)
TC3B4 000:228 JLINK_GetDLLVersion()  returns 63004 (0000ms, 0191ms total)
TC3B4 000:228 JLINK_GetCompileDateTime() (0000ms, 0191ms total)
TC3B4 000:228 JLINK_GetFirmwareString(...) (0000ms, 0191ms total)
TC3B4 000:228 JLINK_GetHardwareVersion()  returns 0x11170 (0000ms, 0191ms total)
TC3B4 000:228 JLINK_TIF_Select(JLINKARM_TIF_SWD)  returns 0x00 (0002ms, 0193ms total)
TC3B4 000:230 JLINK_SetSpeed(1000) (0000ms, 0193ms total)
TC3B4 000:230 JLINK_GetId() >0x10B TIF>Found SW-DP with ID 0x0BB11477 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF>Scanning AP map to find all available APs >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>AP[1]: Stopped AP scan as end of AP map has been reachedAP[0]: AHB-AP (IDR: 0x04770021)Iterating through AP map to find AHB-AP to use
 >0x42 TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x42 TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>AP[0]: Core foundAP[0]: AHB-AP ROM base: 0xE00FF000 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>CPUID register: 0x410CC200. Implementer code: 0x41 (ARM)Found Cortex-M0 r0p0, Little endian. -- CPU_ReadMem(4 bytes @ 0xE000EDF0)
 -- CPU_ReadMem(4 bytes @ 0xE0002000)FPUnit: 4 code (BP) slots and 0 literal slots -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000)CoreSight components:ROMTbl[0] @ E00FF000 -- CPU_ReadMem(16 bytes @ 0xE00FF000) -- CPU_ReadMem(16 bytes @ 0xE000EFF0) -- CPU_ReadMem(16 bytes @ 0xE000EFE0)ROMTbl[0][0]: E000E000, CID: B105E00D, PID: 000BB008 SCS -- CPU_ReadMem(16 bytes @ 0xE0001FF0) -- CPU_ReadMem(16 bytes @ 0xE0001FE0)
ROMTbl[0][1]: E0001000, CID: B105E00D, PID: 000BB00A DWT -- CPU_ReadMem(16 bytes @ 0xE0002FF0) -- CPU_ReadMem(16 bytes @ 0xE0002FE0)ROMTbl[0][2]: E0002000, CID: B105E00D, PID: 000BB00B FPB >0x0D TIF> >0x21 TIF>  returns 0x0BB11477 (0144ms, 0337ms total)
TC3B4 000:374 JLINK_GetDLLVersion()  returns 63004 (0000ms, 0337ms total)
TC3B4 000:374 JLINK_CORE_GetFound()  returns 0x60000FF (0000ms, 0337ms total)
TC3B4 000:374 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xE00FF000  returns 0x00 (0000ms, 0337ms total)
TC3B4 000:374 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xE00FF000  returns 0x00 (0000ms, 0337ms total)
TC3B4 000:374 JLINK_GetDebugInfo(0x101 = JLINKARM_DEBUG_INFO_ETM_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0337ms total)
TC3B4 000:374 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, 0338ms total)
TC3B4 000:375 JLINK_GetDebugInfo(0x102 = JLINKARM_DEBUG_INFO_MTB_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0338ms total)
TC3B4 000:375 JLINK_GetDebugInfo(0x103 = JLINKARM_DEBUG_INFO_TPIU_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0338ms total)
TC3B4 000:375 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 (0002ms, 0340ms total)
TC3B4 000:377 JLINK_GetDebugInfo(0x104 = JLINKARM_DEBUG_INFO_ITM_ADDR_INDEX) -- Value=0xE0000000  returns 0x00 (0000ms, 0340ms total)
TC3B4 000:377 JLINK_GetDebugInfo(0x105 = JLINKARM_DEBUG_INFO_DWT_ADDR_INDEX) -- Value=0xE0001000  returns 0x00 (0000ms, 0340ms total)
TC3B4 000:377 JLINK_GetDebugInfo(0x106 = JLINKARM_DEBUG_INFO_FPB_ADDR_INDEX) -- Value=0xE0002000  returns 0x00 (0000ms, 0340ms total)
TC3B4 000:377 JLINK_GetDebugInfo(0x107 = JLINKARM_DEBUG_INFO_NVIC_ADDR_INDEX) -- Value=0xE000E000  returns 0x00 (0000ms, 0340ms total)
TC3B4 000:377 JLINK_GetDebugInfo(0x10C = JLINKARM_DEBUG_INFO_DBG_ADDR_INDEX) -- Value=0xE000EDF0  returns 0x00 (0000ms, 0340ms total)
TC3B4 000:377 JLINK_GetDebugInfo(0x01 = Unknown) -- Value=0x00000000  returns 0x00 (0000ms, 0340ms total)
TC3B4 000:377 JLINK_ReadMemU32(0xE000ED00, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED00) - Data: 00 C2 0C 41  returns 0x01 (0001ms, 0341ms total)
TC3B4 000:378 JLINK_GetDebugInfo(0x10F = JLINKARM_DEBUG_INFO_HAS_CORTEX_M_SECURITY_EXT_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0341ms total)
TC3B4 000:378 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 0341ms total)
TC3B4 000:378 JLINK_Reset() -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDFC)Reset: Halt core after reset via DEMCR.VC_CORERESET. >0x35 TIF>Reset: Reset device via AIRCR.SYSRESETREQ. -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000ED0C) >0x0D TIF> >0x28 TIF> -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDFC)
 -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0080ms, 0421ms total)
TC3B4 000:458 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0421ms total)
TC3B4 000:458 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0421ms total)
TC3B4 000:458 JLINK_Halt()  returns 0x00 (0000ms, 0421ms total)
TC3B4 000:458 JLINK_ReadMemU32(0xE000EDF0, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) - Data: 03 00 03 00  returns 0x01 (0001ms, 0422ms total)
TC3B4 000:459 JLINK_WriteU32(0xE000EDF0, 0xA05F0003) -- CPU_WriteMem(4 bytes @ 0xE000EDF0)  returns 0x00 (0002ms, 0424ms total)
TC3B4 000:461 JLINK_WriteU32(0xE000EDFC, 0x01000000) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)  returns 0x00 (0001ms, 0425ms total)
TC3B4 000:462 JLINK_GetHWStatus(...)  returns 0x00 (0000ms, 0425ms total)
TC3B4 000:462 JLINK_GetNumBPUnits(Type = 0xFFFFFF00)  returns 0x04 (0000ms, 0425ms total)
TC3B4 000:462 JLINK_GetNumBPUnits(Type = 0xF0)  returns 0x2000 (0000ms, 0425ms total)
TC3B4 000:462 JLINK_GetNumWPUnits()  returns 0x02 (0000ms, 0425ms total)
TC3B4 000:462 JLINK_GetSpeed()  returns 0x3E8 (0000ms, 0425ms total)
TC3B4 000:462 JLINK_ReadMemU32(0xE000E004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000E004) - Data: 00 00 00 00  returns 0x01 (0001ms, 0426ms total)
TC3B4 000:463 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0426ms total)
TC3B4 000:463 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0426ms total)
TC3B4 000:532 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0001ms, 0427ms total)
TC3B4 000:533 JLINK_Reset() -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)Reset: Halt core after reset via DEMCR.VC_CORERESET. >0x35 TIF>Reset: Reset device via AIRCR.SYSRESETREQ. -- CPU_WriteMem(4 bytes @ 0xE000ED0C) >0x0D TIF> >0x28 TIF> -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE0002000)
 -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0079ms, 0506ms total)
TC3B4 000:612 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0506ms total)
TC3B4 000:612 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0506ms total)
TC3B4 000:612 JLINK_ReadMemEx(0x03003738, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003738) - Data: 00 F0 4E F8 FC F7 C0 FC 80 B5 0D 49 08 68 00 28 ...  returns 0x3C (0003ms, 0509ms total)
TC3B4 000:615 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0001ms, 0510ms total)
TC3B4 000:616 JLINK_ReadMemEx(0x0300373A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373A) - Data: 4E F8  returns 0x02 (0001ms, 0511ms total)
TC3B4 000:617 JLINK_ReadMemEx(0x0300373C, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x0300373C) - Data: FC F7 C0 FC 80 B5 0D 49 08 68 00 28 00 D4 80 BD ...  returns 0x3C (0003ms, 0514ms total)
TC3B4 000:620 JLINK_ReadMemEx(0x0300373C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373C) - Data: FC F7  returns 0x02 (0001ms, 0515ms total)
TC3B4 000:621 JLINK_ReadMemEx(0x0300373E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373E) - Data: C0 FC  returns 0x02 (0001ms, 0516ms total)
TC3B4 000:622 JLINK_ReadMemEx(0x03003740, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003740) - Data: 80 B5 0D 49 08 68 00 28 00 D4 80 BD 0B 48 02 68 ...  returns 0x3C (0003ms, 0519ms total)
TC3B4 000:625 JLINK_ReadMemEx(0x03003740, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003740) - Data: 80 B5  returns 0x02 (0001ms, 0520ms total)
TC3B4 000:626 JLINK_ReadMemEx(0x03003742, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003742) - Data: 0D 49  returns 0x02 (0001ms, 0521ms total)
TC3B4 000:627 JLINK_ReadMemEx(0x03003742, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003742) - Data: 0D 49  returns 0x02 (0001ms, 0522ms total)
TC3B4 000:628 JLINK_ReadMemEx(0x03003744, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003744) - Data: 08 68 00 28 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 ...  returns 0x3C (0002ms, 0524ms total)
TC3B4 000:630 JLINK_ReadMemEx(0x03003744, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003744) - Data: 08 68  returns 0x02 (0001ms, 0525ms total)
TC3B4 000:631 JLINK_ReadMemEx(0x03003744, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003744) - Data: 08 68 00 28 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 ...  returns 0x3C (0003ms, 0528ms total)
TC3B4 000:634 JLINK_ReadMemEx(0x03003744, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003744) - Data: 08 68  returns 0x02 (0001ms, 0529ms total)
TC3B4 000:635 JLINK_ReadMemEx(0x03003746, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003746) - Data: 00 28  returns 0x02 (0001ms, 0530ms total)
TC3B4 002:791 JLINK_ReadMemEx(0x03003746, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003746) - Data: 00 28  returns 0x02 (0001ms, 0531ms total)
TC3B4 002:792 JLINK_ReadMemEx(0x03003748, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003748) - Data: 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 04 22 0A 60 ...  returns 0x3C (0003ms, 0534ms total)
TC3B4 002:795 JLINK_ReadMemEx(0x03003748, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003748) - Data: 00 D4  returns 0x02 (0001ms, 0535ms total)
TC3B4 002:796 JLINK_ReadMemEx(0x03003748, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003748) - Data: 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 04 22 0A 60 ...  returns 0x3C (0003ms, 0538ms total)
TC3B4 002:799 JLINK_ReadMemEx(0x03003748, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003748) - Data: 00 D4  returns 0x02 (0001ms, 0539ms total)
TC3B4 002:800 JLINK_ReadMemEx(0x0300374A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300374A) - Data: 80 BD  returns 0x02 (0001ms, 0540ms total)
TC3B4 003:140 JLINK_ReadReg(R0)  returns 0x00000000 (0001ms, 0541ms total)
TC3B4 003:141 JLINK_ReadReg(R1)  returns 0x4001A000 (0000ms, 0541ms total)
TC3B4 003:141 JLINK_ReadReg(R2)  returns 0x03000000 (0000ms, 0541ms total)
TC3B4 003:141 JLINK_ReadReg(R3)  returns 0x40014000 (0000ms, 0541ms total)
TC3B4 003:141 JLINK_ReadReg(R4)  returns 0x00000000 (0000ms, 0541ms total)
TC3B4 003:141 JLINK_ReadReg(R5)  returns 0x02029FFC (0000ms, 0541ms total)
TC3B4 003:141 JLINK_ReadReg(R6)  returns 0x0000D0A5 (0000ms, 0541ms total)
TC3B4 003:141 JLINK_ReadReg(R7)  returns 0x00000000 (0000ms, 0541ms total)
TC3B4 003:141 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 0541ms total)
TC3B4 003:141 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 0541ms total)
TC3B4 003:141 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 0541ms total)
TC3B4 003:141 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 0541ms total)
TC3B4 003:141 JLINK_ReadReg(R12)  returns 0x00000000 (0001ms, 0542ms total)
TC3B4 003:142 JLINK_ReadReg(R13 (SP))  returns 0x0202F800 (0000ms, 0542ms total)
TC3B4 003:142 JLINK_ReadReg(R14)  returns 0x0000067F (0000ms, 0542ms total)
TC3B4 003:142 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0542ms total)
TC3B4 003:142 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0542ms total)
TC3B4 003:142 JLINK_ReadReg(MSP)  returns 0x0202F800 (0000ms, 0542ms total)
TC3B4 003:142 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 0542ms total)
TC3B4 003:142 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0542ms total)
TC3B4 003:142 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x280 (0017ms, 0559ms total)
TC3B4 003:163 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x280 (0018ms, 0577ms total)
TC3B4 003:181 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x280 (0018ms, 0595ms total)
TC3B4 003:549 JLINK_ReadMemEx(0x0201A296, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A296) - Data: 00 00  returns 0x02 (0001ms, 0596ms total)
TC3B4 003:550 JLINK_ReadMemEx(0x0201A296, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A296) - Data: 00 00  returns 0x02 (0001ms, 0597ms total)
TC3B4 003:551 JLINK_ReadMemEx(0x0201A296, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A296) - Data: 00 00  returns 0x02 (0002ms, 0599ms total)
TC3B4 003:561 JLINK_ReadMemEx(0x0201A2B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2B0) - Data: 00  returns 0x01 (0001ms, 0600ms total)
TC3B4 003:562 JLINK_ReadMemEx(0x0201A2B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2B0) - Data: 00  returns 0x01 (0001ms, 0601ms total)
TC3B4 003:563 JLINK_ReadMemEx(0x0201A2B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2B0) - Data: 00  returns 0x01 (0001ms, 0602ms total)
TC3B4 003:566 JLINK_ReadMemEx(0x0201A230, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A230) - Data: 00  returns 0x01 (0001ms, 0603ms total)
TC3B4 003:567 JLINK_ReadMemEx(0x0201A230, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A230) - Data: 00  returns 0x01 (0001ms, 0604ms total)
TC3B4 003:568 JLINK_ReadMemEx(0x0201A230, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A230) - Data: 00  returns 0x01 (0001ms, 0605ms total)
TC3B4 003:572 JLINK_ReadMemEx(0x0201A25C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A25C) - Data: 00 00 00 00  returns 0x04 (0001ms, 0606ms total)
TC3B4 003:573 JLINK_ReadMemEx(0x0201A25C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A25C) - Data: 00 00 00 00  returns 0x04 (0001ms, 0607ms total)
TC3B4 003:574 JLINK_ReadMemEx(0x0201A25C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A25C) - Data: 00 00 00 00  returns 0x04 (0001ms, 0608ms total)
TC3B4 003:577 JLINK_ReadMemEx(0x0201A236, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A236) - Data: 00 00  returns 0x02 (0001ms, 0609ms total)
TC3B4 003:578 JLINK_ReadMemEx(0x0201A236, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A236) - Data: 00 00  returns 0x02 (0001ms, 0610ms total)
TC3B4 003:579 JLINK_ReadMemEx(0x0201A236, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A236) - Data: 00 00  returns 0x02 (0001ms, 0611ms total)
TC3B4 003:582 JLINK_ReadMemEx(0x0201A29C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A29C) - Data: 06 00 00 00  returns 0x04 (0001ms, 0612ms total)
TC3B4 003:583 JLINK_ReadMemEx(0x0201A29C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A29C) - Data: 06 00 00 00  returns 0x04 (0001ms, 0613ms total)
TC3B4 003:584 JLINK_ReadMemEx(0x0201A29C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A29C) - Data: 06 00 00 00  returns 0x04 (0001ms, 0614ms total)
TC3B4 003:586 JLINK_ReadMemEx(0x0201A624, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A624) - Data: 00  returns 0x01 (0001ms, 0615ms total)
TC3B4 003:587 JLINK_ReadMemEx(0x0201A624, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A624) - Data: 00  returns 0x01 (0001ms, 0616ms total)
TC3B4 003:588 JLINK_ReadMemEx(0x0201A624, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A624) - Data: 00  returns 0x01 (0001ms, 0617ms total)
TC3B4 003:594 JLINK_ReadMemEx(0x0201A2C0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C0) - Data: 00  returns 0x01 (0001ms, 0618ms total)
TC3B4 003:595 JLINK_ReadMemEx(0x0201A2C0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C0) - Data: 00  returns 0x01 (0001ms, 0619ms total)
TC3B4 003:596 JLINK_ReadMemEx(0x0201A2C0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C0) - Data: 00  returns 0x01 (0002ms, 0621ms total)
TC3B4 003:599 JLINK_ReadMemEx(0x0201A2C1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C1) - Data: 00  returns 0x01 (0002ms, 0623ms total)
TC3B4 003:601 JLINK_ReadMemEx(0x0201A2C1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C1) - Data: 00  returns 0x01 (0001ms, 0624ms total)
TC3B4 003:602 JLINK_ReadMemEx(0x0201A2C1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C1) - Data: 00  returns 0x01 (0001ms, 0625ms total)
TC3B4 003:605 JLINK_ReadMemEx(0x0201A2C2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C2) - Data: 01  returns 0x01 (0001ms, 0626ms total)
TC3B4 003:606 JLINK_ReadMemEx(0x0201A2C2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C2) - Data: 01  returns 0x01 (0001ms, 0627ms total)
TC3B4 003:607 JLINK_ReadMemEx(0x0201A2C2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C2) - Data: 01  returns 0x01 (0001ms, 0628ms total)
TC3B4 003:609 JLINK_ReadMemEx(0x0201A2C3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C3) - Data: 01  returns 0x01 (0001ms, 0629ms total)
TC3B4 003:611 JLINK_ReadMemEx(0x0201A2C3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C3) - Data: 01  returns 0x01 (0001ms, 0630ms total)
TC3B4 003:612 JLINK_ReadMemEx(0x0201A2C3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C3) - Data: 01  returns 0x01 (0001ms, 0631ms total)
TC3B4 003:614 JLINK_ReadMemEx(0x0201A2AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A2AC) - Data: 06 00 00 00  returns 0x04 (0001ms, 0632ms total)
TC3B4 003:615 JLINK_ReadMemEx(0x0201A2AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A2AC) - Data: 06 00 00 00  returns 0x04 (0001ms, 0633ms total)
TC3B4 003:616 JLINK_ReadMemEx(0x0201A2AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A2AC) - Data: 06 00 00 00  returns 0x04 (0001ms, 0634ms total)
TC3B4 003:645 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x280 (0018ms, 0652ms total)
TC3B4 003:666 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x280 (0017ms, 0669ms total)
TA994 003:707 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0001ms, 0670ms total)
TA994 003:708 JLINK_SetBPEx(Addr = 0x00002244, Type = 0xFFFFFFF2)  returns 0x00000001 (0000ms, 0670ms total)
TA994 003:708 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU_WriteMem(4 bytes @ 0xE0002014) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0010ms, 0680ms total)
TA994 003:818 JLINK_IsHalted()  returns TRUE (0008ms, 0688ms total)
TA994 003:826 JLINK_Halt()  returns 0x00 (0000ms, 0680ms total)
TA994 003:826 JLINK_IsHalted()  returns TRUE (0000ms, 0680ms total)
TA994 003:826 JLINK_IsHalted()  returns TRUE (0000ms, 0680ms total)
TA994 003:826 JLINK_IsHalted()  returns TRUE (0000ms, 0680ms total)
TA994 003:826 JLINK_ReadReg(R15 (PC))  returns 0x00002244 (0000ms, 0680ms total)
TA994 003:826 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 0680ms total)
TA994 003:826 JLINK_ClrBPEx(BPHandle = 0x00000001)  returns 0x00 (0000ms, 0680ms total)
TA994 003:826 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0001ms, 0681ms total)
TA994 003:827 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 0682ms total)
TA994 003:828 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0002ms, 0684ms total)
TA994 003:830 JLINK_ReadReg(R0)  returns 0x00002245 (0000ms, 0684ms total)
TA994 003:830 JLINK_ReadReg(R1)  returns 0x0201AFD4 (0000ms, 0684ms total)
TA994 003:830 JLINK_ReadReg(R2)  returns 0x00000000 (0000ms, 0684ms total)
TA994 003:830 JLINK_ReadReg(R3)  returns 0x00002F99 (0000ms, 0684ms total)
TA994 003:830 JLINK_ReadReg(R4)  returns 0x000031CC (0000ms, 0684ms total)
TA994 003:830 JLINK_ReadReg(R5)  returns 0x00000001 (0000ms, 0684ms total)
TA994 003:830 JLINK_ReadReg(R6)  returns 0x000031CC (0000ms, 0684ms total)
TA994 003:830 JLINK_ReadReg(R7)  returns 0x02000000 (0000ms, 0684ms total)
TA994 003:830 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 0684ms total)
TA994 003:830 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 0684ms total)
TA994 003:830 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 0684ms total)
TA994 003:830 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 0684ms total)
TA994 003:830 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 0684ms total)
TA994 003:830 JLINK_ReadReg(R13 (SP))  returns 0x0202A000 (0000ms, 0684ms total)
TA994 003:830 JLINK_ReadReg(R14)  returns 0x0000018D (0000ms, 0684ms total)
TA994 003:830 JLINK_ReadReg(R15 (PC))  returns 0x00002244 (0000ms, 0684ms total)
TA994 003:830 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 0684ms total)
TA994 003:830 JLINK_ReadReg(MSP)  returns 0x0202A000 (0000ms, 0684ms total)
TA994 003:830 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 0684ms total)
TA994 003:830 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0684ms total)
TC3B4 003:831 JLINK_ReadMemEx(0x0201A296, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A296) - Data: 00 00  returns 0x02 (0001ms, 0685ms total)
TC3B4 003:832 JLINK_ReadMemEx(0x0201A2B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2B0) - Data: 00  returns 0x01 (0001ms, 0686ms total)
TC3B4 003:833 JLINK_ReadMemEx(0x0201A230, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A230) - Data: 00  returns 0x01 (0001ms, 0687ms total)
TC3B4 003:834 JLINK_ReadMemEx(0x0201A25C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A25C) - Data: 00 00 00 00  returns 0x04 (0001ms, 0688ms total)
TC3B4 003:835 JLINK_ReadMemEx(0x0201A236, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A236) - Data: 00 00  returns 0x02 (0001ms, 0689ms total)
TC3B4 003:836 JLINK_ReadMemEx(0x0201A29C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A29C) - Data: 00 00 00 00  returns 0x04 (0002ms, 0691ms total)
TC3B4 003:838 JLINK_ReadMemEx(0x0201A624, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A624) - Data: 00  returns 0x01 (0001ms, 0692ms total)
TC3B4 003:839 JLINK_ReadMemEx(0x0201A2C0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C0) - Data: 00  returns 0x01 (0001ms, 0693ms total)
TC3B4 003:840 JLINK_ReadMemEx(0x0201A2C1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C1) - Data: 00  returns 0x01 (0001ms, 0694ms total)
TC3B4 003:841 JLINK_ReadMemEx(0x0201A2C2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C2) - Data: 00  returns 0x01 (0001ms, 0695ms total)
TC3B4 003:842 JLINK_ReadMemEx(0x0201A2C3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C3) - Data: 00  returns 0x01 (0001ms, 0696ms total)
TC3B4 003:843 JLINK_ReadMemEx(0x0201A2AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A2AC) - Data: 00 00 00 00  returns 0x04 (0001ms, 0697ms total)
TC3B4 003:844 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x280 (0019ms, 0716ms total)
TC3B4 003:863 JLINK_ReadMemEx(0x00002244, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00002240) -- Updating C cache (64 bytes @ 0x00002240) -- Read from C cache (60 bytes @ 0x00002244) - Data: 86 B0 FE F7 69 FD FE F7 1F FE FF F7 73 FF FE F7 ...  returns 0x3C (0003ms, 0719ms total)
TC3B4 003:866 JLINK_ReadMemEx(0x00002244, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00002244) - Data: 86 B0  returns 0x02 (0000ms, 0719ms total)
TC3B4 003:866 JLINK_ReadMemEx(0x00002246, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00002246) - Data: FE F7  returns 0x02 (0000ms, 0719ms total)
TC3B4 006:167 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x280 (0019ms, 0738ms total)
TC3B4 006:187 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x280 (0018ms, 0756ms total)
TA994 013:959 JLINK_ReadMemEx(0x00002244, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00002244) - Data: 86 B0  returns 0x02 (0000ms, 0756ms total)
TA994 013:959 JLINK_SetBPEx(Addr = 0x000022B2, Type = 0xFFFFFFF2)  returns 0x00000002 (0000ms, 0756ms total)
TA994 013:959 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) (0007ms, 0763ms total)
TA994 014:067 JLINK_IsHalted()  returns FALSE (0001ms, 0764ms total)
TA994 014:169 JLINK_IsHalted()  returns FALSE (0001ms, 0764ms total)
TA994 014:270 JLINK_IsHalted()  returns FALSE (0001ms, 0764ms total)
TA994 014:372 JLINK_IsHalted()  returns FALSE (0001ms, 0764ms total)
TA994 014:474 JLINK_IsHalted()  returns FALSE (0001ms, 0764ms total)
TC3B4 014:575 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0017ms, 0780ms total)
TC3B4 014:593 JLINK_ReadMemEx(0x0201A296, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A296) - Data: 00 00  returns 0x02 (0001ms, 0781ms total)
TC3B4 014:594 JLINK_ReadMemEx(0x0201A2B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2B0) - Data: 00  returns 0x01 (0001ms, 0782ms total)
TC3B4 014:595 JLINK_ReadMemEx(0x0201A230, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A230) - Data: 00  returns 0x01 (0001ms, 0783ms total)
TC3B4 014:596 JLINK_ReadMemEx(0x0201A25C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A25C) - Data: 00 00 00 00  returns 0x04 (0001ms, 0784ms total)
TC3B4 014:597 JLINK_ReadMemEx(0x0201A236, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A236) - Data: 00 00  returns 0x02 (0001ms, 0785ms total)
TC3B4 014:598 JLINK_ReadMemEx(0x0201A29C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A29C) - Data: 06 00 00 00  returns 0x04 (0001ms, 0786ms total)
TC3B4 014:600 JLINK_ReadMemEx(0x0201A624, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A624) - Data: 00  returns 0x01 (0001ms, 0788ms total)
TC3B4 014:601 JLINK_ReadMemEx(0x0201A2C0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C0) - Data: 00  returns 0x01 (0001ms, 0789ms total)
TC3B4 014:602 JLINK_ReadMemEx(0x0201A2C1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C1) - Data: 00  returns 0x01 (0001ms, 0790ms total)
TC3B4 014:603 JLINK_ReadMemEx(0x0201A2C2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C2) - Data: 01  returns 0x01 (0002ms, 0792ms total)
TC3B4 014:605 JLINK_ReadMemEx(0x0201A2C3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C3) - Data: 01  returns 0x01 (0001ms, 0793ms total)
TC3B4 014:606 JLINK_ReadMemEx(0x0201A2AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A2AC) - Data: 06 00 00 00  returns 0x04 (0001ms, 0794ms total)
TA994 014:607 JLINK_IsHalted()  returns FALSE (0001ms, 0795ms total)
TA994 014:709 JLINK_IsHalted()  returns TRUE (0008ms, 0802ms total)
TA994 014:717 JLINK_Halt()  returns 0x00 (0000ms, 0794ms total)
TA994 014:717 JLINK_IsHalted()  returns TRUE (0000ms, 0794ms total)
TA994 014:717 JLINK_IsHalted()  returns TRUE (0000ms, 0794ms total)
TA994 014:717 JLINK_IsHalted()  returns TRUE (0000ms, 0794ms total)
TA994 014:717 JLINK_ReadReg(R15 (PC))  returns 0x000022B2 (0000ms, 0794ms total)
TA994 014:717 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 0794ms total)
TA994 014:717 JLINK_ClrBPEx(BPHandle = 0x00000002)  returns 0x00 (0000ms, 0794ms total)
TA994 014:717 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0001ms, 0795ms total)
TA994 014:718 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0002ms, 0797ms total)
TA994 014:720 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0001ms, 0798ms total)
TA994 014:721 JLINK_ReadReg(R0)  returns 0x00000006 (0000ms, 0798ms total)
TA994 014:721 JLINK_ReadReg(R1)  returns 0x00000006 (0000ms, 0798ms total)
TA994 014:721 JLINK_ReadReg(R2)  returns 0x03000000 (0000ms, 0798ms total)
TA994 014:721 JLINK_ReadReg(R3)  returns 0x40014000 (0000ms, 0798ms total)
TA994 014:721 JLINK_ReadReg(R4)  returns 0x000031CC (0000ms, 0798ms total)
TA994 014:721 JLINK_ReadReg(R5)  returns 0x0201A294 (0000ms, 0798ms total)
TA994 014:721 JLINK_ReadReg(R6)  returns 0x000031CC (0000ms, 0798ms total)
TA994 014:721 JLINK_ReadReg(R7)  returns 0x00000000 (0000ms, 0798ms total)
TA994 014:721 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 0798ms total)
TA994 014:721 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 0798ms total)
TA994 014:721 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 0798ms total)
TA994 014:721 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 0798ms total)
TA994 014:721 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 0798ms total)
TA994 014:721 JLINK_ReadReg(R13 (SP))  returns 0x02029FE8 (0000ms, 0798ms total)
TA994 014:721 JLINK_ReadReg(R14)  returns 0x0000067F (0000ms, 0798ms total)
TA994 014:721 JLINK_ReadReg(R15 (PC))  returns 0x000022B2 (0000ms, 0798ms total)
TA994 014:721 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 0798ms total)
TA994 014:721 JLINK_ReadReg(MSP)  returns 0x02029FE8 (0000ms, 0798ms total)
TA994 014:721 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 0798ms total)
TA994 014:721 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0798ms total)
TC3B4 014:726 JLINK_ReadMemEx(0x0201A296, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A296) - Data: 00 00  returns 0x02 (0001ms, 0799ms total)
TC3B4 014:727 JLINK_ReadMemEx(0x0201A2B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2B0) - Data: 00  returns 0x01 (0001ms, 0800ms total)
TC3B4 014:728 JLINK_ReadMemEx(0x0201A230, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A230) - Data: 00  returns 0x01 (0001ms, 0801ms total)
TC3B4 014:729 JLINK_ReadMemEx(0x0201A25C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A25C) - Data: 00 00 00 00  returns 0x04 (0002ms, 0803ms total)
TC3B4 014:731 JLINK_ReadMemEx(0x0201A236, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A236) - Data: 00 00  returns 0x02 (0001ms, 0804ms total)
TC3B4 014:732 JLINK_ReadMemEx(0x0201A29C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A29C) - Data: 06 00 00 00  returns 0x04 (0001ms, 0805ms total)
TC3B4 014:733 JLINK_ReadMemEx(0x0201A624, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A624) - Data: 00  returns 0x01 (0001ms, 0806ms total)
TC3B4 014:734 JLINK_ReadMemEx(0x0201A2C0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C0) - Data: 00  returns 0x01 (0001ms, 0807ms total)
TC3B4 014:735 JLINK_ReadMemEx(0x0201A2C1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C1) - Data: 00  returns 0x01 (0001ms, 0808ms total)
TC3B4 014:736 JLINK_ReadMemEx(0x0201A2C2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C2) - Data: 01  returns 0x01 (0001ms, 0809ms total)
TC3B4 014:737 JLINK_ReadMemEx(0x0201A2C3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C3) - Data: 01  returns 0x01 (0001ms, 0810ms total)
TC3B4 014:738 JLINK_ReadMemEx(0x0201A2AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A2AC) - Data: 06 00 00 00  returns 0x04 (0002ms, 0812ms total)
TC3B4 014:740 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0017ms, 0829ms total)
TC3B4 014:758 JLINK_ReadMemEx(0x000022B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00002280) -- Updating C cache (64 bytes @ 0x00002280) -- Read from C cache (2 bytes @ 0x000022B2) - Data: 7C A0  returns 0x02 (0002ms, 0831ms total)
TC3B4 014:760 JLINK_ReadMemEx(0x000022B4, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x000022C0) -- Updating C cache (64 bytes @ 0x000022C0) -- Read from C cache (60 bytes @ 0x000022B4) - Data: FE F7 88 FA 7D 20 80 00 02 90 03 98 40 06 01 90 ...  returns 0x3C (0003ms, 0834ms total)
TC3B4 014:763 JLINK_ReadMemEx(0x000022B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022B4) - Data: FE F7  returns 0x02 (0000ms, 0834ms total)
TC3B4 014:763 JLINK_ReadMemEx(0x000022B4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000022B4) - Data: FE F7 88 FA 7D 20 80 00 02 90 03 98 40 06 01 90 ...  returns 0x3C (0000ms, 0834ms total)
TC3B4 014:763 JLINK_ReadMemEx(0x000022B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022B4) - Data: FE F7  returns 0x02 (0000ms, 0834ms total)
TC3B4 014:763 JLINK_ReadMemEx(0x000022B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022B6) - Data: 88 FA  returns 0x02 (0000ms, 0834ms total)
TA994 017:474 JLINK_ReadMemEx(0x000022B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022B2) - Data: 7C A0  returns 0x02 (0001ms, 0835ms total)
TA994 017:475 JLINK_Step() -- Read from C cache (2 bytes @ 0x000022B2) -- CPU_ReadMem(4 bytes @ 0xE000ED18) -- CPU_WriteMem(4 bytes @ 0xE000ED18) -- CPU_ReadMem(4 bytes @ 0xE000ED18) -- CPU_WriteMem(4 bytes @ 0xE000ED18) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Simulated  returns 0x00 (0006ms, 0841ms total)
TA994 017:481 JLINK_ReadReg(R15 (PC))  returns 0x000022B4 (0000ms, 0841ms total)
TA994 017:481 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 0841ms total)
TA994 017:481 JLINK_SetBPEx(Addr = 0x000022B8, Type = 0xFFFFFFF2)  returns 0x00000003 (0000ms, 0841ms total)
TA994 017:481 JLINK_SetBPEx(Addr = 0x000022B2, Type = 0xFFFFFFF2)  returns 0x00000004 (0000ms, 0841ms total)
TA994 017:482 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0010ms, 0851ms total)
TA994 017:592 JLINK_IsHalted()  returns TRUE (0008ms, 0859ms total)
TA994 017:600 JLINK_Halt()  returns 0x00 (0000ms, 0851ms total)
TA994 017:600 JLINK_IsHalted()  returns TRUE (0000ms, 0851ms total)
TA994 017:600 JLINK_IsHalted()  returns TRUE (0000ms, 0851ms total)
TA994 017:600 JLINK_IsHalted()  returns TRUE (0000ms, 0851ms total)
TA994 017:600 JLINK_ReadReg(R15 (PC))  returns 0x000022B8 (0000ms, 0851ms total)
TA994 017:600 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 0851ms total)
TA994 017:600 JLINK_ClrBPEx(BPHandle = 0x00000003)  returns 0x00 (0000ms, 0851ms total)
TA994 017:600 JLINK_ClrBPEx(BPHandle = 0x00000004)  returns 0x00 (0000ms, 0851ms total)
TA994 017:600 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0001ms, 0852ms total)
TA994 017:601 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 0853ms total)
TA994 017:602 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0001ms, 0854ms total)
TA994 017:603 JLINK_ReadMemEx(0x000022B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00002280) -- Updating C cache (64 bytes @ 0x00002280) -- Read from C cache (2 bytes @ 0x000022B6) - Data: 88 FA  returns 0x02 (0003ms, 0857ms total)
TA994 017:606 JLINK_ReadMemEx(0x000022B8, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x000022C0) -- Updating C cache (64 bytes @ 0x000022C0) -- Read from C cache (60 bytes @ 0x000022B8) - Data: 7D 20 80 00 02 90 03 98 40 06 01 90 00 97 38 46 ...  returns 0x3C (0003ms, 0860ms total)
TA994 017:609 JLINK_ReadMemEx(0x000022B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022B8) - Data: 7D 20  returns 0x02 (0000ms, 0860ms total)
TA994 017:609 JLINK_ReadMemEx(0x000022B8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000022B8) - Data: 7D 20 80 00 02 90 03 98 40 06 01 90 00 97 38 46 ...  returns 0x3C (0000ms, 0860ms total)
TA994 017:609 JLINK_ReadMemEx(0x000022B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022B8) - Data: 7D 20  returns 0x02 (0000ms, 0860ms total)
TA994 017:609 JLINK_ReadMemEx(0x000022BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022BA) - Data: 80 00  returns 0x02 (0000ms, 0860ms total)
TA994 017:609 JLINK_Step() -- Read from C cache (2 bytes @ 0x000022B8) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Simulated  returns 0x00 (0002ms, 0862ms total)
TA994 017:611 JLINK_ReadReg(R15 (PC))  returns 0x000022BA (0000ms, 0862ms total)
TA994 017:611 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 0862ms total)
TA994 017:611 JLINK_ReadMemEx(0x000022BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022BA) - Data: 80 00  returns 0x02 (0000ms, 0862ms total)
TA994 017:611 JLINK_ReadMemEx(0x000022BC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000022BC) - Data: 02 90 03 98 40 06 01 90 00 97 38 46 00 F0 48 FE ...  returns 0x3C (0000ms, 0862ms total)
TA994 017:611 JLINK_ReadMemEx(0x000022BC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022BC) - Data: 02 90  returns 0x02 (0000ms, 0862ms total)
TA994 017:611 JLINK_Step() -- Read from C cache (2 bytes @ 0x000022BA) -- Simulated  returns 0x00 (0000ms, 0862ms total)
TA994 017:611 JLINK_ReadReg(R15 (PC))  returns 0x000022BC (0000ms, 0862ms total)
TA994 017:611 JLINK_ReadReg(XPSR)  returns 0x01000000 (0000ms, 0862ms total)
TA994 017:611 JLINK_ReadMemEx(0x000022BC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000022BC) - Data: 02 90 03 98 40 06 01 90 00 97 38 46 00 F0 48 FE ...  returns 0x3C (0000ms, 0862ms total)
TA994 017:611 JLINK_ReadMemEx(0x000022BC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022BC) - Data: 02 90  returns 0x02 (0000ms, 0862ms total)
TA994 017:611 JLINK_ReadMemEx(0x000022BE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022BE) - Data: 03 98  returns 0x02 (0000ms, 0862ms total)
TA994 017:611 JLINK_Step() -- Read from C cache (2 bytes @ 0x000022BC) -- Not simulated -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0001004)  returns 0x00 (0014ms, 0876ms total)
TA994 017:625 JLINK_ReadReg(R15 (PC))  returns 0x000022BE (0000ms, 0876ms total)
TA994 017:625 JLINK_ReadReg(XPSR)  returns 0x01000000 (0000ms, 0876ms total)
TA994 017:626 JLINK_ReadMemEx(0x000022BE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00002280) -- Updating C cache (64 bytes @ 0x00002280) -- Read from C cache (2 bytes @ 0x000022BE) - Data: 03 98  returns 0x02 (0002ms, 0878ms total)
TA994 017:628 JLINK_ReadMemEx(0x000022C0, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x000022C0) -- Updating C cache (64 bytes @ 0x000022C0) -- Read from C cache (60 bytes @ 0x000022C0) - Data: 40 06 01 90 00 97 38 46 00 F0 48 FE 04 AA 17 80 ...  returns 0x3C (0003ms, 0881ms total)
TA994 017:631 JLINK_ReadMemEx(0x000022C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022C0) - Data: 40 06  returns 0x02 (0000ms, 0881ms total)
TA994 017:631 JLINK_Step() -- Read from C cache (2 bytes @ 0x000022BE) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Not simulated  returns 0x00 (0011ms, 0892ms total)
TA994 017:642 JLINK_ReadReg(R15 (PC))  returns 0x000022C0 (0000ms, 0892ms total)
TA994 017:642 JLINK_ReadReg(XPSR)  returns 0x01000000 (0001ms, 0893ms total)
TA994 017:643 JLINK_ReadMemEx(0x000022C0, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x000022C0) -- Updating C cache (64 bytes @ 0x000022C0) -- Read from C cache (60 bytes @ 0x000022C0) - Data: 40 06 01 90 00 97 38 46 00 F0 48 FE 04 AA 17 80 ...  returns 0x3C (0002ms, 0895ms total)
TA994 017:645 JLINK_ReadMemEx(0x000022C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022C0) - Data: 40 06  returns 0x02 (0000ms, 0895ms total)
TA994 017:645 JLINK_ReadMemEx(0x000022C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022C2) - Data: 01 90  returns 0x02 (0000ms, 0895ms total)
TA994 017:645 JLINK_Step() -- Read from C cache (2 bytes @ 0x000022C0) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Simulated  returns 0x00 (0001ms, 0896ms total)
TA994 017:646 JLINK_ReadReg(R15 (PC))  returns 0x000022C2 (0000ms, 0896ms total)
TA994 017:646 JLINK_ReadReg(XPSR)  returns 0x01000000 (0000ms, 0896ms total)
TA994 017:646 JLINK_ReadMemEx(0x000022C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022C2) - Data: 01 90  returns 0x02 (0000ms, 0896ms total)
TA994 017:646 JLINK_ReadMemEx(0x000022C4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000022C4) - Data: 00 97 38 46 00 F0 48 FE 04 AA 17 80 7D 4C 10 34 ...  returns 0x3C (0000ms, 0896ms total)
TA994 017:646 JLINK_ReadMemEx(0x000022C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022C4) - Data: 00 97  returns 0x02 (0000ms, 0896ms total)
TA994 017:646 JLINK_Step() -- Read from C cache (2 bytes @ 0x000022C2) -- Not simulated -- CPU_WriteMem(4 bytes @ 0xE0001004)  returns 0x00 (0013ms, 0909ms total)
TA994 017:659 JLINK_ReadReg(R15 (PC))  returns 0x000022C4 (0000ms, 0909ms total)
TA994 017:659 JLINK_ReadReg(XPSR)  returns 0x01000000 (0000ms, 0909ms total)
TA994 017:659 JLINK_ReadMemEx(0x000022C4, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x000022C0) -- Updating C cache (64 bytes @ 0x000022C0) -- Read from C cache (60 bytes @ 0x000022C4) - Data: 00 97 38 46 00 F0 48 FE 04 AA 17 80 7D 4C 10 34 ...  returns 0x3C (0003ms, 0912ms total)
TA994 017:662 JLINK_ReadMemEx(0x000022C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022C4) - Data: 00 97  returns 0x02 (0000ms, 0912ms total)
TA994 017:662 JLINK_ReadMemEx(0x000022C6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022C6) - Data: 38 46  returns 0x02 (0000ms, 0912ms total)
TA994 017:662 JLINK_Step() -- Read from C cache (2 bytes @ 0x000022C4) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Not simulated  returns 0x00 (0011ms, 0923ms total)
TA994 017:673 JLINK_ReadReg(R15 (PC))  returns 0x000022C6 (0000ms, 0923ms total)
TA994 017:673 JLINK_ReadReg(XPSR)  returns 0x01000000 (0000ms, 0923ms total)
TA994 017:673 JLINK_ReadReg(R0)  returns 0x02000000 (0000ms, 0923ms total)
TA994 017:673 JLINK_ReadReg(R1)  returns 0x00000091 (0000ms, 0923ms total)
TA994 017:673 JLINK_ReadReg(R2)  returns 0x0201A294 (0000ms, 0923ms total)
TA994 017:673 JLINK_ReadReg(R3)  returns 0x0000310A (0000ms, 0923ms total)
TA994 017:673 JLINK_ReadReg(R4)  returns 0x000031CC (0000ms, 0923ms total)
TA994 017:673 JLINK_ReadReg(R5)  returns 0x0201A294 (0000ms, 0923ms total)
TA994 017:673 JLINK_ReadReg(R6)  returns 0x000031CC (0000ms, 0923ms total)
TA994 017:673 JLINK_ReadReg(R7)  returns 0x00000000 (0000ms, 0923ms total)
TA994 017:673 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 0923ms total)
TA994 017:673 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 0923ms total)
TA994 017:673 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 0923ms total)
TA994 017:673 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 0923ms total)
TA994 017:673 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 0923ms total)
TA994 017:673 JLINK_ReadReg(R13 (SP))  returns 0x02029FE8 (0000ms, 0923ms total)
TA994 017:673 JLINK_ReadReg(R14)  returns 0x00002CAF (0000ms, 0923ms total)
TA994 017:673 JLINK_ReadReg(R15 (PC))  returns 0x000022C6 (0000ms, 0923ms total)
TA994 017:673 JLINK_ReadReg(XPSR)  returns 0x01000000 (0000ms, 0923ms total)
TA994 017:673 JLINK_ReadReg(MSP)  returns 0x02029FE8 (0000ms, 0923ms total)
TA994 017:673 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 0923ms total)
TA994 017:673 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0923ms total)
TC3B4 017:676 JLINK_ReadMemEx(0x0201A296, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A296) - Data: 00 00  returns 0x02 (0001ms, 0924ms total)
TC3B4 017:678 JLINK_ReadMemEx(0x0201A2B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2B0) - Data: 00  returns 0x01 (0001ms, 0925ms total)
TC3B4 017:679 JLINK_ReadMemEx(0x0201A230, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A230) - Data: 00  returns 0x01 (0001ms, 0926ms total)
TC3B4 017:680 JLINK_ReadMemEx(0x0201A25C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A25C) - Data: 00 00 00 00  returns 0x04 (0001ms, 0927ms total)
TC3B4 017:681 JLINK_ReadMemEx(0x0201A236, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A236) - Data: 00 00  returns 0x02 (0001ms, 0928ms total)
TC3B4 017:682 JLINK_ReadMemEx(0x0201A29C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A29C) - Data: 07 00 00 00  returns 0x04 (0001ms, 0929ms total)
TC3B4 017:683 JLINK_ReadMemEx(0x0201A624, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A624) - Data: 00  returns 0x01 (0001ms, 0930ms total)
TC3B4 017:684 JLINK_ReadMemEx(0x0201A2C0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C0) - Data: 00  returns 0x01 (0001ms, 0931ms total)
TC3B4 017:685 JLINK_ReadMemEx(0x0201A2C1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C1) - Data: 00  returns 0x01 (0001ms, 0932ms total)
TC3B4 017:687 JLINK_ReadMemEx(0x0201A2C2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C2) - Data: 01  returns 0x01 (0000ms, 0932ms total)
TC3B4 017:688 JLINK_ReadMemEx(0x0201A2C3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C3) - Data: 01  returns 0x01 (0001ms, 0933ms total)
TC3B4 017:689 JLINK_ReadMemEx(0x0201A2AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A2AC) - Data: 07 00 00 00  returns 0x04 (0001ms, 0934ms total)
TC3B4 017:690 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0017ms, 0951ms total)
TC3B4 017:707 JLINK_ReadMemEx(0x000022C6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x000022C0) -- Updating C cache (64 bytes @ 0x000022C0) -- Read from C cache (2 bytes @ 0x000022C6) - Data: 38 46  returns 0x02 (0003ms, 0954ms total)
TC3B4 017:710 JLINK_ReadMemEx(0x000022C8, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00002300) -- Updating C cache (64 bytes @ 0x00002300) -- Read from C cache (60 bytes @ 0x000022C8) - Data: 00 F0 48 FE 04 AA 17 80 7D 4C 10 34 02 23 38 46 ...  returns 0x3C (0003ms, 0957ms total)
TC3B4 017:713 JLINK_ReadMemEx(0x000022C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022C8) - Data: 00 F0  returns 0x02 (0000ms, 0957ms total)
TC3B4 017:713 JLINK_ReadMemEx(0x000022C8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000022C8) - Data: 00 F0 48 FE 04 AA 17 80 7D 4C 10 34 02 23 38 46 ...  returns 0x3C (0000ms, 0957ms total)
TC3B4 017:713 JLINK_ReadMemEx(0x000022C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022C8) - Data: 00 F0  returns 0x02 (0000ms, 0957ms total)
TC3B4 017:713 JLINK_ReadMemEx(0x000022CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022CA) - Data: 48 FE  returns 0x02 (0000ms, 0957ms total)
TC3B4 017:713 JLINK_ReadMemEx(0x000022CC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000022CC) - Data: 04 AA 17 80 7D 4C 10 34 02 23 38 46 21 46 FF F7 ...  returns 0x3C (0000ms, 0957ms total)
TC3B4 017:713 JLINK_ReadMemEx(0x000022CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022CC) - Data: 04 AA  returns 0x02 (0000ms, 0957ms total)
TC3B4 017:713 JLINK_ReadMemEx(0x000022CE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022CE) - Data: 17 80  returns 0x02 (0000ms, 0957ms total)
TA994 018:463 JLINK_ReadMemEx(0x000022C6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022C6) - Data: 38 46  returns 0x02 (0000ms, 0957ms total)
TA994 018:463 JLINK_Step() -- Read from C cache (2 bytes @ 0x000022C6) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Simulated  returns 0x00 (0002ms, 0959ms total)
TA994 018:465 JLINK_ReadReg(R15 (PC))  returns 0x000022C8 (0000ms, 0959ms total)
TA994 018:465 JLINK_ReadReg(XPSR)  returns 0x01000000 (0000ms, 0959ms total)
TA994 018:465 JLINK_SetBPEx(Addr = 0x000022CC, Type = 0xFFFFFFF2)  returns 0x00000005 (0000ms, 0959ms total)
TA994 018:465 JLINK_SetBPEx(Addr = 0x000022B2, Type = 0xFFFFFFF2)  returns 0x00000006 (0000ms, 0959ms total)
TA994 018:465 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0010ms, 0969ms total)
TA994 018:576 JLINK_IsHalted()  returns TRUE (0008ms, 0977ms total)
TA994 018:584 JLINK_Halt()  returns 0x00 (0000ms, 0969ms total)
TA994 018:584 JLINK_IsHalted()  returns TRUE (0000ms, 0969ms total)
TA994 018:584 JLINK_IsHalted()  returns TRUE (0000ms, 0969ms total)
TA994 018:584 JLINK_IsHalted()  returns TRUE (0000ms, 0969ms total)
TA994 018:584 JLINK_ReadReg(R15 (PC))  returns 0x000022CC (0000ms, 0969ms total)
TA994 018:584 JLINK_ReadReg(XPSR)  returns 0x01000000 (0000ms, 0969ms total)
TA994 018:584 JLINK_ClrBPEx(BPHandle = 0x00000005)  returns 0x00 (0000ms, 0969ms total)
TA994 018:584 JLINK_ClrBPEx(BPHandle = 0x00000006)  returns 0x00 (0000ms, 0969ms total)
TA994 018:584 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0001ms, 0970ms total)
TA994 018:585 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 0971ms total)
TA994 018:586 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0002ms, 0973ms total)
TA994 018:588 JLINK_ReadMemEx(0x000022CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x000022C0) -- Updating C cache (64 bytes @ 0x000022C0) -- Read from C cache (2 bytes @ 0x000022CA) - Data: 48 FE  returns 0x02 (0002ms, 0975ms total)
TA994 018:590 JLINK_ReadMemEx(0x000022CC, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00002300) -- Updating C cache (64 bytes @ 0x00002300) -- Read from C cache (60 bytes @ 0x000022CC) - Data: 04 AA 17 80 7D 4C 10 34 02 23 38 46 21 46 FF F7 ...  returns 0x3C (0003ms, 0978ms total)
TA994 018:593 JLINK_ReadMemEx(0x000022CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022CC) - Data: 04 AA  returns 0x02 (0000ms, 0978ms total)
TA994 018:593 JLINK_Step() -- Read from C cache (2 bytes @ 0x000022CC) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Simulated  returns 0x00 (0001ms, 0979ms total)
TA994 018:594 JLINK_ReadReg(R15 (PC))  returns 0x000022CE (0000ms, 0979ms total)
TA994 018:594 JLINK_ReadReg(XPSR)  returns 0x01000000 (0000ms, 0979ms total)
TA994 018:594 JLINK_ReadReg(R0)  returns 0x00000000 (0000ms, 0979ms total)
TA994 018:594 JLINK_ReadReg(R1)  returns 0x40014000 (0000ms, 0979ms total)
TA994 018:594 JLINK_ReadReg(R2)  returns 0x02029FF8 (0000ms, 0979ms total)
TA994 018:594 JLINK_ReadReg(R3)  returns 0x00000001 (0000ms, 0979ms total)
TA994 018:594 JLINK_ReadReg(R4)  returns 0x000031CC (0000ms, 0979ms total)
TA994 018:594 JLINK_ReadReg(R5)  returns 0x0201A294 (0000ms, 0979ms total)
TA994 018:594 JLINK_ReadReg(R6)  returns 0x000031CC (0000ms, 0979ms total)
TA994 018:594 JLINK_ReadReg(R7)  returns 0x00000000 (0000ms, 0979ms total)
TA994 018:594 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 0979ms total)
TA994 018:594 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 0979ms total)
TA994 018:594 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 0979ms total)
TA994 018:594 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 0979ms total)
TA994 018:594 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 0979ms total)
TA994 018:594 JLINK_ReadReg(R13 (SP))  returns 0x02029FE8 (0000ms, 0979ms total)
TA994 018:594 JLINK_ReadReg(R14)  returns 0x000022CD (0000ms, 0979ms total)
TA994 018:594 JLINK_ReadReg(R15 (PC))  returns 0x000022CE (0000ms, 0979ms total)
TA994 018:594 JLINK_ReadReg(XPSR)  returns 0x01000000 (0000ms, 0979ms total)
TA994 018:594 JLINK_ReadReg(MSP)  returns 0x02029FE8 (0000ms, 0979ms total)
TA994 018:594 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 0979ms total)
TA994 018:594 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0979ms total)
TC3B4 018:595 JLINK_ReadMemEx(0x0201A296, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A296) - Data: 00 00  returns 0x02 (0001ms, 0980ms total)
TC3B4 018:596 JLINK_ReadMemEx(0x0201A2B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2B0) - Data: 00  returns 0x01 (0001ms, 0981ms total)
TC3B4 018:597 JLINK_ReadMemEx(0x0201A230, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A230) - Data: 00  returns 0x01 (0001ms, 0982ms total)
TC3B4 018:598 JLINK_ReadMemEx(0x0201A25C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A25C) - Data: 00 00 00 00  returns 0x04 (0001ms, 0983ms total)
TC3B4 018:599 JLINK_ReadMemEx(0x0201A236, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A236) - Data: 00 00  returns 0x02 (0001ms, 0984ms total)
TC3B4 018:600 JLINK_ReadMemEx(0x0201A29C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A29C) - Data: 08 00 00 00  returns 0x04 (0002ms, 0986ms total)
TC3B4 018:602 JLINK_ReadMemEx(0x0201A624, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A624) - Data: 00  returns 0x01 (0001ms, 0987ms total)
TC3B4 018:603 JLINK_ReadMemEx(0x0201A2C0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C0) - Data: 00  returns 0x01 (0001ms, 0988ms total)
TC3B4 018:604 JLINK_ReadMemEx(0x0201A2C1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C1) - Data: 00  returns 0x01 (0001ms, 0989ms total)
TC3B4 018:605 JLINK_ReadMemEx(0x0201A2C2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C2) - Data: 01  returns 0x01 (0001ms, 0990ms total)
TC3B4 018:606 JLINK_ReadMemEx(0x0201A2C3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C3) - Data: 01  returns 0x01 (0001ms, 0991ms total)
TC3B4 018:607 JLINK_ReadMemEx(0x0201A2AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A2AC) - Data: 08 00 00 00  returns 0x04 (0001ms, 0992ms total)
TC3B4 018:608 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0018ms, 1010ms total)
TA994 019:096 JLINK_ReadMemEx(0x000022CE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022CE) - Data: 17 80  returns 0x02 (0000ms, 1010ms total)
TA994 019:096 JLINK_ReadMemEx(0x000022D0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000022D0) - Data: 7D 4C 10 34 02 23 38 46 21 46 FF F7 AB FB 00 20 ...  returns 0x3C (0000ms, 1010ms total)
TA994 019:096 JLINK_ReadMemEx(0x000022D0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022D0) - Data: 7D 4C  returns 0x02 (0000ms, 1010ms total)
TA994 019:096 JLINK_ReadMemEx(0x000022CE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022CE) - Data: 17 80  returns 0x02 (0000ms, 1010ms total)
TA994 019:096 JLINK_Step() -- Read from C cache (2 bytes @ 0x000022CE) -- Not simulated -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0001004)  returns 0x00 (0016ms, 1026ms total)
TA994 019:112 JLINK_ReadReg(R15 (PC))  returns 0x000022D0 (0000ms, 1026ms total)
TA994 019:112 JLINK_ReadReg(XPSR)  returns 0x01000000 (0000ms, 1026ms total)
TA994 019:112 JLINK_ReadReg(R0)  returns 0x00000000 (0000ms, 1026ms total)
TA994 019:112 JLINK_ReadReg(R1)  returns 0x40014000 (0000ms, 1026ms total)
TA994 019:112 JLINK_ReadReg(R2)  returns 0x02029FF8 (0000ms, 1026ms total)
TA994 019:112 JLINK_ReadReg(R3)  returns 0x00000001 (0000ms, 1026ms total)
TA994 019:112 JLINK_ReadReg(R4)  returns 0x000031CC (0000ms, 1026ms total)
TA994 019:112 JLINK_ReadReg(R5)  returns 0x0201A294 (0000ms, 1026ms total)
TA994 019:112 JLINK_ReadReg(R6)  returns 0x000031CC (0000ms, 1026ms total)
TA994 019:112 JLINK_ReadReg(R7)  returns 0x00000000 (0000ms, 1026ms total)
TA994 019:112 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 1026ms total)
TA994 019:112 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 1026ms total)
TA994 019:112 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 1026ms total)
TA994 019:112 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 1026ms total)
TA994 019:112 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 1026ms total)
TA994 019:112 JLINK_ReadReg(R13 (SP))  returns 0x02029FE8 (0000ms, 1026ms total)
TA994 019:112 JLINK_ReadReg(R14)  returns 0x000022CD (0000ms, 1026ms total)
TA994 019:112 JLINK_ReadReg(R15 (PC))  returns 0x000022D0 (0000ms, 1026ms total)
TA994 019:112 JLINK_ReadReg(XPSR)  returns 0x01000000 (0000ms, 1026ms total)
TA994 019:112 JLINK_ReadReg(MSP)  returns 0x02029FE8 (0000ms, 1026ms total)
TA994 019:112 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 1026ms total)
TA994 019:112 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 1026ms total)
TC3B4 019:114 JLINK_ReadMemEx(0x02029FF8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02029FF8) - Data: 00 00  returns 0x02 (0001ms, 1027ms total)
TC3B4 019:115 JLINK_ReadMemEx(0x02029FF8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02029FF8) - Data: 00 00  returns 0x02 (0001ms, 1028ms total)
TC3B4 019:116 JLINK_ReadMemEx(0x0201A296, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A296) - Data: 00 00  returns 0x02 (0001ms, 1029ms total)
TC3B4 019:117 JLINK_ReadMemEx(0x0201A2B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2B0) - Data: 00  returns 0x01 (0001ms, 1030ms total)
TC3B4 019:118 JLINK_ReadMemEx(0x0201A230, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A230) - Data: 00  returns 0x01 (0001ms, 1031ms total)
TC3B4 019:119 JLINK_ReadMemEx(0x0201A25C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A25C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1032ms total)
TC3B4 019:120 JLINK_ReadMemEx(0x0201A236, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A236) - Data: 00 00  returns 0x02 (0001ms, 1033ms total)
TC3B4 019:121 JLINK_ReadMemEx(0x0201A29C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A29C) - Data: 08 00 00 00  returns 0x04 (0001ms, 1034ms total)
TC3B4 019:122 JLINK_ReadMemEx(0x0201A624, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A624) - Data: 00  returns 0x01 (0002ms, 1036ms total)
TC3B4 019:124 JLINK_ReadMemEx(0x0201A2C0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C0) - Data: 00  returns 0x01 (0001ms, 1037ms total)
TC3B4 019:125 JLINK_ReadMemEx(0x0201A2C1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C1) - Data: 00  returns 0x01 (0001ms, 1038ms total)
TC3B4 019:126 JLINK_ReadMemEx(0x0201A2C2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C2) - Data: 01  returns 0x01 (0001ms, 1039ms total)
TC3B4 019:127 JLINK_ReadMemEx(0x0201A2C3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C3) - Data: 01  returns 0x01 (0001ms, 1040ms total)
TC3B4 019:128 JLINK_ReadMemEx(0x0201A2AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A2AC) - Data: 08 00 00 00  returns 0x04 (0001ms, 1041ms total)
TC3B4 019:129 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0018ms, 1059ms total)
TC3B4 019:147 JLINK_ReadMemEx(0x000022D0, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x000022C0) -- Updating C cache (128 bytes @ 0x000022C0) -- Read from C cache (60 bytes @ 0x000022D0) - Data: 7D 4C 10 34 02 23 38 46 21 46 FF F7 AB FB 00 20 ...  returns 0x3C (0005ms, 1064ms total)
TC3B4 019:152 JLINK_ReadMemEx(0x000022D0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022D0) - Data: 7D 4C  returns 0x02 (0000ms, 1064ms total)
TC3B4 019:152 JLINK_ReadMemEx(0x000022D2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022D2) - Data: 10 34  returns 0x02 (0000ms, 1064ms total)
TC3B4 019:152 JLINK_ReadMemEx(0x000022D2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022D2) - Data: 10 34  returns 0x02 (0000ms, 1064ms total)
TC3B4 019:152 JLINK_ReadMemEx(0x000022D4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000022D4) - Data: 02 23 38 46 21 46 FF F7 AB FB 00 20 FF F7 F6 F8 ...  returns 0x3C (0000ms, 1064ms total)
TC3B4 019:152 JLINK_ReadMemEx(0x000022D4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022D4) - Data: 02 23  returns 0x02 (0000ms, 1064ms total)
TC3B4 019:152 JLINK_ReadMemEx(0x000022D4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000022D4) - Data: 02 23 38 46 21 46 FF F7 AB FB 00 20 FF F7 F6 F8 ...  returns 0x3C (0000ms, 1064ms total)
TC3B4 019:152 JLINK_ReadMemEx(0x000022D4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022D4) - Data: 02 23  returns 0x02 (0000ms, 1064ms total)
TC3B4 019:152 JLINK_ReadMemEx(0x000022D6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022D6) - Data: 38 46  returns 0x02 (0000ms, 1064ms total)
TC3B4 019:152 JLINK_ReadMemEx(0x000022D6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022D6) - Data: 38 46  returns 0x02 (0000ms, 1064ms total)
TC3B4 019:152 JLINK_ReadMemEx(0x000022D8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000022D8) - Data: 21 46 FF F7 AB FB 00 20 FF F7 F6 F8 00 28 FA D1 ...  returns 0x3C (0000ms, 1064ms total)
TC3B4 019:152 JLINK_ReadMemEx(0x000022D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022D8) - Data: 21 46  returns 0x02 (0000ms, 1064ms total)
TA994 019:891 JLINK_ReadMemEx(0x000022D0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022D0) - Data: 7D 4C  returns 0x02 (0000ms, 1064ms total)
TA994 019:891 JLINK_Step() -- Read from C cache (2 bytes @ 0x000022D0) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- CPU_ReadMem(64 bytes @ 0x000024C0) -- Updating C cache (64 bytes @ 0x000024C0) -- Read from C cache (4 bytes @ 0x000024C8) -- Simulated  returns 0x00 (0005ms, 1069ms total)
TA994 019:896 JLINK_ReadReg(R15 (PC))  returns 0x000022D2 (0000ms, 1069ms total)
TA994 019:896 JLINK_ReadReg(XPSR)  returns 0x01000000 (0000ms, 1069ms total)
TA994 019:896 JLINK_Step() -- Read from C cache (2 bytes @ 0x000022D2) -- Simulated  returns 0x00 (0000ms, 1069ms total)
TA994 019:896 JLINK_ReadReg(R15 (PC))  returns 0x000022D4 (0000ms, 1069ms total)
TA994 019:896 JLINK_ReadReg(XPSR)  returns 0x01000000 (0000ms, 1069ms total)
TA994 019:896 JLINK_Step() -- Read from C cache (2 bytes @ 0x000022D4) -- Simulated  returns 0x00 (0000ms, 1069ms total)
TA994 019:896 JLINK_ReadReg(R15 (PC))  returns 0x000022D6 (0000ms, 1069ms total)
TA994 019:896 JLINK_ReadReg(XPSR)  returns 0x01000000 (0000ms, 1069ms total)
TA994 019:896 JLINK_Step() -- Read from C cache (2 bytes @ 0x000022D6) -- Simulated  returns 0x00 (0000ms, 1069ms total)
TA994 019:896 JLINK_ReadReg(R15 (PC))  returns 0x000022D8 (0000ms, 1069ms total)
TA994 019:896 JLINK_ReadReg(XPSR)  returns 0x01000000 (0000ms, 1069ms total)
TA994 019:896 JLINK_ReadMemEx(0x000022D8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000022D8) - Data: 21 46 FF F7 AB FB 00 20 FF F7 F6 F8 00 28 FA D1 ...  returns 0x3C (0000ms, 1069ms total)
TA994 019:896 JLINK_ReadMemEx(0x000022D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022D8) - Data: 21 46  returns 0x02 (0000ms, 1069ms total)
TA994 019:896 JLINK_ReadMemEx(0x000022DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022DA) - Data: FF F7  returns 0x02 (0000ms, 1069ms total)
TA994 019:896 JLINK_Step() -- Read from C cache (2 bytes @ 0x000022D8) -- Simulated  returns 0x00 (0000ms, 1069ms total)
TA994 019:896 JLINK_ReadReg(R15 (PC))  returns 0x000022DA (0000ms, 1069ms total)
TA994 019:896 JLINK_ReadReg(XPSR)  returns 0x01000000 (0000ms, 1069ms total)
TA994 019:896 JLINK_ReadMemEx(0x000022DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022DA) - Data: FF F7  returns 0x02 (0000ms, 1069ms total)
TA994 019:896 JLINK_ReadMemEx(0x000022DC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000022DC) - Data: AB FB 00 20 FF F7 F6 F8 00 28 FA D1 04 A8 00 88 ...  returns 0x3C (0000ms, 1069ms total)
TA994 019:896 JLINK_ReadMemEx(0x000022DC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022DC) - Data: AB FB  returns 0x02 (0000ms, 1069ms total)
TA994 019:896 JLINK_SetBPEx(Addr = 0x000022DE, Type = 0xFFFFFFF2)  returns 0x00000007 (0000ms, 1069ms total)
TA994 019:896 JLINK_SetBPEx(Addr = 0x000022B2, Type = 0xFFFFFFF2)  returns 0x00000008 (0000ms, 1069ms total)
TA994 019:896 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0011ms, 1080ms total)
TA994 020:008 JLINK_IsHalted()  returns TRUE (0008ms, 1088ms total)
TA994 020:016 JLINK_Halt()  returns 0x00 (0000ms, 1080ms total)
TA994 020:016 JLINK_IsHalted()  returns TRUE (0000ms, 1080ms total)
TA994 020:016 JLINK_IsHalted()  returns TRUE (0000ms, 1080ms total)
TA994 020:016 JLINK_IsHalted()  returns TRUE (0000ms, 1080ms total)
TA994 020:016 JLINK_ReadReg(R15 (PC))  returns 0x000022DE (0000ms, 1080ms total)
TA994 020:016 JLINK_ReadReg(XPSR)  returns 0x41000000 (0000ms, 1080ms total)
TA994 020:016 JLINK_ClrBPEx(BPHandle = 0x00000007)  returns 0x00 (0000ms, 1080ms total)
TA994 020:016 JLINK_ClrBPEx(BPHandle = 0x00000008)  returns 0x00 (0000ms, 1080ms total)
TA994 020:016 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0001ms, 1081ms total)
TA994 020:017 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 1082ms total)
TA994 020:018 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0001ms, 1083ms total)
TA994 020:019 JLINK_ReadMemEx(0x000022DC, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x000022C0) -- Updating C cache (128 bytes @ 0x000022C0) -- Read from C cache (60 bytes @ 0x000022DC) - Data: AB FB 00 20 FF F7 F6 F8 00 28 FA D1 04 A8 00 88 ...  returns 0x3C (0005ms, 1088ms total)
TA994 020:024 JLINK_ReadMemEx(0x000022DC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022DC) - Data: AB FB  returns 0x02 (0000ms, 1088ms total)
TA994 020:024 JLINK_ReadMemEx(0x000022DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022DE) - Data: 00 20  returns 0x02 (0000ms, 1088ms total)
TA994 020:024 JLINK_ReadMemEx(0x000022DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022DE) - Data: 00 20  returns 0x02 (0000ms, 1088ms total)
TA994 020:024 JLINK_ReadMemEx(0x000022E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000022E0) - Data: FF F7 F6 F8 00 28 FA D1 04 A8 00 88 68 80 77 49 ...  returns 0x3C (0000ms, 1088ms total)
TA994 020:024 JLINK_ReadMemEx(0x000022E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022E0) - Data: FF F7  returns 0x02 (0000ms, 1088ms total)
TA994 020:024 JLINK_Step() -- Read from C cache (2 bytes @ 0x000022DE) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Simulated  returns 0x00 (0001ms, 1089ms total)
TA994 020:025 JLINK_ReadReg(R15 (PC))  returns 0x000022E0 (0000ms, 1089ms total)
TA994 020:025 JLINK_ReadReg(XPSR)  returns 0x41000000 (0000ms, 1089ms total)
TA994 020:025 JLINK_ReadReg(R0)  returns 0x00000000 (0000ms, 1089ms total)
TA994 020:025 JLINK_ReadReg(R1)  returns 0xEB930000 (0000ms, 1089ms total)
TA994 020:025 JLINK_ReadReg(R2)  returns 0x00000002 (0000ms, 1089ms total)
TA994 020:025 JLINK_ReadReg(R3)  returns 0x00000002 (0000ms, 1089ms total)
TA994 020:025 JLINK_ReadReg(R4)  returns 0x0402D010 (0000ms, 1089ms total)
TA994 020:025 JLINK_ReadReg(R5)  returns 0x0201A294 (0000ms, 1089ms total)
TA994 020:025 JLINK_ReadReg(R6)  returns 0x000031CC (0000ms, 1089ms total)
TA994 020:025 JLINK_ReadReg(R7)  returns 0x00000000 (0000ms, 1089ms total)
TA994 020:025 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 1089ms total)
TA994 020:025 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 1089ms total)
TA994 020:025 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 1089ms total)
TA994 020:025 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 1089ms total)
TA994 020:025 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 1089ms total)
TA994 020:025 JLINK_ReadReg(R13 (SP))  returns 0x02029FE8 (0000ms, 1089ms total)
TA994 020:025 JLINK_ReadReg(R14)  returns 0x000026D9 (0000ms, 1089ms total)
TA994 020:025 JLINK_ReadReg(R15 (PC))  returns 0x000022E0 (0000ms, 1089ms total)
TA994 020:025 JLINK_ReadReg(XPSR)  returns 0x41000000 (0000ms, 1089ms total)
TA994 020:025 JLINK_ReadReg(MSP)  returns 0x02029FE8 (0000ms, 1089ms total)
TA994 020:025 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 1089ms total)
TA994 020:025 JLINK_ReadReg(CFBP)  returns 0x00000000 (0001ms, 1090ms total)
TC3B4 020:027 JLINK_ReadMemEx(0x02029FF8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02029FF8) - Data: BB BB  returns 0x02 (0001ms, 1091ms total)
TC3B4 020:028 JLINK_ReadMemEx(0x02029FF8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02029FF8) - Data: BB BB  returns 0x02 (0001ms, 1092ms total)
TC3B4 020:029 JLINK_ReadMemEx(0x0201A296, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A296) - Data: 00 00  returns 0x02 (0001ms, 1093ms total)
TC3B4 020:030 JLINK_ReadMemEx(0x0201A2B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2B0) - Data: 00  returns 0x01 (0001ms, 1094ms total)
TC3B4 020:031 JLINK_ReadMemEx(0x0201A230, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A230) - Data: 00  returns 0x01 (0002ms, 1096ms total)
TC3B4 020:033 JLINK_ReadMemEx(0x0201A25C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A25C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1097ms total)
TC3B4 020:034 JLINK_ReadMemEx(0x0201A236, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A236) - Data: 00 00  returns 0x02 (0001ms, 1098ms total)
TC3B4 020:035 JLINK_ReadMemEx(0x0201A29C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A29C) - Data: 09 00 00 00  returns 0x04 (0001ms, 1099ms total)
TC3B4 020:036 JLINK_ReadMemEx(0x0201A624, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A624) - Data: 00  returns 0x01 (0001ms, 1100ms total)
TC3B4 020:037 JLINK_ReadMemEx(0x0201A2C0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C0) - Data: 00  returns 0x01 (0001ms, 1101ms total)
TC3B4 020:038 JLINK_ReadMemEx(0x0201A2C1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C1) - Data: 00  returns 0x01 (0001ms, 1102ms total)
TC3B4 020:039 JLINK_ReadMemEx(0x0201A2C2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C2) - Data: 01  returns 0x01 (0001ms, 1103ms total)
TC3B4 020:040 JLINK_ReadMemEx(0x0201A2C3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C3) - Data: 01  returns 0x01 (0002ms, 1105ms total)
TC3B4 020:042 JLINK_ReadMemEx(0x0201A2AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A2AC) - Data: 09 00 00 00  returns 0x04 (0001ms, 1106ms total)
TC3B4 020:043 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0018ms, 1124ms total)
TC3B4 020:061 JLINK_ReadMemEx(0x000022E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000022E0) - Data: FF F7 F6 F8 00 28 FA D1 04 A8 00 88 68 80 77 49 ...  returns 0x3C (0000ms, 1124ms total)
TC3B4 020:061 JLINK_ReadMemEx(0x000022E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022E0) - Data: FF F7  returns 0x02 (0000ms, 1124ms total)
TC3B4 020:061 JLINK_ReadMemEx(0x000022E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022E2) - Data: F6 F8  returns 0x02 (0000ms, 1124ms total)
TC3B4 020:061 JLINK_ReadMemEx(0x000022E4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000022E4) - Data: 00 28 FA D1 04 A8 00 88 68 80 77 49 88 42 0B D0 ...  returns 0x3C (0000ms, 1124ms total)
TC3B4 020:061 JLINK_ReadMemEx(0x000022E4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022E4) - Data: 00 28  returns 0x02 (0000ms, 1124ms total)
TC3B4 020:061 JLINK_ReadMemEx(0x000022E6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022E6) - Data: FA D1  returns 0x02 (0000ms, 1124ms total)
TA994 020:614 JLINK_ReadMemEx(0x000022E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022E0) - Data: FF F7  returns 0x02 (0001ms, 1125ms total)
TA994 020:615 JLINK_SetBPEx(Addr = 0x000022E4, Type = 0xFFFFFFF2)  returns 0x00000009 (0000ms, 1125ms total)
TA994 020:615 JLINK_SetBPEx(Addr = 0x000022B2, Type = 0xFFFFFFF2)  returns 0x0000000A (0000ms, 1125ms total)
TA994 020:615 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0011ms, 1136ms total)
TA994 020:726 JLINK_IsHalted()  returns TRUE (0008ms, 1144ms total)
TA994 020:734 JLINK_Halt()  returns 0x00 (0000ms, 1136ms total)
TA994 020:734 JLINK_IsHalted()  returns TRUE (0000ms, 1136ms total)
TA994 020:734 JLINK_IsHalted()  returns TRUE (0000ms, 1136ms total)
TA994 020:734 JLINK_IsHalted()  returns TRUE (0000ms, 1136ms total)
TA994 020:734 JLINK_ReadReg(R15 (PC))  returns 0x000022E4 (0000ms, 1136ms total)
TA994 020:734 JLINK_ReadReg(XPSR)  returns 0x41000000 (0000ms, 1136ms total)
TA994 020:734 JLINK_ClrBPEx(BPHandle = 0x00000009)  returns 0x00 (0000ms, 1136ms total)
TA994 020:734 JLINK_ClrBPEx(BPHandle = 0x0000000A)  returns 0x00 (0000ms, 1136ms total)
TA994 020:734 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0001ms, 1137ms total)
TA994 020:735 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 1138ms total)
TA994 020:736 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0001ms, 1139ms total)
TA994 020:737 JLINK_ReadMemEx(0x000022E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x000022C0) -- Updating C cache (64 bytes @ 0x000022C0) -- Read from C cache (2 bytes @ 0x000022E2) - Data: F6 F8  returns 0x02 (0003ms, 1142ms total)
TA994 020:740 JLINK_ReadMemEx(0x000022E4, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00002300) -- Updating C cache (64 bytes @ 0x00002300) -- Read from C cache (60 bytes @ 0x000022E4) - Data: 00 28 FA D1 04 A8 00 88 68 80 77 49 88 42 0B D0 ...  returns 0x3C (0003ms, 1145ms total)
TA994 020:743 JLINK_ReadMemEx(0x000022E4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022E4) - Data: 00 28  returns 0x02 (0000ms, 1145ms total)
TA994 020:743 JLINK_Step() -- Read from C cache (2 bytes @ 0x000022E4) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Simulated  returns 0x00 (0001ms, 1146ms total)
TA994 020:744 JLINK_ReadReg(R15 (PC))  returns 0x000022E6 (0000ms, 1146ms total)
TA994 020:744 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 1146ms total)
TA994 020:744 JLINK_ReadMemEx(0x000022E6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022E6) - Data: FA D1  returns 0x02 (0000ms, 1146ms total)
TA994 020:744 JLINK_ReadMemEx(0x000022E8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000022E8) - Data: 04 A8 00 88 68 80 77 49 88 42 0B D0 76 49 88 42 ...  returns 0x3C (0000ms, 1146ms total)
TA994 020:744 JLINK_ReadMemEx(0x000022E8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022E8) - Data: 04 A8  returns 0x02 (0000ms, 1146ms total)
TA994 020:744 JLINK_Step() -- Read from C cache (2 bytes @ 0x000022E6) -- Simulated  returns 0x00 (0000ms, 1146ms total)
TA994 020:744 JLINK_ReadReg(R15 (PC))  returns 0x000022E8 (0000ms, 1146ms total)
TA994 020:744 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 1146ms total)
TA994 020:744 JLINK_ReadMemEx(0x000022E8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000022E8) - Data: 04 A8 00 88 68 80 77 49 88 42 0B D0 76 49 88 42 ...  returns 0x3C (0000ms, 1146ms total)
TA994 020:744 JLINK_ReadMemEx(0x000022E8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022E8) - Data: 04 A8  returns 0x02 (0000ms, 1146ms total)
TA994 020:744 JLINK_ReadMemEx(0x000022EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022EA) - Data: 00 88  returns 0x02 (0000ms, 1146ms total)
TA994 020:744 JLINK_Step() -- Read from C cache (2 bytes @ 0x000022E8) -- Simulated  returns 0x00 (0000ms, 1146ms total)
TA994 020:744 JLINK_ReadReg(R15 (PC))  returns 0x000022EA (0000ms, 1146ms total)
TA994 020:744 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 1146ms total)
TA994 020:744 JLINK_ReadReg(R0)  returns 0x02029FF8 (0000ms, 1146ms total)
TA994 020:744 JLINK_ReadReg(R1)  returns 0xEB930000 (0000ms, 1146ms total)
TA994 020:744 JLINK_ReadReg(R2)  returns 0x00000002 (0000ms, 1146ms total)
TA994 020:744 JLINK_ReadReg(R3)  returns 0x00000000 (0000ms, 1146ms total)
TA994 020:744 JLINK_ReadReg(R4)  returns 0x0402D010 (0000ms, 1146ms total)
TA994 020:744 JLINK_ReadReg(R5)  returns 0x0201A294 (0000ms, 1146ms total)
TA994 020:744 JLINK_ReadReg(R6)  returns 0x000031CC (0000ms, 1146ms total)
TA994 020:744 JLINK_ReadReg(R7)  returns 0x00000000 (0001ms, 1147ms total)
TA994 020:745 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 1147ms total)
TA994 020:745 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 1147ms total)
TA994 020:745 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 1147ms total)
TA994 020:745 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 1147ms total)
TA994 020:745 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 1147ms total)
TA994 020:745 JLINK_ReadReg(R13 (SP))  returns 0x02029FE8 (0000ms, 1147ms total)
TA994 020:745 JLINK_ReadReg(R14)  returns 0x000022E5 (0000ms, 1147ms total)
TA994 020:745 JLINK_ReadReg(R15 (PC))  returns 0x000022EA (0000ms, 1147ms total)
TA994 020:745 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 1147ms total)
TA994 020:745 JLINK_ReadReg(MSP)  returns 0x02029FE8 (0000ms, 1147ms total)
TA994 020:745 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 1147ms total)
TA994 020:745 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 1147ms total)
TC3B4 020:745 JLINK_ReadMemEx(0x02029FF8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02029FF8) - Data: BB BB  returns 0x02 (0001ms, 1148ms total)
TC3B4 020:746 JLINK_ReadMemEx(0x02029FF8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02029FF8) - Data: BB BB  returns 0x02 (0001ms, 1149ms total)
TC3B4 020:747 JLINK_ReadMemEx(0x0201A296, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A296) - Data: 00 00  returns 0x02 (0002ms, 1151ms total)
TC3B4 020:749 JLINK_ReadMemEx(0x0201A2B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2B0) - Data: 00  returns 0x01 (0001ms, 1152ms total)
TC3B4 020:750 JLINK_ReadMemEx(0x0201A230, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A230) - Data: 00  returns 0x01 (0001ms, 1153ms total)
TC3B4 020:751 JLINK_ReadMemEx(0x0201A25C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A25C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1154ms total)
TC3B4 020:752 JLINK_ReadMemEx(0x0201A236, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A236) - Data: 00 00  returns 0x02 (0001ms, 1155ms total)
TC3B4 020:753 JLINK_ReadMemEx(0x0201A29C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A29C) - Data: 0A 00 00 00  returns 0x04 (0001ms, 1156ms total)
TC3B4 020:754 JLINK_ReadMemEx(0x0201A624, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A624) - Data: 00  returns 0x01 (0001ms, 1157ms total)
TC3B4 020:755 JLINK_ReadMemEx(0x0201A2C0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C0) - Data: 00  returns 0x01 (0001ms, 1158ms total)
TC3B4 020:756 JLINK_ReadMemEx(0x0201A2C1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C1) - Data: 00  returns 0x01 (0002ms, 1160ms total)
TC3B4 020:758 JLINK_ReadMemEx(0x0201A2C2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C2) - Data: 01  returns 0x01 (0001ms, 1161ms total)
TC3B4 020:759 JLINK_ReadMemEx(0x0201A2C3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C3) - Data: 01  returns 0x01 (0001ms, 1162ms total)
TC3B4 020:760 JLINK_ReadMemEx(0x0201A2AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A2AC) - Data: 0A 00 00 00  returns 0x04 (0001ms, 1163ms total)
TC3B4 020:761 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0018ms, 1181ms total)
TC3B4 020:779 JLINK_ReadMemEx(0x000022EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022EA) - Data: 00 88  returns 0x02 (0000ms, 1181ms total)
TC3B4 020:779 JLINK_ReadMemEx(0x000022EC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000022EC) - Data: 68 80 77 49 88 42 0B D0 76 49 88 42 31 D0 76 49 ...  returns 0x3C (0000ms, 1181ms total)
TC3B4 020:779 JLINK_ReadMemEx(0x000022EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022EC) - Data: 68 80  returns 0x02 (0000ms, 1181ms total)
TC3B4 020:779 JLINK_ReadMemEx(0x000022EC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000022EC) - Data: 68 80 77 49 88 42 0B D0 76 49 88 42 31 D0 76 49 ...  returns 0x3C (0000ms, 1181ms total)
TC3B4 020:779 JLINK_ReadMemEx(0x000022EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022EC) - Data: 68 80  returns 0x02 (0001ms, 1182ms total)
TC3B4 020:780 JLINK_ReadMemEx(0x000022EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022EE) - Data: 77 49  returns 0x02 (0000ms, 1182ms total)
TA994 021:477 JLINK_ReadMemEx(0x000022EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022EA) - Data: 00 88  returns 0x02 (0000ms, 1182ms total)
TA994 021:477 JLINK_Step() -- Read from C cache (2 bytes @ 0x000022EA) -- Not simulated -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0001004)  returns 0x00 (0016ms, 1198ms total)
TA994 021:493 JLINK_ReadReg(R15 (PC))  returns 0x000022EC (0000ms, 1198ms total)
TA994 021:493 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 1198ms total)
TA994 021:493 JLINK_Step() -- CPU_ReadMem(64 bytes @ 0x000022C0) -- Updating C cache (64 bytes @ 0x000022C0) -- Read from C cache (2 bytes @ 0x000022EC) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Not simulated  returns 0x00 (0014ms, 1212ms total)
TA994 021:507 JLINK_ReadReg(R15 (PC))  returns 0x000022EE (0000ms, 1212ms total)
TA994 021:507 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 1212ms total)
TA994 021:507 JLINK_ReadReg(R0)  returns 0x0000BBBB (0000ms, 1212ms total)
TA994 021:507 JLINK_ReadReg(R1)  returns 0xEB930000 (0000ms, 1212ms total)
TA994 021:507 JLINK_ReadReg(R2)  returns 0x00000002 (0000ms, 1212ms total)
TA994 021:507 JLINK_ReadReg(R3)  returns 0x00000000 (0000ms, 1212ms total)
TA994 021:507 JLINK_ReadReg(R4)  returns 0x0402D010 (0000ms, 1212ms total)
TA994 021:507 JLINK_ReadReg(R5)  returns 0x0201A294 (0000ms, 1212ms total)
TA994 021:507 JLINK_ReadReg(R6)  returns 0x000031CC (0000ms, 1212ms total)
TA994 021:507 JLINK_ReadReg(R7)  returns 0x00000000 (0000ms, 1212ms total)
TA994 021:507 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 1212ms total)
TA994 021:507 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 1212ms total)
TA994 021:507 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 1212ms total)
TA994 021:507 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 1212ms total)
TA994 021:507 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 1212ms total)
TA994 021:507 JLINK_ReadReg(R13 (SP))  returns 0x02029FE8 (0000ms, 1212ms total)
TA994 021:507 JLINK_ReadReg(R14)  returns 0x000022E5 (0000ms, 1212ms total)
TA994 021:507 JLINK_ReadReg(R15 (PC))  returns 0x000022EE (0000ms, 1212ms total)
TA994 021:507 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 1212ms total)
TA994 021:507 JLINK_ReadReg(MSP)  returns 0x02029FE8 (0000ms, 1212ms total)
TA994 021:507 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 1212ms total)
TA994 021:507 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 1212ms total)
TC3B4 021:507 JLINK_ReadMemEx(0x0201A296, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A296) - Data: BB BB  returns 0x02 (0001ms, 1213ms total)
TC3B4 021:509 JLINK_ReadMemEx(0x0201A2B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2B0) - Data: 00  returns 0x01 (0001ms, 1214ms total)
TC3B4 021:510 JLINK_ReadMemEx(0x0201A230, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A230) - Data: 00  returns 0x01 (0001ms, 1215ms total)
TC3B4 021:511 JLINK_ReadMemEx(0x0201A25C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A25C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1216ms total)
TC3B4 021:512 JLINK_ReadMemEx(0x0201A236, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A236) - Data: 00 00  returns 0x02 (0001ms, 1217ms total)
TC3B4 021:513 JLINK_ReadMemEx(0x0201A29C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A29C) - Data: 0A 00 00 00  returns 0x04 (0001ms, 1218ms total)
TC3B4 021:514 JLINK_ReadMemEx(0x0201A624, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A624) - Data: 00  returns 0x01 (0001ms, 1219ms total)
TC3B4 021:515 JLINK_ReadMemEx(0x0201A2C0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C0) - Data: 00  returns 0x01 (0001ms, 1220ms total)
TC3B4 021:516 JLINK_ReadMemEx(0x0201A2C1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C1) - Data: 00  returns 0x01 (0001ms, 1221ms total)
TC3B4 021:517 JLINK_ReadMemEx(0x0201A2C2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C2) - Data: 01  returns 0x01 (0001ms, 1222ms total)
TC3B4 021:518 JLINK_ReadMemEx(0x0201A2C3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C3) - Data: 01  returns 0x01 (0002ms, 1224ms total)
TC3B4 021:520 JLINK_ReadMemEx(0x0201A2AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A2AC) - Data: 0A 00 00 00  returns 0x04 (0001ms, 1225ms total)
TC3B4 021:521 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0018ms, 1243ms total)
TC3B4 021:539 JLINK_ReadMemEx(0x000022EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x000022C0) -- Updating C cache (64 bytes @ 0x000022C0) -- Read from C cache (2 bytes @ 0x000022EE) - Data: 77 49  returns 0x02 (0002ms, 1245ms total)
TC3B4 021:541 JLINK_ReadMemEx(0x000022F0, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00002300) -- Updating C cache (64 bytes @ 0x00002300) -- Read from C cache (60 bytes @ 0x000022F0) - Data: 88 42 0B D0 76 49 88 42 31 D0 76 49 88 42 6C D1 ...  returns 0x3C (0003ms, 1248ms total)
TC3B4 021:544 JLINK_ReadMemEx(0x000022F0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022F0) - Data: 88 42  returns 0x02 (0000ms, 1248ms total)
TC3B4 021:544 JLINK_ReadMemEx(0x000022F0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000022F0) - Data: 88 42 0B D0 76 49 88 42 31 D0 76 49 88 42 6C D1 ...  returns 0x3C (0000ms, 1248ms total)
TC3B4 021:544 JLINK_ReadMemEx(0x000022F0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022F0) - Data: 88 42  returns 0x02 (0000ms, 1248ms total)
TC3B4 021:544 JLINK_ReadMemEx(0x000022F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022F2) - Data: 0B D0  returns 0x02 (0000ms, 1248ms total)
TC3B4 021:544 JLINK_ReadMemEx(0x000022F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022F2) - Data: 0B D0  returns 0x02 (0000ms, 1248ms total)
TC3B4 021:544 JLINK_ReadMemEx(0x000022F4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000022F4) - Data: 76 49 88 42 31 D0 76 49 88 42 6C D1 93 A0 FE F7 ...  returns 0x3C (0000ms, 1248ms total)
TC3B4 021:544 JLINK_ReadMemEx(0x000022F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022F4) - Data: 76 49  returns 0x02 (0000ms, 1248ms total)
TA994 022:115 JLINK_ReadMemEx(0x000022EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022EE) - Data: 77 49  returns 0x02 (0000ms, 1248ms total)
TA994 022:115 JLINK_Step() -- Read from C cache (2 bytes @ 0x000022EE) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- CPU_ReadMem(64 bytes @ 0x000024C0) -- Updating C cache (64 bytes @ 0x000024C0) -- Read from C cache (4 bytes @ 0x000024CC) -- Simulated  returns 0x00 (0004ms, 1252ms total)
TA994 022:119 JLINK_ReadReg(R15 (PC))  returns 0x000022F0 (0000ms, 1252ms total)
TA994 022:119 JLINK_ReadReg(XPSR)  returns 0x61000000 (0001ms, 1253ms total)
TA994 022:120 JLINK_Step() -- Read from C cache (2 bytes @ 0x000022F0) -- Simulated  returns 0x00 (0000ms, 1253ms total)
TA994 022:120 JLINK_ReadReg(R15 (PC))  returns 0x000022F2 (0000ms, 1253ms total)
TA994 022:120 JLINK_ReadReg(XPSR)  returns 0x81000000 (0000ms, 1253ms total)
TA994 022:120 JLINK_Step() -- Read from C cache (2 bytes @ 0x000022F2) -- Simulated  returns 0x00 (0000ms, 1253ms total)
TA994 022:120 JLINK_ReadReg(R15 (PC))  returns 0x000022F4 (0000ms, 1253ms total)
TA994 022:120 JLINK_ReadReg(XPSR)  returns 0x81000000 (0000ms, 1253ms total)
TA994 022:120 JLINK_ReadMemEx(0x000022F4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000022F4) - Data: 76 49 88 42 31 D0 76 49 88 42 6C D1 93 A0 FE F7 ...  returns 0x3C (0000ms, 1253ms total)
TA994 022:120 JLINK_ReadMemEx(0x000022F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022F4) - Data: 76 49  returns 0x02 (0000ms, 1253ms total)
TA994 022:120 JLINK_ReadMemEx(0x000022F6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022F6) - Data: 88 42  returns 0x02 (0000ms, 1253ms total)
TA994 022:120 JLINK_Step() -- Read from C cache (2 bytes @ 0x000022F4) -- Read from C cache (4 bytes @ 0x000024D0) -- Simulated  returns 0x00 (0000ms, 1253ms total)
TA994 022:120 JLINK_ReadReg(R15 (PC))  returns 0x000022F6 (0000ms, 1253ms total)
TA994 022:120 JLINK_ReadReg(XPSR)  returns 0x81000000 (0000ms, 1253ms total)
TA994 022:120 JLINK_ReadMemEx(0x000022F6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022F6) - Data: 88 42  returns 0x02 (0000ms, 1253ms total)
TA994 022:120 JLINK_ReadMemEx(0x000022F8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000022F8) - Data: 31 D0 76 49 88 42 6C D1 93 A0 FE F7 61 FA FE F7 ...  returns 0x3C (0000ms, 1253ms total)
TA994 022:120 JLINK_ReadMemEx(0x000022F8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022F8) - Data: 31 D0  returns 0x02 (0000ms, 1253ms total)
TA994 022:120 JLINK_Step() -- Read from C cache (2 bytes @ 0x000022F6) -- Simulated  returns 0x00 (0000ms, 1253ms total)
TA994 022:120 JLINK_ReadReg(R15 (PC))  returns 0x000022F8 (0000ms, 1253ms total)
TA994 022:120 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 1253ms total)
TA994 022:120 JLINK_ReadMemEx(0x000022F8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000022F8) - Data: 31 D0 76 49 88 42 6C D1 93 A0 FE F7 61 FA FE F7 ...  returns 0x3C (0000ms, 1253ms total)
TA994 022:120 JLINK_ReadMemEx(0x000022F8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022F8) - Data: 31 D0  returns 0x02 (0000ms, 1253ms total)
TA994 022:120 JLINK_ReadMemEx(0x000022FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000022FA) - Data: 76 49  returns 0x02 (0000ms, 1253ms total)
TA994 022:120 JLINK_Step() -- Read from C cache (2 bytes @ 0x000022F8) -- Simulated  returns 0x00 (0000ms, 1253ms total)
TA994 022:120 JLINK_ReadReg(R15 (PC))  returns 0x0000235E (0000ms, 1253ms total)
TA994 022:120 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 1253ms total)
TA994 022:120 JLINK_ReadReg(R0)  returns 0x0000BBBB (0000ms, 1253ms total)
TA994 022:120 JLINK_ReadReg(R1)  returns 0x0000BBBB (0000ms, 1253ms total)
TA994 022:120 JLINK_ReadReg(R2)  returns 0x00000002 (0000ms, 1253ms total)
TA994 022:120 JLINK_ReadReg(R3)  returns 0x00000000 (0000ms, 1253ms total)
TA994 022:120 JLINK_ReadReg(R4)  returns 0x0402D010 (0000ms, 1253ms total)
TA994 022:120 JLINK_ReadReg(R5)  returns 0x0201A294 (0000ms, 1253ms total)
TA994 022:120 JLINK_ReadReg(R6)  returns 0x000031CC (0001ms, 1254ms total)
TA994 022:121 JLINK_ReadReg(R7)  returns 0x00000000 (0000ms, 1254ms total)
TA994 022:121 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 1254ms total)
TA994 022:121 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 1254ms total)
TA994 022:121 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 1254ms total)
TA994 022:121 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 1254ms total)
TA994 022:121 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 1254ms total)
TA994 022:121 JLINK_ReadReg(R13 (SP))  returns 0x02029FE8 (0000ms, 1254ms total)
TA994 022:121 JLINK_ReadReg(R14)  returns 0x000022E5 (0000ms, 1254ms total)
TA994 022:121 JLINK_ReadReg(R15 (PC))  returns 0x0000235E (0000ms, 1254ms total)
TA994 022:121 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 1254ms total)
TA994 022:121 JLINK_ReadReg(MSP)  returns 0x02029FE8 (0000ms, 1254ms total)
TA994 022:121 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 1254ms total)
TA994 022:121 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 1254ms total)
TC3B4 022:121 JLINK_ReadMemEx(0x0201A296, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A296) - Data: BB BB  returns 0x02 (0001ms, 1255ms total)
TC3B4 022:122 JLINK_ReadMemEx(0x0201A2B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2B0) - Data: 00  returns 0x01 (0001ms, 1256ms total)
TC3B4 022:123 JLINK_ReadMemEx(0x0201A230, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A230) - Data: 00  returns 0x01 (0001ms, 1257ms total)
TC3B4 022:124 JLINK_ReadMemEx(0x0201A25C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A25C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1258ms total)
TC3B4 022:125 JLINK_ReadMemEx(0x0201A236, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A236) - Data: 00 00  returns 0x02 (0002ms, 1260ms total)
TC3B4 022:127 JLINK_ReadMemEx(0x0201A29C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A29C) - Data: 0A 00 00 00  returns 0x04 (0001ms, 1261ms total)
TC3B4 022:128 JLINK_ReadMemEx(0x0201A624, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A624) - Data: 00  returns 0x01 (0001ms, 1262ms total)
TC3B4 022:129 JLINK_ReadMemEx(0x0201A2C0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C0) - Data: 00  returns 0x01 (0001ms, 1263ms total)
TC3B4 022:130 JLINK_ReadMemEx(0x0201A2C1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C1) - Data: 00  returns 0x01 (0001ms, 1264ms total)
TC3B4 022:131 JLINK_ReadMemEx(0x0201A2C2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C2) - Data: 01  returns 0x01 (0001ms, 1265ms total)
TC3B4 022:132 JLINK_ReadMemEx(0x0201A2C3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C3) - Data: 01  returns 0x01 (0001ms, 1266ms total)
TC3B4 022:133 JLINK_ReadMemEx(0x0201A2AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A2AC) - Data: 0A 00 00 00  returns 0x04 (0001ms, 1267ms total)
TC3B4 022:134 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0018ms, 1285ms total)
TC3B4 022:152 JLINK_ReadMemEx(0x0000235E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00002340) -- Updating C cache (64 bytes @ 0x00002340) -- Read from C cache (2 bytes @ 0x0000235E) - Data: 64 A0  returns 0x02 (0003ms, 1288ms total)
TC3B4 022:155 JLINK_ReadMemEx(0x00002360, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00002380) -- Updating C cache (64 bytes @ 0x00002380) -- Read from C cache (60 bytes @ 0x00002360) - Data: FE F7 32 FA 68 A0 FE F7 2F FA FE F7 99 FC 03 98 ...  returns 0x3C (0003ms, 1291ms total)
TC3B4 022:158 JLINK_ReadMemEx(0x00002360, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00002360) - Data: FE F7  returns 0x02 (0000ms, 1291ms total)
TC3B4 022:158 JLINK_ReadMemEx(0x00002360, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00002360) - Data: FE F7 32 FA 68 A0 FE F7 2F FA FE F7 99 FC 03 98 ...  returns 0x3C (0000ms, 1291ms total)
TC3B4 022:158 JLINK_ReadMemEx(0x00002360, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00002360) - Data: FE F7  returns 0x02 (0000ms, 1291ms total)
TC3B4 022:158 JLINK_ReadMemEx(0x00002362, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00002362) - Data: 32 FA  returns 0x02 (0000ms, 1291ms total)
TA994 022:998 JLINK_ReadMemEx(0x0000235E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000235E) - Data: 64 A0  returns 0x02 (0000ms, 1291ms total)
TA994 022:998 JLINK_Step() -- Read from C cache (2 bytes @ 0x0000235E) -- Simulated  returns 0x00 (0001ms, 1292ms total)
TA994 022:999 JLINK_ReadReg(R15 (PC))  returns 0x00002360 (0000ms, 1292ms total)
TA994 022:999 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 1292ms total)
TA994 022:999 JLINK_SetBPEx(Addr = 0x00002364, Type = 0xFFFFFFF2)  returns 0x0000000B (0000ms, 1292ms total)
TA994 022:999 JLINK_SetBPEx(Addr = 0x000022B2, Type = 0xFFFFFFF2)  returns 0x0000000C (0000ms, 1292ms total)
TA994 022:999 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0010ms, 1302ms total)
TA994 023:110 JLINK_IsHalted()  returns TRUE (0009ms, 1311ms total)
TA994 023:119 JLINK_Halt()  returns 0x00 (0000ms, 1302ms total)
TA994 023:119 JLINK_IsHalted()  returns TRUE (0000ms, 1302ms total)
TA994 023:119 JLINK_IsHalted()  returns TRUE (0000ms, 1302ms total)
TA994 023:119 JLINK_IsHalted()  returns TRUE (0000ms, 1302ms total)
TA994 023:119 JLINK_ReadReg(R15 (PC))  returns 0x00002364 (0000ms, 1302ms total)
TA994 023:119 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 1302ms total)
TA994 023:119 JLINK_ClrBPEx(BPHandle = 0x0000000B)  returns 0x00 (0000ms, 1302ms total)
TA994 023:119 JLINK_ClrBPEx(BPHandle = 0x0000000C)  returns 0x00 (0000ms, 1302ms total)
TA994 023:119 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0001ms, 1303ms total)
TA994 023:120 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 1304ms total)
TA994 023:121 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0001ms, 1305ms total)
TA994 023:122 JLINK_ReadReg(R0)  returns 0x00000000 (0000ms, 1305ms total)
TA994 023:122 JLINK_ReadReg(R1)  returns 0x00000091 (0000ms, 1305ms total)
TA994 023:122 JLINK_ReadReg(R2)  returns 0x0201A294 (0000ms, 1305ms total)
TA994 023:122 JLINK_ReadReg(R3)  returns 0x0000310A (0000ms, 1305ms total)
TA994 023:122 JLINK_ReadReg(R4)  returns 0x0402D010 (0000ms, 1305ms total)
TA994 023:122 JLINK_ReadReg(R5)  returns 0x0201A294 (0000ms, 1305ms total)
TA994 023:122 JLINK_ReadReg(R6)  returns 0x000031CC (0000ms, 1305ms total)
TA994 023:122 JLINK_ReadReg(R7)  returns 0x00000000 (0000ms, 1305ms total)
TA994 023:122 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 1305ms total)
TA994 023:122 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 1305ms total)
TA994 023:122 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 1305ms total)
TA994 023:122 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 1305ms total)
TA994 023:122 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 1305ms total)
TA994 023:122 JLINK_ReadReg(R13 (SP))  returns 0x02029FE8 (0001ms, 1306ms total)
TA994 023:123 JLINK_ReadReg(R14)  returns 0x00002CAF (0000ms, 1306ms total)
TA994 023:123 JLINK_ReadReg(R15 (PC))  returns 0x00002364 (0000ms, 1306ms total)
TA994 023:123 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 1306ms total)
TA994 023:123 JLINK_ReadReg(MSP)  returns 0x02029FE8 (0000ms, 1306ms total)
TA994 023:123 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 1306ms total)
TA994 023:123 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 1306ms total)
TC3B4 023:123 JLINK_ReadMemEx(0x0201A296, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A296) - Data: BB BB  returns 0x02 (0001ms, 1307ms total)
TC3B4 023:124 JLINK_ReadMemEx(0x0201A2B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2B0) - Data: 00  returns 0x01 (0001ms, 1308ms total)
TC3B4 023:125 JLINK_ReadMemEx(0x0201A230, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A230) - Data: 00  returns 0x01 (0001ms, 1309ms total)
TC3B4 023:126 JLINK_ReadMemEx(0x0201A25C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A25C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1310ms total)
TC3B4 023:127 JLINK_ReadMemEx(0x0201A236, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A236) - Data: 00 00  returns 0x02 (0001ms, 1311ms total)
TC3B4 023:128 JLINK_ReadMemEx(0x0201A29C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A29C) - Data: 0B 00 00 00  returns 0x04 (0001ms, 1312ms total)
TC3B4 023:129 JLINK_ReadMemEx(0x0201A624, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A624) - Data: 00  returns 0x01 (0001ms, 1313ms total)
TC3B4 023:131 JLINK_ReadMemEx(0x0201A2C0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C0) - Data: 00  returns 0x01 (0001ms, 1314ms total)
TC3B4 023:132 JLINK_ReadMemEx(0x0201A2C1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C1) - Data: 00  returns 0x01 (0001ms, 1315ms total)
TC3B4 023:133 JLINK_ReadMemEx(0x0201A2C2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C2) - Data: 01  returns 0x01 (0001ms, 1316ms total)
TC3B4 023:134 JLINK_ReadMemEx(0x0201A2C3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C3) - Data: 01  returns 0x01 (0001ms, 1317ms total)
TC3B4 023:135 JLINK_ReadMemEx(0x0201A2AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A2AC) - Data: 0B 00 00 00  returns 0x04 (0001ms, 1318ms total)
TC3B4 023:136 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0018ms, 1336ms total)
TC3B4 023:154 JLINK_ReadMemEx(0x00002364, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x00002340) -- Updating C cache (128 bytes @ 0x00002340) -- Read from C cache (60 bytes @ 0x00002364) - Data: 68 A0 FE F7 2F FA FE F7 99 FC 03 98 02 03 00 25 ...  returns 0x3C (0004ms, 1340ms total)
TC3B4 023:158 JLINK_ReadMemEx(0x00002364, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00002364) - Data: 68 A0  returns 0x02 (0000ms, 1340ms total)
TC3B4 023:158 JLINK_ReadMemEx(0x00002366, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00002366) - Data: FE F7  returns 0x02 (0000ms, 1340ms total)
TC3B4 023:159 JLINK_ReadMemEx(0x00002366, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00002366) - Data: FE F7  returns 0x02 (0000ms, 1340ms total)
TC3B4 023:159 JLINK_ReadMemEx(0x00002368, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00002368) - Data: 2F FA FE F7 99 FC 03 98 02 03 00 25 28 46 54 49 ...  returns 0x3C (0000ms, 1340ms total)
TC3B4 023:159 JLINK_ReadMemEx(0x00002368, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00002368) - Data: 2F FA  returns 0x02 (0000ms, 1340ms total)
TA994 023:740 JLINK_ReadMemEx(0x00002364, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00002364) - Data: 68 A0  returns 0x02 (0000ms, 1340ms total)
TA994 023:740 JLINK_Step() -- Read from C cache (2 bytes @ 0x00002364) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Simulated  returns 0x00 (0002ms, 1342ms total)
TA994 023:742 JLINK_ReadReg(R15 (PC))  returns 0x00002366 (0000ms, 1342ms total)
TA994 023:742 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 1342ms total)
TA994 023:742 JLINK_SetBPEx(Addr = 0x0000236A, Type = 0xFFFFFFF2)  returns 0x0000000D (0000ms, 1342ms total)
TA994 023:742 JLINK_SetBPEx(Addr = 0x000022B2, Type = 0xFFFFFFF2)  returns 0x0000000E (0000ms, 1342ms total)
TA994 023:742 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0010ms, 1352ms total)
TA994 023:852 JLINK_IsHalted()  returns TRUE (0008ms, 1360ms total)
TA994 023:860 JLINK_Halt()  returns 0x00 (0000ms, 1352ms total)
TA994 023:860 JLINK_IsHalted()  returns TRUE (0000ms, 1352ms total)
TA994 023:860 JLINK_IsHalted()  returns TRUE (0000ms, 1352ms total)
TA994 023:860 JLINK_IsHalted()  returns TRUE (0000ms, 1352ms total)
TA994 023:860 JLINK_ReadReg(R15 (PC))  returns 0x0000236A (0000ms, 1352ms total)
TA994 023:860 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 1352ms total)
TA994 023:860 JLINK_ClrBPEx(BPHandle = 0x0000000D)  returns 0x00 (0000ms, 1352ms total)
TA994 023:860 JLINK_ClrBPEx(BPHandle = 0x0000000E)  returns 0x00 (0000ms, 1352ms total)
TA994 023:860 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0001ms, 1353ms total)
TA994 023:861 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 1354ms total)
TA994 023:862 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0002ms, 1356ms total)
TA994 023:864 JLINK_ReadReg(R0)  returns 0x00000000 (0000ms, 1356ms total)
TA994 023:864 JLINK_ReadReg(R1)  returns 0x00000091 (0000ms, 1356ms total)
TA994 023:864 JLINK_ReadReg(R2)  returns 0x0201A294 (0000ms, 1356ms total)
TA994 023:864 JLINK_ReadReg(R3)  returns 0x0000310A (0000ms, 1356ms total)
TA994 023:864 JLINK_ReadReg(R4)  returns 0x0402D010 (0000ms, 1356ms total)
TA994 023:864 JLINK_ReadReg(R5)  returns 0x0201A294 (0000ms, 1356ms total)
TA994 023:864 JLINK_ReadReg(R6)  returns 0x000031CC (0000ms, 1356ms total)
TA994 023:864 JLINK_ReadReg(R7)  returns 0x00000000 (0000ms, 1356ms total)
TA994 023:864 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 1356ms total)
TA994 023:864 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 1356ms total)
TA994 023:864 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 1356ms total)
TA994 023:864 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 1356ms total)
TA994 023:864 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 1356ms total)
TA994 023:864 JLINK_ReadReg(R13 (SP))  returns 0x02029FE8 (0000ms, 1356ms total)
TA994 023:864 JLINK_ReadReg(R14)  returns 0x00002CAF (0000ms, 1356ms total)
TA994 023:864 JLINK_ReadReg(R15 (PC))  returns 0x0000236A (0000ms, 1356ms total)
TA994 023:864 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 1356ms total)
TA994 023:864 JLINK_ReadReg(MSP)  returns 0x02029FE8 (0000ms, 1356ms total)
TA994 023:864 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 1356ms total)
TA994 023:864 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 1356ms total)
TC3B4 023:864 JLINK_ReadMemEx(0x0201A296, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A296) - Data: BB BB  returns 0x02 (0001ms, 1357ms total)
TC3B4 023:866 JLINK_ReadMemEx(0x0201A2B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2B0) - Data: 00  returns 0x01 (0001ms, 1358ms total)
TC3B4 023:867 JLINK_ReadMemEx(0x0201A230, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A230) - Data: 00  returns 0x01 (0001ms, 1359ms total)
TC3B4 023:868 JLINK_ReadMemEx(0x0201A25C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A25C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1360ms total)
TC3B4 023:869 JLINK_ReadMemEx(0x0201A236, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A236) - Data: 00 00  returns 0x02 (0001ms, 1361ms total)
TC3B4 023:870 JLINK_ReadMemEx(0x0201A29C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A29C) - Data: 0C 00 00 00  returns 0x04 (0001ms, 1362ms total)
TC3B4 023:871 JLINK_ReadMemEx(0x0201A624, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A624) - Data: 00  returns 0x01 (0001ms, 1363ms total)
TC3B4 023:872 JLINK_ReadMemEx(0x0201A2C0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C0) - Data: 00  returns 0x01 (0001ms, 1364ms total)
TC3B4 023:873 JLINK_ReadMemEx(0x0201A2C1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C1) - Data: 00  returns 0x01 (0001ms, 1365ms total)
TC3B4 023:874 JLINK_ReadMemEx(0x0201A2C2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C2) - Data: 01  returns 0x01 (0001ms, 1366ms total)
TC3B4 023:875 JLINK_ReadMemEx(0x0201A2C3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C3) - Data: 01  returns 0x01 (0001ms, 1367ms total)
TC3B4 023:877 JLINK_ReadMemEx(0x0201A2AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A2AC) - Data: 0C 00 00 00  returns 0x04 (0001ms, 1368ms total)
TC3B4 023:878 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0017ms, 1385ms total)
TC3B4 023:896 JLINK_ReadMemEx(0x0000236A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00002340) -- Updating C cache (64 bytes @ 0x00002340) -- Read from C cache (2 bytes @ 0x0000236A) - Data: FE F7  returns 0x02 (0003ms, 1389ms total)
TC3B4 023:899 JLINK_ReadMemEx(0x0000236C, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00002380) -- Updating C cache (64 bytes @ 0x00002380) -- Read from C cache (60 bytes @ 0x0000236C) - Data: 99 FC 03 98 02 03 00 25 28 46 54 49 FF F7 D4 F9 ...  returns 0x3C (0002ms, 1391ms total)
TC3B4 023:901 JLINK_ReadMemEx(0x0000236C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000236C) - Data: 99 FC  returns 0x02 (0000ms, 1391ms total)
TC3B4 023:901 JLINK_ReadMemEx(0x0000236E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000236E) - Data: 03 98  returns 0x02 (0000ms, 1391ms total)
TC3B4 023:902 JLINK_ReadMemEx(0x00002370, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00002370) - Data: 02 03 00 25 28 46 54 49 FF F7 D4 F9 04 AE 02 23 ...  returns 0x3C (0000ms, 1391ms total)
TC3B4 023:902 JLINK_ReadMemEx(0x00002370, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00002370) - Data: 02 03  returns 0x02 (0000ms, 1391ms total)
TC3B4 023:902 JLINK_ReadMemEx(0x00002370, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00002370) - Data: 02 03 00 25 28 46 54 49 FF F7 D4 F9 04 AE 02 23 ...  returns 0x3C (0000ms, 1391ms total)
TC3B4 023:902 JLINK_ReadMemEx(0x00002370, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00002370) - Data: 02 03  returns 0x02 (0000ms, 1391ms total)
TC3B4 023:902 JLINK_ReadMemEx(0x00002372, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00002372) - Data: 00 25  returns 0x02 (0000ms, 1391ms total)
TA994 024:658 JLINK_ReadMemEx(0x0000236A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000236A) - Data: FE F7  returns 0x02 (0000ms, 1391ms total)
TA994 024:658 JLINK_SetBPEx(Addr = 0x0000236E, Type = 0xFFFFFFF2)  returns 0x0000000F (0000ms, 1391ms total)
TA994 024:658 JLINK_SetBPEx(Addr = 0x000022B2, Type = 0xFFFFFFF2)  returns 0x00000010 (0000ms, 1391ms total)
TA994 024:658 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) (0008ms, 1399ms total)
TA994 024:767 JLINK_IsHalted()  returns TRUE (0008ms, 1407ms total)
TA994 024:775 JLINK_Halt()  returns 0x00 (0000ms, 1399ms total)
TA994 024:775 JLINK_IsHalted()  returns TRUE (0000ms, 1399ms total)
TA994 024:775 JLINK_IsHalted()  returns TRUE (0000ms, 1399ms total)
TA994 024:775 JLINK_IsHalted()  returns TRUE (0000ms, 1399ms total)
TA994 024:775 JLINK_ReadReg(R15 (PC))  returns 0x0000236E (0000ms, 1399ms total)
TA994 024:775 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 1399ms total)
TA994 024:775 JLINK_ClrBPEx(BPHandle = 0x0000000F)  returns 0x00 (0000ms, 1399ms total)
TA994 024:775 JLINK_ClrBPEx(BPHandle = 0x00000010)  returns 0x00 (0000ms, 1399ms total)
TA994 024:776 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0001ms, 1400ms total)
TA994 024:777 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 1401ms total)
TA994 024:778 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0001ms, 1402ms total)
TA994 024:779 JLINK_ReadMemEx(0x0000236C, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x00002340) -- Updating C cache (128 bytes @ 0x00002340) -- Read from C cache (60 bytes @ 0x0000236C) - Data: 99 FC 03 98 02 03 00 25 28 46 54 49 FF F7 D4 F9 ...  returns 0x3C (0004ms, 1406ms total)
TA994 024:783 JLINK_ReadMemEx(0x0000236C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000236C) - Data: 99 FC  returns 0x02 (0000ms, 1406ms total)
TA994 024:783 JLINK_ReadMemEx(0x0000236E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000236E) - Data: 03 98  returns 0x02 (0000ms, 1406ms total)
TA994 024:783 JLINK_Step() -- Read from C cache (2 bytes @ 0x0000236E) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Not simulated -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C)  returns 0x00 (0013ms, 1419ms total)
TA994 024:796 JLINK_ReadReg(R15 (PC))  returns 0x00002370 (0000ms, 1419ms total)
TA994 024:796 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 1419ms total)
TA994 024:796 JLINK_Step() -- CPU_ReadMem(64 bytes @ 0x00002340) -- Updating C cache (64 bytes @ 0x00002340) -- Read from C cache (2 bytes @ 0x00002370) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Simulated  returns 0x00 (0004ms, 1423ms total)
TA994 024:800 JLINK_ReadReg(R15 (PC))  returns 0x00002372 (0000ms, 1423ms total)
TA994 024:800 JLINK_ReadReg(XPSR)  returns 0x01000000 (0000ms, 1423ms total)
TA994 024:800 JLINK_ReadMemEx(0x00002372, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00002372) - Data: 00 25  returns 0x02 (0000ms, 1423ms total)
TA994 024:800 JLINK_ReadMemEx(0x00002374, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00002380) -- Updating C cache (64 bytes @ 0x00002380) -- Read from C cache (60 bytes @ 0x00002374) - Data: 28 46 54 49 FF F7 D4 F9 04 AE 02 23 28 46 47 4D ...  returns 0x3C (0003ms, 1426ms total)
TA994 024:803 JLINK_ReadMemEx(0x00002374, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00002374) - Data: 28 46  returns 0x02 (0000ms, 1426ms total)
TA994 024:803 JLINK_Step() -- Read from C cache (2 bytes @ 0x00002372) -- Simulated  returns 0x00 (0000ms, 1426ms total)
TA994 024:803 JLINK_ReadReg(R15 (PC))  returns 0x00002374 (0000ms, 1426ms total)
TA994 024:803 JLINK_ReadReg(XPSR)  returns 0x41000000 (0000ms, 1426ms total)
TA994 024:803 JLINK_ReadReg(R0)  returns 0x00000001 (0000ms, 1426ms total)
TA994 024:803 JLINK_ReadReg(R1)  returns 0x0201A4C4 (0000ms, 1426ms total)
TA994 024:803 JLINK_ReadReg(R2)  returns 0x00001000 (0000ms, 1426ms total)
TA994 024:803 JLINK_ReadReg(R3)  returns 0x00000100 (0000ms, 1426ms total)
TA994 024:803 JLINK_ReadReg(R4)  returns 0x0402D010 (0000ms, 1426ms total)
TA994 024:803 JLINK_ReadReg(R5)  returns 0x00000000 (0000ms, 1426ms total)
TA994 024:803 JLINK_ReadReg(R6)  returns 0x000031CC (0000ms, 1426ms total)
TA994 024:803 JLINK_ReadReg(R7)  returns 0x00000000 (0000ms, 1426ms total)
TA994 024:803 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 1426ms total)
TA994 024:803 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 1426ms total)
TA994 024:803 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 1426ms total)
TA994 024:803 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 1426ms total)
TA994 024:803 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 1426ms total)
TA994 024:803 JLINK_ReadReg(R13 (SP))  returns 0x02029FE8 (0000ms, 1426ms total)
TA994 024:803 JLINK_ReadReg(R14)  returns 0x00000CCF (0000ms, 1426ms total)
TA994 024:803 JLINK_ReadReg(R15 (PC))  returns 0x00002374 (0000ms, 1426ms total)
TA994 024:803 JLINK_ReadReg(XPSR)  returns 0x41000000 (0000ms, 1426ms total)
TA994 024:803 JLINK_ReadReg(MSP)  returns 0x02029FE8 (0000ms, 1426ms total)
TA994 024:803 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 1426ms total)
TA994 024:803 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 1426ms total)
TC3B4 024:804 JLINK_ReadMemEx(0x0201A296, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A296) - Data: BB BB  returns 0x02 (0001ms, 1427ms total)
TC3B4 024:805 JLINK_ReadMemEx(0x0201A2B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2B0) - Data: 00  returns 0x01 (0001ms, 1428ms total)
TC3B4 024:806 JLINK_ReadMemEx(0x0201A230, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A230) - Data: 00  returns 0x01 (0001ms, 1429ms total)
TC3B4 024:807 JLINK_ReadMemEx(0x0201A25C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A25C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1430ms total)
TC3B4 024:808 JLINK_ReadMemEx(0x0201A236, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A236) - Data: 00 00  returns 0x02 (0001ms, 1431ms total)
TC3B4 024:809 JLINK_ReadMemEx(0x0201A29C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A29C) - Data: 0D 00 00 00  returns 0x04 (0001ms, 1432ms total)
TC3B4 024:810 JLINK_ReadMemEx(0x0201A624, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A624) - Data: 00  returns 0x01 (0002ms, 1434ms total)
TC3B4 024:812 JLINK_ReadMemEx(0x0201A2C0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C0) - Data: 00  returns 0x01 (0001ms, 1435ms total)
TC3B4 024:813 JLINK_ReadMemEx(0x0201A2C1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C1) - Data: 00  returns 0x01 (0001ms, 1436ms total)
TC3B4 024:814 JLINK_ReadMemEx(0x0201A2C2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C2) - Data: 01  returns 0x01 (0001ms, 1437ms total)
TC3B4 024:815 JLINK_ReadMemEx(0x0201A2C3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C3) - Data: 01  returns 0x01 (0001ms, 1438ms total)
TC3B4 024:816 JLINK_ReadMemEx(0x0201A2AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A2AC) - Data: 0D 00 00 00  returns 0x04 (0001ms, 1439ms total)
TC3B4 024:817 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0019ms, 1458ms total)
TC3B4 024:836 JLINK_ReadMemEx(0x00002374, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00002374) - Data: 28 46 54 49 FF F7 D4 F9 04 AE 02 23 28 46 47 4D ...  returns 0x3C (0000ms, 1458ms total)
TC3B4 024:836 JLINK_ReadMemEx(0x00002374, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00002374) - Data: 28 46  returns 0x02 (0000ms, 1458ms total)
TC3B4 024:836 JLINK_ReadMemEx(0x00002376, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00002376) - Data: 54 49  returns 0x02 (0000ms, 1458ms total)
TC3B4 024:836 JLINK_ReadMemEx(0x00002376, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00002376) - Data: 54 49  returns 0x02 (0000ms, 1458ms total)
TC3B4 024:836 JLINK_ReadMemEx(0x00002378, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00002378) - Data: FF F7 D4 F9 04 AE 02 23 28 46 47 4D 21 46 32 46 ...  returns 0x3C (0000ms, 1458ms total)
TC3B4 024:836 JLINK_ReadMemEx(0x00002378, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00002378) - Data: FF F7  returns 0x02 (0000ms, 1458ms total)
TC3B4 024:836 JLINK_ReadMemEx(0x00002378, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00002378) - Data: FF F7 D4 F9 04 AE 02 23 28 46 47 4D 21 46 32 46 ...  returns 0x3C (0000ms, 1458ms total)
TC3B4 024:836 JLINK_ReadMemEx(0x00002378, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00002378) - Data: FF F7  returns 0x02 (0000ms, 1458ms total)
TC3B4 024:836 JLINK_ReadMemEx(0x0000237A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000237A) - Data: D4 F9  returns 0x02 (0000ms, 1458ms total)
TC3B4 024:836 JLINK_ReadMemEx(0x0000237C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000237C) - Data: 04 AE 02 23 28 46 47 4D 21 46 32 46 FF F7 54 FB ...  returns 0x3C (0001ms, 1459ms total)
TC3B4 024:837 JLINK_ReadMemEx(0x0000237C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000237C) - Data: 04 AE  returns 0x02 (0000ms, 1459ms total)
TC3B4 024:837 JLINK_ReadMemEx(0x0000237E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000237E) - Data: 02 23  returns 0x02 (0000ms, 1459ms total)
TA994 025:903 JLINK_ReadMemEx(0x00002374, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00002374) - Data: 28 46  returns 0x02 (0000ms, 1459ms total)
TA994 025:903 JLINK_Step() -- Read from C cache (2 bytes @ 0x00002374) -- Simulated  returns 0x00 (0001ms, 1460ms total)
TA994 025:904 JLINK_ReadReg(R15 (PC))  returns 0x00002376 (0000ms, 1460ms total)
TA994 025:904 JLINK_ReadReg(XPSR)  returns 0x41000000 (0000ms, 1460ms total)
TA994 025:904 JLINK_Step() -- Read from C cache (2 bytes @ 0x00002376) -- CPU_ReadMem(64 bytes @ 0x000024C0) -- Updating C cache (64 bytes @ 0x000024C0) -- Read from C cache (4 bytes @ 0x000024C8) -- Simulated  returns 0x00 (0003ms, 1463ms total)
TA994 025:907 JLINK_ReadReg(R15 (PC))  returns 0x00002378 (0000ms, 1463ms total)
TA994 025:907 JLINK_ReadReg(XPSR)  returns 0x41000000 (0000ms, 1463ms total)
TA994 025:907 JLINK_SetBPEx(Addr = 0x0000237C, Type = 0xFFFFFFF2)  returns 0x00000011 (0000ms, 1463ms total)
TA994 025:907 JLINK_SetBPEx(Addr = 0x000022B2, Type = 0xFFFFFFF2)  returns 0x00000012 (0000ms, 1463ms total)
TA994 025:907 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0011ms, 1474ms total)
TA994 026:019 JLINK_IsHalted()  returns TRUE (0008ms, 1482ms total)
TA994 026:027 JLINK_Halt()  returns 0x00 (0000ms, 1474ms total)
TA994 026:027 JLINK_IsHalted()  returns TRUE (0000ms, 1474ms total)
TA994 026:027 JLINK_IsHalted()  returns TRUE (0000ms, 1474ms total)
TA994 026:027 JLINK_IsHalted()  returns TRUE (0000ms, 1474ms total)
TA994 026:027 JLINK_ReadReg(R15 (PC))  returns 0x0000237C (0000ms, 1474ms total)
TA994 026:027 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 1474ms total)
TA994 026:027 JLINK_ClrBPEx(BPHandle = 0x00000011)  returns 0x00 (0000ms, 1474ms total)
TA994 026:027 JLINK_ClrBPEx(BPHandle = 0x00000012)  returns 0x00 (0000ms, 1474ms total)
TA994 026:027 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0001ms, 1475ms total)
TA994 026:028 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 1476ms total)
TA994 026:029 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0001ms, 1477ms total)
TA994 026:030 JLINK_ReadMemEx(0x0000237A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00002340) -- Updating C cache (64 bytes @ 0x00002340) -- Read from C cache (2 bytes @ 0x0000237A) - Data: D4 F9  returns 0x02 (0003ms, 1480ms total)
TA994 026:033 JLINK_ReadMemEx(0x0000237C, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00002380) -- Updating C cache (64 bytes @ 0x00002380) -- Read from C cache (60 bytes @ 0x0000237C) - Data: 04 AE 02 23 28 46 47 4D 21 46 32 46 FF F7 54 FB ...  returns 0x3C (0003ms, 1483ms total)
TA994 026:036 JLINK_ReadMemEx(0x0000237C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000237C) - Data: 04 AE  returns 0x02 (0000ms, 1483ms total)
TA994 026:036 JLINK_Step() -- Read from C cache (2 bytes @ 0x0000237C) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Simulated  returns 0x00 (0001ms, 1484ms total)
TA994 026:037 JLINK_ReadReg(R15 (PC))  returns 0x0000237E (0000ms, 1484ms total)
TA994 026:037 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 1484ms total)
TA994 026:037 JLINK_ReadMemEx(0x0000237E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000237E) - Data: 02 23  returns 0x02 (0000ms, 1484ms total)
TA994 026:037 JLINK_ReadMemEx(0x00002380, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00002380) - Data: 28 46 47 4D 21 46 32 46 FF F7 54 FB 30 88 28 80 ...  returns 0x3C (0000ms, 1484ms total)
TA994 026:037 JLINK_ReadMemEx(0x00002380, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00002380) - Data: 28 46  returns 0x02 (0000ms, 1484ms total)
TA994 026:037 JLINK_Step() -- Read from C cache (2 bytes @ 0x0000237E) -- Simulated  returns 0x00 (0000ms, 1484ms total)
TA994 026:037 JLINK_ReadReg(R15 (PC))  returns 0x00002380 (0000ms, 1484ms total)
TA994 026:037 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 1484ms total)
TA994 026:037 JLINK_ReadReg(R0)  returns 0x00000000 (0000ms, 1484ms total)
TA994 026:037 JLINK_ReadReg(R1)  returns 0xEB930000 (0000ms, 1484ms total)
TA994 026:037 JLINK_ReadReg(R2)  returns 0x00000002 (0000ms, 1484ms total)
TA994 026:037 JLINK_ReadReg(R3)  returns 0x00000002 (0000ms, 1484ms total)
TA994 026:037 JLINK_ReadReg(R4)  returns 0x0402D010 (0000ms, 1484ms total)
TA994 026:037 JLINK_ReadReg(R5)  returns 0x00000000 (0000ms, 1484ms total)
TA994 026:037 JLINK_ReadReg(R6)  returns 0x02029FF8 (0000ms, 1484ms total)
TA994 026:037 JLINK_ReadReg(R7)  returns 0x00000000 (0000ms, 1484ms total)
TA994 026:037 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 1484ms total)
TA994 026:037 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 1484ms total)
TA994 026:037 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 1484ms total)
TA994 026:037 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 1484ms total)
TA994 026:037 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 1484ms total)
TA994 026:037 JLINK_ReadReg(R13 (SP))  returns 0x02029FE8 (0000ms, 1484ms total)
TA994 026:037 JLINK_ReadReg(R14)  returns 0x000017AF (0000ms, 1484ms total)
TA994 026:037 JLINK_ReadReg(R15 (PC))  returns 0x00002380 (0000ms, 1484ms total)
TA994 026:037 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 1484ms total)
TA994 026:037 JLINK_ReadReg(MSP)  returns 0x02029FE8 (0000ms, 1484ms total)
TA994 026:037 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 1484ms total)
TA994 026:037 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 1484ms total)
TC3B4 026:038 JLINK_ReadMemEx(0x02029FF8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02029FF8) - Data: BB BB  returns 0x02 (0001ms, 1485ms total)
TC3B4 026:039 JLINK_ReadMemEx(0x02029FF8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02029FF8) - Data: BB BB  returns 0x02 (0001ms, 1486ms total)
TC3B4 026:040 JLINK_ReadMemEx(0x0201A296, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A296) - Data: BB BB  returns 0x02 (0001ms, 1487ms total)
TC3B4 026:041 JLINK_ReadMemEx(0x0201A2B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2B0) - Data: 00  returns 0x01 (0001ms, 1488ms total)
TC3B4 026:042 JLINK_ReadMemEx(0x0201A230, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A230) - Data: 00  returns 0x01 (0002ms, 1490ms total)
TC3B4 026:044 JLINK_ReadMemEx(0x0201A25C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A25C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1491ms total)
TC3B4 026:045 JLINK_ReadMemEx(0x0201A236, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A236) - Data: 00 00  returns 0x02 (0001ms, 1492ms total)
TC3B4 026:046 JLINK_ReadMemEx(0x0201A29C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A29C) - Data: 0E 00 00 00  returns 0x04 (0001ms, 1493ms total)
TC3B4 026:047 JLINK_ReadMemEx(0x0201A624, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A624) - Data: 00  returns 0x01 (0001ms, 1494ms total)
TC3B4 026:048 JLINK_ReadMemEx(0x0201A2C0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C0) - Data: 00  returns 0x01 (0001ms, 1495ms total)
TC3B4 026:049 JLINK_ReadMemEx(0x0201A2C1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C1) - Data: 00  returns 0x01 (0001ms, 1496ms total)
TC3B4 026:050 JLINK_ReadMemEx(0x0201A2C2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C2) - Data: 01  returns 0x01 (0002ms, 1498ms total)
TC3B4 026:052 JLINK_ReadMemEx(0x0201A2C3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C3) - Data: 01  returns 0x01 (0001ms, 1499ms total)
TC3B4 026:053 JLINK_ReadMemEx(0x0201A2AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A2AC) - Data: 0E 00 00 00  returns 0x04 (0001ms, 1500ms total)
TC3B4 026:054 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0019ms, 1519ms total)
TC3B4 026:073 JLINK_ReadMemEx(0x00002380, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00002380) - Data: 28 46 47 4D 21 46 32 46 FF F7 54 FB 30 88 28 80 ...  returns 0x3C (0000ms, 1519ms total)
TC3B4 026:073 JLINK_ReadMemEx(0x00002380, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00002380) - Data: 28 46  returns 0x02 (0000ms, 1519ms total)
TC3B4 026:073 JLINK_ReadMemEx(0x00002382, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00002382) - Data: 47 4D  returns 0x02 (0000ms, 1519ms total)
TC3B4 026:073 JLINK_ReadMemEx(0x00002382, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00002382) - Data: 47 4D  returns 0x02 (0000ms, 1519ms total)
TC3B4 026:073 JLINK_ReadMemEx(0x00002384, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00002384) - Data: 21 46 32 46 FF F7 54 FB 30 88 28 80 4F 49 88 42 ...  returns 0x3C (0000ms, 1519ms total)
TC3B4 026:073 JLINK_ReadMemEx(0x00002384, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00002384) - Data: 21 46  returns 0x02 (0000ms, 1519ms total)
TC3B4 026:073 JLINK_ReadMemEx(0x00002384, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00002384) - Data: 21 46 32 46 FF F7 54 FB 30 88 28 80 4F 49 88 42 ...  returns 0x3C (0000ms, 1519ms total)
TC3B4 026:073 JLINK_ReadMemEx(0x00002384, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00002384) - Data: 21 46  returns 0x02 (0000ms, 1519ms total)
TC3B4 026:073 JLINK_ReadMemEx(0x00002386, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00002386) - Data: 32 46  returns 0x02 (0000ms, 1519ms total)
TC3B4 026:073 JLINK_ReadMemEx(0x00002386, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00002386) - Data: 32 46  returns 0x02 (0000ms, 1519ms total)
TC3B4 026:073 JLINK_ReadMemEx(0x00002388, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x000023C0) -- Updating C cache (64 bytes @ 0x000023C0) -- Read from C cache (60 bytes @ 0x00002388) - Data: FF F7 54 FB 30 88 28 80 4F 49 88 42 12 D1 03 98 ...  returns 0x3C (0003ms, 1522ms total)
TC3B4 026:076 JLINK_ReadMemEx(0x00002388, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00002388) - Data: FF F7  returns 0x02 (0000ms, 1522ms total)
TA994 026:710 JLINK_ReadMemEx(0x00002380, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00002380) - Data: 28 46  returns 0x02 (0000ms, 1522ms total)
TA994 026:710 JLINK_Step() -- Read from C cache (2 bytes @ 0x00002380) -- Simulated  returns 0x00 (0001ms, 1523ms total)
TA994 026:711 JLINK_ReadReg(R15 (PC))  returns 0x00002382 (0000ms, 1523ms total)
TA994 026:711 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 1523ms total)
TA994 026:711 JLINK_Step() -- Read from C cache (2 bytes @ 0x00002382) -- CPU_ReadMem(64 bytes @ 0x00002480) -- Updating C cache (64 bytes @ 0x00002480) -- Read from C cache (4 bytes @ 0x000024A0) -- Simulated  returns 0x00 (0003ms, 1526ms total)
TA994 026:714 JLINK_ReadReg(R15 (PC))  returns 0x00002384 (0000ms, 1526ms total)
TA994 026:714 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 1526ms total)
TA994 026:714 JLINK_Step() -- Read from C cache (2 bytes @ 0x00002384) -- Simulated  returns 0x00 (0000ms, 1526ms total)
TA994 026:714 JLINK_ReadReg(R15 (PC))  returns 0x00002386 (0000ms, 1526ms total)
TA994 026:714 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 1526ms total)
TA994 026:714 JLINK_Step() -- Read from C cache (2 bytes @ 0x00002386) -- Simulated  returns 0x00 (0000ms, 1526ms total)
TA994 026:714 JLINK_ReadReg(R15 (PC))  returns 0x00002388 (0000ms, 1526ms total)
TA994 026:714 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 1526ms total)
TA994 026:714 JLINK_ReadMemEx(0x00002388, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00002388) - Data: FF F7 54 FB 30 88 28 80 4F 49 88 42 12 D1 03 98 ...  returns 0x3C (0000ms, 1526ms total)
TA994 026:714 JLINK_ReadMemEx(0x00002388, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00002388) - Data: FF F7  returns 0x02 (0000ms, 1526ms total)
TA994 026:714 JLINK_ReadMemEx(0x0000238A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000238A) - Data: 54 FB  returns 0x02 (0000ms, 1526ms total)
TA994 026:714 JLINK_SetBPEx(Addr = 0x0000238C, Type = 0xFFFFFFF2)  returns 0x00000013 (0000ms, 1526ms total)
TA994 026:714 JLINK_SetBPEx(Addr = 0x000022B2, Type = 0xFFFFFFF2)  returns 0x00000014 (0000ms, 1526ms total)
TA994 026:714 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0011ms, 1537ms total)
TA994 026:826 JLINK_IsHalted()  returns TRUE (0008ms, 1545ms total)
TA994 026:834 JLINK_Halt()  returns 0x00 (0000ms, 1537ms total)
TA994 026:834 JLINK_IsHalted()  returns TRUE (0000ms, 1537ms total)
TA994 026:834 JLINK_IsHalted()  returns TRUE (0000ms, 1537ms total)
TA994 026:834 JLINK_IsHalted()  returns TRUE (0000ms, 1537ms total)
TA994 026:834 JLINK_ReadReg(R15 (PC))  returns 0x0000238C (0000ms, 1537ms total)
TA994 026:834 JLINK_ReadReg(XPSR)  returns 0x41000000 (0000ms, 1537ms total)
TA994 026:834 JLINK_ClrBPEx(BPHandle = 0x00000013)  returns 0x00 (0000ms, 1537ms total)
TA994 026:834 JLINK_ClrBPEx(BPHandle = 0x00000014)  returns 0x00 (0000ms, 1537ms total)
TA994 026:834 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0001ms, 1538ms total)
TA994 026:835 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 1539ms total)
TA994 026:836 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0001ms, 1540ms total)
TA994 026:838 JLINK_ReadReg(R0)  returns 0x00000000 (0000ms, 1540ms total)
TA994 026:838 JLINK_ReadReg(R1)  returns 0xEB930000 (0000ms, 1540ms total)
TA994 026:838 JLINK_ReadReg(R2)  returns 0x00000002 (0000ms, 1540ms total)
TA994 026:838 JLINK_ReadReg(R3)  returns 0x00000002 (0000ms, 1540ms total)
TA994 026:838 JLINK_ReadReg(R4)  returns 0x0402D010 (0000ms, 1540ms total)
TA994 026:838 JLINK_ReadReg(R5)  returns 0x0201A294 (0000ms, 1540ms total)
TA994 026:838 JLINK_ReadReg(R6)  returns 0x02029FF8 (0000ms, 1540ms total)
TA994 026:838 JLINK_ReadReg(R7)  returns 0x00000000 (0000ms, 1540ms total)
TA994 026:838 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 1540ms total)
TA994 026:838 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 1540ms total)
TA994 026:838 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 1540ms total)
TA994 026:838 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 1540ms total)
TA994 026:838 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 1540ms total)
TA994 026:838 JLINK_ReadReg(R13 (SP))  returns 0x02029FE8 (0000ms, 1540ms total)
TA994 026:838 JLINK_ReadReg(R14)  returns 0x000026D9 (0000ms, 1540ms total)
TA994 026:838 JLINK_ReadReg(R15 (PC))  returns 0x0000238C (0000ms, 1540ms total)
TA994 026:838 JLINK_ReadReg(XPSR)  returns 0x41000000 (0000ms, 1540ms total)
TA994 026:838 JLINK_ReadReg(MSP)  returns 0x02029FE8 (0000ms, 1540ms total)
TA994 026:838 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 1540ms total)
TA994 026:838 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 1540ms total)
TC3B4 026:838 JLINK_ReadMemEx(0x02029FF8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02029FF8) - Data: FF FF  returns 0x02 (0001ms, 1541ms total)
TC3B4 026:839 JLINK_ReadMemEx(0x02029FF8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02029FF8) - Data: FF FF  returns 0x02 (0001ms, 1542ms total)
TC3B4 026:840 JLINK_ReadMemEx(0x0201A296, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A296) - Data: BB BB  returns 0x02 (0002ms, 1544ms total)
TC3B4 026:842 JLINK_ReadMemEx(0x0201A2B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2B0) - Data: 00  returns 0x01 (0001ms, 1545ms total)
TC3B4 026:843 JLINK_ReadMemEx(0x0201A230, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A230) - Data: 00  returns 0x01 (0001ms, 1546ms total)
TC3B4 026:844 JLINK_ReadMemEx(0x0201A25C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A25C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1547ms total)
TC3B4 026:845 JLINK_ReadMemEx(0x0201A236, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A236) - Data: 00 00  returns 0x02 (0001ms, 1548ms total)
TC3B4 026:846 JLINK_ReadMemEx(0x0201A29C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A29C) - Data: 0F 00 00 00  returns 0x04 (0001ms, 1549ms total)
TC3B4 026:847 JLINK_ReadMemEx(0x0201A624, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A624) - Data: 00  returns 0x01 (0001ms, 1550ms total)
TC3B4 026:848 JLINK_ReadMemEx(0x0201A2C0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C0) - Data: 00  returns 0x01 (0001ms, 1551ms total)
TC3B4 026:849 JLINK_ReadMemEx(0x0201A2C1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C1) - Data: 00  returns 0x01 (0002ms, 1553ms total)
TC3B4 026:851 JLINK_ReadMemEx(0x0201A2C2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C2) - Data: 01  returns 0x01 (0001ms, 1554ms total)
TC3B4 026:852 JLINK_ReadMemEx(0x0201A2C3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C3) - Data: 01  returns 0x01 (0001ms, 1555ms total)
TC3B4 026:853 JLINK_ReadMemEx(0x0201A2AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A2AC) - Data: 0F 00 00 00  returns 0x04 (0001ms, 1556ms total)
TC3B4 026:854 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0018ms, 1574ms total)
TC3B4 026:872 JLINK_ReadMemEx(0x0000238C, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x00002380) -- Updating C cache (128 bytes @ 0x00002380) -- Read from C cache (60 bytes @ 0x0000238C) - Data: 30 88 28 80 4F 49 88 42 12 D1 03 98 00 F0 20 FA ...  returns 0x3C (0004ms, 1578ms total)
TC3B4 026:876 JLINK_ReadMemEx(0x0000238C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000238C) - Data: 30 88  returns 0x02 (0000ms, 1578ms total)
TC3B4 026:876 JLINK_ReadMemEx(0x0000238E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000238E) - Data: 28 80  returns 0x02 (0000ms, 1578ms total)
TC3B4 026:876 JLINK_ReadMemEx(0x0000238E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000238E) - Data: 28 80  returns 0x02 (0000ms, 1578ms total)
TC3B4 026:876 JLINK_ReadMemEx(0x00002390, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00002390) - Data: 4F 49 88 42 12 D1 03 98 00 F0 20 FA C8 20 FE F7 ...  returns 0x3C (0000ms, 1578ms total)
TC3B4 026:876 JLINK_ReadMemEx(0x00002390, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00002390) - Data: 4F 49  returns 0x02 (0000ms, 1578ms total)
TA994 027:557 JLINK_ReadMemEx(0x0000238C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000238C) - Data: 30 88  returns 0x02 (0000ms, 1579ms total)
TA994 027:557 JLINK_Step() -- Read from C cache (2 bytes @ 0x0000238C) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Not simulated -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C)  returns 0x00 (0014ms, 1593ms total)
TA994 027:571 JLINK_ReadReg(R15 (PC))  returns 0x0000238E (0000ms, 1593ms total)
TA994 027:571 JLINK_ReadReg(XPSR)  returns 0x41000000 (0000ms, 1593ms total)
TA994 027:571 JLINK_Step() -- CPU_ReadMem(64 bytes @ 0x00002380) -- Updating C cache (64 bytes @ 0x00002380) -- Read from C cache (2 bytes @ 0x0000238E) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Not simulated  returns 0x00 (0013ms, 1606ms total)
TA994 027:584 JLINK_ReadReg(R15 (PC))  returns 0x00002390 (0000ms, 1606ms total)
TA994 027:584 JLINK_ReadReg(XPSR)  returns 0x41000000 (0000ms, 1606ms total)
TA994 027:584 JLINK_ReadReg(R0)  returns 0x0000FFFF (0000ms, 1606ms total)
TA994 027:584 JLINK_ReadReg(R1)  returns 0xEB930000 (0000ms, 1606ms total)
TA994 027:584 JLINK_ReadReg(R2)  returns 0x00000002 (0000ms, 1606ms total)
TA994 027:584 JLINK_ReadReg(R3)  returns 0x00000002 (0000ms, 1606ms total)
TA994 027:584 JLINK_ReadReg(R4)  returns 0x0402D010 (0000ms, 1606ms total)
TA994 027:584 JLINK_ReadReg(R5)  returns 0x0201A294 (0001ms, 1607ms total)
TA994 027:585 JLINK_ReadReg(R6)  returns 0x02029FF8 (0000ms, 1607ms total)
TA994 027:585 JLINK_ReadReg(R7)  returns 0x00000000 (0000ms, 1607ms total)
TA994 027:585 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 1607ms total)
TA994 027:585 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 1607ms total)
TA994 027:585 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 1607ms total)
TA994 027:585 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 1607ms total)
TA994 027:585 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 1607ms total)
TA994 027:585 JLINK_ReadReg(R13 (SP))  returns 0x02029FE8 (0000ms, 1607ms total)
TA994 027:585 JLINK_ReadReg(R14)  returns 0x000026D9 (0000ms, 1607ms total)
TA994 027:585 JLINK_ReadReg(R15 (PC))  returns 0x00002390 (0000ms, 1607ms total)
TA994 027:585 JLINK_ReadReg(XPSR)  returns 0x41000000 (0000ms, 1607ms total)
TA994 027:585 JLINK_ReadReg(MSP)  returns 0x02029FE8 (0000ms, 1607ms total)
TA994 027:585 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 1607ms total)
TA994 027:585 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 1607ms total)
TC3B4 027:585 JLINK_ReadMemEx(0x0201A296, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A296) - Data: BB BB  returns 0x02 (0001ms, 1608ms total)
TC3B4 027:586 JLINK_ReadMemEx(0x0201A2B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2B0) - Data: 00  returns 0x01 (0001ms, 1609ms total)
TC3B4 027:587 JLINK_ReadMemEx(0x0201A230, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A230) - Data: 00  returns 0x01 (0002ms, 1611ms total)
TC3B4 027:589 JLINK_ReadMemEx(0x0201A25C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A25C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1612ms total)
TC3B4 027:590 JLINK_ReadMemEx(0x0201A236, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A236) - Data: 00 00  returns 0x02 (0001ms, 1613ms total)
TC3B4 027:591 JLINK_ReadMemEx(0x0201A29C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A29C) - Data: 0F 00 00 00  returns 0x04 (0001ms, 1614ms total)
TC3B4 027:592 JLINK_ReadMemEx(0x0201A624, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A624) - Data: 00  returns 0x01 (0001ms, 1615ms total)
TC3B4 027:593 JLINK_ReadMemEx(0x0201A2C0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C0) - Data: 00  returns 0x01 (0001ms, 1616ms total)
TC3B4 027:594 JLINK_ReadMemEx(0x0201A2C1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C1) - Data: 00  returns 0x01 (0001ms, 1617ms total)
TC3B4 027:595 JLINK_ReadMemEx(0x0201A2C2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C2) - Data: 01  returns 0x01 (0001ms, 1618ms total)
TC3B4 027:596 JLINK_ReadMemEx(0x0201A2C3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C3) - Data: 01  returns 0x01 (0002ms, 1620ms total)
TC3B4 027:598 JLINK_ReadMemEx(0x0201A2AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A2AC) - Data: 0F 00 00 00  returns 0x04 (0001ms, 1621ms total)
TC3B4 027:599 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0017ms, 1638ms total)
TC3B4 027:617 JLINK_ReadMemEx(0x00002390, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x00002380) -- Updating C cache (128 bytes @ 0x00002380) -- Read from C cache (60 bytes @ 0x00002390) - Data: 4F 49 88 42 12 D1 03 98 00 F0 20 FA C8 20 FE F7 ...  returns 0x3C (0004ms, 1643ms total)
TC3B4 027:621 JLINK_ReadMemEx(0x00002390, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00002390) - Data: 4F 49  returns 0x02 (0000ms, 1643ms total)
TC3B4 027:621 JLINK_ReadMemEx(0x00002392, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00002392) - Data: 88 42  returns 0x02 (0000ms, 1643ms total)
TC3B4 027:621 JLINK_ReadMemEx(0x00002392, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00002392) - Data: 88 42  returns 0x02 (0000ms, 1643ms total)
TC3B4 027:621 JLINK_ReadMemEx(0x00002394, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00002394) - Data: 12 D1 03 98 00 F0 20 FA C8 20 FE F7 2F FF 15 20 ...  returns 0x3C (0000ms, 1643ms total)
TC3B4 027:621 JLINK_ReadMemEx(0x00002394, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00002394) - Data: 12 D1  returns 0x02 (0000ms, 1643ms total)
TC3B4 027:621 JLINK_ReadMemEx(0x00002394, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00002394) - Data: 12 D1 03 98 00 F0 20 FA C8 20 FE F7 2F FF 15 20 ...  returns 0x3C (0000ms, 1643ms total)
TC3B4 027:621 JLINK_ReadMemEx(0x00002394, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00002394) - Data: 12 D1  returns 0x02 (0000ms, 1643ms total)
TC3B4 027:621 JLINK_ReadMemEx(0x00002396, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00002396) - Data: 03 98  returns 0x02 (0000ms, 1643ms total)
TA994 028:203 JLINK_ReadMemEx(0x00002390, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00002390) - Data: 4F 49  returns 0x02 (0000ms, 1643ms total)
TA994 028:203 JLINK_Step() -- Read from C cache (2 bytes @ 0x00002390) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- CPU_ReadMem(64 bytes @ 0x000024C0) -- Updating C cache (64 bytes @ 0x000024C0) -- Read from C cache (4 bytes @ 0x000024D0) -- Simulated  returns 0x00 (0004ms, 1647ms total)
TA994 028:207 JLINK_ReadReg(R15 (PC))  returns 0x00002392 (0001ms, 1648ms total)
TA994 028:208 JLINK_ReadReg(XPSR)  returns 0x41000000 (0000ms, 1648ms total)
TA994 028:208 JLINK_Step() -- Read from C cache (2 bytes @ 0x00002392) -- Simulated  returns 0x00 (0000ms, 1648ms total)
TA994 028:208 JLINK_ReadReg(R15 (PC))  returns 0x00002394 (0000ms, 1648ms total)
TA994 028:208 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 1648ms total)
TA994 028:208 JLINK_Step() -- Read from C cache (2 bytes @ 0x00002394) -- Simulated  returns 0x00 (0000ms, 1648ms total)
TA994 028:208 JLINK_ReadReg(R15 (PC))  returns 0x000023BC (0000ms, 1648ms total)
TA994 028:208 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 1648ms total)
TA994 028:208 JLINK_ReadReg(R0)  returns 0x0000FFFF (0000ms, 1648ms total)
TA994 028:208 JLINK_ReadReg(R1)  returns 0x0000BBBB (0000ms, 1648ms total)
TA994 028:208 JLINK_ReadReg(R2)  returns 0x00000002 (0000ms, 1648ms total)
TA994 028:208 JLINK_ReadReg(R3)  returns 0x00000002 (0000ms, 1648ms total)
TA994 028:208 JLINK_ReadReg(R4)  returns 0x0402D010 (0000ms, 1648ms total)
TA994 028:208 JLINK_ReadReg(R5)  returns 0x0201A294 (0000ms, 1648ms total)
TA994 028:208 JLINK_ReadReg(R6)  returns 0x02029FF8 (0000ms, 1648ms total)
TA994 028:208 JLINK_ReadReg(R7)  returns 0x00000000 (0000ms, 1648ms total)
TA994 028:208 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 1648ms total)
TA994 028:208 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 1648ms total)
TA994 028:208 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 1648ms total)
TA994 028:208 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 1648ms total)
TA994 028:208 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 1648ms total)
TA994 028:208 JLINK_ReadReg(R13 (SP))  returns 0x02029FE8 (0000ms, 1648ms total)
TA994 028:208 JLINK_ReadReg(R14)  returns 0x000026D9 (0000ms, 1648ms total)
TA994 028:208 JLINK_ReadReg(R15 (PC))  returns 0x000023BC (0000ms, 1648ms total)
TA994 028:208 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 1648ms total)
TA994 028:208 JLINK_ReadReg(MSP)  returns 0x02029FE8 (0000ms, 1648ms total)
TA994 028:208 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 1648ms total)
TA994 028:208 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 1648ms total)
TC3B4 028:209 JLINK_ReadMemEx(0x0201A296, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A296) - Data: BB BB  returns 0x02 (0001ms, 1649ms total)
TC3B4 028:210 JLINK_ReadMemEx(0x0201A2B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2B0) - Data: 00  returns 0x01 (0001ms, 1650ms total)
TC3B4 028:211 JLINK_ReadMemEx(0x0201A230, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A230) - Data: 00  returns 0x01 (0001ms, 1651ms total)
TC3B4 028:212 JLINK_ReadMemEx(0x0201A25C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A25C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1652ms total)
TC3B4 028:213 JLINK_ReadMemEx(0x0201A236, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A236) - Data: 00 00  returns 0x02 (0001ms, 1653ms total)
TC3B4 028:214 JLINK_ReadMemEx(0x0201A29C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A29C) - Data: 0F 00 00 00  returns 0x04 (0001ms, 1654ms total)
TC3B4 028:215 JLINK_ReadMemEx(0x0201A624, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A624) - Data: 00  returns 0x01 (0001ms, 1655ms total)
TC3B4 028:216 JLINK_ReadMemEx(0x0201A2C0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C0) - Data: 00  returns 0x01 (0001ms, 1656ms total)
TC3B4 028:217 JLINK_ReadMemEx(0x0201A2C1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C1) - Data: 00  returns 0x01 (0002ms, 1658ms total)
TC3B4 028:219 JLINK_ReadMemEx(0x0201A2C2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C2) - Data: 01  returns 0x01 (0001ms, 1659ms total)
TC3B4 028:220 JLINK_ReadMemEx(0x0201A2C3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C3) - Data: 01  returns 0x01 (0001ms, 1660ms total)
TC3B4 028:221 JLINK_ReadMemEx(0x0201A2AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A2AC) - Data: 0F 00 00 00  returns 0x04 (0001ms, 1661ms total)
TC3B4 028:222 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0018ms, 1679ms total)
TC3B4 028:240 JLINK_ReadMemEx(0x000023BC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000023BC) - Data: 56 A0 FE F7 03 FA 15 20 42 03 00 24 20 46 3E 49 ...  returns 0x3C (0000ms, 1679ms total)
TC3B4 028:240 JLINK_ReadMemEx(0x000023BC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000023BC) - Data: 56 A0  returns 0x02 (0000ms, 1679ms total)
TC3B4 028:240 JLINK_ReadMemEx(0x000023BE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000023BE) - Data: FE F7  returns 0x02 (0000ms, 1679ms total)
TC3B4 028:240 JLINK_ReadMemEx(0x000023BE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000023BE) - Data: FE F7  returns 0x02 (0000ms, 1679ms total)
TC3B4 028:240 JLINK_ReadMemEx(0x000023C0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000023C0) - Data: 03 FA 15 20 42 03 00 24 20 46 3E 49 FF F7 AA F9 ...  returns 0x3C (0000ms, 1679ms total)
TC3B4 028:240 JLINK_ReadMemEx(0x000023C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000023C0) - Data: 03 FA  returns 0x02 (0000ms, 1679ms total)
TC3B4 028:240 JLINK_ReadMemEx(0x000023C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000023C2) - Data: 15 20  returns 0x02 (0000ms, 1679ms total)
TC3B4 028:240 JLINK_ReadMemEx(0x000023C4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000023C4) - Data: 42 03 00 24 20 46 3E 49 FF F7 AA F9 28 61 00 28 ...  returns 0x3C (0000ms, 1679ms total)
TC3B4 028:240 JLINK_ReadMemEx(0x000023C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000023C4) - Data: 42 03  returns 0x02 (0000ms, 1679ms total)
TC3B4 028:240 JLINK_ReadMemEx(0x000023C4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000023C4) - Data: 42 03 00 24 20 46 3E 49 FF F7 AA F9 28 61 00 28 ...  returns 0x3C (0000ms, 1679ms total)
TC3B4 028:240 JLINK_ReadMemEx(0x000023C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000023C4) - Data: 42 03  returns 0x02 (0000ms, 1679ms total)
TC3B4 028:240 JLINK_ReadMemEx(0x000023C6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000023C6) - Data: 00 24  returns 0x02 (0000ms, 1679ms total)
TA994 029:629 JLINK_ReadMemEx(0x000023BC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000023BC) - Data: 56 A0  returns 0x02 (0001ms, 1680ms total)
TA994 029:630 JLINK_Step() -- Read from C cache (2 bytes @ 0x000023BC) -- Simulated  returns 0x00 (0001ms, 1681ms total)
TA994 029:631 JLINK_ReadReg(R15 (PC))  returns 0x000023BE (0000ms, 1681ms total)
TA994 029:631 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 1681ms total)
TA994 029:631 JLINK_SetBPEx(Addr = 0x000023C2, Type = 0xFFFFFFF2)  returns 0x00000015 (0000ms, 1681ms total)
TA994 029:631 JLINK_SetBPEx(Addr = 0x000022B2, Type = 0xFFFFFFF2)  returns 0x00000016 (0000ms, 1681ms total)
TA994 029:631 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0010ms, 1691ms total)
TA994 029:743 JLINK_IsHalted()  returns TRUE (0008ms, 1699ms total)
TA994 029:751 JLINK_Halt()  returns 0x00 (0000ms, 1691ms total)
TA994 029:751 JLINK_IsHalted()  returns TRUE (0000ms, 1691ms total)
TA994 029:751 JLINK_IsHalted()  returns TRUE (0000ms, 1691ms total)
TA994 029:751 JLINK_IsHalted()  returns TRUE (0000ms, 1691ms total)
TA994 029:751 JLINK_ReadReg(R15 (PC))  returns 0x000023C2 (0000ms, 1691ms total)
TA994 029:751 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 1691ms total)
TA994 029:751 JLINK_ClrBPEx(BPHandle = 0x00000015)  returns 0x00 (0000ms, 1691ms total)
TA994 029:751 JLINK_ClrBPEx(BPHandle = 0x00000016)  returns 0x00 (0000ms, 1691ms total)
TA994 029:751 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0001ms, 1692ms total)
TA994 029:752 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 1693ms total)
TA994 029:753 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0001ms, 1694ms total)
TA994 029:754 JLINK_ReadMemEx(0x000023C0, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x000023C0) -- Updating C cache (64 bytes @ 0x000023C0) -- Read from C cache (60 bytes @ 0x000023C0) - Data: 03 FA 15 20 42 03 00 24 20 46 3E 49 FF F7 AA F9 ...  returns 0x3C (0003ms, 1697ms total)
TA994 029:757 JLINK_ReadMemEx(0x000023C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000023C0) - Data: 03 FA  returns 0x02 (0000ms, 1697ms total)
TA994 029:757 JLINK_ReadMemEx(0x000023C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000023C2) - Data: 15 20  returns 0x02 (0000ms, 1697ms total)
TA994 029:757 JLINK_Step() -- Read from C cache (2 bytes @ 0x000023C2) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Simulated  returns 0x00 (0001ms, 1698ms total)
TA994 029:758 JLINK_ReadReg(R15 (PC))  returns 0x000023C4 (0000ms, 1698ms total)
TA994 029:758 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 1698ms total)
TA994 029:758 JLINK_Step() -- Read from C cache (2 bytes @ 0x000023C4) -- Simulated  returns 0x00 (0000ms, 1698ms total)
TA994 029:758 JLINK_ReadReg(R15 (PC))  returns 0x000023C6 (0000ms, 1698ms total)
TA994 029:758 JLINK_ReadReg(XPSR)  returns 0x01000000 (0000ms, 1698ms total)
TA994 029:758 JLINK_ReadMemEx(0x000023C6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000023C6) - Data: 00 24  returns 0x02 (0000ms, 1698ms total)
TA994 029:758 JLINK_ReadMemEx(0x000023C8, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00002400) -- Updating C cache (64 bytes @ 0x00002400) -- Read from C cache (60 bytes @ 0x000023C8) - Data: 20 46 3E 49 FF F7 AA F9 28 61 00 28 00 9F 25 D0 ...  returns 0x3C (0003ms, 1701ms total)
TA994 029:761 JLINK_ReadMemEx(0x000023C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000023C8) - Data: 20 46  returns 0x02 (0000ms, 1701ms total)
TA994 029:761 JLINK_Step() -- Read from C cache (2 bytes @ 0x000023C6) -- Simulated  returns 0x00 (0000ms, 1701ms total)
TA994 029:761 JLINK_ReadReg(R15 (PC))  returns 0x000023C8 (0000ms, 1701ms total)
TA994 029:761 JLINK_ReadReg(XPSR)  returns 0x41000000 (0000ms, 1701ms total)
TA994 029:761 JLINK_ReadReg(R0)  returns 0x00000015 (0000ms, 1701ms total)
TA994 029:761 JLINK_ReadReg(R1)  returns 0x00000091 (0000ms, 1701ms total)
TA994 029:761 JLINK_ReadReg(R2)  returns 0x0002A000 (0000ms, 1701ms total)
TA994 029:761 JLINK_ReadReg(R3)  returns 0x02029F0A (0000ms, 1701ms total)
TA994 029:761 JLINK_ReadReg(R4)  returns 0x00000000 (0000ms, 1701ms total)
TA994 029:761 JLINK_ReadReg(R5)  returns 0x0201A294 (0000ms, 1701ms total)
TA994 029:761 JLINK_ReadReg(R6)  returns 0x02029FF8 (0000ms, 1701ms total)
TA994 029:761 JLINK_ReadReg(R7)  returns 0x00000000 (0000ms, 1701ms total)
TA994 029:761 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 1701ms total)
TA994 029:761 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 1701ms total)
TA994 029:761 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 1701ms total)
TA994 029:761 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 1701ms total)
TA994 029:761 JLINK_ReadReg(R12)  returns 0x00000000 (0001ms, 1702ms total)
TA994 029:762 JLINK_ReadReg(R13 (SP))  returns 0x02029FE8 (0000ms, 1702ms total)
TA994 029:762 JLINK_ReadReg(R14)  returns 0x00002CAF (0000ms, 1702ms total)
TA994 029:762 JLINK_ReadReg(R15 (PC))  returns 0x000023C8 (0000ms, 1702ms total)
TA994 029:762 JLINK_ReadReg(XPSR)  returns 0x41000000 (0000ms, 1702ms total)
TA994 029:762 JLINK_ReadReg(MSP)  returns 0x02029FE8 (0000ms, 1702ms total)
TA994 029:762 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 1702ms total)
TA994 029:762 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 1702ms total)
TC3B4 029:763 JLINK_ReadMemEx(0x0201A296, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A296) - Data: BB BB  returns 0x02 (0001ms, 1703ms total)
TC3B4 029:764 JLINK_ReadMemEx(0x0201A2B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2B0) - Data: 00  returns 0x01 (0001ms, 1704ms total)
TC3B4 029:765 JLINK_ReadMemEx(0x0201A230, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A230) - Data: 00  returns 0x01 (0001ms, 1705ms total)
TC3B4 029:766 JLINK_ReadMemEx(0x0201A25C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A25C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1706ms total)
TC3B4 029:767 JLINK_ReadMemEx(0x0201A236, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A236) - Data: 00 00  returns 0x02 (0001ms, 1707ms total)
TC3B4 029:768 JLINK_ReadMemEx(0x0201A29C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A29C) - Data: 10 00 00 00  returns 0x04 (0001ms, 1708ms total)
TC3B4 029:769 JLINK_ReadMemEx(0x0201A624, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A624) - Data: 00  returns 0x01 (0002ms, 1710ms total)
TC3B4 029:771 JLINK_ReadMemEx(0x0201A2C0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C0) - Data: 00  returns 0x01 (0001ms, 1711ms total)
TC3B4 029:772 JLINK_ReadMemEx(0x0201A2C1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C1) - Data: 00  returns 0x01 (0001ms, 1712ms total)
TC3B4 029:773 JLINK_ReadMemEx(0x0201A2C2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C2) - Data: 01  returns 0x01 (0001ms, 1713ms total)
TC3B4 029:774 JLINK_ReadMemEx(0x0201A2C3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C3) - Data: 01  returns 0x01 (0001ms, 1714ms total)
TC3B4 029:775 JLINK_ReadMemEx(0x0201A2AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A2AC) - Data: 10 00 00 00  returns 0x04 (0001ms, 1715ms total)
TC3B4 029:776 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0018ms, 1733ms total)
TC3B4 029:794 JLINK_ReadMemEx(0x000023C8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000023C8) - Data: 20 46 3E 49 FF F7 AA F9 28 61 00 28 00 9F 25 D0 ...  returns 0x3C (0000ms, 1733ms total)
TC3B4 029:794 JLINK_ReadMemEx(0x000023C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000023C8) - Data: 20 46  returns 0x02 (0000ms, 1733ms total)
TC3B4 029:794 JLINK_ReadMemEx(0x000023CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000023CA) - Data: 3E 49  returns 0x02 (0000ms, 1733ms total)
TC3B4 029:794 JLINK_ReadMemEx(0x000023CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000023CA) - Data: 3E 49  returns 0x02 (0000ms, 1733ms total)
TC3B4 029:794 JLINK_ReadMemEx(0x000023CC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000023CC) - Data: FF F7 AA F9 28 61 00 28 00 9F 25 D0 75 E7 61 48 ...  returns 0x3C (0000ms, 1733ms total)
TC3B4 029:794 JLINK_ReadMemEx(0x000023CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000023CC) - Data: FF F7  returns 0x02 (0000ms, 1733ms total)
TC3B4 029:794 JLINK_ReadMemEx(0x000023CC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000023CC) - Data: FF F7 AA F9 28 61 00 28 00 9F 25 D0 75 E7 61 48 ...  returns 0x3C (0000ms, 1733ms total)
TC3B4 029:794 JLINK_ReadMemEx(0x000023CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000023CC) - Data: FF F7  returns 0x02 (0000ms, 1733ms total)
TC3B4 029:794 JLINK_ReadMemEx(0x000023CE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000023CE) - Data: AA F9  returns 0x02 (0000ms, 1733ms total)
TC3B4 029:794 JLINK_ReadMemEx(0x000023D0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000023D0) - Data: 28 61 00 28 00 9F 25 D0 75 E7 61 48 FE F7 F4 F9 ...  returns 0x3C (0000ms, 1733ms total)
TC3B4 029:794 JLINK_ReadMemEx(0x000023D0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000023D0) - Data: 28 61  returns 0x02 (0000ms, 1733ms total)
TC3B4 029:794 JLINK_ReadMemEx(0x000023D2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000023D2) - Data: 00 28  returns 0x02 (0000ms, 1733ms total)
TA994 030:396 JLINK_ReadMemEx(0x000023C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000023C8) - Data: 20 46  returns 0x02 (0000ms, 1733ms total)
TA994 030:396 JLINK_Step() -- Read from C cache (2 bytes @ 0x000023C8) -- Simulated  returns 0x00 (0001ms, 1734ms total)
TA994 030:397 JLINK_ReadReg(R15 (PC))  returns 0x000023CA (0000ms, 1734ms total)
TA994 030:397 JLINK_ReadReg(XPSR)  returns 0x41000000 (0000ms, 1734ms total)
TA994 030:397 JLINK_Step() -- Read from C cache (2 bytes @ 0x000023CA) -- CPU_ReadMem(64 bytes @ 0x000024C0) -- Updating C cache (64 bytes @ 0x000024C0) -- Read from C cache (4 bytes @ 0x000024C4) -- Simulated  returns 0x00 (0003ms, 1737ms total)
TA994 030:400 JLINK_ReadReg(R15 (PC))  returns 0x000023CC (0000ms, 1737ms total)
TA994 030:400 JLINK_ReadReg(XPSR)  returns 0x41000000 (0000ms, 1737ms total)
TA994 030:400 JLINK_SetBPEx(Addr = 0x000023D0, Type = 0xFFFFFFF2)  returns 0x00000017 (0000ms, 1737ms total)
TA994 030:400 JLINK_SetBPEx(Addr = 0x000022B2, Type = 0xFFFFFFF2)  returns 0x00000018 (0000ms, 1737ms total)
TA994 030:400 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0010ms, 1747ms total)
TA994 030:512 JLINK_IsHalted()  returns FALSE (0001ms, 1748ms total)
TA994 030:613 JLINK_IsHalted()  returns FALSE (0001ms, 1748ms total)
TA994 030:714 JLINK_IsHalted()  returns FALSE (0001ms, 1748ms total)
TA994 030:815 JLINK_IsHalted()  returns FALSE (0001ms, 1748ms total)
TC3B4 030:917 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ...  returns 0xFFFFFFFF (0002ms, 1749ms total)
TC3B4 030:919 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ...  returns 0xFFFFFFFF (0003ms, 1752ms total)
TC3B4 030:922 JLINK_ReadMemEx(0x0402F000, 0x0010 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(16 bytes @ 0x0402F000) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA  returns 0xFFFFFFFF (0001ms, 1753ms total)
TC3B4 030:923 JLINK_ReadMemEx(0x0402F000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0402F000) - Data: AA AA AA AA  returns 0xFFFFFFFF (0001ms, 1754ms total)
TC3B4 030:924 JLINK_ReadMemEx(0x0402F000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0402F000) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 1756ms total)
TC3B4 030:926 JLINK_ReadMemEx(0x0402F000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0402F000) - Data: AA  returns 0xFFFFFFFF (0001ms, 1757ms total)
TC3B4 030:927 JLINK_ReadMemEx(0x0201A296, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A296) - Data: BB BB  returns 0x02 (0001ms, 1758ms total)
TC3B4 030:928 JLINK_ReadMemEx(0x0201A2B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2B0) - Data: 00  returns 0x01 (0001ms, 1759ms total)
TC3B4 030:929 JLINK_ReadMemEx(0x0201A230, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A230) - Data: 00  returns 0x01 (0001ms, 1760ms total)
TC3B4 030:930 JLINK_ReadMemEx(0x0201A25C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A25C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1761ms total)
TC3B4 030:931 JLINK_ReadMemEx(0x0201A236, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A236) - Data: 00 00  returns 0x02 (0001ms, 1762ms total)
TC3B4 030:932 JLINK_ReadMemEx(0x0201A29C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A29C) - Data: 17 00 00 00  returns 0x04 (0001ms, 1763ms total)
TC3B4 030:933 JLINK_ReadMemEx(0x0201A624, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A624) - Data: 00  returns 0x01 (0002ms, 1765ms total)
TC3B4 030:935 JLINK_ReadMemEx(0x0201A2C0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C0) - Data: 00  returns 0x01 (0001ms, 1766ms total)
TC3B4 030:936 JLINK_ReadMemEx(0x0201A2C1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C1) - Data: 00  returns 0x01 (0001ms, 1767ms total)
TC3B4 030:937 JLINK_ReadMemEx(0x0201A2C2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C2) - Data: 01  returns 0x01 (0001ms, 1768ms total)
TC3B4 030:938 JLINK_ReadMemEx(0x0201A2C3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C3) - Data: 01  returns 0x01 (0001ms, 1769ms total)
TC3B4 030:939 JLINK_ReadMemEx(0x0201A2AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A2AC) - Data: 17 00 00 00  returns 0x04 (0002ms, 1771ms total)
TA994 030:941 JLINK_IsHalted()  returns FALSE (0001ms, 1772ms total)
TA994 031:042 JLINK_IsHalted()  returns FALSE (0001ms, 1772ms total)
TA994 031:143 JLINK_IsHalted()  returns TRUE (0008ms, 1779ms total)
TA994 031:151 JLINK_Halt()  returns 0x00 (0000ms, 1771ms total)
TA994 031:151 JLINK_IsHalted()  returns TRUE (0000ms, 1771ms total)
TA994 031:151 JLINK_IsHalted()  returns TRUE (0001ms, 1772ms total)
TA994 031:152 JLINK_IsHalted()  returns TRUE (0000ms, 1771ms total)
TA994 031:152 JLINK_ReadReg(R15 (PC))  returns 0x000023D0 (0000ms, 1771ms total)
TA994 031:152 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 1771ms total)
TA994 031:152 JLINK_ClrBPEx(BPHandle = 0x00000017)  returns 0x00 (0000ms, 1771ms total)
TA994 031:152 JLINK_ClrBPEx(BPHandle = 0x00000018)  returns 0x00 (0000ms, 1771ms total)
TA994 031:152 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0001ms, 1772ms total)
TA994 031:153 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 1773ms total)
TA994 031:154 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0001ms, 1774ms total)
TA994 031:155 JLINK_ReadMemEx(0x000023CE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x000023C0) -- Updating C cache (64 bytes @ 0x000023C0) -- Read from C cache (2 bytes @ 0x000023CE) - Data: AA F9  returns 0x02 (0003ms, 1777ms total)
TA994 031:158 JLINK_ReadMemEx(0x000023D0, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00002400) -- Updating C cache (64 bytes @ 0x00002400) -- Read from C cache (60 bytes @ 0x000023D0) - Data: 28 61 00 28 00 9F 25 D0 75 E7 61 48 FE F7 F4 F9 ...  returns 0x3C (0002ms, 1779ms total)
TA994 031:160 JLINK_ReadMemEx(0x000023D0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000023D0) - Data: 28 61  returns 0x02 (0000ms, 1779ms total)
TA994 031:160 JLINK_ReadMemEx(0x000023D0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000023D0) - Data: 28 61 00 28 00 9F 25 D0 75 E7 61 48 FE F7 F4 F9 ...  returns 0x3C (0000ms, 1779ms total)
TA994 031:160 JLINK_ReadMemEx(0x000023D0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000023D0) - Data: 28 61  returns 0x02 (0000ms, 1779ms total)
TA994 031:160 JLINK_ReadMemEx(0x000023D2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000023D2) - Data: 00 28  returns 0x02 (0000ms, 1779ms total)
TA994 031:160 JLINK_Step() -- Read from C cache (2 bytes @ 0x000023D0) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Not simulated -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C)  returns 0x00 (0013ms, 1792ms total)
TA994 031:173 JLINK_ReadReg(R15 (PC))  returns 0x000023D2 (0000ms, 1792ms total)
TA994 031:173 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 1792ms total)
TA994 031:173 JLINK_ReadReg(R0)  returns 0x00000000 (0000ms, 1792ms total)
TA994 031:173 JLINK_ReadReg(R1)  returns 0xEB930000 (0000ms, 1792ms total)
TA994 031:173 JLINK_ReadReg(R2)  returns 0x00000002 (0000ms, 1792ms total)
TA994 031:173 JLINK_ReadReg(R3)  returns 0x00000000 (0000ms, 1792ms total)
TA994 031:173 JLINK_ReadReg(R4)  returns 0x00000000 (0000ms, 1792ms total)
TA994 031:173 JLINK_ReadReg(R5)  returns 0x0201A294 (0000ms, 1792ms total)
TA994 031:173 JLINK_ReadReg(R6)  returns 0x02029FF8 (0000ms, 1792ms total)
TA994 031:173 JLINK_ReadReg(R7)  returns 0x00000000 (0000ms, 1792ms total)
TA994 031:173 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 1792ms total)
TA994 031:173 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 1792ms total)
TA994 031:173 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 1792ms total)
TA994 031:173 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 1792ms total)
TA994 031:173 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 1792ms total)
TA994 031:173 JLINK_ReadReg(R13 (SP))  returns 0x02029FE8 (0000ms, 1792ms total)
TA994 031:173 JLINK_ReadReg(R14)  returns 0x0000184F (0000ms, 1792ms total)
TA994 031:173 JLINK_ReadReg(R15 (PC))  returns 0x000023D2 (0000ms, 1792ms total)
TA994 031:173 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 1792ms total)
TA994 031:173 JLINK_ReadReg(MSP)  returns 0x02029FE8 (0000ms, 1792ms total)
TA994 031:173 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 1792ms total)
TA994 031:173 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 1792ms total)
TC3B4 031:174 JLINK_ReadMemEx(0x0201A296, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A296) - Data: BB BB  returns 0x02 (0001ms, 1793ms total)
TC3B4 031:175 JLINK_ReadMemEx(0x0201A2B0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2B0) - Data: 00  returns 0x01 (0001ms, 1794ms total)
TC3B4 031:176 JLINK_ReadMemEx(0x0201A230, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A230) - Data: 00  returns 0x01 (0001ms, 1795ms total)
TC3B4 031:177 JLINK_ReadMemEx(0x0201A25C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A25C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1796ms total)
TC3B4 031:178 JLINK_ReadMemEx(0x0201A236, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201A236) - Data: 00 00  returns 0x02 (0001ms, 1797ms total)
TC3B4 031:179 JLINK_ReadMemEx(0x0201A29C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A29C) - Data: 18 00 00 00  returns 0x04 (0001ms, 1798ms total)
TC3B4 031:180 JLINK_ReadMemEx(0x0201A624, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A624) - Data: 00  returns 0x01 (0002ms, 1800ms total)
TC3B4 031:182 JLINK_ReadMemEx(0x0201A2C0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C0) - Data: 00  returns 0x01 (0001ms, 1801ms total)
TC3B4 031:183 JLINK_ReadMemEx(0x0201A2C1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C1) - Data: 00  returns 0x01 (0001ms, 1802ms total)
TC3B4 031:184 JLINK_ReadMemEx(0x0201A2C2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C2) - Data: 01  returns 0x01 (0001ms, 1803ms total)
TC3B4 031:185 JLINK_ReadMemEx(0x0201A2C3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201A2C3) - Data: 01  returns 0x01 (0001ms, 1804ms total)
TC3B4 031:186 JLINK_ReadMemEx(0x0201A2AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201A2AC) - Data: 18 00 00 00  returns 0x04 (0001ms, 1805ms total)
TC3B4 031:187 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF ...  returns 0x280 (0018ms, 1823ms total)
TC3B4 031:205 JLINK_ReadMemEx(0x000023D2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x000023C0) -- Updating C cache (64 bytes @ 0x000023C0) -- Read from C cache (2 bytes @ 0x000023D2) - Data: 00 28  returns 0x02 (0003ms, 1826ms total)
TC3B4 031:208 JLINK_ReadMemEx(0x000023D4, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00002400) -- Updating C cache (64 bytes @ 0x00002400) -- Read from C cache (60 bytes @ 0x000023D4) - Data: 00 9F 25 D0 75 E7 61 48 FE F7 F4 F9 64 24 20 46 ...  returns 0x3C (0002ms, 1828ms total)
TC3B4 031:210 JLINK_ReadMemEx(0x000023D4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000023D4) - Data: 00 9F  returns 0x02 (0000ms, 1828ms total)
TC3B4 031:210 JLINK_ReadMemEx(0x000023D4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000023D4) - Data: 00 9F 25 D0 75 E7 61 48 FE F7 F4 F9 64 24 20 46 ...  returns 0x3C (0000ms, 1828ms total)
TC3B4 031:210 JLINK_ReadMemEx(0x000023D4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000023D4) - Data: 00 9F  returns 0x02 (0001ms, 1829ms total)
TC3B4 031:211 JLINK_ReadMemEx(0x000023D6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000023D6) - Data: 25 D0  returns 0x02 (0000ms, 1829ms total)
TC3B4 031:211 JLINK_ReadMemEx(0x000023D6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000023D6) - Data: 25 D0  returns 0x02 (0000ms, 1829ms total)
TC3B4 031:211 JLINK_ReadMemEx(0x000023D8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000023D8) - Data: 75 E7 61 48 FE F7 F4 F9 64 24 20 46 FE F7 0C FF ...  returns 0x3C (0000ms, 1829ms total)
TC3B4 031:211 JLINK_ReadMemEx(0x000023D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000023D8) - Data: 75 E7  returns 0x02 (0000ms, 1829ms total)
TC3B4 031:211 JLINK_ReadMemEx(0x000023D8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000023D8) - Data: 75 E7 61 48 FE F7 F4 F9 64 24 20 46 FE F7 0C FF ...  returns 0x3C (0000ms, 1829ms total)
TC3B4 031:211 JLINK_ReadMemEx(0x000023D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000023D8) - Data: 75 E7  returns 0x02 (0000ms, 1829ms total)
TC3B4 031:211 JLINK_ReadMemEx(0x000023DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000023DA) - Data: 61 48  returns 0x02 (0000ms, 1829ms total)
TC3B4 033:719 JLINK_ReadMemEx(0x0402F014, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F014) - Data: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF ...  returns 0x280 (0018ms, 1847ms total)
TC3B4 033:741 JLINK_ReadMemEx(0x0402F028, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F028) - Data: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF ...  returns 0x280 (0018ms, 1865ms total)
TC3B4 033:760 JLINK_ReadMemEx(0x0402F03C, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F03C) - Data: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF ...  returns 0x280 (0018ms, 1883ms total)
TC3B4 033:780 JLINK_ReadMemEx(0x0402F050, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F050) - Data: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF ...  returns 0x280 (0019ms, 1902ms total)
TC3B4 034:155 JLINK_ReadMemEx(0x0402F03C, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F03C) - Data: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF ...  returns 0x280 (0018ms, 1920ms total)
TC3B4 034:176 JLINK_ReadMemEx(0x0402F028, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F028) - Data: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF ...  returns 0x280 (0017ms, 1937ms total)
TC3B4 034:194 JLINK_ReadMemEx(0x0402F014, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F014) - Data: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF ...  returns 0x280 (0018ms, 1955ms total)
TC3B4 034:215 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF ...  returns 0x280 (0018ms, 1973ms total)
TC3B4 1178:180 JLINK_Close() -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0008ms, 1981ms total)
TC3B4 1178:180  (0008ms, 1981ms total)
TC3B4 1178:180 Closed (0008ms, 1981ms total)