diff options
Diffstat (limited to 'src/devices/cpu/tms1000/tp0320.h')
-rw-r--r-- | src/devices/cpu/tms1000/tp0320.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/devices/cpu/tms1000/tp0320.h b/src/devices/cpu/tms1000/tp0320.h new file mode 100644 index 00000000000..32e18e5159f --- /dev/null +++ b/src/devices/cpu/tms1000/tp0320.h @@ -0,0 +1,32 @@ +// license:BSD-3-Clause +// copyright-holders:Wilbert Pol, hap +/* + + TMS1000 family - TP0320 + +*/ + +#ifndef _TP0320_H_ +#define _TP0320_H_ + +#include "tms0980.h" + + +class tp0320_cpu_device : public tms0980_cpu_device +{ +public: + tp0320_cpu_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); + +protected: + // overrides + //virtual void device_start() override; + //virtual void device_reset() override; + virtual offs_t disasm_disassemble(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram, UINT32 options) override; + + //virtual machine_config_constructor device_mconfig_additions() const override; +}; + + +extern const device_type TP0320; + +#endif /* _TP0320_H_ */ |