I need to add a 32-bit number to a 48-bit number. What I want to do is perform the first 32 bit arithmetic in C as follows:
Wv.A += Wv.B ;
And to propagate the carry to the most significant word as follows:
__asm { ADDC WORD Wv+10,#0 }
Unfortunately…