OSDN Git Service

[VM][FM7] Add Japanese communication board (日本語通信カード) .
[csp-qt/common_source_project-fm7.git] / source / src / vm / fm7 / fm7.cpp
index 4300ba8..dbda170 100644 (file)
 #include "../mc6809.h"
 #include "../z80.h"
 #include "../mb8877.h"
+#include "../noise.h"
 
 #include "../pcm1bit.h"
 #include "../ym2203.h"
+#include "../ay_3_891x.h"
+#include "../and.h"
+#include "../or.h"
+
 #if defined(_FM77AV_VARIANTS)
 #include "mb61vh010.h"
 #include "../beep.h"
 #if defined(HAS_DMA)
 #include "hd6844.h"
 #endif
-
-#if defined(USE_LED_DEVICE)
-#include "./dummydevice.h"
-#else
-#define SIG_DUMMYDEVICE_BIT0 0
-#define SIG_DUMMYDEVICE_BIT1 1
-#define SIG_DUMMYDEVICE_BIT2 2
+#if defined(_FM8)
+#include "./bubblecasette.h"
 #endif
 
 #include "./fm7_mainio.h"
@@ -49,6 +49,9 @@
 #include "./joystick.h"
 
 #include "./kanjirom.h"
+#if defined(CAPABLE_JCOMMCARD)
+#include "./jcommcard.h"
+#endif
 
 VM::VM(EMU* parent_emu): emu(parent_emu)
 {
@@ -60,7 +63,8 @@ VM::VM(EMU* parent_emu): emu(parent_emu)
 # if defined(_FM77AV_VARIANTS)
        opn[0] = opn[1] = opn[2] = NULL;
 # else   
-       opn[0] = opn[1] = opn[2] = psg = NULL; 
+       opn[0] = opn[1] = opn[2] = NULL;
+       psg = NULL; 
 # endif
 #endif
        dummy = new DEVICE(this, emu);  // must be 1st device
@@ -69,27 +73,94 @@ VM::VM(EMU* parent_emu): emu(parent_emu)
        dummycpu = new DEVICE(this, emu);
        maincpu = new MC6809(this, emu);
        subcpu = new MC6809(this, emu);
+       g_substat_display = new AND(this, emu);
+       g_substat_mainhalt = new AND(this, emu);
+       
 #ifdef WITH_Z80
-       z80cpu = new Z80(this, emu);
+       if((config.dipswitch & FM7_DIPSW_Z80CARD_ON) != 0) {
+               z80cpu = new Z80(this, emu);
+       } else {
+               z80cpu = NULL;
+       }
+       g_mainstat = new AND(this, emu);
+       g_intr = new OR(this, emu);
+
+       g_intr_irq = new AND(this, emu);
+       g_intr_firq = new AND(this, emu);
+       g_nmi = new AND(this, emu);
+#endif
+#if defined(CAPABLE_JCOMMCARD)
+       if((config.dipswitch & FM7_DIPSW_JSUBCARD_ON) != 0) {
+               jsubcpu = new MC6809(this, parent_emu);
+               jcommcard = new FM7_JCOMMCARD(this, parent_emu);
+       } else {
+               jsubcpu = NULL;
+               jcommcard = NULL;
+       }
 #endif
+               
        // basic devices
        // I/Os
 #if defined(HAS_DMA)
        dmac = new HD6844(this, emu);
 #endif   
 #if defined(_FM8)
+#  if defined(USE_AY_3_8910_AS_PSG)
+       psg = new AY_3_891X(this, emu);
+#  else
        psg = new YM2203(this, emu);
+#  endif
 #else  
        opn[0] = new YM2203(this, emu); // OPN
        opn[1] = new YM2203(this, emu); // WHG
        opn[2] = new YM2203(this, emu); // THG
 # if !defined(_FM77AV_VARIANTS)
+#  if defined(USE_AY_3_8910_AS_PSG)
+       psg = new AY_3_891X(this, emu);
+#  else
        psg = new YM2203(this, emu);
-# endif
+#  endif
+# endif        
 #endif
+#if defined(_FM8)
+       for(int i = 0; i < 2; i++) bubble_casette[i] = new BUBBLECASETTE(this, emu);
+#endif
+       drec = NULL;
        drec = new DATAREC(this, emu);
+       drec->set_context_noise_play(new NOISE(this, emu));
+       drec->set_context_noise_stop(new NOISE(this, emu));
+       drec->set_context_noise_fast(new NOISE(this, emu));
        pcm1bit = new PCM1BIT(this, emu);
-       fdc = new MB8877(this, emu);
+
+       connect_320kfdc = connect_1Mfdc = false;
+       fdc = NULL;
+#if defined(_FM8) || defined(_FM7) || defined(_FMNEW7)
+       if(((config.dipswitch & FM7_DIPSW_CONNECT_320KFDC) != 0) ||
+          ((config.dipswitch & FM7_DIPSW_CONNECT_1MFDC) != 0)) {
+#endif         
+               fdc = new MB8877(this, emu);
+               fdc->set_context_noise_seek(new NOISE(this, emu));
+               fdc->set_context_noise_head_down(new NOISE(this, emu));
+               fdc->set_context_noise_head_up(new NOISE(this, emu));
+#if defined(_FM8) || defined(_FM7) || defined(_FMNEW7)
+               if((config.dipswitch & FM7_DIPSW_CONNECT_320KFDC) != 0) {
+                       connect_320kfdc = true;
+               }
+               if((config.dipswitch & FM7_DIPSW_CONNECT_1MFDC) != 0) {
+                       connect_1Mfdc = true;
+               }
+#elif defined(_FM77_VARIANTS)
+               connect_320kfdc = true;
+               if((config.dipswitch & FM7_DIPSW_CONNECT_1MFDC) != 0) {
+                       connect_1Mfdc = true;
+               }
+#else  // AV or later.
+               connect_320kfdc = true;
+               // 1MFDD??
+#endif         
+#if defined(_FM8) || defined(_FM7) || defined(_FMNEW7)
+       }
+#endif 
        joystick  = new JOYSTICK(this, emu);
        printer = new PRNFILE(this, emu);
 #if defined(_FM77AV_VARIANTS)
@@ -105,6 +176,8 @@ VM::VM(EMU* parent_emu): emu(parent_emu)
 #if defined(_FM8) || defined(_FM7) || defined(_FMNEW7)
        if((config.dipswitch & FM7_DIPSW_CONNECT_KANJIROM) != 0) {
                kanjiclass1 = new KANJIROM(this, emu, false);
+       } else {
+               kanjiclass1 = NULL;
        }
 #else
        kanjiclass1 = new KANJIROM(this, emu, false);
@@ -112,14 +185,55 @@ VM::VM(EMU* parent_emu): emu(parent_emu)
 #ifdef CAPABLE_KANJI_CLASS2
        kanjiclass2 = new KANJIROM(this, emu, true);
 #endif
+#ifdef WITH_Z80
+       g_mainstat->set_mask(SIG_AND_BIT_0);
+       g_mainstat->set_mask(SIG_AND_BIT_1);
+       maincpu->set_context_bus_ba(g_mainstat, SIG_AND_BIT_0, 0xffffffff);
+       maincpu->set_context_bus_bs(g_mainstat, SIG_AND_BIT_1, 0xffffffff);
+       g_mainstat->set_context_out(mainio, FM7_MAINIO_RUN_Z80, 0xffffffff);
+
+       if(z80cpu != NULL) {
+               z80cpu->set_context_busack(mainio, FM7_MAINIO_RUN_6809, 0xffffffff);
+               mainio->set_context_z80cpu(z80cpu);
+       }
+#endif
+#if defined(_USE_QT)
+       event->set_device_name(_T("EVENT"));
+       dummy->set_device_name(_T("1st Dummy"));
        
-       //mainmem = new FM7_MAINMEM(this, emu);
-
-
-#if defined(USE_LED_DEVICE)
-       led_terminate = new DUMMYDEVICE(this, emu);
-#else
-       led_terminate = new DEVICE(this, emu);
+       maincpu->set_device_name(_T("MAINCPU(MC6809)"));
+       subcpu->set_device_name(_T("SUBCPU(MC6809)"));
+       dummycpu->set_device_name(_T("DUMMY CPU"));
+# ifdef WITH_Z80
+       if(z80cpu != NULL) z80cpu->set_device_name(_T("Z80 CPU"));
+# endif
+       if(fdc != NULL) fdc->set_device_name(_T("MB8877 FDC(320KB)"));
+                                               
+       // basic devices
+       // I/Os
+# if defined(_FM8)
+       psg->set_device_name(_T("AY-3-8910 PSG"));
+# else 
+       opn[0]->set_device_name(_T("YM2203 OPN"));
+       opn[1]->set_device_name(_T("YM2203 WHG"));
+       opn[2]->set_device_name(_T("YM2203 THG"));
+#  if !defined(_FM77AV_VARIANTS)
+       psg->set_device_name(_T("AY-3-8910 PSG"));
+#  endif
+# endif
+       pcm1bit->set_device_name(_T("BEEP"));
+       printer->set_device_name(_T("PRINTER I/F"));
+# if defined(_FM77AV_VARIANTS)
+       keyboard_beep->set_device_name(_T("BEEP(KEYBOARD)"));
+# endif        
+       if(kanjiclass1 != NULL) kanjiclass1->set_device_name(_T("KANJI ROM CLASS1"));
+# ifdef CAPABLE_KANJI_CLASS2
+       if(kanjiclass2 != NULL) kanjiclass2->set_device_name(_T("KANJI ROM CLASS2"));
+# endif
+# if defined(_FM8)
+       bubble_casette[0]->set_device_name(_T("BUBBLE CASETTE #0"));
+       bubble_casette[1]->set_device_name(_T("BUBBLE CASETTE #1"));
+# endif        
 #endif
        this->connect_bus();
        
@@ -195,14 +309,45 @@ void VM::connect_bus(void)
        event->set_context_cpu(subcpu,  subclock);
    
 #ifdef WITH_Z80
-       event->set_context_cpu(z80cpu,  4000000);
-       z80cpu->write_signal(SIG_CPU_BUSREQ, 1, 1);
-#endif
+       if(z80cpu != NULL) {
+               event->set_context_cpu(z80cpu,  4000000);
+               z80cpu->write_signal(SIG_CPU_BUSREQ, 1, 1);
+       }
+       maincpu->write_signal(SIG_CPU_HALTREQ, 0, 1);
 
+       g_intr_irq->set_mask(SIG_AND_BIT_0);
+       g_intr_irq->set_mask(SIG_AND_BIT_1);
+       
+       g_intr_firq->set_mask(SIG_AND_BIT_0);
+       g_intr_firq->set_mask(SIG_AND_BIT_1);
+       
+       g_nmi->set_mask(SIG_AND_BIT_0);
+       g_nmi->set_mask(SIG_AND_BIT_1);
+
+       mainio->set_context_irq(g_intr_irq, SIG_AND_BIT_1, 0xffffffff);
+       g_intr_irq->set_context_out(g_intr, SIG_OR_BIT_0, 0xffffffff);
+       
+       mainio->set_context_firq(g_intr_firq, SIG_AND_BIT_1, 0xffffffff);
+       g_intr_firq->set_context_out(g_intr, SIG_OR_BIT_0, 0xffffffff);
+       
+       if(z80cpu != NULL) g_intr->set_context_out(z80cpu, SIG_CPU_IRQ, 0xffffffff);
+
+       mainio->set_context_nmi(g_nmi, SIG_AND_BIT_1, 0xffffffff);
+       if(z80cpu != NULL) g_nmi->set_context_out(z80cpu, SIG_CPU_NMI, 0xffffffff);
+#endif
+#if defined(CAPABLE_JCOMMCARD)
+       if((jsubcpu != NULL) && (jcommcard != NULL)) {
+               event->set_context_cpu(jsubcpu,  JCOMMCARD_CLOCK);
+               jcommcard->set_context_cpu(jsubcpu);
+               jsubcpu->set_context_bus_ba(jcommcard, FM7_JCOMMCARD_BUS_BA, 0x00000001);
+               jsubcpu->set_context_bus_bs(jcommcard, FM7_JCOMMCARD_BUS_BS, 0x00000001);
+               mainio->set_context_jcommcard(jcommcard);
+       }
+#endif
        event->set_context_sound(pcm1bit);
 #if defined(_FM8)
        event->set_context_sound(psg);
-       event->set_context_sound(drec);
+       if(drec != NULL) event->set_context_sound(drec);
 #else
        event->set_context_sound(opn[0]);
        event->set_context_sound(opn[1]);
@@ -211,17 +356,31 @@ void VM::connect_bus(void)
        event->set_context_sound(psg);
 # endif
        event->set_context_sound(drec);
+       if(fdc != NULL) {
+               event->set_context_sound(fdc->get_context_noise_seek());
+               event->set_context_sound(fdc->get_context_noise_head_down());
+               event->set_context_sound(fdc->get_context_noise_head_up());
+       }
+       if(drec != NULL) {
+               event->set_context_sound(drec->get_context_noise_play());
+               event->set_context_sound(drec->get_context_noise_stop());
+               event->set_context_sound(drec->get_context_noise_fast());
+       }
 # if defined(_FM77AV_VARIANTS)
        event->set_context_sound(keyboard_beep);
 # endif
 #endif   
 #if !defined(_FM77AV_VARIANTS) && !defined(_FM77L4)
+       event->register_vline_event(display);
        event->register_frame_event(display);
 #endif 
        mainio->set_context_maincpu(maincpu);
        mainio->set_context_subcpu(subcpu);
        
        mainio->set_context_display(display);
+       mainio->set_context_irq(maincpu, SIG_CPU_IRQ, 0xffffffff);
+       mainio->set_context_firq(maincpu, SIG_CPU_FIRQ, 0xffffffff);
+       mainio->set_context_nmi(maincpu, SIG_CPU_NMI, 0xffffffff);
 #if defined(_FM8) || defined(_FM7) || defined(_FMNEW7)
        if((config.dipswitch & FM7_DIPSW_CONNECT_KANJIROM) != 0) {
                mainio->set_context_kanjirom_class1(kanjiclass1);
@@ -238,6 +397,9 @@ void VM::connect_bus(void)
 #if defined(CAPABLE_KANJI_CLASS2)
        mainio->set_context_kanjirom_class2(kanjiclass2);
 #endif
+#if defined(_FM8)
+       for(int i = 0; i < 2; i++) mainio->set_context_bubble(bubble_casette[i], i);
+#endif 
        keyboard->set_context_break_line(mainio, FM7_MAINIO_PUSH_BREAK, 0xffffffff);
        keyboard->set_context_int_line(mainio, FM7_MAINIO_KEYBOARDIRQ, 0xffffffff);
        keyboard->set_context_int_line(display, SIG_FM7_SUB_KEY_FIRQ, 0xffffffff);
@@ -246,14 +408,12 @@ void VM::connect_bus(void)
 #endif 
        keyboard->set_context_rxrdy(display, SIG_FM7KEY_RXRDY, 0x01);
        keyboard->set_context_key_ack(display, SIG_FM7KEY_ACK, 0x01);
-       keyboard->set_context_ins_led( led_terminate, SIG_DUMMYDEVICE_BIT0, 0xffffffff);
-       keyboard->set_context_caps_led(led_terminate, SIG_DUMMYDEVICE_BIT1, 0xffffffff);
-       keyboard->set_context_kana_led(led_terminate, SIG_DUMMYDEVICE_BIT2, 0xffffffff);
    
-       drec->set_context_ear(mainio, FM7_MAINIO_CMT_RECV, 0xffffffff);
-       //drec->set_context_remote(mainio, FM7_MAINIO_CMT_REMOTE, 0xffffffff);
-       mainio->set_context_datarec(drec);
-       
+       if(drec != NULL) {
+               drec->set_context_ear(mainio, FM7_MAINIO_CMT_RECV, 0xffffffff);
+               //drec->set_context_remote(mainio, FM7_MAINIO_CMT_REMOTE, 0xffffffff);
+               mainio->set_context_datarec(drec);
+       }
        mainmem->set_context_mainio(mainio);
        mainmem->set_context_display(display);
        mainmem->set_context_maincpu(maincpu);
@@ -266,9 +426,18 @@ void VM::connect_bus(void)
 
        mainio->set_context_clock_status(mainmem, FM7_MAINIO_CLOCKMODE, 0xffffffff);
        mainio->set_context_clock_status(display, SIG_DISPLAY_CLOCK, 0xffffffff);
-       
-       subcpu->set_context_bus_halt(display, SIG_FM7_SUB_HALT, 0xffffffff);
-       subcpu->set_context_bus_halt(mainmem, SIG_FM7_SUB_HALT, 0xffffffff);
+
+       g_substat_display->set_mask(SIG_AND_BIT_0);
+       g_substat_display->set_mask(SIG_AND_BIT_1);
+       subcpu->set_context_bus_ba(g_substat_display, SIG_AND_BIT_0, 0xffffffff);
+       subcpu->set_context_bus_bs(g_substat_display, SIG_AND_BIT_1, 0xffffffff);
+       g_substat_display->set_context_out(display, SIG_FM7_SUB_HALT, 0xffffffff);
+
+       g_substat_mainhalt->set_mask(SIG_AND_BIT_0);
+       g_substat_mainhalt->set_mask(SIG_AND_BIT_1);
+       subcpu->set_context_bus_ba(g_substat_mainhalt, SIG_AND_BIT_0, 0xffffffff);
+       subcpu->set_context_bus_bs(g_substat_mainhalt, SIG_AND_BIT_1, 0xffffffff);
+       g_substat_mainhalt->set_context_out(mainmem, SIG_FM7_SUB_HALT, 0xffffffff);
 
 #if defined(_FM77_VARIANTS) || defined(_FM77AV_VARIANTS)
        display->set_context_kanjiclass1(kanjiclass1);
@@ -279,14 +448,20 @@ void VM::connect_bus(void)
 #if defined(_FM77AV_VARIANTS)
        display->set_context_alu(alu);
        alu->set_context_memory(display);
+       alu->set_direct_access_offset(DISPLAY_VRAM_DIRECT_ACCESS);
 #endif 
        // Palette, VSYNC, HSYNC, Multi-page, display mode. 
        mainio->set_context_display(display);
-       
-       //FDC
-       fdc->set_context_irq(mainio, FM7_MAINIO_FDC_IRQ, 0x1);
-       fdc->set_context_drq(mainio, FM7_MAINIO_FDC_DRQ, 0x1);
-       mainio->set_context_fdc(fdc);
+#if defined(_FM8) || (_FM7) || (_FMNEW7)
+       if(connect_320kfdc || connect_1Mfdc) {
+#endif         
+               //FDC
+               fdc->set_context_irq(mainio, FM7_MAINIO_FDC_IRQ, 0x1);
+               fdc->set_context_drq(mainio, FM7_MAINIO_FDC_DRQ, 0x1);
+               mainio->set_context_fdc(fdc);
+#if defined(_FM8) || (_FM7) || (_FMNEW7)
+       }
+#endif 
        // SOUND
        mainio->set_context_beep(pcm1bit);
 #if defined(_FM8)      
@@ -297,7 +472,7 @@ void VM::connect_bus(void)
 # endif
        opn[0]->set_context_irq(mainio, FM7_MAINIO_OPN_IRQ, 0xffffffff);
        mainio->set_context_opn(opn[0], 0);
-       //joystick->set_context_opn(opn[0]);
+       joystick->set_context_opn(opn[0]);
        mainio->set_context_joystick(joystick);
        opn[0]->set_context_port_b(joystick, FM7_JOYSTICK_MOUSE_STROBE, 0xff, 0);
        
@@ -306,7 +481,6 @@ void VM::connect_bus(void)
        opn[2]->set_context_irq(mainio, FM7_MAINIO_THG_IRQ, 0xffffffff);
        mainio->set_context_opn(opn[2], 2);
 #endif   
-       subcpu->set_context_bus_halt(display, SIG_FM7_SUB_HALT, 0xffffffff);
        subcpu->set_context_bus_clr(display, SIG_FM7_SUB_USE_CLR, 0x0000000f);
    
        event->register_frame_event(joystick);
@@ -322,54 +496,74 @@ void VM::connect_bus(void)
        maincpu->set_context_mem(mainmem);
        subcpu->set_context_mem(display);
 #ifdef WITH_Z80
-       z80cpu->set_context_mem(mainmem);
+       if(z80cpu != NULL) z80cpu->set_context_mem(mainmem);
+#endif
+#if defined(CAPABLE_JCOMMCARD)
+       if((jsubcpu != NULL) && (jcommcard != NULL)) {
+               jsubcpu->set_context_mem(jcommcard);
+       }
 #endif
 #ifdef USE_DEBUGGER
        maincpu->set_context_debugger(new DEBUGGER(this, emu));
        subcpu->set_context_debugger(new DEBUGGER(this, emu));
 # ifdef WITH_Z80
-       z80cpu->set_context_debugger(new DEBUGGER(this, emu));
+       if(z80cpu != NULL) z80cpu->set_context_debugger(new DEBUGGER(this, emu));
+# endif
+# if defined(CAPABLE_JCOMMCARD)
+       if(jsubcpu != NULL) {
+               jsubcpu->set_context_debugger(new DEBUGGER(this, emu));
+       }
 # endif
 #endif
-
        for(DEVICE* device = first_device; device; device = device->next_device) {
                device->initialize();
        }
 
+#if defined(WITH_Z80)
+       g_intr_irq->write_signal(SIG_AND_BIT_0, ((config.dipswitch & FM7_DIPSW_Z80_IRQ_ON) != 0) ? 1 : 0, 1);
+       g_intr_firq->write_signal(SIG_AND_BIT_0, ((config.dipswitch & FM7_DIPSW_Z80_FIRQ_ON) != 0) ? 1 : 0, 1);
+       g_nmi->write_signal(SIG_AND_BIT_0, ((config.dipswitch & FM7_DIPSW_Z80_NMI_ON) != 0) ? 1 : 0, 1);
+#endif
        // Disks
-       for(int i = 0; i < 2; i++) {
+#if defined(_FM8) || (_FM7) || (_FMNEW7)
+       if(connect_320kfdc) {
+#endif         
+               for(int i = 0; i < 4; i++) {
 #if defined(_FM77AV20) || defined(_FM77AV20EX) || \
        defined(_FM77AV40SX) || defined(_FM77AV40EX) || defined(_FM77AV40SX)
-               fdc->set_drive_type(i, DRIVE_TYPE_2DD);
+                       fdc->set_drive_type(i, DRIVE_TYPE_2DD);
 #else
-               fdc->set_drive_type(i, DRIVE_TYPE_2D);
+                       fdc->set_drive_type(i, DRIVE_TYPE_2D);
 #endif
-#if defined(_FM77AV_VARIANTS)
-               fdc->set_drive_rpm(i, 360);
-#else          
-               fdc->set_drive_rpm(i, 360);
-#endif         
-               fdc->set_drive_mfm(i, true);
-       }
-#if defined(_FM77) || defined(_FM77L4)
-       for(int i = 2; i < 4; i++) {
-               fdc->set_drive_type(i, DRIVE_TYPE_2HD);
-               fdc->set_drive_rpm(i, 360);
-               fdc->set_drive_mfm(i, true);
+                       fdc->set_drive_rpm(i, 360);
+                       fdc->set_drive_mfm(i, true);
+               }
+#if defined(_FM8) || (_FM7) || (_FMNEW7)
        }
-#endif
+#endif 
        
+#if defined(_FM8) || (_FM7) || (_FMNEW7)
+       if(connect_1Mfdc) {
+#endif
+// ToDo: Implement another FDC for 1MB (2HD or 8''), this is used by FM-8 to FM-77? Not FM77AV or later? I still know this.
+//#if defined(_FM77) || defined(_FM77L4)
+//             for(int i = 0; i < 4; i++) {
+//                     fdc->set_drive_type(i, DRIVE_TYPE_2HD);
+//                     fdc->set_drive_rpm(i, 360);
+//                     fdc->set_drive_mfm(i, true);
+//             }
+//#endif
+#if defined(_FM8) || (_FM7) || (_FMNEW7)
+       }
+#endif 
 }  
 
 void VM::update_config()
 {
-       uint32_t vol1, vol2, tmpv;
-       int ii, i_limit;
-
        for(DEVICE* device = first_device; device; device = device->next_device) {
                device->update_config();
        }
-       //update_dipswitch();
+       update_dipswitch();
 }
 
 void VM::reset()
@@ -379,10 +573,15 @@ void VM::reset()
                device->reset();
        }
 #if !defined(_FM77AV_VARIANTS) || defined(_FM8)
+# if defined(USE_AY_3_8910_AS_PSG)
+       psg->set_reg(0x2e, 0);  // set prescaler
+       psg->write_signal(SIG_AY_3_891X_MUTE, 0x00, 0x01); // Okay?
+# else 
        psg->set_reg(0x27, 0); // stop timer
        psg->set_reg(0x2e, 0);  // set prescaler
        psg->write_signal(SIG_YM2203_MUTE, 0x00, 0x01); // Okay?
 #endif
+#endif
 #if !defined(_FM8)
        for(int i = 0; i < 3; i++) {
                opn[i]->set_reg(0x27, 0); // stop timer
@@ -419,12 +618,6 @@ double VM::get_frame_rate()
        return event->get_frame_rate();
 }
 
-#if defined(USE_LED_DEVICE)
-uint32_t VM::get_led_status()
-{
-       return led_terminate->read_signal(SIG_DUMMYDEVICE_READWRITE);
-}
-#endif // USE_LED_DEVICE
 
 
 // ----------------------------------------------------------------------------
@@ -439,10 +632,26 @@ DEVICE *VM::get_cpu(int index)
        } else if(index == 1) {
                return subcpu;
        }
