OSDN Git Service

[VM][General] Merge upstream 2016-03-01. (Pahse 1).
[csp-qt/common_source_project-fm7.git] / source / src / vm / mz2500 / mz1e26.h
1 /*
2         SHARP MZ-2500 Emulator 'EmuZ-2500'
3
4         Author : Takeda.Toshiya
5         Date   : 2007.02.11 -
6
7         [ MZ-1E26 (Voice Communication I/F) ]
8 */
9
10 #ifndef _MZ1E26_H_
11 #define _MZ1E26_H_
12
13 #include "../vm.h"
14 #include "../../emu.h"
15 #include "../device.h"
16
17 class MZ1E26 : public DEVICE
18 {
19 private:
20 //      uint8_t prev_data;
21         
22 public:
23         MZ1E26(VM* parent_vm, EMU* parent_emu) : DEVICE(parent_vm, parent_emu) {}
24         ~MZ1E26() {}
25         
26         // common functions
27         void initialize();
28         void write_data8(uint32_t addr, uint32_t data);
29         uint32_t read_io8(uint32_t addr);
30 };
31
32 #endif
33