diff options
| author | 2017-09-30 14:46:06 -0500 | |
|---|---|---|
| committer | 2017-09-30 14:46:06 -0500 | |
| commit | 5ba48c161053fa8cd05c443cb94d4f66fede4d15 (patch) | |
| tree | 8728152f1726aeb775c2bba2ecc60bc67354e083 /src/core/arm/arm_interface.h | |
| parent | Services/UDS: Handle the rest of the connection sequence. (#2963) (diff) | |
| parent | Moved down_count to CoreTiming (diff) | |
| download | yuzu-5ba48c161053fa8cd05c443cb94d4f66fede4d15.tar.gz yuzu-5ba48c161053fa8cd05c443cb94d4f66fede4d15.tar.xz yuzu-5ba48c161053fa8cd05c443cb94d4f66fede4d15.zip | |
Merge pull request #2973 from huwpascoe/down_count
Moved down_count to CoreTiming
Diffstat (limited to 'src/core/arm/arm_interface.h')
| -rw-r--r-- | src/core/arm/arm_interface.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/core/arm/arm_interface.h b/src/core/arm/arm_interface.h index 2aa017a54..ba528403c 100644 --- a/src/core/arm/arm_interface.h +++ b/src/core/arm/arm_interface.h | |||
| @@ -125,12 +125,6 @@ public: | |||
| 125 | virtual void SetCP15Register(CP15Register reg, u32 value) = 0; | 125 | virtual void SetCP15Register(CP15Register reg, u32 value) = 0; |
| 126 | 126 | ||
| 127 | /** | 127 | /** |
| 128 | * Advance the CPU core by the specified number of ticks (e.g. to simulate CPU execution time) | ||
| 129 | * @param ticks Number of ticks to advance the CPU core | ||
| 130 | */ | ||
| 131 | virtual void AddTicks(u64 ticks) = 0; | ||
| 132 | |||
| 133 | /** | ||
| 134 | * Saves the current CPU context | 128 | * Saves the current CPU context |
| 135 | * @param ctx Thread context to save | 129 | * @param ctx Thread context to save |
| 136 | */ | 130 | */ |
| @@ -150,9 +144,6 @@ public: | |||
| 150 | return num_instructions; | 144 | return num_instructions; |
| 151 | } | 145 | } |
| 152 | 146 | ||
| 153 | s64 down_count = 0; ///< A decreasing counter of remaining cycles before the next event, | ||
| 154 | /// decreased by the cpu run loop | ||
| 155 | |||
| 156 | protected: | 147 | protected: |
| 157 | /** | 148 | /** |
| 158 | * Executes the given number of instructions | 149 | * Executes the given number of instructions |