diff options
author | 2014-03-10 13:23:15 +0000 | |
---|---|---|
committer | 2014-03-10 13:23:15 +0000 | |
commit | fe36f872390885a181844708e6459d4d85f1c2fc (patch) | |
tree | 166b717773991209df6af1a435e20fccc008b890 /src | |
parent | 758a377a6509f38d3760b384089df791aed2f14f (diff) |
n68681: Don't trust the start order (nw)
Diffstat (limited to 'src')
-rw-r--r-- | src/emu/machine/n68681.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/emu/machine/n68681.c b/src/emu/machine/n68681.c index aa0b5bf8d6c..461aa1d608d 100644 --- a/src/emu/machine/n68681.c +++ b/src/emu/machine/n68681.c @@ -74,7 +74,8 @@ duartn68681_device::duartn68681_device(const machine_config &mconfig, const char ip3clk(0), ip4clk(0), ip5clk(0), - ip6clk(0) + ip6clk(0), + IP_last_state(0) { } @@ -106,8 +107,6 @@ void duartn68681_device::device_start() duart_timer = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(duartn68681_device::duart_timer_callback),this), NULL); - IP_last_state = 0; - save_item(NAME(ACR)); save_item(NAME(IMR)); save_item(NAME(ISR)); |