blob: b26be3b515db715422f4e03afd512867d8b2fe61 (
plain) (
blame)
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
|
// license:BSD-3-Clause
// copyright-holders:Sandro Ronco
#ifndef MAME_BUS_Z88_FLASH_H
#define MAME_BUS_Z88_FLASH_H
#pragma once
#include "z88.h"
#include "machine/intelfsh.h"
//**************************************************************************
// TYPE DEFINITIONS
//**************************************************************************
// ======================> z88_1024k_flash_device
class z88_1024k_flash_device : public device_t,
public device_z88cart_interface
{
public:
// construction/destruction
z88_1024k_flash_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
protected:
// device-level overrides
virtual void device_add_mconfig(machine_config &config) override;
virtual void device_start() override;
// z88cart_interface overrides
virtual DECLARE_READ8_MEMBER(read) override;
virtual DECLARE_WRITE8_MEMBER(write) override;
virtual uint8_t* get_cart_base() override;
virtual uint32_t get_cart_size() override { return 0x100000; }
private:
required_device<intelfsh8_device> m_flash;
};
// device type definition
DECLARE_DEVICE_TYPE(Z88_1024K_FLASH, z88_1024k_flash_device)
#endif // MAME_BUS_Z88_FLASH_H
|