How I make an addition of two numbers of 32 bits in Assembly using ADC?

link|improve this question
Which bitness is the processor? – sharptooth Jan 17 '11 at 13:57
I need to Add two numbers in assembly using debug, the program must accept 32 bits. – ebed Jan 17 '11 at 14:03
Please give an example of this operation. – ebed Jan 17 '11 at 14:07
feedback

2 Answers

Assuming an 8 bit processor with ld, st, adc and add and index registers X & Y which point to the values to be added, result replaces *X:

ld 3,X
add 3,Y   ; The first add is without carry
st 3,X
ld 2,X
adc 2,Y   ; subsequent adds propagate carry.
st 2,X
ld 1,X
adc 1,Y
st 1,X
ld 0,X
adc 0,Y
st 0,X
link|improve this answer
feedback

ADC stands for "ADd with Carry", in fact it is like add two values and add again the value of the carry flag:

adc eax,ebx

is like:

add eax, ebx
add eax, cf

or:

add eax, ebx
jnc dont_add
inc eax

dont_add:
...
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.