I use the same value as an assembly control and to change some variables. It seems that in order to do so, I have to define it in one way for conditional assembly and in another way for variables. Is there a way to use the same definition for both purposes ? $SET (SIGN_PANELS_OUT = 2) SIGN_PANEL_COUNT equ 2 I can figure out on my own to use the conditional for the variable etc, I am not looking for a workaround, but for ONE defintition TYPE that can be used for both purposes. Erik
What about using a #define (in a header file) that you can include in C and assembler files? Would that do what you want? Jon