exeflat: update usage screen with -E, -D, and -U switches

This commit is contained in:
C. Masloch 2022-05-26 11:50:39 +02:00 committed by Kenneth J Davis
parent e3e58ee3fd
commit 70c498a309
1 changed files with 4 additions and 3 deletions

View File

@ -81,9 +81,10 @@ static int compReloc(const void *p1, const void *p2)
static void usage(void)
{
printf("usage: exeflat (src.exe) (dest.sys) (relocation-factor)\n");
printf
(" -S10 - Silent relocate segment 10 (down list)\n");
printf(" -S10 - Silent relocate segment 10 (down list)\n");
printf(" -E(path/to/upxentry.bin) - Omit to force DOS/SYS compression\n");
printf(" -D(path/to/upxdevic.bin) - Omit to force DOS/EXE compression\n");
printf(" -U (command) (parameters) - Specify to use UPX compression\n");
exit(1);
}