
my (x86) hobby kernel is called "tawagoto" ("****" in Japanese, or so Google translate says). I've been working on it for a month now.
tawagoto currently has:
a very simple shell
a ps/2 keyboard driver
a physical memory allocator (using a bitmap)
framebuffer output
interrupts (including irq0 and irq1)
a timer
I'll post the source code on github tomorrow.
I used almost no ai working on it (only used it for the "shiftmap" in the keyboard driver. it's very simple anyway, just {'character', 'character when holding shift'} repeating)
tawagoto is also pretty light, only being around ~30KB
what do you think?

