diff options
| author | 2014-12-25 22:52:40 -0500 | |
|---|---|---|
| committer | 2014-12-25 22:52:40 -0500 | |
| commit | e5ddbfee0211642858f0114691966db7c17e5f7e (patch) | |
| tree | 44d89c26c5f4dc976dadd7322c9269f026c7b98d /src/core/arm/arm_interface.h | |
| parent | Merge pull request #330 from purpasmart96/new_srv (diff) | |
| parent | GPU: Further improve synchronization. (diff) | |
| download | yuzu-e5ddbfee0211642858f0114691966db7c17e5f7e.tar.gz yuzu-e5ddbfee0211642858f0114691966db7c17e5f7e.tar.xz yuzu-e5ddbfee0211642858f0114691966db7c17e5f7e.zip | |
Merge pull request #339 from bunnei/fixup-gsp-synch
Fixup gsp synch
Diffstat (limited to 'src/core/arm/arm_interface.h')
| -rw-r--r-- | src/core/arm/arm_interface.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/arm/arm_interface.h b/src/core/arm/arm_interface.h index c59355339..3b7209418 100644 --- a/src/core/arm/arm_interface.h +++ b/src/core/arm/arm_interface.h | |||
| @@ -78,6 +78,12 @@ public: | |||
| 78 | virtual u64 GetTicks() const = 0; | 78 | virtual u64 GetTicks() const = 0; |
| 79 | 79 | ||
| 80 | /** | 80 | /** |
| 81 | * Advance the CPU core by the specified number of ticks (e.g. to simulate CPU execution time) | ||
| 82 | * @param ticks Number of ticks to advance the CPU core | ||
| 83 | */ | ||
| 84 | virtual void AddTicks(u64 ticks) = 0; | ||
| 85 | |||
| 86 | /** | ||
| 81 | * Saves the current CPU context | 87 | * Saves the current CPU context |
| 82 | * @param ctx Thread context to save | 88 | * @param ctx Thread context to save |
| 83 | */ | 89 | */ |