27 lines
509 B
Batchfile
27 lines
509 B
Batchfile
|
|
"%NITROSYSTEM_ROOT%/tools/win/bin/sndarc.exe" RayMus.sarc
|
|
|
|
@if errorlevel 1 goto err
|
|
|
|
call "%NITROSYSTEM_ROOT%/tools/win/bin/MakeSoundPlayer.bat" RayMus.sdat
|
|
|
|
@if errorlevel 1 goto err
|
|
|
|
"%CWFOLDER_NITRO%/ARM_Tools/Command_Line_Tools/BinTOELF.exe" RayMus.sdat -aligndata 32 -output RayMus.o -section .rodata -symbolname RayMus_sdat
|
|
|
|
@if errorlevel 1 goto err
|
|
|
|
@goto ok
|
|
|
|
:ok
|
|
@echo =======================
|
|
@echo Convert is SUCCESS !!!
|
|
@echo =======================
|
|
@goto end
|
|
|
|
:err
|
|
@pause
|
|
|
|
:end
|
|
|