Skip to content

Commit 5495d75

Browse files
committed
redundant comments
1 parent c6f1d92 commit 5495d75

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

src/mame/adp/stellafr.cpp

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ enum
150150
PORT_B_DOOR_SOUT
151151
};
152152

153-
// U1 and U5 handle outputs
153+
// outputs
154154
enum
155155
{
156156
U1_1MA,
@@ -175,7 +175,7 @@ enum
175175
U5_EMUX2
176176
};
177177

178-
// U10 handles inputs
178+
// inputs
179179
enum
180180
{
181181
U10_OUTLI,
@@ -233,8 +233,6 @@ class stellafr_state : public driver_device
233233

234234
uint8_t stellafr_state::mux_r()
235235
{
236-
// U10
237-
238236
bool li = false;
239237
bool emp = false;
240238
bool ma = false;
@@ -280,12 +278,10 @@ void stellafr_state::mux_w(uint8_t data)
280278
LOG("EnMUX/MUXMA %d\n",enmux);
281279
LOG("EnANZ2 %d\n",enanz2);
282280
LOG("EnMUX2 %d\n",enmux2);
283-
// U5
284281
}
285282

286283
void stellafr_state::mux2_w(uint8_t data)
287284
{
288-
// U1
289285
bool ma1 = BIT(data,U1_1MA);
290286
bool ma2 = BIT(data,U1_2MA);
291287
bool me = BIT(data,U1_ME);

0 commit comments

Comments
 (0)