1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
// license:BSD-3-Clause
// copyright-holders:Aaron Giles
/*************************************************************************
Atari Bad Lands hardware
*************************************************************************/
#ifndef MAME_INCLUDES_BADLANDS_H
#define MAME_INCLUDES_BADLANDS_H
#pragma once
#include "cpu/z80/z80.h"
#include "cpu/m68000/m68000.h"
#include "cpu/m6502/m6502.h"
#include "machine/eeprompar.h"
#include "machine/watchdog.h"
#include "machine/atarigen.h"
#include "machine/timer.h"
#include "sound/ym2151.h"
#include "video/atarimo.h"
#include "speaker.h"
/*----------- defined in machine/badlands.cpp -----------*/
//extern const gfx_layout badlands_molayout;
INPUT_PORTS_EXTERN(badlands);
class badlands_state : public atarigen_state
{
public:
badlands_state(const machine_config &mconfig, device_type type, const char *tag)
: atarigen_state(mconfig, type, tag),
m_audiocpu(*this, "audiocpu"),
m_soundcomm(*this, "soundcomm"),
m_playfield_tilemap(*this, "playfield"),
m_mob(*this, "mob")
{ }
optional_device<cpu_device> m_audiocpu;
optional_device<atari_sound_comm_device> m_soundcomm;
required_device<tilemap_device> m_playfield_tilemap;
optional_device<atari_motion_objects_device> m_mob;
virtual void update_interrupts() override;
virtual void scanline_update(screen_device &screen, int scanline) override;
DECLARE_READ16_MEMBER(sound_busy_r);
DECLARE_READ16_MEMBER(pedal_0_r);
DECLARE_READ16_MEMBER(pedal_1_r);
DECLARE_READ8_MEMBER(audio_io_r);
DECLARE_WRITE8_MEMBER(audio_io_w);
DECLARE_DRIVER_INIT(badlands);
TILE_GET_INFO_MEMBER(get_playfield_tile_info);
DECLARE_MACHINE_START(badlands);
DECLARE_MACHINE_RESET(badlands);
DECLARE_VIDEO_START(badlands);
uint32_t screen_update_badlands(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
INTERRUPT_GEN_MEMBER(vblank_int);
TIMER_DEVICE_CALLBACK_MEMBER(sound_scanline);
DECLARE_WRITE16_MEMBER( badlands_pf_bank_w );
static const atari_motion_objects_config s_mob_config;
void badlands(machine_config &config);
void audio_map(address_map &map);
void main_map(address_map &map);
private:
uint8_t m_pedal_value[2];
uint8_t m_playfield_tile_bank;
};
class badlandsbl_state : public badlands_state
{
public:
badlandsbl_state(const machine_config &mconfig, device_type type, const char *tag)
: badlands_state(mconfig, type, tag),
m_b_sharedram(*this, "b_sharedram"),
m_spriteram(*this, "spriteram")
{}
DECLARE_READ8_MEMBER(bootleg_shared_r);
DECLARE_WRITE8_MEMBER(bootleg_shared_w);
DECLARE_WRITE8_MEMBER(bootleg_main_irq_w);
DECLARE_READ16_MEMBER(badlandsb_unk_r);
DECLARE_READ8_MEMBER(sound_response_r);
TIMER_DEVICE_CALLBACK_MEMBER(bootleg_sound_scanline);
void badlandsb(machine_config &config);
void bootleg_map(address_map &map);
void bootleg_audio_map(address_map &map);
uint32_t screen_update_badlandsbl(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
protected:
virtual void machine_reset() override;
private:
required_shared_ptr<uint8_t> m_b_sharedram;
required_shared_ptr<uint16_t> m_spriteram;
uint8_t m_sound_response;
};
#endif // MAME_INCLUDES_BADLANDS_H
|