OSDN Git Service

[VM][FM7] Disk/2DD : Fix applied machines definition.
[csp-qt/common_source_project-fm7.git] / source / src / vm / fm7 / fm7.cpp
1
2 /*
3  * FM7 -> VM
4  * (C) 2015 K.Ohta <whatisthis.sowhat _at_ gmail.com>
5  * History:
6  *   Feb 27, 2015 : Initial
7  */
8
9 #include "fm7.h"
10 #include "../../emu.h"
11 #include "../../config.h"
12 #include "../device.h"
13 #include "../event.h"
14 #include "../memory.h"
15 #include "../prnfile.h"
16
17 #ifdef USE_DEBUGGER
18 #include "../debugger.h"
19 #endif
20 #if defined(SUPPORT_DUMMY_DEVICE_LED)
21 #include "../dummydevice.h"
22 #else
23 #define SIG_DUMMYDEVICE_BIT0 0
24 #define SIG_DUMMYDEVICE_BIT1 1
25 #define SIG_DUMMYDEVICE_BIT2 2
26 #endif
27
28 #include "../datarec.h"
29 #include "../disk.h"
30
31 #include "../mc6809.h"
32 #include "../z80.h"
33 #include "../mb8877.h"
34
35 #include "../pcm1bit.h"
36 #include "../ym2203.h"
37 #if defined(_FM77AV_VARIANTS)
38 #include "mb61vh010.h"
39 #include "../beep.h"
40 #endif
41 #if defined(HAS_DMA)
42 #include "hd6844.h"
43 #endif
44
45 #include "./fm7_mainio.h"
46 #include "./fm7_mainmem.h"
47 #include "./fm7_display.h"
48 #include "./fm7_keyboard.h"
49 #include "./joystick.h"
50
51 #include "./kanjirom.h"
52
53 VM::VM(EMU* parent_emu): emu(parent_emu)
54 {
55         
56         first_device = last_device = NULL;
57 #if defined(_FM8)
58         psg = NULL;
59 #else   
60 # if defined(_FM77AV_VARIANTS)
61         opn[0] = opn[1] = opn[2] = NULL;
62 # else   
63         opn[0] = opn[1] = opn[2] = psg = NULL; 
64 # endif
65 #endif
66         dummy = new DEVICE(this, emu);  // must be 1st device
67         event = new EVENT(this, emu);   // must be 2nd device
68         
69         dummycpu = new DEVICE(this, emu);
70         maincpu = new MC6809(this, emu);
71         subcpu = new MC6809(this, emu);
72 #ifdef WITH_Z80
73         z80cpu = new Z80(this, emu);
74 #endif
75         // basic devices
76 #if defined(_FM8) || defined(_FM7) || defined(_FMNEW7)
77         if((config.dipswitch & FM7_DIPSW_CONNECT_KANJIROM) != 0) {
78                 kanjiclass1 = new KANJIROM(this, emu, false);
79         }
80 #else
81         kanjiclass1 = new KANJIROM(this, emu, false);
82 #endif  
83 #ifdef CAPABLE_KANJI_CLASS2
84         kanjiclass2 = new KANJIROM(this, emu, true);
85 #endif
86         joystick  = new JOYSTICK(this, emu);
87         
88         // I/Os
89         drec = new DATAREC(this, emu);
90         pcm1bit = new PCM1BIT(this, emu);
91         fdc  = new MB8877(this, emu);
92 #if defined(HAS_DMA)
93         dmac = new HD6844(this, emu);
94 #endif   
95 #if defined(_FM8)
96         psg = new YM2203(this, emu);
97 #else   
98         opn[0] = new YM2203(this, emu); // OPN
99         opn[1] = new YM2203(this, emu); // WHG
100         opn[2] = new YM2203(this, emu); // THG
101 # if !defined(_FM77AV_VARIANTS)
102         psg = new YM2203(this, emu);
103 # endif
104 #endif
105 #if defined(_FM77AV_VARIANTS)
106         alu = new MB61VH010(this, emu);
107         keyboard_beep = new BEEP(this, emu);
108 #endif  
109         display = new DISPLAY(this, emu);       
110         printer = new PRNFILE(this, emu);
111         mainio  = new FM7_MAINIO(this, emu);
112         mainmem = new FM7_MAINMEM(this, emu);
113         keyboard = new KEYBOARD(this, emu);
114
115 #if defined(SUPPORT_DUMMY_DEVICE_LED)
116         led_terminate = new DUMMYDEVICE(this, emu);
117 #else
118         led_terminate = new DEVICE(this, emu);
119 #endif
120         // MEMORIES must set before initialize().
121         maincpu->set_context_mem(mainmem);
122         subcpu->set_context_mem(display);
123 #ifdef WITH_Z80
124         z80cpu->set_context_mem(mainmem);
125 #endif
126 #ifdef USE_DEBUGGER
127         maincpu->set_context_debugger(new DEBUGGER(this, emu));
128         subcpu->set_context_debugger(new DEBUGGER(this, emu));
129 # ifdef WITH_Z80
130         z80cpu->set_context_debugger(new DEBUGGER(this, emu));
131 # endif
132 #endif
133         connect_bus();
134         initialize();
135 }
136
137 VM::~VM()
138 {
139         // delete all devices
140         for(DEVICE* device = first_device; device;) {
141                 DEVICE *next_device = device->next_device;
142                 device->release();
143                 delete device;
144                 device = next_device;
145         }
146 }
147
148 DEVICE* VM::get_device(int id)
149 {
150         for(DEVICE* device = first_device; device; device = device->next_device) {
151                 if(device->this_device_id == id) {
152                         return device;
153                 }
154         }
155         return NULL;
156 }
157
158
159 void VM::initialize(void)
160 {
161         clock_low = false;
162         
163 }
164
165
166 void VM::connect_bus(void)
167 {
168         uint32 mainclock;
169         uint32 subclock;
170
171         /*
172          * CLASS CONSTRUCTION
173          *
174          * VM 
175          *  |-> MAINCPU -> MAINMEM -> MAINIO -> MAIN DEVICES
176          *  |             |        |      
177          *  | -> SUBCPU  -> SUBMEM  -> SUBIO -> SUB DEVICES
178          *  | -> DISPLAY
179          *  | -> KEYBOARD
180          *
181          *  MAINMEM can access SUBMEM/IO, when SUBCPU is halted.
182          *  MAINMEM and SUBMEM can access DISPLAY and KEYBOARD with exclusive.
183          *  MAINCPU can access MAINMEM.
184          *  SUBCPU  can access SUBMEM.
185          *  DISPLAY : R/W from MAINCPU and SUBCPU.
186          *  KEYBOARD : R/W
187          *
188          */
189         event->set_frames_per_sec(FRAMES_PER_SEC);
190         event->set_lines_per_frame(LINES_PER_FRAME);
191         event->set_context_cpu(dummycpu, (CPU_CLOCKS * 3) / 8); // MAYBE FIX With eFM77AV40/20.
192         //event->set_context_cpu(dummycpu, (int)(4.9152 * 1000.0 * 1000.0 / 4.0));
193         
194 #if defined(_FM8)
195         mainclock = MAINCLOCK_SLOW;
196         subclock = SUBCLOCK_SLOW;
197 #else
198         if(config.cpu_type == 0) {
199                 // 2MHz
200                 subclock = SUBCLOCK_NORMAL;
201                 mainclock = MAINCLOCK_NORMAL;
202         } else {
203                 // 1.2MHz
204                 mainclock = MAINCLOCK_SLOW;
205                 subclock = SUBCLOCK_SLOW;
206         }
207         //if((config.dipswitch & FM7_DIPSW_CYCLESTEAL) != 0) subclock = subclock / 3;
208 #endif
209         event->set_context_cpu(maincpu, mainclock);
210         event->set_context_cpu(subcpu,  subclock);
211    
212 #ifdef WITH_Z80
213         event->set_context_cpu(z80cpu,  4000000);
214         z80cpu->write_signal(SIG_CPU_BUSREQ, 1, 1);
215 #endif
216
217         event->set_context_sound(pcm1bit);
218 #if defined(_FM8)
219         event->set_context_sound(psg);
220         event->set_context_sound(drec);
221 #else
222         event->set_context_sound(opn[0]);
223         event->set_context_sound(opn[1]);
224         event->set_context_sound(opn[2]);
225 # if !defined(_FM77AV_VARIANTS)
226         event->set_context_sound(psg);
227 # endif
228         event->set_context_sound(drec);
229 # if defined(_FM77AV_VARIANTS)
230         event->set_context_sound(keyboard_beep);
231 # endif
232 #endif   
233 #if !defined(_FM77AV_VARIANTS) && !defined(_FM77L4)
234         event->register_frame_event(display);
235 #endif  
236         mainio->set_context_maincpu(maincpu);
237         mainio->set_context_subcpu(subcpu);
238         
239         mainio->set_context_display(display);
240 #if defined(_FM8) || defined(_FM7) || defined(_FMNEW7)
241         if((config.dipswitch & FM7_DIPSW_CONNECT_KANJIROM) != 0) {
242                 mainio->set_context_kanjirom_class1(kanjiclass1);
243         }
244 #else
245         mainio->set_context_kanjirom_class1(kanjiclass1);
246 #endif  
247         mainio->set_context_mainmem(mainmem);
248         mainio->set_context_keyboard(keyboard);
249         mainio->set_context_printer(printer);
250         mainio->set_context_printer_reset(printer, SIG_PRINTER_RESET, 0xffffffff); 
251 #if defined(CAPABLE_KANJI_CLASS2)
252         mainio->set_context_kanjirom_class2(kanjiclass2);
253 #endif
254
255         keyboard->set_context_break_line(mainio, FM7_MAINIO_PUSH_BREAK, 0xffffffff);
256         keyboard->set_context_int_line(mainio, FM7_MAINIO_KEYBOARDIRQ, 0xffffffff);
257         keyboard->set_context_int_line(display, SIG_FM7_SUB_KEY_FIRQ, 0xffffffff);
258 #if defined(_FM77AV_VARIANTS)
259         keyboard->set_context_beep(keyboard_beep);
260 #endif  
261         keyboard->set_context_rxrdy(display, SIG_FM7KEY_RXRDY, 0x01);
262         keyboard->set_context_key_ack(display, SIG_FM7KEY_ACK, 0x01);
263         keyboard->set_context_ins_led( led_terminate, SIG_DUMMYDEVICE_BIT0, 0xffffffff);
264         keyboard->set_context_caps_led(led_terminate, SIG_DUMMYDEVICE_BIT1, 0xffffffff);
265         keyboard->set_context_kana_led(led_terminate, SIG_DUMMYDEVICE_BIT2, 0xffffffff);
266    
267         drec->set_context_ear(mainio, FM7_MAINIO_CMT_RECV, 0xffffffff);
268         //drec->set_context_remote(mainio, FM7_MAINIO_CMT_REMOTE, 0xffffffff);
269         mainio->set_context_datarec(drec);
270         
271         mainmem->set_context_mainio(mainio);
272         mainmem->set_context_display(display);
273         mainmem->set_context_maincpu(maincpu);
274 #if defined(CAPABLE_DICTROM)
275         mainmem->set_context_kanjirom_class1(kanjiclass1);
276 #endif  
277         display->set_context_mainio(mainio);
278         display->set_context_subcpu(subcpu);
279         display->set_context_keyboard(keyboard);
280
281         mainio->set_context_clock_status(mainmem, FM7_MAINIO_CLOCKMODE, 0xffffffff);
282         mainio->set_context_clock_status(display, SIG_DISPLAY_CLOCK, 0xffffffff);
283         
284         subcpu->set_context_bus_halt(display, SIG_FM7_SUB_HALT, 0xffffffff);
285         subcpu->set_context_bus_halt(mainmem, SIG_FM7_SUB_HALT, 0xffffffff);
286
287 #if defined(_FM77_VARIANTS) || defined(_FM77AV_VARIANTS)
288         display->set_context_kanjiclass1(kanjiclass1);
289 #endif  
290 #if defined(CAPABLE_KANJI_CLASS2)
291         display->set_context_kanjiclass2(kanjiclass2);
292 #endif   
293 #if defined(_FM77AV_VARIANTS)
294         display->set_context_alu(alu);
295         alu->set_context_memory(display);
296 #endif  
297         // Palette, VSYNC, HSYNC, Multi-page, display mode. 
298         mainio->set_context_display(display);
299         
300         //FDC
301         mainio->set_context_fdc(fdc);
302         fdc->set_context_irq(mainio, FM7_MAINIO_FDC_IRQ, 0x1);
303         fdc->set_context_drq(mainio, FM7_MAINIO_FDC_DRQ, 0x1);
304         // SOUND
305         mainio->set_context_beep(pcm1bit);
306 #if defined(_FM8)       
307         mainio->set_context_psg(psg);
308 #else
309 # if !defined(_FM77AV_VARIANTS)
310         mainio->set_context_psg(psg);
311 # endif
312         opn[0]->set_context_irq(mainio, FM7_MAINIO_OPN_IRQ, 0xffffffff);
313         mainio->set_context_opn(opn[0], 0);
314         //joystick->set_context_opn(opn[0]);
315         mainio->set_context_joystick(joystick);
316         opn[0]->set_context_port_b(joystick, FM7_JOYSTICK_MOUSE_STROBE, 0xff, 0);
317         
318         opn[1]->set_context_irq(mainio, FM7_MAINIO_WHG_IRQ, 0xffffffff);
319         mainio->set_context_opn(opn[1], 1);
320         opn[2]->set_context_irq(mainio, FM7_MAINIO_THG_IRQ, 0xffffffff);
321         mainio->set_context_opn(opn[2], 2);
322 #endif   
323         subcpu->set_context_bus_halt(display, SIG_FM7_SUB_HALT, 0xffffffff);
324         subcpu->set_context_bus_clr(display, SIG_FM7_SUB_USE_CLR, 0x0000000f);
325    
326         event->register_frame_event(joystick);
327 #if defined(HAS_DMA)
328         dmac->set_context_src(fdc, 0);
329         dmac->set_context_dst(mainmem, 0);
330         dmac->set_context_int_line(mainio, 0, FM7_MAINIO_DMA_INT, 0xffffffff);
331         dmac->set_context_drq_line(maincpu, 1, SIG_CPU_BUSREQ, 0xffffffff);
332         mainio->set_context_dmac(dmac);
333 #endif
334         for(DEVICE* device = first_device; device; device = device->next_device) {
335                 device->initialize();
336         }
337         for(int i = 0; i < 2; i++) {
338 #if defined(_FM77AV20) || defined(_FM77AV20EX) || defined(_FM77AV40SX) || defined(_FM77AV40EX) || defined(_FM77AV40SX)
339                 fdc->set_drive_type(i, DRIVE_TYPE_2DD);
340 #else
341                 fdc->set_drive_type(i, DRIVE_TYPE_2D);
342 #endif
343 #if defined(_FM77AV_VARIANTS)
344                 fdc->set_drive_rpm(i, 360);
345 #else           
346                 fdc->set_drive_rpm(i, 360);
347 #endif          
348                 fdc->set_drive_mfm(i, true);
349         }
350 #if defined(_FM77) || defined(_FM77L4)
351         for(int i = 2; i < 4; i++) {
352                 fdc->set_drive_type(i, DRIVE_TYPE_2HD);
353                 fdc->set_drive_rpm(i, 360);
354                 fdc->set_drive_mfm(i, true);
355         }
356 #endif
357         
358 }  
359
360 void VM::update_config()
361 {
362         uint32 vol1, vol2, tmpv;
363         int ii, i_limit;
364
365         for(DEVICE* device = first_device; device; device = device->next_device) {
366                 device->update_config();
367         }
368         //update_dipswitch();
369 }
370
371 void VM::reset()
372 {
373         // reset all devices
374         for(DEVICE* device = first_device; device; device = device->next_device) {
375                 device->reset();
376         }
377 #if !defined(_FM77AV_VARIANTS) || defined(_FM8)
378         psg->SetReg(0x27, 0); // stop timer
379         psg->SetReg(0x2e, 0);   // set prescaler
380         psg->write_signal(SIG_YM2203_MUTE, 0x00, 0x01); // Okay?
381 #endif
382 #if !defined(_FM8)
383         for(int i = 0; i < 3; i++) {
384                 opn[i]->SetReg(0x27, 0); // stop timer
385                 opn[i]->SetReg(0x2e, 0);        // set prescaler
386                 opn[i]->write_signal(SIG_YM2203_MUTE, 0x00, 0x01); // Okay?
387         }
388 #endif
389 }
390
391 void VM::special_reset()
392 {
393         // BREAK + RESET
394         mainio->write_signal(FM7_MAINIO_PUSH_BREAK, 1, 1);
395         mainio->reset();
396         mainmem->reset();
397         
398 #if defined(FM77AV_VARIANTS)    
399         mainio->write_signal(FM7_MAINIO_HOT_RESET, 1, 1);
400 #endif  
401         display->reset();
402         subcpu->reset();
403         mainio->write_signal(FM7_MAINIO_PUSH_BREAK, 1, 1);
404         maincpu->reset();
405         event->register_event(mainio, EVENT_UP_BREAK, 10000.0 * 1000.0, false, NULL);
406 }
407
408 void VM::run()
409 {
410         event->drive();
411 }
412
413 double VM::get_frame_rate()
414 {
415         return event->get_frame_rate();
416 }
417
418 #if defined(SUPPORT_DUMMY_DEVICE_LED)
419 uint32 VM::get_led_status()
420 {
421         return led_terminate->read_signal(SIG_DUMMYDEVICE_READWRITE);
422 }
423 #endif // SUPPORT_DUMMY_DEVICE_LED
424
425
426 // ----------------------------------------------------------------------------
427 // debugger
428 // ----------------------------------------------------------------------------
429
430 #ifdef USE_DEBUGGER
431 DEVICE *VM::get_cpu(int index)
432 {
433         if(index == 0) {
434                 return maincpu;
435         } else if(index == 1) {
436                 return subcpu;
437         }
438 #if defined(_WITH_Z80)
439         else if(index == 2) {
440                 return z80cpu;
441         }
442 #endif
443         return NULL;
444 }
445 #endif
446
447 // ----------------------------------------------------------------------------
448 // draw screen
449 // ----------------------------------------------------------------------------
450
451 void VM::draw_screen()
452 {
453         display->draw_screen();
454 }
455
456 int VM::get_access_lamp_status()
457 {
458         uint32 status = fdc->read_signal(0);
459         return (status & (1 | 4)) ? 1 : (status & (2 | 8)) ? 2 : 0;
460 }
461
462 void VM::initialize_sound(int rate, int samples)
463 {
464         // init sound manager
465         event->initialize_sound(rate, samples);
466         // init sound gen
467 #if defined(_FM8)
468         psg->initialize_sound(rate, (int)(4.9152 * 1000.0 * 1000.0 / 4.0), samples, 0, 0);
469 #else   
470         opn[0]->initialize_sound(rate, (int)(4.9152 * 1000.0 * 1000.0 / 4.0), samples, 0, 0);
471         opn[1]->initialize_sound(rate, (int)(4.9152 * 1000.0 * 1000.0 / 4.0), samples, 0, 0);
472         opn[2]->initialize_sound(rate, (int)(4.9152 * 1000.0 * 1000.0 / 4.0), samples, 0, 0);
473 # if !defined(_FM77AV_VARIANTS)   
474         psg->initialize_sound(rate, (int)(4.9152 * 1000.0 * 1000.0 / 4.0), samples, 0, 0);
475 # endif
476 # if defined(_FM77AV_VARIANTS)
477         keyboard_beep->initialize_sound(rate, 2400.0, 512);
478 # endif
479 #endif  
480         pcm1bit->initialize_sound(rate, 2000);
481         //drec->init_pcm(rate, 0);
482 }
483
484 uint16* VM::create_sound(int* extra_frames)
485 {
486         uint16* p = event->create_sound(extra_frames);
487         return p;
488 }
489
490 int VM::get_sound_buffer_ptr()
491 {
492         int pos = event->get_sound_buffer_ptr();
493         return pos; 
494 }
495
496 #ifdef USE_SOUND_VOLUME
497 void VM::set_sound_device_volume(int ch, int decibel_l, int decibel_r)
498 {
499 #if !defined(_FM77AV_VARIANTS)
500         if(ch-- == 0) {
501                 psg->set_volume(0, decibel_l, decibel_r);
502                 psg->set_volume(1, decibel_l, decibel_r);
503         } else
504 #endif
505 #if !defined(_FM8)              
506         if(ch-- == 0) {
507                 opn[0]->set_volume(0, decibel_l, decibel_r);
508         } else if(ch-- == 0) {
509                 opn[0]->set_volume(1, decibel_l, decibel_r);
510         } else if(ch-- == 0) {
511                 opn[1]->set_volume(0, decibel_l, decibel_r);
512         } else if(ch-- == 0) {
513                 opn[1]->set_volume(1, decibel_l, decibel_r);
514         } else if(ch-- == 0) {
515                 opn[2]->set_volume(0, decibel_l, decibel_r);
516         } else if(ch-- == 0) {
517                 opn[2]->set_volume(1, decibel_l, decibel_r);
518         } else
519 #endif  
520         if(ch-- == 0) {
521                 pcm1bit->set_volume(0, decibel_l, decibel_r);
522         } else if(ch-- == 0) {
523                 drec->set_volume(0, decibel_l, decibel_r);
524         }
525 }
526 #endif
527
528 // ----------------------------------------------------------------------------
529 // notify key
530 // ----------------------------------------------------------------------------
531
532 void VM::key_down(int code, bool repeat)
533 {
534         if(!repeat) {
535                 keyboard->key_down(code);
536         }
537 }
538
539 void VM::key_up(int code)
540 {
541         keyboard->key_up(code);
542 }
543
544 // ----------------------------------------------------------------------------
545 // user interface
546 // ----------------------------------------------------------------------------
547
548 void VM::open_floppy_disk(int drv, const _TCHAR* file_path, int bank)
549 {
550         fdc->open_disk(drv, file_path, bank);
551 }
552
553 void VM::close_floppy_disk(int drv)
554 {
555         fdc->close_disk(drv);
556 }
557
558 bool VM::is_floppy_disk_inserted(int drv)
559 {
560         return fdc->is_disk_inserted(drv);
561 }
562
563 void VM::is_floppy_disk_protected(int drv, bool value)
564 {
565         fdc->is_disk_protected(drv, value);
566 }
567
568 bool VM::is_floppy_disk_protected(int drv)
569 {
570         return fdc->is_disk_protected(drv);
571 }
572
573 void VM::play_tape(const _TCHAR* file_path)
574 {
575         drec->play_tape(file_path);
576 }
577
578 void VM::rec_tape(const _TCHAR* file_path)
579 {
580         drec->rec_tape(file_path);
581 }
582
583 void VM::close_tape()
584 {
585         drec->close_tape();
586 }
587
588 bool VM::is_tape_inserted()
589 {
590         return drec->is_tape_inserted();
591 }
592
593 bool VM::is_tape_playing()
594 {
595         return drec->is_tape_playing();
596 }
597
598 bool VM::is_tape_recording()
599 {
600         return drec->is_tape_recording();
601 }
602
603 int VM::get_tape_position()
604 {
605         return drec->get_tape_position();
606 }
607
608 void VM::push_play()
609 {
610         drec->set_ff_rew(0);
611         drec->set_remote(true);
612 }
613
614
615 void VM::push_stop()
616 {
617         drec->set_remote(false);
618 }
619
620 void VM::push_fast_forward()
621 {
622         drec->set_ff_rew(1);
623         drec->set_remote(true);
624 }
625
626 void VM::push_fast_rewind()
627 {
628         drec->set_ff_rew(-1);
629         drec->set_remote(true);
630 }
631
632 void VM::push_apss_forward()
633 {
634         drec->do_apss(1);
635 }
636
637 void VM::push_apss_rewind()
638 {
639         drec->do_apss(-1);
640 }
641
642 bool VM::is_frame_skippable()
643 {
644         return event->is_frame_skippable();
645 }
646
647 void VM::update_dipswitch()
648 {
649         // bit0         0=High 1=Standard
650         // bit2         0=5"2D 1=5"2HD
651   //    io->set_iovalue_single_r(0x1ff0, (config.monitor_type & 1) | ((config.drive_type & 1) << 2));
652 }
653
654 void VM::set_cpu_clock(DEVICE *cpu, uint32 clocks) {
655         event->set_secondary_cpu_clock(cpu, clocks);
656 }
657
658 #define STATE_VERSION   2
659 void VM::save_state(FILEIO* state_fio)
660 {
661         state_fio->FputUint32_BE(STATE_VERSION);
662         
663         for(DEVICE* device = first_device; device; device = device->next_device) {
664                 device->save_state(state_fio);
665         }
666         { // V1
667                 state_fio->FputBool(clock_low);
668         }
669 }
670
671 bool VM::load_state(FILEIO* state_fio)
672 {
673         uint32 version = state_fio->FgetUint32_BE();
674         int i = 1;
675         if(version > STATE_VERSION) {
676                 return false;
677         }
678         for(DEVICE* device = first_device; device; device = device->next_device) {
679                 if(!device->load_state(state_fio)) {
680                         printf("Load Error: DEVID=%d\n", device->this_device_id);
681                         return false;
682                 }
683         }
684         if(version >= 1) {// V1 
685                 clock_low   = state_fio->FgetBool();
686                 if(version == 2) return true;
687         }
688         return false;
689 }
690
691 #ifdef USE_DIG_RESOLUTION
692 void VM::get_screen_resolution(int *w, int *h)
693 {
694         switch(display->get_screen_mode()) {
695         case DISPLAY_MODE_8_200L:
696         case DISPLAY_MODE_8_200L_TEXT:
697                 *w = 640;
698                 *h = 200;
699                 break;
700         case DISPLAY_MODE_8_400L:
701         case DISPLAY_MODE_8_400L_TEXT:
702                 *w = 640;
703                 *h = 400;
704                 break;
705         case DISPLAY_MODE_4096:
706         case DISPLAY_MODE_256k:
707                 *w = 320;
708                 *h = 200;
709                 break;
710         default:
711                 *w = 640;
712                 *h = 200;
713                 break;
714         }
715 }
716 #endif
717
718 bool VM::is_screen_changed()
719 {
720         bool f = true;
721 #if defined(USE_MINIMUM_RENDERING)
722         f = display->screen_update();
723         display->reset_screen_update();
724 #endif  
725         return f;
726 }