Genesis ROM converter.


NssOne

I am One with the DarkNss
Joined
Jun 11, 2003
Messages
1,108
Age
41
Location
RIGHT BEHIND YOU! Scary, huh?
Website
www.gp32us.com
I do have the one that converts the roms one at a time, but what I would really like is something that convert mutliple selected files. I have a nice collection of roms but they are all in .bin format and to convert all of those one by one is rather tedious. And I don't even like the Rom Converter I found. It only lets you do one rom at a time, then you you have to restart the program.
 
Are you using a dos command-line based application?

if you, look at the FOR command that DOS/Windows has.

For example:

C:\ROMS\>for %i in (*.bin) do echo %i

will echo each .BIN file independantly for you.

so...

C:\ROMS\>for %i in (*.smd) do smd2bin %i

should run the smd2bin exe for each .SMD, converting it to a BIN.

Make a backup of you directory/roms just incase you accidently stuff things up.

Oh, and if you place it the line in a batch file, you need and extra % ... e.g %%i

Check the help FOR /? for more.

-- EDIT ---
Just read you post again, and realised it probably aint a dos cmdline app, considering you have to close it everytime... oh well.
 
Back
Top