mov eax, ptr_to_num1 ; little endian
mov ebx, ptr_to_num2 ; little endian
xor ecx, ecx
xor edx, edx
clc
bytes_addition:
mov dl, byte [eax+ecx] ; byte from shortest
adc dl, byte [ebx+ecx]
mov byte [eax+ecx], dl
inc ecx
cmp ecx, 4 ; counter,
jl bytes_addition
考虑在
EAX:4F2252FF(大端)
EBX:00DFFC00(大端)
这个加法的结果是错误的:50024fff(大端)。它应该是 50024eff。看起来进位标志受到了影响,但为什么呢?