• Include macro in .s file
    Hi, I am using arm cortex m4 and I wrote an assembly code(in .S file). There is one macro which is defined in other file(.h file). I want to use that macro in my assembly code, so that I can enable...
  • assembly macro
    Does any one know how to create a macro to concatenate 2 tokens such as below in assembly? #define A(func) A_##func() Anh
  • assembly macro
    Does any one know how to create a macro to concatenate 2 tokens such as below in assembly? #define A(func) A_##func() Anh
  • ARM assembler macro question
    Hi, Simple question, but very hard to find answer, maybe somebody here knows: I want to create a simple macro like I can in C: #define ALIGN_UP(addr, align) (((addr) + (align) - 1) & ~((align) ...
  • arm assembler macro help
    I'm trying to get some arm assembly code to work with macros. I'm using free download version of keil tools. is the macro language the same syntax for armasm arm tools and free download keil tools? ...