• Runtime of if
    Hello, if there is code like if (condition) bla = blub; than the timming can be different if condition is true or false. How to make timing equal on both path? Is else dummy...
  • Runtime
    How can i calculate the runtime of the program in terms of clock cycles? without looking into the instruction set. Regards Siva
  • Simulating the LPC2378 specific peripherals
    At the moment, the uVision don't simulating any LPC2378 peripherals (UART 2, CAN0, CAN1, Ethernet MAC, etc.). The Keil will develop an upgrade of the uVision, including this features? If yes, the...
  • Disable Simulations for Specific Device Features
    I was wondering if it was possible to disable simulation of the ports? I am not using them for serial communication and I want to use these bit addressable registers another way. I am simulating a...
  • RAM, ROM and runtime calculation
    Hi, How can i compute the ROM, RAM size and runtime consumed by a function in C. For example: void main() { ... f(); } f() { ... ... } How can i compute the RAM, ROM and runtime...