multi-cpu scheduling WIP
This commit is contained in:
2
spin/.gitignore
vendored
Normal file
2
spin/.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
*.o
|
||||
*.exe
|
||||
1
spin/Makefile
Normal file
1
spin/Makefile
Normal file
@@ -0,0 +1 @@
|
||||
include ../make/user.mk
|
||||
1
spin/app.mk
Normal file
1
spin/app.mk
Normal file
@@ -0,0 +1 @@
|
||||
app := spin.exe
|
||||
4
spin/spin.c
Normal file
4
spin/spin.c
Normal file
@@ -0,0 +1,4 @@
|
||||
void app_main (void) {
|
||||
for (;;)
|
||||
;
|
||||
}
|
||||
3
spin/src.mk
Normal file
3
spin/src.mk
Normal file
@@ -0,0 +1,3 @@
|
||||
c += spin.c
|
||||
|
||||
o += spin.o
|
||||
Reference in New Issue
Block a user