OSDN Git Service

[VM][I286] Save cpustate without StateBuffer().
[csp-qt/common_source_project-fm7.git] / source / src / vm / mz700 / mz700.cpp
1 /*
2         SHARP MZ-700 Emulator 'EmuZ-700'
3         SHARP MZ-800 Emulator 'EmuZ-800'
4         SHARP MZ-1500 Emulator 'EmuZ-1500'
5
6         Author : Takeda.Toshiya
7         Date   : 2008.06.05 -
8
9         [ virtual machine ]
10 */
11
12 #include "mz700.h"
13 #include "../../emu.h"
14 #include "../device.h"
15 #include "../event.h"
16
17 #include "../and.h"
18 #include "../datarec.h"
19 #include "../i8253.h"
20 #include "../i8255.h"
21 #include "../io.h"
22 #include "../noise.h"
23 #include "../pcm1bit.h"
24 #include "../z80.h"
25
26 #ifdef USE_DEBUGGER
27 #include "../debugger.h"
28 #endif
29
30 //#include "cmos.h"
31 #include "emm.h"
32 #include "kanji.h"
33 #include "keyboard.h"
34 #include "./memory.h"
35 #include "ramfile.h"
36
37 #if defined(_MZ800) || defined(_MZ1500)
38 #include "../disk.h"
39 #include "../mb8877.h"
40 #include "../not.h"
41 #include "../sn76489an.h"
42 #include "../z80pio.h"
43 #include "../z80sio.h"
44 #include "floppy.h"
45 #if defined(_MZ1500)
46 #include "../mz1p17.h"
47 #include "../prnfile.h"
48 #include "psg.h"
49 #endif
50 #include "quickdisk.h"
51 #endif
52
53 // ----------------------------------------------------------------------------
54 // initialize
55 // ----------------------------------------------------------------------------
56
57 VM::VM(EMU* parent_emu) : VM_TEMPLATE(parent_emu)
58 {
59 #if defined(_MZ800)
60         boot_mode = config.boot_mode;
61 #endif
62         
63         // create devices
64         first_device = last_device = NULL;
65         dummy = new DEVICE(this, emu);  // must be 1st device
66         event = new EVENT(this, emu);   // must be 2nd device
67
68         dummy->set_device_name(_T("1st Dummy"));
69
70         and_int = new AND(this, emu);
71         and_int->set_device_name(_T("AND Gate (IRQ)"));
72    
73         drec = new DATAREC(this, emu);
74         drec->set_context_noise_play(new NOISE(this, emu));
75         drec->set_context_noise_stop(new NOISE(this, emu));
76         drec->set_context_noise_fast(new NOISE(this, emu));
77         pit = new I8253(this, emu);
78         pio = new I8255(this, emu);
79         io = new IO(this, emu);
80         pcm = new PCM1BIT(this, emu);
81         cpu = new Z80(this, emu);
82
83 //      cmos = new CMOS(this, emu);
84         emm = new EMM(this, emu);
85         kanji = new KANJI(this, emu);
86         keyboard = new KEYBOARD(this, emu);
87         memory = new MZ700_MEMORY(this, emu);
88         ramfile = new RAMFILE(this, emu);
89
90 #if defined(_MZ800) || defined(_MZ1500)
91         and_snd = new AND(this, emu);
92         and_snd->set_device_name(_T("AND Gate (Sound)"));
93         fdc = new MB8877(this, emu);    // mb8876
94         fdc->set_context_noise_seek(new NOISE(this, emu));
95         fdc->set_context_noise_head_down(new NOISE(this, emu));
96         fdc->set_context_noise_head_up(new NOISE(this, emu));
97 #if defined(_MZ800)
98         not_pit = new NOT(this, emu);
99         not_pit->set_device_name(_T("NOT Gate (PIT)"));
100         psg = new SN76489AN(this, emu);
101 #elif defined(_MZ1500)
102         if(config.printer_type == 0) {
103                 printer = new PRNFILE(this, emu);
104         } else if(config.printer_type == 1) {
105                 printer = new MZ1P17(this, emu);
106         } else {
107                 printer = dummy;
108         }
109         not_reset = new NOT(this, emu);
110         not_reset->set_device_name(_T("NOT Gate (Reset)"));
111         not_strobe = new NOT(this, emu);
112         not_strobe->set_device_name(_T("NOT Gate (Prinet Strobe)"));
113         psg_l = new SN76489AN(this, emu);
114         psg_l->set_device_name(_T("SN76489AN PSG (Left)"));
115         psg_r = new SN76489AN(this, emu);
116         psg_r->set_device_name(_T("SN76489AN PSG (Right)"));
117 #endif
118         pio_int = new Z80PIO(this, emu);
119         pio_int->set_device_name(_T("Z80 PIO(Interrupt)"));
120         sio_rs = new Z80SIO(this, emu);
121         sio_rs->set_device_name(_T("Z80 SIO(RS-232C)"));
122         sio_qd = new Z80SIO(this, emu);
123         sio_qd->set_device_name(_T("Z80 SIO(Quick Disk)"));
124         
125         floppy = new FLOPPY(this, emu);
126 #if defined(_MZ1500)
127         psg = new PSG(this, emu);
128 #endif
129         qd = new QUICKDISK(this, emu);
130 #endif
131         
132         // set contexts
133         event->set_context_cpu(cpu);
134         event->set_context_sound(pcm);
135 #if defined(_MZ800)
136         event->set_context_sound(psg);
137 #elif defined(_MZ1500)
138         event->set_context_sound(psg_l);
139         event->set_context_sound(psg_r);
140 #endif
141         event->set_context_sound(drec);
142 #if defined(_MZ800) || defined(_MZ1500)
143         event->set_context_sound(fdc->get_context_noise_seek());
144         event->set_context_sound(fdc->get_context_noise_head_down());
145         event->set_context_sound(fdc->get_context_noise_head_up());
146 #endif
147         event->set_context_sound(drec->get_context_noise_play());
148         event->set_context_sound(drec->get_context_noise_stop());
149         event->set_context_sound(drec->get_context_noise_fast());
150         
151         // VRAM/PCG wait
152         memory->set_context_cpu(cpu);
153         
154         // memory mapped I/O
155         memory->set_context_pio(pio);
156         memory->set_context_pit(pit);
157         
158 #if defined(_MZ1500)
159         // psg mixer
160         psg->set_context_psg_l(psg_l);
161         psg->set_context_psg_r(psg_r);
162 #endif
163         
164 #if defined(_MZ800)
165         // 8253:CLK#0 <- 1.10MHz
166         pit->set_constant_clock(0, 1100000);
167 #else
168         // 8253:CLK#0 <- 895KHz
169         pit->set_constant_clock(0, CPU_CLOCKS / 4);
170 #endif
171         
172 #if defined(_MZ800) || defined(_MZ1500)
173         // 8253:OUT#0 AND 8255:PC0 -> SPEAKER
174         pit->set_context_ch0(and_snd, SIG_AND_BIT_0, 1);
175         pio->set_context_port_c(and_snd, SIG_AND_BIT_1, 1, 0);
176         and_snd->set_context_out(pcm, SIG_PCM1BIT_SIGNAL, 1);
177         and_snd->set_mask(SIG_AND_BIT_0 | SIG_AND_BIT_1);
178         // Sound:: Force realtime rendering. This is temporally fix. 20161024 K.O
179 #else
180         // 8253:OUT#0 -> SPEAKER
181         pit->set_context_ch0(pcm, SIG_PCM1BIT_SIGNAL, 1);
182         // Sound:: Force realtime rendering. This is temporally fix. 20161024 K.O
183 #endif
184 #if defined(_MZ800)
185         // 8253:OUT#0 -> NOT -> Z80PIO:PA4
186         pit->set_context_ch0(not_pit, SIG_NOT_INPUT, 1);
187         not_pit->set_context_out(pio_int, SIG_Z80PIO_PORT_A, 0x10);
188 #elif defined(_MZ1500)
189         // 8253:OUT#0 -> Z80PIO:PA4
190         pit->set_context_ch0(pio_int, SIG_Z80PIO_PORT_A, 0x10);
191 #endif
192         
193         // 8253:CLK#1 <- 15.7KHz
194         pit->set_constant_clock(1, CPU_CLOCKS / 228);
195         
196         // 8253:OUT#1 -> 8253:CLK#2
197         pit->set_context_ch1(pit, SIG_I8253_CLOCK_2, 1);
198         
199         // 8253:OUT#2 (N)AND 8255:PC2 -> Z80:INT
200         pit->set_context_ch2(and_int, SIG_AND_BIT_0, 1);
201         pio->set_context_port_c(and_int, SIG_AND_BIT_1, 4, 0);
202         and_int->set_context_out(cpu, SIG_CPU_IRQ, 1);
203         and_int->set_mask(SIG_AND_BIT_0 | SIG_AND_BIT_1);
204         
205 #if defined(_MZ1500)
206         // 8253:OUT#2 -> Z80PIO:PA5
207         pit->set_context_ch2(pio_int, SIG_Z80PIO_PORT_A, 0x20);
208 #endif
209         
210         // 8255:PA0-3 -> KEYBOARD:STROBE
211         pio->set_context_port_a(keyboard, SIG_KEYBOARD_COLUMN, 0x0f, 0);
212 #if defined(_MZ800)
213         // 8255:PA4 -> JOYSTICK #1
214         // 8255:PA5 -> JOYSTICK #2
215 #endif
216         // 8255:PA7 -> 556 RESET
217         
218         // 8255:PB0-7 <- KEYBOARD:DATA
219         keyboard->set_context_pio(pio);
220         
221         // 8255:PC0 -> AND -> SPEAKER
222         // 8255:PC1 -> DATA RECORDER:WRITE DATA
223         pio->set_context_port_c(drec, SIG_DATAREC_MIC, 0x02, 0);
224         // 8255:PC2 -> (N)AND -> Z80:INT
225         // 8255:PC3 -> DATA RECORDER:MOTOR ON/OFF
226         pio->set_context_port_c(drec, SIG_DATAREC_TRIG, 0x08, 0);
227         // 8255:PC4 <- DATA RECORDER:MOTOR REMOTE
228         drec->set_context_remote(pio, SIG_I8255_PORT_C, 0x10);
229         // 8255:PC5 <- DATA RECORDER:READ DATA
230         drec->set_context_ear(pio, SIG_I8255_PORT_C, 0x20);
231         // 8255:PC6 <- MEMORY:556 OUT (1.5KHz)
232         // 8255:PC7 <- MEMORY:VBLANK
233         
234 #if defined(_MZ800) || defined(_MZ1500)
235         // Z80PIO:PA2 <- GND
236         // Z80PIO:PA3 <- GND
237 #if defined(_MZ800)
238         // Z80PIO:PA4 <- NOT <- 8253:OUT#0
239         // Z80PIO:PA5 <- HBLANK
240         memory->set_context_pio_int(pio_int);
241 #elif defined(_MZ1500)
242         // Z80PIO:PA0 <- PRINTER:RDA (BUSY)
243         // Z80PIO:PA1 <- PRINTER:STA (PE)
244         if(config.printer_type == 0) {
245                 PRNFILE *prnfile = (PRNFILE *)printer;
246                 prnfile->set_context_busy(pio_int, SIG_Z80PIO_PORT_A, 0x01);
247         } else if(config.printer_type == 1) {
248                 MZ1P17 *mz1p17 = (MZ1P17 *)printer;
249                 mz1p17->mode = MZ1P17_MODE_MZ2;
250                 mz1p17->set_context_busy(pio_int, SIG_Z80PIO_PORT_A, 0x01);
251         }
252         // Z80PIO:PA4 <- 8253:OUT#0
253         // Z80PIO:PA5 <- 8253:OUT#2
254         // Z80PIO:PA6 -> NOT -> PRINTER:IRT (RESET)
255         // Z80PIO:PA7 -> NOT -> PRINTER:RDP (STROBE)
256         // Z80PIO:PB  -> PRINTER:DATA
257         pio_int->set_context_port_a(not_reset, SIG_NOT_INPUT, 0x40, 0);
258         not_reset->set_context_out(printer, SIG_PRINTER_RESET, 0x01);
259         pio_int->set_context_port_a(not_strobe, SIG_NOT_INPUT, 0x80, 0);
260         not_strobe->set_context_out(printer, SIG_PRINTER_STROBE, 0x01);
261         pio_int->set_context_port_b(printer, SIG_PRINTER_DATA, 0xff, 0);
262 #endif
263 #endif
264         
265 #if defined(_MZ800) || defined(_MZ1500)
266         // Z80SIO:RTSA -> QD:WRGA
267         sio_qd->set_context_rts(0, qd, QUICKDISK_SIO_RTSA, 1);
268         // Z80SIO:DTRB -> QD:MTON
269         sio_qd->set_context_dtr(1, qd, QUICKDISK_SIO_DTRB, 1);
270         // Z80SIO:SENDA -> QD:RECV
271         sio_qd->set_context_sync(0, qd, QUICKDISK_SIO_SYNC, 1);
272         sio_qd->set_context_rxdone(0, qd, QUICKDISK_SIO_RXDONE, 1);
273         sio_qd->set_context_send(0, qd, QUICKDISK_SIO_DATA);
274         sio_qd->set_context_break(0, qd, QUICKDISK_SIO_BREAK, 1);
275         // Z80SIO:CTSA <- QD:PROTECT
276         // Z80SIO:DCDA <- QD:INSERT
277         // Z80SIO:DCDB <- QD:HOE
278         qd->set_context_sio(sio_qd);
279         
280         sio_rs->set_tx_clock(0, 1200 * 16);     // 1200 baud
281         sio_rs->set_rx_clock(0, 1200 * 16);     // baud-rate can be changed by jumper pin
282         sio_rs->set_tx_clock(1, 1200 * 16);
283         sio_rs->set_rx_clock(1, 1200 * 16);
284         
285         sio_qd->set_tx_clock(0, 101562.5);
286         sio_qd->set_rx_clock(0, 101562.5);
287         sio_qd->set_tx_clock(1, 101562.5);
288         sio_qd->set_rx_clock(1, 101562.5);
289         
290         // floppy drives
291         floppy->set_context_cpu(cpu);
292         floppy->set_context_fdc(fdc);
293         fdc->set_context_drq(floppy, SIG_FLOPPY_DRQ, 1);
294 #endif
295         
296         // cpu bus
297         cpu->set_context_mem(memory);
298         cpu->set_context_io(io);
299 #if defined(_MZ800) || defined(_MZ1500)
300         cpu->set_context_intr(pio_int);
301         // z80 family daisy chain
302         // 0=8253:OUT2
303         pio_int->set_context_intr(cpu, 1);
304         pio_int->set_context_child(sio_rs);
305         sio_rs->set_context_intr(cpu, 2);
306         sio_rs->set_context_child(sio_qd);
307         sio_qd->set_context_intr(cpu, 3);
308 #else
309         cpu->set_context_intr(dummy);
310 #endif
311 #ifdef USE_DEBUGGER
312         cpu->set_context_debugger(new DEBUGGER(this, emu));
313 #endif
314         
315         // emm
316         io->set_iomap_range_rw(0x00, 0x03, emm);
317         // kanji
318         io->set_iomap_range_rw(0xb8, 0xb9, kanji);
319         // ramfile
320         io->set_iomap_range_rw(0xea, 0xeb, ramfile);
321         // cmos
322 //      io->set_iomap_range_rw(0xf8, 0xfa, cmos);
323         
324 #if defined(_MZ800)
325         // 8255/8253
326         io->set_iomap_range_rw(0xd0, 0xd3, pio);
327         io->set_iomap_range_rw(0xd4, 0xd7, pit);
328 #endif
329         
330 #if defined(_MZ800) || defined(_MZ1500)
331         // floppy drives
332         io->set_iomap_range_rw(0xd8, 0xdb, fdc);
333         io->set_iomap_range_w(0xdc, 0xdf, floppy);
334 #endif
335         
336         // memory mapper
337 #if defined(_MZ800)
338         io->set_iomap_range_r(0xe0, 0xe1, memory);
339         io->set_iomap_range_w(0xe0, 0xe6, memory);
340 #elif defined(_MZ1500)
341         io->set_iomap_range_w(0xe0, 0xe6, memory);
342 #else
343         io->set_iomap_range_w(0xe0, 0xe4, memory);
344 #endif
345         
346 #if defined(_MZ800)
347         // crtc
348         io->set_iomap_range_w(0xcc, 0xcf, memory);
349         io->set_iomap_single_r(0xce, memory);
350         // palette
351         io->set_iomap_single_w(0xf0, memory);
352 #elif defined(_MZ1500)
353         // palette
354         io->set_iomap_range_w(0xf0, 0xf1, memory);
355 #endif
356         
357 #if defined(_MZ800)
358         // joystick
359 //      io->set_iomap_range_r(0xf0, 0xf1, joystick);
360 #endif
361         
362         // psg
363 #if defined(_MZ800)
364         io->set_iomap_single_w(0xf2, psg);
365 #elif defined(_MZ1500)
366         io->set_iomap_single_w(0xe9, psg);
367         io->set_iomap_single_w(0xf2, psg_l);
368         io->set_iomap_single_w(0xf3, psg_r);
369 #endif
370         
371 #if defined(_MZ800) || defined(_MZ1500)
372         // z80pio/sio
373         // z80pio and z80sio*2
374         static const int z80_sio_addr[4] = {0, 2, 1, 3};
375         static const int z80_pio_addr[4] = {1, 3, 0, 2};
376         for(int i = 0; i < 4; i++) {
377                 io->set_iomap_alias_rw(0xb0 + i, sio_rs, z80_sio_addr[i]);
378                 io->set_iomap_alias_rw(0xf4 + i, sio_qd, z80_sio_addr[i]);
379                 io->set_iomap_alias_rw(0xfc + i, pio_int, z80_pio_addr[i]);
380         }
381 #else
382         // printer
383         io->set_iovalue_single_r(0xfe, 0xc0);
384 #endif
385         
386         // initialize all devices
387 #if defined(__GIT_REPO_VERSION)
388         strncpy(_git_revision, __GIT_REPO_VERSION, sizeof(_git_revision) - 1);
389 #endif
390         for(DEVICE* device = first_device; device; device = device->next_device) {
391                 device->initialize();
392         }
393 #if defined(_MZ800) || defined(_MZ1500)
394         for(int drv = 0; drv < MAX_DRIVE; drv++) {
395 //              if(config.drive_type) {
396                         fdc->set_drive_type(drv, DRIVE_TYPE_2DD);
397 //              } else {
398 //                      fdc->set_drive_type(drv, DRIVE_TYPE_2D);
399 //              }
400         }
401 #endif
402 }
403
404 VM::~VM()
405 {
406         // delete all devices
407         for(DEVICE* device = first_device; device;) {
408                 DEVICE *next_device = device->next_device;
409                 device->release();
410                 delete device;
411                 device = next_device;
412         }
413 }
414
415 DEVICE* VM::get_device(int id)
416 {
417         for(DEVICE* device = first_device; device; device = device->next_device) {
418                 if(device->this_device_id == id) {
419                         return device;
420                 }
421         }
422         return NULL;
423 }
424
425 // ----------------------------------------------------------------------------
426 // drive virtual machine
427 // ----------------------------------------------------------------------------
428
429 void VM::reset()
430 {
431         // reset all devices
432         for(DEVICE* device = first_device; device; device = device->next_device) {
433                 device->reset();
434         }
435         and_int->write_signal(SIG_AND_BIT_0, 0, 1);     // CLOCK = L
436         and_int->write_signal(SIG_AND_BIT_1, 1, 1);     // INTMASK = H
437 #if defined(_MZ800) || defined(_MZ1500)
438         and_snd->write_signal(SIG_AND_BIT_1, 1, 1);     // SNDMASK = H
439 #endif
440 #if defined(_MZ1500)
441         pio_int->write_signal(SIG_Z80PIO_PORT_A, 0x02, 0x03);   // BUSY = L, PE = H
442 #endif
443 }
444
445 void VM::run()
446 {
447         event->drive();
448 }
449
450 // ----------------------------------------------------------------------------
451 // debugger
452 // ----------------------------------------------------------------------------
453
454 #ifdef USE_DEBUGGER
455 DEVICE *VM::get_cpu(int index)
456 {
457         if(index == 0) {
458                 return cpu;
459         }
460         return NULL;
461 }
462 #endif
463
464 // ----------------------------------------------------------------------------
465 // draw screen
466 // ----------------------------------------------------------------------------
467
468 void VM::draw_screen()
469 {
470         memory->draw_screen();
471 }
472
473 // ----------------------------------------------------------------------------
474 // soud manager
475 // ----------------------------------------------------------------------------
476
477 void VM::initialize_sound(int rate, int samples)
478 {
479         // init sound manager
480         event->initialize_sound(rate, samples);
481         
482         // init sound gen
483         pcm->initialize_sound(rate, 8000);
484 #if defined(_MZ800)
485         psg->initialize_sound(rate, 3579545, 8000);
486 #elif defined(_MZ1500)
487         psg_l->initialize_sound(rate, 3579545, 8000);
488         psg_r->initialize_sound(rate, 3579545, 8000);
489 #endif
490 }
491
492 uint16_t* VM::create_sound(int* extra_frames)
493 {
494         return event->create_sound(extra_frames);
495 }
496
497 int VM::get_sound_buffer_ptr()
498 {
499         return event->get_sound_buffer_ptr();
500 }
501
502 #ifdef USE_SOUND_VOLUME
503 void VM::set_sound_device_volume(int ch, int decibel_l, int decibel_r)
504 {
505 #if defined(_MZ800)
506         if(ch-- == 0) {
507                 psg->set_volume(0, decibel_l, decibel_r);
508         } else
509 #elif defined(_MZ1500)
510         if(ch-- == 0) {
511                 psg_l->set_volume(0, decibel_l, decibel_r);
512         } else if(ch-- == 0) {
513                 psg_r->set_volume(0, decibel_l, decibel_r);
514         } else
515 #endif
516         if(ch-- == 0) {
517                 pcm->set_volume(0, decibel_l, decibel_r);
518         } else if(ch-- == 0) {
519                 drec->set_volume(0, decibel_l, decibel_r);
520 #if defined(_MZ800) || defined(_MZ1500)
521         } else if(ch-- == 0) {
522                 fdc->get_context_noise_seek()->set_volume(0, decibel_l, decibel_r);
523                 fdc->get_context_noise_head_down()->set_volume(0, decibel_l, decibel_r);
524                 fdc->get_context_noise_head_up()->set_volume(0, decibel_l, decibel_r);
525 #endif
526         } else if(ch-- == 0) {
527                 drec->get_context_noise_play()->set_volume(0, decibel_l, decibel_r);
528                 drec->get_context_noise_stop()->set_volume(0, decibel_l, decibel_r);
529                 drec->get_context_noise_fast()->set_volume(0, decibel_l, decibel_r);
530         }
531 }
532 #endif
533
534 // ----------------------------------------------------------------------------
535 // user interface
536 // ----------------------------------------------------------------------------
537
538 void VM::play_tape(int drv, const _TCHAR* file_path)
539 {
540         drec->play_tape(file_path);
541 //      drec->set_remote(true);
542 }
543
544 void VM::rec_tape(int drv, const _TCHAR* file_path)
545 {
546         drec->rec_tape(file_path);
547 //      drec->set_remote(true);
548 }
549
550 void VM::close_tape(int drv)
551 {
552         emu->lock_vm();
553         drec->close_tape();
554         emu->unlock_vm();
555
556         //drec->set_remote(false);
557 }
558
559 bool VM::is_tape_inserted(int drv)
560 {
561         return drec->is_tape_inserted();
562 }
563
564 bool VM::is_tape_playing(int drv)
565 {
566         return drec->is_tape_playing();
567 }
568
569 bool VM::is_tape_recording(int drv)
570 {
571         return drec->is_tape_recording();
572 }
573
574 int VM::get_tape_position(int drv)
575 {
576         return drec->get_tape_position();
577 }
578
579 const _TCHAR* VM::get_tape_message(int drv)
580 {
581         return drec->get_message();
582 }
583
584 void VM::push_play(int drv)
585 {
586         drec->set_ff_rew(0);
587         drec->set_remote(true);
588 }
589
590 void VM::push_stop(int drv)
591 {
592         drec->set_remote(false);
593 }
594
595 void VM::push_fast_forward(int drv)
596 {
597         drec->set_ff_rew(1);
598         drec->set_remote(true);
599 }
600
601 void VM::push_fast_rewind(int drv)
602 {
603         drec->set_ff_rew(-1);
604         drec->set_remote(true);
605 }
606
607 #if defined(_MZ800) || defined(_MZ1500)
608 void VM::open_quick_disk(int drv, const _TCHAR* file_path)
609 {
610         if(drv == 0) {
611                 qd->open_disk(file_path);
612         }
613 }
614
615 void VM::close_quick_disk(int drv)
616 {
617         if(drv == 0) {
618                 qd->close_disk();
619         }
620 }
621
622 bool VM::is_quick_disk_inserted(int drv)
623 {
624         if(drv == 0) {
625                 return qd->is_disk_inserted();
626         } else {
627                 return false;
628         }
629 }
630
631 uint32_t VM::is_quick_disk_accessed()
632 {
633         return qd->read_signal(0);
634 }
635
636 void VM::open_floppy_disk(int drv, const _TCHAR* file_path, int bank)
637 {
638         fdc->open_disk(drv, file_path, bank);
639         
640         if(fdc->get_media_type(drv) == MEDIA_TYPE_2DD) {
641                 if(fdc->get_drive_type(drv) == DRIVE_TYPE_2D) {
642                         fdc->set_drive_type(drv, DRIVE_TYPE_2DD);
643                 }
644         } else if(fdc->get_media_type(drv) == MEDIA_TYPE_2D) {
645                 if(fdc->get_drive_type(drv) == DRIVE_TYPE_2DD) {
646                         fdc->set_drive_type(drv, DRIVE_TYPE_2D);
647                 }
648         }
649 }
650
651 void VM::close_floppy_disk(int drv)
652 {
653         fdc->close_disk(drv);
654 }
655
656 bool VM::is_floppy_disk_inserted(int drv)
657 {
658         return fdc->is_disk_inserted(drv);
659 }
660
661 void VM::is_floppy_disk_protected(int drv, bool value)
662 {
663         fdc->is_disk_protected(drv, value);
664 }
665
666 bool VM::is_floppy_disk_protected(int drv)
667 {
668         return fdc->is_disk_protected(drv);
669 }
670
671 uint32_t VM::is_floppy_disk_accessed()
672 {
673         return fdc->read_signal(0);
674 }
675 #endif
676
677 bool VM::is_frame_skippable()
678 {
679         return event->is_frame_skippable();
680 }
681
682 void VM::update_config()
683 {
684 #if defined(_MZ800)
685         if(boot_mode != config.boot_mode) {
686                 // boot mode is changed !!!
687                 boot_mode = config.boot_mode;
688                 reset();
689         } else {
690 #endif
691                 for(DEVICE* device = first_device; device; device = device->next_device) {
692                         device->update_config();
693                 }
694 #if defined(_MZ800)
695         }
696 #endif
697 }
698
699 #define STATE_VERSION   3
700
701
702 bool VM::process_state(FILEIO* state_fio, bool loading)
703 {
704         if(!state_fio->StateCheckUint32(STATE_VERSION)) {
705                 return false;
706         }
707         for(DEVICE* device = first_device; device; device = device->next_device) {
708                 // Note: typeid(foo).name is fixed by recent ABI.Not dec 6.
709                 // const char *name = typeid(*device).name();
710                 //       But, using get_device_name() instead of typeid(foo).name() 20181008 K.O
711                 const char *name = device->get_device_name();
712                 int len = strlen(name);
713                 
714                 if(!state_fio->StateCheckInt32(len)) {
715                         if(loading) {
716                                 printf("Class name len Error: DEVID=%d EXPECT=%s\n", device->this_device_id, name);
717                         }
718                         return false;
719                 }
720                 if(!state_fio->StateCheckBuffer(name, len, 1)) {
721                         if(loading) {
722                                 printf("Class name Error: DEVID=%d EXPECT=%s\n", device->this_device_id, name);
723                         }
724                         return false;
725                 }
726                 if(!device->process_state(state_fio, loading)) {
727                         if(loading) {
728                                 printf("Data loading Error: DEVID=%d\n", device->this_device_id);
729                         }
730                         return false;
731                 }
732         }
733 #if defined(_MZ800)
734         state_fio->StateInt32(boot_mode);
735 #endif
736         return true;
737 }