• 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...
  • Assembly language
    Dear All, I am very much new to the keil assembler and c language usage in embedde programming. Can anybody help me to sort out some of my problems ? 1. Can I access any of the flags using C language...
  • 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.
  • 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...