Content originally posted in LPCWare by bonystedt on Fri Feb 05 09:53:22 MST 2010
Sorry, but I think you at Code_Red Support have not understood what I want.
I 'm interested in – if possible with LPCXpresso IDE – seeing what the assembler compiler generates, when I have written the instructions myself!
I already been looking the whole week long at compiler output from code written in C in the examples accompanying the LPCXpresso pack, so I have seen enough of what the compiler generates, thank you.
I just want to know, if possible with LPCXpresso IDE, how to do it myself.
I have tried this from “whiteco's” post to “Audiomonster” 01-04-2010, 03:46 PM :
<<Now I try to do the same, directly.
<<void test(unsigned int a, unsigned int b)
<<{
<< asm(“.syntax unified”);
<< asm(“muls r3,r2;”);
<<}
But it did not build for me, either!
Any ideas from Code_Red Support?
By the way, where to read more about __asm() or asm() commands?