From a9574e12b91959bdb51226f82b97c82ca4e1a878 Mon Sep 17 00:00:00 2001 From: Minijackson Date: Thu, 6 Aug 2020 09:15:16 +0200 Subject: kernel: remove test code sample --- kernel.md | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/kernel.md b/kernel.md index 3e7a457..bb16a62 100644 --- a/kernel.md +++ b/kernel.md @@ -144,20 +144,3 @@ Running the kernel ------------------ TODO: link the QEMU article - - -```c -#include - -/** - * \brief The entry point of the program. - * - * \param argc the number of command line arguments - * \param argv the command line argument, as an array of NULL terminated strings - */ -int main(int argc, char** argv) { - for(int i = 0; i < argc; ++i) { - printf("Argument %i: %s\n", i, argv[i]); - } -} -``` -- cgit v1.2.3