-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVendingMachine.v
204 lines (204 loc) · 7.15 KB
/
VendingMachine.v
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
module VendingMachine( // @[:@3.2]
input clock, // @[:@4.4]
input reset, // @[:@5.4]
input io_nickel, // @[:@6.4]
input io_dime, // @[:@6.4]
output io_valid // @[:@6.4]
);
reg [2:0] state; // @[VendingMachine.scala 19:22:@8.4]
reg [31:0] _RAND_0;
wire _T_12; // @[VendingMachine.scala 20:15:@9.4]
wire [2:0] _GEN_0; // @[VendingMachine.scala 21:22:@11.6]
wire [2:0] _GEN_1; // @[VendingMachine.scala 22:22:@14.6]
wire [2:0] _GEN_2; // @[VendingMachine.scala 20:26:@10.4]
wire _T_13; // @[VendingMachine.scala 24:15:@18.4]
wire [2:0] _GEN_3; // @[VendingMachine.scala 25:22:@20.6]
wire [2:0] _GEN_4; // @[VendingMachine.scala 26:22:@23.6]
wire [2:0] _GEN_5; // @[VendingMachine.scala 24:23:@19.4]
wire _T_14; // @[VendingMachine.scala 28:15:@27.4]
wire [2:0] _GEN_6; // @[VendingMachine.scala 29:22:@29.6]
wire [2:0] _GEN_7; // @[VendingMachine.scala 30:22:@32.6]
wire [2:0] _GEN_8; // @[VendingMachine.scala 28:24:@28.4]
wire _T_15; // @[VendingMachine.scala 32:15:@36.4]
wire [2:0] _GEN_9; // @[VendingMachine.scala 33:22:@38.6]
wire [2:0] _GEN_10; // @[VendingMachine.scala 34:22:@41.6]
wire [2:0] _GEN_11; // @[VendingMachine.scala 32:24:@37.4]
wire _T_16; // @[VendingMachine.scala 36:15:@45.4]
wire [2:0] _GEN_12; // @[VendingMachine.scala 36:24:@46.4]
assign _T_12 = state == 3'h0; // @[VendingMachine.scala 20:15:@9.4]
assign _GEN_0 = io_nickel ? 3'h1 : state; // @[VendingMachine.scala 21:22:@11.6]
assign _GEN_1 = io_dime ? 3'h2 : _GEN_0; // @[VendingMachine.scala 22:22:@14.6]
assign _GEN_2 = _T_12 ? _GEN_1 : state; // @[VendingMachine.scala 20:26:@10.4]
assign _T_13 = state == 3'h1; // @[VendingMachine.scala 24:15:@18.4]
assign _GEN_3 = io_nickel ? 3'h2 : _GEN_2; // @[VendingMachine.scala 25:22:@20.6]
assign _GEN_4 = io_dime ? 3'h3 : _GEN_3; // @[VendingMachine.scala 26:22:@23.6]
assign _GEN_5 = _T_13 ? _GEN_4 : _GEN_2; // @[VendingMachine.scala 24:23:@19.4]
assign _T_14 = state == 3'h2; // @[VendingMachine.scala 28:15:@27.4]
assign _GEN_6 = io_nickel ? 3'h3 : _GEN_5; // @[VendingMachine.scala 29:22:@29.6]
assign _GEN_7 = io_dime ? 3'h4 : _GEN_6; // @[VendingMachine.scala 30:22:@32.6]
assign _GEN_8 = _T_14 ? _GEN_7 : _GEN_5; // @[VendingMachine.scala 28:24:@28.4]
assign _T_15 = state == 3'h3; // @[VendingMachine.scala 32:15:@36.4]
assign _GEN_9 = io_nickel ? 3'h4 : _GEN_8; // @[VendingMachine.scala 33:22:@38.6]
assign _GEN_10 = io_dime ? 3'h4 : _GEN_9; // @[VendingMachine.scala 34:22:@41.6]
assign _GEN_11 = _T_15 ? _GEN_10 : _GEN_8; // @[VendingMachine.scala 32:24:@37.4]
assign _T_16 = state == 3'h4; // @[VendingMachine.scala 36:15:@45.4]
assign _GEN_12 = _T_16 ? 3'h0 : _GEN_11; // @[VendingMachine.scala 36:24:@46.4]
assign io_valid = state == 3'h4; // @[VendingMachine.scala 39:12:@50.4]
`ifdef RANDOMIZE_GARBAGE_ASSIGN
`define RANDOMIZE
`endif
`ifdef RANDOMIZE_INVALID_ASSIGN
`define RANDOMIZE
`endif
`ifdef RANDOMIZE_REG_INIT
`define RANDOMIZE
`endif
`ifdef RANDOMIZE_MEM_INIT
`define RANDOMIZE
`endif
`ifndef RANDOM
`define RANDOM $random
`endif
`ifdef RANDOMIZE
integer initvar;
initial begin
`ifdef INIT_RANDOM
`INIT_RANDOM
`endif
`ifndef VERILATOR
#0.002 begin end
`endif
`ifdef RANDOMIZE_REG_INIT
_RAND_0 = {1{`RANDOM}};
state = _RAND_0[2:0];
`endif // RANDOMIZE_REG_INIT
end
`endif // RANDOMIZE
always @(posedge clock) begin
if (reset) begin
state <= 3'h0;
end else begin
if (_T_16) begin
state <= 3'h0;
end else begin
if (_T_15) begin
if (io_dime) begin
state <= 3'h4;
end else begin
if (io_nickel) begin
state <= 3'h4;
end else begin
if (_T_14) begin
if (io_dime) begin
state <= 3'h4;
end else begin
if (io_nickel) begin
state <= 3'h3;
end else begin
if (_T_13) begin
if (io_dime) begin
state <= 3'h3;
end else begin
if (io_nickel) begin
state <= 3'h2;
end else begin
if (_T_12) begin
if (io_dime) begin
state <= 3'h2;
end else begin
if (io_nickel) begin
state <= 3'h1;
end
end
end
end
end
end else begin
if (_T_12) begin
if (io_dime) begin
state <= 3'h2;
end else begin
if (io_nickel) begin
state <= 3'h1;
end
end
end
end
end
end
end else begin
if (_T_13) begin
if (io_dime) begin
state <= 3'h3;
end else begin
if (io_nickel) begin
state <= 3'h2;
end else begin
if (_T_12) begin
if (io_dime) begin
state <= 3'h2;
end else begin
if (io_nickel) begin
state <= 3'h1;
end
end
end
end
end
end else begin
if (_T_12) begin
if (io_dime) begin
state <= 3'h2;
end else begin
if (io_nickel) begin
state <= 3'h1;
end
end
end
end
end
end
end
end else begin
if (_T_14) begin
if (io_dime) begin
state <= 3'h4;
end else begin
if (io_nickel) begin
state <= 3'h3;
end else begin
if (_T_13) begin
if (io_dime) begin
state <= 3'h3;
end else begin
if (io_nickel) begin
state <= 3'h2;
end else begin
state <= _GEN_2;
end
end
end else begin
state <= _GEN_2;
end
end
end
end else begin
if (_T_13) begin
if (io_dime) begin
state <= 3'h3;
end else begin
if (io_nickel) begin
state <= 3'h2;
end else begin
state <= _GEN_2;
end
end
end else begin
state <= _GEN_2;
end
end
end
end
end
end
endmodule