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 Code

I would like to run assembly code for the ARM7TDMI assembly using UVision2 or UVision3.

I'm trying to simulate the REMAP using the AT91M42800A chip.

How can i go about compiling assembly code using this software?

Thank You!
Mike

Parents
  • "the software compiles the startup.s"

    It does not Compile it.
    Compiling is what compilers do.

    You need an assembler to assemble an assembly source file.

    Of course, the Keil ARM toolset must include an assembler - no embedded toolset would be complete without one.

    The uVision Manual tells you how uVision distinguishes between 'C' source files and assembler source files (and, in fact, any other type of file you care to add to your project), and thus how it decides whether to use the Compiler or the Assembler (or whatever) to perform the necessary translation.

Reply
  • "the software compiles the startup.s"

    It does not Compile it.
    Compiling is what compilers do.

    You need an assembler to assemble an assembly source file.

    Of course, the Keil ARM toolset must include an assembler - no embedded toolset would be complete without one.

    The uVision Manual tells you how uVision distinguishes between 'C' source files and assembler source files (and, in fact, any other type of file you care to add to your project), and thus how it decides whether to use the Compiler or the Assembler (or whatever) to perform the necessary translation.

Children