summaryrefslogtreecommitdiff
path: root/arch/i386 (unfollow)
Commit message (Expand)AuthorFilesLines
2024-06-21arch: i386: paging: do the recursive paging trickDanny Holman4-77/+88
2024-06-21arch: boot: allocate a few pages at startupDanny Holman1-11/+18
2024-05-29arch: i386: asm: make flush_gdt availableDanny Holman1-0/+2
2024-05-29arch: i386: paging: make a temp map in init_page_tableDanny Holman1-3/+4
2024-05-29arch: i386: paging: remove ref to non-existant headerDanny Holman1-1/+0
2024-05-29arch: i386: remove last refs to moved headersDanny Holman4-27/+13
2024-05-29arch: i386: fix several bugs in paging subsystemDanny Holman5-122/+108
2024-05-27arch: i386: pmem: refactor the physical MMDanny Holman2-65/+41
2024-05-27arch: i386: update all files to use the new libkDanny Holman6-24/+22
2024-05-27arch: i386: add a spinlock implementationDanny Holman3-10/+75
2024-05-27arch: i386: pass entry page directory to entry funcDanny Holman3-24/+27
2024-05-27drivers: create a subdir just for driver codeDanny Holman5-331/+0
2024-03-28kernel: add a basic thread schedulerDanny Holman2-0/+30
2024-03-28arch: i386: kernel: implement a kmalloc functionDanny Holman2-0/+67
2024-03-28arch: i386: kernel: add mostly finished PFA and paging systemDanny Holman10-65/+216
2024-02-24kernel: string: add a strcpy functionDanny Holman2-11/+6
2024-02-24arch: i386: cleanup everything and reorganizeDanny Holman17-225/+192
2024-02-24arch: i386: move jump_userspace to its own fileDanny Holman2-18/+30
2024-02-16arch: i386: add basic keyboard driverDanny Holman3-0/+176
2024-02-16arch: i386: roll physical memory control into VMMDanny Holman6-132/+107
2024-02-16arch: i386: move GDT definitions to their own headerDanny Holman1-0/+55
2024-02-16arch: i386: multiboot: move arch-specific inits hereDanny Holman1-13/+33
2024-02-16arch: i386: move IRQ functions to PIC driverDanny Holman3-18/+39
2024-02-16arch: i386: move raw assembly calls to their own headerDanny Holman2-13/+19
2024-02-16arch: i386: syscall.c: add functions that dump dataDanny Holman2-1/+9
2024-02-16arch: i386: gdt.c: fix a bug in userspace jumpDanny Holman1-52/+12
2024-02-16arch: i386: boot: ISR frame should not include ESPDanny Holman1-2/+6
2024-02-16arch: i386: add operations to control PIT timerDanny Holman2-0/+38
2024-02-16arch: i386: put framebuffer ops in own fileDanny Holman3-88/+122
2024-02-16arch: i386: kernel: the serial driver should be more POSIX-yDanny Holman1-13/+13
2023-11-26arch: i386: alloc: remove erroneous halt instructionDanny Holman1-1/+0
2023-11-26arch: i386: make: add source filesv0.05Danny Holman1-0/+3
2023-11-26arch: i386: linker.ld: add references to the bitmapDanny Holman1-0/+5
2023-11-26arch: i386: paging: add a proper paging APIDanny Holman2-0/+140
2023-11-26arch: i386: alloc: add a physical memory managerDanny Holman2-0/+56
2023-11-26arch: i386: add multiboot supportDanny Holman2-0/+127
2023-11-26arch: i386: tty.c: remove unneeded local variableDanny Holman1-3/+4
2023-11-26arch: i386: syscall.c: replace function calls with single switchDanny Holman1-21/+9
2023-11-26arch: i386: pic.c: finish implementing functions from pic.hDanny Holman1-1/+3
2023-11-26arch: i386: syscall.h: define some example system callsDanny Holman1-5/+22
2023-11-26arch: i386: pic.h: make register_irq_handler accessibleDanny Holman1-0/+2
2023-11-26arch: i386: pic.h: change all chars into uint8_tDanny Holman1-1/+2
2023-11-26arch: i386: idt.h: remove extern functionsDanny Holman1-4/+1
2023-11-26arch: i386: isr.s: create the irq stubsDanny Holman1-3/+21
2023-11-26arch: i386: idt.c: install the ISR handlersDanny Holman1-47/+62
2023-11-26arch: i386: idt.c: remove the irq number from handlerDanny Holman1-1/+2
2023-11-26arch: i386: idt.c: call the page fault handlerDanny Holman1-3/+1
2023-11-26arch: i386: idt.c: add a stopgap to halt_catch_fireDanny Holman1-0/+1
2023-11-26arch: i386: idt.c: remove unneeded define macrosDanny Holman1-23/+1
2023-11-26arch: i386: gdt.c: init the TSS before loading itDanny Holman1-2/+5