summaryrefslogtreecommitdiffstats
path: root/sw/z80/kernel/process.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--sw/z80/kernel/process.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/sw/z80/kernel/process.c b/sw/z80/kernel/process.c
new file mode 100644
index 0000000..f33ead6
--- /dev/null
+++ b/sw/z80/kernel/process.c
@@ -0,0 +1,18 @@
+#include "process.h"
+
+struct process proc_table[255];
+
+int fork(void)
+{
+
+}
+
+int exec(char *path, char *args)
+{
+
+}
+
+int spawn(char *path, char *args)
+{
+
+} \ No newline at end of file