Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-04-11 | move print_bytes to font.c | Lizzy Fleckenstein | |
2024-04-11 | bootinfo struct | Lizzy Fleckenstein | |
2024-01-09 | ls: fix unit printing | Lizzy Fleckenstein | |
2024-01-09 | refactor heap code and add heap debugging | Lizzy Fleckenstein | |
2024-01-09 | rename some functions to not use standard names | Lizzy Fleckenstein | |
this avoids confusion when some of those functions differ subtly from their standard versions. free -> kfree realloc -> krealloc malloc -> kmalloc rationale: kmalloc() behaves different from malloc() in that it will never return NULL. it will panic on OOM. try_kmalloc behaves like the usual malloc. memcpy -> lmemcpy memcpy_r -> rmemcpy rationale: by design, lmemcpy() and rmemcpy() allow memory areas to overlap. the 'l' and 'r' indicate the direction of the copy operation. | |||
2023-12-27 | store pci enumeration results | Lizzy Fleckenstein | |
2023-12-23 | fix choose command range | Lizzy Fleckenstein | |
2023-12-23 | splash texts | Lizzy Fleckenstein | |
2023-12-22 | add rotating cheese | Lizzy Fleckenstein | |
This adds the Cheese3D graphics api and makes the cheese command display a cheese rotating in 3d as a demo | |||
2023-12-21 | rtc clock driver | Kimapr | |
2023-12-21 | debug: add register watchdog | Lizzy Fleckenstein | |
to detect potential changes that ISRs might make to registers | |||
2023-12-21 | add cheese command | Lizzy Fleckenstein | |
2023-12-21 | add maths library and print_dbl | Lizzy Fleckenstein | |
2023-12-21 | add QEMU shutdown command | Lizzy Fleckenstein | |
2023-12-20 | love: add rng | Lizzy Fleckenstein | |
2023-12-19 | ls command | Lizzy Fleckenstein | |
2023-12-19 | improve debugging | Lizzy Fleckenstein | |
2023-12-19 | uname command | Lizzy Fleckenstein | |
2023-12-19 | love command | Lizzy Fleckenstein | |
2023-12-19 | add clear command | Lizzy Fleckenstein | |
2023-12-19 | remove shell_run_file | Lizzy Fleckenstein | |
2023-12-19 | keyboard driver and threads | Lizzy Fleckenstein | |
* PS/2 keyboard driver * interactive shell * move away from \0 terminated strings to sized slices * coroutine threads and IRQ queues |