Omnimaga

Omnimaga => Completed => Our Projects => TI-Boy SE - Game Boy Emulator For TI-83+SE/84 => Topic started by: bwang on September 20, 2009, 02:16:38 pm

Title: Converter for Linux
Post by: bwang on September 20, 2009, 02:16:38 pm
Could someone give instructions (or a shell script) on how to convert ROMs under Linux?
Title: Re: Converter for Linux
Post by: DJ Omnimaga on September 20, 2009, 02:21:45 pm
/me summons Tribal or Simplethinker from the #omnimaga IRC channel

That might be handy for our non-Windoze users or for our future Linux users


Btw welcome here :)
Title: Re: Converter for Linux
Post by: Tribal on September 20, 2009, 02:33:01 pm
Welcome to Omnimaga bwang. I don't have a shell script, but I would be happy to give you instructions on how to do this(I might make a shell script in a bit, was thinking about it before but never got around to it).

What you need:
TI-Boy SE(of course ;))
Wabbitsign(need wine): Epic Linkage (http://www.revsoft.org/wabbitsign.zip)
A GameBoy Rom

After you have all that, throw wabbitsign into your 'makeapp' directory. Open up your terminal and 'cd' to your 'makeapp' directory. Then type in what you see below:
Code: [Select]
cat 1.bin >> app.bin
echo -n "MyGBName" >> app.bin
cat 2.bin >> app.bin
cat your_rom.gb >> app.bin
cat 3.bin >> app.bin
wine ./wabbitsign.exe app.bin makeapp.8xk
rm ./app.bin

Please keep in mind, the name you place in the 'echo' has to be exactly 8 characters long, or it will not compile and of course replace 'your_rom.gb' with the rom you wish to convert ;)

I'll whip up a script to automate this process and make life easier, until then you'll have to use this  way.

I hope this helps =D