-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcpu0.fit.eqn
16241 lines (9033 loc) · 450 KB
/
cpu0.fit.eqn
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
-- Copyright (C) 1991-2005 Altera Corporation
-- Your use of Altera Corporation's design tools, logic functions
-- and other software and tools, and its AMPP partner logic
-- functions, and any output files any of the foregoing
-- (including device programming or simulation files), and any
-- associated documentation or information are expressly subject
-- to the terms and conditions of the Altera Program License
-- Subscription Agreement, Altera MegaCore Function License
-- Agreement, or other applicable license agreement, including,
-- without limitation, that your use is for the sole purpose of
-- programming logic devices manufactured by Altera and sold by
-- Altera or its authorized distributors. Please refer to the
-- applicable agreement for further details.
--D1_flag_c is flag_reg:inst2|flag_c at LC3_G33
--operation mode is normal
D1_flag_c_lut_out = !D1L71;
D1_flag_c = DFFEA(D1_flag_c_lut_out, GLOBAL(clk), reset, , , , );
--D1L2Q is flag_reg:inst2|flag_c~4 at LC3_G33
--operation mode is normal
D1L2Q = D1_flag_c;
--D1_flag_z is flag_reg:inst2|flag_z at LC2_G36
--operation mode is normal
D1_flag_z_lut_out = B1L552 & B1L952 & B1L752;
D1_flag_z = DFFEA(D1_flag_z_lut_out, GLOBAL(clk), reset, , D1L9, , );
--D1L8Q is flag_reg:inst2|flag_z~10 at LC2_G36
--operation mode is normal
D1L8Q = D1_flag_z;
--D1_flag_v is flag_reg:inst2|flag_v at LC2_G37
--operation mode is normal
D1_flag_v_lut_out = !B1L892;
D1_flag_v = DFFEA(D1_flag_v_lut_out, GLOBAL(clk), reset, , D1L9, , );
--D1L6Q is flag_reg:inst2|flag_v~6 at LC2_G37
--operation mode is normal
D1L6Q = D1_flag_v;
--D1_flag_s is flag_reg:inst2|flag_s at LC8_G37
--operation mode is normal
D1_flag_s_lut_out = B1L251;
D1_flag_s = DFFEA(D1_flag_s_lut_out, GLOBAL(clk), reset, , D1L9, , );
--D1L4Q is flag_reg:inst2|flag_s~6 at LC8_G37
--operation mode is normal
D1L4Q = D1_flag_s;
--J1_q[15] is ar:inst9|q[15] at LC6_G30
--operation mode is normal
J1_q[15]_lut_out = H1_rec[1] & B1L251 # !H1_rec[1] & (K1_q[15]);
J1_q[15] = DFFEA(J1_q[15]_lut_out, GLOBAL(clk), reset, , H1_rec[0], , );
--J1L33Q is ar:inst9|q[15]~80 at LC6_G30
--operation mode is normal
J1L33Q = J1_q[15];
--J1_q[14] is ar:inst9|q[14] at LC4_F30
--operation mode is normal
J1_q[14]_lut_out = H1_rec[1] & B1L341 # !H1_rec[1] & (K1_q[14]);
J1_q[14] = DFFEA(J1_q[14]_lut_out, GLOBAL(clk), reset, , H1_rec[0], , );
--J1L13Q is ar:inst9|q[14]~81 at LC4_F30
--operation mode is normal
J1L13Q = J1_q[14];
--J1_q[13] is ar:inst9|q[13] at LC7_F34
--operation mode is normal
J1_q[13]_lut_out = H1_rec[1] & B1L331 # !H1_rec[1] & (K1_q[13]);
J1_q[13] = DFFEA(J1_q[13]_lut_out, GLOBAL(clk), reset, , H1_rec[0], , );
--J1L92Q is ar:inst9|q[13]~82 at LC7_F34
--operation mode is normal
J1L92Q = J1_q[13];
--J1_q[12] is ar:inst9|q[12] at LC3_F31
--operation mode is normal
J1_q[12]_lut_out = H1_rec[1] & B1L321 # !H1_rec[1] & (K1_q[12]);
J1_q[12] = DFFEA(J1_q[12]_lut_out, GLOBAL(clk), reset, , H1_rec[0], , );
--J1L72Q is ar:inst9|q[12]~83 at LC3_F31
--operation mode is normal
J1L72Q = J1_q[12];
--J1_q[11] is ar:inst9|q[11] at LC5_D45
--operation mode is normal
J1_q[11]_lut_out = H1_rec[1] & B1L311 # !H1_rec[1] & (K1_q[11]);
J1_q[11] = DFFEA(J1_q[11]_lut_out, GLOBAL(clk), reset, , H1_rec[0], , );
--J1L52Q is ar:inst9|q[11]~84 at LC5_D45
--operation mode is normal
J1L52Q = J1_q[11];
--J1_q[10] is ar:inst9|q[10] at LC3_D45
--operation mode is normal
J1_q[10]_lut_out = H1_rec[1] & B1L301 # !H1_rec[1] & (K1_q[10]);
J1_q[10] = DFFEA(J1_q[10]_lut_out, GLOBAL(clk), reset, , H1_rec[0], , );
--J1L32Q is ar:inst9|q[10]~85 at LC3_D45
--operation mode is normal
J1L32Q = J1_q[10];
--J1_q[9] is ar:inst9|q[9] at LC6_D45
--operation mode is normal
J1_q[9]_lut_out = H1_rec[1] & B1L39 # !H1_rec[1] & (K1_q[9]);
J1_q[9] = DFFEA(J1_q[9]_lut_out, GLOBAL(clk), reset, , H1_rec[0], , );
--J1L12Q is ar:inst9|q[9]~86 at LC6_D45
--operation mode is normal
J1L12Q = J1_q[9];
--J1_q[8] is ar:inst9|q[8] at LC4_D45
--operation mode is normal
J1_q[8]_lut_out = H1_rec[1] & B1L38 # !H1_rec[1] & (K1_q[8]);
J1_q[8] = DFFEA(J1_q[8]_lut_out, GLOBAL(clk), reset, , H1_rec[0], , );
--J1L91Q is ar:inst9|q[8]~87 at LC4_D45
--operation mode is normal
J1L91Q = J1_q[8];
--J1_q[7] is ar:inst9|q[7] at LC7_C47
--operation mode is normal
J1_q[7]_lut_out = H1_rec[1] & B1L37 # !H1_rec[1] & (K1_q[7]);
J1_q[7] = DFFEA(J1_q[7]_lut_out, GLOBAL(clk), reset, , H1_rec[0], , );
--J1L71Q is ar:inst9|q[7]~88 at LC7_C47
--operation mode is normal
J1L71Q = J1_q[7];
--J1_q[6] is ar:inst9|q[6] at LC3_G40
--operation mode is normal
J1_q[6]_lut_out = H1_rec[1] & B1L36 # !H1_rec[1] & (K1_q[6]);
J1_q[6] = DFFEA(J1_q[6]_lut_out, GLOBAL(clk), reset, , H1_rec[0], , );
--J1L51Q is ar:inst9|q[6]~89 at LC3_G40
--operation mode is normal
J1L51Q = J1_q[6];
--J1_q[5] is ar:inst9|q[5] at LC8_D45
--operation mode is normal
J1_q[5]_lut_out = H1_rec[1] & B1L35 # !H1_rec[1] & (K1_q[5]);
J1_q[5] = DFFEA(J1_q[5]_lut_out, GLOBAL(clk), reset, , H1_rec[0], , );
--J1L31Q is ar:inst9|q[5]~90 at LC8_D45
--operation mode is normal
J1L31Q = J1_q[5];
--J1_q[4] is ar:inst9|q[4] at LC4_H44
--operation mode is normal
J1_q[4]_lut_out = H1_rec[1] & B1L34 # !H1_rec[1] & (K1_q[4]);
J1_q[4] = DFFEA(J1_q[4]_lut_out, GLOBAL(clk), reset, , H1_rec[0], , );
--J1L11Q is ar:inst9|q[4]~91 at LC4_H44
--operation mode is normal
J1L11Q = J1_q[4];
--J1_q[3] is ar:inst9|q[3] at LC1_D45
--operation mode is normal
J1_q[3]_lut_out = H1_rec[1] & B1L33 # !H1_rec[1] & (K1_q[3]);
J1_q[3] = DFFEA(J1_q[3]_lut_out, GLOBAL(clk), reset, , H1_rec[0], , );
--J1L9Q is ar:inst9|q[3]~92 at LC1_D45
--operation mode is normal
J1L9Q = J1_q[3];
--J1_q[2] is ar:inst9|q[2] at LC4_H47
--operation mode is normal
J1_q[2]_lut_out = H1_rec[1] & B1L32 # !H1_rec[1] & (K1_q[2]);
J1_q[2] = DFFEA(J1_q[2]_lut_out, GLOBAL(clk), reset, , H1_rec[0], , );
--J1L7Q is ar:inst9|q[2]~93 at LC4_H47
--operation mode is normal
J1L7Q = J1_q[2];
--J1_q[1] is ar:inst9|q[1] at LC2_D45
--operation mode is normal
J1_q[1]_lut_out = H1_rec[1] & B1L31 # !H1_rec[1] & (K1_q[1]);
J1_q[1] = DFFEA(J1_q[1]_lut_out, GLOBAL(clk), reset, , H1_rec[0], , );
--J1L5Q is ar:inst9|q[1]~94 at LC2_D45
--operation mode is normal
J1L5Q = J1_q[1];
--J1_q[0] is ar:inst9|q[0] at LC1_E46
--operation mode is normal
J1_q[0]_lut_out = H1_rec[1] & B1L4 # !H1_rec[1] & (K1_q[0]);
J1_q[0] = DFFEA(J1_q[0]_lut_out, GLOBAL(clk), reset, , H1_rec[0], , );
--J1L3Q is ar:inst9|q[0]~95 at LC1_E46
--operation mode is normal
J1L3Q = J1_q[0];
--R1L171 is reg_out:inst33|reg_data[15]~2733 at LC4_I22
--operation mode is normal
R1L171 = sel[0] & reg_sel[3];
--R1L871 is reg_out:inst33|reg_data[15]~2870 at LC4_I22
--operation mode is normal
R1L871 = sel[0] & reg_sel[3];
--R1L271 is reg_out:inst33|reg_data[15]~2734 at LC3_I22
--operation mode is normal
R1L271 = sel[1] & R1L171 & reg_sel[2] & reg_sel[1];
--R1L971 is reg_out:inst33|reg_data[15]~2871 at LC3_I22
--operation mode is normal
R1L971 = sel[1] & R1L171 & reg_sel[2] & reg_sel[1];
--G1_q[15] is ir:inst7|q[15] at LC4_H20
--operation mode is normal
G1_q[15]_lut_out = A1L73;
G1_q[15] = DFFEA(G1_q[15]_lut_out, GLOBAL(clk), reset, , G1L1, , );
--G1L53Q is ir:inst7|q[15]~274 at LC4_H20
--operation mode is normal
G1L53Q = G1_q[15];
--K1_q[15] is pc:inst10|q[15] at LC3_G30
--operation mode is normal
K1_q[15]_lut_out = B1L251;
K1_q[15] = DFFEA(K1_q[15]_lut_out, GLOBAL(clk), reset, , H1L63, , );
--K1L33Q is pc:inst10|q[15]~94 at LC3_G30
--operation mode is normal
K1L33Q = K1_q[15];
--R1L371 is reg_out:inst33|reg_data[15]~2735 at LC3_G37
--operation mode is normal
R1L371 = R1L271 & (reg_sel[0] & (G1_q[15]) # !reg_sel[0] & K1_q[15]);
--R1L081 is reg_out:inst33|reg_data[15]~2872 at LC3_G37
--operation mode is normal
R1L081 = R1L271 & (reg_sel[0] & (G1_q[15]) # !reg_sel[0] & K1_q[15]);
--L21_q[15] is reg:inst23|q[15] at LC3_K26
--operation mode is normal
L21_q[15]_lut_out = B1L251;
L21_q[15] = DFFEA(L21_q[15]_lut_out, GLOBAL(clk), reset, , M1L543, , );
--L21L33Q is reg:inst23|q[15]~94 at LC3_K26
--operation mode is normal
L21L33Q = L21_q[15];
--L01_q[15] is reg:inst21|q[15] at LC1_K19
--operation mode is normal
L01_q[15]_lut_out = B1L251;
L01_q[15] = DFFEA(L01_q[15]_lut_out, GLOBAL(clk), reset, , M1L143, , );
--L01L33Q is reg:inst21|q[15]~94 at LC1_K19
--operation mode is normal
L01L33Q = L01_q[15];
--L8_q[15] is reg:inst19|q[15] at LC1_K31
--operation mode is normal
L8_q[15]_lut_out = B1L251;
L8_q[15] = DFFEA(L8_q[15]_lut_out, GLOBAL(clk), reset, , M1L733, , );
--L8L33Q is reg:inst19|q[15]~94 at LC1_K31
--operation mode is normal
L8L33Q = L8_q[15];
--M1L586 is reg_mux:inst27|reg_out[15]~336 at LC5_K19
--operation mode is normal
M1L586 = reg_sel[1] & (L01_q[15] # reg_sel[2]) # !reg_sel[1] & L8_q[15] & (!reg_sel[2]);
--M1L596 is reg_mux:inst27|reg_out[15]~496 at LC5_K19
--operation mode is normal
M1L596 = reg_sel[1] & (L01_q[15] # reg_sel[2]) # !reg_sel[1] & L8_q[15] & (!reg_sel[2]);
--L41_q[15] is reg:inst25|q[15] at LC2_K26
--operation mode is normal
L41_q[15]_lut_out = B1L251;
L41_q[15] = DFFEA(L41_q[15]_lut_out, GLOBAL(clk), reset, , M1L943, , );
--L41L33Q is reg:inst25|q[15]~94 at LC2_K26
--operation mode is normal
L41L33Q = L41_q[15];
--M1L686 is reg_mux:inst27|reg_out[15]~337 at LC5_K26
--operation mode is normal
M1L686 = M1L586 & (L41_q[15] # !reg_sel[2]) # !M1L586 & (reg_sel[2] & L21_q[15]);
--M1L696 is reg_mux:inst27|reg_out[15]~497 at LC5_K26
--operation mode is normal
M1L696 = M1L586 & (L41_q[15] # !reg_sel[2]) # !M1L586 & (reg_sel[2] & L21_q[15]);
--L5_q[15] is reg:inst16|q[15] at LC2_K25
--operation mode is normal
L5_q[15]_lut_out = B1L251;
L5_q[15] = DFFEA(L5_q[15]_lut_out, GLOBAL(clk), reset, , M1L133, , );
--L5L33Q is reg:inst16|q[15]~94 at LC2_K25
--operation mode is normal
L5L33Q = L5_q[15];
--L3_q[15] is reg:inst14|q[15] at LC1_K29
--operation mode is normal
L3_q[15]_lut_out = B1L251;
L3_q[15] = DFFEA(L3_q[15]_lut_out, GLOBAL(clk), reset, , M1L723, , );
--L3L33Q is reg:inst14|q[15]~94 at LC1_K29
--operation mode is normal
L3L33Q = L3_q[15];
--L1_q[15] is reg:inst12|q[15] at LC4_K18
--operation mode is normal
L1_q[15]_lut_out = B1L251;
L1_q[15] = DFFEA(L1_q[15]_lut_out, GLOBAL(clk), reset, , M1L323, , );
--L1L33Q is reg:inst12|q[15]~94 at LC4_K18
--operation mode is normal
L1L33Q = L1_q[15];
--M1L786 is reg_mux:inst27|reg_out[15]~338 at LC5_K25
--operation mode is normal
M1L786 = reg_sel[1] & (L3_q[15] # reg_sel[2]) # !reg_sel[1] & L1_q[15] & (!reg_sel[2]);
--M1L796 is reg_mux:inst27|reg_out[15]~498 at LC5_K25
--operation mode is normal
M1L796 = reg_sel[1] & (L3_q[15] # reg_sel[2]) # !reg_sel[1] & L1_q[15] & (!reg_sel[2]);
--L7_q[15] is reg:inst18|q[15] at LC2_K27
--operation mode is normal
L7_q[15]_lut_out = B1L251;
L7_q[15] = DFFEA(L7_q[15]_lut_out, GLOBAL(clk), reset, , M1L533, , );
--L7L33Q is reg:inst18|q[15]~94 at LC2_K27
--operation mode is normal
L7L33Q = L7_q[15];
--M1L886 is reg_mux:inst27|reg_out[15]~339 at LC6_K25
--operation mode is normal
M1L886 = M1L786 & (L7_q[15] # !reg_sel[2]) # !M1L786 & (reg_sel[2] & L5_q[15]);
--M1L896 is reg_mux:inst27|reg_out[15]~499 at LC6_K25
--operation mode is normal
M1L896 = M1L786 & (L7_q[15] # !reg_sel[2]) # !M1L786 & (reg_sel[2] & L5_q[15]);
--L4_q[15] is reg:inst15|q[15] at LC1_K25
--operation mode is normal
L4_q[15]_lut_out = B1L251;
L4_q[15] = DFFEA(L4_q[15]_lut_out, GLOBAL(clk), reset, , M1L923, , );
--L4L33Q is reg:inst15|q[15]~94 at LC1_K25
--operation mode is normal
L4L33Q = L4_q[15];
--L2_q[15] is reg:inst13|q[15] at LC3_K25
--operation mode is normal
L2_q[15]_lut_out = B1L251;
L2_q[15] = DFFEA(L2_q[15]_lut_out, GLOBAL(clk), reset, , M1L523, , );
--L2L33Q is reg:inst13|q[15]~94 at LC3_K25
--operation mode is normal
L2L33Q = L2_q[15];
--L61_q[15] is reg:inst30|q[15] at LC2_K18
--operation mode is normal
L61_q[15]_lut_out = B1L251;
L61_q[15] = DFFEA(L61_q[15]_lut_out, GLOBAL(clk), reset, , M1L123, , );
--L61L33Q is reg:inst30|q[15]~94 at LC2_K18
--operation mode is normal
L61L33Q = L61_q[15];
--M1L986 is reg_mux:inst27|reg_out[15]~340 at LC7_K25
--operation mode is normal
M1L986 = reg_sel[1] & (L2_q[15] # reg_sel[2]) # !reg_sel[1] & L61_q[15] & (!reg_sel[2]);
--M1L996 is reg_mux:inst27|reg_out[15]~500 at LC7_K25
--operation mode is normal
M1L996 = reg_sel[1] & (L2_q[15] # reg_sel[2]) # !reg_sel[1] & L61_q[15] & (!reg_sel[2]);
--L6_q[15] is reg:inst17|q[15] at LC3_G27
--operation mode is normal
L6_q[15]_lut_out = B1L251;
L6_q[15] = DFFEA(L6_q[15]_lut_out, GLOBAL(clk), reset, , M1L333, , );
--L6L33Q is reg:inst17|q[15]~94 at LC3_G27
--operation mode is normal
L6L33Q = L6_q[15];
--M1L096 is reg_mux:inst27|reg_out[15]~341 at LC8_K25
--operation mode is normal
M1L096 = M1L986 & (L6_q[15] # !reg_sel[2]) # !M1L986 & (reg_sel[2] & L4_q[15]);
--M1L007 is reg_mux:inst27|reg_out[15]~501 at LC8_K25
--operation mode is normal
M1L007 = M1L986 & (L6_q[15] # !reg_sel[2]) # !M1L986 & (reg_sel[2] & L4_q[15]);
--M1L196 is reg_mux:inst27|reg_out[15]~342 at LC4_K25
--operation mode is normal
M1L196 = reg_sel[0] & (M1L886 # reg_sel[3]) # !reg_sel[0] & M1L096 & (!reg_sel[3]);
--M1L107 is reg_mux:inst27|reg_out[15]~502 at LC4_K25
--operation mode is normal
M1L107 = reg_sel[0] & (M1L886 # reg_sel[3]) # !reg_sel[0] & M1L096 & (!reg_sel[3]);
--L31_q[15] is reg:inst24|q[15] at LC4_K26
--operation mode is normal
L31_q[15]_lut_out = B1L251;
L31_q[15] = DFFEA(L31_q[15]_lut_out, GLOBAL(clk), reset, , M1L743, , );
--L31L33Q is reg:inst24|q[15]~94 at LC4_K26
--operation mode is normal
L31L33Q = L31_q[15];
--L11_q[15] is reg:inst22|q[15] at LC4_G27
--operation mode is normal
L11_q[15]_lut_out = B1L251;
L11_q[15] = DFFEA(L11_q[15]_lut_out, GLOBAL(clk), reset, , M1L343, , );
--L11L33Q is reg:inst22|q[15]~94 at LC4_G27
--operation mode is normal
L11L33Q = L11_q[15];
--L9_q[15] is reg:inst20|q[15] at LC3_K19
--operation mode is normal
L9_q[15]_lut_out = B1L251;
L9_q[15] = DFFEA(L9_q[15]_lut_out, GLOBAL(clk), reset, , M1L933, , );
--L9L33Q is reg:inst20|q[15]~94 at LC3_K19
--operation mode is normal
L9L33Q = L9_q[15];
--M1L296 is reg_mux:inst27|reg_out[15]~343 at LC4_K19
--operation mode is normal
M1L296 = reg_sel[1] & (L11_q[15] # reg_sel[2]) # !reg_sel[1] & L9_q[15] & (!reg_sel[2]);
--M1L207 is reg_mux:inst27|reg_out[15]~503 at LC4_K19
--operation mode is normal
M1L207 = reg_sel[1] & (L11_q[15] # reg_sel[2]) # !reg_sel[1] & L9_q[15] & (!reg_sel[2]);
--L51_q[15] is reg:inst26|q[15] at LC4_K30
--operation mode is normal
L51_q[15]_lut_out = B1L251;
L51_q[15] = DFFEA(L51_q[15]_lut_out, GLOBAL(clk), reset, , M1L153, , );
--L51L33Q is reg:inst26|q[15]~94 at LC4_K30
--operation mode is normal
L51L33Q = L51_q[15];
--M1L396 is reg_mux:inst27|reg_out[15]~344 at LC6_K26
--operation mode is normal
M1L396 = M1L296 & (L51_q[15] # !reg_sel[2]) # !M1L296 & (reg_sel[2] & L31_q[15]);
--M1L307 is reg_mux:inst27|reg_out[15]~504 at LC6_K26
--operation mode is normal
M1L307 = M1L296 & (L51_q[15] # !reg_sel[2]) # !M1L296 & (reg_sel[2] & L31_q[15]);
--M1L496 is reg_mux:inst27|reg_out[15]~345 at LC7_K26
--operation mode is normal
M1L496 = M1L196 & (M1L396 # !reg_sel[3]) # !M1L196 & (reg_sel[3] & M1L686);
--M1L407 is reg_mux:inst27|reg_out[15]~505 at LC7_K26
--operation mode is normal
M1L407 = M1L196 & (M1L396 # !reg_sel[3]) # !M1L196 & (reg_sel[3] & M1L686);
--R1L471 is reg_out:inst33|reg_data[15]~2736 at LC4_G37
--operation mode is normal
R1L471 = R1L371 # !sel[1] & !sel[0] & M1L496;
--R1L181 is reg_out:inst33|reg_data[15]~2873 at LC4_G37
--operation mode is normal
R1L181 = R1L371 # !sel[1] & !sel[0] & M1L496;
--N1L951 is bus_mux:inst28|alu_sr[15]~635 at LC8_G16
--operation mode is normal
N1L951 = !H1_alu_in_sel[2] & H1_alu_in_sel[1] & H1_alu_in_sel[0] & H1_offset[7];
--N1L261 is bus_mux:inst28|alu_sr[15]~653 at LC8_G16
--operation mode is normal
N1L261 = !H1_alu_in_sel[2] & H1_alu_in_sel[1] & H1_alu_in_sel[0] & H1_offset[7];
--M1L5001 is reg_mux:inst27|sr[15]~336 at LC6_K19
--operation mode is normal
M1L5001 = H1_sour_reg[0] & (L9_q[15] # H1_sour_reg[1]) # !H1_sour_reg[0] & L8_q[15] & (!H1_sour_reg[1]);
--M1L5101 is reg_mux:inst27|sr[15]~496 at LC6_K19
--operation mode is normal
M1L5101 = H1_sour_reg[0] & (L9_q[15] # H1_sour_reg[1]) # !H1_sour_reg[0] & L8_q[15] & (!H1_sour_reg[1]);
--M1L6001 is reg_mux:inst27|sr[15]~337 at LC8_K19
--operation mode is normal
M1L6001 = M1L5001 & (L11_q[15] # !H1_sour_reg[1]) # !M1L5001 & (H1_sour_reg[1] & L01_q[15]);
--M1L6101 is reg_mux:inst27|sr[15]~497 at LC8_K19
--operation mode is normal
M1L6101 = M1L5001 & (L11_q[15] # !H1_sour_reg[1]) # !M1L5001 & (H1_sour_reg[1] & L01_q[15]);
--M1L7001 is reg_mux:inst27|sr[15]~338 at LC1_K11
--operation mode is normal
M1L7001 = H1_sour_reg[1] & (L6_q[15] # H1_sour_reg[0]) # !H1_sour_reg[1] & L4_q[15] & (!H1_sour_reg[0]);
--M1L7101 is reg_mux:inst27|sr[15]~498 at LC1_K11
--operation mode is normal
M1L7101 = H1_sour_reg[1] & (L6_q[15] # H1_sour_reg[0]) # !H1_sour_reg[1] & L4_q[15] & (!H1_sour_reg[0]);
--M1L8001 is reg_mux:inst27|sr[15]~339 at LC2_K11
--operation mode is normal
M1L8001 = M1L7001 & (L7_q[15] # !H1_sour_reg[0]) # !M1L7001 & (H1_sour_reg[0] & L5_q[15]);
--M1L8101 is reg_mux:inst27|sr[15]~499 at LC2_K11
--operation mode is normal
M1L8101 = M1L7001 & (L7_q[15] # !H1_sour_reg[0]) # !M1L7001 & (H1_sour_reg[0] & L5_q[15]);
--M1L9001 is reg_mux:inst27|sr[15]~340 at LC7_K18
--operation mode is normal
M1L9001 = H1_sour_reg[0] & (L1_q[15] # H1_sour_reg[1]) # !H1_sour_reg[0] & L61_q[15] & (!H1_sour_reg[1]);
--M1L9101 is reg_mux:inst27|sr[15]~500 at LC7_K18
--operation mode is normal
M1L9101 = H1_sour_reg[0] & (L1_q[15] # H1_sour_reg[1]) # !H1_sour_reg[0] & L61_q[15] & (!H1_sour_reg[1]);
--M1L0101 is reg_mux:inst27|sr[15]~341 at LC3_K11
--operation mode is normal
M1L0101 = M1L9001 & (L3_q[15] # !H1_sour_reg[1]) # !M1L9001 & (H1_sour_reg[1] & L2_q[15]);
--M1L0201 is reg_mux:inst27|sr[15]~501 at LC3_K11
--operation mode is normal
M1L0201 = M1L9001 & (L3_q[15] # !H1_sour_reg[1]) # !M1L9001 & (H1_sour_reg[1] & L2_q[15]);
--M1L1101 is reg_mux:inst27|sr[15]~342 at LC4_K11
--operation mode is normal
M1L1101 = H1_sour_reg[2] & (M1L8001 # H1_sour_reg[3]) # !H1_sour_reg[2] & M1L0101 & (!H1_sour_reg[3]);
--M1L1201 is reg_mux:inst27|sr[15]~502 at LC4_K11
--operation mode is normal
M1L1201 = H1_sour_reg[2] & (M1L8001 # H1_sour_reg[3]) # !H1_sour_reg[2] & M1L0101 & (!H1_sour_reg[3]);
--M1L2101 is reg_mux:inst27|sr[15]~343 at LC5_K11
--operation mode is normal
M1L2101 = H1_sour_reg[1] & (L41_q[15] # H1_sour_reg[0]) # !H1_sour_reg[1] & L21_q[15] & (!H1_sour_reg[0]);
--M1L2201 is reg_mux:inst27|sr[15]~503 at LC5_K11
--operation mode is normal
M1L2201 = H1_sour_reg[1] & (L41_q[15] # H1_sour_reg[0]) # !H1_sour_reg[1] & L21_q[15] & (!H1_sour_reg[0]);
--M1L3101 is reg_mux:inst27|sr[15]~344 at LC6_K11
--operation mode is normal
M1L3101 = M1L2101 & (L51_q[15] # !H1_sour_reg[0]) # !M1L2101 & (H1_sour_reg[0] & L31_q[15]);
--M1L3201 is reg_mux:inst27|sr[15]~504 at LC6_K11
--operation mode is normal
M1L3201 = M1L2101 & (L51_q[15] # !H1_sour_reg[0]) # !M1L2101 & (H1_sour_reg[0] & L31_q[15]);
--M1L4101 is reg_mux:inst27|sr[15]~345 at LC8_K11
--operation mode is normal
M1L4101 = M1L1101 & (M1L3101 # !H1_sour_reg[3]) # !M1L1101 & (H1_sour_reg[3] & M1L6001);
--M1L4201 is reg_mux:inst27|sr[15]~505 at LC8_K11
--operation mode is normal
M1L4201 = M1L1101 & (M1L3101 # !H1_sour_reg[3]) # !M1L1101 & (H1_sour_reg[3] & M1L6001);
--N1L061 is bus_mux:inst28|alu_sr[15]~636 at LC7_K11
--operation mode is normal
N1L061 = N1L951 # !H1_alu_in_sel[1] & !H1_alu_in_sel[2] & M1L4101;
--N1L361 is bus_mux:inst28|alu_sr[15]~654 at LC7_K11
--operation mode is normal
N1L361 = N1L951 # !H1_alu_in_sel[1] & !H1_alu_in_sel[2] & M1L4101;
--R1L1 is reg_out:inst33|Mux~585 at LC5_G37
--operation mode is normal
R1L1 = reg_sel[1] & (reg_sel[0] # !N1L221) # !reg_sel[1] & H1_offset[7] & (!reg_sel[0]);
--R1L33 is reg_out:inst33|Mux~617 at LC5_G37
--operation mode is normal
R1L33 = reg_sel[1] & (reg_sel[0] # !N1L221) # !reg_sel[1] & H1_offset[7] & (!reg_sel[0]);
--B1L941 is alu:inst|alu_out[15]~5772 at LC5_G27
--operation mode is normal
B1L941 = H1_alu_func[0] & (H1_alu_func[1] # !T3_unreg_res_node[17]) # !H1_alu_func[0] & T1_unreg_res_node[16] & (!H1_alu_func[1]);
--B1L351 is alu:inst|alu_out[15]~5850 at LC5_G27
--operation mode is normal
B1L351 = H1_alu_func[0] & (H1_alu_func[1] # !T3_unreg_res_node[17]) # !H1_alu_func[0] & T1_unreg_res_node[16] & (!H1_alu_func[1]);
--B1L051 is alu:inst|alu_out[15]~5773 at LC6_G27
--operation mode is normal
B1L051 = H1_alu_func[1] & (B1L941 & (N1L061 # !N1L221) # !B1L941 & N1L061 & !N1L221) # !H1_alu_func[1] & B1L941;
--B1L451 is alu:inst|alu_out[15]~5851 at LC6_G27
--operation mode is normal
B1L451 = H1_alu_func[1] & (B1L941 & (N1L061 # !N1L221) # !B1L941 & N1L061 & !N1L221) # !H1_alu_func[1] & B1L941;
--N1L811 is bus_mux:inst28|alu_dr[15]~2293 at LC4_H21
--operation mode is normal
N1L811 = !H1_alu_in_sel[1] & H1_alu_in_sel[2];
--N1L321 is bus_mux:inst28|alu_dr[15]~2367 at LC4_H21
--operation mode is normal
N1L321 = !H1_alu_in_sel[1] & H1_alu_in_sel[2];
--K1_q[14] is pc:inst10|q[14] at LC4_F46
--operation mode is normal
K1_q[14]_lut_out = H1_alu_func[2] & B1L041 # !H1_alu_func[2] & (B1L241);
K1_q[14] = DFFEA(K1_q[14]_lut_out, GLOBAL(clk), reset, , H1L63, , );
--K1L13Q is pc:inst10|q[14]~95 at LC4_F46
--operation mode is normal
K1L13Q = K1_q[14];
--N1L011 is bus_mux:inst28|alu_dr[14]~2294 at LC2_F10
--operation mode is normal
N1L011 = N1L811 & (H1_alu_in_sel[0] & (A1L83) # !H1_alu_in_sel[0] & K1_q[14]);
--N1L411 is bus_mux:inst28|alu_dr[14]~2368 at LC2_F10
--operation mode is normal
N1L411 = N1L811 & (H1_alu_in_sel[0] & (A1L83) # !H1_alu_in_sel[0] & K1_q[14]);
--N1L111 is bus_mux:inst28|alu_dr[14]~2295 at LC3_F10
--operation mode is normal
N1L111 = !H1_alu_in_sel[2] & H1_alu_in_sel[1] & H1_alu_in_sel[0] & K1_q[14];
--N1L511 is bus_mux:inst28|alu_dr[14]~2369 at LC3_F10
--operation mode is normal
N1L511 = !H1_alu_in_sel[2] & H1_alu_in_sel[1] & H1_alu_in_sel[0] & K1_q[14];
--N1L911 is bus_mux:inst28|alu_dr[15]~2296 at LC1_E16
--operation mode is normal
N1L911 = !H1_alu_in_sel[0] & !H1_alu_in_sel[2];
--N1L421 is bus_mux:inst28|alu_dr[15]~2370 at LC1_E16
--operation mode is normal
N1L421 = !H1_alu_in_sel[0] & !H1_alu_in_sel[2];
--L6_q[14] is reg:inst17|q[14] at LC3_F11
--operation mode is normal
L6_q[14]_lut_out = H1_alu_func[2] & B1L041 # !H1_alu_func[2] & (B1L241);
L6_q[14] = DFFEA(L6_q[14]_lut_out, GLOBAL(clk), reset, , M1L333, , );
--L6L13Q is reg:inst17|q[14]~95 at LC3_F11
--operation mode is normal
L6L13Q = L6_q[14];
--L01_q[14] is reg:inst21|q[14] at LC8_F20
--operation mode is normal
L01_q[14]_lut_out = H1_alu_func[2] & B1L041 # !H1_alu_func[2] & (B1L241);
L01_q[14] = DFFEA(L01_q[14]_lut_out, GLOBAL(clk), reset, , M1L143, , );
--L01L13Q is reg:inst21|q[14]~95 at LC8_F20
--operation mode is normal
L01L13Q = L01_q[14];
--L2_q[14] is reg:inst13|q[14] at LC4_F11
--operation mode is normal
L2_q[14]_lut_out = H1_alu_func[2] & B1L041 # !H1_alu_func[2] & (B1L241);
L2_q[14] = DFFEA(L2_q[14]_lut_out, GLOBAL(clk), reset, , M1L523, , );
--L2L13Q is reg:inst13|q[14]~95 at LC4_F11
--operation mode is normal
L2L13Q = L2_q[14];
--M1L182 is reg_mux:inst27|dr[14]~336 at LC5_F11
--operation mode is normal
M1L182 = H1_dest_reg[3] & (L01_q[14] # H1_dest_reg[2]) # !H1_dest_reg[3] & L2_q[14] & (!H1_dest_reg[2]);
--M1L192 is reg_mux:inst27|dr[14]~496 at LC5_F11
--operation mode is normal
M1L192 = H1_dest_reg[3] & (L01_q[14] # H1_dest_reg[2]) # !H1_dest_reg[3] & L2_q[14] & (!H1_dest_reg[2]);
--L41_q[14] is reg:inst25|q[14] at LC5_F9
--operation mode is normal
L41_q[14]_lut_out = H1_alu_func[2] & B1L041 # !H1_alu_func[2] & (B1L241);
L41_q[14] = DFFEA(L41_q[14]_lut_out, GLOBAL(clk), reset, , M1L943, , );
--L41L13Q is reg:inst25|q[14]~95 at LC5_F9
--operation mode is normal
L41L13Q = L41_q[14];
--M1L282 is reg_mux:inst27|dr[14]~337 at LC1_F11
--operation mode is normal
M1L282 = M1L182 & (L41_q[14] # !H1_dest_reg[2]) # !M1L182 & (H1_dest_reg[2] & L6_q[14]);
--M1L292 is reg_mux:inst27|dr[14]~497 at LC1_F11
--operation mode is normal
M1L292 = M1L182 & (L41_q[14] # !H1_dest_reg[2]) # !M1L182 & (H1_dest_reg[2] & L6_q[14]);
--L9_q[14] is reg:inst20|q[14] at LC3_F27
--operation mode is normal
L9_q[14]_lut_out = H1_alu_func[2] & B1L041 # !H1_alu_func[2] & (B1L241);
L9_q[14] = DFFEA(L9_q[14]_lut_out, GLOBAL(clk), reset, , M1L933, , );
--L9L13Q is reg:inst20|q[14]~95 at LC3_F27
--operation mode is normal
L9L13Q = L9_q[14];
--L5_q[14] is reg:inst16|q[14] at LC4_F9
--operation mode is normal
L5_q[14]_lut_out = H1_alu_func[2] & B1L041 # !H1_alu_func[2] & (B1L241);
L5_q[14] = DFFEA(L5_q[14]_lut_out, GLOBAL(clk), reset, , M1L133, , );
--L5L13Q is reg:inst16|q[14]~95 at LC4_F9
--operation mode is normal
L5L13Q = L5_q[14];
--L1_q[14] is reg:inst12|q[14] at LC2_F20
--operation mode is normal
L1_q[14]_lut_out = H1_alu_func[2] & B1L041 # !H1_alu_func[2] & (B1L241);
L1_q[14] = DFFEA(L1_q[14]_lut_out, GLOBAL(clk), reset, , M1L323, , );
--L1L13Q is reg:inst12|q[14]~95 at LC2_F20
--operation mode is normal
L1L13Q = L1_q[14];
--M1L382 is reg_mux:inst27|dr[14]~338 at LC4_F10
--operation mode is normal
M1L382 = H1_dest_reg[2] & (L5_q[14] # H1_dest_reg[3]) # !H1_dest_reg[2] & L1_q[14] & (!H1_dest_reg[3]);
--M1L392 is reg_mux:inst27|dr[14]~498 at LC4_F10
--operation mode is normal
M1L392 = H1_dest_reg[2] & (L5_q[14] # H1_dest_reg[3]) # !H1_dest_reg[2] & L1_q[14] & (!H1_dest_reg[3]);
--L31_q[14] is reg:inst24|q[14] at LC1_F20
--operation mode is normal
L31_q[14]_lut_out = H1_alu_func[2] & B1L041 # !H1_alu_func[2] & (B1L241);
L31_q[14] = DFFEA(L31_q[14]_lut_out, GLOBAL(clk), reset, , M1L743, , );
--L31L13Q is reg:inst24|q[14]~95 at LC1_F20
--operation mode is normal
L31L13Q = L31_q[14];
--M1L482 is reg_mux:inst27|dr[14]~339 at LC5_F10
--operation mode is normal
M1L482 = M1L382 & (L31_q[14] # !H1_dest_reg[3]) # !M1L382 & (H1_dest_reg[3] & L9_q[14]);
--M1L492 is reg_mux:inst27|dr[14]~499 at LC5_F10
--operation mode is normal
M1L492 = M1L382 & (L31_q[14] # !H1_dest_reg[3]) # !M1L382 & (H1_dest_reg[3] & L9_q[14]);
--L4_q[14] is reg:inst15|q[14] at LC6_F9
--operation mode is normal
L4_q[14]_lut_out = H1_alu_func[2] & B1L041 # !H1_alu_func[2] & (B1L241);
L4_q[14] = DFFEA(L4_q[14]_lut_out, GLOBAL(clk), reset, , M1L923, , );
--L4L13Q is reg:inst15|q[14]~95 at LC6_F9
--operation mode is normal
L4L13Q = L4_q[14];
--L8_q[14] is reg:inst19|q[14] at LC1_F9
--operation mode is normal
L8_q[14]_lut_out = H1_alu_func[2] & B1L041 # !H1_alu_func[2] & (B1L241);