Fix doumentation for command line

This commit is contained in:
drmortalwombat 2021-09-28 20:03:26 +02:00
parent e713dc5940
commit 3a7e74938e
2 changed files with 2 additions and 2 deletions

View File

@ -70,7 +70,7 @@ After four weeks, the compiler has now matured significantly. There are still s
The compiler is command line driven, and creates an executable .prg file.
oscar64 {-i=includePath} [-o=output.prg] [-cr=runtime.c] [-e] [-n] [-dSYMBOL[=value]] {source.c}
oscar64 {-i=includePath} [-o=output.prg] [-rt=runtime.c] [-e] [-n] [-dSYMBOL[=value]] {source.c}
* -i : additional include paths
* -o : optional output file name

View File

@ -171,7 +171,7 @@ int main(int argc, const char** argv)
}
else
{
printf("oscar64 {-i=includePath} [-o=output.prg] [-cr=runtime.c] [-e] [-n] [-dSYMBOL[=value]] {source.c}\n");
printf("oscar64 {-i=includePath} [-o=output.prg] [-rt=runtime.c] [-e] [-n] [-dSYMBOL[=value]] {source.c}\n");
return 0;
}