summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine
diff options
context:
space:
mode:
author hap <happppp@users.noreply.github.com>2020-07-29 20:16:59 +0200
committer hap <happppp@users.noreply.github.com>2020-07-29 20:17:25 +0200
commit23b6a0c6cce63c8bfc4377cbf793f395243732dc (patch)
treeea23be7a2cafaf3294d5e2973261f6a9e66bde7d /src/devices/machine
parentfac0622f072a844405517bdbd5fdcc37b19ab5f5 (diff)
ssystem3: added chess unit lcd svg screen [hap, Berger, Achim]
Diffstat (limited to 'src/devices/machine')
-rw-r--r--src/devices/machine/6821pia.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/6821pia.h b/src/devices/machine/6821pia.h
index cceff8a5a09..f6ffa71ca8b 100644
--- a/src/devices/machine/6821pia.h
+++ b/src/devices/machine/6821pia.h
@@ -57,7 +57,7 @@ public:
uint8_t read_alt(offs_t offset) { return read(((offset << 1) & 0x02) | ((offset >> 1) & 0x01)); }
void write_alt(offs_t offset, uint8_t data) { write(((offset << 1) & 0x02) | ((offset >> 1) & 0x01), data); }
- uint8_t port_b_z_mask() const { return ~m_ddr_b; } // see first note in .c
+ uint8_t port_b_z_mask() const { return ~m_ddr_b; } // see notes
void porta_w(uint8_t data);
void write_porta_line(int line, bool state);