summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2017-07-20added a virtual network driver interface, made the dummy RTL8139 driver a spe...Andreas Baumann
2017-07-20added links to memory managementAndreas Baumann
2017-07-20added a virtual keyboard driver interface, made the PS/2 keyboard a specializ...Andreas Baumann
2017-07-20kernel_panic while shutting down does not result in endless loops anymoreAndreas Baumann
2017-07-18added a virtual mouse driver interface, made the PS/2 mouse a specialization ...Andreas Baumann
2017-07-18reverted clang --no-inline flag and readded bug, I can not make clangAndreas Baumann
2017-07-18found clang bug, not the real reason but works for me nowAndreas Baumann
2017-07-18added -fno-inline to avoid clang 4.0.1 to break vsprintf with va_args when in...Andreas Baumann
2017-07-18added clang SSP functionsAndreas Baumann
2017-07-16added USB to qemuAndreas Baumann
2017-07-16fixed newline output in Linux stub in libc testsAndreas Baumann
2017-07-16move longjmp for kernel_panicAndreas Baumann
2017-07-16introduced classes of driver types (graphics, mouse, keyboard, network, etc.)Andreas Baumann
2017-07-16moved registering of mouse/keyboard interrupts into the driver activation ins...Andreas Baumann
2017-07-15started to make driver construtors similar (keyboard, mouse)Andreas Baumann
2017-07-15reworked driver init and vtable, taking the interrupt manager and the contextAndreas Baumann
2017-07-15...same for libc testsAndreas Baumann
2017-07-15added an OPT parameter to the build makefile, default is -O0Andreas Baumann
2017-07-15same for the graphical VGA driverAndreas Baumann
2017-07-15mouse and keyboard are now allocated driver pointersAndreas Baumann
2017-07-15added a dummy RTL8139 network driverAndreas Baumann
2017-07-15moved keyboard driver into the global kernel context (away from the stack)Andreas Baumann
2017-07-15added a better malloc testAndreas Baumann
2017-07-14added stats functions to memory manager, don't use internal membersAndreas Baumann
2017-07-14testing exit, not abort in libc testsAndreas Baumann
2017-07-14updated bug listAndreas Baumann
2017-07-14fixed some typos in cross compilation docuAndreas Baumann
2017-07-14tested cross-compilation also with clangAndreas Baumann
2017-07-14some notes on building and using cross compilers for gcc/tcc/pccAndreas Baumann
2017-07-14some linkage tweaking, the kernel is not linked against libssp (whichAndreas Baumann
2017-07-14removed stddef.h and limits.h (come with the compiler header files)Andreas Baumann
2017-07-14updated some docuAndreas Baumann
2017-07-13removed som kernel_panics in libcAndreas Baumann
2017-07-13added an exit functionAndreas Baumann
2017-07-13forgot to add test_malloc.cAndreas Baumann
2017-07-13added a simple test for malloc/freeAndreas Baumann
2017-07-13separated C library implementations with an OS_ABAOS define (for now),Andreas Baumann
2017-07-12removed test tasksAndreas Baumann
2017-07-12added segment_size to vga mode structure, using for memcpy in Z bufferAndreas Baumann
2017-07-10VGA Z-buffer is now dynamically allocated and freedAndreas Baumann
2017-07-09added a ld entry optionAndreas Baumann
2017-07-09back to O0 no optimizationAndreas Baumann
2017-07-09fixed the vga_refresh bug. the problem is under optimization theAndreas Baumann
2017-07-09setting exlicitely the CPU to a 486 in qemuAndreas Baumann
2017-07-09made kernel boot with optimizations on (clang), reason where theAndreas Baumann
2017-07-08forgot to set the backpointer to the interrupt manager (interrupts_t) in theAndreas Baumann
2017-07-08small adaptions around kernel_entry (docu, boot loader)Andreas Baumann
2017-07-08added dedicated kernel entry to avoid address reordering under compiler optim...Andreas Baumann
2017-07-05some optimization testing, all kind of weird stuff happeningAndreas Baumann
2017-07-05removed unneded volatile for text VIDEO_MEMORY (we should add the reference t...Andreas Baumann