r65emu/acia.cpp

50 lines
800 B
C++
Raw Normal View History

2018-09-13 10:24:05 +00:00
#include <stdint.h>
#include "memory.h"
#include "acia.h"
void acia::operator=(uint8_t b) {
if (_acc & 1) {
_device->write(b);
return;
}
2018-09-13 11:56:54 +00:00
if ((b & cd_mask) == reset) {
2018-09-13 10:24:05 +00:00
_device->reset();
2018-09-13 11:56:54 +00:00
return;
}
switch (b & ws_mask) {
case ws7e2:
_device->framing(7, 2, even);
break;
case ws7o2:
_device->framing(7, 2, odd);
break;
case ws7e1:
_device->framing(7, 1, even);
break;
case ws7o1:
_device->framing(7, 1, odd);
break;
case ws8n2:
_device->framing(8, 2, none);
break;
case ws8n1:
_device->framing(8, 1, none);
break;
case ws8e1:
_device->framing(8, 1, even);
break;
case ws8o1:
_device->framing(8, 1, odd);
break;
};
2018-09-13 10:24:05 +00:00
// FIXME: more
}
acia::operator uint8_t() {
if (_acc & 1)
return _device->read();
2018-12-18 08:28:53 +00:00
return _device->more()? rdrf | tdre: tdre;
2018-09-13 10:24:05 +00:00
}