PSP-EMU rev 57
Un emulador en c++ para SONY PSP
|
00001 00008 #ifndef CESTADOCPU_H_ 00009 #define CESTADOCPU_H_ 00010 00011 #include "general_emu.h" 00012 00013 class cEstadoCPU 00014 { 00015 private: 00016 bool bEncendido; 00017 bool bEjecutando; 00018 00019 public: 00020 cEstadoCPU(); 00021 ~cEstadoCPU(); 00022 00023 // Asignar estado de funcionamiento 00024 tError ponerEncendido(const bool estado); 00025 tError ponerEjecucion(const bool estado); 00026 00027 // Preguntar el estado de funcionamiento 00028 bool estaEncendido(void); 00029 bool estaEjecutando(void); 00030 }; 00031 00032 #endif /* CESTADOCPU_H_ */