From b8f00b77e965c73a047e71193c8c6e2d7488f34d Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Fri, 4 Sep 2020 15:50:21 +0200 Subject: Added mandelbrot demo and fpu driver --- apps/init.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'apps/init.c') 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; } -- cgit v1.2.3