comparison lwasm/main.c @ 229:164487152dd9

Add flag to output stream for end of unicorns Unicorn information ends at UNICORNSAWAY: to allow easy identification of the assembly listing.
author William Astle <lost@l-w.ca>
date Sun, 15 Jul 2012 21:46:29 -0600
parents 7c2c2239ec9c
children 1f1a28b797e1
comparison
equal deleted inserted replaced
228:042c7b74faf0 229:164487152dd9
321 if (asmstate.flags & FLAG_UNICORNS) 321 if (asmstate.flags & FLAG_UNICORNS)
322 { 322 {
323 debug_message(&asmstate, 50, "Invoking unicorns"); 323 debug_message(&asmstate, 50, "Invoking unicorns");
324 lwasm_do_unicorns(&asmstate); 324 lwasm_do_unicorns(&asmstate);
325 } 325 }
326 else 326 do_list(&asmstate);
327 {
328 do_list(&asmstate);
329 }
330 exit(0); 327 exit(0);
331 } 328 }