This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Is it possible to have a 64bit Integer addition in C?

Is it possible to have a 64bit or 96 Integer addition in C?

Parents
  • I just think i have to divide my 64bit long word into a low and high 32bit value.
    First the low addition, then the high addition. But how to manage the carry from low to high? I need a very fast routine.
    In Assembler i could use the ADD command for low value, then ADC for high word.

    But in C?

Reply
  • I just think i have to divide my 64bit long word into a low and high 32bit value.
    First the low addition, then the high addition. But how to manage the carry from low to high? I need a very fast routine.
    In Assembler i could use the ADD command for low value, then ADC for high word.

    But in C?

Children