Don't forget the current state of dsr & rts when changing serial settings in null modem device. [smf]

This commit is contained in:
smf- 2022-05-19 09:17:50 +01:00
parent e6e2a137e9
commit 4c63df0d5b
2 changed files with 2 additions and 2 deletions

View File

@ -75,8 +75,6 @@ WRITE_LINE_MEMBER(null_modem_device::update_serial)
output_dsr(0);
output_cts(0);
m_rts = 0;
m_dtr = 0;
m_xoff = 0;
}

View File

@ -3,6 +3,8 @@
#ifndef MAME_BUS_RS232_NULL_MODEM_H
#define MAME_BUS_RS232_NULL_MODEM_H
#pragma once
#include "rs232.h"
#include "imagedev/bitbngr.h"
#include "diserial.h"