How can I get VC inliner assembler to accept something like:
__asm
{
call L1
db "Hello",0
L1:
nop
nop
}
Or I have to use _emit 0xxNNh all the way?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can’t use data directives in inline assembly.
Check out http://msdn.microsoft.com/en-us/library/h70hd396.aspx for explanation.