Quote Originally Posted by Legolas
5 - All you need to do is to convert the pcx file in .s by bin2s utility, then convert it to .o:
Code:
c:/fpc4nds/bin/arm-nds/bin2s data/ball.pcx > ball.pcx.s
c:/fpc4nds/bin/arm-nds/arm-nds-as -o ball.pcx.o ball.pcx.s
I tryied it with an 3d example before do the question,but didn't show the image:
devkitPro\Graphics\3D\Misc\Ortho
Batch:
Code:
C:\FPC4NDS\bin\arm-nds\bin2s drunkenlogo.pcx>drunkenlogo.pcx.s  
C:\FPC4NDS\bin\arm-nds\arm-nds-as -o drunkenlogo.pcx.o drunkenlogo.pcx.s 
C:\FPC4NDS\bin\arm-nds\ppcarmnds --gc-sections -Tnds main.pp
C:\FPC4NDS\bin\arm-nds\ndstool -c Ortho.nds -9 main.nef.bin
Now I Tryied with this example:devkitPro\Graphics\2D\Complex_2D
and it's working fine ops:

Thanks for the answers... Again