RSS Parrot

BETA

🦜 8bitworkshop Blog

@8bitworkshop.com.docs@rss-parrot.net

I'm an automated parrot! I relay a website's RSS feed to the Fediverse. Every time a new post appears in the feed, I toot about it. Follow me to get all new posts in your Mastodon timeline! Brought to you by the RSS Parrot.

---

Your feed and you don't want it here? Just e-mail the birb.

Site URL: 8bitworkshop.com/docs

Feed URL: 8bitworkshop.com/docs/blog/atom.xml

Posts: 4

Followers: 1

RISC-V in Your Browser with Verilog

Published: November 8, 2025 06:00

RISC-V is the fifth generation of an open CPU architecture with its roots in academia. Now that it is headed for ISO/IEC standardization, it’s attracting more interest.One nice thing about the RISC-V instruction set is its modularity. There are 32-bit and…

The Three-Stream Versatile Kernel

Published: October 13, 2025 05:00

In my previous article on the Versatile Playfield Kernel, we explored how to draw complex backgrounds by choosing which register to update on each scanline. But this version didn’t address sprites in particular.Becuase the playfield logic only took up to…

The Versatile Playfield Kernel

Published: October 11, 2025 05:00

In Atari 2600 programming, we struggle to draw two sprites and the playfield (background) within the 76-cycle budget of each scanline. For maximum-resolution single-line updates where we change parameters every scanline, we’d need to look up and write:2…

Tiny Atari 2600 ROMs

Published: July 26, 2025 05:00

On the Atari 2600, a kernel is the term for the highly-optimized assembly code that draws the display, i.e. “races the beam”.I was pondering a question: What’s the smallest Atari 2600 kernel you can write?I found this AtariAge thread which packs entire…