Hello, I would like to find a source code in C (or assembler for microcontroller 8051) in order to execute some long division ( 32 bits by 32 bits). Do you know where i can find this function? Thank you kaoru
In C:
unsigned long a, b, c; a = 987654321L; b = 123123123L; c = a / b;
Thank you, the problem with this: it calls the library of the compiler and i don't want to call it. So i need another possibility. Do you have another idea? Kaoru
it calls the library of the compiler and i don't want to call it. If so do not use "C". Compiler library calls are inherent to C I know of no compiler without. Erik
View all questions in Keil forum