aboutsummaryrefslogtreecommitdiff
path: root/apps/init.c
diff options
context:
space:
mode:
authorMarvin Borner2020-09-04 15:50:21 +0200
committerMarvin Borner2020-09-04 15:50:21 +0200
commitb8f00b77e965c73a047e71193c8c6e2d7488f34d (patch)
tree168354a8cd9b8a69a2f06a09e8ce73aadd4e2521 /apps/init.c
parent15a8cb8fa64b12d6c0b65eafb226971cd66dc3cd (diff)
Added mandelbrot demo and fpu driver
Diffstat (limited to 'apps/init.c')
-rw-r--r--apps/init.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/init.c b/apps/init.c
index 072e24e..01eb47d 100644
--- a/apps/init.c
+++ b/apps/init.c
@@ -11,7 +11,8 @@ int main(int argc, char **argv)
// TODO: Fix GPF if file doesn't exist
int wm = exec("/wm", "wm", argv[1], NULL);
- int test = exec("/window", "test", NULL);
+ /* int test = exec("/window", "test", NULL); */
+ int mandelbrot = exec("/mandelbrot", "mandelbrot", NULL);
- return wm + test;
+ return wm + mandelbrot;
}