Mercurial > hg > index.cgi
comparison lwasm/unicorns.c @ 228:042c7b74faf0
Make unicorns not suppress assembly listings.
Make the unicorns not block listings if requested.
author | William Astle <lost@l-w.ca> |
---|---|
date | Sun, 15 Jul 2012 21:43:18 -0600 |
parents | 7c2c2239ec9c |
children | 164487152dd9 |
comparison
equal
deleted
inserted
replaced
227:721a5ea5e36a | 228:042c7b74faf0 |
---|---|
28 #include <string.h> | 28 #include <string.h> |
29 | 29 |
30 #include "input.h" | 30 #include "input.h" |
31 #include "lwasm.h" | 31 #include "lwasm.h" |
32 #include "lw_alloc.h" | 32 #include "lw_alloc.h" |
33 | |
34 void do_list(asmstate_t *as); | |
33 | 35 |
34 static void print_urlencoding(FILE *stream, const char *string) | 36 static void print_urlencoding(FILE *stream, const char *string) |
35 { | 37 { |
36 for ( ; *string; string++) | 38 for ( ; *string; string++) |
37 { | 39 { |
117 { | 119 { |
118 show_unicorn_error(stdout, l, ee, "WARNING"); | 120 show_unicorn_error(stdout, l, ee, "WARNING"); |
119 } | 121 } |
120 } | 122 } |
121 } | 123 } |
124 | |
125 do_list(as); | |
122 } | 126 } |