summaryrefslogtreecommitdiffstats
path: root/src/core/arm/interpreter/arm_interpreter.h
diff options
context:
space:
mode:
authorbunnei <ericbunnie@gmail.com>2014-05-17 17:59:18 +0200
committerbunnei <ericbunnie@gmail.com>2014-05-17 17:59:18 +0200
commit265c770a9d663b96a9a422201bac3dd454fa95c0 (patch)
treee7a1682450b857d80cc2ed0f863f4a82b81142bd /src/core/arm/interpreter/arm_interpreter.h
parentMerge pull request #17 from bunnei/arm-vfp (diff)
downloadyuzu-265c770a9d663b96a9a422201bac3dd454fa95c0.tar
yuzu-265c770a9d663b96a9a422201bac3dd454fa95c0.tar.gz
yuzu-265c770a9d663b96a9a422201bac3dd454fa95c0.tar.bz2
yuzu-265c770a9d663b96a9a422201bac3dd454fa95c0.tar.lz
yuzu-265c770a9d663b96a9a422201bac3dd454fa95c0.tar.xz
yuzu-265c770a9d663b96a9a422201bac3dd454fa95c0.tar.zst
yuzu-265c770a9d663b96a9a422201bac3dd454fa95c0.zip
Diffstat (limited to '')
-rw-r--r--src/core/arm/interpreter/arm_interpreter.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/core/arm/interpreter/arm_interpreter.h b/src/core/arm/interpreter/arm_interpreter.h
index 625c0c652..509025080 100644
--- a/src/core/arm/interpreter/arm_interpreter.h
+++ b/src/core/arm/interpreter/arm_interpreter.h
@@ -56,8 +56,11 @@ public:
protected:
- /// Execture next instruction
- void ExecuteInstruction();
+ /**
+ * Executes the given number of instructions
+ * @param num_instructions Number of instructions to executes
+ */
+ void ExecuteInstructions(int num_instructions);
private: