diff options
author | Marvin Borner | 2020-08-09 18:50:17 +0200 |
---|---|---|
committer | Marvin Borner | 2020-08-09 18:50:17 +0200 |
commit | b933a9955a2a1eb0ab32b232e23d24dc207cba46 (patch) | |
tree | cb5871cb861a1e7eee8900a2ed81a9e33a3ce130 /apps/a.c | |
parent | 544acef0986977ef9d3a05d87bb9f55163b1280a (diff) |
Added syscall templates
Diffstat (limited to 'apps/a.c')
-rw-r--r-- | apps/a.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -2,9 +2,12 @@ #include <def.h> #include <print.h> +#include <sys.h> void main() { + print("\nA loaded!\n"); + sys0(SYS_HALT); while (1) { print("a"); } |