Hacker News
RISCBoy is an open-source portable games console, designed from scratch
194 points by mariuz
ago
|
31 comments
flopsamjetsam
|next
[-]
From the GitHub page:
> It is a Gameboy Advance from a parallel universe where RISC-V existed in 2001. A love letter to the handheld consoles from my childhood, and a 3AM drunk text to the technology that powered them.
jihadjihad
|root
|parent
[-]
Thank you to the author for writing a GitHub page in 2026 that is entirely devoid of emoji.
Dwedit
|next
|previous
[-]
The GBA was designed around having no cache. With a few exceptions (such as Internal RAM, Video RAM, IO registers, BIOS, OAM, Palettes), everything goes out to an external bus. Going out to an external bus with no cache will basically slow you down to 80s computer speeds. Fetching instructions from the cartridge ends up being around twice as fast as a GBC.
The way around that is using a cache, and sequentially fetching multiple words. Sequential fetches can be made faster, increasing throughput, and that can hide the latency if enough instructions/data gets cached.
I wonder how this system is designed, is it going to the memory bus for all fetches, or does it use a cache?
bananaboy
|next
|previous
[-]
Oh this is Luke Wren’s work. He’s an ASIC design engineer at Raspberry Pi. Amazing project, I love it!
mithro
|next
|previous
[-]
The design was taped out on the first wafer.space run (see https://github.com/wafer-space/ws-run1) but I have not heard if it actually worked or not.
sehugg
|next
|previous
[-]
The programmable scanline-buffer-based rendering pipeline described in the PDF is worth a read for fans of such things.
dmitrygr
|next
|previous
[-]
The author of this is one of the greatest minds of our time. While doing this is cool, he also designed the Hazard3 core in the RP2350 as well as the QSPI unit in it -- the only memory-mapped QSPI unit I've encountered so far that I've not been able to crash or hang.
haebom
|next
|previous
[-]
Is the greatest challenge in adopting this new hardware architecture the technology itself, or the lack of an existing developer ecosystem and software toolchains?
LukeShu
|next
|previous
[-]
I'm surprised to see that it's OK that he has opensource AHB/APB stuff in it--I'd avoided learning them too much about them assuming that they were ARM proprietary.
iFire
|previous
[-]
Does RISCBoy run Godot Engine? How can I make RISCBoy run Godot Engine?
ZiiS
|root
|parent
|next
[-]
This is a much smaller device then anyone has ever exported Godot to.
More practical would be to port https://github.com/gbdk-2020/gbdk-2020 so that https://github.com/chrismaltby/gb-studio could support it.
makapuf
|root
|parent
|next
|previous
[-]
Its not a computer, its a small device. You dont have many unknown peripheral you dont have other programs. The memory and peripherals are there, just use them. Heap is complicated ? Preallocate everything. A peripheral is not used ? Just leave it there. Security ? Of what ? Thats the appeal of those devices.
bananaboy
|root
|parent
|next
|previous
[-]
If you set up the RISCBoy toolchain and port it then yeah.