X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=procln.c;h=d849b000c4b416b82d08a24e5cf4a0448c9260f7;hb=3f2bccb78ab4cd59654d521c8aedfe5512ee6608;hp=b56b25461d9012c845e6720a107851b6f38d5a19;hpb=062214e62031c26d372edc2e68473ebb64f6a506;p=rmac diff --git a/procln.c b/procln.c index b56b254..d849b00 100644 --- a/procln.c +++ b/procln.c @@ -94,7 +94,7 @@ int HandleLabel(char *, int); // -// Initialize Line Processor +// Initialize line processor // void InitLineProcessor(void) { @@ -106,7 +106,7 @@ void InitLineProcessor(void) // -// Line Processor +// Line processor // void Assemble(void) { @@ -450,9 +450,9 @@ checking to see if it's already been equated, issue a warning. // What needs to happen here is to prime registerbank with regbank, then use // registerbank down below for the bank marking. #warning "!!! regbank <-> registerbank confusion here !!!" -// The question here is why, if we're allowed to override the ".regbankN" rules above, -// then why is it using the one set by the directive in the extended attributes and -// not in what ends up in symbol->svalue? +// The question here is why, if we're allowed to override the ".regbankN" rules +// above, then why is it using the one set by the directive in the extended +// attributes and not in what ends up in symbol->svalue? // ".regbankN" is not an original Madmac directive, so it's suspect sy->sattre |= regbank; // Store register bank #endif @@ -546,13 +546,13 @@ checking to see if it's already been equated, issue a warning. goto loop; } - sy->sattr |= eattr | EQUATED; // Symbol inherits value and attributes + sy->sattr |= eattr | EQUATED; // Symbol inherits value and attributes sy->svalue = eval; - if (list_flag) // Put value in listing + if (list_flag) // Put value in listing listvalue(eval); - at_eol(); // Must be at EOL now + at_eol(); // Must be at EOL now goto loop; } @@ -728,7 +728,7 @@ int HandleLabel(char * label, int labelType) // -// .if, Start Conditional Assembly +// .if, Start conditional assembly // int d_if(void) { @@ -763,7 +763,7 @@ int d_if(void) // -// .else, Do Alternate Case For .if +// .else, Do alternate case for .if // int d_else(void) {