-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Open
@vcheckzen
Description
Line 82 in 14e9397
if (Gsym[i].stype == S_VARIABLE)
Line 136 in 14e9397
if (Gsym[i].stype == S_VARIABLE)
Both lines should be changed to
if (Gsym[i].stype == S_VARIABLE || Gsym[i].stype == S_ARRAY)
Lines 270 to 271 in 14e9397
case 1: fprintf(Outfile, "%s:\t.byte\t0\n", Gsym[id].name); break;
case 4: fprintf(Outfile, "%s:\t.long\t0\n", Gsym[id].name); break;
should be changed to
case 1: case 4: fprintf(Outfile, "%s:\n\t.zero\t%d\n", Gsym[id].name, Gsym[id].size * typesize); break;
Metadata
Metadata
Assignees
Labels
No labels