-#if defined(_WITH_Z80)
+#if defined(WITH_Z80)
        else if(index == 2) {
+# if defined(CAPABLE_JCOMMCARD)
+               if(z80cpu == NULL) {
+                       return jsubcpu;
+               }
+# endif
                return z80cpu;
        }
+# if defined(CAPABLE_JCOMMCARD)
+       else if(index == 3) {
+               return jsubcpu;
+       }
+# endif
+#else
+# if defined(CAPABLE_JCOMMCARD)
+       else if(index == 2) {
+               return jsubcpu;
+       }
+# endif
 #endif
        return NULL;
 }
@@ -457,12 +666,6 @@ void VM::draw_screen()
        display->draw_screen();
 }
 
-uint32_t VM::get_access_lamp_status()
-{
-       uint32_t status = fdc->read_signal(0xff);
-       return (status & (1 | 4)) ? 1 : (status & (2 | 8)) ? 2 : 0;
-}
-
 void VM::initialize_sound(int rate, int samples)
 {
        // init sound manager
@@ -482,12 +685,12 @@ void VM::initialize_sound(int rate, int samples)
 # endif
 #endif 
        pcm1bit->initialize_sound(rate, 2000);
-       drec->initialize_sound(rate, 0);
+       //drec->initialize_sound(rate, 0);
 }
 
