| 108 | } |
| 109 | |
| 110 | private static void showHelp() { |
| 111 | for (String s : new String[]{ |
| 112 | "ConvertDiskImage", |
| 113 | "----------------", |
| 114 | "Usage: java -cp jace.jar jace.ConvertDiskImage DISK_INPUT_NAME DISK_OUTPUT_NAME", |
| 115 | "where DISK_INPUT_NAME is the path of a valid disk image, ", |
| 116 | "and DISK_OUTPUT_NAME is the path where you want to ", |
| 117 | "save the converted disk image.", |
| 118 | "Supported input formats: ", |
| 119 | " DSK (assumes DO), DO, PO, 2MG (140kb), NIB", |
| 120 | "Supported output formats: ", |
| 121 | " DO/DSK, PO, NIB" |
| 122 | }) { |
| 123 | System.out.println(s); |
| 124 | } |
| 125 | } |
| 126 | } |