Browse Source

arm_interface: directly initialize class members

nce_cpp
Lioncash 10 years ago
parent
commit
dd441a3dd6
  1. 9
      src/core/arm/arm_interface.h

9
src/core/arm/arm_interface.h

@ -14,10 +14,6 @@ namespace Core {
/// Generic ARM11 CPU interface /// Generic ARM11 CPU interface
class ARM_Interface : NonCopyable { class ARM_Interface : NonCopyable {
public: public:
ARM_Interface() {
num_instructions = 0;
}
virtual ~ARM_Interface() { virtual ~ARM_Interface() {
} }
@ -150,7 +146,7 @@ public:
return num_instructions; return num_instructions;
} }
s64 down_count; ///< A decreasing counter of remaining cycles before the next event, decreased by the cpu run loop
s64 down_count = 0; ///< A decreasing counter of remaining cycles before the next event, decreased by the cpu run loop
protected: protected:
@ -162,6 +158,5 @@ protected:
private: private:
u64 num_instructions; ///< Number of instructions executed
u64 num_instructions = 0; ///< Number of instructions executed
}; };
Loading…
Cancel
Save