Question: Assembly Code x86: We have an 8 bytes width number, so we save the lower bytes in EAX and higher bytes in EDX: for example
Assembly Code x86:
We have an 8 bytes width number, so we save the lower bytes in EAX and higher bytes in EDX: for example number 1234567812131415hwill be saved like EAX = 12131415h, EDX = 12345678h. Write a general-purpose program that is able to reverses any number8 bytes width number that its least significant bytes are in EAX and its most significant bytes are save din EDX . Note: Reverse means that our sample number becomes: EAX=78563412hand EDX = 15141312h.Consider this sample call:
.data
EAX:12131415h
EDX:12345678h
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
