OSDN Git Service

[VM] Fix FTBFSs.
[csp-qt/common_source_project-fm7.git] / source / src / vm / pc2001 / pc2001.h
index 21909f2..2b93621 100644 (file)
@@ -26,7 +26,8 @@
 
 // device informations for win32
 #define WINDOW_MODE_BASE       2
-#define USE_TAPE1
+#define USE_TAPE               1
+#define USE_TAPE_BUTTON
 #define USE_ALT_F10_KEY
 #define USE_AUTO_KEY           6
 #define USE_AUTO_KEY_RELEASE   10
@@ -39,6 +40,8 @@
 #define USE_CPU_UPD7810
 
 #include "../../common.h"
+#include "../../fileio.h"
+#include "../vm_template.h"
 
 #ifdef USE_SOUND_VOLUME
 static const _TCHAR *sound_device_caption[] = {
@@ -46,6 +49,7 @@ static const _TCHAR *sound_device_caption[] = {
 };
 #endif
 
+//class csp_state_utils;
 class EMU;
 class DEVICE;
 class EVENT;
@@ -58,16 +62,14 @@ class UPD1990A;
 class UPD7810;
 
 class IO;
-
-#include "../../fileio.h"
-
-class VM
+class VM : public VM_TEMPLATE
 {
 protected:
-       EMU* emu;
+       //EMU* emu;
+       //csp_state_utils *state_entry;
        
        // devices
-       EVENT* event;
+       //EVENT* event;
        
        DATAREC* drec;
        MEMORY* memory;
@@ -124,9 +126,16 @@ public:
        bool is_tape_recording(int drv);
        int get_tape_position(int drv);
        const _TCHAR* get_tape_message(int drv);
+       void push_play(int drv);
+       void push_stop(int drv);
+       void push_fast_forward(int drv);
+       void push_fast_rewind(int drv);
+       void push_apss_forward(int drv) {}
+       void push_apss_rewind(int drv) {}
        bool is_frame_skippable();
        
        void update_config();
+       void decl_state();
        void save_state(FILEIO* state_fio);
        bool load_state(FILEIO* state_fio);
        
@@ -136,9 +145,9 @@ public:
        
        // devices
        DEVICE* get_device(int id);
-       DEVICE* dummy;
-       DEVICE* first_device;
-       DEVICE* last_device;
+       //DEVICE* dummy;
+       //DEVICE* first_device;
+       //DEVICE* last_device;
 };
 
 #endif