aboutsummaryrefslogtreecommitdiffstats
path: root/src (follow)
Commit message (Expand)AuthorAgeFilesLines
* term+libc: batched write rendering - one tile render per write(), 2.3x linesuser2026-07-183-2/+133
* kernel: CGB double-speed mode - 2x everything (1.99x measured)user2026-07-184-6/+31
* term: latch SCY in VBlank - fix ring-scroll shear on live displaysuser2026-07-183-5/+25
* term: SCY ring-scroll - scroll writes ONE map row; OSK toggle is 212 cyclesuser2026-07-182-77/+112
* term: 3 more renderer wins - 10.9x scroll, 2.7x putc vs pre-cacheuser2026-07-181-101/+141
* term: cache tile attrs in COL_BUF's spare stride bytes (3.5x scroll)user2026-07-181-28/+38
* term: 7-color terminal (per-glyph fg+bg) + ANSI escapes; colorize ircuser2026-07-184-29/+549
* kernel: a real timer source (64 Hz tick IRQ) + uptime(1)user2026-07-187-6/+70
* kernel: dmesg-style boot spew before init spawnsuser2026-07-185-2/+330
* refactor: c/ -> usr/, compiled program blobs out of the source treeuser2026-07-181-31/+31
* net: reject out-of-order TCP segments (accept only seq == rcv_nxt, re-ACK dups)user2026-07-181-0/+46
* term: dark mode - black background, white text (OSK highlight inverts to match)user2026-07-182-12/+17
* irc: a bitchx/irssi-style IRC clientuser2026-07-171-0/+7
* net: SYS_POLLCON + larger console ring for link-injected inputuser2026-07-173-3/+19
* net: fix truncated TCP field offsets corrupting multi-segment recvuser2026-07-171-4/+10
* net: unbreak ping against hosts that intermittently drop ICMPuser2026-07-171-3/+54
* net: pump the network from the console wait (answer pings at the prompt)user2026-07-173-42/+85
* net: DHCP client - lease the IP at boot instead of hardcoding ituser2026-07-172-29/+75
* kernel: sys_sleep - a cooperative delay off the DIV timer (+ ping pacing)user2026-07-172-0/+44
* net: keep network packets out of the console (fixes shell garbage on netboot)user2026-07-172-0/+24
* net: TCP sockets in the kernel - a Game Boy fetches HTTP over real TCPuser2026-07-171-8/+678
* net: UDP sockets in the kernel + a DNS resolver (real hostname lookups)user2026-07-172-21/+328
* net: proper socket API in the kernel (SYS_NET) - no more SLIP in userlanduser2026-07-173-0/+756
* net: ping - GB-originated ICMP echo (a Game Boy pings the real internet)user2026-07-171-0/+7
* net: real IP stack, milestone A - ICMP echo (you can ping a Game Boy)user2026-07-171-0/+7
* net: chat client - async receive + OSK send over the link portuser2026-07-173-0/+31
* net: wget - real HTTP over the link port via the gatewayuser2026-07-171-0/+7
* net: SLIP framing over the link port + a host gateway (echo round-trip)user2026-07-173-0/+50
* pipe: PIPE_MAX 2->4 (5-stage pipelines) + fix cross-yield byte corruptionuser2026-07-171-9/+22
* kernel+sh: real anonymous pipes (concurrent, streaming, SIGPIPE)user2026-07-175-1/+256
* term: compute the OSK view offset from the cursor row (keep input visible)user2026-07-162-17/+33
* 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-163-12/+69
* osk: bind START to Enter (CR)user2026-07-161-0/+7
* sh: handle backspace in readline; prompt is now '#'user2026-07-161-1/+14
* osk: wrap the cursor around all four edgesuser2026-07-161-19/+27
* osk: toggle-able on-screen keyboard on the window layeruser2026-07-165-7/+411
* 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-162-102/+102
* term: 40-column text terminal on the CGB LCD (4x8 dynamic tiles)user2026-07-163-0/+482
* fs: reject open()/read() on a directory (EISDIR)user2026-07-161-0/+10
* fs rewrite stage 3: nested directories, paths, cwd (cd/mkdir/ls)user2026-07-165-36/+360
* fs rewrite stage 2: inodes + root directory (block-based, persistent)user2026-07-164-260/+616
* fs rewrite stage 1: persistent block device (bounce buffer, cart SRAM)user2026-07-164-1/+178
* jobs: background execution (&), non-blocking reap, spin demouser2026-07-162-0/+65
* kill + ps: implement SYS_KILL (pid 1 immortal) and a ps tooluser2026-07-164-3/+202
* shell: I/O redirection (>/<) and pipes (|); rewrite shell in Cuser2026-07-164-154/+193
* filesystem: a RAM FS (WRAMX) + ls/cat/save/rm; wc/head read filesuser2026-07-165-2/+486
* tools: wc, head, and an argc/argv demo (args) + libc.c helpersuser2026-07-161-0/+21