This commit is contained in:
Stephen Crane 2018-12-18 08:28:53 +00:00
parent bc3fca1a3c
commit 984692ad95
1 changed files with 1 additions and 1 deletions

View File

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