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

supervisor mode

Hello,

is it quite normal, that a arm9 microcontroller starts in the supervisor mode? How could I changed the mode into user mode? Or is it better to work in the supervisor mode?

I've only the startup file and a short main.c file

#include <stdio.h>

int main(void)
 {

 while(1);

}

In the startup file I only can see that every mode will be initialized.

best regards
tobi

Parents
  • "<quote> ... <nedquote>"

    This forum doesn't support "quote" nor "nedquote" (sic) tags - and if you'd bothered to look at the preview, that would have been obvious!

    The supported tags are clearly described when you make your post:
    www.danlhenry.com/.../keil_code.png
    and follow the link for further instructions!

    "how does when the linker run the code into the prosesser"

    The Linker does not "run" the code into the processor!

    The linker provides an output file which can subsequently be loaded into the processor using appropriate tools...

    "does it do the on lerft"

    Sorry - I realise that English isn't your first language, but that makes no sense.
    Please try to re-phrase it.

    "how to make the linker place certain objec in superviso mode"

    Supervisor mode is not a location into which objects may be placed.

Reply
  • "<quote> ... <nedquote>"

    This forum doesn't support "quote" nor "nedquote" (sic) tags - and if you'd bothered to look at the preview, that would have been obvious!

    The supported tags are clearly described when you make your post:
    www.danlhenry.com/.../keil_code.png
    and follow the link for further instructions!

    "how does when the linker run the code into the prosesser"

    The Linker does not "run" the code into the processor!

    The linker provides an output file which can subsequently be loaded into the processor using appropriate tools...

    "does it do the on lerft"

    Sorry - I realise that English isn't your first language, but that makes no sense.
    Please try to re-phrase it.

    "how to make the linker place certain objec in superviso mode"

    Supervisor mode is not a location into which objects may be placed.

Children