diff options
Diffstat (limited to 'src/mess/includes/pecom.h')
-rw-r--r-- | src/mess/includes/pecom.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/mess/includes/pecom.h b/src/mess/includes/pecom.h index e5e9f1cbaac..9aa932b43af 100644 --- a/src/mess/includes/pecom.h +++ b/src/mess/includes/pecom.h @@ -4,30 +4,30 @@ #include "cpu/cosmac/cosmac.h" #include "imagedev/cassette.h" -#define SCREEN_TAG "screen" -#define CDP1802_TAG "cdp1802" -#define CDP1869_TAG "cdp1869" +#define SCREEN_TAG "screen" +#define CDP1802_TAG "cdp1802" +#define CDP1869_TAG "cdp1869" -#define PECOM_CHAR_RAM_SIZE 0x800 +#define PECOM_CHAR_RAM_SIZE 0x800 class pecom_state : public driver_device { public: pecom_state(const machine_config &mconfig, device_type type, const char *tag) : driver_device(mconfig, type, tag), - m_cdp1802(*this, CDP1802_TAG), - m_cdp1869(*this, CDP1869_TAG) + m_cdp1802(*this, CDP1802_TAG), + m_cdp1869(*this, CDP1869_TAG) { } required_device<cosmac_device> m_cdp1802; required_device<cdp1869_device> m_cdp1869; - UINT8 *m_charram; /* character generator ROM */ - int m_reset; /* CPU mode */ - int m_dma; /* memory refresh DMA */ + UINT8 *m_charram; /* character generator ROM */ + int m_reset; /* CPU mode */ + int m_dma; /* memory refresh DMA */ /* timers */ - emu_timer *m_reset_timer; /* power on reset timer */ + emu_timer *m_reset_timer; /* power on reset timer */ DECLARE_READ8_MEMBER(pecom_cdp1869_charram_r); DECLARE_WRITE8_MEMBER(pecom_cdp1869_charram_w); |