For the following asm will anything show up in the actual
code besides the ud2 opcode (0x0f0b) ? Is there any good references
for inline assembly besides "Brennan's Guide to Inline Assembly" ?
Thanks
#define BUG() \
__asm__ __volatile__( "ud2\n" \
"\t.word %c0\n" \
"\t.long %c1\n" \
: : "i" (__LINE__), "i" (__FILE__))
>
>For the following asm will anything show up in the actual
>code besides the ud2 opcode (0x0f0b) ? Is there any good references
>for inline assembly besides "Brennan's Guide to Inline Assembly" ?
>Thanks
>
What else than an asm book and the gcc info 'handbook'
(/usr/share/info/...) do you need?
Jan Engelhardt
--