diff options
| author | 2013-03-19 07:22:20 +0000 | |
|---|---|---|
| committer | 2013-03-19 07:22:20 +0000 | |
| commit | 0e1f5ad25b25df7c2ec707ec45c544288eb3c683 (patch) | |
| tree | eeef04fdf999692be30c25457fb9b329e1dbfdde /src/mess/machine/vic1011.c | |
| parent | 86614c802b9d611d83520fdb43388ae51d31f553 (diff) | |
Cleanups and version bumpmame0148u2
Diffstat (limited to 'src/mess/machine/vic1011.c')
| -rw-r--r-- | src/mess/machine/vic1011.c | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/src/mess/machine/vic1011.c b/src/mess/machine/vic1011.c index 03640c6d5e5..6ca9048db7e 100644 --- a/src/mess/machine/vic1011.c +++ b/src/mess/machine/vic1011.c @@ -93,18 +93,18 @@ void vic1011_device::device_start() UINT8 vic1011_device::vic20_pb_r(address_space &space, offs_t offset) { /* - + bit description - + 0 Sin - 1 - 2 - 3 + 1 + 2 + 3 4 DCDin - 5 + 5 6 CTS 7 DSR - + */ UINT8 data = 0; @@ -125,18 +125,18 @@ UINT8 vic1011_device::vic20_pb_r(address_space &space, offs_t offset) void vic1011_device::vic20_pb_w(address_space &space, offs_t offset, UINT8 data) { /* - + bit description - - 0 + + 0 1 RTS 2 DTR - 3 - 4 + 3 + 4 5 DCDout - 6 - 7 - + 6 + 7 + */ m_rs232->rts_w(BIT(data, 1)); |
