-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkTopModule.v
More file actions
2078 lines (1898 loc) · 84.6 KB
/
mkTopModule.v
File metadata and controls
2078 lines (1898 loc) · 84.6 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
//
// Generated by Bluespec Compiler, version 2014.07.A (build 34078, 2014-07-30)
//
// On Sun Jan 21 14:48:26 CET 2018
//
//
// Ports:
// Name I/O size props
// led_ifc_leds O 16 reg
// serial_ifc_serialOut O 1 const
// display_ifc_disableSegmentsDisplay O 7
// display_ifc_disableDotDisplay O 1 const
// display_ifc_disableDigitDisplay O 4
// CLK I 1 clock
// RST_N I 1 reset
// buttons_ifc_buttonL_left_input I 1 reg
// buttons_ifc_buttonR_right_input I 1 reg
// buttons_ifc_buttonU_upper_input I 1 reg
// buttons_ifc_buttonD_down_input I 1 reg
// buttons_ifc_buttonC_center_input I 1 reg
// switch_ifc_switches_switch_status I 16
// serial_ifc_serialIn_serial_input I 1 unused
//
// No combinational paths from inputs to outputs
//
//
`ifdef BSV_ASSIGNMENT_DELAY
`else
`define BSV_ASSIGNMENT_DELAY
`endif
`ifdef BSV_POSITIVE_RESET
`define BSV_RESET_VALUE 1'b1
`define BSV_RESET_EDGE posedge
`else
`define BSV_RESET_VALUE 1'b0
`define BSV_RESET_EDGE negedge
`endif
module mkTopModule(CLK,
RST_N,
buttons_ifc_buttonL_left_input,
buttons_ifc_buttonR_right_input,
buttons_ifc_buttonU_upper_input,
buttons_ifc_buttonD_down_input,
buttons_ifc_buttonC_center_input,
switch_ifc_switches_switch_status,
led_ifc_leds,
serial_ifc_serialOut,
serial_ifc_serialIn_serial_input,
display_ifc_disableSegmentsDisplay,
display_ifc_disableDotDisplay,
display_ifc_disableDigitDisplay);
input CLK;
input RST_N;
// action method buttons_ifc_buttonL
input buttons_ifc_buttonL_left_input;
// action method buttons_ifc_buttonR
input buttons_ifc_buttonR_right_input;
// action method buttons_ifc_buttonU
input buttons_ifc_buttonU_upper_input;
// action method buttons_ifc_buttonD
input buttons_ifc_buttonD_down_input;
// action method buttons_ifc_buttonC
input buttons_ifc_buttonC_center_input;
// action method switch_ifc_switches
input [15 : 0] switch_ifc_switches_switch_status;
// value method led_ifc_leds
output [15 : 0] led_ifc_leds;
// value method serial_ifc_serialOut
output serial_ifc_serialOut;
// action method serial_ifc_serialIn
input serial_ifc_serialIn_serial_input;
// value method display_ifc_disableSegmentsDisplay
output [6 : 0] display_ifc_disableSegmentsDisplay;
// value method display_ifc_disableDotDisplay
output display_ifc_disableDotDisplay;
// value method display_ifc_disableDigitDisplay
output [3 : 0] display_ifc_disableDigitDisplay;
// signals for module outputs
reg [6 : 0] display_ifc_disableSegmentsDisplay;
wire [15 : 0] led_ifc_leds;
wire [3 : 0] display_ifc_disableDigitDisplay;
wire display_ifc_disableDotDisplay, serial_ifc_serialOut;
// inlined wires
reg [15 : 0] cycler_cyclingFIFO_wDataIn$wget;
wire [15 : 0] cycler_cyclingFIFO_wDataOut$wget;
wire cyclerFeeder_start_wire$whas,
cyclerFeeder_state_set_pw$whas,
cycler_cyclingFIFO_pwEnqueue$whas,
cycler_cyclingFIFO_wDataIn$whas;
// register alu_isDone
reg alu_isDone;
wire alu_isDone$D_IN, alu_isDone$EN;
// register alu_isQueued
reg alu_isQueued;
wire alu_isQueued$D_IN, alu_isQueued$EN;
// register alu_leftOp
reg [32 : 0] alu_leftOp;
wire [32 : 0] alu_leftOp$D_IN;
wire alu_leftOp$EN;
// register alu_op
reg [3 : 0] alu_op;
wire [3 : 0] alu_op$D_IN;
wire alu_op$EN;
// register alu_powerModule_currentBase
reg [32 : 0] alu_powerModule_currentBase;
reg [32 : 0] alu_powerModule_currentBase$D_IN;
wire alu_powerModule_currentBase$EN;
// register alu_powerModule_currentExponent
reg [31 : 0] alu_powerModule_currentExponent;
reg [31 : 0] alu_powerModule_currentExponent$D_IN;
wire alu_powerModule_currentExponent$EN;
// register alu_powerModule_result
reg [32 : 0] alu_powerModule_result;
reg [32 : 0] alu_powerModule_result$D_IN;
wire alu_powerModule_result$EN;
// register alu_result
reg [32 : 0] alu_result;
reg [32 : 0] alu_result$D_IN;
wire alu_result$EN;
// register alu_rightOp
reg [32 : 0] alu_rightOp;
wire [32 : 0] alu_rightOp$D_IN;
wire alu_rightOp$EN;
// register buttonStatus_0
reg buttonStatus_0;
wire buttonStatus_0$D_IN, buttonStatus_0$EN;
// register buttonStatus_1
reg buttonStatus_1;
wire buttonStatus_1$D_IN, buttonStatus_1$EN;
// register buttonStatus_2
reg buttonStatus_2;
wire buttonStatus_2$D_IN, buttonStatus_2$EN;
// register buttonStatus_3
reg buttonStatus_3;
wire buttonStatus_3$D_IN, buttonStatus_3$EN;
// register buttonStatus_4
reg buttonStatus_4;
wire buttonStatus_4$D_IN, buttonStatus_4$EN;
// register clockDiv_ctr
reg [27 : 0] clockDiv_ctr;
wire [27 : 0] clockDiv_ctr$D_IN;
wire clockDiv_ctr$EN;
// register computeBuf
reg [32 : 0] computeBuf;
wire [32 : 0] computeBuf$D_IN;
wire computeBuf$EN;
// register currentDigitIndex
reg [1 : 0] currentDigitIndex;
wire [1 : 0] currentDigitIndex$D_IN;
wire currentDigitIndex$EN;
// register currentIsSigned
reg currentIsSigned;
wire currentIsSigned$D_IN, currentIsSigned$EN;
// register currentNumberS
reg [10 : 0] currentNumberS;
wire [10 : 0] currentNumberS$D_IN;
wire currentNumberS$EN;
// register currentNumberU
reg [3 : 0] currentNumberU;
wire [3 : 0] currentNumberU$D_IN;
wire currentNumberU$EN;
// register cyclerFeeder_start_reg
reg cyclerFeeder_start_reg;
wire cyclerFeeder_start_reg$D_IN, cyclerFeeder_start_reg$EN;
// register cyclerFeeder_start_reg_1
reg cyclerFeeder_start_reg_1;
wire cyclerFeeder_start_reg_1$D_IN, cyclerFeeder_start_reg_1$EN;
// register cyclerFeeder_state_can_overlap
reg cyclerFeeder_state_can_overlap;
wire cyclerFeeder_state_can_overlap$D_IN, cyclerFeeder_state_can_overlap$EN;
// register cyclerFeeder_state_fired
reg cyclerFeeder_state_fired;
wire cyclerFeeder_state_fired$D_IN, cyclerFeeder_state_fired$EN;
// register cyclerFeeder_state_mkFSMstate
reg [3 : 0] cyclerFeeder_state_mkFSMstate;
reg [3 : 0] cyclerFeeder_state_mkFSMstate$D_IN;
wire cyclerFeeder_state_mkFSMstate$EN;
// register cycler_clockDiv_ctr
reg [31 : 0] cycler_clockDiv_ctr;
wire [31 : 0] cycler_clockDiv_ctr$D_IN;
wire cycler_clockDiv_ctr$EN;
// register cycler_cyclingFIFO_rCache
reg [25 : 0] cycler_cyclingFIFO_rCache;
wire [25 : 0] cycler_cyclingFIFO_rCache$D_IN;
wire cycler_cyclingFIFO_rCache$EN;
// register cycler_cyclingFIFO_rRdPtr
reg [8 : 0] cycler_cyclingFIFO_rRdPtr;
wire [8 : 0] cycler_cyclingFIFO_rRdPtr$D_IN;
wire cycler_cyclingFIFO_rRdPtr$EN;
// register cycler_cyclingFIFO_rWrPtr
reg [8 : 0] cycler_cyclingFIFO_rWrPtr;
wire [8 : 0] cycler_cyclingFIFO_rWrPtr$D_IN;
wire cycler_cyclingFIFO_rWrPtr$EN;
// register cycler_displayer_bcdDecodedInput_0
reg [3 : 0] cycler_displayer_bcdDecodedInput_0;
wire [3 : 0] cycler_displayer_bcdDecodedInput_0$D_IN;
wire cycler_displayer_bcdDecodedInput_0$EN;
// register cycler_displayer_bcdDecodedInput_1
reg [3 : 0] cycler_displayer_bcdDecodedInput_1;
wire [3 : 0] cycler_displayer_bcdDecodedInput_1$D_IN;
wire cycler_displayer_bcdDecodedInput_1$EN;
// register cycler_displayer_bcdDecodedInput_2
reg [3 : 0] cycler_displayer_bcdDecodedInput_2;
wire [3 : 0] cycler_displayer_bcdDecodedInput_2$D_IN;
wire cycler_displayer_bcdDecodedInput_2$EN;
// register cycler_displayer_bcdDecodedInput_3
reg [3 : 0] cycler_displayer_bcdDecodedInput_3;
wire [3 : 0] cycler_displayer_bcdDecodedInput_3$D_IN;
wire cycler_displayer_bcdDecodedInput_3$EN;
// register cycler_displayer_clockDiv_ctr
reg [18 : 0] cycler_displayer_clockDiv_ctr;
wire [18 : 0] cycler_displayer_clockDiv_ctr$D_IN;
wire cycler_displayer_clockDiv_ctr$EN;
// register cycler_displayer_currentDigitIndex
reg [1 : 0] cycler_displayer_currentDigitIndex;
wire [1 : 0] cycler_displayer_currentDigitIndex$D_IN;
wire cycler_displayer_currentDigitIndex$EN;
// register cycler_displayer_doubleDabbleCtr
reg [3 : 0] cycler_displayer_doubleDabbleCtr;
wire [3 : 0] cycler_displayer_doubleDabbleCtr$D_IN;
wire cycler_displayer_doubleDabbleCtr$EN;
// register cycler_displayer_isNegative
reg cycler_displayer_isNegative;
wire cycler_displayer_isNegative$D_IN, cycler_displayer_isNegative$EN;
// register cycler_displayer_readyToDisplay
reg cycler_displayer_readyToDisplay;
wire cycler_displayer_readyToDisplay$D_IN,
cycler_displayer_readyToDisplay$EN;
// register cycler_displayer_toDisplay
reg [13 : 0] cycler_displayer_toDisplay;
wire [13 : 0] cycler_displayer_toDisplay$D_IN;
wire cycler_displayer_toDisplay$EN;
// register displayModule_bcdDecodedInput_0
reg [3 : 0] displayModule_bcdDecodedInput_0;
wire [3 : 0] displayModule_bcdDecodedInput_0$D_IN;
wire displayModule_bcdDecodedInput_0$EN;
// register displayModule_bcdDecodedInput_1
reg [3 : 0] displayModule_bcdDecodedInput_1;
wire [3 : 0] displayModule_bcdDecodedInput_1$D_IN;
wire displayModule_bcdDecodedInput_1$EN;
// register displayModule_bcdDecodedInput_2
reg [3 : 0] displayModule_bcdDecodedInput_2;
wire [3 : 0] displayModule_bcdDecodedInput_2$D_IN;
wire displayModule_bcdDecodedInput_2$EN;
// register displayModule_bcdDecodedInput_3
reg [3 : 0] displayModule_bcdDecodedInput_3;
wire [3 : 0] displayModule_bcdDecodedInput_3$D_IN;
wire displayModule_bcdDecodedInput_3$EN;
// register displayModule_clockDiv_ctr
reg [18 : 0] displayModule_clockDiv_ctr;
wire [18 : 0] displayModule_clockDiv_ctr$D_IN;
wire displayModule_clockDiv_ctr$EN;
// register displayModule_currentDigitIndex
reg [1 : 0] displayModule_currentDigitIndex;
wire [1 : 0] displayModule_currentDigitIndex$D_IN;
wire displayModule_currentDigitIndex$EN;
// register displayModule_doubleDabbleCtr
reg [3 : 0] displayModule_doubleDabbleCtr;
wire [3 : 0] displayModule_doubleDabbleCtr$D_IN;
wire displayModule_doubleDabbleCtr$EN;
// register displayModule_isNegative
reg displayModule_isNegative;
wire displayModule_isNegative$D_IN, displayModule_isNegative$EN;
// register displayModule_readyToDisplay
reg displayModule_readyToDisplay;
wire displayModule_readyToDisplay$D_IN, displayModule_readyToDisplay$EN;
// register displayModule_toDisplay
reg [13 : 0] displayModule_toDisplay;
wire [13 : 0] displayModule_toDisplay$D_IN;
wire displayModule_toDisplay$EN;
// register ledStatus
reg [15 : 0] ledStatus;
wire [15 : 0] ledStatus$D_IN;
wire ledStatus$EN;
// register leftInt_holdsNewValue
reg leftInt_holdsNewValue;
wire leftInt_holdsNewValue$D_IN, leftInt_holdsNewValue$EN;
// register leftInt_valueHolder
reg [31 : 0] leftInt_valueHolder;
wire [31 : 0] leftInt_valueHolder$D_IN;
wire leftInt_valueHolder$EN;
// register rightInt_holdsNewValue
reg rightInt_holdsNewValue;
wire rightInt_holdsNewValue$D_IN, rightInt_holdsNewValue$EN;
// register rightInt_valueHolder
reg [31 : 0] rightInt_valueHolder;
wire [31 : 0] rightInt_valueHolder$D_IN;
wire rightInt_valueHolder$EN;
// register toCompute_holdsNewValue
reg toCompute_holdsNewValue;
wire toCompute_holdsNewValue$D_IN, toCompute_holdsNewValue$EN;
// register toCompute_valueHolder
reg [2 : 0] toCompute_valueHolder;
wire [2 : 0] toCompute_valueHolder$D_IN;
wire toCompute_valueHolder$EN;
// ports of submodule cycler_cyclingFIFO_memory
wire [15 : 0] cycler_cyclingFIFO_memory$DIA,
cycler_cyclingFIFO_memory$DIB,
cycler_cyclingFIFO_memory$DOB;
wire [7 : 0] cycler_cyclingFIFO_memory$ADDRA,
cycler_cyclingFIFO_memory$ADDRB;
wire cycler_cyclingFIFO_memory$ENA,
cycler_cyclingFIFO_memory$ENB,
cycler_cyclingFIFO_memory$WEA,
cycler_cyclingFIFO_memory$WEB;
// rule scheduling signals
wire WILL_FIRE_RL_alu_fetchComputedPower,
WILL_FIRE_RL_alu_powerModule_signedStep,
WILL_FIRE_RL_alu_powerModule_unsignedStep,
WILL_FIRE_RL_alu_signedOperation,
WILL_FIRE_RL_alu_signedOperationDiv,
WILL_FIRE_RL_alu_startComputePower,
WILL_FIRE_RL_alu_unsignedOperation,
WILL_FIRE_RL_alu_unsignedOperationDiv,
WILL_FIRE_RL_computeAndDisplay,
WILL_FIRE_RL_cyclerFeeder_action_l111c9,
WILL_FIRE_RL_cyclerFeeder_action_l120c16,
WILL_FIRE_RL_cyclerFeeder_action_l121c18,
WILL_FIRE_RL_cyclerFeeder_action_l122c18,
WILL_FIRE_RL_cyclerFeeder_action_l123c9,
WILL_FIRE_RL_cyclerFeeder_action_l127c9,
WILL_FIRE_RL_cyclerFeeder_fsm_start,
WILL_FIRE_RL_cyclerFeeder_idle_l110c5,
WILL_FIRE_RL_cycler_cycle,
WILL_FIRE_RL_cycler_displayer_doubleDabble;
// inputs to muxes for submodule ports
reg [3 : 0] MUX_cycler_displayer_bcdDecodedInput_0$write_1__VAL_1,
MUX_cycler_displayer_bcdDecodedInput_1$write_1__VAL_1,
MUX_cycler_displayer_bcdDecodedInput_2$write_1__VAL_1;
wire [32 : 0] MUX_alu_powerModule_currentBase$write_1__VAL_2,
MUX_alu_powerModule_currentBase$write_1__VAL_3,
MUX_alu_powerModule_result$write_1__VAL_1,
MUX_alu_powerModule_result$write_1__VAL_2,
MUX_alu_powerModule_result$write_1__VAL_3,
MUX_alu_result$write_1__VAL_2,
MUX_alu_result$write_1__VAL_3;
wire [31 : 0] MUX_alu_powerModule_currentExponent$write_1__VAL_1,
MUX_alu_powerModule_currentExponent$write_1__VAL_2;
wire [15 : 0] MUX_cycler_cyclingFIFO_wDataIn$wset_1__VAL_1,
MUX_cycler_cyclingFIFO_wDataIn$wset_1__VAL_2,
MUX_cycler_cyclingFIFO_wDataIn$wset_1__VAL_4,
MUX_cycler_cyclingFIFO_wDataIn$wset_1__VAL_5;
wire [13 : 0] MUX_cycler_displayer_toDisplay$write_1__VAL_1,
MUX_cycler_displayer_toDisplay$write_1__VAL_2;
wire [3 : 0] MUX_alu_op$write_1__VAL_2,
MUX_cycler_displayer_bcdDecodedInput_0$write_1__VAL_2,
MUX_cycler_displayer_bcdDecodedInput_1$write_1__VAL_2,
MUX_cycler_displayer_bcdDecodedInput_2$write_1__VAL_2,
MUX_cycler_displayer_bcdDecodedInput_3$write_1__VAL_1,
MUX_cycler_displayer_bcdDecodedInput_3$write_1__VAL_2,
MUX_cycler_displayer_doubleDabbleCtr$write_1__VAL_2;
wire MUX_alu_powerModule_result$write_1__SEL_2,
MUX_alu_powerModule_result$write_1__SEL_3,
MUX_cycler_displayer_bcdDecodedInput_0$write_1__SEL_1,
MUX_cycler_displayer_bcdDecodedInput_1$write_1__SEL_1,
MUX_cycler_displayer_bcdDecodedInput_2$write_1__SEL_1,
MUX_cycler_displayer_bcdDecodedInput_3$write_1__SEL_1,
MUX_cycler_displayer_doubleDabbleCtr$write_1__SEL_1,
MUX_cycler_displayer_readyToDisplay$write_1__VAL_1,
MUX_toCompute_holdsNewValue$write_1__SEL_1;
// remaining internal signals
reg [31 : 0] IF_alu_op_0_BITS_2_TO_0_2_EQ_0_04_THEN_alu_lef_ETC___d119;
reg [3 : 0] CASE_cycler_cyclingFIFO_wDataOutwget_BITS_15__ETC__q5,
IF_cycler_cyclingFIFO_wDataOut_wget__77_BITS_1_ETC___d303,
IF_cycler_cyclingFIFO_wDataOut_wget__77_BITS_3_ETC___d318,
IF_cycler_cyclingFIFO_wDataOut_wget__77_BITS_5_ETC___d331,
IF_cycler_cyclingFIFO_wDataOut_wget__77_BITS_7_ETC___d350,
SEL_ARR_cycler_displayer_bcdDecodedInput_0_54__ETC___d159,
SEL_ARR_displayModule_bcdDecodedInput_0_0_disp_ETC___d15;
reg [1 : 0] CASE_cycler_cyclingFIFO_memoryDOB_BITS_15_TO__ETC__q3,
CASE_cycler_cyclingFIFO_rCache_BITS_15_TO_14_0_ETC__q2,
CASE_cycler_cyclingFIFO_wDataInwget_BITS_15_T_ETC__q6,
CASE_cycler_cyclingFIFO_wDataOutwget_BITS_15__ETC__q4;
wire [63 : 0] alu_leftOp_6_BITS_31_TO_0_05_MUL_alu_rightOp_8_ETC___d107,
alu_powerModule_currentBase_3_BITS_31_TO_0_3_M_ETC___d79,
alu_powerModule_result_0_BITS_31_TO_0_2_MUL_al_ETC___d74;
wire [15 : 0] IF_NOT_cycler_cyclingFIFO_wDataIn_whas__12_13__ETC___d226;
wire [10 : 0] IF_cycler_cyclingFIFO_wDataOut_wget__77_BIT_10_ETC___d292;
wire [8 : 0] x__h9721, x__h9833;
wire [3 : 0] IF_cycler_cyclingFIFO_wDataOut_wget__77_BITS_1_ETC___d301,
IF_cycler_displayer_bcdDecodedInput_0_54_ULE_4_ETC___d167,
IF_cycler_displayer_bcdDecodedInput_1_55_ULE_4_ETC___d176,
IF_cycler_displayer_bcdDecodedInput_2_56_ULE_4_ETC___d184,
IF_cycler_displayer_bcdDecodedInput_3_ULE_4_TH_ETC__q1,
IF_displayModule_bcdDecodedInput_0_0_ULE_4_1_T_ETC___d23,
IF_displayModule_bcdDecodedInput_1_1_ULE_4_0_T_ETC___d32,
IF_displayModule_bcdDecodedInput_2_2_ULE_4_8_T_ETC___d40,
IF_displayModule_bcdDecodedInput_3_ULE_4_THEN__ETC__q7,
x__h32724;
wire [2 : 0] IF_buttonStatus_1_71_THEN_2_ELSE_IF_buttonStat_ETC___d400;
wire IF_computeBuf_68_BIT_31_70_THEN_NEG_computeBuf_ETC___d474,
IF_cycler_cyclingFIFO_wDataOut_wget__77_BIT_10_ETC___d293,
NOT_0_CONCAT_switch_ifc_switches_switch_status_ETC___d508,
NOT_0_CONCAT_switch_ifc_switches_switch_status_ETC___d512,
NOT_buttonStatus_0_65_70_AND_buttonStatus_1_71_ETC___d396,
NOT_buttonStatus_1_71_75_AND_buttonStatus_2_76_ETC___d394,
NOT_buttonStatus_2_76_80_AND_buttonStatus_3_81_ETC___d392,
NOT_cycler_cyclingFIFO_rRdPtr_read__32_PLUS_12_ETC___d271,
_dfoo1,
alu_rightOp_8_BITS_31_TO_0_06_SLE_0___d137,
computeBuf_68_BITS_31_TO_0_71_ULE_9999___d479,
cyclerFeeder_abort_whas__05_AND_cyclerFeeder_a_ETC___d494,
cycler_cyclingFIFO_wDataOut_wget__77_BITS_13_T_ETC___d297,
cycler_cyclingFIFO_wDataOut_wget__77_BITS_15_T_ETC___d348;
// value method led_ifc_leds
assign led_ifc_leds = ledStatus ;
// value method serial_ifc_serialOut
assign serial_ifc_serialOut = 1'd1 ;
// value method display_ifc_disableSegmentsDisplay
always@(SEL_ARR_cycler_displayer_bcdDecodedInput_0_54__ETC___d159)
begin
case (SEL_ARR_cycler_displayer_bcdDecodedInput_0_54__ETC___d159)
4'd0: display_ifc_disableSegmentsDisplay = 7'b1000000;
4'd1: display_ifc_disableSegmentsDisplay = 7'b1111001;
4'd2: display_ifc_disableSegmentsDisplay = 7'b0100100;
4'd3: display_ifc_disableSegmentsDisplay = 7'b0110000;
4'd4: display_ifc_disableSegmentsDisplay = 7'b0011001;
4'd5: display_ifc_disableSegmentsDisplay = 7'b0010010;
4'd6: display_ifc_disableSegmentsDisplay = 7'b0000010;
4'd7: display_ifc_disableSegmentsDisplay = 7'b1111000;
4'd8: display_ifc_disableSegmentsDisplay = 7'b0;
4'd9: display_ifc_disableSegmentsDisplay = 7'b0010000;
4'd10: display_ifc_disableSegmentsDisplay = 7'b0111111;
4'd11: display_ifc_disableSegmentsDisplay = 7'b1110111;
default: display_ifc_disableSegmentsDisplay = 7'b1111111;
endcase
end
// value method display_ifc_disableDotDisplay
assign display_ifc_disableDotDisplay = 1'd1 ;
// value method display_ifc_disableDigitDisplay
assign display_ifc_disableDigitDisplay =
cycler_displayer_readyToDisplay ? ~x__h32724 : 4'd1 ;
// submodule cycler_cyclingFIFO_memory
BRAM2 #(.PIPELINED(1'd0),
.ADDR_WIDTH(32'd8),
.DATA_WIDTH(32'd16),
.MEMSIZE(9'd256)) cycler_cyclingFIFO_memory(.CLKA(CLK),
.CLKB(CLK),
.ADDRA(cycler_cyclingFIFO_memory$ADDRA),
.ADDRB(cycler_cyclingFIFO_memory$ADDRB),
.DIA(cycler_cyclingFIFO_memory$DIA),
.DIB(cycler_cyclingFIFO_memory$DIB),
.WEA(cycler_cyclingFIFO_memory$WEA),
.WEB(cycler_cyclingFIFO_memory$WEB),
.ENA(cycler_cyclingFIFO_memory$ENA),
.ENB(cycler_cyclingFIFO_memory$ENB),
.DOA(),
.DOB(cycler_cyclingFIFO_memory$DOB));
// rule RL_computeAndDisplay
assign WILL_FIRE_RL_computeAndDisplay =
cyclerFeeder_abort_whas__05_AND_cyclerFeeder_a_ETC___d494 &&
!cyclerFeeder_start_reg &&
(toCompute_holdsNewValue || leftInt_holdsNewValue ||
rightInt_holdsNewValue) ;
// rule RL_alu_signedOperation
assign WILL_FIRE_RL_alu_signedOperation =
alu_leftOp[32] && alu_rightOp[32] && alu_op[3] &&
alu_op[2:0] != 3'd6 &&
!alu_isDone &&
alu_op[2:0] != 3'd1 ;
// rule RL_alu_unsignedOperation
assign WILL_FIRE_RL_alu_unsignedOperation =
!alu_leftOp[32] && !alu_rightOp[32] && alu_op[3] &&
alu_op[2:0] != 3'd6 &&
!alu_isDone &&
alu_op[2:0] != 3'd1 ;
// rule RL_alu_signedOperationDiv
assign WILL_FIRE_RL_alu_signedOperationDiv =
alu_leftOp[32] && alu_rightOp[32] && alu_op[3] && !alu_isDone &&
alu_op[2:0] == 3'd1 ;
// rule RL_alu_unsignedOperationDiv
assign WILL_FIRE_RL_alu_unsignedOperationDiv =
!alu_leftOp[32] && !alu_rightOp[32] && alu_op[3] &&
!alu_isDone &&
alu_op[2:0] == 3'd1 ;
// rule RL_alu_fetchComputedPower
assign WILL_FIRE_RL_alu_fetchComputedPower =
alu_powerModule_currentExponent == 32'd0 && alu_op[3] &&
alu_op[2:0] == 3'd6 &&
alu_isQueued ;
// rule RL_alu_powerModule_unsignedStep
assign WILL_FIRE_RL_alu_powerModule_unsignedStep =
!alu_powerModule_result[32] &&
!alu_powerModule_currentBase[32] &&
alu_powerModule_currentExponent != 32'd0 ;
// rule RL_alu_powerModule_signedStep
assign WILL_FIRE_RL_alu_powerModule_signedStep =
alu_powerModule_result[32] && alu_powerModule_currentBase[32] &&
alu_powerModule_currentExponent != 32'd0 ;
// rule RL_alu_startComputePower
assign WILL_FIRE_RL_alu_startComputePower =
alu_op[3] && alu_op[2:0] == 3'd6 && !alu_isDone &&
!alu_isQueued ;
// rule RL_cycler_displayer_doubleDabble
assign WILL_FIRE_RL_cycler_displayer_doubleDabble =
cycler_displayer_doubleDabbleCtr < 4'd14 &&
!cycler_displayer_readyToDisplay ;
// rule RL_cycler_cycle
assign WILL_FIRE_RL_cycler_cycle =
cycler_cyclingFIFO_rRdPtr != cycler_cyclingFIFO_rWrPtr &&
NOT_cycler_cyclingFIFO_rRdPtr_read__32_PLUS_12_ETC___d271 &&
cycler_clockDiv_ctr == 32'd0 ;
// rule RL_cyclerFeeder_action_l120c16
assign WILL_FIRE_RL_cyclerFeeder_action_l120c16 =
NOT_cycler_cyclingFIFO_rRdPtr_read__32_PLUS_12_ETC___d271 &&
cyclerFeeder_state_mkFSMstate == 4'd2 &&
!WILL_FIRE_RL_cycler_cycle ;
// rule RL_cyclerFeeder_action_l121c18
assign WILL_FIRE_RL_cyclerFeeder_action_l121c18 =
NOT_cycler_cyclingFIFO_rRdPtr_read__32_PLUS_12_ETC___d271 &&
cyclerFeeder_state_mkFSMstate == 4'd3 &&
!WILL_FIRE_RL_cycler_cycle ;
// rule RL_cyclerFeeder_action_l122c18
assign WILL_FIRE_RL_cyclerFeeder_action_l122c18 =
NOT_cycler_cyclingFIFO_rRdPtr_read__32_PLUS_12_ETC___d271 &&
cyclerFeeder_state_mkFSMstate == 4'd4 &&
!WILL_FIRE_RL_cycler_cycle ;
// rule RL_cyclerFeeder_action_l123c9
assign WILL_FIRE_RL_cyclerFeeder_action_l123c9 =
alu_isDone && cyclerFeeder_state_mkFSMstate == 4'd5 &&
!WILL_FIRE_RL_alu_fetchComputedPower ;
// rule RL_cyclerFeeder_action_l127c9
assign WILL_FIRE_RL_cyclerFeeder_action_l127c9 =
NOT_cycler_cyclingFIFO_rRdPtr_read__32_PLUS_12_ETC___d271 &&
cyclerFeeder_state_mkFSMstate == 4'd6 &&
!WILL_FIRE_RL_cycler_cycle ;
// rule RL_cyclerFeeder_fsm_start
assign WILL_FIRE_RL_cyclerFeeder_fsm_start =
cyclerFeeder_abort_whas__05_AND_cyclerFeeder_a_ETC___d494 &&
cyclerFeeder_start_reg ;
// rule RL_cyclerFeeder_action_l111c9
assign WILL_FIRE_RL_cyclerFeeder_action_l111c9 =
!alu_isDone && cyclerFeeder_start_wire$whas &&
(cyclerFeeder_state_mkFSMstate == 4'd0 ||
cyclerFeeder_state_mkFSMstate == 4'd7) &&
!WILL_FIRE_RL_alu_fetchComputedPower &&
!WILL_FIRE_RL_alu_unsignedOperationDiv &&
!WILL_FIRE_RL_alu_unsignedOperation &&
!WILL_FIRE_RL_alu_signedOperationDiv &&
!WILL_FIRE_RL_alu_signedOperation ;
// rule RL_cyclerFeeder_idle_l110c5
assign WILL_FIRE_RL_cyclerFeeder_idle_l110c5 =
!cyclerFeeder_start_wire$whas &&
cyclerFeeder_state_mkFSMstate == 4'd7 ;
// inputs to muxes for submodule ports
assign MUX_alu_powerModule_result$write_1__SEL_2 =
WILL_FIRE_RL_alu_powerModule_signedStep &&
alu_powerModule_currentExponent[0] ;
assign MUX_alu_powerModule_result$write_1__SEL_3 =
WILL_FIRE_RL_alu_powerModule_unsignedStep &&
alu_powerModule_currentExponent[0] ;
assign MUX_cycler_displayer_bcdDecodedInput_0$write_1__SEL_1 =
WILL_FIRE_RL_cycler_cycle &&
(cycler_cyclingFIFO_wDataOut$wget[15:14] == 2'd0 ||
cycler_cyclingFIFO_wDataOut$wget[15:14] == 2'd1 ||
cycler_cyclingFIFO_wDataOut$wget[1:0] == 2'd1 ||
cycler_cyclingFIFO_wDataOut$wget[1:0] == 2'd0 ||
cycler_cyclingFIFO_wDataOut$wget[1:0] == 2'd2) ;
assign MUX_cycler_displayer_bcdDecodedInput_1$write_1__SEL_1 =
WILL_FIRE_RL_cycler_cycle &&
(cycler_cyclingFIFO_wDataOut$wget[15:14] == 2'd0 ||
cycler_cyclingFIFO_wDataOut$wget[15:14] == 2'd1 ||
cycler_cyclingFIFO_wDataOut$wget[15:14] == 2'd2 &&
(cycler_cyclingFIFO_wDataOut$wget[1:0] == 2'd1 ||
cycler_cyclingFIFO_wDataOut$wget[1:0] == 2'd0 ||
cycler_cyclingFIFO_wDataOut$wget[1:0] == 2'd2) ||
cycler_cyclingFIFO_wDataOut$wget[15:14] != 2'd2 &&
(cycler_cyclingFIFO_wDataOut$wget[3:2] == 2'd1 ||
cycler_cyclingFIFO_wDataOut$wget[3:2] == 2'd0 ||
cycler_cyclingFIFO_wDataOut$wget[3:2] == 2'd2)) ;
assign MUX_cycler_displayer_bcdDecodedInput_2$write_1__SEL_1 =
WILL_FIRE_RL_cycler_cycle &&
(cycler_cyclingFIFO_wDataOut$wget[15:14] == 2'd0 ||
cycler_cyclingFIFO_wDataOut$wget[15:14] == 2'd1 ||
cycler_cyclingFIFO_wDataOut$wget[15:14] == 2'd2 &&
(cycler_cyclingFIFO_wDataOut$wget[1:0] == 2'd1 ||
cycler_cyclingFIFO_wDataOut$wget[1:0] == 2'd0 ||
cycler_cyclingFIFO_wDataOut$wget[1:0] == 2'd2) ||
cycler_cyclingFIFO_wDataOut$wget[15:14] != 2'd2 &&
(cycler_cyclingFIFO_wDataOut$wget[5:4] == 2'd1 ||
cycler_cyclingFIFO_wDataOut$wget[5:4] == 2'd0 ||
cycler_cyclingFIFO_wDataOut$wget[5:4] == 2'd2)) ;
assign MUX_cycler_displayer_bcdDecodedInput_3$write_1__SEL_1 =
WILL_FIRE_RL_cycler_cycle && _dfoo1 ;
assign MUX_cycler_displayer_doubleDabbleCtr$write_1__SEL_1 =
WILL_FIRE_RL_cycler_cycle &&
(cycler_cyclingFIFO_wDataOut$wget[15:14] == 2'd0 ||
cycler_cyclingFIFO_wDataOut$wget[15:14] == 2'd1) &&
(cycler_cyclingFIFO_wDataOut$wget[15:14] != 2'd1 ||
IF_cycler_cyclingFIFO_wDataOut_wget__77_BIT_10_ETC___d293) &&
(cycler_cyclingFIFO_wDataOut$wget[15:14] != 2'd0 ||
cycler_cyclingFIFO_wDataOut_wget__77_BITS_13_T_ETC___d297) ;
assign MUX_toCompute_holdsNewValue$write_1__SEL_1 =
buttonStatus_0 && toCompute_valueHolder != 3'd3 ||
NOT_buttonStatus_0_65_70_AND_buttonStatus_1_71_ETC___d396 ;
assign MUX_alu_op$write_1__VAL_2 = { 1'd1, toCompute_valueHolder } ;
assign MUX_alu_powerModule_currentBase$write_1__VAL_2 =
{ 1'd1,
alu_powerModule_currentBase_3_BITS_31_TO_0_3_M_ETC___d79[31:0] } ;
assign MUX_alu_powerModule_currentBase$write_1__VAL_3 =
{ 1'd0,
alu_powerModule_currentBase_3_BITS_31_TO_0_3_M_ETC___d79[31:0] } ;
assign MUX_alu_powerModule_currentExponent$write_1__VAL_1 =
(alu_rightOp[32] &&
!alu_rightOp_8_BITS_31_TO_0_06_SLE_0___d137) ?
alu_rightOp[31:0] :
((alu_rightOp[32] &&
alu_rightOp_8_BITS_31_TO_0_06_SLE_0___d137) ?
32'd0 :
alu_rightOp[31:0]) ;
assign MUX_alu_powerModule_currentExponent$write_1__VAL_2 =
{ 1'd0, alu_powerModule_currentExponent[31:1] } ;
assign MUX_alu_powerModule_result$write_1__VAL_1 =
alu_leftOp[32] ? 33'h100000001 : 33'd1 ;
assign MUX_alu_powerModule_result$write_1__VAL_2 =
{ 1'd1,
alu_powerModule_result_0_BITS_31_TO_0_2_MUL_al_ETC___d74[31:0] } ;
assign MUX_alu_powerModule_result$write_1__VAL_3 =
{ 1'd0,
alu_powerModule_result_0_BITS_31_TO_0_2_MUL_al_ETC___d74[31:0] } ;
assign MUX_alu_result$write_1__VAL_2 =
{ 1'd1,
IF_alu_op_0_BITS_2_TO_0_2_EQ_0_04_THEN_alu_lef_ETC___d119 } ;
assign MUX_alu_result$write_1__VAL_3 =
{ 1'd0,
IF_alu_op_0_BITS_2_TO_0_2_EQ_0_04_THEN_alu_lef_ETC___d119 } ;
assign MUX_cycler_cyclingFIFO_wDataIn$wset_1__VAL_1 =
{ 2'd0, leftInt_valueHolder[13:0] } ;
assign MUX_cycler_cyclingFIFO_wDataIn$wset_1__VAL_2 =
{ 2'd0, rightInt_valueHolder[13:0] } ;
assign MUX_cycler_cyclingFIFO_wDataIn$wset_1__VAL_4 =
{ CASE_cycler_cyclingFIFO_wDataOutwget_BITS_15__ETC__q4,
cycler_cyclingFIFO_wDataOut$wget[13:0] } ;
assign MUX_cycler_cyclingFIFO_wDataIn$wset_1__VAL_5 =
computeBuf[32] ?
(IF_computeBuf_68_BIT_31_70_THEN_NEG_computeBuf_ETC___d474 ?
{ 2'd1, computeBuf[13:0] } :
16'd43689) :
(computeBuf_68_BITS_31_TO_0_71_ULE_9999___d479 ?
{ 2'd0, computeBuf[13:0] } :
16'd43689) ;
always@(cycler_cyclingFIFO_wDataOut$wget or
IF_cycler_cyclingFIFO_wDataOut_wget__77_BITS_1_ETC___d303 or
IF_cycler_cyclingFIFO_wDataOut_wget__77_BITS_1_ETC___d301)
begin
case (cycler_cyclingFIFO_wDataOut$wget[15:14])
2'd0, 2'd1:
MUX_cycler_displayer_bcdDecodedInput_0$write_1__VAL_1 =
IF_cycler_cyclingFIFO_wDataOut_wget__77_BITS_1_ETC___d301;
default: MUX_cycler_displayer_bcdDecodedInput_0$write_1__VAL_1 =
IF_cycler_cyclingFIFO_wDataOut_wget__77_BITS_1_ETC___d303;
endcase
end
assign MUX_cycler_displayer_bcdDecodedInput_0$write_1__VAL_2 =
{ IF_cycler_displayer_bcdDecodedInput_0_54_ULE_4_ETC___d167[2:0],
1'd0 } +
{ 3'd0, cycler_displayer_toDisplay[13] } ;
always@(cycler_cyclingFIFO_wDataOut$wget or
IF_cycler_cyclingFIFO_wDataOut_wget__77_BITS_3_ETC___d318 or
IF_cycler_cyclingFIFO_wDataOut_wget__77_BITS_1_ETC___d301 or
IF_cycler_cyclingFIFO_wDataOut_wget__77_BITS_1_ETC___d303)
begin
case (cycler_cyclingFIFO_wDataOut$wget[15:14])
2'd0, 2'd1:
MUX_cycler_displayer_bcdDecodedInput_1$write_1__VAL_1 =
IF_cycler_cyclingFIFO_wDataOut_wget__77_BITS_1_ETC___d301;
2'd2:
MUX_cycler_displayer_bcdDecodedInput_1$write_1__VAL_1 =
IF_cycler_cyclingFIFO_wDataOut_wget__77_BITS_1_ETC___d303;
2'd3:
MUX_cycler_displayer_bcdDecodedInput_1$write_1__VAL_1 =
IF_cycler_cyclingFIFO_wDataOut_wget__77_BITS_3_ETC___d318;
endcase
end
assign MUX_cycler_displayer_bcdDecodedInput_1$write_1__VAL_2 =
{ IF_cycler_displayer_bcdDecodedInput_1_55_ULE_4_ETC___d176[2:0],
1'd0 } +
{ 3'd0,
IF_cycler_displayer_bcdDecodedInput_0_54_ULE_4_ETC___d167[3] } ;
always@(cycler_cyclingFIFO_wDataOut$wget or
IF_cycler_cyclingFIFO_wDataOut_wget__77_BITS_5_ETC___d331 or
IF_cycler_cyclingFIFO_wDataOut_wget__77_BITS_1_ETC___d301 or
IF_cycler_cyclingFIFO_wDataOut_wget__77_BITS_1_ETC___d303)
begin
case (cycler_cyclingFIFO_wDataOut$wget[15:14])
2'd0, 2'd1:
MUX_cycler_displayer_bcdDecodedInput_2$write_1__VAL_1 =
IF_cycler_cyclingFIFO_wDataOut_wget__77_BITS_1_ETC___d301;
2'd2:
MUX_cycler_displayer_bcdDecodedInput_2$write_1__VAL_1 =
IF_cycler_cyclingFIFO_wDataOut_wget__77_BITS_1_ETC___d303;
2'd3:
MUX_cycler_displayer_bcdDecodedInput_2$write_1__VAL_1 =
IF_cycler_cyclingFIFO_wDataOut_wget__77_BITS_5_ETC___d331;
endcase
end
assign MUX_cycler_displayer_bcdDecodedInput_2$write_1__VAL_2 =
{ IF_cycler_displayer_bcdDecodedInput_2_56_ULE_4_ETC___d184[2:0],
1'd0 } +
{ 3'd0,
IF_cycler_displayer_bcdDecodedInput_1_55_ULE_4_ETC___d176[3] } ;
assign MUX_cycler_displayer_bcdDecodedInput_3$write_1__VAL_1 =
cycler_cyclingFIFO_wDataOut_wget__77_BITS_15_T_ETC___d348 ?
CASE_cycler_cyclingFIFO_wDataOutwget_BITS_15__ETC__q5 :
((cycler_cyclingFIFO_wDataOut$wget[15:14] == 2'd1 &&
cycler_cyclingFIFO_wDataOut$wget[10]) ?
4'd10 :
4'd0) ;
assign MUX_cycler_displayer_bcdDecodedInput_3$write_1__VAL_2 =
cycler_displayer_isNegative ?
cycler_displayer_bcdDecodedInput_3 :
{ IF_cycler_displayer_bcdDecodedInput_3_ULE_4_TH_ETC__q1[2:0],
1'd0 } +
{ 3'd0,
IF_cycler_displayer_bcdDecodedInput_2_56_ULE_4_ETC___d184[3] } ;
assign MUX_cycler_displayer_doubleDabbleCtr$write_1__VAL_2 =
cycler_displayer_doubleDabbleCtr + 4'd1 ;
assign MUX_cycler_displayer_readyToDisplay$write_1__VAL_1 =
cycler_cyclingFIFO_wDataOut$wget[15:14] != 2'd0 &&
cycler_cyclingFIFO_wDataOut$wget[15:14] != 2'd1 ||
cycler_cyclingFIFO_wDataOut$wget[15:14] == 2'd1 &&
!IF_cycler_cyclingFIFO_wDataOut_wget__77_BIT_10_ETC___d293 ||
cycler_cyclingFIFO_wDataOut$wget[15:14] == 2'd0 &&
!cycler_cyclingFIFO_wDataOut_wget__77_BITS_13_T_ETC___d297 ;
assign MUX_cycler_displayer_toDisplay$write_1__VAL_1 =
(cycler_cyclingFIFO_wDataOut$wget[15:14] == 2'd0) ?
cycler_cyclingFIFO_wDataOut$wget[13:0] :
{ 3'd0,
IF_cycler_cyclingFIFO_wDataOut_wget__77_BIT_10_ETC___d292 } ;
assign MUX_cycler_displayer_toDisplay$write_1__VAL_2 =
{ cycler_displayer_toDisplay[12:0], 1'd0 } ;
// inlined wires
always@(WILL_FIRE_RL_cyclerFeeder_action_l121c18 or
MUX_cycler_cyclingFIFO_wDataIn$wset_1__VAL_1 or
WILL_FIRE_RL_cyclerFeeder_action_l122c18 or
MUX_cycler_cyclingFIFO_wDataIn$wset_1__VAL_2 or
WILL_FIRE_RL_cyclerFeeder_action_l120c16 or
WILL_FIRE_RL_cycler_cycle or
MUX_cycler_cyclingFIFO_wDataIn$wset_1__VAL_4 or
WILL_FIRE_RL_cyclerFeeder_action_l127c9 or
MUX_cycler_cyclingFIFO_wDataIn$wset_1__VAL_5)
begin
case (1'b1) // synopsys parallel_case
WILL_FIRE_RL_cyclerFeeder_action_l121c18:
cycler_cyclingFIFO_wDataIn$wget =
MUX_cycler_cyclingFIFO_wDataIn$wset_1__VAL_1;
WILL_FIRE_RL_cyclerFeeder_action_l122c18:
cycler_cyclingFIFO_wDataIn$wget =
MUX_cycler_cyclingFIFO_wDataIn$wset_1__VAL_2;
WILL_FIRE_RL_cyclerFeeder_action_l120c16:
cycler_cyclingFIFO_wDataIn$wget = 16'd43690;
WILL_FIRE_RL_cycler_cycle:
cycler_cyclingFIFO_wDataIn$wget =
MUX_cycler_cyclingFIFO_wDataIn$wset_1__VAL_4;
WILL_FIRE_RL_cyclerFeeder_action_l127c9:
cycler_cyclingFIFO_wDataIn$wget =
MUX_cycler_cyclingFIFO_wDataIn$wset_1__VAL_5;
default: cycler_cyclingFIFO_wDataIn$wget =
16'b1010101010101010 /* unspecified value */ ;
endcase
end
assign cycler_cyclingFIFO_wDataIn$whas =
WILL_FIRE_RL_cyclerFeeder_action_l121c18 ||
WILL_FIRE_RL_cyclerFeeder_action_l122c18 ||
WILL_FIRE_RL_cyclerFeeder_action_l120c16 ||
WILL_FIRE_RL_cycler_cycle ||
WILL_FIRE_RL_cyclerFeeder_action_l127c9 ;
assign cycler_cyclingFIFO_wDataOut$wget =
(cycler_cyclingFIFO_rCache[25] &&
cycler_cyclingFIFO_rCache[24:16] == cycler_cyclingFIFO_rRdPtr) ?
{ CASE_cycler_cyclingFIFO_rCache_BITS_15_TO_14_0_ETC__q2,
cycler_cyclingFIFO_rCache[13:0] } :
{ CASE_cycler_cyclingFIFO_memoryDOB_BITS_15_TO__ETC__q3,
cycler_cyclingFIFO_memory$DOB[13:0] } ;
assign cyclerFeeder_start_wire$whas =
WILL_FIRE_RL_cyclerFeeder_fsm_start ||
cyclerFeeder_start_reg_1 && !cyclerFeeder_state_fired ;
assign cycler_cyclingFIFO_pwEnqueue$whas =
WILL_FIRE_RL_cycler_cycle ||
WILL_FIRE_RL_cyclerFeeder_action_l127c9 ||
WILL_FIRE_RL_cyclerFeeder_action_l122c18 ||
WILL_FIRE_RL_cyclerFeeder_action_l121c18 ||
WILL_FIRE_RL_cyclerFeeder_action_l120c16 ;
assign cyclerFeeder_state_set_pw$whas =
WILL_FIRE_RL_cyclerFeeder_idle_l110c5 ||
WILL_FIRE_RL_cyclerFeeder_action_l127c9 ||
WILL_FIRE_RL_cyclerFeeder_action_l123c9 ||
WILL_FIRE_RL_cyclerFeeder_action_l122c18 ||
WILL_FIRE_RL_cyclerFeeder_action_l121c18 ||
WILL_FIRE_RL_cyclerFeeder_action_l120c16 ||
cyclerFeeder_state_mkFSMstate == 4'd1 ||
WILL_FIRE_RL_cyclerFeeder_action_l111c9 ;
// register alu_isDone
assign alu_isDone$D_IN = !WILL_FIRE_RL_cyclerFeeder_action_l123c9 ;
assign alu_isDone$EN =
WILL_FIRE_RL_cyclerFeeder_action_l123c9 ||
WILL_FIRE_RL_alu_unsignedOperationDiv ||
WILL_FIRE_RL_alu_signedOperationDiv ||
WILL_FIRE_RL_alu_unsignedOperation ||
WILL_FIRE_RL_alu_signedOperation ||
WILL_FIRE_RL_alu_fetchComputedPower ;
// register alu_isQueued
assign alu_isQueued$D_IN = !WILL_FIRE_RL_alu_fetchComputedPower ;
assign alu_isQueued$EN =
WILL_FIRE_RL_alu_fetchComputedPower ||
WILL_FIRE_RL_alu_startComputePower ;
// register alu_leftOp
assign alu_leftOp$D_IN = { 1'd0, leftInt_valueHolder } ;
assign alu_leftOp$EN = WILL_FIRE_RL_cyclerFeeder_action_l111c9 ;
// register alu_op
assign alu_op$D_IN =
WILL_FIRE_RL_cyclerFeeder_action_l123c9 ?
4'd2 :
MUX_alu_op$write_1__VAL_2 ;
assign alu_op$EN =
WILL_FIRE_RL_cyclerFeeder_action_l123c9 ||
WILL_FIRE_RL_cyclerFeeder_action_l111c9 ;
// register alu_powerModule_currentBase
always@(WILL_FIRE_RL_alu_startComputePower or
alu_leftOp or
WILL_FIRE_RL_alu_powerModule_signedStep or
MUX_alu_powerModule_currentBase$write_1__VAL_2 or
WILL_FIRE_RL_alu_powerModule_unsignedStep or
MUX_alu_powerModule_currentBase$write_1__VAL_3)
case (1'b1)
WILL_FIRE_RL_alu_startComputePower:
alu_powerModule_currentBase$D_IN = alu_leftOp;
WILL_FIRE_RL_alu_powerModule_signedStep:
alu_powerModule_currentBase$D_IN =
MUX_alu_powerModule_currentBase$write_1__VAL_2;
WILL_FIRE_RL_alu_powerModule_unsignedStep:
alu_powerModule_currentBase$D_IN =
MUX_alu_powerModule_currentBase$write_1__VAL_3;
default: alu_powerModule_currentBase$D_IN =
33'h0AAAAAAAA /* unspecified value */ ;
endcase
assign alu_powerModule_currentBase$EN =
WILL_FIRE_RL_alu_startComputePower ||
WILL_FIRE_RL_alu_powerModule_unsignedStep ||
WILL_FIRE_RL_alu_powerModule_signedStep ;
// register alu_powerModule_currentExponent
always@(WILL_FIRE_RL_alu_startComputePower or
MUX_alu_powerModule_currentExponent$write_1__VAL_1 or
WILL_FIRE_RL_alu_powerModule_signedStep or
MUX_alu_powerModule_currentExponent$write_1__VAL_2 or
WILL_FIRE_RL_alu_powerModule_unsignedStep)
case (1'b1)
WILL_FIRE_RL_alu_startComputePower:
alu_powerModule_currentExponent$D_IN =
MUX_alu_powerModule_currentExponent$write_1__VAL_1;
WILL_FIRE_RL_alu_powerModule_signedStep:
alu_powerModule_currentExponent$D_IN =
MUX_alu_powerModule_currentExponent$write_1__VAL_2;
WILL_FIRE_RL_alu_powerModule_unsignedStep:
alu_powerModule_currentExponent$D_IN =
MUX_alu_powerModule_currentExponent$write_1__VAL_2;
default: alu_powerModule_currentExponent$D_IN =
32'hAAAAAAAA /* unspecified value */ ;
endcase
assign alu_powerModule_currentExponent$EN =
WILL_FIRE_RL_alu_powerModule_signedStep ||
WILL_FIRE_RL_alu_powerModule_unsignedStep ||
WILL_FIRE_RL_alu_startComputePower ;
// register alu_powerModule_result
always@(WILL_FIRE_RL_alu_startComputePower or
MUX_alu_powerModule_result$write_1__VAL_1 or
MUX_alu_powerModule_result$write_1__SEL_2 or
MUX_alu_powerModule_result$write_1__VAL_2 or
MUX_alu_powerModule_result$write_1__SEL_3 or
MUX_alu_powerModule_result$write_1__VAL_3)
case (1'b1)
WILL_FIRE_RL_alu_startComputePower:
alu_powerModule_result$D_IN =
MUX_alu_powerModule_result$write_1__VAL_1;
MUX_alu_powerModule_result$write_1__SEL_2:
alu_powerModule_result$D_IN =
MUX_alu_powerModule_result$write_1__VAL_2;