Fix build by removing unused variables (nw)

This commit is contained in:
AJR 2018-02-14 20:34:21 -05:00
parent fe8d56bb6e
commit e415d84fab
4 changed files with 1 additions and 4 deletions

View File

@ -423,7 +423,7 @@ abc77_device::abc77_device(const machine_config &mconfig, device_type type, cons
m_dsw(*this, "DSW"),
m_txd(1), m_keylatch(0),
m_keydown(1),
m_clock(0), m_hys(0), m_reset(0),
m_clock(0), m_hys(0),
m_stb(1), m_j3(0), m_serial_timer(nullptr), m_reset_timer(nullptr)
{
}

View File

@ -72,7 +72,6 @@ private:
int m_keydown; // key down
int m_clock; // transmit clock
int m_hys; // hysteresis
int m_reset; // reset
int m_stb; // strobe
uint8_t m_j3;

View File

@ -39,7 +39,6 @@ sns_rom_sgb_device::sns_rom_sgb_device(const machine_config &mconfig, device_typ
m_joy3(0),
m_joy4(0),
m_vram_offs(0),
m_mlt_req(0),
m_lcd_row(0),
m_packetsize(0),
m_bios_disabled(false)

View File

@ -68,7 +68,6 @@ private:
uint8_t m_joy1, m_joy2, m_joy3, m_joy4;
uint8_t m_joy_pckt[16];
uint16_t m_vram_offs;
uint8_t m_mlt_req;
uint32_t m_lcd_buffer[4 * 160 * 8];
uint16_t m_lcd_output[320];