Glenn9999,
Thank you for the correction. Can you help me convert an If statement to assembly language.
The if statement is:
if (value > 100) and (count <= 10)
then
subtract 5*count from value;
end if;
This is what I have:
cmp value, 100
jne
cmp ecx, 10
jl
mov edx
This is where I left...