Search found 1 match

by crazyjoe
Fri Nov 20, 2015 6:36 pm
Forum: GBDev
Topic: Carillon player example not working
Replies: 3
Views: 3443

Re: Carillon player example not working

Here's what you need to import just the song and player from the .gb file - you chop off the first 0x4000 (16K or 16384) bytes. If you're on OSX or a *nix system, you can use dd to do this like so: dd if=fruitless.gb of=fruitless.bin bs=1k skip=16 That will take the source ("if") file and ...