mirror of
https://github.com/holub/mame
synced 2025-04-23 00:39:36 +03:00
Removed/initialized class members to fix compile problems at travis etc
This commit is contained in:
parent
ab64ca8b0c
commit
bb9f5a3e15
@ -46,8 +46,7 @@ const device_type PIT68230 = &device_creator<pit68230_device>;
|
||||
//-------------------------------------------------
|
||||
|
||||
pit68230_device::pit68230_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
|
||||
: device_t(mconfig, PIT68230, "Motorola 68230 PI/T", tag, owner, clock, "pit68230", __FILE__),
|
||||
m_internal_clock(0.0)
|
||||
: device_t(mconfig, PIT68230, "Motorola 68230 PI/T", tag, owner, clock, "pit68230", __FILE__)
|
||||
{
|
||||
}
|
||||
|
||||
@ -63,6 +62,7 @@ void pit68230_device::device_reset()
|
||||
m_psrr = 0;
|
||||
m_paddr = 0;
|
||||
m_pbddr = 0;
|
||||
m_pcddr = 0;
|
||||
m_pacr = 0;
|
||||
m_pbcr = 0;
|
||||
m_padr = 0;
|
||||
|
@ -56,7 +56,6 @@ protected:
|
||||
virtual void device_reset();
|
||||
|
||||
private:
|
||||
double m_internal_clock;
|
||||
UINT8 m_pgcr; // Port General Control register
|
||||
UINT8 m_psrr; // Port Service Request register
|
||||
UINT8 m_paddr; // Port A Data Direction register
|
||||
|
Loading…
Reference in New Issue
Block a user