Re: A89: Re: Game Programming -- Pure Assembly vs. TI-GCC?
[Prev][Next][Index][Thread]
Re: A89: Re: Game Programming -- Pure Assembly vs. TI-GCC?
>
> Hmm, OK... I'll probably try using TI-GCC then & see how it works.
>
An interesting option is gcc is the -S flag. Just type :
gcc -S myfile.c
and you will obtain a file named myfile.s that contains the assembly code
corresponding to your program. This way you can see how gcc produce its
code.
You may use it along the -Ox flag to see what is produced with differents
optimisations level.
--
Jean Canazzi
jcanazzi@cybercable.fr
http://www.multimania.com/bloozed/bigdyna.html
References: