OSDN Git Service

[VM][WIP] Use namespace to devices per VMs.
[csp-qt/common_source_project-fm7.git] / source / src / vm / mz700 / cmos.cpp
index d7c4be6..c26201a 100644 (file)
@@ -14,6 +14,8 @@
 #define DATA_SIZE      0x8000
 #define ADDR_MASK      (DATA_SIZE - 1)
 
+namespace MZ700 {
+       
 void CMOS::initialize()
 {
        // init memory
@@ -97,3 +99,5 @@ bool CMOS::process_state(FILEIO* state_fio, bool loading)
        state_fio->StateBool(modified);
        return true;
 }
+
+}