diff options
Diffstat (limited to 'src/mess/video/maria.h')
| -rw-r--r-- | src/mess/video/maria.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mess/video/maria.h b/src/mess/video/maria.h index e1b70baf4a8..b776ee5ae26 100644 --- a/src/mess/video/maria.h +++ b/src/mess/video/maria.h @@ -12,22 +12,22 @@ public: atari_maria_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); static void set_cpu_tag(device_t &device, const char *tag) { downcast<atari_maria_device &>(device).m_cpu_tag = tag; } - + void interrupt(int lines); void startdma(int lines); - + DECLARE_READ8_MEMBER(read); DECLARE_WRITE8_MEMBER(write); UINT32 screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); - + protected: // device-level overrides virtual void device_start(); virtual void device_reset(); private: - + int m_maria_palette[32]; int m_line_ram[2][160]; int m_active_buffer; @@ -54,7 +54,7 @@ private: int write_line_ram(int addr, UINT8 offset, int pal); const char *m_cpu_tag; - cpu_device *m_cpu; // CPU whose space(AS_PROGRAM) serves as DMA source + cpu_device *m_cpu; // CPU whose space(AS_PROGRAM) serves as DMA source screen_device *m_screen; }; |
