mirror of
https://github.com/byteworksinc/DumpObj.git
synced 2025-02-19 20:30:35 +00:00
commit
aeeb5ed53b
@ -1584,7 +1584,7 @@ void WriteT (long *root)
|
||||
if (root)
|
||||
switch(root[1]) {
|
||||
case 3: /* handle label value */
|
||||
printf((char *) (root+5));
|
||||
fputs((char *) (root+5), stdout);
|
||||
break;
|
||||
case 2: /* handle number value */
|
||||
if (root[0] == 135) /* split on case of relative ofset */
|
||||
@ -1751,7 +1751,7 @@ void PutLSymbol (void)
|
||||
int i;
|
||||
|
||||
ReadName(symbol,lablen,input);
|
||||
printf(symbol);
|
||||
fputs(symbol, stdout);
|
||||
for (i=act_lablen; i<8; i++) /* fill out with spaces */
|
||||
putchar(' ');
|
||||
putchar(' ');
|
||||
@ -2338,7 +2338,7 @@ while (NextSeg()) {
|
||||
}
|
||||
PutStreg(); /* write the registar status */
|
||||
PutCTPC();
|
||||
printf(segname); /* print the segment name */
|
||||
fputs(segname, stdout); /* print the segment name */
|
||||
for (i=strlen(segname); i<8; i++) /* fill out with spaces */
|
||||
putchar(' ');
|
||||
if (kind & 1) /* print out segment type */
|
||||
|
Loading…
x
Reference in New Issue
Block a user