summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/drivers/ccs300.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/drivers/ccs300.c')
-rw-r--r--src/mess/drivers/ccs300.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/mess/drivers/ccs300.c b/src/mess/drivers/ccs300.c
index ecde740914b..4bf4ba8a4b8 100644
--- a/src/mess/drivers/ccs300.c
+++ b/src/mess/drivers/ccs300.c
@@ -23,15 +23,17 @@ There's unknown usage of ports 11 thru 1B, 34, and F0 thru F2.
#include "cpu/z80/z80.h"
#include "machine/terminal.h"
+#define TERMINAL_TAG "terminal"
class ccs300_state : public driver_device
{
public:
ccs300_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_DRIVER_INIT(ccs300);
DECLARE_MACHINE_RESET(ccs300);