惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

H
Help Net Security
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 【当耐特】
Microsoft Azure Blog
Microsoft Azure Blog
Google DeepMind News
Google DeepMind News
Apple Machine Learning Research
Apple Machine Learning Research
有赞技术团队
有赞技术团队
Y
Y Combinator Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
爱范儿
爱范儿
L
LangChain Blog
IT之家
IT之家
酷 壳 – CoolShell
酷 壳 – CoolShell
MongoDB | Blog
MongoDB | Blog
Hugging Face - Blog
Hugging Face - Blog
G
Google Developers Blog
T
Tailwind CSS Blog
Engineering at Meta
Engineering at Meta
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
宝玉的分享
宝玉的分享
博客园 - 三生石上(FineUI控件)
D
DataBreaches.Net
Recent Announcements
Recent Announcements
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More

Hacker News: Show HN

PurrrrrFocus: Pomodoro Timer App - App Store Workflow Engine — Multi-Step Orchestration for Bun RapidPhoto: Pro Photo Editor App - App Store GitHub - DheerG/swarms: Achieve extraordinary results with claude code across a variety of tasks SPICE simulation → oscilloscope → verification with Claude Code — Lucas Gerads Show HN: VCoding – A 5 MB native Windows IDE with no dynamic dependencies Show HN: LLMs don't hallucinate because they're bad at math, it's the format GitHub - Agent-FM/agentfm-core: AgentFM is a peer-to-peer network that turns everyday computers into a decentralized AI supercomputer. AgentFM lets you run massive AI workloads directly across a global mesh of idle CPUs and GPUs. Show HN: Tracking Top US Science Olympiad Alumni over Last 25 Years GitHub - Potarix/agent-hub: One place to talk to all your agents Show HN: Runtime security for AI agents(injection,tool abuse, data exfiltration) GitHub - dubeyKartikay/lazyspotify: Terminal Spotify client for macOS and Linux GitHub - the-banana-tool/king-louie: Easy to use GUI Personal AI Assistant. Win/Linux/Mac. Show HN I made my vacation rental bookable by AI agents–no Airbnb, 0% commission GitHub - basteez/jsf-autoreload: maven plugin to enable hot reload on jsf projects uvm32/hosts/host-gdbstub at main · ringtailsoftware/uvm32 GitHub - labsai/EDDI: Config-driven engine that turns JSON into production-grade AI agents. Multi-agent orchestration, 12+ LLM providers, MCP/A2A protocols, RAG, persistent memory, and enterprise compliance (EU AI Act, GDPR, HIPAA). Built on Quarkus. GitHub - glitchnsec/fortyone-oss: AI Executive Assistant Platform Quickstart | Alien GitHub - muxshed/shed: One stream in, or many. Every destination, simultaneously. No cloud middleman, no per-channel fees, no limits. GitHub - ocrbase-hq/ocrbase: 📄 PDF/IMG ->.MD/JSON Document OCR API for PaddleOCR and GLMOCR. Self-hostable. GitHub - impactjo/home-memory: MCP server that lets your AI assistant remember everything about your home. GitHub - Sets88/dbcls: DbCls is a powerful terminal database client that supports various databases GitHub - neptun2000/heor-agent-mcp GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh RollQuation: Math Puzzles - Apps on Google Play GitHub - dropbox/witchcraft Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis GitHub - opentalon/opentalon: OpenTalon is an open-source platform built from the ground up in Go as a robust alternative to OpenClaw LinkedIn™ 职位抓取工具 - Chrome 应用商店
Snake in Hardware | Simten
Charles Harris · 2026-06-16 · via Hacker News: Show HN

Pixels & Memory

The screen is just memory. One byte per pixel across an 8×8 grid, and setting a byte to 1 lights that pixel up. The catch: the game has to write pixels while the display reads them, at the same time. A DualPortRAM gives us exactly that, two independent windows into one block of memory. Port A is where game logic reads and writes; port B feeds the Screen, which scans the addresses to draw the grid.

Addresses run left to right, top to bottom: 0 is top-left, 7 is top-right, 63 is bottom-right. The pattern below draws a border.

Toggle write-enable, set an address and data, then Tick to write a pixel; the HexDisplay shows what reads back. Snake runs this same cycle every frame.


From Coordinates to Pixels

The snake moves on a 2D grid, but the framebuffer is a flat array of 64 bytes. We convert (X, Y) to a linear address: address = (Y « 3) + X.

Multiplying by 8 is a left shift by 3, and in hardware a constant shift costs zero gates. It’s just wiring. Each bit of Y connects three places higher, the low three bits tied to zero. The only real gate is the final Adder for X.

