mirror of
https://github.com/holub/mame
synced 2025-10-05 08:41:31 +03:00
Remove mame/includes/ec184x.h: it wasn't included anywhere. Its content is duplicated in devices/machine/genpc.h, which is included in drivers/ec184x.h. (nw)
This commit is contained in:
parent
1d9052fa6d
commit
6c0ddbe07b
@ -3288,7 +3288,6 @@ files {
|
||||
createMESSProjects(_target, _subtarget, "xussrpc")
|
||||
files {
|
||||
MAME_DIR .. "src/mame/drivers/ec184x.cpp",
|
||||
MAME_DIR .. "src/mame/includes/ec184x.h",
|
||||
MAME_DIR .. "src/mame/drivers/iskr103x.cpp",
|
||||
MAME_DIR .. "src/mame/drivers/mc1502.cpp",
|
||||
MAME_DIR .. "src/mame/machine/kb_7007_3.h",
|
||||
|
@ -1,43 +0,0 @@
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Sergey Svishchev
|
||||
/*****************************************************************************
|
||||
*
|
||||
* includes/ec184x.h
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef EC184X_H_
|
||||
#define EC184X_H_
|
||||
|
||||
#include "machine/genpc.h"
|
||||
|
||||
#define MCFG_EC1841_MOTHERBOARD_ADD(_tag, _cputag) \
|
||||
MCFG_DEVICE_ADD(_tag, EC1841_MOTHERBOARD, 0) \
|
||||
ec1841_mb_device::static_set_cputag(*device, _cputag);
|
||||
|
||||
// ======================> ibm5150_mb_device
|
||||
class ec1841_mb_device : public ibm5160_mb_device
|
||||
{
|
||||
public:
|
||||
// construction/destruction
|
||||
ec1841_mb_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
|
||||
|
||||
// optional information overrides
|
||||
virtual machine_config_constructor device_mconfig_additions() const;
|
||||
virtual ioport_constructor device_input_ports() const;
|
||||
|
||||
protected:
|
||||
// device-level overrides
|
||||
virtual void device_start();
|
||||
virtual void device_reset();
|
||||
|
||||
public:
|
||||
virtual DECLARE_READ8_MEMBER ( pc_ppi_portc_r );
|
||||
virtual DECLARE_WRITE8_MEMBER( pc_ppi_portb_w );
|
||||
};
|
||||
|
||||
|
||||
// device type definition
|
||||
extern const device_type EC1841_MOTHERBOARD;
|
||||
|
||||
#endif /* EC184X_H_ */
|
Loading…
Reference in New Issue
Block a user