--- nono/vm/vm_virt68k.cpp 2026/04/29 17:05:25 1.1 +++ nono/vm/vm_virt68k.cpp 2026/04/29 17:05:29 1.1.1.2 @@ -5,7 +5,7 @@ // // -// VM (virt68k) +// VM (virt-m68k) // #include "vm_virt68k.h" @@ -17,7 +17,7 @@ // コンストラクタ VM_Virt68k::VM_Virt68k() - : inherited("virt68k") + : inherited("virt-m68k") { // 機種固有パラメータ gConfig->SetDefault("mpu-clock", 25); @@ -29,6 +29,9 @@ VM_Virt68k::VM_Virt68k() NEWDV(MPU, new MPU680x0Device()); NEWDV(Mainbus, new Virt68kMainbus()); NEWDV(Renderer, new NopRenderer()); + + // バーストアクセス有効にする + dynamic_cast(pMPU.get())->EnableBurstAccess(true); } // デストラクタ