diff options
author | 2018-02-14 19:11:44 +0100 | |
---|---|---|
committer | 2018-02-14 19:11:44 +0100 | |
commit | 80c9f0496fd38a1ff2afba40ee4a4e7d200ac3a0 (patch) | |
tree | 1094735d3e22bab0c39b0cab5db685d5c57d340a /src/devices/bus/wangpc/tig.h | |
parent | bb468cf238e867abd40579ae63f878d4bded9791 (diff) |
devices/bus: made some methods private now that it's possible (nw)
Diffstat (limited to 'src/devices/bus/wangpc/tig.h')
-rw-r--r-- | src/devices/bus/wangpc/tig.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/devices/bus/wangpc/tig.h b/src/devices/bus/wangpc/tig.h index 1f48628da8e..d67424a850e 100644 --- a/src/devices/bus/wangpc/tig.h +++ b/src/devices/bus/wangpc/tig.h @@ -29,8 +29,6 @@ public: // construction/destruction wangpc_tig_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); - void upd7220_0_map(address_map &map); - void upd7220_1_map(address_map &map); protected: // device-level overrides virtual void device_start() override; @@ -51,6 +49,9 @@ private: UPD7220_DRAW_TEXT_LINE_MEMBER( hgdc_draw_text ); UPD7220_DISPLAY_PIXELS_MEMBER( hgdc_display_pixels ); + void upd7220_0_map(address_map &map); + void upd7220_1_map(address_map &map); + // internal state required_device<upd7220_device> m_hgdc0; required_device<upd7220_device> m_hgdc1; |