Change X and Y below. At (3, 2) you get address 19, row 2 column 3.


Decoding Player Input

Arrow keys produce scan codes: Up 72, Down 80, Left 75, Right 77. The circuit turns these into movement deltas deltaX and deltaY, each −1, 0, or +1.

Four Comparators check the code against each direction. Their outputs feed a Mux tree that picks the delta: Left sets deltaX to 255 (−1 in unsigned 8-bit), Right sets it to 1, otherwise 0. deltaY works the same for Up and Down.

Set the key code below to 72, 75, 77, or 80 and watch the two delta displays flip between −1, 0, and +1.


Moving a Pixel

Now make a pixel move. Two Registers hold the head position, headX and headY, both starting at 4. Each tick adds the deltas to get the next position.

The grid wraps: walk off the right edge and you reappear on the left. That comes for free by keeping only the lowest 3 bits of each coordinate, which forces it back into the 0–7 range. Column 7 + 1 wraps to 0; column 0 − 1 wraps to 7 (0 − 1 = 255, and 255 & 0b111 = 7). The part doing it is a BitSlice, and there’s no edge-case check anywhere; the wrap falls out of the arithmetic.

The wrapped coordinates become a pixel address (Y×8+X) written to the framebuffer. Flip enable on, set a direction code, and tick to walk the pixel across the screen.


Multi-Step Operations

A RAM port does one thing per cycle: read or write, at one address. But moving the snake needs four memory operations: read the tail’s address, clear that pixel, write the new head to the body buffer, draw the new head pixel. So we run four phases.

A 2-bit register counts the phase, ticking 0 → 1 → 2 → 3 and back to 0. It only holds two bits, so it wraps after 3 on its own (a BitSlice keeping the low two bits). Comparators watch the count and switch on the right RAM operation for each phase.

Toggle enable and tick to watch the counter cycle; each LED marks its phase. In the full game, the four ticks make one complete “game step.”


Eating Food

When the head lands on the food, the snake grows by one segment and the food respawns. To catch that, compare head X to food X and head Y to food Y. If both match, it’s a hit.

Two Comparators produce equality flags; an And gate combines them into a collision signal that drives a “grow” flag, 1 on a hit and 0 otherwise.

In the full game, grow suppresses the tail for one step: the head advances, the tail stays, so the snake gets one longer. Match the coordinates below (or don’t) and watch the collision LED.


The Full Snake Game

Everything from the sections above is one circuit now: framebuffer, addressing, the phase pipeline, collision detection, the lot. The full Snake circuit is about 300 lines of TypeScript, compiled and running in your browser.

The body is a circular buffer of pixel addresses in RAM 64–127. The four phases: phase 0 reads the tail address, phase 1 clears the tail pixel, phase 2 writes the new head address, phase 3 draws the new head. Eating food suppresses the tail clear, so the snake grows.

In case you want to play again…

Loading Snake game circuit...

Fair warning: it has bugs. The snake can turn back the way it came and run straight into itself, and you’ll find other rough edges if you go looking. That’s part of the charm of building a game out of gates instead of code.

Want to take it apart? Open the whole circuit in the editor to trace every wire, change it, and break it however you like.


From Browser to FPGA

The same TypeScript you’ve been poking at runs on silicon too. Export it to Verilog, synthesize it, and it runs on an actual FPGA. Here it is on a ULX3S (Lattice ECP5), drawing to a monitor over HDMI, steered with the board’s buttons.

The Snake circuit running on a ULX3S FPGA, drawn on a monitor over HDMI
The same circuit from the demo above, synthesized onto a ULX3S (ECP5) and running over HDMI.

This isn’t a Verilog rewrite of Snake. The game logic and framebuffer are byte-for-byte the circuit you just played, and a CI check fails the build if the browser version and the bitstream ever drift apart.

The video is generated logic too, no display chip in the path. A TMDS encoder turns each pixel into the 10-bit DVI signaling the monitor expects. That, plus the pixel clock and button inputs, is plain Verilog wrapped around the generated core, the same plumbing any ULX3S video project uses. The game is the generated part; this is just the wiring to get it on a screen.

The flow is open the whole way: Verilog → Yosys (synth_ecp5) → nextpnr → ecppack → bitstream. About 100 nodes of logic, and nextpnr closes timing with plenty of headroom over the 25 MHz the design actually runs at.

Run it on your own board

Got an FPGA? The Snake core is plain Verilog, so it synthesizes for any board. The repo has a complete ULX3S (ECP5) build to copy from, plus a README on running it there and porting it elsewhere: you swap the wrapper, the constraints, and the toolchain target, while the game logic stays the same.