• How to reserve some memory area in RAM?
    Hi, I am doing flash programming using IAP commands. In LPC datasheet, I am seeing, Flash programming commands use 16 B of RAM from 0x10089FF0 to 0x10089FFF. Applications making use of...
  • How to reserve some memory area in RAM?
    Hi, I am doing flash programming using IAP commands. In LPC datasheet, I am seeing, Flash programming commands use 16 B of RAM from 0x10089FF0 to 0x10089FFF. Applications making use of...
  • ARM Exception Levels remain same for all ARM architectures?
    Greetings, I would like to know that ARM Exception Levels remain same for all ARM architectures? If not kindly specify the resource where I can find more on individual ARM architectures exception...
  • ARM Exception Levels remain same for all ARM architectures?
    Greetings, I would like to know that ARM Exception Levels remain same for all ARM architectures? If not kindly specify the resource where I can find more on individual ARM architectures exception...
  • 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...