summaryrefslogtreecommitdiffstats
path: root/src/common/x64/cpu_wait.h
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2023-03-22 02:28:38 +0100
committerMorph <39850852+Morph1984@users.noreply.github.com>2023-03-27 23:45:22 +0200
commit27c33ab73fd03d659654c49967a081214daf6ac2 (patch)
treece139e675dce91045a05fb3d5e44803af9931d0e /src/common/x64/cpu_wait.h
parentx64: cpu_detect: Add detection of waitpkg instructions (diff)
downloadyuzu-27c33ab73fd03d659654c49967a081214daf6ac2.tar
yuzu-27c33ab73fd03d659654c49967a081214daf6ac2.tar.gz
yuzu-27c33ab73fd03d659654c49967a081214daf6ac2.tar.bz2
yuzu-27c33ab73fd03d659654c49967a081214daf6ac2.tar.lz
yuzu-27c33ab73fd03d659654c49967a081214daf6ac2.tar.xz
yuzu-27c33ab73fd03d659654c49967a081214daf6ac2.tar.zst
yuzu-27c33ab73fd03d659654c49967a081214daf6ac2.zip
Diffstat (limited to '')
-rw-r--r--src/common/x64/cpu_wait.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/common/x64/cpu_wait.h b/src/common/x64/cpu_wait.h
new file mode 100644
index 000000000..99d3757a7
--- /dev/null
+++ b/src/common/x64/cpu_wait.h
@@ -0,0 +1,10 @@
+// SPDX-FileCopyrightText: Copyright 2023 yuzu Emulator Project
+// SPDX-License-Identifier: GPL-2.0-or-later
+
+#pragma once
+
+namespace Common::X64 {
+
+void MicroSleep();
+
+} // namespace Common::X64