How do you translate these lines from Linux assembly to Intel assembly?
pushl cb_queue
pushl %eax
popl (%eax)
jg .FOR_end0
.FOR_end0:
sete (%esp)
pushl $.rte_isqrt
.rte_isqrt:
.string "isqrt returns no value"
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.
Running intel2gas -g (the switch reverses the direction of translation) produces:
(It’s normally called AT&T syntax, not Linux assembly.)