declare procno and holno, extend_ilb changed

This commit is contained in:
ceriel 1988-11-18 18:00:47 +00:00
parent 4757be8bf6
commit 712ba56ce8
7 changed files with 18 additions and 4 deletions

View file

@ -29,6 +29,8 @@
#define relocEM_PSIZE reloc4
#endif
extern int procno;
C_bss_ilb( n, l, i)
arith n;
label l;
@ -42,6 +44,6 @@ int i;
dump_label();
for ( i = 0; i < n/EM_PSIZE; i++)
relocEM_PSIZE( extnd_ilb( l), 0, ABSOLUTE);
relocEM_PSIZE( extnd_ilb( l, procno), 0, ABSOLUTE);
}
}

View file

@ -29,11 +29,13 @@
#define relocEM_PSIZE reloc4
#endif
extern int procno;
C_con_ilb( l)
label l;
{
switchseg( SEGCON);
dump_label();
relocEM_PSIZE( extnd_ilb( l), 0, ABSOLUTE);
relocEM_PSIZE( extnd_ilb( l, procno), 0, ABSOLUTE);
}

View file

@ -29,6 +29,8 @@
#define relocEM_PSIZE reloc4
#endif
extern int holno;
C_hol_dlb( n, l, offs, i)
arith n, offs;
label l;

View file

@ -29,6 +29,8 @@
#define relocEM_PSIZE reloc4
#endif
extern int holno;
C_hol_dnam( n, s, offs, i)
arith n, offs;
char *s;

View file

@ -29,6 +29,8 @@
#define relocEM_PSIZE reloc4
#endif
extern int holno, procno;
C_hol_ilb( n, l, i)
arith n;
label l;
@ -47,6 +49,6 @@ int i;
symbol_definition( extnd_hol( ++holno));
for ( i = 0; i < n/EM_PSIZE; i++)
relocEM_PSIZE( extnd_ilb( l), 0, ABSOLUTE);
relocEM_PSIZE( extnd_ilb( l, procno), 0, ABSOLUTE);
}
}

View file

@ -29,6 +29,8 @@
#define relocEM_PSIZE reloc4
#endif
extern int holno;
C_hol_pnam( n, s, i)
arith n;
char *s;

View file

@ -29,11 +29,13 @@
#define relocEM_PSIZE reloc4
#endif
extern int procno;
C_rom_ilb( l)
label l;
{
switchseg( SEGROM);
dump_label();
relocEM_PSIZE( extnd_ilb( l), 0, ABSOLUTE);
relocEM_PSIZE( extnd_ilb( l, procno), 0, ABSOLUTE);
}