6 Consider the following set of assembly instructions:
addl %ecx, %edx;
cmpl %ebx, %edx;
jge .L4
where %ecx stores the value C, %ebx the value B and %edx the value D. What C comparison is implemented by this assembly code?
Select one:
a. if (c + d >= b) then { … } else { .L4 }
b. if (c + d > b) then { … } else { .L4 }
c. if (c + d < b) then { … } else { .L4 }
d. None of these.
i think the answer id d.