From 3a7e74938e29a8b1925dc4f447c89d7e1b03e0fb Mon Sep 17 00:00:00 2001 From: drmortalwombat <90205530+drmortalwombat@users.noreply.github.com> Date: Tue, 28 Sep 2021 20:03:26 +0200 Subject: [PATCH] Fix doumentation for command line --- README.md | 2 +- oscar64/oscar64.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fc73494..374e179 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/oscar64/oscar64.cpp b/oscar64/oscar64.cpp index 78a178e..a155055 100644 --- a/oscar64/oscar64.cpp +++ b/oscar64/oscar64.cpp @@ -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; }