• Division
    Hi Can anyone tell me how to divide 49h/100h using DIV or any routine to divide 8bit/16bit Thanks Ravi
  • Division
    Hi, I'm Juan Manuel, I'm using the ADuC7026 with Keil: IDE-Version: µVision3 V3.23 Copyright (c) Keil Elektronik GmbH / Keil Software, Inc. 1995 - 2005 Tool Version Numbers: Toolchain...
  • 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 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...
  • long int division
    I need a 100% accurate division of any tow 32 bit numbers. So I am using the following code and the (/) operator. However I notice that results are not accurate when the Den (denominator) is shorter...