summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/isa_finalchs.h
blob: e2b2f1233e4b790cc55da4c673781d1ad7351b3f (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
#pragma once

#ifndef __ISA_FINALCHS_H__
#define __ISA_FINALCHS_H__

#include "emu.h"
#include "machine/isa.h"

//**************************************************************************
//  TYPE DEFINITIONS
//**************************************************************************

// ======================> isa8_finalchs_device

class isa8_finalchs_device :
		public device_t,
		public device_isa8_card_interface
{
public:
		// construction/destruction
		isa8_finalchs_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);

		DECLARE_READ8_MEMBER(finalchs_r);
		DECLARE_WRITE8_MEMBER(finalchs_w);
		// optional information overrides
		virtual machine_config_constructor device_mconfig_additions() const;
		virtual const rom_entry *device_rom_region() const;
protected:
		// device-level overrides
		virtual void device_start();
		virtual void device_reset();

private:
		// internal state
};


// device type definition
extern const device_type ISA8_FINALCHS;

#endif  /* __ISA_FINALCHS_H__ */
34 * renegade, sidepckt: 6809 type identification (nw) AJR2018-02-171-1/+1 * (nw) screw you macros and the horse you rode in on Vas Crabb2018-02-141-1/+2 * API change: Memory maps are now methods of the owner class [O. Galibert] Olivier Galibert2018-02-121-3/+3 * API change: Memory maps are now "last entry wins" [O. Galibert] Olivier Galibert2018-01-311-1/+1 * API Change: Machine configs are now a method of the owner class, and the prot... Olivier Galibert2018-01-171-2/+2 * sidepckt: Soundlatch modernization (nw) AJR2017-08-211-7/+2 * Move static data out of devices into the device types. This is a significant... Vas Crabb2017-05-141-2/+2 * Self-registering devices prep: Vas Crabb2017-02-271-1/+5 * sidepcktj: Forgot save_item for m_scroll_y (nw) darq2016-12-101-0/+1 * sidepcktj: Added a TODO node about possible unimplemented MCU simulation for ... darq2016-12-101-1/+1 * Fixed cocktail mode, added a note about the 'cooperative mode', implemented y... darq2016-12-101-14/+20 * NOTICE (TYPE NAME CONSOLIDATION) Miodrag Milanovic2016-10-221-6/+6 * Assorted typos fixed (MT #6295, 6296) (nw) Scott Stone2016-07-151-1/+1 * Further IRQ passthrough cleanup AJR2016-07-081-1/+1 * More gen_latch (nw) Ivan Vangelista2016-05-201-2/+4