Battery-free Game Boy (2020)
freethegameboy.info
Battery-free Game Boy (2020)
1–10 of 170 posts
Re: Battery-free Game Boy (2020)
#2Re: Battery-free Game Boy (2020)
#3This will be worth billions of dollars in a post war apocalypse when electricity no longer exists.
Re: Battery-free Game Boy (2020)
#4Re: Battery-free Game Boy (2020)
#5Re: Battery-free Game Boy (2020)
#6I did have the "frequent power failures". Props to the team on fixing this :)
Re: Battery-free Game Boy (2020)
#7When I wrote mine, something I ran into was realizing that often the CPU and PPU are just doing the same thing over and over and over. If only I could cache all that work.
For example, you don’t modify the previous frame. You have to draw the entire frame every time, writing sprites from OAM memory every time. Sometimes games do clever stuff here for effects, but a lot of the time you’re just drawing the same stuff. Like Tetris is almost completely a routine of drawing almost entirely the same graphics every time. Most of the cycles and OAM writes are just juggling sprites to draw the same layout every time.
I documented the heck out of the PPU because it gave me the second most grief (sound being the worst by far) if you are curious: https://github.com/ablakey/gameboy/blob/master/src/guest/sys... (goodness I’m proud of this project. Don’t tell my boss. He’ll want this level of documentation at work ;) )
Re: Battery-free Game Boy (2020)
#8When I was a kid I had a toy electronics kit and one of the circuits was an AM radio that worked without batteries. A normal radio station signal is strong enough to drive a pair of earbuds without any additional power. Since then I've always wondered if you could harvest that same radio energy to power other things without batteries, maybe even a Game Boy. There's electromagnetic radiation in the air all around us.…
That's how passive RFID tags work. The tag has a tiny little computer, and you hold it near a thing that emits an electric field that energizes it.
Re: Battery-free Game Boy (2020)
#9This will be worth billions of dollars in a post war apocalypse when electricity no longer exists.
Re: Battery-free Game Boy (2020)
#10Looks like they used an existing emulator and this was mostly a hardware and memory integrity experiment. I’d love to see this approached from the perspective of “how clever can we get with the emulator itself to save power?” When I wrote mine, something I ran into was realizing that often the CPU and PPU are just doing the same thing over and over and over. If only I could cache all that work. For example, you don’t…