Something I forgot to mention is this...something that was a bit confusing at first due to general lack of documentation. Keep in mind, I'm trying to keep this simple for everyone; most of it will go right under your head, heheh.
When you're trying to assemble an ASM file (extension .asm) into an ELF, using asm5900.exe from the PS2Dev environment, you have to know the proper syntax. What I do, rather than using the command prompt (accessible by going through the Start Menu, choosing Run, typing cmd, and hitting Enter) is simply write a batch file (open Notepad, save it as extension .bat) with something like
@echo off
asm5900 YourASMFile.asm -o:YourELF.elf
...place a copy of asm5900.exe in the same folder as my ASM file and the new batch file, and double-click the batch file. Since you're not really using DOS, there are no 8:3 filename limitations. Call files whatever you want.
When you're trying to assemble an ASM file (extension .asm) into an ELF, using asm5900.exe from the PS2Dev environment, you have to know the proper syntax. What I do, rather than using the command prompt (accessible by going through the Start Menu, choosing Run, typing cmd, and hitting Enter) is simply write a batch file (open Notepad, save it as extension .bat) with something like
@echo off
asm5900 YourASMFile.asm -o:YourELF.elf
...place a copy of asm5900.exe in the same folder as my ASM file and the new batch file, and double-click the batch file. Since you're not really using DOS, there are no 8:3 filename limitations. Call files whatever you want.
Comment