aboutsummaryrefslogtreecommitdiff
path: root/include/task.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/task.h')
-rw-r--r--include/task.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/task.h b/include/task.h
new file mode 100644
index 0000000..63fe543
--- /dev/null
+++ b/include/task.h
@@ -0,0 +1,9 @@
+#pragma once
+
+#include <stdint.h>
+
+typedef struct {
+ uint32_t x[32];
+
+ uint32_t pc;
+} task_t;