diff options
author | Marvin Borner | 2020-08-15 14:21:52 +0200 |
---|---|---|
committer | Marvin Borner | 2020-08-15 14:21:52 +0200 |
commit | 32b8722128dfb4ca9e814940a23c2b22a283bb12 (patch) | |
tree | 80c881a7717dc129fd11baaf98cd8b226fd30c67 /apps/a.c | |
parent | 162c84cfe6b4652bae213776944b910390553d41 (diff) |
Added some syscall wrappers
Diffstat (limited to 'apps/a.c')
-rw-r--r-- | apps/a.c | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -2,13 +2,11 @@ #include <def.h> #include <print.h> -#include <sys.h> void main() { - print("\nA loaded!\n"); - sys0(SYS_LOOP); + print("\nA loaded.\n"); while (1) { - print("a"); + print("A"); } } |