This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

compile error of EXTERN

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;

0