summaryrefslogtreecommitdiff
path: root/bcc/label.h
blob: 89c83d7d63a71a1f07e9198343aefb8e5713a29a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* label.h - assembler-specific label characters for bcc */

/* Copyright (C) 1992 Bruce Evans */

/* defaults */

#define CCNAMEPREFIX '_'
# define LABELENDCHAR ':'	/* last char of ALL labels */
#define LABELSTARTCHAR '.'	/* first char of names of generated labels */
#define LOCALSTARTCHAR '.'	/* first char of local names */
#define PUBLICENDCHAR ':'

/* adjustments for other assemblers */

#ifdef AS09
# undef LABELENDCHAR
#endif

#ifdef XENIX_AS
# undef LABELSTARTCHAR
# define LABELSTARTCHAR 'L'
# undef LOCALSTARTCHAR
# define LOCALSTARTCHAR 'L'
#endif