mirror of
https://github.com/holub/mame
synced 2025-06-06 12:53:46 +03:00
atarist.cpp: fixed compile on GCC 11.3.0
This commit is contained in:
parent
989edafea2
commit
a047f1d310
@ -355,8 +355,8 @@ public:
|
|||||||
: ste_state(mconfig, type, tag)
|
: ste_state(mconfig, type, tag)
|
||||||
{ }
|
{ }
|
||||||
|
|
||||||
uint16_t cache_r();
|
[[maybe_unused]] uint16_t cache_r();
|
||||||
void cache_w(uint16_t data);
|
[[maybe_unused]] void cache_w(uint16_t data);
|
||||||
|
|
||||||
uint16_t m_cache = 0;
|
uint16_t m_cache = 0;
|
||||||
void megaste(machine_config &config);
|
void megaste(machine_config &config);
|
||||||
@ -376,10 +376,10 @@ public:
|
|||||||
|
|
||||||
required_ioport m_sw400;
|
required_ioport m_sw400;
|
||||||
|
|
||||||
uint16_t config_r();
|
[[maybe_unused]] uint16_t config_r();
|
||||||
void lcd_control_w(uint16_t data);
|
[[maybe_unused]] void lcd_control_w(uint16_t data);
|
||||||
|
|
||||||
void psg_pa_w(uint8_t data);
|
[[maybe_unused]] void psg_pa_w(uint8_t data);
|
||||||
uint8_t mfp_gpio_r();
|
uint8_t mfp_gpio_r();
|
||||||
void stbook_map(address_map &map);
|
void stbook_map(address_map &map);
|
||||||
protected:
|
protected:
|
||||||
|
Loading…
Reference in New Issue
Block a user