Transformer Language Model Runs Locally on Stock Game Boy Color
A developer has gotten a real transformer language model running on a stock Game Boy Color (GBC) — no phone, PC, Wi-Fi, or cloud inference involved. The entire inference pipeline runs locally on the handheld hardware.
Key Details
- Model: Andrej Karpathy's TinyStories-260K, converted to INT8 weights with fixed-point math — no floating point support required.
- Hardware: Stock Game Boy Color + EZ Flash Junior flash cart + microSD card.
- Build toolchain: GBDK-2020, producing an MBC5 Game Boy ROM.
- Memory architecture: Model weights live in bank-switched cartridge ROM. The KV cache is stored in cartridge SRAM because the GBC's work RAM is tiny.
- Prompt entry: On-device using D-pad/buttons and an on-screen keyboard.
- Inference pipeline: Prompt tokenization on the GBC, then transformer prefill + autoregressive generation with KV caching.
- Performance: Extremely slow; output is gibberish due to heavy quantization and mathematical approximations, but the core transformer loop works.
- Source code: Available on GitHub at github.com/maddiedreese/gbc-transformer. A large portion of the code was built using Codex AI.
The project demonstrates that even severely resource-constrained hardware can execute transformer inference with aggressive quantization and memory management tricks. It's a proof-of-concept, not a practical LLM, but it's a technical curiosity worth examining.
📖 Read the full source: r/LocalLLaMA
👀 See Also
Governments Are Betting Big on AI — The Economist Warns of Risks
The Economist argues that governments are making a dangerous bet on the AI boom, risking economic and security pitfalls. Key concerns: over-reliance on tech giants, hasty regulation, and potential job displacement.

Hospital CEO Claims AI Ready to Replace Radiologists
The CEO of America's largest public hospital system says he's prepared to replace radiologists with AI, according to a Radiology Business article that generated significant discussion on Hacker News with 83 comments.

Autoresearch Pushes Qwen3.5-397B to 20.34 tok/s on M5 Max via SSD Streaming
A developer achieved 20.34 tokens/second inference speed for the 209GB Qwen3.5-397B model on a MacBook Pro M5 Max with 128GB RAM using SSD streaming and 36 systematic experiments. The result represents a 2x speedup over the M5 Max baseline and 4.67x over the original M3 Max result.

Claude Code v2.1.163: Version Pinning, Plugin List, Hook Improvements, and Critical Bug Fixes
Claude Code v2.1.163 adds requiredMinimumVersion/requiredMaximumVersion managed settings, /plugin list command, hook context improvements, and fixes for claude -p hangs, Windows EEXIST, and Bazel/EDR workflows.