Thank you to anyone who has already donated - your generous donations helped make three months of treatment possible.

My brother Nate continues to fight stage IV Hodgkin's lymphoma. He's just 31, with a wife and baby girl. They have no active income (since he's been unable to return to work), no insurance, and cannot afford the treatment he needs. Nate and his family need your help. Please consider a donation, every dollar helps. Thanks.


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* calculate the 32-bit product of unsigned 16-bit value op16 and 32-bit value op32 */
#define MULU16_32(op16, op32) \
({ \
    unsigned t1, r; \
    asm ( \
        "mulu   %[a], %[b]   \n" \
        "swap.w %[b], %[b]   \n" \
        "sts    macl, %[r]   \n" \
        "mulu   %[a], %[b]   \n" \
        "sts    macl, %[t1]  \n" \
        "shll16 %[t1]        \n" \
        "add    %[t1], %[r]  \n" \
        : [r]  "=&r" (r),    \
          [t1] "=&r" (t1),   \
          [t2] "=&r" (t2),   \
        : [a]  "r"   (op16), \
          [b]  "r"   (op32), \
    ); \
    r; \
})