summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* arch: i386: add basic keyboard driverDanny Holman2024-02-163-0/+176
* kernel: panic: add a variable that locks other CPUsDanny Holman2024-02-161-0/+3
* arch: i386: roll physical memory control into VMMDanny Holman2024-02-166-132/+107
* arch: i386: move GDT definitions to their own headerDanny Holman2024-02-161-0/+55
* arch: i386: multiboot: move arch-specific inits hereDanny Holman2024-02-161-13/+33
* arch: i386: move IRQ functions to PIC driverDanny Holman2024-02-163-18/+39
* arch: i386: move raw assembly calls to their own headerDanny Holman2024-02-162-13/+19
* kernel: mem: kmalloc should not call page allocationDanny Holman2024-02-162-15/+7
* kernel: add a panic functionDanny Holman2024-02-162-0/+14
* arch: i386: syscall.c: add functions that dump dataDanny Holman2024-02-162-1/+9
* arch: i386: gdt.c: fix a bug in userspace jumpDanny Holman2024-02-161-52/+12
* arch: i386: boot: ISR frame should not include ESPDanny Holman2024-02-161-2/+6
* Makefile: add flags to qemu that activate the serial portDanny Holman2024-02-161-1/+1
* arch: i386: add operations to control PIT timerDanny Holman2024-02-162-0/+38
* include: kernel: add the container_of.h fileDanny Holman2024-02-161-0/+10
* kernel: string: add more functions to string libraryDanny Holman2024-02-162-0/+69
* arch: i386: put framebuffer ops in own fileDanny Holman2024-02-164-99/+122
* arch: i386: kernel: the serial driver should be more POSIX-yDanny Holman2024-02-162-21/+27
* kernel: make kprintf print to a ring bufferDanny Holman2024-02-163-13/+75
* include: kernel: move list.h to a data struct directoryDanny Holman2024-02-161-7/+8
* arch: i386: alloc: remove erroneous halt instructionDanny Holman2023-11-261-1/+0
* arch: i386: make: add source filesv0.05Danny Holman2023-11-262-5/+15
* arch: i386: linker.ld: add references to the bitmapDanny Holman2023-11-261-0/+5
* kernel: list: add a linked-list implementationDanny Holman2023-11-261-0/+31
* kernel: mem: add a simple kmalloc implementationDanny Holman2023-11-262-0/+32
* arch: i386: paging: add a proper paging APIDanny Holman2023-11-262-0/+140
* arch: i386: alloc: add a physical memory managerDanny Holman2023-11-262-0/+56
* arch: i386: add multiboot supportDanny Holman2023-11-262-0/+127
* arch: i386: serial.c: make serial_writestring staticDanny Holman2023-11-261-1/+1
* arch: i386: tty.c: remove unneeded local variableDanny Holman2023-11-261-3/+4
* arch: i386: syscall.c: replace function calls with single switchDanny Holman2023-11-261-21/+9
* arch: i386: pic.c: finish implementing functions from pic.hDanny Holman2023-11-261-1/+3
* arch: i386: syscall.h: define some example system callsDanny Holman2023-11-261-5/+22
* arch: i386: pic.h: make register_irq_handler accessibleDanny Holman2023-11-261-0/+2
* arch: i386: pic.h: change all chars into uint8_tDanny Holman2023-11-261-1/+2
* arch: i386: idt.h: remove extern functionsDanny Holman2023-11-261-4/+1
* arch: i386: isr.s: create the irq stubsDanny Holman2023-11-261-3/+21
* arch: i386: idt.c: install the ISR handlersDanny Holman2023-11-261-47/+62
* arch: i386: idt.c: remove the irq number from handlerDanny Holman2023-11-261-1/+2
* arch: i386: idt.c: call the page fault handlerDanny Holman2023-11-261-3/+1
* arch: i386: idt.c: add a stopgap to halt_catch_fireDanny Holman2023-11-261-0/+1
* arch: i386: idt.c: remove unneeded define macrosDanny Holman2023-11-261-23/+1
* arch: i386: gdt.c: init the TSS before loading itDanny Holman2023-11-261-2/+5
* arch: i386: boot.s: define functions for page managementDanny Holman2023-11-261-0/+27
* arch: i386: boot.s: move C entry point to fileDanny Holman2023-11-261-10/+3
* arch: i386: boot: boot.sDanny Holman2023-11-261-8/+4
* arch: i386: make serial_writestring inlineDanny Holman2022-03-223-20/+15
* arch: i386: refactor the system call APIDanny Holman2022-03-225-11/+4
* Makefile: explicitly define CC variableDanny Holman2022-03-221-2/+4
* arch: i386: move non-critial files out of bootDanny Holman2022-01-219-91/+52