mirror of
https://github.com/holub/mame
synced 2025-04-27 10:43:07 +03:00
6551acia.c: m_status_register was not being initialized properly [Robbbert]
This commit is contained in:
parent
fbb1e711f1
commit
5fe90a3ced
@ -94,7 +94,7 @@ static TIMER_CALLBACK(acia_6551_timer_callback)
|
|||||||
void acia6551_device::device_start()
|
void acia6551_device::device_start()
|
||||||
{
|
{
|
||||||
/* transmit data reg is empty */
|
/* transmit data reg is empty */
|
||||||
m_status_register |= (1<<4);
|
m_status_register = (1<<4);
|
||||||
m_timer = machine().scheduler().timer_alloc(FUNC(acia_6551_timer_callback), (void *) this);
|
m_timer = machine().scheduler().timer_alloc(FUNC(acia_6551_timer_callback), (void *) this);
|
||||||
|
|
||||||
transmit_register_reset();
|
transmit_register_reset();
|
||||||
|
Loading…
Reference in New Issue
Block a user