summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/pcw.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/pcw.h')
-rw-r--r--src/mame/includes/pcw.h19
1 files changed, 10 insertions, 9 deletions
diff --git a/src/mame/includes/pcw.h b/src/mame/includes/pcw.h
index 21852d81d96..09443e670f2 100644
--- a/src/mame/includes/pcw.h
+++ b/src/mame/includes/pcw.h
@@ -5,10 +5,11 @@
* includes/pcw.h
*
****************************************************************************/
-
#ifndef MAME_INCLUDES_PCW_H
#define MAME_INCLUDES_PCW_H
+#pragma once
+
#include "machine/upd765.h"
#include "machine/ram.h"
#include "machine/timer.h"
@@ -32,14 +33,14 @@ class pcw_state : public driver_device
{
public:
pcw_state(const machine_config &mconfig, device_type type, const char *tag)
- : driver_device(mconfig, type, tag),
- m_maincpu(*this, "maincpu"),
- m_fdc(*this, "upd765"),
- m_floppy(*this, "upd765:%u", 0U),
- m_ram(*this, RAM_TAG),
- m_beeper(*this, "beeper"),
- m_screen(*this, "screen"),
- m_palette(*this, "palette")
+ : driver_device(mconfig, type, tag)
+ , m_maincpu(*this, "maincpu")
+ , m_fdc(*this, "upd765")
+ , m_floppy(*this, "upd765:%u", 0U)
+ , m_ram(*this, RAM_TAG)
+ , m_beeper(*this, "beeper")
+ , m_screen(*this, "screen")
+ , m_palette(*this, "palette")
{ }
int m_boot;