mirror of
https://github.com/holub/mame
synced 2025-05-30 17:41:47 +03:00
Fixed Z80-DART transmit word length. [Curt Coder]
This commit is contained in:
parent
7aa0111f30
commit
ceeafcbcb9
@ -162,11 +162,11 @@ const int WR5_RTS = 0x02;
|
||||
const int WR5_CRC16 = 0x04; // not supported
|
||||
const int WR5_TX_ENABLE = 0x08;
|
||||
const int WR5_SEND_BREAK = 0x10;
|
||||
const int WR5_TX_WORD_LENGTH_MASK = 0xc0;
|
||||
const int WR5_TX_WORD_LENGTH_MASK = 0x60;
|
||||
const int WR5_TX_WORD_LENGTH_5 = 0x00;
|
||||
const int WR5_TX_WORD_LENGTH_7 = 0x40;
|
||||
const int WR5_TX_WORD_LENGTH_6 = 0x80;
|
||||
const int WR5_TX_WORD_LENGTH_8 = 0xc0;
|
||||
const int WR5_TX_WORD_LENGTH_6 = 0x40;
|
||||
const int WR5_TX_WORD_LENGTH_7 = 0x20;
|
||||
const int WR5_TX_WORD_LENGTH_8 = 0x60;
|
||||
const int WR5_DTR = 0x80;
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user