change some names
This commit is contained in:
parent
5a18c3748d
commit
811321b190
|
@ -1,2 +1,2 @@
|
|||
int locals_created = 0, busy = 0;
|
||||
int holno = 0, procno = 0;
|
||||
int B_locals_created = 0, B_busy = 0;
|
||||
int B_holno = 0, B_procno = 0;
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
#define relocEM_PSIZE reloc4
|
||||
#endif
|
||||
|
||||
extern int procno;
|
||||
extern int B_procno;
|
||||
|
||||
C_bss_ilb( n, l, i)
|
||||
arith n;
|
||||
|
@ -44,6 +44,6 @@ int i;
|
|||
dump_label();
|
||||
|
||||
for ( i = 0; i < n/EM_PSIZE; i++)
|
||||
relocEM_PSIZE( extnd_ilb( l, procno), 0, ABSOLUTE);
|
||||
relocEM_PSIZE( extnd_ilb( l, B_procno), 0, ABSOLUTE);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
#define relocEM_PSIZE reloc4
|
||||
#endif
|
||||
|
||||
extern int procno;
|
||||
extern int B_procno;
|
||||
|
||||
C_con_ilb( l)
|
||||
label l;
|
||||
|
@ -37,5 +37,5 @@ label l;
|
|||
switchseg( SEGCON);
|
||||
dump_label();
|
||||
|
||||
relocEM_PSIZE( extnd_ilb( l, procno), 0, ABSOLUTE);
|
||||
relocEM_PSIZE( extnd_ilb( l, B_procno), 0, ABSOLUTE);
|
||||
}
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
#define relocEM_PSIZE reloc4
|
||||
#endif
|
||||
|
||||
extern int holno;
|
||||
extern int B_holno;
|
||||
|
||||
C_hol_cst( n, w, i)
|
||||
arith n, w;
|
||||
|
@ -38,14 +38,14 @@ int i;
|
|||
if ( i == 0 || w == BSS_INIT) {
|
||||
switchseg( SEGBSS);
|
||||
align_word();
|
||||
symbol_definition( extnd_hol( ++holno));
|
||||
symbol_definition( extnd_hol( ++B_holno));
|
||||
|
||||
bss( n);
|
||||
}
|
||||
else {
|
||||
switchseg( SEGCON);
|
||||
align_word();
|
||||
symbol_definition( extnd_hol( ++holno));
|
||||
symbol_definition( extnd_hol( ++B_holno));
|
||||
|
||||
for ( i = 0; i < n/EM_WSIZE; i++)
|
||||
conEM_WSIZE( (CAST_WSIZE) w);
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
#define relocEM_PSIZE reloc4
|
||||
#endif
|
||||
|
||||
extern int holno;
|
||||
extern int B_holno;
|
||||
|
||||
C_hol_dlb( n, l, offs, i)
|
||||
arith n, offs;
|
||||
|
@ -39,14 +39,14 @@ int i;
|
|||
if ( i == 0) {
|
||||
switchseg( SEGBSS);
|
||||
align_word();
|
||||
symbol_definition( extnd_hol( ++holno));
|
||||
symbol_definition( extnd_hol( ++B_holno));
|
||||
|
||||
bss( n);
|
||||
}
|
||||
else {
|
||||
switchseg( SEGCON);
|
||||
align_word();
|
||||
symbol_definition( extnd_hol( ++holno));
|
||||
symbol_definition( extnd_hol( ++B_holno));
|
||||
|
||||
for ( i = 0; i < n/EM_PSIZE; i++)
|
||||
relocEM_PSIZE( extnd_dlb( l), offs, ABSOLUTE);
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
#define relocEM_PSIZE reloc4
|
||||
#endif
|
||||
|
||||
extern int holno;
|
||||
extern int B_holno;
|
||||
|
||||
C_hol_dnam( n, s, offs, i)
|
||||
arith n, offs;
|
||||
|
@ -39,14 +39,14 @@ int i;
|
|||
if ( i == 0) {
|
||||
switchseg( SEGBSS);
|
||||
align_word();
|
||||
symbol_definition( extnd_hol( ++holno));
|
||||
symbol_definition( extnd_hol( ++B_holno));
|
||||
|
||||
bss( n);
|
||||
}
|
||||
else {
|
||||
switchseg( SEGCON);
|
||||
align_word();
|
||||
symbol_definition( extnd_hol( ++holno));
|
||||
symbol_definition( extnd_hol( ++B_holno));
|
||||
|
||||
for ( i = 0; i < n/EM_PSIZE; i++)
|
||||
relocEM_PSIZE( extnd_dnam( s), offs, ABSOLUTE);
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
#define relocEM_PSIZE reloc4
|
||||
#endif
|
||||
|
||||
extern int holno, procno;
|
||||
extern int B_holno, B_procno;
|
||||
|
||||
C_hol_ilb( n, l, i)
|
||||
arith n;
|
||||
|
@ -39,16 +39,16 @@ int i;
|
|||
if ( i == 0) {
|
||||
switchseg( SEGBSS);
|
||||
align_word();
|
||||
symbol_definition( extnd_hol( ++holno));
|
||||
symbol_definition( extnd_hol( ++B_holno));
|
||||
|
||||
bss( n);
|
||||
}
|
||||
else {
|
||||
switchseg( SEGCON);
|
||||
align_word();
|
||||
symbol_definition( extnd_hol( ++holno));
|
||||
symbol_definition( extnd_hol( ++B_holno));
|
||||
|
||||
for ( i = 0; i < n/EM_PSIZE; i++)
|
||||
relocEM_PSIZE( extnd_ilb( l, procno), 0, ABSOLUTE);
|
||||
relocEM_PSIZE( extnd_ilb( l, B_procno), 0, ABSOLUTE);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
#define relocEM_PSIZE reloc4
|
||||
#endif
|
||||
|
||||
extern int holno;
|
||||
extern int B_holno;
|
||||
|
||||
C_hol_pnam( n, s, i)
|
||||
arith n;
|
||||
|
@ -39,14 +39,14 @@ int i;
|
|||
if ( i == 0) {
|
||||
switchseg( SEGBSS);
|
||||
align_word();
|
||||
symbol_definition( extnd_hol( ++holno));
|
||||
symbol_definition( extnd_hol( ++B_holno));
|
||||
|
||||
bss( n);
|
||||
}
|
||||
else {
|
||||
switchseg( SEGCON);
|
||||
align_word();
|
||||
symbol_definition( extnd_hol( ++holno));
|
||||
symbol_definition( extnd_hol( ++B_holno));
|
||||
|
||||
for ( i = 0; i < n/EM_PSIZE; i++)
|
||||
relocEM_PSIZE( extnd_name( s), 0, ABSOLUTE);
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
#define relocEM_PSIZE reloc4
|
||||
#endif
|
||||
|
||||
extern int procno;
|
||||
extern int B_procno;
|
||||
|
||||
C_rom_ilb( l)
|
||||
label l;
|
||||
|
@ -37,5 +37,5 @@ label l;
|
|||
switchseg( SEGROM);
|
||||
dump_label();
|
||||
|
||||
relocEM_PSIZE( extnd_ilb( l, procno), 0, ABSOLUTE);
|
||||
relocEM_PSIZE( extnd_ilb( l, B_procno), 0, ABSOLUTE);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue