We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
Hi all, I defined some symbols in my assembly module. But I also need to use them in my C files. I don't want to define it twice at different places. How can I make those constants visible in C file? For example, I define a constant in .a66 like following, Kf_100_init equ 20133 What I want to do in a C file is, freq = tmp * Kf_100_init;