Skip to content

Commit

Permalink
/MAP option
Browse files Browse the repository at this point in the history
  • Loading branch information
prokushev committed Oct 17, 2024
1 parent 81e587b commit bc16fbd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tools/bind/bind.c
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ int main(int argc, char *argv[])
case 'M':
if (!strncmp(_strupr(optarg), "AP", 2))
{
printf("MAP\n");
options.map=1;
break;
}

Expand Down Expand Up @@ -877,6 +877,7 @@ int main(int argc, char *argv[])
fputs("system dos\n",f);
fputs("name fstub.exe\n" , f);
fputs("file tmp.obj\n", f);
if (options.map) fputs("op m\n", f);
/*if (DoscallsLIB)
{
fputs("lib doscalls.lib\n", f);
Expand Down

0 comments on commit bc16fbd

Please sign in to comment.