aboutsummaryrefslogtreecommitdiff
path: root/apps/a.c
diff options
context:
space:
mode:
authorMarvin Borner2020-08-09 18:50:17 +0200
committerMarvin Borner2020-08-09 18:50:17 +0200
commitb933a9955a2a1eb0ab32b232e23d24dc207cba46 (patch)
treecb5871cb861a1e7eee8900a2ed81a9e33a3ce130 /apps/a.c
parent544acef0986977ef9d3a05d87bb9f55163b1280a (diff)
Added syscall templates
Diffstat (limited to 'apps/a.c')
-rw-r--r--apps/a.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/a.c b/apps/a.c
index 040a454..5fef114 100644
--- a/apps/a.c
+++ b/apps/a.c
@@ -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");
}