diff options
Diffstat (limited to 'src/mame/includes/sprint2.h')
-rw-r--r-- | src/mame/includes/sprint2.h | 113 |
1 files changed, 0 insertions, 113 deletions
diff --git a/src/mame/includes/sprint2.h b/src/mame/includes/sprint2.h deleted file mode 100644 index 845fa4dca70..00000000000 --- a/src/mame/includes/sprint2.h +++ /dev/null @@ -1,113 +0,0 @@ -// license:BSD-3-Clause -// copyright-holders:Mike Balfour -/************************************************************************* - - Atari Sprint hardware - -*************************************************************************/ -#ifndef MAME_INCLUDES_SPRINT2_H -#define MAME_INCLUDES_SPRINT2_H - -#pragma once - -#include "machine/74259.h" -#include "machine/watchdog.h" -#include "sound/discrete.h" -#include "emupal.h" -#include "screen.h" -#include "tilemap.h" - -/* Discrete Sound Input Nodes */ -#define SPRINT2_SKIDSND1_EN NODE_01 -#define SPRINT2_SKIDSND2_EN NODE_02 -#define SPRINT2_MOTORSND1_DATA NODE_03 -#define SPRINT2_MOTORSND2_DATA NODE_04 -#define SPRINT2_CRASHSND_DATA NODE_05 -#define SPRINT2_ATTRACT_EN NODE_06 -#define SPRINT2_NOISE_RESET NODE_07 - -#define DOMINOS_FREQ_DATA SPRINT2_MOTORSND1_DATA -#define DOMINOS_AMP_DATA SPRINT2_CRASHSND_DATA -#define DOMINOS_TUMBLE_EN SPRINT2_SKIDSND1_EN -#define DOMINOS_ATTRACT_EN SPRINT2_ATTRACT_EN - - -class sprint2_state : public driver_device -{ -public: - sprint2_state(const machine_config &mconfig, device_type type, const char *tag) : - driver_device(mconfig, type, tag), - m_video_ram(*this, "video_ram"), - m_maincpu(*this, "maincpu"), - m_watchdog(*this, "watchdog"), - m_outlatch(*this, "outlatch"), - m_discrete(*this, "discrete"), - m_gfxdecode(*this, "gfxdecode"), - m_screen(*this, "screen"), - m_palette(*this, "palette") - { } - - void sprint1(machine_config &config); - void sprint2(machine_config &config); - void dominos4(machine_config &config); - void dominos(machine_config &config); - - void init_sprint1(); - void init_sprint2(); - void init_dominos(); - void init_dominos4(); - -private: - int m_steering[2]; - int m_gear[2]; - int m_game; - uint8_t m_dial[2]; - required_shared_ptr<uint8_t> m_video_ram; - tilemap_t* m_bg_tilemap; - bitmap_ind16 m_helper; - int m_collision[2]; - DECLARE_READ8_MEMBER(sprint2_wram_r); - DECLARE_READ8_MEMBER(sprint2_dip_r); - DECLARE_READ8_MEMBER(sprint2_input_A_r); - DECLARE_READ8_MEMBER(sprint2_input_B_r); - DECLARE_READ8_MEMBER(sprint2_sync_r); - DECLARE_READ8_MEMBER(sprint2_steering1_r); - DECLARE_READ8_MEMBER(sprint2_steering2_r); - DECLARE_WRITE8_MEMBER(sprint2_steering_reset1_w); - DECLARE_WRITE8_MEMBER(sprint2_steering_reset2_w); - DECLARE_WRITE8_MEMBER(sprint2_wram_w); - DECLARE_WRITE8_MEMBER(output_latch_w); - DECLARE_READ8_MEMBER(sprint2_collision1_r); - DECLARE_READ8_MEMBER(sprint2_collision2_r); - DECLARE_WRITE8_MEMBER(sprint2_collision_reset1_w); - DECLARE_WRITE8_MEMBER(sprint2_collision_reset2_w); - DECLARE_WRITE8_MEMBER(sprint2_video_ram_w); - DECLARE_WRITE8_MEMBER(sprint2_noise_reset_w); - TILE_GET_INFO_MEMBER(get_tile_info); - virtual void video_start() override; - void sprint2_palette(palette_device &palette) const; - uint32_t screen_update_sprint2(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); - DECLARE_WRITE_LINE_MEMBER(screen_vblank_sprint2); - INTERRUPT_GEN_MEMBER(sprint2); - uint8_t collision_check(rectangle& rect); - inline int get_sprite_code(uint8_t *video_ram, int n); - inline int get_sprite_x(uint8_t *video_ram, int n); - inline int get_sprite_y(uint8_t *video_ram, int n); - int service_mode(); - required_device<cpu_device> m_maincpu; - required_device<watchdog_timer_device> m_watchdog; - required_device<f9334_device> m_outlatch; - required_device<discrete_sound_device> m_discrete; - required_device<gfxdecode_device> m_gfxdecode; - required_device<screen_device> m_screen; - required_device<palette_device> m_palette; - - void sprint2_map(address_map &map); -}; - -/*----------- defined in audio/sprint2.c -----------*/ -DISCRETE_SOUND_EXTERN( sprint2_discrete ); -DISCRETE_SOUND_EXTERN( sprint1_discrete ); -DISCRETE_SOUND_EXTERN( dominos_discrete ); - -#endif // MAME_INCLUDES_SPRINT2_H |