Init the basic program

This commit is contained in:
Jake Howard 2022-05-31 14:46:31 +01:00
parent 72bc208b23
commit 258923eb32
Signed by: jake
GPG Key ID: 57AFB45680EDD477
3 changed files with 15 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/noop

5
Makefile Normal file
View File

@ -0,0 +1,5 @@
noop: noop.c
gcc -static $< -o $@ -O3
clean:
rm noop

9
noop.c Normal file
View File

@ -0,0 +1,9 @@
#include <unistd.h>
int main() {
while (1) {
pause();
}
return 0;
}