Previous 199869 Revisions Next

r35295 Thursday 26th February, 2015 at 15:11:29 UTC by Olivier Galibert
floptool stream work
[src/mess/tools/floptool]main.c

trunk/src/mess/tools/floptool/main.c
r243806r243807
124124   fprintf(stderr, "Usage: \n");
125125   fprintf(stderr, "       floptool.exe identify <inputfile> [<inputfile> ...]\n");
126126   fprintf(stderr, "       floptool.exe convert [input_format|auto] output_format <inputfile> <outputfile>\n");
127   fprintf(stderr, "       floptool.exe stream-to-flux <inputfile> <outputfile> [half|quarter|<track> <subtrack> <head>]\n");
127128}
128129
129130static void display_formats()
r243806r243807
265266
266267   if (!core_stricmp("identify", argv[1]))
267268      return identify(argc, argv);
269
268270   else if (!core_stricmp("convert", argv[1]))
269271      return convert(argc, argv);
272
273   else if (!core_stricmp("stream-to-flux", argv[1]))
274      return stream_to_flux(argc, argv);
275
270276   else {
271277      fprintf(stderr, "Unknown command '%s'\n\n", argv[1]);
272278      display_usage();


Previous 199869 Revisions Next


© 1997-2024 The MAME Team