-uint16* VM::create_sound(int* extra_frames)
+uint16_t* VM::create_sound(int* extra_frames)
 {
-       uint16* p = event->create_sound(extra_frames);
+       uint16_t* p = event->create_sound(extra_frames);
        return p;
 }
 
@@ -524,7 +727,25 @@ void VM::set_sound_device_volume(int ch, int decibel_l, int decibel_r)
        if(ch-- == 0) {
                pcm1bit->set_volume(0, decibel_l, decibel_r);
        } else if(ch-- == 0) {
-               drec->set_volume(0, decibel_l, decibel_r);
+               if(drec != NULL) drec->set_volume(0, decibel_l, decibel_r);
+       }
+#if defined(_FM77AV_VARIANTS)
+       else if(ch-- == 0) {
+               keyboard_beep->set_volume(0, decibel_l, decibel_r);
+       }
+#endif
+       else if(ch-- == 0) {
+               if(fdc != NULL) {
+                       fdc->get_context_noise_seek()->set_volume(0, decibel_l, decibel_r);
+                       fdc->get_context_noise_head_down()->set_volume(0, decibel_l, decibel_r);
+                       fdc->get_context_noise_head_up()->set_volume(0, decibel_l, decibel_r);
+               }
+       } else if(ch-- == 0) {
+               if(drec != NULL) {
+                       drec->get_context_noise_play()->set_volume(0, decibel_l, decibel_r);
+                       drec->get_context_noise_stop()->set_volume(0, decibel_l, decibel_r);
+                       drec->get_context_noise_fast()->set_volume(0, decibel_l, decibel_r);
+               }
        }
 }
 #endif
