summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes
diff options
context:
space:
mode:
author arbee <rb6502@users.noreply.github.com>2020-10-01 19:29:56 -0400
committer arbee <rb6502@users.noreply.github.com>2020-10-01 19:29:56 -0400
commit3ee3906d103e650eb92357a347b6fb40d577f11b (patch)
treee5cc8b6ce9bc9ddebf5d77db38c747f92f643bd6 /src/mame/includes
parentfc1a37551039de5dfbac3f5436cae10105840024 (diff)
mac: move macqd700 to its own driver and clean up more cruft [R. Belmont]
Diffstat (limited to 'src/mame/includes')
-rw-r--r--src/mame/includes/mac.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/mame/includes/mac.h b/src/mame/includes/mac.h
index 5164532102a..0eeed203cff 100644
--- a/src/mame/includes/mac.h
+++ b/src/mame/includes/mac.h
@@ -292,10 +292,6 @@ private:
uint8_t m_sonora_vctl[8];
emu_timer *m_vbl_timer, *m_cursor_timer;
uint16_t m_cursor_line;
- uint16_t m_dafb_int_status;
- int m_dafb_scsi1_drq, m_dafb_scsi2_drq;
- uint8_t m_dafb_mode;
- uint32_t m_dafb_base, m_dafb_stride;
// this is shared among all video setups with vram
optional_shared_ptr<uint32_t> m_vram;
@@ -368,11 +364,6 @@ private:
uint8_t mac_5396_r(offs_t offset);
void mac_5396_w(offs_t offset, uint8_t data);
- uint32_t dafb_r(offs_t offset, uint32_t mem_mask = ~0);
- void dafb_w(offs_t offset, uint32_t data, uint32_t mem_mask = ~0);
- uint32_t dafb_dac_r(offs_t offset, uint32_t mem_mask = ~0);
- void dafb_dac_w(offs_t offset, uint32_t data, uint32_t mem_mask = ~0);
-
uint32_t macwd_r(offs_t offset, uint32_t mem_mask = ~0);
void macwd_w(offs_t offset, uint32_t data, uint32_t mem_mask = ~0);
@@ -438,8 +429,6 @@ private:
DECLARE_VIDEO_START(macprtb);
DECLARE_VIDEO_START(macsonora);
DECLARE_VIDEO_RESET(macrbv);
- DECLARE_VIDEO_START(macdafb);
- DECLARE_VIDEO_RESET(macdafb);
DECLARE_VIDEO_START(macv8);
DECLARE_VIDEO_RESET(macsonora);
DECLARE_VIDEO_RESET(maceagle);
@@ -450,7 +439,6 @@ private:
uint32_t screen_update_macpb140(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
uint32_t screen_update_macpb160(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
uint32_t screen_update_macrbv(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
- uint32_t screen_update_macdafb(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
uint32_t screen_update_macrbvvram(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
uint32_t screen_update_macv8(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
uint32_t screen_update_macsonora(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
@@ -459,8 +447,6 @@ private:
TIMER_CALLBACK_MEMBER(mac_6015_tick);
TIMER_CALLBACK_MEMBER(mac_adbrefresh_tick);
TIMER_CALLBACK_MEMBER(mac_scanline_tick);
- TIMER_CALLBACK_MEMBER(dafb_vbl_tick);
- TIMER_CALLBACK_MEMBER(dafb_cursor_tick);
DECLARE_WRITE_LINE_MEMBER(mac_adb_via_out_cb2);
uint8_t mac_via_in_a();
uint8_t mac_via_in_b();
@@ -487,7 +473,6 @@ private:
void mac_state_load();
DECLARE_WRITE_LINE_MEMBER(mac_via_irq);
DECLARE_WRITE_LINE_MEMBER(mac_via2_irq);
- void dafb_recalc_ints();
void set_scc_waitrequest(int waitrequest);
void mac_driver_init(model_t model);
void mac_install_memory(offs_t memory_begin, offs_t memory_end, offs_t memory_size, void *memory_data, int is_rom, const char *bank);