change some names

This commit is contained in:
ceriel 1989-01-26 13:39:03 +00:00
parent 5a18c3748d
commit 811321b190
9 changed files with 24 additions and 24 deletions

View file

@ -1,2 +1,2 @@
int locals_created = 0, busy = 0; int B_locals_created = 0, B_busy = 0;
int holno = 0, procno = 0; int B_holno = 0, B_procno = 0;

View file

@ -29,7 +29,7 @@
#define relocEM_PSIZE reloc4 #define relocEM_PSIZE reloc4
#endif #endif
extern int procno; extern int B_procno;
C_bss_ilb( n, l, i) C_bss_ilb( n, l, i)
arith n; arith n;
@ -44,6 +44,6 @@ int i;
dump_label(); dump_label();
for ( i = 0; i < n/EM_PSIZE; i++) 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);
} }
} }

View file

@ -29,7 +29,7 @@
#define relocEM_PSIZE reloc4 #define relocEM_PSIZE reloc4
#endif #endif
extern int procno; extern int B_procno;
C_con_ilb( l) C_con_ilb( l)
label l; label l;
@ -37,5 +37,5 @@ label l;
switchseg( SEGCON); switchseg( SEGCON);
dump_label(); dump_label();
relocEM_PSIZE( extnd_ilb( l, procno), 0, ABSOLUTE); relocEM_PSIZE( extnd_ilb( l, B_procno), 0, ABSOLUTE);
} }

View file

@ -29,7 +29,7 @@
#define relocEM_PSIZE reloc4 #define relocEM_PSIZE reloc4
#endif #endif
extern int holno; extern int B_holno;
C_hol_cst( n, w, i) C_hol_cst( n, w, i)
arith n, w; arith n, w;
@ -38,14 +38,14 @@ int i;
if ( i == 0 || w == BSS_INIT) { if ( i == 0 || w == BSS_INIT) {
switchseg( SEGBSS); switchseg( SEGBSS);
align_word(); align_word();
symbol_definition( extnd_hol( ++holno)); symbol_definition( extnd_hol( ++B_holno));
bss( n); bss( n);
} }
else { else {
switchseg( SEGCON); switchseg( SEGCON);
align_word(); align_word();
symbol_definition( extnd_hol( ++holno)); symbol_definition( extnd_hol( ++B_holno));
for ( i = 0; i < n/EM_WSIZE; i++) for ( i = 0; i < n/EM_WSIZE; i++)
conEM_WSIZE( (CAST_WSIZE) w); conEM_WSIZE( (CAST_WSIZE) w);

View file

@ -29,7 +29,7 @@
#define relocEM_PSIZE reloc4 #define relocEM_PSIZE reloc4
#endif #endif
extern int holno; extern int B_holno;
C_hol_dlb( n, l, offs, i) C_hol_dlb( n, l, offs, i)
arith n, offs; arith n, offs;
@ -39,14 +39,14 @@ int i;
if ( i == 0) { if ( i == 0) {
switchseg( SEGBSS); switchseg( SEGBSS);
align_word(); align_word();
symbol_definition( extnd_hol( ++holno)); symbol_definition( extnd_hol( ++B_holno));
bss( n); bss( n);
} }
else { else {
switchseg( SEGCON); switchseg( SEGCON);
align_word(); align_word();
symbol_definition( extnd_hol( ++holno)); symbol_definition( extnd_hol( ++B_holno));
for ( i = 0; i < n/EM_PSIZE; i++) for ( i = 0; i < n/EM_PSIZE; i++)
relocEM_PSIZE( extnd_dlb( l), offs, ABSOLUTE); relocEM_PSIZE( extnd_dlb( l), offs, ABSOLUTE);

View file

@ -29,7 +29,7 @@
#define relocEM_PSIZE reloc4 #define relocEM_PSIZE reloc4
#endif #endif
extern int holno; extern int B_holno;
C_hol_dnam( n, s, offs, i) C_hol_dnam( n, s, offs, i)
arith n, offs; arith n, offs;
@ -39,14 +39,14 @@ int i;
if ( i == 0) { if ( i == 0) {
switchseg( SEGBSS); switchseg( SEGBSS);
align_word(); align_word();
symbol_definition( extnd_hol( ++holno)); symbol_definition( extnd_hol( ++B_holno));
bss( n); bss( n);
} }
else { else {
switchseg( SEGCON); switchseg( SEGCON);
align_word(); align_word();
symbol_definition( extnd_hol( ++holno)); symbol_definition( extnd_hol( ++B_holno));
for ( i = 0; i < n/EM_PSIZE; i++) for ( i = 0; i < n/EM_PSIZE; i++)
relocEM_PSIZE( extnd_dnam( s), offs, ABSOLUTE); relocEM_PSIZE( extnd_dnam( s), offs, ABSOLUTE);

View file

@ -29,7 +29,7 @@
#define relocEM_PSIZE reloc4 #define relocEM_PSIZE reloc4
#endif #endif
extern int holno, procno; extern int B_holno, B_procno;
C_hol_ilb( n, l, i) C_hol_ilb( n, l, i)
arith n; arith n;
@ -39,16 +39,16 @@ int i;
if ( i == 0) { if ( i == 0) {
switchseg( SEGBSS); switchseg( SEGBSS);
align_word(); align_word();
symbol_definition( extnd_hol( ++holno)); symbol_definition( extnd_hol( ++B_holno));
bss( n); bss( n);
} }
else { else {
switchseg( SEGCON); switchseg( SEGCON);
align_word(); align_word();
symbol_definition( extnd_hol( ++holno)); symbol_definition( extnd_hol( ++B_holno));
for ( i = 0; i < n/EM_PSIZE; i++) 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);
} }
} }

View file

@ -29,7 +29,7 @@
#define relocEM_PSIZE reloc4 #define relocEM_PSIZE reloc4
#endif #endif
extern int holno; extern int B_holno;
C_hol_pnam( n, s, i) C_hol_pnam( n, s, i)
arith n; arith n;
@ -39,14 +39,14 @@ int i;
if ( i == 0) { if ( i == 0) {
switchseg( SEGBSS); switchseg( SEGBSS);
align_word(); align_word();
symbol_definition( extnd_hol( ++holno)); symbol_definition( extnd_hol( ++B_holno));
bss( n); bss( n);
} }
else { else {
switchseg( SEGCON); switchseg( SEGCON);
align_word(); align_word();
symbol_definition( extnd_hol( ++holno)); symbol_definition( extnd_hol( ++B_holno));
for ( i = 0; i < n/EM_PSIZE; i++) for ( i = 0; i < n/EM_PSIZE; i++)
relocEM_PSIZE( extnd_name( s), 0, ABSOLUTE); relocEM_PSIZE( extnd_name( s), 0, ABSOLUTE);

View file

@ -29,7 +29,7 @@
#define relocEM_PSIZE reloc4 #define relocEM_PSIZE reloc4
#endif #endif
extern int procno; extern int B_procno;
C_rom_ilb( l) C_rom_ilb( l)
label l; label l;
@ -37,5 +37,5 @@ label l;
switchseg( SEGROM); switchseg( SEGROM);
dump_label(); dump_label();
relocEM_PSIZE( extnd_ilb( l, procno), 0, ABSOLUTE); relocEM_PSIZE( extnd_ilb( l, B_procno), 0, ABSOLUTE);
} }