@@ -545,102 +766,181 @@ void VM::key_up(int code)
        keyboard->key_up(code);
 }
 
+bool VM::get_caps_locked()
+{
+       return keyboard->get_caps_locked();
+}
+
+bool VM::get_kana_locked()
+{
+       return keyboard->get_kana_locked();
+}
+
+// Get INS status.Important with FM-7 series (^_^;
+uint32_t VM::get_extra_leds()
+{
+       return keyboard->read_signal(SIG_FM7KEY_LED_STATUS);
+}
+
+
 // ----------------------------------------------------------------------------
 // user interface
 // ----------------------------------------------------------------------------
 
 void VM::open_floppy_disk(int drv, const _TCHAR* file_path, int bank)
 {
-       fdc->open_disk(drv, file_path, bank);
+       if(fdc != NULL) {
+               fdc->open_disk(drv, file_path, bank);
+       }
 }
 
 void VM::close_floppy_disk(int drv)
 {
-       fdc->close_disk(drv);
+       if(fdc != NULL) {
+               fdc->close_disk(drv);
+       }
 }
 
 bool VM::is_floppy_disk_inserted(int drv)
 {
-       return fdc->is_disk_inserted(drv);
+       if(fdc != NULL) {
+               return fdc->is_disk_inserted(drv);
+       } else {
+               return false;
+       }
 }
 
 void VM::is_floppy_disk_protected(int drv, bool value)
 {
-       fdc->is_disk_protected(drv, value);
+       if(fdc != NULL) {
+               fdc->is_disk_protected(drv, value);
+       }
 }
 
 bool VM::is_floppy_disk_protected(int drv)
 {
-       return fdc->is_disk_protected(drv);
+       if(fdc != NULL) {
+               return fdc->is_disk_protected(drv);
+       } else {
+               return false;
+       }
+}
+
+uint32_t VM::is_floppy_disk_accessed()
+{
+       // WILLFIX : Multiple FDC for 1M FD.
+#if defined(_FM8) || (_FM7) || (_FMNEW7)
+       if(connect_320kfdc || connect_1Mfdc) {
+#endif         
+               return fdc->read_signal(0);
+#if defined(_FM8) || (_FM7) || (_FMNEW7)
+       } else {
+               return 0x00000000;
+       }
+#endif 
+}
+
+void VM::play_tape(int drv, const _TCHAR* file_path)
+{
+       if(drec != NULL) drec->play_tape(file_path);
 }
 
