OSDN Git Service

[General][Qt] Merge upstream 2015-03-15.
[csp-qt/common_source_project-fm7.git] / source / src / vm / x1 / x1.h
1 /*
2         SHARP X1 Emulator 'eX1'
3         SHARP X1twin Emulator 'eX1twin'
4         SHARP X1turbo Emulator 'eX1turbo'
5
6         Author : Takeda.Toshiya
7         Date   : 2009.03.11-
8
9         [ virtual machine ]
10 */
11
12 #ifndef _X1_H_
13 #define _X1_H_
14
15 #if defined(_X1TURBOZ)
16 #define DEVICE_NAME             "SHARP X1turboZ"
17 #define CONFIG_NAME             "x1turboz"
18 #elif defined(_X1TURBO)
19 #define DEVICE_NAME             "SHARP X1turbo"
20 #define CONFIG_NAME             "x1turbo"
21 #elif defined(_X1TWIN)
22 #define DEVICE_NAME             "SHARP X1twin"
23 #define CONFIG_NAME             "x1twin"
24 #else
25 #define DEVICE_NAME             "SHARP X1"
26 #define CONFIG_NAME             "x1"
27 #endif
28
29 #if defined(_X1TURBO) || defined(_X1TURBOZ)
30 #define _X1TURBO_FEATURE
31 #endif
32
33 // device informations for virtual machine (x1)
34 //#ifdef _X1TURBO_FEATURE
35 //24KHz
36 //#define FRAMES_PER_SEC        55.49
37 //#define LINES_PER_FRAME       448
38 //#define CHARS_PER_LINE        56
39 //#define HD46505_HORIZ_FREQ    24860
40 //#else
41 // 15KHz
42 #define FRAMES_PER_SEC          61.94
43 #define LINES_PER_FRAME         258
44 #define CHARS_PER_LINE          56
45 #define HD46505_HORIZ_FREQ      15980
46 //#endif
47 #define CPU_CLOCKS              4000000
48 #define SCREEN_WIDTH            640
49 #define SCREEN_HEIGHT           400
50 #define MAX_DRIVE               4
51 #define IO_ADDR_MAX             0x10000
52 #define HAS_AY_3_8910
53 #define Z80_IO_WAIT
54 #ifdef _X1TURBO_FEATURE
55 #define SINGLE_MODE_DMA
56 #endif
57 #define DATAREC_FF_REW_SPEED    16
58 #define SUPPORT_VARIABLE_TIMING
59
60 #ifdef _X1TURBO_FEATURE
61 #define IPL_ROM_FILE_SIZE       0x8000
62 #define IPL_ROM_FILE_NAME       _T("IPLROM.X1T")
63 #define SUB_ROM_FILE_NAME       _T("SUBROM.X1T")
64 #define KBD_ROM_FILE_NAME       _T("KBDROM.X1T")
65 #else
66 #define IPL_ROM_FILE_SIZE       0x1000
67 #define IPL_ROM_FILE_NAME       _T("IPLROM.X1")
68 #define SUB_ROM_FILE_NAME       _T("SUBROM.X1")
69 #define KBD_ROM_FILE_NAME       _T("KBDROM.X1")
70 #endif
71 #define CRC32_MSM80C49_262      0x43EE7D6F      // X1turbo with CMT
72 #define CRC32_MSM80C49_277      0x75904EFB      // X1turbo (not supported yet)
73
74 #ifdef _X1TWIN
75 // device informations for virtual machine (pce)
76 #define PCE_FRAMES_PER_SEC      60
77 #define PCE_LINES_PER_FRAME     262
78 #define PCE_CPU_CLOCKS          7159090
79 #endif
80
81 // 4:3
82 #define SCREEN_WIDTH_ASPECT 400 
83 #define SCREEN_HEIGHT_ASPECT 300
84 // device informations for win32
85 #define USE_SPECIAL_RESET
86 #ifdef _X1TURBO_FEATURE
87 #define USE_DEVICE_TYPE         2
88 #define USE_DRIVE_TYPE          2
89 #endif
90 #define USE_FD1
91 #define USE_FD2
92 #define FD_BASE_NUMBER          0
93 #define USE_TAPE
94 #define USE_TAPE_BUTTON
95 #ifdef _X1TWIN
96 #define USE_CART1
97 #endif
98 #define NOTIFY_KEY_DOWN
99 #define USE_SHIFT_NUMPAD_KEY
100 #define USE_ALT_F10_KEY
101 #define USE_AUTO_KEY            8
102 #define USE_AUTO_KEY_RELEASE    10
103 #define USE_MONITOR_TYPE        2
104 #define USE_CRT_FILTER
105 #define USE_SCANLINE
106 #define USE_ACCESS_LAMP
107 #define USE_SOUND_DEVICE_TYPE   3
108 #define USE_DEBUGGER
109 #define USE_STATE
110
111 #include "../../common.h"
112 #include "../../fileio.h"
113
114 class EMU;
115 class DEVICE;
116 class EVENT;
117
118 class DATAREC;
119 class HD46505;
120 class I8255;
121 class IO;
122 class MB8877;
123 class YM2151;
124 class YM2203;
125 class Z80;
126 class Z80CTC;
127 class Z80SIO;
128 #ifdef _X1TURBO_FEATURE
129 class Z80DMA;
130 #endif
131
132 class DISPLAY;
133 class EMM;
134 class FLOPPY;
135 class IOBUS;
136 class JOYSTICK;
137 class MEMORY;
138 class MOUSE;
139 class PRINTER;
140 class PSUB;
141
142 class MCS48;
143 class UPD1990A;
144 class SUB;
145 class KEYBOARD;
146
147 #ifdef _X1TWIN
148 class HUC6280;
149 class PCE;
150 #endif
151
152 class VM
153 {
154 protected:
155         EMU* emu;
156         
157         // devices for x1
158         EVENT* event;
159         
160         DATAREC* drec;
161         HD46505* crtc;
162         I8255* pio;
163         IO *io;
164         MB8877* fdc;
165         YM2151* opm1;
166         YM2151* opm2;
167         YM2203* psg;
168         Z80* cpu;
169         Z80CTC* ctc;
170         Z80SIO* sio;
171         Z80CTC* ctc1;
172         Z80CTC* ctc2;
173 #ifdef _X1TURBO_FEATURE
174         Z80DMA* dma;
175 #endif
176         
177         DISPLAY* display;
178         EMM* emm;
179         FLOPPY* floppy;
180         IOBUS* iobus;
181         JOYSTICK* joy;
182         MEMORY* memory;
183         MOUSE* mouse;
184         PRINTER* printer;
185         PSUB* psub;
186         
187         MCS48* cpu_sub;
188         UPD1990A* rtc_sub;
189         I8255* pio_sub;
190         SUB* sub;
191         
192         MCS48* cpu_kbd;
193         KEYBOARD* kbd;
194         
195         bool pseudo_sub_cpu;
196         int sound_device_type;
197         
198 #ifdef _X1TWIN
199         // device for pce
200         EVENT* pceevent;
201         
202         HUC6280* pcecpu;
203         PCE* pce;
204 #endif
205         
206 public:
207         // ----------------------------------------
208         // initialize
209         // ----------------------------------------
210         
211         VM(EMU* parent_emu);
212         ~VM();
213         
214         // ----------------------------------------
215         // for emulation class
216         // ----------------------------------------
217         
218         // drive virtual machine
219         void reset();
220         void special_reset();
221         void run();
222         double frame_rate();
223         
224 #ifdef USE_DEBUGGER
225         // debugger
226         DEVICE *get_cpu(int index);
227 #endif
228         
229         // draw screen
230         void draw_screen();
231         int access_lamp();
232         
233         // sound generation
234         void initialize_sound(int rate, int samples);
235         uint16* create_sound(int* extra_frames);
236         int sound_buffer_ptr();
237         
238         // notify key
239         void key_down(int code, bool repeat);
240         void key_up(int code);
241         
242         // user interface
243         void open_disk(int drv, _TCHAR* file_path, int bank);
244         void close_disk(int drv);
245         bool disk_inserted(int drv);
246         void write_protect_fd(int drv, bool flag);
247         bool is_write_protect_fd(int drv);
248         void play_tape(_TCHAR* file_path);
249         void rec_tape(_TCHAR* file_path);
250         void close_tape();
251         bool tape_inserted();
252         void push_play();
253         void push_stop();
254         void push_fast_forward();
255         void push_fast_rewind();
256         void push_apss_forward();
257         void push_apss_rewind();
258         bool now_skip();
259         int get_tape_ptr(void);
260         bool get_tape_play(void);
261 #ifdef _X1TWIN
262         void open_cart(int drv, _TCHAR* file_path);
263         void close_cart(int drv);
264         bool cart_inserted(int drv);
265 #endif
266         
267         void update_config();
268 #ifdef _X1TURBO_FEATURE
269         void update_dipswitch();
270 #endif
271         void save_state(FILEIO* state_fio);
272         bool load_state(FILEIO* state_fio);
273         
274         // ----------------------------------------
275         // for each device
276         // ----------------------------------------
277         
278         // devices
279         DEVICE* get_device(int id);
280         DEVICE* dummy;
281         DEVICE* first_device;
282         DEVICE* last_device;
283 };
284
285 #endif