diff options
author | 2013-01-11 07:32:46 +0000 | |
---|---|---|
committer | 2013-01-11 07:32:46 +0000 | |
commit | 0e19f641d3186cdbf51f8ca857e2b07ab95779c2 (patch) | |
tree | 234109de1123b13f217494af4b3f8efad346d5cc /src/mess/includes/osi.h | |
parent | 111157ca09a9ff60fe4a9ba49173c315e94314fa (diff) |
Cleanups and version bumpmame0148
Diffstat (limited to 'src/mess/includes/osi.h')
-rw-r--r-- | src/mess/includes/osi.h | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/src/mess/includes/osi.h b/src/mess/includes/osi.h index 0bf821cda8d..d37c4c1acfc 100644 --- a/src/mess/includes/osi.h +++ b/src/mess/includes/osi.h @@ -15,27 +15,27 @@ #include "sound/discrete.h" #include "sound/beep.h" -#define SCREEN_TAG "screen" -#define M6502_TAG "m6502" -#define DISCRETE_TAG "discrete" +#define SCREEN_TAG "screen" +#define M6502_TAG "m6502" +#define DISCRETE_TAG "discrete" -#define X1 3932160 -#define UK101_X1 XTAL_8MHz +#define X1 3932160 +#define UK101_X1 XTAL_8MHz -#define OSI600_VIDEORAM_SIZE 0x400 -#define OSI630_COLORRAM_SIZE 0x400 +#define OSI600_VIDEORAM_SIZE 0x400 +#define OSI630_COLORRAM_SIZE 0x400 class sb2m600_state : public driver_device { public: sb2m600_state(const machine_config &mconfig, device_type type, const char *tag) : driver_device(mconfig, type, tag), - m_maincpu(*this, M6502_TAG), - m_cassette(*this, CASSETTE_TAG), - m_discrete(*this, DISCRETE_TAG), - m_ram(*this, RAM_TAG), - m_video_ram(*this, "video_ram"), - m_color_ram(*this, "color_ram") + m_maincpu(*this, M6502_TAG), + m_cassette(*this, CASSETTE_TAG), + m_discrete(*this, DISCRETE_TAG), + m_ram(*this, RAM_TAG), + m_video_ram(*this, "video_ram"), + m_color_ram(*this, "color_ram") { } required_device<cpu_device> m_maincpu; @@ -74,7 +74,7 @@ class c1p_state : public sb2m600_state public: c1p_state(const machine_config &mconfig, device_type type, const char *tag) : sb2m600_state(mconfig, type, tag), - m_beep(*this, BEEPER_TAG) + m_beep(*this, BEEPER_TAG) { } required_device<beep_device> m_beep; @@ -91,7 +91,7 @@ class c1pmf_state : public c1p_state public: c1pmf_state(const machine_config &mconfig, device_type type, const char *tag) : c1p_state(mconfig, type, tag), - m_floppy(*this, FLOPPY_0) + m_floppy(*this, FLOPPY_0) { } required_device<legacy_floppy_image_device> m_floppy; |