diff --git a/README.md b/README.md index 6d44ed1..c0fb79f 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,10 @@ Alternatively, visit the forums (not very active): https://essence.handmade.netw To support development, you can donate to my Patreon: https://www.patreon.com/nakst. +## Building + +See `help/Building.md` for a description of how to build and test the system. + ## Features Kernel @@ -55,7 +59,3 @@ Desktop * Software vector renderer with complex animation support. * Tabbed windows. * Multi-lingual text rendering and layout with FreeType and Harfbuzz. - -## Building - -See `help/Building.md` for a description of how to build and test the system. diff --git a/kernel/main.cpp b/kernel/main.cpp index 0c68fec..d35bd19 100644 --- a/kernel/main.cpp +++ b/kernel/main.cpp @@ -25,7 +25,6 @@ void KernelMain(uintptr_t) { desktopProcess = ProcessSpawn(PROCESS_DESKTOP); // Spawn the desktop process. DriversInitialise(); // Load the root device. ProcessStart(desktopProcess, EsLiteral(K_DESKTOP_EXECUTABLE)); // Start the desktop process. - KernelPanic("Test\n"); KEventWait(&shutdownEvent, ES_WAIT_NO_TIMEOUT); // Wait for a shutdown request. ProcessTerminateAll(); // Terminate all user processes. FSShutdown(); // Flush file cache and unmount filesystems.