summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/c64/supercpu.h
diff options
context:
space:
mode:
author Ivan Vangelista <mesgnet@yahoo.it>2018-02-14 19:11:44 +0100
committer Ivan Vangelista <mesgnet@yahoo.it>2018-02-14 19:11:44 +0100
commit80c9f0496fd38a1ff2afba40ee4a4e7d200ac3a0 (patch)
tree1094735d3e22bab0c39b0cab5db685d5c57d340a /src/devices/bus/c64/supercpu.h
parentbb468cf238e867abd40579ae63f878d4bded9791 (diff)
devices/bus: made some methods private now that it's possible (nw)
Diffstat (limited to 'src/devices/bus/c64/supercpu.h')
-rw-r--r--src/devices/bus/c64/supercpu.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/devices/bus/c64/supercpu.h b/src/devices/bus/c64/supercpu.h
index 21b2464a9bf..006449400c1 100644
--- a/src/devices/bus/c64/supercpu.h
+++ b/src/devices/bus/c64/supercpu.h
@@ -29,7 +29,6 @@ public:
// construction/destruction
c64_supercpu_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
- void c64_supercpu_map(address_map &map);
protected:
// device-level overrides
virtual void device_start() override;
@@ -52,6 +51,8 @@ private:
required_shared_ptr<uint8_t> m_sram;
required_shared_ptr<uint8_t> m_dimm;
+
+ void c64_supercpu_map(address_map &map);
};