OSDN Git Service

[BUILD] Set SOVERSION and GIT hash automatically.
[csp-qt/common_source_project-fm7.git] / source / src / vm / mz80k / mz80k.cpp
1 /*
2         SHARP MZ-80K/C Emulator 'EmuZ-80K'
3         SHARP MZ-1200 Emulator 'EmuZ-1200'
4
5         Author : Takeda.Toshiya
6         Date   : 2010.08.18-
7
8         SHARP MZ-80A Emulator 'EmuZ-80A'
9         Modify : Hideki Suga
10         Date   : 2014.12.10 -
11
12         [ virtual machine ]
13 */
14
15 #include "mz80k.h"
16 #include "../../emu.h"
17 #include "../device.h"
18 #include "../event.h"
19
20 #if defined(_MZ1200) || defined(_MZ80A)
21 #include "../and.h"
22 #endif
23 #include "../datarec.h"
24 #include "../i8253.h"
25 #include "../i8255.h"
26 #include "../ls393.h"
27 #include "../mz1p17.h"
28 #include "../noise.h"
29 #include "../pcm1bit.h"
30 #include "../prnfile.h"
31 #include "../z80.h"
32
33 #ifdef USE_DEBUGGER
34 #include "../debugger.h"
35 #endif
36
37 #include "keyboard.h"
38 #include "memory.h"
39 #include "printer.h"
40
41 #if defined(SUPPORT_MZ80AIF)
42 #include "../io.h"
43 #include "../disk.h"
44 #include "../mb8877.h"
45 #include "mz80aif.h"
46 #elif defined(SUPPORT_MZ80FIO)
47 #include "../io.h"
48 #include "../disk.h"
49 #include "../t3444a.h"
50 #include "mz80fio.h"
51 #endif
52
53 // ----------------------------------------------------------------------------
54 // initialize
55 // ----------------------------------------------------------------------------
56
57 VM::VM(EMU* parent_emu) : VM_TEMPLATE(parent_emu)
58 {
59         // create devices
60         first_device = last_device = NULL;
61         dummy = new DEVICE(this, emu);  // must be 1st device
62         event = new EVENT(this, emu);   // must be 2nd device
63         dummy->set_device_name(_T("1st Dummy"));
64         
65 #if defined(_MZ1200) || defined(_MZ80A)
66         and_int = new AND(this, emu);
67         and_int->set_device_name(_T("AND Gate (Interrupts)"));
68 #endif
69         drec = new DATAREC(this, emu);
70         drec->set_context_noise_play(new NOISE(this, emu));
71         drec->set_context_noise_stop(new NOISE(this, emu));
72         drec->set_context_noise_fast(new NOISE(this, emu));
73         ctc = new I8253(this, emu);
74         pio = new I8255(this, emu);
75         counter = new LS393(this, emu);
76         pcm = new PCM1BIT(this, emu);
77         cpu = new Z80(this, emu);
78         counter->set_device_name(_T("74LS393 Counter (CTC/Sound)"));
79         
80         keyboard = new KEYBOARD(this, emu);
81         memory = new MEMORY(this, emu);
82         printer = new PRINTER(this, emu);
83 #if defined(SUPPORT_MZ80AIF)
84         io = new IO(this, emu);
85         fdc = new MB8877(this, emu);    // mb8866
86         fdc->set_context_noise_seek(new NOISE(this, emu));
87         fdc->set_context_noise_head_down(new NOISE(this, emu));
88         fdc->set_context_noise_head_up(new NOISE(this, emu));
89         mz80aif = new MZ80AIF(this, emu);
90 #elif defined(SUPPORT_MZ80FIO)
91         io = new IO(this, emu);
92         fdc = new T3444A(this, emu);    // t3444m
93         fdc->set_context_noise_seek(new NOISE(this, emu));
94         fdc->set_context_noise_head_down(new NOISE(this, emu));
95         fdc->set_context_noise_head_up(new NOISE(this, emu));
96         mz80fio = new MZ80FIO(this, emu);
97 #endif
98         
99         // set contexts
100         event->set_context_cpu(cpu);
101         event->set_context_sound(pcm);
102         event->set_context_sound(drec);
103 #if defined(SUPPORT_MZ80AIF) || defined(SUPPORT_MZ80FIO)
104         event->set_context_sound(fdc->get_context_noise_seek());
105         event->set_context_sound(fdc->get_context_noise_head_down());
106         event->set_context_sound(fdc->get_context_noise_head_up());
107 #endif
108         event->set_context_sound(drec->get_context_noise_play());
109         event->set_context_sound(drec->get_context_noise_stop());
110         event->set_context_sound(drec->get_context_noise_fast());
111         
112 #if defined(_MZ1200) || defined(_MZ80A)
113         and_int->set_context_out(cpu, SIG_CPU_IRQ, 1);
114         and_int->set_mask(SIG_AND_BIT_0 | SIG_AND_BIT_1);
115 #endif
116         drec->set_context_ear(pio, SIG_I8255_PORT_C, 0x20);
117         drec->set_context_remote(pio, SIG_I8255_PORT_C, 0x10);
118         ctc->set_context_ch0(counter, SIG_LS393_CLK, 1);
119         ctc->set_context_ch1(ctc, SIG_I8253_CLOCK_2, 1);
120 #if defined(_MZ1200) || defined(_MZ80A)
121         ctc->set_context_ch2(and_int, SIG_AND_BIT_0, 1);
122 #else
123         ctc->set_context_ch2(cpu, SIG_CPU_IRQ, 1);
124 #endif
125         ctc->set_constant_clock(0, 2000000);
126         ctc->set_constant_clock(1, 31250);
127         pio->set_context_port_a(keyboard, SIG_KEYBOARD_COLUMN, 0x0f, 0);
128         pio->set_context_port_c(memory, SIG_MEMORY_VGATE, 1, 0);
129         pio->set_context_port_c(drec, SIG_DATAREC_MIC, 2, 0);
130 #if defined(_MZ1200) || defined(_MZ80A)
131         pio->set_context_port_c(and_int, SIG_AND_BIT_1, 4, 0);
132 #endif
133         pio->set_context_port_c(drec, SIG_DATAREC_TRIG, 8, 0);
134         counter->set_context_1qa(pcm, SIG_PCM1BIT_SIGNAL, 1);
135         // Sound:: Force realtime rendering. This is temporally fix. 20161024 K.O
136         //pcm->set_realtime_render(true);
137         
138         keyboard->set_context_pio(pio);
139         memory->set_context_ctc(ctc);
140         memory->set_context_pio(pio);
141         
142 #if defined(SUPPORT_MZ80AIF)
143         fdc->set_context_irq(memory, SIG_MEMORY_FDC_IRQ, 1);
144         fdc->set_context_drq(memory, SIG_MEMORY_FDC_DRQ, 1);
145         mz80aif->set_context_fdc(fdc);
146 #elif defined(SUPPORT_MZ80FIO)
147         mz80fio->set_context_fdc(fdc);
148 #endif
149         
150         if(config.printer_type == 0) {  
151                 printer->set_context_prn(new PRNFILE(this, emu));
152         } else if(config.printer_type == 1) {
153                 MZ1P17 *mz1p17 = new MZ1P17(this, emu);
154                 mz1p17->mode = MZ1P17_MODE_MZ80P4;
155                 printer->set_context_prn(mz1p17);
156         } else {
157                 printer->set_context_prn(dummy);
158         }
159         
160         // cpu bus
161         cpu->set_context_mem(memory);
162 #if defined(SUPPORT_MZ80AIF) || defined(SUPPORT_MZ80FIO)
163         cpu->set_context_io(io);
164 #else
165         cpu->set_context_io(dummy);
166 #endif
167         cpu->set_context_intr(dummy);
168 #ifdef USE_DEBUGGER
169         cpu->set_context_debugger(new DEBUGGER(this, emu));
170 #endif
171         
172         // i/o bus
173 #if defined(SUPPORT_MZ80AIF)
174         io->set_iomap_range_rw(0xd8, 0xdb, fdc);
175         io->set_iomap_range_w(0xdc, 0xdd, mz80aif);
176 #elif defined(SUPPORT_MZ80FIO)
177         io->set_iomap_range_rw(0xf8, 0xfb, mz80fio);
178 #endif
179         io->set_iomap_range_rw(0xfe, 0xff, printer);
180         
181         // initialize all devices
182 #if defined(__GIT_REPO_VERSION)
183         strncpy(_git_revision, __GIT_REPO_VERSION, sizeof(_git_revision) - 1);
184 #endif
185         for(DEVICE* device = first_device; device; device = device->next_device) {
186                 device->initialize();
187         }
188         decl_state();
189 }
190
191 VM::~VM()
192 {
193         // delete all devices
194         for(DEVICE* device = first_device; device;) {
195                 DEVICE *next_device = device->next_device;
196                 device->release();
197                 delete device;
198                 device = next_device;
199         }
200 }
201
202 DEVICE* VM::get_device(int id)
203 {
204         for(DEVICE* device = first_device; device; device = device->next_device) {
205                 if(device->this_device_id == id) {
206                         return device;
207                 }
208         }
209         return NULL;
210 }
211
212 // ----------------------------------------------------------------------------
213 // drive virtual machine
214 // ----------------------------------------------------------------------------
215
216 void VM::reset()
217 {
218         // reset all devices
219         for(DEVICE* device = first_device; device; device = device->next_device) {
220                 device->reset();
221         }
222 #if defined(SUPPORT_MZ80AIF)
223         for(int i = 0; i < MAX_DRIVE; i++) {
224                 if(config.drive_type) {
225                         fdc->set_drive_type(i, DRIVE_TYPE_2DD);
226                 } else {
227                         fdc->set_drive_type(i, DRIVE_TYPE_2D);
228                 }
229         }
230 #elif defined(SUPPORT_MZ80FIO)
231         for(int i = 0; i < MAX_DRIVE; i++) {
232                 fdc->set_drive_type(i, DRIVE_TYPE_2D);
233 //              fdc->set_drive_mfm(i, false);
234         }
235 #endif
236 #if defined(_MZ1200) || defined(_MZ80A)
237         and_int->write_signal(SIG_AND_BIT_0, 0, 1);     // CLOCK = L
238         and_int->write_signal(SIG_AND_BIT_1, 1, 1);     // INTMASK = H
239 #endif
240 }
241
242 void VM::run()
243 {
244         event->drive();
245 }
246
247 // ----------------------------------------------------------------------------
248 // debugger
249 // ----------------------------------------------------------------------------
250
251 #ifdef USE_DEBUGGER
252 DEVICE *VM::get_cpu(int index)
253 {
254         if(index == 0) {
255                 return cpu;
256         }
257         return NULL;
258 }
259 #endif
260
261 // ----------------------------------------------------------------------------
262 // draw screen
263 // ----------------------------------------------------------------------------
264
265 void VM::draw_screen()
266 {
267         memory->draw_screen();
268 }
269
270 // ----------------------------------------------------------------------------
271 // soud manager
272 // ----------------------------------------------------------------------------
273
274 void VM::initialize_sound(int rate, int samples)
275 {
276         // init sound manager
277         event->initialize_sound(rate, samples);
278         
279         // init sound gen
280         pcm->initialize_sound(rate, 8000);
281 }
282
283 uint16_t* VM::create_sound(int* extra_frames)
284 {
285         return event->create_sound(extra_frames);
286 }
287
288 int VM::get_sound_buffer_ptr()
289 {
290         return event->get_sound_buffer_ptr();
291 }
292
293 #ifdef USE_SOUND_VOLUME
294 void VM::set_sound_device_volume(int ch, int decibel_l, int decibel_r)
295 {
296         if(ch-- == 0) {
297                 pcm->set_volume(0, decibel_l, decibel_r);
298         } else if(ch-- == 0) {
299                 drec->set_volume(0, decibel_l, decibel_r);
300 #if defined(SUPPORT_MZ80AIF) || defined(SUPPORT_MZ80FIO)
301         } else if(ch-- == 0) {
302                 fdc->get_context_noise_seek()->set_volume(0, decibel_l, decibel_r);
303                 fdc->get_context_noise_head_down()->set_volume(0, decibel_l, decibel_r);
304                 fdc->get_context_noise_head_up()->set_volume(0, decibel_l, decibel_r);
305 #endif
306         } else if(ch-- == 0) {
307                 drec->get_context_noise_play()->set_volume(0, decibel_l, decibel_r);
308                 drec->get_context_noise_stop()->set_volume(0, decibel_l, decibel_r);
309                 drec->get_context_noise_fast()->set_volume(0, decibel_l, decibel_r);
310         }
311 }
312 #endif
313
314 // ----------------------------------------------------------------------------
315 // notify key
316 // ----------------------------------------------------------------------------
317
318 void VM::key_down(int code, bool repeat)
319 {
320         if(!repeat) {
321                 keyboard->key_down(code);
322         }
323 }
324
325 void VM::key_up(int code)
326 {
327 //      keyboard->key_up(code);
328 }
329
330 bool VM::get_caps_locked()
331 {
332         return keyboard->get_caps_locked();
333 }
334
335 bool VM::get_kana_locked()
336 {
337         return keyboard->get_kana_locked();
338 }
339
340 // ----------------------------------------------------------------------------
341 // user interface
342 // ----------------------------------------------------------------------------
343
344 #if defined(SUPPORT_MZ80AIF) || defined(SUPPORT_MZ80FIO)
345 void VM::open_floppy_disk(int drv, const _TCHAR* file_path, int bank)
346 {
347         fdc->open_disk(drv, file_path, bank);
348 }
349
350 void VM::close_floppy_disk(int drv)
351 {
352         fdc->close_disk(drv);
353 }
354
355 bool VM::is_floppy_disk_inserted(int drv)
356 {
357         return fdc->is_disk_inserted(drv);
358 }
359
360 void VM::is_floppy_disk_protected(int drv, bool value)
361 {
362         fdc->is_disk_protected(drv, value);
363 }
364
365 bool VM::is_floppy_disk_protected(int drv)
366 {
367         return fdc->is_disk_protected(drv);
368 }
369
370 uint32_t VM::is_floppy_disk_accessed()
371 {
372         return fdc->read_signal(0);
373 }
374 #endif
375
376
377 void VM::play_tape(int drv, const _TCHAR* file_path)
378 {
379         drec->play_tape(file_path);
380 //      drec->set_remote(true);
381 }
382
383 void VM::rec_tape(int drv, const _TCHAR* file_path)
384 {
385         drec->rec_tape(file_path);
386 //      drec->set_remote(true);
387 }
388
389 void VM::close_tape(int drv)
390 {
391         emu->lock_vm();
392         drec->close_tape();
393         emu->unlock_vm();
394 //      drec->set_remote(false);
395 }
396
397 bool VM::is_tape_inserted(int drv)
398 {
399         return drec->is_tape_inserted();
400 }
401
402 bool VM::is_tape_playing(int drv)
403 {
404         return drec->is_tape_playing();
405 }
406
407 bool VM::is_tape_recording(int drv)
408 {
409         return drec->is_tape_recording();
410 }
411
412 int VM::get_tape_position(int drv)
413 {
414         return drec->get_tape_position();
415 }
416
417 const _TCHAR* VM::get_tape_message(int drv)
418 {
419         return drec->get_message();
420 }
421
422 void VM::push_play(int drv)
423 {
424         drec->set_ff_rew(0);
425         drec->set_remote(true);
426 }
427
428 void VM::push_stop(int drv)
429 {
430         drec->set_remote(false);
431 }
432
433 void VM::push_fast_forward(int drv)
434 {
435         drec->set_ff_rew(1);
436         drec->set_remote(true);
437 }
438
439 void VM::push_fast_rewind(int drv)
440 {
441         drec->set_ff_rew(-1);
442         drec->set_remote(true);
443 }
444
445 bool VM::is_frame_skippable()
446 {
447         return event->is_frame_skippable();
448 }
449
450 void VM::update_config()
451 {
452         for(DEVICE* device = first_device; device; device = device->next_device) {
453                 device->update_config();
454         }
455 }
456
457 #define STATE_VERSION   7
458
459 #include "../../statesub.h"
460 #include "../../qt/gui/csp_logger.h"
461 extern CSP_Logger DLL_PREFIX_I *csp_logger;
462
463 void VM::decl_state(void)
464 {
465         state_entry = new csp_state_utils(STATE_VERSION, 0, (_TCHAR *)(_T("CSP::MZ80_SERIES_HEAD")), csp_logger);
466
467         for(DEVICE* device = first_device; device; device = device->next_device) {
468                 device->decl_state();
469         }
470 }
471
472 void VM::save_state(FILEIO* state_fio)
473 {
474         //state_fio->FputUint32(STATE_VERSION);
475         if(state_entry != NULL) {
476                 state_entry->save_state(state_fio);
477         }
478         for(DEVICE* device = first_device; device; device = device->next_device) {
479                 device->save_state(state_fio);
480         }
481 }
482
483 bool VM::load_state(FILEIO* state_fio)
484 {
485         bool mb = false;
486         if(state_entry != NULL) {
487                 mb = state_entry->load_state(state_fio);
488         }
489         if(!mb) return false;
490         //if(state_fio->FgetUint32() != STATE_VERSION) {
491         //      return false;
492         //}
493         for(DEVICE* device = first_device; device; device = device->next_device) {
494                 if(!device->load_state(state_fio)) {
495                         return false;
496                 }
497         }
498         return true;
499 }
500