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

how to start writing assembly(a51) language programs in microvision2 IDE

i have now installes keil c package.i want to know how to do assembly language programming in IDE.

  • 1. Read the manual to find out how to create a project with uVision. Create a project.
    2. Add a new assembly file to your project. It will probably help to give it a .A51 extension.
    3. Open text file with editor.
    4. Type assembly language into file.
    5. Build the project, say with the F7 key.
    6. Look at the errors produced, decide what must be wrong in the source file to produce those errors, and go to step 3 to fix the problems.
    7. Run your program on the simulator or target board. Find problems. Decide how to fix problems. Go to step 3 to fix programs. Repeat as necessary.