Hi all, An application can have several constants that need sharing between C and assembly code, and defining a C macro in a header (*.h) file is the obvious solution. But, if the *.h file cannot be included in assembly files, a developer will have to duplicate these macros in a *.inc file (using the .EQU directive), which is extremely error-prone. Most build tools nowadays accept #define's in assembly files, but I couldn't find a way to do this with the RX build tools. Does anybody know if there is a solution? Emiliano
↧