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
|
// license:BSD-3-Clause
// copyright-holders:Olivier Galibert
/*************************************************************************
GI Joe
*************************************************************************/
#ifndef MAME_INCLUDES_GIJOE_H
#define MAME_INCLUDES_GIJOE_H
#pragma once
#include "sound/k054539.h"
#include "video/k053251.h"
#include "video/k054156_k054157_k056832.h"
#include "video/k053246_k053247_k055673.h"
#include "video/konami_helper.h"
#include "machine/k054321.h"
#include "emupal.h"
class gijoe_state : public driver_device
{
public:
gijoe_state(const machine_config &mconfig, device_type type, const char *tag) :
driver_device(mconfig, type, tag),
m_spriteram(*this, "spriteram"),
m_workram(*this, "workram"),
m_maincpu(*this, "maincpu"),
m_audiocpu(*this, "audiocpu"),
m_k054539(*this, "k054539"),
m_k056832(*this, "k056832"),
m_k053246(*this, "k053246"),
m_k053251(*this, "k053251"),
m_palette(*this, "palette"),
m_k054321(*this, "k054321")
{ }
void gijoe(machine_config &config);
private:
/* memory pointers */
required_shared_ptr<uint16_t> m_spriteram;
required_shared_ptr<uint16_t> m_workram;
/* video-related */
int m_avac_bits[4]{};
int m_avac_occupancy[4]{};
int m_layer_colorbase[4]{};
int m_layer_pri[4]{};
int m_avac_vrc = 0;
int m_sprite_colorbase = 0;
/* misc */
uint16_t m_cur_control2 = 0U;
emu_timer *m_dmadelay_timer = nullptr;
/* devices */
required_device<cpu_device> m_maincpu;
required_device<cpu_device> m_audiocpu;
required_device<k054539_device> m_k054539;
required_device<k056832_device> m_k056832;
required_device<k053247_device> m_k053246;
required_device<k053251_device> m_k053251;
required_device<palette_device> m_palette;
required_device<k054321_device> m_k054321;
uint16_t control2_r();
void control2_w(offs_t offset, uint16_t data, uint16_t mem_mask = ~0);
void sound_irq_w(uint16_t data);
virtual void machine_start() override;
virtual void machine_reset() override;
virtual void video_start() override;
uint32_t screen_update_gijoe(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
INTERRUPT_GEN_MEMBER(gijoe_interrupt);
TIMER_CALLBACK_MEMBER(dmaend_callback);
void gijoe_objdma();
K056832_CB_MEMBER(tile_callback);
K053246_CB_MEMBER(sprite_callback);
void gijoe_map(address_map &map);
void sound_map(address_map &map);
};
#endif // MAME_INCLUDES_GIJOE_H
|