Removed useless spaces. Removed addrni.asm from Sconstruct and updated the build instructions for the tools.

This commit is contained in:
jbo_85
2005-07-12 14:19:01 +00:00
parent dba28a70f0
commit 707c6f50c2
35 changed files with 3124 additions and 3125 deletions

View File

@@ -13,7 +13,7 @@ Extra EXTSYMs:
g++ -Wall -O3 -o extraext.exe extraext.cpp fileutil.o strutil.o
Section Tester:
g++ -Wall -O3 -o sec-test.exe sec-test.cpp fileutil.o
g++ -Wall -O3 -o sec-test.exe sec-test.cpp fileutil.o strutil.o
Source Counter:
g++ -Wall -O3 -o srccount.exe srccount.cpp fileutil.o

View File

@@ -78,7 +78,7 @@ void handle_file(const char *filename)
for (size_t i = 1; file.getline(buffer, LINE_LENGTH); i++)
{
char *line = buffer;
char *comment_p = strchr(line, ';');
if (comment_p) { *comment_p = 0; }
@@ -86,29 +86,29 @@ void handle_file(const char *filename)
for (char *p = line+strlen(line)-1; isspace(*p); p--) { *p = 0; }
while (isspace(*line)) { line++; }
if (!strcasecmp(line, "SECTION .BSS"))
{
prev_section = cur_section;
cur_section = sec_bss;
continue;
}
if (!strcasecmp(line, "SECTION .DATA"))
{
prev_section = cur_section;
cur_section = sec_data;
continue;
}
if (!strcasecmp(line, "SECTION .text"))
{
prev_section = cur_section;
cur_section = sec_text;
continue;
}
if (!strncmp(line, "%macro", strlen("%macro")) ||
!strncmp(line, "%imacro", strlen("%imacro")))
{
@@ -122,8 +122,8 @@ void handle_file(const char *filename)
cur_section = prev_section;
continue;
}
if ((cur_section != sec_bss) && contains_resx(line))
{
cout << filename << ": line " << i << ": Error, resx in non BSS section. \"" << line << "\"" << endl;
@@ -142,7 +142,7 @@ void handle_file(const char *filename)
strncasecmp(line, "bits ", strlen("bits ")))
{
cout << filename << ": line " << i << ": Error, code in non TEXT section. \"" << line << "\"" << endl;
}
}
}
}
}