-void VM::play_tape(const _TCHAR* file_path)
+void VM::rec_tape(int drv, const _TCHAR* file_path)
 {
-       drec->play_tape(file_path);
+       if(drec != NULL) drec->rec_tape(file_path);
 }
 
-void VM::rec_tape(const _TCHAR* file_path)
+void VM::close_tape(int drv)
 {
-       drec->rec_tape(file_path);
+       emu->lock_vm();
+       if(drec != NULL) drec->close_tape();
+       emu->unlock_vm();
 }
 
-void VM::close_tape()
+bool VM::is_tape_inserted(int drv)
 {
-       drec->close_tape();
+       if(drec != NULL) {
+               return drec->is_tape_inserted();
+       }
+       return false;
 }
 
-bool VM::is_tape_inserted()
+bool VM::is_tape_playing(int drv)
 {
-       return drec->is_tape_inserted();
+       if(drec != NULL) {
+               return drec->is_tape_playing();
+       }
+       return false;
 }
 
-bool VM::is_tape_playing()
+bool VM::is_tape_recording(int drv)
 {
-       return drec->is_tape_playing();
+       if(drec != NULL) {
+               return drec->is_tape_recording();
+       }
+       return false;
 }
 
-bool VM::is_tape_recording()
+int VM::get_tape_position(int drv)
 {
-       return drec->is_tape_recording();
+       if(drec != NULL) {
+               return drec->get_tape_position();
+       }
+       return 0;
 }
 
