X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rmac;a=blobdiff_plain;f=procln.c;h=ab9d53a0eefc98397348f71a3a55cfd7f7565608;hp=6963086c9f18e69e3a3ace6004ae1a24f8404678;hb=d7d2c7f14734504d68d67ee5d46ecd3472c0922e;hpb=daf2f61a3664329ae7f9609e1e14da2b8780fd10 diff --git a/procln.c b/procln.c index 6963086..ab9d53a 100644 --- a/procln.c +++ b/procln.c @@ -29,6 +29,7 @@ #define DECL_MR #include "risckw.h" + IFENT * ifent; // Current ifent static IFENT ifent0; // Root ifent static IFENT * f_ifent; // Freelist of ifents @@ -134,6 +135,7 @@ loop: // Line processing loop label // Get another line of tokens if (tokln() == TKEOF) { +if (verb_flag) printf("Assemble: Found TKEOF flag...\n"); if (list_flag && listflag) // Flush last line of source listeol(); @@ -626,7 +628,7 @@ do_label: // Call RISC code generator if we found a mnemonic if (state >= 3000) { - risccg(state); + GenerateRISCCode(state); goto loop; } }