up vote 3 down vote favorite
share [g+] share [fb]

I'm trying to port some assembly code written in Visual Studio into GNU inline assembly on Linux. The original code uses _emit which MSDN describes as a pseudo instruction and explains as:

The _emit pseudoinstruction is similar to the DB directive of MASM. You use _emit to define a single immediate byte at the current location in the current text segment. However, _emit can define only one byte at a time, and it can only define bytes in the text segment. It uses the same syntax as the INT instruction.

How can I do the same thing on Linux?

link|improve this question
feedback

1 Answer

up vote 6 down vote accepted

To emit byte 0x12 (for example), do:

asm __volatile__ (".byte 0x12");

Although, you might get surprising results with optimizations enabled.

link|improve this answer
+1, good point about optimizations. – Adam Rosenfield Apr 8 '09 at 19:41
Thanks! This worked out well. – samgrover Apr 8 '09 at 21:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.