asm_book/section_1/funcs/f03.c
2022-05-20 09:33:04 -05:00

4 lines
No EOL
56 B
C

void func(long * p1, long * p2)
{
*p1 = *p1 + *p2;
}