summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/poly88.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/poly88.h')
-rw-r--r--src/mame/includes/poly88.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/mame/includes/poly88.h b/src/mame/includes/poly88.h
index f1f32c56713..22e8071d21f 100644
--- a/src/mame/includes/poly88.h
+++ b/src/mame/includes/poly88.h
@@ -5,10 +5,11 @@
* includes/poly88.h
*
****************************************************************************/
-
#ifndef MAME_INCLUDES_POLY88_H
#define MAME_INCLUDES_POLY88_H
+#pragma once
+
#include "machine/i8251.h"
#include "imagedev/cassette.h"
#include "imagedev/snapquik.h"
@@ -23,8 +24,8 @@ public:
TIMER_CASSETTE
};
- poly88_state(const machine_config &mconfig, device_type type, const char *tag)
- : driver_device(mconfig, type, tag),
+ poly88_state(const machine_config &mconfig, device_type type, const char *tag) :
+ driver_device(mconfig, type, tag),
m_video_ram(*this, "video_ram"),
m_maincpu(*this, "maincpu"),
m_uart(*this, "uart"),
@@ -36,7 +37,8 @@ public:
m_line3(*this, "LINE3"),
m_line4(*this, "LINE4"),
m_line5(*this, "LINE5"),
- m_line6(*this, "LINE6") { }
+ m_line6(*this, "LINE6")
+ { }
void poly88(machine_config &config);
void poly8813(machine_config &config);