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

ASSEMBLY PROGRAMMING

How to do ASSEMBLY programming in KEIL Uvision 5?!
for that which board i have to select in Target Options?!

Parents
  • The same way you do it in any other toolchain:

    1. Write the code - using the editor;

    2. Build the code;

    3. Download & run/debug the code.

    All the Keil documentation is here: http://www.keil.com/support/man/

    Note that each architecture has its own specific assembler - so, beyond the above, this really isn't a "Non-Specific (General)" question.

    "which board i have to select in Target Options?!"

    The hardware neither knows nor cares what you write your source code in - whether it's assembler, or C, or whatever.
    Therefore, it makes no difference to the board selection whether you write your source code in assembler, or C, or whatever

Reply
  • The same way you do it in any other toolchain:

    1. Write the code - using the editor;

    2. Build the code;

    3. Download & run/debug the code.

    All the Keil documentation is here: http://www.keil.com/support/man/

    Note that each architecture has its own specific assembler - so, beyond the above, this really isn't a "Non-Specific (General)" question.

    "which board i have to select in Target Options?!"

    The hardware neither knows nor cares what you write your source code in - whether it's assembler, or C, or whatever.
    Therefore, it makes no difference to the board selection whether you write your source code in assembler, or C, or whatever

Children