mirror of
https://github.com/holub/mame
synced 2025-07-06 18:39:28 +03:00
this is Sparta^C++11! (nw)
This commit is contained in:
parent
1b544b42a2
commit
dbd4293693
@ -326,18 +326,17 @@ void apollo_csr_set_status_register(uint16_t mask, uint16_t data);
|
||||
class apollo_sio: public mc68681_device
|
||||
{
|
||||
public:
|
||||
apollo_sio(const machine_config &mconfig, const char *tag,
|
||||
device_t *owner, uint32_t clock);
|
||||
apollo_sio(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
|
||||
|
||||
DECLARE_READ8_MEMBER(read);
|
||||
DECLARE_WRITE8_MEMBER(write);
|
||||
virtual DECLARE_READ8_MEMBER(read) override;
|
||||
virtual DECLARE_WRITE8_MEMBER(write) override;
|
||||
|
||||
protected:
|
||||
virtual void device_reset() override;
|
||||
|
||||
private:
|
||||
uint8_t m_csrb;
|
||||
uint8_t m_ip6;
|
||||
uint8_t m_csrb;
|
||||
uint8_t m_ip6;
|
||||
};
|
||||
|
||||
extern const device_type APOLLO_SIO;
|
||||
|
Loading…
Reference in New Issue
Block a user