Pokémon Emerald now runs natively on the Raspberry Pi Pico 2, specifically the WeAct Studio Core2350B board, which costs approximately $6. The full game, including code, graphics, maps, and music, is stored as an 11.7 MB image executed directly from flash memory. This implementation does not use an emulator.
The port recompiled the game's decompiled ARMv4T code to the Cortex-M33 architecture of the RP2350B. The Game Boy Advance's video hardware is reimplemented in software and handled by the microcontroller's second core. Core 0 manages game logic, while Core 1 handles PPU rendering, outputting to a 240x160 RGB565 framebuffer which is then upscaled to 640x480p60 for HDMI output.
The game maintains a locked 60 frames per second in most scenes, with the exception of one specific intro cinematic. It supports real buttons, HDMI output, and saves that persist through power cycles. The port is playable from start to finish, including booting, intro sequences, new game starts, overworld navigation, battles, and saving.
The port leveraged an existing WebAssembly (WASM) port of Pokémon Emerald, which had already abstracted away dependencies on real GBA hardware. This allowed the developers to adapt the existing code by adding MCU-specific implementations rather than re-doing the entire de-hardwaring process. The GBA memory map structure was preserved in the port.
✨ This summary was generated by AI from the outlets' reporting listed below. It is not independently verified and may contain errors — check the original sources. How BrevFeed works →
One email each morning: the day's tech stories, clustered across outlets and summarized. No account needed.
One email a day. Unsubscribe in one click, any time.
Spend a few minutes, get the whole day. Every topic's top stories in one hands-free rundown — listen, watch, or read the transcript.
▶ Play today's briefNew every morning, and the back catalogue is archived by date.
Pokémon Emerald has been successfully ported to run natively on a $6 Raspberry Pi Pico 2 (RP2350B) microcontroller, achieving 60 frames per second with HDMI output and persistent saves. This was accomplished by recompiling the game's decompiled ARMv4T code to Cortex-M33 and implementing the Game Boy Advance's video hardware in software on the second core.