-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTP.drawio
More file actions
3617 lines (3617 loc) · 315 KB
/
TP.drawio
File metadata and controls
3617 lines (3617 loc) · 315 KB
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
<mxfile host="Electron" modified="2023-09-07T10:54:21.825Z" agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) draw.io/21.1.2 Chrome/106.0.5249.199 Electron/21.4.3 Safari/537.36" etag="3dRBi6eI2e3XaXfrOF56" version="21.1.2" type="device" pages="12">
<diagram name="ISA" id="bGjGpo7CQyv3Pe7xxYuu">
<mxGraphModel dx="1022" dy="592" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="1169" pageHeight="827" math="1" shadow="0">
<root>
<mxCell id="0" />
<mxCell id="1" parent="0" />
<mxCell id="vVeF10IpX3QR7clV5jBl-1" value="" style="shape=table;startSize=0;container=1;collapsible=0;childLayout=tableLayout;fontFamily=Times New Roman;fontSize=24;" parent="1" vertex="1">
<mxGeometry x="220" y="90" width="660" height="874" as="geometry" />
</mxCell>
<mxCell id="v0eZ7SR-80DZge7pTAwK-33" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontFamily=Times New Roman;fontSize=24;" parent="vVeF10IpX3QR7clV5jBl-1" vertex="1">
<mxGeometry width="660" height="50" as="geometry" />
</mxCell>
<mxCell id="v0eZ7SR-80DZge7pTAwK-34" value="Instuction" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=24;fontFamily=Times New Roman;" parent="v0eZ7SR-80DZge7pTAwK-33" vertex="1">
<mxGeometry width="240" height="50" as="geometry">
<mxRectangle width="240" height="50" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="v0eZ7SR-80DZge7pTAwK-35" value="Operation" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=24;spacing=0;fontFamily=Times New Roman;" parent="v0eZ7SR-80DZge7pTAwK-33" vertex="1">
<mxGeometry x="240" width="310" height="50" as="geometry">
<mxRectangle width="310" height="50" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="v0eZ7SR-80DZge7pTAwK-36" value="Opcode" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=24;spacing=0;fontFamily=Times New Roman;" parent="v0eZ7SR-80DZge7pTAwK-33" vertex="1">
<mxGeometry x="550" width="110" height="50" as="geometry">
<mxRectangle width="110" height="50" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="vVeF10IpX3QR7clV5jBl-2" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontFamily=Times New Roman;fontSize=24;" parent="vVeF10IpX3QR7clV5jBl-1" vertex="1">
<mxGeometry y="50" width="660" height="50" as="geometry" />
</mxCell>
<mxCell id="vVeF10IpX3QR7clV5jBl-3" value="add rs" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=24;fontFamily=Times New Roman;" parent="vVeF10IpX3QR7clV5jBl-2" vertex="1">
<mxGeometry width="240" height="50" as="geometry">
<mxRectangle width="240" height="50" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="vVeF10IpX3QR7clV5jBl-34" value="<svg style="vertical-align: -0.186ex; font-size: 19px;" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 -583 6488 665" role="img" height="1.505ex" width="14.679ex" xmlns="http://www.w3.org/2000/svg"><defs style="font-size: 19px;"><path d="M33 157Q33 258 109 349T280 441Q331 441 370 392Q386 422 416 422Q429 422 439 414T449 394Q449 381 412 234T374 68Q374 43 381 35T402 26Q411 27 422 35Q443 55 463 131Q469 151 473 152Q475 153 483 153H487Q506 153 506 144Q506 138 501 117T481 63T449 13Q436 0 417 -8Q409 -10 393 -10Q359 -10 336 5T306 36L300 51Q299 52 296 50Q294 48 292 46Q233 -10 172 -10Q117 -10 75 30T33 157ZM351 328Q351 334 346 350T323 385T277 405Q242 405 210 374T160 293Q131 214 119 129Q119 126 119 118T118 106Q118 61 136 44T179 26Q217 26 254 59T298 110Q300 114 325 217T351 328Z" id="MJX-2-TEX-I-1D44E" style="font-size: 19px;"></path><path d="M34 159Q34 268 120 355T306 442Q362 442 394 418T427 355Q427 326 408 306T360 285Q341 285 330 295T319 325T330 359T352 380T366 386H367Q367 388 361 392T340 400T306 404Q276 404 249 390Q228 381 206 359Q162 315 142 235T121 119Q121 73 147 50Q169 26 205 26H209Q321 26 394 111Q403 121 406 121Q410 121 419 112T429 98T420 83T391 55T346 25T282 0T202 -11Q127 -11 81 37T34 159Z" id="MJX-2-TEX-I-1D450" style="font-size: 19px;"></path><path d="M944 261T944 250T929 230H165Q167 228 182 216T211 189T244 152T277 96T303 25Q308 7 308 0Q308 -11 288 -11Q281 -11 278 -11T272 -7T267 2T263 21Q245 94 195 151T73 236Q58 242 55 247Q55 254 59 257T73 264Q121 283 158 314T215 375T247 434T264 480L267 497Q269 503 270 505T275 509T288 511Q308 511 308 500Q308 493 303 475Q293 438 278 406T246 352T215 315T185 287T165 270H929Q944 261 944 250Z" id="MJX-2-TEX-N-2190" style="font-size: 19px;"></path><path d="M56 237T56 250T70 270H369V420L370 570Q380 583 389 583Q402 583 409 568V270H707Q722 262 722 250T707 230H409V-68Q401 -82 391 -82H389H387Q375 -82 369 -68V230H70Q56 237 56 250Z" id="MJX-2-TEX-N-2B" style="font-size: 19px;"></path><path d="M21 287Q22 290 23 295T28 317T38 348T53 381T73 411T99 433T132 442Q161 442 183 430T214 408T225 388Q227 382 228 382T236 389Q284 441 347 441H350Q398 441 422 400Q430 381 430 363Q430 333 417 315T391 292T366 288Q346 288 334 299T322 328Q322 376 378 392Q356 405 342 405Q286 405 239 331Q229 315 224 298T190 165Q156 25 151 16Q138 -11 108 -11Q95 -11 87 -5T76 7T74 17Q74 30 114 189T154 366Q154 405 128 405Q107 405 92 377T68 316T57 280Q55 278 41 278H27Q21 284 21 287Z" id="MJX-2-TEX-I-1D45F" style="font-size: 19px;"></path><path d="M131 289Q131 321 147 354T203 415T300 442Q362 442 390 415T419 355Q419 323 402 308T364 292Q351 292 340 300T328 326Q328 342 337 354T354 372T367 378Q368 378 368 379Q368 382 361 388T336 399T297 405Q249 405 227 379T204 326Q204 301 223 291T278 274T330 259Q396 230 396 163Q396 135 385 107T352 51T289 7T195 -10Q118 -10 86 19T53 87Q53 126 74 143T118 160Q133 160 146 151T160 120Q160 94 142 76T111 58Q109 57 108 57T107 55Q108 52 115 47T146 34T201 27Q237 27 263 38T301 66T318 97T323 122Q323 150 302 164T254 181T195 196T148 231Q131 256 131 289Z" id="MJX-2-TEX-I-1D460" style="font-size: 19px;"></path></defs><g transform="scale(1,-1)" stroke-width="0" fill="currentColor" stroke="currentColor" style="font-size: 19px;"><g data-mml-node="math" style="font-size: 19px;"><g data-mml-node="mi" style="font-size: 19px;"><use xlink:href="#MJX-2-TEX-I-1D44E" data-c="1D44E" style="font-size: 19px;"></use></g><g transform="translate(529,0)" data-mml-node="mi" style="font-size: 19px;"><use xlink:href="#MJX-2-TEX-I-1D450" data-c="1D450" style="font-size: 19px;"></use></g><g transform="translate(962,0)" data-mml-node="mi" style="font-size: 19px;"><use xlink:href="#MJX-2-TEX-I-1D450" data-c="1D450" style="font-size: 19px;"></use></g><g transform="translate(1672.8,0)" data-mml-node="mo" style="font-size: 19px;"><use xlink:href="#MJX-2-TEX-N-2190" data-c="2190" style="font-size: 19px;"></use></g><g transform="translate(2950.6,0)" data-mml-node="mi" style="font-size: 19px;"><use xlink:href="#MJX-2-TEX-I-1D44E" data-c="1D44E" style="font-size: 19px;"></use></g><g transform="translate(3479.6,0)" data-mml-node="mi" style="font-size: 19px;"><use xlink:href="#MJX-2-TEX-I-1D450" data-c="1D450" style="font-size: 19px;"></use></g><g transform="translate(3912.6,0)" data-mml-node="mi" style="font-size: 19px;"><use xlink:href="#MJX-2-TEX-I-1D450" data-c="1D450" style="font-size: 19px;"></use></g><g transform="translate(4567.8,0)" data-mml-node="mo" style="font-size: 19px;"><use xlink:href="#MJX-2-TEX-N-2B" data-c="2B" style="font-size: 19px;"></use></g><g transform="translate(5568,0)" data-mml-node="mi" style="font-size: 19px;"><use xlink:href="#MJX-2-TEX-I-1D45F" data-c="1D45F" style="font-size: 19px;"></use></g><g transform="translate(6019,0)" data-mml-node="mi" style="font-size: 19px;"><use xlink:href="#MJX-2-TEX-I-1D460" data-c="1D460" style="font-size: 19px;"></use></g></g></g></svg>&nbsp;" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=19;spacing=0;fontFamily=Times New Roman;" parent="vVeF10IpX3QR7clV5jBl-2" vertex="1">
<mxGeometry x="240" width="310" height="50" as="geometry">
<mxRectangle width="310" height="50" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="v0eZ7SR-80DZge7pTAwK-17" value="0000" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=24;spacing=0;fontFamily=Times New Roman;" parent="vVeF10IpX3QR7clV5jBl-2" vertex="1">
<mxGeometry x="550" width="110" height="50" as="geometry">
<mxRectangle width="110" height="50" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="vVeF10IpX3QR7clV5jBl-4" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontFamily=Times New Roman;fontSize=24;" parent="vVeF10IpX3QR7clV5jBl-1" vertex="1">
<mxGeometry y="100" width="660" height="60" as="geometry" />
</mxCell>
<mxCell id="vVeF10IpX3QR7clV5jBl-5" value="sub rs" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=24;fontFamily=Times New Roman;" parent="vVeF10IpX3QR7clV5jBl-4" vertex="1">
<mxGeometry width="240" height="60" as="geometry">
<mxRectangle width="240" height="60" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="vVeF10IpX3QR7clV5jBl-35" value="$$acc \leftarrow acc - rs$$" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=19;spacing=0;fontFamily=Times New Roman;" parent="vVeF10IpX3QR7clV5jBl-4" vertex="1">
<mxGeometry x="240" width="310" height="60" as="geometry">
<mxRectangle width="310" height="60" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="v0eZ7SR-80DZge7pTAwK-18" value="0100" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=24;spacing=0;fontFamily=Times New Roman;" parent="vVeF10IpX3QR7clV5jBl-4" vertex="1">
<mxGeometry x="550" width="110" height="60" as="geometry">
<mxRectangle width="110" height="60" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="vVeF10IpX3QR7clV5jBl-6" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontFamily=Times New Roman;fontSize=24;" parent="vVeF10IpX3QR7clV5jBl-1" vertex="1">
<mxGeometry y="160" width="660" height="50" as="geometry" />
</mxCell>
<mxCell id="vVeF10IpX3QR7clV5jBl-7" value="addi { 4-bit imm }" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=24;fontFamily=Times New Roman;" parent="vVeF10IpX3QR7clV5jBl-6" vertex="1">
<mxGeometry width="240" height="50" as="geometry">
<mxRectangle width="240" height="50" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="vVeF10IpX3QR7clV5jBl-36" value="$$acc \leftarrow acc + sext(imm)$$" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=19;spacing=0;fontFamily=Times New Roman;" parent="vVeF10IpX3QR7clV5jBl-6" vertex="1">
<mxGeometry x="240" width="310" height="50" as="geometry">
<mxRectangle width="310" height="50" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="v0eZ7SR-80DZge7pTAwK-19" value="1000" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=24;spacing=0;fontFamily=Times New Roman;" parent="vVeF10IpX3QR7clV5jBl-6" vertex="1">
<mxGeometry x="550" width="110" height="50" as="geometry">
<mxRectangle width="110" height="50" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="vVeF10IpX3QR7clV5jBl-8" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontFamily=Times New Roman;fontSize=24;" parent="vVeF10IpX3QR7clV5jBl-1" vertex="1">
<mxGeometry y="210" width="660" height="50" as="geometry" />
</mxCell>
<mxCell id="vVeF10IpX3QR7clV5jBl-9" value="sll rs" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=24;fontFamily=Times New Roman;" parent="vVeF10IpX3QR7clV5jBl-8" vertex="1">
<mxGeometry width="240" height="50" as="geometry">
<mxRectangle width="240" height="50" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="vVeF10IpX3QR7clV5jBl-37" value="$$acc \leftarrow acc &lt;&lt; rs[2:0]$$" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=19;spacing=0;fontFamily=Times New Roman;" parent="vVeF10IpX3QR7clV5jBl-8" vertex="1">
<mxGeometry x="240" width="310" height="50" as="geometry">
<mxRectangle width="310" height="50" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="v0eZ7SR-80DZge7pTAwK-20" value="0001" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=24;spacing=0;fontFamily=Times New Roman;" parent="vVeF10IpX3QR7clV5jBl-8" vertex="1">
<mxGeometry x="550" width="110" height="50" as="geometry">
<mxRectangle width="110" height="50" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="vVeF10IpX3QR7clV5jBl-10" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontFamily=Times New Roman;fontSize=24;" parent="vVeF10IpX3QR7clV5jBl-1" vertex="1">
<mxGeometry y="260" width="660" height="49" as="geometry" />
</mxCell>
<mxCell id="vVeF10IpX3QR7clV5jBl-11" value="slli { 4-bit imm }" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=24;fontFamily=Times New Roman;" parent="vVeF10IpX3QR7clV5jBl-10" vertex="1">
<mxGeometry width="240" height="49" as="geometry">
<mxRectangle width="240" height="49" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="vVeF10IpX3QR7clV5jBl-38" value="$$acc \leftarrow acc &lt;&lt; imm[2:0]$$" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=19;spacing=0;fontFamily=Times New Roman;" parent="vVeF10IpX3QR7clV5jBl-10" vertex="1">
<mxGeometry x="240" width="310" height="49" as="geometry">
<mxRectangle width="310" height="49" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="v0eZ7SR-80DZge7pTAwK-21" value="1001" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=24;spacing=0;fontFamily=Times New Roman;" parent="vVeF10IpX3QR7clV5jBl-10" vertex="1">
<mxGeometry x="550" width="110" height="49" as="geometry">
<mxRectangle width="110" height="49" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="vVeF10IpX3QR7clV5jBl-12" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontFamily=Times New Roman;fontSize=24;" parent="vVeF10IpX3QR7clV5jBl-1" vertex="1">
<mxGeometry y="309" width="660" height="51" as="geometry" />
</mxCell>
<mxCell id="vVeF10IpX3QR7clV5jBl-13" value="srl rs" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=24;fontFamily=Times New Roman;" parent="vVeF10IpX3QR7clV5jBl-12" vertex="1">
<mxGeometry width="240" height="51" as="geometry">
<mxRectangle width="240" height="51" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="vVeF10IpX3QR7clV5jBl-39" value="<span style="color: rgb(0, 0, 0); font-size: 19px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: center; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(251, 251, 251); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline !important;">$$acc \leftarrow acc &gt;&gt; rs[2:0]$$</span>" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=19;spacing=0;fontFamily=Times New Roman;" parent="vVeF10IpX3QR7clV5jBl-12" vertex="1">
<mxGeometry x="240" width="310" height="51" as="geometry">
<mxRectangle width="310" height="51" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="v0eZ7SR-80DZge7pTAwK-22" value="0101" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=24;spacing=0;fontFamily=Times New Roman;" parent="vVeF10IpX3QR7clV5jBl-12" vertex="1">
<mxGeometry x="550" width="110" height="51" as="geometry">
<mxRectangle width="110" height="51" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="vVeF10IpX3QR7clV5jBl-14" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontFamily=Times New Roman;fontSize=24;" parent="vVeF10IpX3QR7clV5jBl-1" vertex="1">
<mxGeometry y="360" width="660" height="55" as="geometry" />
</mxCell>
<mxCell id="vVeF10IpX3QR7clV5jBl-15" value="la rs" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=24;fontFamily=Times New Roman;" parent="vVeF10IpX3QR7clV5jBl-14" vertex="1">
<mxGeometry width="240" height="55" as="geometry">
<mxRectangle width="240" height="55" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="vVeF10IpX3QR7clV5jBl-40" value="$$acc \leftarrow rs$$" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=19;spacing=0;fontFamily=Times New Roman;" parent="vVeF10IpX3QR7clV5jBl-14" vertex="1">
<mxGeometry x="240" width="310" height="55" as="geometry">
<mxRectangle width="310" height="55" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="v0eZ7SR-80DZge7pTAwK-23" value="0011" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=24;spacing=0;fontFamily=Times New Roman;" parent="vVeF10IpX3QR7clV5jBl-14" vertex="1">
<mxGeometry x="550" width="110" height="55" as="geometry">
<mxRectangle width="110" height="55" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="vVeF10IpX3QR7clV5jBl-16" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontFamily=Times New Roman;fontSize=24;" parent="vVeF10IpX3QR7clV5jBl-1" vertex="1">
<mxGeometry y="415" width="660" height="49" as="geometry" />
</mxCell>
<mxCell id="vVeF10IpX3QR7clV5jBl-17" value="sa rs" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=24;fontFamily=Times New Roman;" parent="vVeF10IpX3QR7clV5jBl-16" vertex="1">
<mxGeometry width="240" height="49" as="geometry">
<mxRectangle width="240" height="49" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="vVeF10IpX3QR7clV5jBl-41" value="$$rs \leftarrow acc$$" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=19;spacing=0;verticalAlign=middle;fontFamily=Times New Roman;" parent="vVeF10IpX3QR7clV5jBl-16" vertex="1">
<mxGeometry x="240" width="310" height="49" as="geometry">
<mxRectangle width="310" height="49" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="v0eZ7SR-80DZge7pTAwK-24" value="0111" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=24;spacing=0;verticalAlign=middle;fontFamily=Times New Roman;" parent="vVeF10IpX3QR7clV5jBl-16" vertex="1">
<mxGeometry x="550" width="110" height="49" as="geometry">
<mxRectangle width="110" height="49" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="vVeF10IpX3QR7clV5jBl-18" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontFamily=Times New Roman;fontSize=24;" parent="vVeF10IpX3QR7clV5jBl-1" vertex="1">
<mxGeometry y="464" width="660" height="49" as="geometry" />
</mxCell>
<mxCell id="vVeF10IpX3QR7clV5jBl-19" value="li { 4-bit imm }" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=24;fontFamily=Times New Roman;" parent="vVeF10IpX3QR7clV5jBl-18" vertex="1">
<mxGeometry width="240" height="49" as="geometry">
<mxRectangle width="240" height="49" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="vVeF10IpX3QR7clV5jBl-42" value="$$acc \leftarrow sext(imm)$$" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=19;spacing=0;fontFamily=Times New Roman;" parent="vVeF10IpX3QR7clV5jBl-18" vertex="1">
<mxGeometry x="240" width="310" height="49" as="geometry">
<mxRectangle width="310" height="49" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="v0eZ7SR-80DZge7pTAwK-25" value="1011" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=24;spacing=0;fontFamily=Times New Roman;" parent="vVeF10IpX3QR7clV5jBl-18" vertex="1">
<mxGeometry x="550" width="110" height="49" as="geometry">
<mxRectangle width="110" height="49" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="vVeF10IpX3QR7clV5jBl-20" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontFamily=Times New Roman;fontSize=24;" parent="vVeF10IpX3QR7clV5jBl-1" vertex="1">
<mxGeometry y="513" width="660" height="55" as="geometry" />
</mxCell>
<mxCell id="vVeF10IpX3QR7clV5jBl-21" value="spir" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=24;fontFamily=Times New Roman;" parent="vVeF10IpX3QR7clV5jBl-20" vertex="1">
<mxGeometry width="240" height="55" as="geometry">
<mxRectangle width="240" height="55" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="vVeF10IpX3QR7clV5jBl-43" value="$$x14 \leftarrow\ spi\_read$$" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=19;spacing=0;fontFamily=Times New Roman;" parent="vVeF10IpX3QR7clV5jBl-20" vertex="1">
<mxGeometry x="240" width="310" height="55" as="geometry">
<mxRectangle width="310" height="55" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="v0eZ7SR-80DZge7pTAwK-26" value="0010" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=24;spacing=0;fontFamily=Times New Roman;" parent="vVeF10IpX3QR7clV5jBl-20" vertex="1">
<mxGeometry x="550" width="110" height="55" as="geometry">
<mxRectangle width="110" height="55" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="vVeF10IpX3QR7clV5jBl-22" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontFamily=Times New Roman;fontSize=24;" parent="vVeF10IpX3QR7clV5jBl-1" vertex="1">
<mxGeometry y="568" width="660" height="51" as="geometry" />
</mxCell>
<mxCell id="vVeF10IpX3QR7clV5jBl-23" value="spiw rs" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=24;fontFamily=Times New Roman;" parent="vVeF10IpX3QR7clV5jBl-22" vertex="1">
<mxGeometry width="240" height="51" as="geometry">
<mxRectangle width="240" height="51" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="vVeF10IpX3QR7clV5jBl-44" value="$$rs \rightarrow\ spi\_write$$" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=19;spacing=0;fontFamily=Times New Roman;" parent="vVeF10IpX3QR7clV5jBl-22" vertex="1">
<mxGeometry x="240" width="310" height="51" as="geometry">
<mxRectangle width="310" height="51" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="v0eZ7SR-80DZge7pTAwK-27" value="0110" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=24;spacing=0;fontFamily=Times New Roman;" parent="vVeF10IpX3QR7clV5jBl-22" vertex="1">
<mxGeometry x="550" width="110" height="51" as="geometry">
<mxRectangle width="110" height="51" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="vVeF10IpX3QR7clV5jBl-24" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontFamily=Times New Roman;fontSize=24;" parent="vVeF10IpX3QR7clV5jBl-1" vertex="1">
<mxGeometry y="619" width="660" height="51" as="geometry" />
</mxCell>
<mxCell id="vVeF10IpX3QR7clV5jBl-25" value="j {label}" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=24;fontFamily=Times New Roman;" parent="vVeF10IpX3QR7clV5jBl-24" vertex="1">
<mxGeometry width="240" height="51" as="geometry">
<mxRectangle width="240" height="51" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="vVeF10IpX3QR7clV5jBl-45" value="$$pc\ \leftarrow\ label$$" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=19;spacing=0;fontFamily=Times New Roman;" parent="vVeF10IpX3QR7clV5jBl-24" vertex="1">
<mxGeometry x="240" width="310" height="51" as="geometry">
<mxRectangle width="310" height="51" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="v0eZ7SR-80DZge7pTAwK-28" value="1010" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=24;spacing=0;fontFamily=Times New Roman;" parent="vVeF10IpX3QR7clV5jBl-24" vertex="1">
<mxGeometry x="550" width="110" height="51" as="geometry">
<mxRectangle width="110" height="51" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="vVeF10IpX3QR7clV5jBl-26" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontFamily=Times New Roman;fontSize=24;" parent="vVeF10IpX3QR7clV5jBl-1" vertex="1">
<mxGeometry y="670" width="660" height="49" as="geometry" />
</mxCell>
<mxCell id="vVeF10IpX3QR7clV5jBl-27" value="or rs" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=24;fontFamily=Times New Roman;" parent="vVeF10IpX3QR7clV5jBl-26" vertex="1">
<mxGeometry width="240" height="49" as="geometry">
<mxRectangle width="240" height="49" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="vVeF10IpX3QR7clV5jBl-46" value="$$acc \leftarrow acc\ |\ rs$$" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=19;spacing=0;fontFamily=Times New Roman;" parent="vVeF10IpX3QR7clV5jBl-26" vertex="1">
<mxGeometry x="240" width="310" height="49" as="geometry">
<mxRectangle width="310" height="49" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="v0eZ7SR-80DZge7pTAwK-29" value="1100" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=24;spacing=0;fontFamily=Times New Roman;" parent="vVeF10IpX3QR7clV5jBl-26" vertex="1">
<mxGeometry x="550" width="110" height="49" as="geometry">
<mxRectangle width="110" height="49" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="vVeF10IpX3QR7clV5jBl-28" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontFamily=Times New Roman;fontSize=24;" parent="vVeF10IpX3QR7clV5jBl-1" vertex="1">
<mxGeometry y="719" width="660" height="51" as="geometry" />
</mxCell>
<mxCell id="vVeF10IpX3QR7clV5jBl-29" value="xor rs" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=24;fontFamily=Times New Roman;" parent="vVeF10IpX3QR7clV5jBl-28" vertex="1">
<mxGeometry width="240" height="51" as="geometry">
<mxRectangle width="240" height="51" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="vVeF10IpX3QR7clV5jBl-47" value="$$acc \leftarrow acc\ xor\ rs$$" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=19;spacing=0;fontFamily=Times New Roman;" parent="vVeF10IpX3QR7clV5jBl-28" vertex="1">
<mxGeometry x="240" width="310" height="51" as="geometry">
<mxRectangle width="310" height="51" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="v0eZ7SR-80DZge7pTAwK-30" value="1101" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=24;spacing=0;fontFamily=Times New Roman;" parent="vVeF10IpX3QR7clV5jBl-28" vertex="1">
<mxGeometry x="550" width="110" height="51" as="geometry">
<mxRectangle width="110" height="51" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="vVeF10IpX3QR7clV5jBl-30" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontFamily=Times New Roman;fontSize=24;" parent="vVeF10IpX3QR7clV5jBl-1" vertex="1">
<mxGeometry y="770" width="660" height="55" as="geometry" />
</mxCell>
<mxCell id="vVeF10IpX3QR7clV5jBl-31" value="and rs" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=24;fontFamily=Times New Roman;" parent="vVeF10IpX3QR7clV5jBl-30" vertex="1">
<mxGeometry width="240" height="55" as="geometry">
<mxRectangle width="240" height="55" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="vVeF10IpX3QR7clV5jBl-48" value="$$acc \leftarrow acc\ \&amp;\ rs$$" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=19;spacing=0;fontFamily=Times New Roman;" parent="vVeF10IpX3QR7clV5jBl-30" vertex="1">
<mxGeometry x="240" width="310" height="55" as="geometry">
<mxRectangle width="310" height="55" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="v0eZ7SR-80DZge7pTAwK-31" value="1110" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=24;spacing=0;fontFamily=Times New Roman;" parent="vVeF10IpX3QR7clV5jBl-30" vertex="1">
<mxGeometry x="550" width="110" height="55" as="geometry">
<mxRectangle width="110" height="55" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="vVeF10IpX3QR7clV5jBl-32" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontFamily=Times New Roman;fontSize=24;" parent="vVeF10IpX3QR7clV5jBl-1" vertex="1">
<mxGeometry y="825" width="660" height="49" as="geometry" />
</mxCell>
<mxCell id="vVeF10IpX3QR7clV5jBl-33" value="bnez {label}" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=24;fontFamily=Times New Roman;" parent="vVeF10IpX3QR7clV5jBl-32" vertex="1">
<mxGeometry width="240" height="49" as="geometry">
<mxRectangle width="240" height="49" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="vVeF10IpX3QR7clV5jBl-49" value="$$pc \leftarrow\ (acc\ !=\ 0)\ ?\<br style="font-size: 19px;">label\ :\ pc\ +\ 1$$" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=19;spacing=0;fontFamily=Times New Roman;" parent="vVeF10IpX3QR7clV5jBl-32" vertex="1">
<mxGeometry x="240" width="310" height="49" as="geometry">
<mxRectangle width="310" height="49" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="v0eZ7SR-80DZge7pTAwK-32" value="1111" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=24;spacing=0;fontFamily=Times New Roman;" parent="vVeF10IpX3QR7clV5jBl-32" vertex="1">
<mxGeometry x="550" width="110" height="49" as="geometry">
<mxRectangle width="110" height="49" as="alternateBounds" />
</mxGeometry>
</mxCell>
</root>
</mxGraphModel>
</diagram>
<diagram id="MkbsMwASGaY49GKnJac4" name="Inst">
<mxGraphModel dx="267" dy="-228" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="1169" pageHeight="827" math="0" shadow="0">
<root>
<mxCell id="0" />
<mxCell id="1" parent="0" />
<mxCell id="JHpAPSeR0oEk0hQ7XvRZ-1" value="" style="shape=table;startSize=0;container=1;collapsible=0;childLayout=tableLayout;fontSize=20;fontFamily=Times New Roman;" parent="1" vertex="1">
<mxGeometry x="320" y="1090" width="400" height="40" as="geometry" />
</mxCell>
<mxCell id="JHpAPSeR0oEk0hQ7XvRZ-2" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=20;fontFamily=Times New Roman;" parent="JHpAPSeR0oEk0hQ7XvRZ-1" vertex="1">
<mxGeometry width="400" height="40" as="geometry" />
</mxCell>
<mxCell id="JHpAPSeR0oEk0hQ7XvRZ-3" value="{label, 4-bit imm, rs}" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=20;fontFamily=Times New Roman;" parent="JHpAPSeR0oEk0hQ7XvRZ-2" vertex="1">
<mxGeometry width="200" height="40" as="geometry">
<mxRectangle width="200" height="40" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="JHpAPSeR0oEk0hQ7XvRZ-4" value="opcode" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=20;fontFamily=Times New Roman;" parent="JHpAPSeR0oEk0hQ7XvRZ-2" vertex="1">
<mxGeometry x="200" width="200" height="40" as="geometry">
<mxRectangle width="200" height="40" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="JHpAPSeR0oEk0hQ7XvRZ-5" value="" style="endArrow=classic;startArrow=classic;html=1;rounded=0;fontSize=20;fontFamily=Times New Roman;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="320" y="1140" as="sourcePoint" />
<mxPoint x="720" y="1140" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="JHpAPSeR0oEk0hQ7XvRZ-6" value="8-bits" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=20;fontFamily=Times New Roman;" parent="1" vertex="1">
<mxGeometry x="495" y="1140" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="JHpAPSeR0oEk0hQ7XvRZ-7" value="" style="endArrow=classic;startArrow=classic;html=1;rounded=0;fontSize=20;fontFamily=Times New Roman;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="520" y="1080" as="sourcePoint" />
<mxPoint x="720" y="1080" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="JHpAPSeR0oEk0hQ7XvRZ-8" value="4-bits" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=20;fontFamily=Times New Roman;" parent="1" vertex="1">
<mxGeometry x="595" y="1050" width="60" height="30" as="geometry" />
</mxCell>
</root>
</mxGraphModel>
</diagram>
<diagram id="SNZGzVs1o2csd8oEMV2O" name="PM">
<mxGraphModel dx="267" dy="1426" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="1169" pageHeight="827" math="1" shadow="0">
<root>
<mxCell id="0" />
<mxCell id="1" parent="0" />
<mxCell id="_5aQcEMopWH409ExRxHY-38" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;" parent="1" source="_5aQcEMopWH409ExRxHY-20" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="390" y="420" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="_5aQcEMopWH409ExRxHY-1" value="" style="shape=table;startSize=0;container=1;collapsible=0;childLayout=tableLayout;" parent="1" vertex="1">
<mxGeometry x="80" y="40" width="280" height="600" as="geometry" />
</mxCell>
<mxCell id="_5aQcEMopWH409ExRxHY-2" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="_5aQcEMopWH409ExRxHY-1" vertex="1">
<mxGeometry width="280" height="40" as="geometry" />
</mxCell>
<mxCell id="_5aQcEMopWH409ExRxHY-3" value="x0" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=default;overflow=hidden;fillColor=#dae8fc;top=1;left=1;bottom=1;right=1;pointerEvents=1;fontSize=20;" parent="_5aQcEMopWH409ExRxHY-2" vertex="1">
<mxGeometry width="280" height="40" as="geometry">
<mxRectangle width="280" height="40" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="_5aQcEMopWH409ExRxHY-4" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="_5aQcEMopWH409ExRxHY-1" vertex="1">
<mxGeometry y="40" width="280" height="40" as="geometry" />
</mxCell>
<mxCell id="_5aQcEMopWH409ExRxHY-5" value="x1" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=default;overflow=hidden;fillColor=#dae8fc;top=1;left=1;bottom=1;right=1;pointerEvents=1;fontSize=20;" parent="_5aQcEMopWH409ExRxHY-4" vertex="1">
<mxGeometry width="280" height="40" as="geometry">
<mxRectangle width="280" height="40" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="_5aQcEMopWH409ExRxHY-6" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="_5aQcEMopWH409ExRxHY-1" vertex="1">
<mxGeometry y="80" width="280" height="40" as="geometry" />
</mxCell>
<mxCell id="_5aQcEMopWH409ExRxHY-7" value="x2" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=default;overflow=hidden;fillColor=#dae8fc;top=1;left=1;bottom=1;right=1;pointerEvents=1;fontSize=20;" parent="_5aQcEMopWH409ExRxHY-6" vertex="1">
<mxGeometry width="280" height="40" as="geometry">
<mxRectangle width="280" height="40" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="_5aQcEMopWH409ExRxHY-8" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="_5aQcEMopWH409ExRxHY-1" vertex="1">
<mxGeometry y="120" width="280" height="40" as="geometry" />
</mxCell>
<mxCell id="_5aQcEMopWH409ExRxHY-9" value="x3" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=default;overflow=hidden;fillColor=#dae8fc;top=1;left=1;bottom=1;right=1;pointerEvents=1;fontSize=20;" parent="_5aQcEMopWH409ExRxHY-8" vertex="1">
<mxGeometry width="280" height="40" as="geometry">
<mxRectangle width="280" height="40" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="_5aQcEMopWH409ExRxHY-10" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="_5aQcEMopWH409ExRxHY-1" vertex="1">
<mxGeometry y="160" width="280" height="40" as="geometry" />
</mxCell>
<mxCell id="_5aQcEMopWH409ExRxHY-11" value="x4" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=default;overflow=hidden;fillColor=#dae8fc;top=1;left=1;bottom=1;right=1;pointerEvents=1;fontSize=20;" parent="_5aQcEMopWH409ExRxHY-10" vertex="1">
<mxGeometry width="280" height="40" as="geometry">
<mxRectangle width="280" height="40" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="_5aQcEMopWH409ExRxHY-12" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="_5aQcEMopWH409ExRxHY-1" vertex="1">
<mxGeometry y="200" width="280" height="40" as="geometry" />
</mxCell>
<mxCell id="_5aQcEMopWH409ExRxHY-13" value="x5" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=default;overflow=hidden;fillColor=#dae8fc;top=1;left=1;bottom=1;right=1;pointerEvents=1;fontSize=20;" parent="_5aQcEMopWH409ExRxHY-12" vertex="1">
<mxGeometry width="280" height="40" as="geometry">
<mxRectangle width="280" height="40" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="_5aQcEMopWH409ExRxHY-14" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="_5aQcEMopWH409ExRxHY-1" vertex="1">
<mxGeometry y="240" width="280" height="40" as="geometry" />
</mxCell>
<mxCell id="_5aQcEMopWH409ExRxHY-15" value="x6" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=default;overflow=hidden;fillColor=#dae8fc;top=1;left=1;bottom=1;right=1;pointerEvents=1;fontSize=20;" parent="_5aQcEMopWH409ExRxHY-14" vertex="1">
<mxGeometry width="280" height="40" as="geometry">
<mxRectangle width="280" height="40" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="_5aQcEMopWH409ExRxHY-16" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="_5aQcEMopWH409ExRxHY-1" vertex="1">
<mxGeometry y="280" width="280" height="40" as="geometry" />
</mxCell>
<mxCell id="_5aQcEMopWH409ExRxHY-17" value="x7" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=default;overflow=hidden;fillColor=#dae8fc;top=1;left=1;bottom=1;right=1;pointerEvents=1;fontSize=20;" parent="_5aQcEMopWH409ExRxHY-16" vertex="1">
<mxGeometry width="280" height="40" as="geometry">
<mxRectangle width="280" height="40" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="_5aQcEMopWH409ExRxHY-18" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="_5aQcEMopWH409ExRxHY-1" vertex="1">
<mxGeometry y="320" width="280" height="40" as="geometry" />
</mxCell>
<mxCell id="_5aQcEMopWH409ExRxHY-19" value="x8" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=default;overflow=hidden;fillColor=#dae8fc;top=1;left=1;bottom=1;right=1;pointerEvents=1;fontSize=20;" parent="_5aQcEMopWH409ExRxHY-18" vertex="1">
<mxGeometry width="280" height="40" as="geometry">
<mxRectangle width="280" height="40" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="_5aQcEMopWH409ExRxHY-20" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="_5aQcEMopWH409ExRxHY-1" vertex="1">
<mxGeometry y="360" width="280" height="40" as="geometry" />
</mxCell>
<mxCell id="_5aQcEMopWH409ExRxHY-21" value="x9" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=default;overflow=hidden;fillColor=#fff2cc;top=1;left=1;bottom=1;right=1;pointerEvents=1;fontSize=20;" parent="_5aQcEMopWH409ExRxHY-20" vertex="1">
<mxGeometry width="280" height="40" as="geometry">
<mxRectangle width="280" height="40" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="_5aQcEMopWH409ExRxHY-24" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="_5aQcEMopWH409ExRxHY-1" vertex="1">
<mxGeometry y="400" width="280" height="40" as="geometry" />
</mxCell>
<mxCell id="_5aQcEMopWH409ExRxHY-25" value="x10" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=default;overflow=hidden;fillColor=#f8cecc;top=1;left=1;bottom=1;right=1;pointerEvents=1;fontSize=20;" parent="_5aQcEMopWH409ExRxHY-24" vertex="1">
<mxGeometry width="280" height="40" as="geometry">
<mxRectangle width="280" height="40" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="_5aQcEMopWH409ExRxHY-26" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="_5aQcEMopWH409ExRxHY-1" vertex="1">
<mxGeometry y="440" width="280" height="40" as="geometry" />
</mxCell>
<mxCell id="_5aQcEMopWH409ExRxHY-27" value="x11" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=default;overflow=hidden;fillColor=#f8cecc;top=1;left=1;bottom=1;right=1;pointerEvents=1;fontSize=20;" parent="_5aQcEMopWH409ExRxHY-26" vertex="1">
<mxGeometry width="280" height="40" as="geometry">
<mxRectangle width="280" height="40" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="_5aQcEMopWH409ExRxHY-28" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="_5aQcEMopWH409ExRxHY-1" vertex="1">
<mxGeometry y="480" width="280" height="40" as="geometry" />
</mxCell>
<mxCell id="_5aQcEMopWH409ExRxHY-29" value="x12" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=default;overflow=hidden;fillColor=#f8cecc;top=1;left=1;bottom=1;right=1;pointerEvents=1;fontSize=20;" parent="_5aQcEMopWH409ExRxHY-28" vertex="1">
<mxGeometry width="280" height="40" as="geometry">
<mxRectangle width="280" height="40" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="_5aQcEMopWH409ExRxHY-30" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="_5aQcEMopWH409ExRxHY-1" vertex="1">
<mxGeometry y="520" width="280" height="40" as="geometry" />
</mxCell>
<mxCell id="_5aQcEMopWH409ExRxHY-31" value="x13" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=default;overflow=hidden;fillColor=#f8cecc;top=1;left=1;bottom=1;right=1;pointerEvents=1;fontSize=20;" parent="_5aQcEMopWH409ExRxHY-30" vertex="1">
<mxGeometry width="280" height="40" as="geometry">
<mxRectangle width="280" height="40" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="iMNwHoHOkNIcDLvF1DsR-1" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="_5aQcEMopWH409ExRxHY-1" vertex="1">
<mxGeometry y="560" width="280" height="40" as="geometry" />
</mxCell>
<mxCell id="iMNwHoHOkNIcDLvF1DsR-2" value="x14" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=#36393d;overflow=hidden;fillColor=#ffff88;top=1;left=1;bottom=1;right=1;pointerEvents=1;fontSize=20;" parent="iMNwHoHOkNIcDLvF1DsR-1" vertex="1">
<mxGeometry width="280" height="40" as="geometry">
<mxRectangle width="280" height="40" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="_5aQcEMopWH409ExRxHY-34" value="" style="shape=curlyBracket;whiteSpace=wrap;html=1;rounded=1;flipH=1;labelPosition=right;verticalLabelPosition=middle;align=left;verticalAlign=middle;" parent="1" vertex="1">
<mxGeometry x="370" y="40" width="20" height="360" as="geometry" />
</mxCell>
<mxCell id="_5aQcEMopWH409ExRxHY-36" value="GPRs" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=20;" parent="1" vertex="1">
<mxGeometry x="390" y="205" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="_5aQcEMopWH409ExRxHY-39" value="SPI register" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=20;" parent="1" vertex="1">
<mxGeometry x="390" y="600" width="120" height="40" as="geometry" />
</mxCell>
<mxCell id="_5aQcEMopWH409ExRxHY-40" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;" parent="1" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="360" y="620" as="sourcePoint" />
<mxPoint x="390" y="620" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="_5aQcEMopWH409ExRxHY-41" value="Animation register" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=20;" parent="1" vertex="1">
<mxGeometry x="390" y="400" width="170" height="40" as="geometry" />
</mxCell>
<mxCell id="_5aQcEMopWH409ExRxHY-42" value="" style="shape=curlyBracket;whiteSpace=wrap;html=1;rounded=1;flipH=1;labelPosition=right;verticalLabelPosition=middle;align=left;verticalAlign=middle;" parent="1" vertex="1">
<mxGeometry x="370" y="440" width="20" height="160" as="geometry" />
</mxCell>
<mxCell id="_5aQcEMopWH409ExRxHY-43" value="Frame counter registers" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=20;" parent="1" vertex="1">
<mxGeometry x="390" y="505" width="150" height="30" as="geometry" />
</mxCell>
<mxCell id="_5aQcEMopWH409ExRxHY-44" value="" style="endArrow=classic;startArrow=classic;html=1;rounded=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="80" y="20" as="sourcePoint" />
<mxPoint x="360" y="20" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="_5aQcEMopWH409ExRxHY-46" value="8-bits" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=21;" parent="1" vertex="1">
<mxGeometry x="190" y="-20" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="_5aQcEMopWH409ExRxHY-47" value="x15" style="rounded=0;whiteSpace=wrap;html=1;fontSize=20;fillColor=#cdeb8b;strokeColor=default;" parent="1" vertex="1">
<mxGeometry x="480" y="40" width="40" height="40" as="geometry" />
</mxCell>
<mxCell id="_5aQcEMopWH409ExRxHY-48" value="" style="endArrow=classic;startArrow=classic;html=1;rounded=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="480" y="20" as="sourcePoint" />
<mxPoint x="520" y="20" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="_5aQcEMopWH409ExRxHY-49" value="1-bit" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=21;" parent="1" vertex="1">
<mxGeometry x="470" y="-20" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="_5aQcEMopWH409ExRxHY-50" value="" style="shape=curlyBracket;whiteSpace=wrap;html=1;rounded=1;flipH=1;labelPosition=right;verticalLabelPosition=middle;align=left;verticalAlign=middle;" parent="1" vertex="1">
<mxGeometry x="530" y="40" width="20" height="40" as="geometry" />
</mxCell>
<mxCell id="_5aQcEMopWH409ExRxHY-51" value="FC sync register" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=20;" parent="1" vertex="1">
<mxGeometry x="555" y="45" width="155" height="30" as="geometry" />
</mxCell>
</root>
</mxGraphModel>
</diagram>
<diagram id="XVqFl4bL2IaUQVSySIcN" name="IO">
<mxGraphModel dx="290" dy="342" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="1169" pageHeight="827" math="0" shadow="0">
<root>
<mxCell id="0" />
<mxCell id="1" parent="0" />
<mxCell id="WFTefE1degvEK0VU9OLf-1" value="<font style="font-size: 20px;">Tiny processor</font>" style="rounded=0;whiteSpace=wrap;html=1;fontFamily=Times New Roman;" parent="1" vertex="1">
<mxGeometry x="370" y="150" width="270" height="60" as="geometry" />
</mxCell>
<mxCell id="WFTefE1degvEK0VU9OLf-2" value="" style="endArrow=classic;html=1;rounded=0;fontFamily=Times New Roman;endFill=1;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="400" y="210" as="sourcePoint" />
<mxPoint x="400" y="250" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="WFTefE1degvEK0VU9OLf-3" value="" style="endArrow=classic;html=1;rounded=0;startArrow=none;startFill=0;endFill=1;fontFamily=Times New Roman;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="490" y="250" as="sourcePoint" />
<mxPoint x="490" y="210" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="WFTefE1degvEK0VU9OLf-4" value="" style="endArrow=classic;html=1;rounded=0;startArrow=none;startFill=0;endFill=1;fontFamily=Times New Roman;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="520" y="210" as="sourcePoint" />
<mxPoint x="520" y="250" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="WFTefE1degvEK0VU9OLf-5" value="" style="endArrow=classic;html=1;rounded=0;startArrow=none;startFill=0;endFill=1;fontFamily=Times New Roman;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="460" y="210" as="sourcePoint" />
<mxPoint x="460" y="250" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="WFTefE1degvEK0VU9OLf-6" value="" style="endArrow=classic;html=1;rounded=0;endFill=1;fontFamily=Times New Roman;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="550" y="210" as="sourcePoint" />
<mxPoint x="550" y="250" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="WFTefE1degvEK0VU9OLf-8" value="" style="endArrow=classic;html=1;rounded=0;endFill=1;fontFamily=Times New Roman;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="580" y="250" as="sourcePoint" />
<mxPoint x="580" y="210" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="WFTefE1degvEK0VU9OLf-9" value="" style="endArrow=classic;html=1;rounded=0;endFill=1;fontFamily=Times New Roman;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="610" y="250" as="sourcePoint" />
<mxPoint x="610" y="210" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="WFTefE1degvEK0VU9OLf-10" value="ctrl [1:0]" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;rotation=315;fontFamily=Times New Roman;" parent="1" vertex="1">
<mxGeometry x="565" y="260" width="60" height="20" as="geometry" />
</mxCell>
<mxCell id="WFTefE1degvEK0VU9OLf-13" value="done" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;rotation=315;fontFamily=Times New Roman;" parent="1" vertex="1">
<mxGeometry x="525" y="260" width="60" height="20" as="geometry" />
</mxCell>
<mxCell id="WFTefE1degvEK0VU9OLf-14" value="mosi" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;rotation=315;fontFamily=Times New Roman;" parent="1" vertex="1">
<mxGeometry x="434" y="260" width="60" height="20" as="geometry" />
</mxCell>
<mxCell id="WFTefE1degvEK0VU9OLf-15" value="sclk" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;rotation=315;fontFamily=Times New Roman;" parent="1" vertex="1">
<mxGeometry x="494" y="260" width="60" height="20" as="geometry" />
</mxCell>
<mxCell id="WFTefE1degvEK0VU9OLf-16" value="miso" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;rotation=315;fontFamily=Times New Roman;" parent="1" vertex="1">
<mxGeometry x="464" y="260" width="60" height="20" as="geometry" />
</mxCell>
<mxCell id="WFTefE1degvEK0VU9OLf-17" value="sync" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;rotation=315;fontFamily=Times New Roman;" parent="1" vertex="1">
<mxGeometry x="374" y="260" width="60" height="20" as="geometry" />
</mxCell>
<mxCell id="WFTefE1degvEK0VU9OLf-18" value="" style="endArrow=classic;html=1;rounded=0;fontFamily=Times New Roman;endFill=1;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="430" y="210" as="sourcePoint" />
<mxPoint x="430" y="250" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="WFTefE1degvEK0VU9OLf-23" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontFamily=Times New Roman;" parent="1" source="WFTefE1degvEK0VU9OLf-21" target="WFTefE1degvEK0VU9OLf-22" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="WFTefE1degvEK0VU9OLf-21" value="" style="ellipse;whiteSpace=wrap;html=1;fillColor=none;dashed=1;fontFamily=Times New Roman;" parent="1" vertex="1">
<mxGeometry x="544" y="227" width="76" height="5" as="geometry" />
</mxCell>
<mxCell id="WFTefE1degvEK0VU9OLf-22" value="Processor interface w/ driver" style="whiteSpace=wrap;html=1;fillColor=none;dashed=1;fontFamily=Times New Roman;" parent="1" vertex="1">
<mxGeometry x="658" y="206" width="72" height="47" as="geometry" />
</mxCell>
<mxCell id="WFTefE1degvEK0VU9OLf-30" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;fontFamily=Times New Roman;" parent="1" source="WFTefE1degvEK0VU9OLf-24" target="WFTefE1degvEK0VU9OLf-29" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="539" y="280" />
<mxPoint x="539" y="280" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="WFTefE1degvEK0VU9OLf-24" value="" style="ellipse;whiteSpace=wrap;html=1;fillColor=none;dashed=1;fontFamily=Times New Roman;" parent="1" vertex="1">
<mxGeometry x="427" y="227" width="97" height="5" as="geometry" />
</mxCell>
<mxCell id="WFTefE1degvEK0VU9OLf-29" value="SPI interface" style="whiteSpace=wrap;html=1;fillColor=none;dashed=1;fontFamily=Times New Roman;" parent="1" vertex="1">
<mxGeometry x="503" y="300" width="72" height="20" as="geometry" />
</mxCell>
<mxCell id="WFTefE1degvEK0VU9OLf-31" value="" style="endArrow=classic;html=1;rounded=0;endFill=1;fontFamily=Times New Roman;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="401" y="110" as="sourcePoint" />
<mxPoint x="401" y="150" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="WFTefE1degvEK0VU9OLf-32" value="" style="endArrow=classic;html=1;rounded=0;endFill=1;fontFamily=Times New Roman;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="431" y="110" as="sourcePoint" />
<mxPoint x="431" y="150" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="WFTefE1degvEK0VU9OLf-33" value="" style="endArrow=classic;html=1;rounded=0;endFill=1;fontFamily=Times New Roman;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="461" y="110" as="sourcePoint" />
<mxPoint x="461" y="150" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="WFTefE1degvEK0VU9OLf-34" value="" style="endArrow=classic;html=1;rounded=0;endFill=1;fontFamily=Times New Roman;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="491" y="110" as="sourcePoint" />
<mxPoint x="491" y="150" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="WFTefE1degvEK0VU9OLf-37" value="" style="endArrow=classic;html=1;rounded=0;endFill=1;fontFamily=Times New Roman;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="521" y="110" as="sourcePoint" />
<mxPoint x="521" y="150" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="WFTefE1degvEK0VU9OLf-38" value="" style="endArrow=classic;html=1;rounded=0;endFill=1;fontFamily=Times New Roman;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="551" y="110" as="sourcePoint" />
<mxPoint x="551" y="150" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="WFTefE1degvEK0VU9OLf-39" value="" style="endArrow=classic;html=1;rounded=0;endFill=1;fontFamily=Times New Roman;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="581" y="110" as="sourcePoint" />
<mxPoint x="581" y="150" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="WFTefE1degvEK0VU9OLf-40" value="" style="endArrow=classic;html=1;rounded=0;endFill=1;fontFamily=Times New Roman;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="611" y="110" as="sourcePoint" />
<mxPoint x="611" y="150" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="WFTefE1degvEK0VU9OLf-41" value="display on" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;rotation=315;fontFamily=Times New Roman;" parent="1" vertex="1">
<mxGeometry x="580" y="70" width="60" height="20" as="geometry" />
</mxCell>
<mxCell id="WFTefE1degvEK0VU9OLf-42" value="msb" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;rotation=-45;fontFamily=Times New Roman;" parent="1" vertex="1">
<mxGeometry x="552" y="70" width="60" height="20" as="geometry" />
</mxCell>
<mxCell id="WFTefE1degvEK0VU9OLf-43" value="rs address" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;rotation=0;fontFamily=Times New Roman;" parent="1" vertex="1">
<mxGeometry x="474" y="70" width="60" height="20" as="geometry" />
</mxCell>
<mxCell id="WFTefE1degvEK0VU9OLf-44" value="" style="shape=curlyBracket;whiteSpace=wrap;html=1;rounded=1;flipH=1;labelPosition=right;verticalLabelPosition=middle;align=left;verticalAlign=middle;direction=south;fontFamily=Times New Roman;" parent="1" vertex="1">
<mxGeometry x="450" y="90" width="110" height="20" as="geometry" />
</mxCell>
<mxCell id="WFTefE1degvEK0VU9OLf-45" value="view select" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;rotation=-45;fontFamily=Times New Roman;" parent="1" vertex="1">
<mxGeometry x="402" y="70" width="60" height="20" as="geometry" />
</mxCell>
<mxCell id="WFTefE1degvEK0VU9OLf-46" value="animation on" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;rotation=-45;fontFamily=Times New Roman;" parent="1" vertex="1">
<mxGeometry x="362" y="70" width="60" height="20" as="geometry" />
</mxCell>
<mxCell id="WFTefE1degvEK0VU9OLf-48" value="" style="endArrow=classic;html=1;rounded=0;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;fontFamily=Times New Roman;" parent="1" source="WFTefE1degvEK0VU9OLf-1" target="WFTefE1degvEK0VU9OLf-53" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="430" y="220" as="sourcePoint" />
<mxPoint x="340" y="180" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="WFTefE1degvEK0VU9OLf-54" value="" style="group;fontFamily=Times New Roman;fillColor=#FFFFFF;strokeColor=default;" parent="1" vertex="1" connectable="0">
<mxGeometry x="280" y="140" width="50.1" height="80" as="geometry" />
</mxCell>
<mxCell id="WFTefE1degvEK0VU9OLf-53" value="" style="rounded=0;whiteSpace=wrap;html=1;fontFamily=Times New Roman;fillStyle=hatch;fillColor=none;" parent="WFTefE1degvEK0VU9OLf-54" vertex="1">
<mxGeometry width="50.1" height="80" as="geometry" />
</mxCell>
<mxCell id="WFTefE1degvEK0VU9OLf-51" value="" style="verticalLabelPosition=bottom;shadow=0;dashed=0;align=center;html=1;verticalAlign=top;shape=mxgraph.electrical.opto_electronics.7_segment_display_with_dp;pointerEvents=1;fontFamily=Times New Roman;fillColor=#FF3030;" parent="WFTefE1degvEK0VU9OLf-54" vertex="1">
<mxGeometry x="5.149999999999977" y="11.550000000000011" width="39.8" height="56.9" as="geometry" />
</mxCell>
<mxCell id="WFTefE1degvEK0VU9OLf-55" value="" style="endArrow=none;html=1;rounded=0;fontFamily=Times New Roman;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="350" y="185" as="sourcePoint" />
<mxPoint x="360" y="175" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="WFTefE1degvEK0VU9OLf-56" value="8" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontFamily=Times New Roman;" parent="1" vertex="1">
<mxGeometry x="348" y="163" width="12" height="10" as="geometry" />
</mxCell>
<mxCell id="WFTefE1degvEK0VU9OLf-57" value="7-segment display" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontFamily=Times New Roman;" parent="1" vertex="1">
<mxGeometry x="275.05" y="110" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="WFTefE1degvEK0VU9OLf-58" value="" style="ellipse;whiteSpace=wrap;html=1;fillColor=none;dashed=1;fontFamily=Times New Roman;" parent="1" vertex="1">
<mxGeometry x="397" y="129" width="218" height="5" as="geometry" />
</mxCell>
<mxCell id="WFTefE1degvEK0VU9OLf-59" value="Switches (ui_in[7:0])" style="whiteSpace=wrap;html=1;fillColor=none;dashed=1;fontFamily=Times New Roman;" parent="1" vertex="1">
<mxGeometry x="650" y="116.5" width="80" height="29" as="geometry" />
</mxCell>
<mxCell id="Q3D_QMQoJNgwjgQpUafz-2" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontFamily=Times New Roman;" parent="1" target="Q3D_QMQoJNgwjgQpUafz-1" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="352" y="190" as="sourcePoint" />
</mxGeometry>
</mxCell>
<mxCell id="Q3D_QMQoJNgwjgQpUafz-1" value="uo_out[7:0]" style="whiteSpace=wrap;html=1;fillColor=none;dashed=1;fontFamily=Times New Roman;" parent="1" vertex="1">
<mxGeometry x="316" y="233" width="72" height="17" as="geometry" />
</mxCell>
<mxCell id="cmifhfdwtze06k-E2567-3" value="" style="endArrow=none;html=1;rounded=0;fontFamily=Times New Roman;startArrow=classic;startFill=1;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="640" y="190" as="sourcePoint" />
<mxPoint x="680" y="190" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="cmifhfdwtze06k-E2567-4" value="" style="endArrow=none;html=1;rounded=0;fontFamily=Times New Roman;startArrow=classic;startFill=1;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="640" y="170" as="sourcePoint" />
<mxPoint x="680" y="170" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="cmifhfdwtze06k-E2567-6" value="clk" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=12;fontFamily=Times New Roman;" parent="1" vertex="1">
<mxGeometry x="680" y="160" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="cmifhfdwtze06k-E2567-7" value="rst" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=12;fontFamily=Times New Roman;" parent="1" vertex="1">
<mxGeometry x="680" y="180" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="L1ftldIy6FuDI33Q-Tdd-1" value="cs" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;rotation=315;fontFamily=Times New Roman;" parent="1" vertex="1">
<mxGeometry x="404" y="260" width="60" height="20" as="geometry" />
</mxCell>
<mxCell id="L1ftldIy6FuDI33Q-Tdd-2" value="" style="endArrow=classic;html=1;rounded=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="616" y="131" as="sourcePoint" />
<mxPoint x="650" y="131" as="targetPoint" />
</mxGeometry>
</mxCell>
</root>
</mxGraphModel>
</diagram>
<diagram id="AxaVFPIbFaRzD8Oqvkt9" name="uARCH">
<mxGraphModel dx="2532" dy="1616" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="1169" pageHeight="827" math="0" shadow="0">
<root>
<mxCell id="0" />
<mxCell id="1" parent="0" />
<mxCell id="Aww-bf-pveAgiyIYha8N-1" value="" style="shape=table;startSize=0;container=1;collapsible=0;childLayout=tableLayout;fontFamily=Times New Roman;direction=south;" parent="1" vertex="1">
<mxGeometry x="259" width="90" height="90" as="geometry" />
</mxCell>
<mxCell id="Aww-bf-pveAgiyIYha8N-2" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontFamily=Times New Roman;" parent="Aww-bf-pveAgiyIYha8N-1" vertex="1">
<mxGeometry width="90" height="90" as="geometry" />
</mxCell>
<mxCell id="Aww-bf-pveAgiyIYha8N-3" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontFamily=Times New Roman;" parent="Aww-bf-pveAgiyIYha8N-2" vertex="1">
<mxGeometry width="23" height="90" as="geometry">
<mxRectangle width="23" height="90" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="Dul_sFPYQDoqGnUh1dT0-14" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontFamily=Times New Roman;" parent="Aww-bf-pveAgiyIYha8N-2" vertex="1">
<mxGeometry x="23" width="23" height="90" as="geometry">
<mxRectangle width="23" height="90" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="Dul_sFPYQDoqGnUh1dT0-15" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontFamily=Times New Roman;" parent="Aww-bf-pveAgiyIYha8N-2" vertex="1">
<mxGeometry x="46" width="22" height="90" as="geometry">
<mxRectangle width="22" height="90" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="Dul_sFPYQDoqGnUh1dT0-16" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontFamily=Times New Roman;" parent="Aww-bf-pveAgiyIYha8N-2" vertex="1">
<mxGeometry x="68" width="22" height="90" as="geometry">
<mxRectangle width="22" height="90" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="Aww-bf-pveAgiyIYha8N-10" value="<font style="font-size: 20px;"><b style="">IMEM</b></font>" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=none;fontFamily=Times New Roman;" parent="1" vertex="1">
<mxGeometry x="266" y="15" width="75" height="60" as="geometry" />
</mxCell>
<mxCell id="Aww-bf-pveAgiyIYha8N-21" value="" style="group;fontFamily=Times New Roman;" parent="1" vertex="1" connectable="0">
<mxGeometry x="83" y="30" width="30" height="60" as="geometry" />
</mxCell>
<mxCell id="Dul_sFPYQDoqGnUh1dT0-93" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.25;exitDx=0;exitDy=0;fontFamily=Times New Roman;" parent="Aww-bf-pveAgiyIYha8N-21" source="Aww-bf-pveAgiyIYha8N-22" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="147" y="15" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="Aww-bf-pveAgiyIYha8N-22" value="<font style="font-size: 20px;"><b>PC</b></font>" style="rounded=0;whiteSpace=wrap;html=1;fontFamily=Times New Roman;" parent="Aww-bf-pveAgiyIYha8N-21" vertex="1">
<mxGeometry width="30" height="60" as="geometry" />
</mxCell>
<mxCell id="Aww-bf-pveAgiyIYha8N-23" value="" style="triangle;whiteSpace=wrap;html=1;direction=north;fontFamily=Times New Roman;" parent="Aww-bf-pveAgiyIYha8N-21" vertex="1">
<mxGeometry x="3.75" y="46.666666666666664" width="22.5" height="13.333333333333332" as="geometry" />
</mxCell>
<mxCell id="9bmyjMimCNzz1g_J-O-g-1" value="4" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontFamily=Times New Roman;" parent="Aww-bf-pveAgiyIYha8N-21" vertex="1">
<mxGeometry width="30" height="20" as="geometry" />
</mxCell>
<mxCell id="Aww-bf-pveAgiyIYha8N-39" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;fontFamily=Times New Roman;" parent="1" source="Aww-bf-pveAgiyIYha8N-40" target="Aww-bf-pveAgiyIYha8N-43" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="Aww-bf-pveAgiyIYha8N-40" value="<font style="font-size: 20px;"><br></font>" style="shape=trapezoid;perimeter=trapezoidPerimeter;whiteSpace=wrap;html=1;fixedSize=1;direction=south;fontFamily=Times New Roman;horizontal=0;size=16.019999999999982;" parent="1" vertex="1">
<mxGeometry x="510" y="13.98" width="40" height="120" as="geometry" />
</mxCell>
<mxCell id="Aww-bf-pveAgiyIYha8N-41" value="" style="group;fontFamily=Times New Roman;fontStyle=1" parent="1" vertex="1" connectable="0">
<mxGeometry x="570" y="43.980000000000004" width="30" height="60" as="geometry" />
</mxCell>
<mxCell id="Aww-bf-pveAgiyIYha8N-43" value="<font><span style="font-size: 20px;"><b>AC</b></span></font>" style="rounded=0;whiteSpace=wrap;html=1;fontFamily=Times New Roman;" parent="Aww-bf-pveAgiyIYha8N-41" vertex="1">
<mxGeometry width="30" height="60" as="geometry" />
</mxCell>
<mxCell id="Aww-bf-pveAgiyIYha8N-44" value="" style="triangle;whiteSpace=wrap;html=1;direction=north;fontFamily=Times New Roman;" parent="Aww-bf-pveAgiyIYha8N-41" vertex="1">
<mxGeometry x="3.75" y="46.666666666666664" width="22.5" height="13.333333333333332" as="geometry" />
</mxCell>
<mxCell id="9bmyjMimCNzz1g_J-O-g-2" value="8" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontFamily=Times New Roman;" parent="Aww-bf-pveAgiyIYha8N-41" vertex="1">
<mxGeometry y="-7.105427357601002e-15" width="30" height="20" as="geometry" />
</mxCell>
<mxCell id="Aww-bf-pveAgiyIYha8N-97" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.25;entryDx=0;entryDy=0;fontFamily=Times New Roman;" parent="1" source="Aww-bf-pveAgiyIYha8N-99" target="Aww-bf-pveAgiyIYha8N-22" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="Aww-bf-pveAgiyIYha8N-99" value="" style="shape=trapezoid;perimeter=trapezoidPerimeter;whiteSpace=wrap;html=1;fixedSize=1;direction=south;size=10;fontFamily=Times New Roman;" parent="1" vertex="1">
<mxGeometry x="60" y="3" width="10" height="85" as="geometry" />
</mxCell>
<mxCell id="Dul_sFPYQDoqGnUh1dT0-3" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontFamily=Times New Roman;" parent="1" source="Dul_sFPYQDoqGnUh1dT0-2" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="59" y="15.990000000000009" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="Dul_sFPYQDoqGnUh1dT0-2" value="0" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontFamily=Times New Roman;" parent="1" vertex="1">
<mxGeometry x="3" y="9" width="30" height="13.99" as="geometry" />
</mxCell>
<mxCell id="Dul_sFPYQDoqGnUh1dT0-4" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontFamily=Times New Roman;" parent="1" source="Dul_sFPYQDoqGnUh1dT0-5" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="59" y="35.99000000000001" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="Dul_sFPYQDoqGnUh1dT0-5" value="pc + 1" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontFamily=Times New Roman;" parent="1" vertex="1">
<mxGeometry x="-7" y="29" width="40" height="13.99" as="geometry" />
</mxCell>
<mxCell id="Dul_sFPYQDoqGnUh1dT0-7" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontFamily=Times New Roman;" parent="1" source="Dul_sFPYQDoqGnUh1dT0-8" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="59" y="75.99000000000001" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="Dul_sFPYQDoqGnUh1dT0-8" value="jmp" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontFamily=Times New Roman;" parent="1" vertex="1">
<mxGeometry x="-7" y="69" width="40" height="13.99" as="geometry" />
</mxCell>
<mxCell id="Dul_sFPYQDoqGnUh1dT0-9" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontFamily=Times New Roman;" parent="1" source="Dul_sFPYQDoqGnUh1dT0-10" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="59" y="55.99000000000001" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="Dul_sFPYQDoqGnUh1dT0-10" value="pc" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontFamily=Times New Roman;" parent="1" vertex="1">
<mxGeometry x="-7" y="49" width="40" height="13.99" as="geometry" />
</mxCell>
<mxCell id="Dul_sFPYQDoqGnUh1dT0-17" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=-0.004;entryY=0.221;entryDx=0;entryDy=0;entryPerimeter=0;exitX=0.5;exitY=0;exitDx=0;exitDy=0;fontFamily=Times New Roman;endSize=4;" parent="1" source="Dul_sFPYQDoqGnUh1dT0-13" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="259.6400000000003" y="44.88999999999987" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="Dul_sFPYQDoqGnUh1dT0-13" value="" style="shape=trapezoid;perimeter=trapezoidPerimeter;whiteSpace=wrap;html=1;fixedSize=1;direction=south;size=6.009999999999877;fontFamily=Times New Roman;" parent="1" vertex="1">
<mxGeometry x="230" y="5" width="10" height="80" as="geometry" />
</mxCell>
<mxCell id="Dul_sFPYQDoqGnUh1dT0-40" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontFamily=Times New Roman;" parent="1" source="Dul_sFPYQDoqGnUh1dT0-21" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="230" y="22" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="Dul_sFPYQDoqGnUh1dT0-21" value="sw_addr" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontFamily=Times New Roman;" parent="1" vertex="1">
<mxGeometry x="119" y="7" width="50" height="30" as="geometry" />
</mxCell>
<mxCell id="Dul_sFPYQDoqGnUh1dT0-23" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.25;entryY=1;entryDx=0;entryDy=0;exitX=1;exitY=0.5;exitDx=0;exitDy=0;fontFamily=Times New Roman;" parent="1" source="Dul_sFPYQDoqGnUh1dT0-41" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="230" y="70" as="targetPoint" />
<mxPoint x="200" y="70" as="sourcePoint" />
</mxGeometry>
</mxCell>
<mxCell id="Dul_sFPYQDoqGnUh1dT0-25" value="" style="shape=table;startSize=0;container=1;collapsible=0;childLayout=tableLayout;fontFamily=Times New Roman;direction=south;" parent="1" vertex="1">
<mxGeometry x="259" y="110" width="90" height="90" as="geometry" />
</mxCell>
<mxCell id="Dul_sFPYQDoqGnUh1dT0-26" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontFamily=Times New Roman;" parent="Dul_sFPYQDoqGnUh1dT0-25" vertex="1">
<mxGeometry width="90" height="90" as="geometry" />
</mxCell>
<mxCell id="Dul_sFPYQDoqGnUh1dT0-27" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontFamily=Times New Roman;" parent="Dul_sFPYQDoqGnUh1dT0-26" vertex="1">
<mxGeometry width="23" height="90" as="geometry">
<mxRectangle width="23" height="90" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="Dul_sFPYQDoqGnUh1dT0-28" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontFamily=Times New Roman;" parent="Dul_sFPYQDoqGnUh1dT0-26" vertex="1">
<mxGeometry x="23" width="23" height="90" as="geometry">
<mxRectangle width="23" height="90" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="Dul_sFPYQDoqGnUh1dT0-29" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontFamily=Times New Roman;" parent="Dul_sFPYQDoqGnUh1dT0-26" vertex="1">
<mxGeometry x="46" width="22" height="90" as="geometry">
<mxRectangle width="22" height="90" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="Dul_sFPYQDoqGnUh1dT0-30" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontFamily=Times New Roman;" parent="Dul_sFPYQDoqGnUh1dT0-26" vertex="1">
<mxGeometry x="68" width="22" height="90" as="geometry">
<mxRectangle width="22" height="90" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="Dul_sFPYQDoqGnUh1dT0-31" value="<font style="font-size: 20px;"><b style="">DMEM</b></font>" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=none;fontFamily=Times New Roman;" parent="1" vertex="1">
<mxGeometry x="266" y="125" width="75" height="60" as="geometry" />
</mxCell>
<mxCell id="Dul_sFPYQDoqGnUh1dT0-34" value="" style="shape=trapezoid;perimeter=trapezoidPerimeter;whiteSpace=wrap;html=1;fixedSize=1;direction=south;size=6.009999999999877;fontFamily=Times New Roman;" parent="1" vertex="1">
<mxGeometry x="230" y="120" width="10" height="68.99" as="geometry" />
</mxCell>
<mxCell id="Dul_sFPYQDoqGnUh1dT0-35" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.25;entryY=1;entryDx=0;entryDy=0;startArrow=oval;startFill=1;startSize=3;fontFamily=Times New Roman;" parent="1" target="Dul_sFPYQDoqGnUh1dT0-34" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="200" y="70" as="sourcePoint" />
<Array as="points">
<mxPoint x="200" y="70" />
<mxPoint x="200" y="132" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="Dul_sFPYQDoqGnUh1dT0-37" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;startArrow=oval;startFill=1;endSize=6;targetPerimeterSpacing=0;jumpStyle=none;startSize=3;fontFamily=Times New Roman;" parent="1" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="230" y="173" as="targetPoint" />
<mxPoint x="190" y="22" as="sourcePoint" />
<Array as="points">
<mxPoint x="190" y="173" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="Dul_sFPYQDoqGnUh1dT0-41" value="spi_addr" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontFamily=Times New Roman;" parent="1" vertex="1">
<mxGeometry x="119" y="54.99" width="50" height="30" as="geometry" />
</mxCell>
<mxCell id="Dul_sFPYQDoqGnUh1dT0-43" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=1;entryDx=0;entryDy=0;fontFamily=Times New Roman;" parent="1" source="Dul_sFPYQDoqGnUh1dT0-42" target="Dul_sFPYQDoqGnUh1dT0-34" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="Dul_sFPYQDoqGnUh1dT0-42" value="rs" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontFamily=Times New Roman;" parent="1" vertex="1">
<mxGeometry x="150" y="139" width="25" height="30" as="geometry" />
</mxCell>
<mxCell id="Dul_sFPYQDoqGnUh1dT0-45" value="" style="endArrow=classic;html=1;rounded=0;fontFamily=Times New Roman;endSize=4;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="240" y="153.85" as="sourcePoint" />
<mxPoint x="260" y="153.85" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="Dul_sFPYQDoqGnUh1dT0-48" value="" style="shape=trapezoid;perimeter=trapezoidPerimeter;whiteSpace=wrap;html=1;fixedSize=1;direction=north;size=6.009999999999877;fontFamily=Times New Roman;" parent="1" vertex="1">
<mxGeometry x="362" y="156.99" width="10" height="46.01" as="geometry" />
</mxCell>
<mxCell id="Dul_sFPYQDoqGnUh1dT0-51" value="" style="endArrow=classic;html=1;rounded=0;exitX=0.5;exitY=0;exitDx=0;exitDy=0;fontFamily=Times New Roman;" parent="1" source="Dul_sFPYQDoqGnUh1dT0-48" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="339" y="140" as="sourcePoint" />
<mxPoint x="349" y="180" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="Dul_sFPYQDoqGnUh1dT0-54" value="spi_data" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontFamily=Times New Roman;" parent="1" vertex="1">
<mxGeometry x="393.5" y="210" width="40.5" height="13.01" as="geometry" />
</mxCell>
<mxCell id="Dul_sFPYQDoqGnUh1dT0-59" value="" style="endArrow=classic;html=1;rounded=0;fontFamily=Times New Roman;exitX=0.964;exitY=-0.011;exitDx=0;exitDy=0;exitPerimeter=0;" parent="1" source="Dul_sFPYQDoqGnUh1dT0-142" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="420" y="240" as="sourcePoint" />
<mxPoint x="372" y="170" as="targetPoint" />
<Array as="points">
<mxPoint x="390" y="210" />
<mxPoint x="390" y="170" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="Dul_sFPYQDoqGnUh1dT0-60" value="" style="endArrow=classic;html=1;rounded=0;startArrow=oval;startFill=1;startSize=3;fontFamily=Times New Roman;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="620" y="74" as="sourcePoint" />