This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Error simulating the LPC2378 uC

Hello to all!
I tried to debug the Blinky example shipped with the MCB2300 board in the Simulator mode. However, the code was blocked in a endless loop, waiting for the main oscilator stabilize.

Below is the code of the loop:

; Wait for main osc stabilize
OSC_Loop        LDR     R3, [R0, #SCS_OFS]
                ANDS    R3, R3, #OSCSTAT
                BEQ     OSC_Loop

The code allways branch to OSC_Loop in the BEQ instruction.

Is this a bug in simulator? The version of uVision used is 3.50.

0