diff options
-rw-r--r-- | musashi-m68k/m68kmake.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/musashi-m68k/m68kmake.c b/musashi-m68k/m68kmake.c index 928ebd2..1632835 100644 --- a/musashi-m68k/m68kmake.c +++ b/musashi-m68k/m68kmake.c @@ -1237,8 +1237,8 @@ int main(int argc, char **argv) int table_body_read = 0; int ophandler_body_read = 0; - printf("\n\tMusashi v%s 68000, 68008, 68010, 68EC020, 68020, 68EC030, 68030, 68EC040, 68040 emulator\n", g_version); - printf("\t\tCopyright Karl Stenerud (kstenerud@gmail.com)\n\n"); + if (0) printf("\n\tMusashi v%s 68000, 68008, 68010, 68EC020, 68020, 68EC030, 68030, 68EC040, 68040 emulator\n", g_version); + if (0) printf("\t\tCopyright Karl Stenerud (kstenerud@gmail.com)\n\n"); /* Check if output path and source for the input file are given */ if(argc > 1) @@ -1396,7 +1396,7 @@ int main(int argc, char **argv) fclose(g_table_file); fclose(g_input_file); - printf("Generated %d opcode handlers from %d primitives\n", g_num_functions, g_num_primitives); + if (0) printf("Generated %d opcode handlers from %d primitives\n", g_num_functions, g_num_primitives); return 0; } |