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

trunk/src/mame/includes/namcos21.h
r32782r32783
172172   void transmit_word_to_slave(UINT16 data);
173173   void transfer_dsp_data();
174174   UINT16 read_word_from_slave_input();
175   size_t get_input_bytes_advertised_for_slave();
175   UINT16 get_input_bytes_advertised_for_slave();
176176   int init_dsp();
177177   void render_slave_output(UINT16 data);
178178   void winrun_flush_poly();
trunk/src/mame/drivers/namcos21.c
r32782r32783
536536   return data;
537537}
538538
539size_t namcos21_state::get_input_bytes_advertised_for_slave()
539UINT16 namcos21_state::get_input_bytes_advertised_for_slave()
540540{
541541   if( m_mpDspState->slaveBytesAdvertised < m_mpDspState->slaveBytesAvailable )
542542   {
trunk/src/mame/drivers/igspoker.c
r32782r32783
9797   tilemap_t *m_fg_tilemap;
9898   tilemap_t *m_bg_tilemap;
9999   UINT8 m_out[3];
100   size_t m_protection_res;
100   UINT8 m_protection_res;
101101
102102   DECLARE_READ8_MEMBER(igs_irqack_r);
103103   DECLARE_WRITE8_MEMBER(igs_irqack_w);
r32782r32783
300300READ8_MEMBER(igspoker_state::custom_io_r)
301301{
302302#if VERBOSE
303   logerror("PC %06X: Protection read %02x\n",space.device().safe_pc(), (int) m_protection_res);
303   logerror("PC %06X: Protection read %02x\n",space.device().safe_pc(), m_protection_res);
304304#endif
305305   return m_protection_res;
306306}

Previous 199869 Revisions Next


© 1997-2024 The MAME Team