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.
the error of the following code is C126: EZREGS.H(47): error C129: missing ';' before 'OUT7BUF' Anybody knows why?
#ifdef ALLOCATE_EXTERN #define EXTERN #define _AT_ _at_ #else #define EXTERN extern #define _AT_ ; / ## / #endif /* Register Assignments 3/18/99 TPM */ EXTERN xdata volatile BYTE OUT7BUF[64] _AT_ 0x7B40;
How about:
#ifdef ALLOCATE_EXTERN #define _AT_(addr) _at_ addr #else #define _AT_(addr) #endif