declare SEGHOL
This commit is contained in:
parent
444bd51224
commit
729ee1f314
@ -4,7 +4,8 @@
|
|||||||
extern File *codefile;
|
extern File *codefile;
|
||||||
|
|
||||||
extern char *extnd_name(), *extnd_dnam(), *extnd_dlb(), *extnd_ilb(),
|
extern char *extnd_name(), *extnd_dnam(), *extnd_dlb(), *extnd_ilb(),
|
||||||
*extnd_hol(), *extnd_ext(), *extnd_pro(), *extnd_start();
|
*extnd_hol(), *extnd_ext(), *extnd_pro(), *extnd_start(),
|
||||||
|
*extnd_part(), *extnd_cont();
|
||||||
|
|
||||||
extern int holno, procno;
|
extern int holno, procno;
|
||||||
|
|
||||||
@ -14,5 +15,6 @@ extern int holno, procno;
|
|||||||
#define SEGROM 1
|
#define SEGROM 1
|
||||||
#define SEGCON 2
|
#define SEGCON 2
|
||||||
#define SEGBSS 3
|
#define SEGBSS 3
|
||||||
|
#define SEGHOL -1 /* Does not exist */
|
||||||
|
|
||||||
#define ABSOLUTE 1
|
#define ABSOLUTE 1
|
||||||
|
|||||||
@ -95,3 +95,19 @@ int hol;
|
|||||||
sprint( name, HOL_FMT, hol);
|
sprint( name, HOL_FMT, hol);
|
||||||
return( name);
|
return( name);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
char *extnd_part( d)
|
||||||
|
int d;
|
||||||
|
{
|
||||||
|
sprint( name, "part%x", (arith) d);
|
||||||
|
return( name);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
char *extnd_cont( d)
|
||||||
|
int d;
|
||||||
|
{
|
||||||
|
sprint( name, "cont%x", (arith) d);
|
||||||
|
return( name);
|
||||||
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user