diff options
author | 2013-01-11 07:32:46 +0000 | |
---|---|---|
committer | 2013-01-11 07:32:46 +0000 | |
commit | 0e19f641d3186cdbf51f8ca857e2b07ab95779c2 (patch) | |
tree | 234109de1123b13f217494af4b3f8efad346d5cc /src/mess/machine/northbridge.h | |
parent | 111157ca09a9ff60fe4a9ba49173c315e94314fa (diff) |
Cleanups and version bumpmame0148
Diffstat (limited to 'src/mess/machine/northbridge.h')
-rw-r--r-- | src/mess/machine/northbridge.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mess/machine/northbridge.h b/src/mess/machine/northbridge.h index 75282b09314..57b802bca10 100644 --- a/src/mess/machine/northbridge.h +++ b/src/mess/machine/northbridge.h @@ -14,15 +14,15 @@ // ======================> northbridge_device class northbridge_device : - public device_t + public device_t { public: // construction/destruction northbridge_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock); protected: - // device-level overrides - virtual void device_start(); - virtual void device_reset(); + // device-level overrides + virtual void device_start(); + virtual void device_reset(); public: required_device<cpu_device> m_maincpu; required_device<ram_device> m_ram; |