OSDN Git Service

[VM] TRY:Use namespace {VMNAME} to separate around VMs. This feature still apply...
[csp-qt/common_source_project-fm7.git] / source / src / vm / bmjr / bmjr.cpp
index e6e3572..facfed8 100644 (file)
 #include "../debugger.h"
 #endif
 
-#include "memory.h"
+#include "./memory.h"
 
 // ----------------------------------------------------------------------------
 // initialize
 // ----------------------------------------------------------------------------
+using BMJR::MEMORY;
 
 VM::VM(EMU* parent_emu) : VM_TEMPLATE(parent_emu)
 {
@@ -41,7 +42,7 @@ VM::VM(EMU* parent_emu) : VM_TEMPLATE(parent_emu)
        cpu = new MC6800(this, emu);
        pia = new MC6820(this, emu);
        
-       memory = new BMJR_MEMORY(this, emu);
+       memory = new MEMORY(this, emu);
        
        // Set names
 #if defined(_USE_QT)