diff options
author | 2022-06-11 14:31:45 -0400 | |
---|---|---|
committer | 2022-06-11 14:41:07 -0400 | |
commit | 96b72e4b7b16c365ad654e78b1a1cea17173f89c (patch) | |
tree | 9863c10f2f76d770524ee08c740fb058173c870c /src/devices/machine/genpc.h | |
parent | 4506cae8b1f44384a9cdc8107a67350fa6922e94 (diff) |
compc.cpp: Modernize keyboard interface (eliminates occasional "stuck key" error in compc1); eliminate runtime port tag lookup
Diffstat (limited to 'src/devices/machine/genpc.h')
-rw-r--r-- | src/devices/machine/genpc.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/devices/machine/genpc.h b/src/devices/machine/genpc.h index 8462f1fde88..8e836aae807 100644 --- a/src/devices/machine/genpc.h +++ b/src/devices/machine/genpc.h @@ -223,6 +223,8 @@ public: void map(address_map &map); + uint8_t pc_ppi_portb_r(); + protected: pc_noppi_mb_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock); @@ -231,7 +233,6 @@ protected: private: uint8_t pc_ppi_porta_r(); - uint8_t pc_ppi_portb_r(); }; DECLARE_DEVICE_TYPE(PCNOPPI_MOTHERBOARD, pc_noppi_mb_device) |