-int VM::get_tape_position()
+const _TCHAR* VM::get_tape_message(int drv)
 {
-       return drec->get_tape_position();
+       if(drec != NULL) {
+               return drec->get_message();
+       }
+       return NULL;
 }
 
-void VM::push_play()
+void VM::push_play(int drv)
 {
-       drec->set_ff_rew(0);
-       drec->set_remote(true);
+       if(drec != NULL) {
+               drec->set_ff_rew(0);
+               drec->set_remote(true);
+       }
 }
 
 
-void VM::push_stop()
+void VM::push_stop(int drv)
 {
-       drec->set_remote(false);
+       if(drec != NULL) {
+               drec->set_remote(false);
+       }
 }
 
-void VM::push_fast_forward()
+void VM::push_fast_forward(int drv)
 {
-       drec->set_ff_rew(1);
-       drec->set_remote(true);
+       if(drec != NULL) {
+               drec->set_ff_rew(1);
+               drec->set_remote(true);
+       }
 }
 
-void VM::push_fast_rewind()
+void VM::push_fast_rewind(int drv)
 {
-       drec->set_ff_rew(-1);
-       drec->set_remote(true);
+       if(drec != NULL) {
+               drec->set_ff_rew(-1);
+               drec->set_remote(true);
+       }
 }
 
