aboutsummaryrefslogtreecommitdiff
path: root/apps/init.c
diff options
context:
space:
mode:
authorMarvin Borner2020-08-10 16:01:04 +0200
committerMarvin Borner2020-08-10 16:01:04 +0200
commit54ece9141e9ad8cfb59f2c8315c84b8e247275f7 (patch)
treecc578f577c296719bf869e8e6816322367e96004 /apps/init.c
parentf42aa2d995704c748c370d3e7b3684512361bc09 (diff)
Started elf parser/loader
Diffstat (limited to 'apps/init.c')
-rw-r--r--apps/init.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/init.c b/apps/init.c
index 813021b..5879c1e 100644
--- a/apps/init.c
+++ b/apps/init.c
@@ -1,5 +1,6 @@
// MIT License, Copyright (c) 2020 Marvin Borner
+#include <conv.h>
#include <def.h>
#include <mem.h>
#include <print.h>
@@ -9,7 +10,10 @@ void main()
{
print("Init loaded.\n");
- printf("%x %d %b\n ABC %s", 42, 42, 42, "BAUM");
+ char *buf = malloc(10);
+ conv_base(42, buf, 8, 0);
+ printf("\n----\nTEST: %s\n----\n", buf);
+ /* printf("%x %d %b\n ABC %s", 42, 42, 42, "BAUM"); */
sys0(SYS_LOOP);
/* sys1(SYS_EXEC, (int)"/a"); */
while (1) {