multi-cpu scheduling WIP

This commit is contained in:
2026-01-25 15:54:00 +01:00
parent 7bb3b77ede
commit 95f590fb3b
23 changed files with 103 additions and 61 deletions

2
spin/.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
*.o
*.exe

1
spin/Makefile Normal file
View File

@@ -0,0 +1 @@
include ../make/user.mk

1
spin/app.mk Normal file
View File

@@ -0,0 +1 @@
app := spin.exe

4
spin/spin.c Normal file
View File

@@ -0,0 +1,4 @@
void app_main (void) {
for (;;)
;
}

3
spin/src.mk Normal file
View File

@@ -0,0 +1,3 @@
c += spin.c
o += spin.o