-void VM::push_apss_forward()
+void VM::push_apss_forward(int drv)
 {
-       drec->do_apss(1);
+       if(drec != NULL) {
+               drec->do_apss(1);
+       }
 }
 
-void VM::push_apss_rewind()
+void VM::push_apss_rewind(int drv)
 {
-       drec->do_apss(-1);
+       if(drec != NULL) {
+               drec->do_apss(-1);
+       }
 }
 
 bool VM::is_frame_skippable()
@@ -650,21 +950,66 @@ bool VM::is_frame_skippable()
 
 void VM::update_dipswitch()
 {
-       // bit0         0=High 1=Standard
-       // bit2         0=5"2D 1=5"2HD
-  //   io->set_iovalue_single_r(0x1ff0, (config.monitor_type & 1) | ((config.drive_type & 1) << 2));
+#if defined(WITH_Z80)
+       g_intr_irq->write_signal(SIG_AND_BIT_0, ((config.dipswitch & FM7_DIPSW_Z80_IRQ_ON) != 0) ? 1 : 0, 1);
+       g_intr_firq->write_signal(SIG_AND_BIT_0, ((config.dipswitch & FM7_DIPSW_Z80_FIRQ_ON) != 0) ? 1 : 0, 1);
+       g_nmi->write_signal(SIG_AND_BIT_0, ((config.dipswitch & FM7_DIPSW_Z80_NMI_ON) != 0) ? 1 : 0, 1);
+#endif
 }
 
 void VM::set_cpu_clock(DEVICE *cpu, uint32_t clocks) {
        event->set_secondary_cpu_clock(cpu, clocks);
 }
 
