summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* kernel: finish implementing string functionsDanny Holman2021-01-181-4/+38
| | | | | | Finish implementing the functions from string.h in string.c. Signed-off-by: Danny Holman <dholman@gymli.xyz>
* include: remove an include to the tty layer in ioDanny Holman2021-01-171-1/+0
| | | | | | Remove the include to the tty layer in io.h. Signed-off-by: Danny Holman <dholman@gymli.xyz>
* kernel: implement a basic printf functionDanny Holman2021-01-172-0/+82
| | | | | | Implement a basic printf function using primitives from the TTY library. Signed-off-by: Danny Holman <dholman@gymli.xyz>
* kernel: add main initialization functionsDanny Holman2021-01-171-0/+7
| | | | | | Add the main initialiazation functions within the main kernel directory. Signed-off-by: Danny Holman <dholman@gymli.xyz>
* kernel: add string.h implementationsDanny Holman2021-01-171-0/+24
| | | | | | Add implementations for functions declared in string.h. Signed-off-by: Danny Holman <dholman@gymli.xyz>
* arch: i386: add support for x86 processorsDanny Holman2021-01-175-0/+142
| | | | | | Add support for 32-bit x86 processors, i.e. the 80386 and above. Signed-off-by: Danny Holman <dholman@gymli.xyz>
* include: create basic C library functionsDanny Holman2021-01-172-0/+23
| | | | | | Create the basic C library functions for use inside the kernel. Signed-off-by: Danny Holman <dholman@gymli.xyz>
* Initial commitDanny Holman2021-01-175-0/+439
Signed-off-by: Danny Holman <dholman@gymli.xyz>