summaryrefslogtreecommitdiff
path: root/src/core/arm/arm_interface.h
diff options
context:
space:
mode:
authorGravatar Huw Pascoe2017-09-30 17:25:49 +0100
committerGravatar Huw Pascoe2017-09-30 17:38:14 +0100
commit529f4a01318a450f999ffa7e01c5c26f801d22e0 (patch)
tree8728152f1726aeb775c2bba2ecc60bc67354e083 /src/core/arm/arm_interface.h
parentServices/UDS: Handle the rest of the connection sequence. (#2963) (diff)
downloadyuzu-529f4a01318a450f999ffa7e01c5c26f801d22e0.tar.gz
yuzu-529f4a01318a450f999ffa7e01c5c26f801d22e0.tar.xz
yuzu-529f4a01318a450f999ffa7e01c5c26f801d22e0.zip
Moved down_count to CoreTiming
Diffstat (limited to 'src/core/arm/arm_interface.h')
-rw-r--r--src/core/arm/arm_interface.h9
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
156protected: 147protected:
157 /** 148 /**
158 * Executes the given number of instructions 149 * Executes the given number of instructions