trunk/src/mame/drivers/igspoker.c
| r18267 | r18268 | |
| 241 | 241 | set_led_status(machine(), 6, data & 0x20); // led for coin m_out / m_hopper active |
| 242 | 242 | |
| 243 | 243 | m_nmi_enable = data & 0x80; // nmi enable? |
| 244 | | #ifdef VERBOSE |
| 244 | #if VERBOSE |
| 245 | 245 | logerror("PC %06X: NMI change %02x\n",space.device().safe_pc(),m_nmi_enable); |
| 246 | 246 | #endif |
| 247 | 247 | |
| r18267 | r18268 | |
| 293 | 293 | |
| 294 | 294 | READ8_MEMBER(igspoker_state::custom_io_r) |
| 295 | 295 | { |
| 296 | | #ifdef VERBOSE |
| 296 | #if VERBOSE |
| 297 | 297 | logerror("PC %06X: Protection read %02x\n",space.device().safe_pc(), (int) m_protection_res); |
| 298 | 298 | #endif |
| 299 | 299 | return m_protection_res; |
| r18267 | r18268 | |
| 301 | 301 | |
| 302 | 302 | WRITE8_MEMBER(igspoker_state::custom_io_w) |
| 303 | 303 | { |
| 304 | | #ifdef VERBOSE |
| 304 | #if VERBOSE |
| 305 | 305 | logerror("PC %06X: Protection write %02x\n",space.device().safe_pc(),data); |
| 306 | 306 | #endif |
| 307 | 307 | |