• Compiler Crashed on Specific Macro
    Hi all, I defined a macro as #define min(a,b) (((a) < (b)) ? (a) : (b)) and used it as xfr_cnt = min(to_xfer, secsize - boff); but every time compiler crashed on this C file. It is ok after I expanded...
  • Compiler Crashed on Specific Macro
    Hi all, I defined a macro as #define min(a,b) (((a) < (b)) ? (a) : (b)) and used it as xfr_cnt = min(to_xfer, secsize - boff); but every time compiler crashed on this C file. It is ok after I expanded...
  • Import definitions/macros
    Hello... Currently I am using a header file that contains imported variables/functions/arrays at specific addressing. This is not ideal but it is the only workaround I have for my project. Now I...
  • Import definitions/macros
    Hello... Currently I am using a header file that contains imported variables/functions/arrays at specific addressing. This is not ideal but it is the only workaround I have for my project. Now I...
  • Use in Macro Definitions
    I need to define macros that contains inline assembly. I have used the solution explained in this link: http://www.keil.com/support/man/docs/c166/c166_le_extmacros.htm however, this doesn't...