diff options
author | Marvin Borner | 2020-09-04 15:50:21 +0200 |
---|---|---|
committer | Marvin Borner | 2020-09-04 15:50:21 +0200 |
commit | b8f00b77e965c73a047e71193c8c6e2d7488f34d (patch) | |
tree | 168354a8cd9b8a69a2f06a09e8ce73aadd4e2521 /apps/init.c | |
parent | 15a8cb8fa64b12d6c0b65eafb226971cd66dc3cd (diff) |
Added mandelbrot demo and fpu driver
Diffstat (limited to 'apps/init.c')
-rw-r--r-- | apps/init.c | 5 |
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; } |