summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/cpc/doubler.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/cpc/doubler.h')
-rw-r--r--src/devices/bus/cpc/doubler.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/bus/cpc/doubler.h b/src/devices/bus/cpc/doubler.h
index 22cac02c3e2..6b650179b0f 100644
--- a/src/devices/bus/cpc/doubler.h
+++ b/src/devices/bus/cpc/doubler.h
@@ -1,13 +1,13 @@
// license:BSD-3-Clause
// copyright-holders:Barry Rodewald
/*
- * doubler.c -- Draysoft Doubler - external cassette interface for the 464 (works on 664/6128 with external cassette?),
+ * doubler.c -- Draysoft Doubler - external cassette interface for the 464 (works on 664/6128 with external cassette?),
* intended for use in duplicating cassette software
*
* Uses only port F0E0 (may conflict with other peripherals, PPI port A is not usable while Doubler software is running)
*
*/
-
+
#ifndef DOUBLER_H_
#define DOUBLER_H_
@@ -27,7 +27,7 @@ public:
virtual machine_config_constructor device_mconfig_additions() const;
DECLARE_READ8_MEMBER(ext_tape_r);
-
+
protected:
// device-level overrides
virtual void device_start();
@@ -35,11 +35,11 @@ protected:
private:
cpc_expansion_slot_device *m_slot;
-
+
required_device<cassette_image_device> m_tape;
};
// device type definition
extern const device_type CPC_DOUBLER;
-
+
#endif /* DOUBLER_H_ */