How would I store 8 ascii values into a register or a variable?
For instance I have these values in ascii
30 30 34 20 33 32 32 00
Which would be 004 322
80×86 architecture
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.
or you can do in the data segment
you can use the stack(LIFO) as well:
or to one register 8 byte = 8*8 bit = 64 bit:
EDIT: