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
|
// license:BSD-3-Clause
// copyright-holders:Jarek Parchanski
#ifndef MAME_INCLUDES_TOKI_H
#define MAME_INCLUDES_TOKI_H
#pragma once
#include "audio/seibu.h"
#include "machine/gen_latch.h"
#include "sound/msm5205.h"
#include "video/bufsprite.h"
#include "emupal.h"
#include "screen.h"
#include "tilemap.h"
class toki_state : public driver_device
{
public:
toki_state(const machine_config &mconfig, device_type type, const char *tag) :
driver_device(mconfig, type, tag),
m_maincpu(*this, "maincpu"),
m_audiocpu(*this, "audiocpu"),
m_audiocpu_rom(*this, "audiocpu"),
m_seibu_sound(*this, "seibu_sound"),
m_msm(*this, "msm"),
m_gfxdecode(*this, "gfxdecode"),
m_screen(*this, "screen"),
m_palette(*this, "palette"),
m_soundlatch(*this, "soundlatch"),
m_spriteram(*this, "spriteram"),
m_background1_videoram(*this, "bg1_vram"),
m_background2_videoram(*this, "bg2_vram"),
m_videoram(*this, "videoram"),
m_scrollram(*this, "scrollram")
{ }
void toki(machine_config &config);
void jujuba(machine_config &config);
void tokib(machine_config &config);
void init_tokib();
void init_jujuba();
void init_toki();
private:
required_device<cpu_device> m_maincpu;
required_device<cpu_device> m_audiocpu;
required_region_ptr<u8> m_audiocpu_rom;
optional_device<seibu_sound_device> m_seibu_sound;
optional_device<msm5205_device> m_msm;
required_device<gfxdecode_device> m_gfxdecode;
required_device<screen_device> m_screen;
required_device<palette_device> m_palette;
optional_device<generic_latch_8_device> m_soundlatch; // tokib
required_device<buffered_spriteram16_device> m_spriteram;
required_shared_ptr<uint16_t> m_background1_videoram;
required_shared_ptr<uint16_t> m_background2_videoram;
required_shared_ptr<uint16_t> m_videoram;
required_shared_ptr<uint16_t> m_scrollram;
int m_msm5205next = 0;
int m_toggle = 0;
tilemap_t *m_background_layer = nullptr;
tilemap_t *m_foreground_layer = nullptr;
tilemap_t *m_text_layer = nullptr;
void tokib_soundcommand_w(uint16_t data);
uint16_t pip_r();
void toki_control_w(offs_t offset, uint16_t data, uint16_t mem_mask = ~0);
void foreground_videoram_w(offs_t offset, uint16_t data, uint16_t mem_mask = ~0);
void background1_videoram_w(offs_t offset, uint16_t data, uint16_t mem_mask = ~0);
void background2_videoram_w(offs_t offset, uint16_t data, uint16_t mem_mask = ~0);
void tokib_adpcm_control_w(uint8_t data);
void tokib_adpcm_data_w(uint8_t data);
DECLARE_WRITE_LINE_MEMBER(tokib_adpcm_int);
uint8_t jujuba_z80_data_decrypt(offs_t offset);
TILE_GET_INFO_MEMBER(get_text_tile_info);
TILE_GET_INFO_MEMBER(get_back_tile_info);
TILE_GET_INFO_MEMBER(get_fore_tile_info);
virtual void video_start() override;
uint32_t screen_update_toki(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
uint32_t screen_update_tokib(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
void toki_draw_sprites(bitmap_ind16 &bitmap,const rectangle &cliprect);
void tokib_draw_sprites(bitmap_ind16 &bitmap,const rectangle &cliprect);
void jujuba_audio_map(address_map &map);
void jujuba_audio_opcodes_map(address_map &map);
void toki_audio_map(address_map &map);
void toki_audio_opcodes_map(address_map &map);
void toki_map(address_map &map);
void tokib_audio_map(address_map &map);
void tokib_map(address_map &map);
};
#endif // MAME_INCLUDES_TOKI_H
|