aboutsummaryrefslogtreecommitdiffstats
path: root/c (follow)
Commit message (Expand)AuthorAgeFilesLines
* 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-171-14/+42
* net: UDP sockets in the kernel + a DNS resolver (real hostname lookups)user2026-07-172-0/+94
* net: proper socket API in the kernel (SYS_NET) - no more SLIP in userlanduser2026-07-175-139/+86
* net: ping - GB-originated ICMP echo (a Game Boy pings the real internet)user2026-07-171-0/+100
* net: IP stack milestone B - UDP echo (pseudo-header checksum)user2026-07-171-30/+61
* net: real IP stack, milestone A - ICMP echo (you can ping a Game Boy)user2026-07-171-0/+47
* net: chat client - async receive + OSK send over the link portuser2026-07-173-1/+77
* net: wget - real HTTP over the link port via the gatewayuser2026-07-173-32/+58
* net: SLIP framing over the link port + a host gateway (echo round-trip)user2026-07-173-1/+60
* kernel+sh: real anonymous pipes (concurrent, streaming, SIGPIPE)user2026-07-174-12/+84
* term/osk: scroll region so the OSK never hides the input lineuser2026-07-161-0/+16
* sh: handle backspace in readline; prompt is now '#'user2026-07-161-1/+5
* fs: reject open()/read() on a directory (EISDIR)user2026-07-165-6/+8
* fs rewrite stage 3: nested directories, paths, cwd (cd/mkdir/ls)user2026-07-165-3/+77
* fs rewrite stage 2: inodes + root directory (block-based, persistent)user2026-07-164-7/+14
* fs rewrite stage 1: persistent block device (bounce buffer, cart SRAM)user2026-07-163-0/+29
* jobs: background execution (&), non-blocking reap, spin demouser2026-07-164-7/+38
* kill + ps: implement SYS_KILL (pid 1 immortal) and a ps tooluser2026-07-164-0/+47
* shell: I/O redirection (>/<) and pipes (|); rewrite shell in Cuser2026-07-163-16/+158
* filesystem: a RAM FS (WRAMX) + ls/cat/save/rm; wc/head read filesuser2026-07-168-21/+139
* 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-167-8/+89
* libc + CLI tools: a small C userlanduser2026-07-169-34/+102
* C toolchain: run SDCC-compiled C programs as gbos processesuser2026-07-165-0/+103