| Previous | 199869 Revisions | Next |
| r32783 Friday 17th October, 2014 at 12:24:53 UTC by smf |
|---|
| more appropriate types to avoid warning with VS14 CTP4 (nw) |
| [src/mame/drivers] | igspoker.c namcos21.c |
| [src/mame/includes] | namcos21.h |
| r32782 | r32783 | |
|---|---|---|
| 172 | 172 | void transmit_word_to_slave(UINT16 data); |
| 173 | 173 | void transfer_dsp_data(); |
| 174 | 174 | UINT16 read_word_from_slave_input(); |
| 175 | | |
| 175 | UINT16 get_input_bytes_advertised_for_slave(); | |
| 176 | 176 | int init_dsp(); |
| 177 | 177 | void render_slave_output(UINT16 data); |
| 178 | 178 | void winrun_flush_poly(); |
| r32782 | r32783 | |
|---|---|---|
| 536 | 536 | return data; |
| 537 | 537 | } |
| 538 | 538 | |
| 539 | ||
| 539 | UINT16 namcos21_state::get_input_bytes_advertised_for_slave() | |
| 540 | 540 | { |
| 541 | 541 | if( m_mpDspState->slaveBytesAdvertised < m_mpDspState->slaveBytesAvailable ) |
| 542 | 542 | { |
| r32782 | r32783 | |
|---|---|---|
| 97 | 97 | tilemap_t *m_fg_tilemap; |
| 98 | 98 | tilemap_t *m_bg_tilemap; |
| 99 | 99 | UINT8 m_out[3]; |
| 100 | | |
| 100 | UINT8 m_protection_res; | |
| 101 | 101 | |
| 102 | 102 | DECLARE_READ8_MEMBER(igs_irqack_r); |
| 103 | 103 | DECLARE_WRITE8_MEMBER(igs_irqack_w); |
| r32782 | r32783 | |
| 300 | 300 | READ8_MEMBER(igspoker_state::custom_io_r) |
| 301 | 301 | { |
| 302 | 302 | #if VERBOSE |
| 303 | logerror("PC %06X: Protection read %02x\n",space.device().safe_pc(), | |
| 303 | logerror("PC %06X: Protection read %02x\n",space.device().safe_pc(), m_protection_res); | |
| 304 | 304 | #endif |
| 305 | 305 | return m_protection_res; |
| 306 | 306 | } |
| Previous | 199869 Revisions | Next |