summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/bfm_dm01.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/bfm_dm01.h')
-rw-r--r--src/mame/video/bfm_dm01.h10
1 files changed, 2 insertions, 8 deletions
diff --git a/src/mame/video/bfm_dm01.h b/src/mame/video/bfm_dm01.h
index ccb8d41d5a1..9bb459ea5df 100644
--- a/src/mame/video/bfm_dm01.h
+++ b/src/mame/video/bfm_dm01.h
@@ -17,7 +17,6 @@ class bfm_dm01_device : public device_t
{
public:
bfm_dm01_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
- ~bfm_dm01_device() {}
auto busy_callback() { return m_busy_cb.bind(); }
@@ -44,8 +43,6 @@ private:
static constexpr unsigned BYTES_PER_ROW = 9;
required_device<cpu_device> m_matrixcpu;
- required_device<screen_device> m_screen;
- required_device<palette_device> m_palette;
// internal state
int m_data_avail;
@@ -57,15 +54,12 @@ private:
uint8_t m_scanline[BYTES_PER_ROW];
uint8_t m_comdata;
+ output_finder<65 * 21> m_dotmatrix;
devcb_write_line m_busy_cb;
- int read_data(void);
-
- bitmap_ind16 m_tmpbitmap;
+ int read_data();
INTERRUPT_GEN_MEMBER(nmi_line_assert);
-
- uint32_t screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
};
DECLARE_DEVICE_TYPE(BFM_DM01, bfm_dm01_device)