Previous 199869 Revisions Next

r30895 Sunday 8th June, 2014 at 22:50:56 UTC by hap
comment out printfs
[src/mame/drivers]kenseim.c

trunk/src/mame/drivers/kenseim.c
r30894r30895
11/* Kensei Mogura
2  aka Street Fighter II Whac-a-mole game */
2  aka Street Fighter II Whack-a-mole game */
33
44/*
55  this game uses a CPS1 board as the 'Video board'
r30894r30895
3838  |                                                           MB89363B                                     pin) |
3939  |                    TMPZ84C011-8                                                    TLP521-4                 |
4040  |         16.00Mhz    (rotated 180                                                                        C   |
41  |                       degress)                                                                          N   |
41  |                       degrees)                                                                          N   |
4242  |                                                                                                         4   |
4343  |                                                                                                       (4    |
4444  |                                                                                                        pin) |
r30894r30895
333333
334334WRITE8_MEMBER(kenseim_state::i8255_porta_w) // maybe molesa output? (6-bits?)
335335{
336   if (data&0xc0) printf("%s i8255 write %02x to port A (mole output 1?)\n", machine().describe_context(), data);
336   //if (data&0xc0) printf("%s i8255 write %02x to port A (mole output 1?)\n", machine().describe_context(), data);
337337
338338
339339   for (int i = 0; i < 6; i++)
r30894r30895
352352
353353WRITE8_MEMBER(kenseim_state::i8255_portb_w) // maybe molesb output? (6-bits?)
354354{
355   if (data&0xc0) printf("%s i8255 write %02x to port B (mole output 2?)\n", machine().describe_context(), data);
355   //if (data&0xc0) printf("%s i8255 write %02x to port B (mole output 2?)\n", machine().describe_context(), data);
356356
357357   for (int i = 0; i < 6; i++)
358358   {
r30894r30895
371371WRITE8_MEMBER(kenseim_state::i8255_portf_w)
372372{
373373   // typically written when the 'moles' output is, maybe the 2 strobes?
374   printf("%s i8255 write %02x to port F (strobe?)\n", machine().describe_context(), data);
374   //printf("%s i8255 write %02x to port F (strobe?)\n", machine().describe_context(), data);
375375}
376376
377377

Previous 199869 Revisions Next


© 1997-2024 The MAME Team