How do I define a procedure cal, for example, fabs in MASM?
fabs PROC
...
fabs END
gives me an error, because fabs is a built-in instruction name.
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.
I didn’t find an option for MASM (
/Cp,/Cx,/Cudon’t seem to help). But I found a workaround for TASM:Can be compiled as
tasm.exe /ml fa.asm.fabswill appear in the object file and listing as the symbol name. Listing: