summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/includes/ti85.h
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2013-01-11 07:32:46 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2013-01-11 07:32:46 +0000
commit0e19f641d3186cdbf51f8ca857e2b07ab95779c2 (patch)
tree234109de1123b13f217494af4b3f8efad346d5cc /src/mess/includes/ti85.h
parent111157ca09a9ff60fe4a9ba49173c315e94314fa (diff)
Cleanups and version bumpmame0148
Diffstat (limited to 'src/mess/includes/ti85.h')
-rw-r--r--src/mess/includes/ti85.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mess/includes/ti85.h b/src/mess/includes/ti85.h
index 2826fdd3c30..f609511550c 100644
--- a/src/mess/includes/ti85.h
+++ b/src/mess/includes/ti85.h
@@ -17,16 +17,16 @@ class ti85_state : public driver_device
public:
ti85_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag),
- m_maincpu(*this, "maincpu"),
- m_speaker(*this, SPEAKER_TAG),
+ m_maincpu(*this, "maincpu"),
+ m_speaker(*this, SPEAKER_TAG),
// m_serial(*this, "tiserial"),
- m_nvram(*this, "nvram")
+ m_nvram(*this, "nvram")
{ }
required_device<cpu_device> m_maincpu;
optional_device<speaker_sound_device> m_speaker;
//optional_device<> m_serial;
- optional_shared_ptr<UINT8> m_nvram;
+ optional_shared_ptr<UINT8> m_nvram;
UINT8 m_LCD_memory_base;
UINT8 m_LCD_contrast;