summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video/tms3556.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/video/tms3556.h')
-rw-r--r--src/devices/video/tms3556.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/devices/video/tms3556.h b/src/devices/video/tms3556.h
index 057f4780cd1..25b82787936 100644
--- a/src/devices/video/tms3556.h
+++ b/src/devices/video/tms3556.h
@@ -53,11 +53,10 @@ public:
DECLARE_WRITE8_MEMBER( reg_w );
DECLARE_READ8_MEMBER( initptr_r );
- void interrupt(running_machine &machine);
+ void interrupt();
uint32_t screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- void tms3556(address_map &map);
protected:
// device-level overrides
virtual void device_start() override;
@@ -65,6 +64,7 @@ protected:
// device_config_memory_interface overrides
virtual space_config_vector memory_space_config() const override;
+private:
// address space configurations
const address_space_config m_space_config;
@@ -80,7 +80,8 @@ protected:
void draw_line(bitmap_ind16 &bmp, int line);
void interrupt_start_vblank(void);
-private:
+ void tms3556(address_map &map);
+
enum dma_mode_tt : u8 { dma_read, dma_write };
static constexpr uint8_t MODE_OFF = 0;