summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/pdp1.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/pdp1.cpp')
-rw-r--r--src/mame/drivers/pdp1.cpp13
1 files changed, 8 insertions, 5 deletions
diff --git a/src/mame/drivers/pdp1.cpp b/src/mame/drivers/pdp1.cpp
index 6fcb5a367e7..25576561e5f 100644
--- a/src/mame/drivers/pdp1.cpp
+++ b/src/mame/drivers/pdp1.cpp
@@ -56,9 +56,12 @@ To load and play a game:
*/
#include "emu.h"
-#include "cpu/pdp1/pdp1.h"
#include "includes/pdp1.h"
+
+#include "cpu/pdp1/pdp1.h"
#include "video/crt.h"
+#include "screen.h"
+
/*
*
@@ -687,7 +690,7 @@ protected:
virtual void device_start() override { }
};
-const device_type PDP1_READTAPE = &device_creator<pdp1_readtape_image_device>;
+const device_type PDP1_READTAPE = device_creator<pdp1_readtape_image_device>;
pdp1_readtape_image_device::pdp1_readtape_image_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
: device_t(mconfig, PDP1_READTAPE, "PDP1 Tape Reader", tag, owner, clock, "pdp1_readtape_image", __FILE__),
@@ -720,7 +723,7 @@ protected:
virtual void device_start() override { }
};
-const device_type PDP1_PUNCHTAPE = &device_creator<pdp1_punchtape_image_device>;
+const device_type PDP1_PUNCHTAPE = device_creator<pdp1_punchtape_image_device>;
pdp1_punchtape_image_device::pdp1_punchtape_image_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
: device_t(mconfig, PDP1_PUNCHTAPE, "PDP1 Tape Puncher", tag, owner, clock, "pdp1_punchtape_image", __FILE__),
@@ -754,7 +757,7 @@ protected:
virtual void device_start() override { }
};
-const device_type PDP1_PRINTER = &device_creator<pdp1_printer_image_device>;
+const device_type PDP1_PRINTER = device_creator<pdp1_printer_image_device>;
pdp1_printer_image_device::pdp1_printer_image_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
: device_t(mconfig, PDP1_PRINTER, "PDP1 Typewriter", tag, owner, clock, "pdp1_printer_image", __FILE__),
@@ -787,7 +790,7 @@ protected:
virtual void device_start() override { }
};
-const device_type PDP1_CYLINDER = &device_creator<pdp1_cylinder_image_device>;
+const device_type PDP1_CYLINDER = device_creator<pdp1_cylinder_image_device>;
pdp1_cylinder_image_device::pdp1_cylinder_image_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
: device_t(mconfig, PDP1_CYLINDER, "PDP1 Cylinder", tag, owner, clock, "pdp1_cylinder_image", __FILE__),