Live data from Hacker News

Choosing tools for Game Boy development

gbdev.io

31–38 of 38 posts

Re: Choosing tools for Game Boy development

#31
post #15
post #3

Recently got an EZ Flash Jr to get into playing homebrew gameboy games on my (unmodded) GB pocket from middleschool. Itch.io has more fun GB games than i'll ever have time to play and its felt like a really positive community. https://itch.io/search?q=gameboy Then while bored in a meeting at work I started looking into coding a hello world for it and quickly found my way to some Assembly tutorials which Ive never had…

IMO C for GameBoy dev is a non starter. It's so different from other platforms that you really just want to control the instructions directly. Say you type "a * 5" that would just be one instruction on a regular cpu but it must be some more expensive function on a GameBoy. Even bit shifting can only shift one bit at a time, 1<<8 is 8 instructions. When programming in ASM it's usually that more instructions is slower…

Plenty of games are being written in C for the Game Boy on a regular basis.

Just a few polished examples of that: https://tangramgames.itch.io/tobu-tobu-girl-deluxe

https://user0x7f.itch.io/black-castle

https://binji.itch.io/porklikegb

https://pocketpixel.design/super-jetpak-dx-game-boy-rom.html

https://aiguanachein.itch.io/powa

https://thegreatgallus.itch.io/cavern-mvm-9

https://user0x7f.itch.io/gunship

https://www.infinitygbc.com/

ASM will tend to be more efficient, especially if written by someone with experience and skill, but that isn't enough to prevent other tools from being used successfully. It's described in much more detail in the linked article.

Re: Choosing tools for Game Boy development

#32
post #3

Recently got an EZ Flash Jr to get into playing homebrew gameboy games on my (unmodded) GB pocket from middleschool. Itch.io has more fun GB games than i'll ever have time to play and its felt like a really positive community. https://itch.io/search?q=gameboy Then while bored in a meeting at work I started looking into coding a hello world for it and quickly found my way to some Assembly tutorials which Ive never had…

Gameboy C (and later Gameboy Advance) was actually a big part of discovering programming for me (after QBASIC). I didn't have a great idea of what I was actually doing - lots of copy-pasting, changing stuff around, cargoing, trial-and-error.. But I made stuff happen and it was super exciting.

It's kind of amazing that even 20y+ later, a lot of the resources, tools and even websites are the same as back then. The community is just great.

Reading the OP, I think you won't need much more actually - it's not very complicated, which is part of the attraction compared to modern SE... Just start playing around and see where it takes you. Look at code from other people for inspiration.

I can´t recall what were the main sites for classic GB but gbadev.org was a gold mine and seems to still be around and kicking.

Re: Choosing tools for Game Boy development

#34
post #8

Earlier quoted context omitted.

> … is there a GameBoy dev zeitgeist … It’s not just you. - Retro development is “in”, a ton of the kids from the 1990s and 2000s are seasoned programmers with some free time now, or enthusiastic hobbyists. - The tools have gotten a lot better. RGBDS, GB Studio, emulators with debugging capabilities, etc. - Game Boy development in particular is an excellent entry point. The system design is simply excellent, and it f…

I'm wondering if there is anything that can be converted into a commercial adventure. I see a few retro options here: - develop games for popular retro platforms. So far Nox Archaist for Apple ][ is the most successful example. - develop a new hardware as platform. So far I have seen a lot of projects such as Arduboy but none of them is successful enough AFAIK.

Of course you can. There's a good amount of homebrew out there for various retro systems and a good chunk of those will sell you the ROM to download or even offer a physical cart. If you drive enough hype you can even make money porting it to newer platforms, e.g Pier Solar which was originally a homebrew Sega Genesis game but now has ports to several modernish platforms like PS3, PS4 and Steam.

We've also seen "new" retro systems like the Playdate.

Re: Choosing tools for Game Boy development

#35

Earlier quoted context omitted.

I'm wondering if there is anything that can be converted into a commercial adventure. I see a few retro options here: - develop games for popular retro platforms. So far Nox Archaist for Apple ][ is the most successful example. - develop a new hardware as platform. So far I have seen a lot of projects such as Arduboy but none of them is successful enough AFAIK.

Of course you can. There's a good amount of homebrew out there for various retro systems and a good chunk of those will sell you the ROM to download or even offer a physical cart. If you drive enough hype you can even make money porting it to newer platforms, e.g Pier Solar which was originally a homebrew Sega Genesis game but now has ports to several modernish platforms like PS3, PS4 and Steam. We've also seen "new"…

For carts for retro platforms, wouldn't Nintendo/Sega sue for commercial activities? Just curious.

Re: Choosing tools for Game Boy development

#36

Earlier quoted context omitted.

Of course you can. There's a good amount of homebrew out there for various retro systems and a good chunk of those will sell you the ROM to download or even offer a physical cart. If you drive enough hype you can even make money porting it to newer platforms, e.g Pier Solar which was originally a homebrew Sega Genesis game but now has ports to several modernish platforms like PS3, PS4 and Steam. We've also seen "new"…

For carts for retro platforms, wouldn't Nintendo/Sega sue for commercial activities? Just curious.

Depending on the platform, easy enough to bypass lockout. The traditional way to lock out old consoles is to require you to include some material with a Nintendo copyright or trademark on the cartridge. That way, Nintendo can sue unlicensed game developers for copyright or trademark infringement. Various systems of this kind have been bypassed without the use of infringing material.

The lockout circuit on the NES, for example, can be bypassed by sending it a negative voltage spike. You can put the circutry on your cartridge.

Re: Choosing tools for Game Boy development

#37

Earlier quoted context omitted.

For carts for retro platforms, wouldn't Nintendo/Sega sue for commercial activities? Just curious.

Depending on the platform, easy enough to bypass lockout. The traditional way to lock out old consoles is to require you to include some material with a Nintendo copyright or trademark on the cartridge. That way, Nintendo can sue unlicensed game developers for copyright or trademark infringement. Various systems of this kind have been bypassed without the use of infringing material. The lockout circuit on the NES, fo…

The trademark method of lockout is also probably not legal at least in some parts of the world. See Sega vs. Accolade.

Re: Choosing tools for Game Boy development

#38
post #3

Recently got an EZ Flash Jr to get into playing homebrew gameboy games on my (unmodded) GB pocket from middleschool. Itch.io has more fun GB games than i'll ever have time to play and its felt like a really positive community. https://itch.io/search?q=gameboy Then while bored in a meeting at work I started looking into coding a hello world for it and quickly found my way to some Assembly tutorials which Ive never had…

Gameboy C (and later Gameboy Advance) was actually a big part of discovering programming for me (after QBASIC). I didn't have a great idea of what I was actually doing - lots of copy-pasting, changing stuff around, cargoing, trial-and-error.. But I made stuff happen and it was super exciting. It's kind of amazing that even 20y+ later, a lot of the resources, tools and even websites are the same as back then. The comm…

Too late to add a reply to the person asking, but way back then this was a goldmine: https://www.devrs.com/gb/
Post reply on HN