A89: Re: Porting Nintendo Games and Stuff


[Prev][Next][Index][Thread]

A89: Re: Porting Nintendo Games and Stuff




> Also, does
> anyone know if there is a version of the DoorsOS devel version that still
> includes the proper batch files for making an .89z file with a68k? (/me
> can't write batch files.)

Either use TI-GCC (the IDE can just compile the files by pressing F9, so no
need for batch files), or learn how to write a batch file.  If you are
familiar with MS-DOS commands, this is no problem.  A batch file is just a
set of commands executed one after another.  Putting "@ECHO OFF" at the
beginning turns off the displaying of the commands.  "ECHO xxx" will output
"xxx".  "PAUSE" will prompt for a key.  "CLS" will clear the screen.  "%1"
through "%9" represent the first nine parameters passed to the batch file
(parameters with spaces must be in quotation marks).  "IF EXIST filename
command" will execute "command" only if "filename" exists.  You can put a
"NOT" before "EXIST".  Typically, "command" will be "GOTO label", which
jumps to a label defined by ":label" somewhere in the file.  Any questions?
:-)

Writing a batch file with these commands is not really a problem, but you
might have to copy and rename files a lot.

Sebastian Reichelt




References: