aboutsummaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* net: DHCP client - lease the IP at boot instead of hardcoding ituser2026-07-1710-34/+360
* kernel: sys_sleep - a cooperative delay off the DIV timer (+ ping pacing)user2026-07-177-2/+67
* net: keep network packets out of the console (fixes shell garbage on netboot)user2026-07-174-0/+28
* tools: netboot - interactive networked emulator (TUN + NAT + --serial-sock)user2026-07-171-0/+128
* net: wget-by-hostname + shared DNS resolver (a Game Boy fetches example.com)user2026-07-173-96/+109
* net: TCP sockets in the kernel - a Game Boy fetches HTTP over real TCPuser2026-07-172-22/+720
* net: UDP sockets in the kernel + a DNS resolver (real hostname lookups)user2026-07-176-22/+424
* net: proper socket API in the kernel (SYS_NET) - no more SLIP in userlanduser2026-07-179-140/+872
* net: ping - GB-originated ICMP echo (a Game Boy pings the real internet)user2026-07-174-1/+109
* net: real routed IP via SLIP<->TUN bridge (you can *ping* a Game Boy)user2026-07-171-0/+127
* net: IP stack milestone B - UDP echo (pseudo-header checksum)user2026-07-172-31/+88
* net: real IP stack, milestone A - ICMP echo (you can ping a Game Boy)user2026-07-175-36/+190
* net: chat client - async receive + OSK send over the link portuser2026-07-179-5/+127
* net: wget - real HTTP over the link port via the gatewayuser2026-07-177-54/+112
* net: SLIP framing over the link port + a host gateway (echo round-trip)user2026-07-179-3/+184
* pipe: PIPE_MAX 2->4 (5-stage pipelines) + fix cross-yield byte corruptionuser2026-07-172-10/+23
* kernel+sh: real anonymous pipes (concurrent, streaming, SIGPIPE)user2026-07-1711-15/+349
* term: compute the OSK view offset from the cursor row (keep input visible)user2026-07-163-17/+34
* term/osk: view-offset scroll region (lossless backlog on OSK toggle)user2026-07-162-62/+35
* term/osk: scroll region so the OSK never hides the input lineuser2026-07-166-13/+87
* osk: bind START to Enter (CR)user2026-07-161-0/+7
* sh: handle backspace in readline; prompt is now '#'user2026-07-162-2/+19
* osk: wrap the cursor around all four edgesuser2026-07-161-19/+27
* osk: toggle-able on-screen keyboard on the window layeruser2026-07-167-7/+412
* syscall: mirror console output to the LCD terminaluser2026-07-163-2/+18
* term: cursor + O(1) line scrollinguser2026-07-162-209/+455
* font: full mixed-case + punctuation glyph set (not uppercase-only)user2026-07-163-197/+208
* term: 40-column text terminal on the CGB LCD (4x8 dynamic tiles)user2026-07-166-1/+604
* fs: reject open()/read() on a directory (EISDIR)user2026-07-166-6/+18
* fs rewrite stage 3: nested directories, paths, cwd (cd/mkdir/ls)user2026-07-1613-49/+463
* fs rewrite stage 2: inodes + root directory (block-based, persistent)user2026-07-1610-308/+697
* fs rewrite stage 1: persistent block device (bounce buffer, cart SRAM)user2026-07-1610-6/+243
* jobs: background execution (&), non-blocking reap, spin demouser2026-07-169-9/+135
* kill + ps: implement SYS_KILL (pid 1 immortal) and a ps tooluser2026-07-1610-5/+260
* shell: I/O redirection (>/<) and pipes (|); rewrite shell in Cuser2026-07-1610-184/+386
* filesystem: a RAM FS (WRAMX) + ls/cat/save/rm; wc/head read filesuser2026-07-1616-29/+697
* libc: option parsing (hasflag/optval); wc -l/-w/-c, head -n Nuser2026-07-164-15/+47
* tools: wc, head, and an argc/argv demo (args) + libc.c helpersuser2026-07-1611-21/+144
* libc + CLI tools: a small C userlanduser2026-07-1613-44/+214
* C toolchain: run SDCC-compiled C programs as gbos processesuser2026-07-1610-1/+165
* shell working: fix syscall ABI (trap clobbers HL) + documentuser2026-07-162-3/+27
* wip: sys_read + serial console shell (read-store bug under investigation)user2026-07-164-72/+179
* kernel: complete the process lifecycle (exit/wait/reap + bank free list)user2026-07-168-80/+353
* kernel: implement exec()user2026-07-166-27/+145
* kernel: implement fork()user2026-07-157-29/+273
* gbos scaffold: working cooperative microkernel (verified ABAB in emulator)user2026-07-1512-0/+878