mirror of
https://github.com/holub/mame
synced 2025-04-16 13:34:55 +03:00
31 lines
527 B
C++
31 lines
527 B
C++
// license:BSD-3-Clause
|
|
// copyright-holders:hap
|
|
/*
|
|
|
|
Mitsubishi M58846 MCU
|
|
|
|
*/
|
|
|
|
#ifndef _M58846_H_
|
|
#define _M58846_H_
|
|
|
|
#include "melps4.h"
|
|
|
|
|
|
class m58846_device : public melps4_cpu_device
|
|
{
|
|
public:
|
|
m58846_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
|
|
|
|
protected:
|
|
// device_disasm_interface overrides
|
|
virtual offs_t disasm_disassemble(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram, UINT32 options);
|
|
};
|
|
|
|
|
|
|
|
extern const device_type M58846;
|
|
|
|
|
|
#endif /* _M58846_H_ */
|