-#define STATE_VERSION  3
+#if defined(USE_BUBBLE1)
+void VM::open_bubble_casette(int drv, const _TCHAR *path, int bank)
+{
+       if((drv >= 2) || (drv < 0)) return;
+       if(bubble_casette[drv] == NULL) return;
+       bubble_casette[drv]->open((_TCHAR *)path, bank);
+}
+
+void VM::close_bubble_casette(int drv)
+{
+       if((drv >= 2) || (drv < 0)) return;
+       if(bubble_casette[drv] == NULL) return;
+       bubble_casette[drv]->close();
+}
+
+bool VM::is_bubble_casette_inserted(int drv)
+{
+       if((drv >= 2) || (drv < 0)) return false;
+       if(bubble_casette[drv] == NULL) return false;
+       return bubble_casette[drv]->is_bubble_inserted();
+}
+
+bool VM::is_bubble_casette_protected(int drv)
+{
+       if((drv >= 2) || (drv < 0)) return false;
+       if(bubble_casette[drv] == NULL) return false;
+       return bubble_casette[drv]->is_bubble_protected();
+}
+
+void VM::is_bubble_casette_protected(int drv, bool flag)
+{
+       if((drv >= 2) || (drv < 0)) return;
+       if(bubble_casette[drv] == NULL) return;
+       bubble_casette[drv]->set_bubble_protect(flag);
+}
+#endif
+
+
+#define STATE_VERSION  8
 void VM::save_state(FILEIO* state_fio)
 {
        state_fio->FputUint32_BE(STATE_VERSION);
-       
+       state_fio->FputBool(connect_320kfdc);
+       state_fio->FputBool(connect_1Mfdc);
        for(DEVICE* device = first_device; device; device = device->next_device) {
+               const char *name = typeid(*device).name() + 6; // skip "class "
+               
+               state_fio->FputInt32(strlen(name));
+               state_fio->Fwrite(name, strlen(name), 1);
                device->save_state(state_fio);
        }
 }
@@ -672,20 +1017,24 @@ void VM::save_state(FILEIO* state_fio)
 bool VM::load_state(FILEIO* state_fio)
 {
        uint32_t version = state_fio->FgetUint32_BE();
-       int i = 1;
-       if(version > STATE_VERSION) {
+       if(version != STATE_VERSION) {
                return false;
        }
+       connect_320kfdc = state_fio->FgetBool();
+       connect_1Mfdc = state_fio->FgetBool();
        for(DEVICE* device = first_device; device; device = device->next_device) {
+               const char *name = typeid(*device).name() + 6; // skip "class "
+               
+               if(!(state_fio->FgetInt32() == strlen(name) && state_fio->Fcompare(name, strlen(name)))) {
+                       printf("Load Error: DEVID=%d\n", device->this_device_id);
+                       return false;
+               }
                if(!device->load_state(state_fio)) {
                        printf("Load Error: DEVID=%d\n", device->this_device_id);
                        return false;
                }
        }
-       if(version >= 1) {// V1 
-               if(version == 3) return true;
-       }
-       return false;
+       return true;
 }
 
 #ifdef USE_DIG_RESOLUTION