diff options
author | Oxore <oxore@protonmail.com> | 2022-09-23 00:35:02 +0300 |
---|---|---|
committer | Oxore <oxore@protonmail.com> | 2022-09-23 00:45:05 +0300 |
commit | 2233177e7ada45838dc61d1a5f98ff44f7fbc3a6 (patch) | |
tree | 42fa5e31ab315dccd6b6591321b261aeecf703af /musashi-m68k/m68kmake.c | |
parent | bb1cb9f755ef77126bdfe3258c0f859bb6d2bf1a (diff) |
Disable excess verbosity in m68kmake
Diffstat (limited to 'musashi-m68k/m68kmake.c')
-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; } |