#include <stdint.h>
#include "platform.h"
#include "primitiveTypes.h"
Go to the source code of this file.
◆ softfloat_add256M()
Definition at line 44 of file s_add256M.c.
46{
47 unsigned int index;
50
52 carry = 0;
53 for (;;) {
54 wordA = aPtr[index];
55 wordZ = wordA + bPtr[index] + carry;
56 zPtr[index] = wordZ;
58 if ( wordZ != wordA ) carry = (wordZ < wordA);
60 }
61
62}
#define indexWordLo(total)
#define indexWordHi(total)
unsigned __int64 uint64_t