diff options
Diffstat (limited to 'src/core/arm/arm_interface.h')
| -rw-r--r-- | src/core/arm/arm_interface.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/core/arm/arm_interface.h b/src/core/arm/arm_interface.h index 480c90e66..919da6737 100644 --- a/src/core/arm/arm_interface.h +++ b/src/core/arm/arm_interface.h | |||
| @@ -9,7 +9,7 @@ | |||
| 9 | #include "core/arm/skyeye_common/vfp/asm_vfp.h" | 9 | #include "core/arm/skyeye_common/vfp/asm_vfp.h" |
| 10 | 10 | ||
| 11 | namespace Core { | 11 | namespace Core { |
| 12 | struct ThreadContext; | 12 | struct ThreadContext; |
| 13 | } | 13 | } |
| 14 | 14 | ||
| 15 | /// Generic ARM11 CPU interface | 15 | /// Generic ARM11 CPU interface |
| @@ -141,10 +141,10 @@ public: | |||
| 141 | return num_instructions; | 141 | return num_instructions; |
| 142 | } | 142 | } |
| 143 | 143 | ||
| 144 | s64 down_count = 0; ///< A decreasing counter of remaining cycles before the next event, decreased by the cpu run loop | 144 | s64 down_count = 0; ///< A decreasing counter of remaining cycles before the next event, |
| 145 | /// decreased by the cpu run loop | ||
| 145 | 146 | ||
| 146 | protected: | 147 | protected: |
| 147 | |||
| 148 | /** | 148 | /** |
| 149 | * Executes the given number of instructions | 149 | * Executes the given number of instructions |
| 150 | * @param num_instructions Number of instructions to executes | 150 | * @param num_instructions Number of instructions to executes |
| @@ -152,6 +152,5 @@ protected: | |||
| 152 | virtual void ExecuteInstructions(int num_instructions) = 0; | 152 | virtual void ExecuteInstructions(int num_instructions) = 0; |
| 153 | 153 | ||
| 154 | private: | 154 | private: |
| 155 | |||
| 156 | u64 num_instructions = 0; ///< Number of instructions executed | 155 | u64 num_instructions = 0; ///< Number of instructions executed |
| 157 | }; | 156 | }; |