• Specifying the start location of the Main() routine.
    I am using a Goal VRS1000 chip that allows for in-system programming. The ISP program is located at the end of the Flash Memory area. Location 0000h must contain FFh which directs the PC to the beginning...
  • LPC2388: Cannot return to main after RTC interrupt
    Hi I have activated RTC Alarm interrupt in LPC2388 but after entering the first interrupt, it doesn't exit from the interrupt. I used Jlink to watch where is code is going and noticed after finishing...
  • main return type is int, why
    I am using lpc1317, cortex M3. I have seen main has return type of int. But main don't return anything. Shouldn't it be void. In TC/TC++ or OS based software, main can return, but how in MCU. ...
  • Specifying the start address
    In assembly, the "ORG" directive can be used to specify the start address of the code. Can this be done in C? if possible then How? ..Thanx
  • Specifying address of C-procedure
    How do I tell the Keil C compiler/linker to place certain C-procedures in specific parts of memory? Example: The procedure below must be placed at an address above 0x4000. void ADC_start...