X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rmac;a=blobdiff_plain;f=rmac.c;h=4506a95b517616d02d86b878fccab0877bff6605;hp=c47adf2b2997cd60fe8e519cab9f3f1b516cdc3c;hb=062214e62031c26d372edc2e68473ebb64f6a506;hpb=bcd800a128cf43be03cf6a7ea54b4fc404b3ed8d diff --git a/rmac.c b/rmac.c index c47adf2..4506a95 100644 --- a/rmac.c +++ b/rmac.c @@ -105,9 +105,9 @@ int kmatch(char * p, int * base, int * check, int * tab, int * accept) // void autoeven(int sect) { - switchsect(sect); + SwitchSection(sect); d_even(); - savsect(); + SaveSection(); } @@ -470,11 +470,11 @@ int process(int argc, char ** argv) // o determine name of object file: // - "foo.o" for linkable output; // - "foo.prg" for GEMDOS executable (-p flag). - savsect(); + SaveSection(); for(i=TEXT; i<=BSS; i<<=1) { - switchsect(i); + SwitchSection(i); switch(segpadsize) { @@ -485,7 +485,7 @@ int process(int argc, char ** argv) case 32: d_qphrase(); break; } - savsect(); + SaveSection(); } if (objfname == NULL)