summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/includes/c80.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/includes/c80.h')
-rw-r--r--src/mess/includes/c80.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mess/includes/c80.h b/src/mess/includes/c80.h
index 45a2104c49b..33a320818d6 100644
--- a/src/mess/includes/c80.h
+++ b/src/mess/includes/c80.h
@@ -9,19 +9,19 @@
#include "imagedev/cassette.h"
#include "machine/ram.h"
-#define SCREEN_TAG "screen"
-#define Z80_TAG "d2"
-#define Z80PIO1_TAG "d11"
-#define Z80PIO2_TAG "d12"
+#define SCREEN_TAG "screen"
+#define Z80_TAG "d2"
+#define Z80PIO1_TAG "d11"
+#define Z80PIO2_TAG "d12"
class c80_state : public driver_device
{
public:
c80_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag),
- m_maincpu(*this, Z80_TAG),
- m_pio1(*this, Z80PIO1_TAG),
- m_cassette(*this, CASSETTE_TAG)
+ m_maincpu(*this, Z80_TAG),
+ m_pio1(*this, Z80PIO1_TAG),
+ m_cassette(*this, CASSETTE_TAG)
{ }
required_device<cpu_device> m_maincpu;