summaryrefslogtreecommitdiff
path: root/coroutine/universal/Context.S
diff options
context:
space:
mode:
Diffstat (limited to 'coroutine/universal/Context.S')
-rw-r--r--coroutine/universal/Context.S12
1 files changed, 12 insertions, 0 deletions
diff --git a/coroutine/universal/Context.S b/coroutine/universal/Context.S
new file mode 100644
index 0000000000..0fd8c01e7f
--- /dev/null
+++ b/coroutine/universal/Context.S
@@ -0,0 +1,12 @@
+#if 0
+#elif defined __x86_64__
+# include "coroutine/amd64/Context.S"
+#elif defined __i386__
+# include "coroutine/x86/Context.S"
+#elif defined __ppc64__
+# include "coroutine/ppc64le/Context.S"
+#elif defined __arm64__
+# include "coroutine/arm64/Context.S"
+#else
+# error "Unsupported CPU"
+#endif