1
0
mirror of https://github.com/jscrane/r65emu.git synced 2024-06-04 11:29:32 +00:00
This commit is contained in:
Stephen Crane 2018-12-18 08:28:53 +00:00
parent bc3fca1a3c
commit 984692ad95

View File

@ -45,5 +45,5 @@ acia::operator uint8_t() {
if (_acc & 1) if (_acc & 1)
return _device->read(); return _device->read();
return _device->more()? rdrf | tdre: 0; return _device->more()? rdrf | tdre: tdre;
} }