summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/drivers/c900.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/drivers/c900.c')
-rw-r--r--src/mess/drivers/c900.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/mess/drivers/c900.c b/src/mess/drivers/c900.c
index 2a3dd9e1857..88d707298ab 100644
--- a/src/mess/drivers/c900.c
+++ b/src/mess/drivers/c900.c
@@ -20,15 +20,17 @@
#include "cpu/z8000/z8000.h"
#include "machine/terminal.h"
+#define TERMINAL_TAG "terminal"
class c900_state : public driver_device
{
public:
c900_state(const machine_config &mconfig, device_type type, const char *tag)
- : driver_device(mconfig, type, tag)
- , m_maincpu(*this, "maincpu")
- , m_terminal(*this, TERMINAL_TAG)
- { }
+ : driver_device(mconfig, type, tag),
+ m_maincpu(*this, "maincpu"),
+ m_terminal(*this, TERMINAL_TAG)
+ {
+ }
DECLARE_READ16_MEMBER(port1e_r);
DECLARE_READ16_MEMBER(key_r);