summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2017-10-29 11:47:05 +0100
committerAndreas Baumann <mail@andreasbaumann.cc>2017-10-29 11:47:05 +0100
commit24de320bb1d63beefd5bc89c97b4ad727d8e05e7 (patch)
tree983b85b1687293ea74cb3c1db5019c0135da7c28 /src
parentb066771bb1ce294353b373dca3aee277b5588dde (diff)
downloadabaos-24de320bb1d63beefd5bc89c97b4ad727d8e05e7.tar.gz
abaos-24de320bb1d63beefd5bc89c97b4ad727d8e05e7.tar.bz2
some docu fixes
Diffstat (limited to 'src')
-rw-r--r--src/kernel/entry.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kernel/entry.c b/src/kernel/entry.c
index d0e75a7..e85460a 100644
--- a/src/kernel/entry.c
+++ b/src/kernel/entry.c
@@ -1,11 +1,11 @@
#include "kernel.h"
// must be first entry in kernel.bin (0x8800) as stage 2 of
-// the boot loader expects the entry point to b here!
+// the boot loader expects the entry point to be here!
//
// compilers (at least gcc) mess with the order of functions when
// compiling with optimization levels, so kernel_main ends up somewhere
-// in the first compilation unit. I didn't find an elegand way (but for
+// in the first compilation unit. I didn't find an elegant way (but for
// an ld script with custom section and some compiler specific attributes
// how to solve this issue). This solution here is sort of a nice
// workaround working no matter what the compilers try to do (of course