translate the following c code into IA32 assembly code with step by step nstructions please //use %eax for r, %ebx for x
Posted: Sun Jul 10, 2022 11:25 am
translate the following c code into IA32 assembly code withstep by step nstructions please
//use %eax for r, %ebx for x, and ecx for y
r = y-x;
if (x>y)
r = x-y;
//use %eax for r, %ebx for x, and ecx for y
r = y-x;
if (x>y)
r = x-y;