Flash carts are a popular aftermarket accessory for Game Boys. A flash cart allows you to store and play many different games from the same cartridge! One of the most popular flash cart brands is EverDrive, who make flash carts for many different retro game systems.

I myself own the EverDrive X5 for the Game Boy Advance, and the Everdrive X3 for the original Game Boy. Both devices are fantastic, but I was disappointed that I could not change the colors of the menu on the devices to add some personalized flair. So I set out to change that!

Original GBA Theme

Custom GBA Theme

The first step to achieving this was to reverse engineer the menu code enough to change the colors on the screen. To do this, I had to research the opcodes and memory mapping used by the assembly language for both the Game Boy (GB) and Game Boy Advance (GBA). I highly recommend looking at the GB Pandocs if you’re interested in learning more about GB programming.

I also had to spend time learning about the color format the Game Boys used. Turns out both devices use BGR555 colors. BGR colors are essentially a 15-bit code - 5 bits each for blue, then red, and green. After some research I was able to write a tool to give me valid color values that could be injected into the menu ROM.

Once I had some clues what the hexadecimal for the palette writing instructions looked like, and how to come up with the replacement colors, I was able to use a hex editor to search the ROM for code that looked like it was color related. My progress was to search, replace the color with bright red, and load it on the EverDrive to see if the change worked. Eventually I was able to map out all the colors the menus used for both the GB and GBA EverDrives!

Screenshot of GBA Theme Editor

After creating a map of where each color was stored, I was ready to create websites to enable easy theme creation! Starting with the color tool I created above, I created two very similar Vue.js powered websites that let you customize all the colors with a live preview, then write out an IPS file to be applied as a patch to the original menu ROM. Both websites are quite basic, but function nice enough to be a pleasant experience.

The websites share a good bit of code with my previous Game Boy related website, the Nintendo Power ROM Editor. I was able to reuse some code that makes the in browser hex-editing of the menu ROM a lot more straightforward, saving me lots of time. The trickiest part of the website build was determining the clearest way to present the editing constraints, as the GBA model in particular has some quirks in regards to what colors the editor is and isn’t able to change.

I shared the websites around the Game Boy and EverDrive communities, and it’s been really cool to see people making custom themes and personalizing their devices further! Check them out below!

EverDrive GBA Theme Editor

EverDrive GB Theme Editor