• Division
    Hi Can anyone tell me how to divide 49h/100h using DIV or any routine to divide 8bit/16bit Thanks Ravi
  • division by zero
    Hi all, Does anybody know what does the system do when a division by zero occurs? We are running RTX 51 ful kernel on Philips' 80c51, 80c552 and 80c660 controllers. Thanks, Laurent.
  • Division with NEON
    Note: This was originally posted on 30th September 2011 at http://forums.arm.com Hi. I have 4 unsigned 16bit values into a Dn register (or 8 into a Qn register) [v1] [v2] [v3] [v4] I'm looking for the...
  • remainer of division
    C has one shortcoming that keeps bothering me. When converting a number from binary to decimal, we typically do something like : int n,d; for (i=0; i<5; ++i) { d=n%10; n/=10; display_area...
  • division remainder seems to be wrong
    Hi all, I need to recover the remainder of a division but no matter what I try the result comes out as 1. so far I have tried: u8 a = 10 u8 b = 3 u8 r; r = a % b; r = fmod(a,b) res ...