Fix clang build, once more (nw)

This commit is contained in:
AJR 2018-07-01 15:35:23 -04:00
parent e3aae75004
commit 8ba3b6cc65
11 changed files with 5 additions and 16 deletions

View File

@ -872,7 +872,7 @@ MACHINE_CONFIG_START(nss_state::nss)
MCFG_SCREEN_VBLANK_CALLBACK(WRITELINE(*this, nss_state, nss_vblank_irq))
MCFG_DEVICE_ADD("ppu", SNES_PPU, 0)
MCFG_SNES_PPU_OPENBUS_CB(READ8(*this, snes_state, snes_open_bus_r))
MCFG_SNES_PPU_OPENBUS_CB(READ8(*this, nss_state, snes_open_bus_r))
MCFG_VIDEO_SET_SCREEN("screen")
// NSS

View File

@ -64,7 +64,6 @@ private:
required_ioport m_pc0;
required_memory_region m_charrom;
ioport_port *m_key[8];
virtual void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr) override;
inline void plot_sprite_part( bitmap_ind16 &bitmap, uint8_t x, uint8_t y, uint8_t pat, uint8_t col, uint8_t screen_sprite_start_line );

View File

@ -493,7 +493,7 @@ MACHINE_CONFIG_START(sfcbox_state::sfcbox)
MCFG_SCREEN_UPDATE_DRIVER( snes_state, screen_update )
MCFG_DEVICE_ADD("ppu", SNES_PPU, 0)
MCFG_SNES_PPU_OPENBUS_CB(READ8(*this, snes_state, snes_open_bus_r))
MCFG_SNES_PPU_OPENBUS_CB(READ8(*this, sfcbox_state, snes_open_bus_r))
MCFG_VIDEO_SET_SCREEN("screen")
// SFCBOX

View File

@ -1353,7 +1353,7 @@ MACHINE_CONFIG_START(snes_console_state::snes)
MCFG_SCREEN_UPDATE_DRIVER( snes_state, screen_update )
MCFG_DEVICE_ADD("ppu", SNES_PPU, 0)
MCFG_SNES_PPU_OPENBUS_CB(READ8(*this, snes_state, snes_open_bus_r))
MCFG_SNES_PPU_OPENBUS_CB(READ8(*this, snes_console_state, snes_open_bus_r))
MCFG_VIDEO_SET_SCREEN("screen")
MCFG_SNES_CONTROL_PORT_ADD("ctrl1", snes_control_port_devices, "joypad")

View File

@ -717,7 +717,7 @@ MACHINE_CONFIG_START(snesb_state::kinstb)
MCFG_SCREEN_UPDATE_DRIVER( snes_state, screen_update )
MCFG_DEVICE_ADD("ppu", SNES_PPU, 0)
MCFG_SNES_PPU_OPENBUS_CB(READ8(*this, snes_state, snes_open_bus_r))
MCFG_SNES_PPU_OPENBUS_CB(READ8(*this, snesb_state, snes_open_bus_r))
MCFG_VIDEO_SET_SCREEN("screen")
/* sound hardware */

View File

@ -371,9 +371,6 @@ private:
DECLARE_WRITE_LINE_MEMBER(write_acia_clock);
uint8_t m_keyboard_line;
uint8_t m_floppy_control;
void swyft_mem(address_map &map);
//virtual void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr);

View File

@ -590,7 +590,7 @@ private:
uint32_t m_video_reg;
uint32_t m_scr_base;
uint64_t m_video_fifo_mem[4];
//uint64_t m_video_fifo_mem[4];
uint16_t m_io_share_ram[0x2000];
@ -605,7 +605,6 @@ private:
uint32_t m_reg105;
int m_count;
std::unique_ptr<taitotz_renderer> m_renderer;

View File

@ -55,7 +55,6 @@ private:
uint8_t m_mtxc_config_reg[256];
uint8_t m_piix4_config_reg[4][256];
uint32_t m_idle_skip_ram;
DECLARE_WRITE32_MEMBER(bios_ram_w);
virtual void machine_start() override;

View File

@ -78,9 +78,6 @@ private:
DECLARE_READ8_MEMBER( tdv2324_main_io_e6 );
DECLARE_WRITE8_MEMBER( tdv2324_main_io_e2 );
uint8_t m_sub_status;
uint8_t m_sub_data;
// video state
required_shared_ptr<uint8_t> m_video_ram;
void tdv2324_fdc_mem(address_map &map);

View File

@ -146,7 +146,6 @@ private:
int m_acia_irq;
// keyboard
int m_kbhalt;
int m_kc;
// GPIB

View File

@ -59,7 +59,6 @@ private:
/* keyboard state */
int m_keylatch; /* key latch */
int m_reset; /* reset activated */
void tmc2000e_io_map(address_map &map);
void tmc2000e_map(address_map &map);