• A51 Limits of Macro-expansion??
    Is there a Limit of the total size of macro-expanded code? (in V5.10) I've made a library of very handy macros which expand to a remarkably large listing. Sometimes, when I define additional macros...
  • debug information
    Hi, is it possible to print some debug information to the debug window (build output window)? Like printf() for the uart interface... best regards Bernd
  • PROBLEMS WITH MACROS WHEN DEBUGGING
    When I am debugging an assembler module in uVison2 v2.40 and I set a breakpoint in a macro (standard macro), the debugger executes all instruccions in that macro unless the last instruction. But...
  • How I can predefine C macros from commad line in A51?
    I want select configuration from command line. In A51 I cann't define __CONFIG__ as C macros. "config.h" include in C and ASM files. config.h #ifndef _CONFIG_H #define _CONFIG_H #define CONFIG_DEBUG...
  • MACRO
    Hello, May I know if the code as shown below works? -------------------------------------------- #pragma src void main(void){ #pragma asm myMacro MACRO MOV R1, #01 MOV R2, #02 MOV R3,...