aboutsummaryrefslogtreecommitdiffstats
path: root/src (unfollow)
Commit message (Expand)AuthorFilesLines
2026-07-17net: DHCP client - lease the IP at boot instead of hardcoding ituser2-29/+75
2026-07-17kernel: sys_sleep - a cooperative delay off the DIV timer (+ ping pacing)user2-0/+44
2026-07-17net: keep network packets out of the console (fixes shell garbage on netboot)user2-0/+24
2026-07-17net: TCP sockets in the kernel - a Game Boy fetches HTTP over real TCPuser1-8/+678
2026-07-17net: UDP sockets in the kernel + a DNS resolver (real hostname lookups)user2-21/+328
2026-07-17net: proper socket API in the kernel (SYS_NET) - no more SLIP in userlanduser3-0/+756
2026-07-17net: ping - GB-originated ICMP echo (a Game Boy pings the real internet)user1-0/+7
2026-07-17net: real IP stack, milestone A - ICMP echo (you can ping a Game Boy)user1-0/+7
2026-07-17net: chat client - async receive + OSK send over the link portuser3-0/+31
2026-07-17net: wget - real HTTP over the link port via the gatewayuser1-0/+7
2026-07-17net: SLIP framing over the link port + a host gateway (echo round-trip)user3-0/+50
2026-07-17pipe: PIPE_MAX 2->4 (5-stage pipelines) + fix cross-yield byte corruptionuser1-9/+22
2026-07-17kernel+sh: real anonymous pipes (concurrent, streaming, SIGPIPE)user5-1/+256
2026-07-16term: compute the OSK view offset from the cursor row (keep input visible)user2-17/+33
2026-07-16term/osk: view-offset scroll region (lossless backlog on OSK toggle)user2-62/+35
2026-07-16term/osk: scroll region so the OSK never hides the input lineuser3-12/+69
2026-07-16osk: bind START to Enter (CR)user1-0/+7
2026-07-16sh: handle backspace in readline; prompt is now '#'user1-1/+14
2026-07-16osk: wrap the cursor around all four edgesuser1-19/+27
2026-07-16osk: toggle-able on-screen keyboard on the window layeruser5-7/+411
2026-07-16syscall: mirror console output to the LCD terminaluser3-2/+18
2026-07-16term: cursor + O(1) line scrollinguser2-209/+455
2026-07-16font: full mixed-case + punctuation glyph set (not uppercase-only)user2-102/+102
2026-07-16term: 40-column text terminal on the CGB LCD (4x8 dynamic tiles)user3-0/+482
2026-07-16fs: reject open()/read() on a directory (EISDIR)user1-0/+10
2026-07-16fs rewrite stage 3: nested directories, paths, cwd (cd/mkdir/ls)user5-36/+360
2026-07-16fs rewrite stage 2: inodes + root directory (block-based, persistent)user4-260/+616
2026-07-16fs rewrite stage 1: persistent block device (bounce buffer, cart SRAM)user4-1/+178
2026-07-16jobs: background execution (&), non-blocking reap, spin demouser2-0/+65
2026-07-16kill + ps: implement SYS_KILL (pid 1 immortal) and a ps tooluser4-3/+202
2026-07-16shell: I/O redirection (>/<) and pipes (|); rewrite shell in Cuser4-154/+193
2026-07-16filesystem: a RAM FS (WRAMX) + ls/cat/save/rm; wc/head read filesuser5-2/+486
2026-07-16tools: wc, head, and an argc/argv demo (args) + libc.c helpersuser1-0/+21
2026-07-16libc + CLI tools: a small C userlanduser1-3/+68
2026-07-16C toolchain: run SDCC-compiled C programs as gbos processesuser1-0/+13
2026-07-16shell working: fix syscall ABI (trap clobbers HL) + documentuser1-1/+5
2026-07-16wip: sys_read + serial console shell (read-store bug under investigation)user3-72/+177
2026-07-16kernel: complete the process lifecycle (exit/wait/reap + bank free list)user6-76/+325
2026-07-16kernel: implement exec()user4-25/+118
2026-07-15kernel: implement fork()user5-27/+249