1
0
mirror of https://github.com/cc65/cc65.git synced 2024-09-27 04:54:54 +00:00

The C128 runtime now takes command line arguments

git-svn-id: svn://svn.cc65.org/cc65/trunk@2991 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2004-04-28 09:53:30 +00:00
parent 6211fe8205
commit 2ca1fbab34

View File

@ -265,7 +265,22 @@ does not exist).
<sect1>Passing arguments to the program<p>
Command line argument passing is currently not supported for the C128.
Command line arguments can be passed to <tt/main()/. Since this is not
supported by BASIC, the following syntax was choosen:
<tscreen><verb>
RUN:REM ARG1 " ARG2 IS QUOTED" ARG3 "" ARG5
</verb></tscreen>
<enum>
<item>Arguments are separated by spaces.
<item>Arguments may be quoted.
<item>Leading and trailing spaces around an argument are ignored. Spaces within
a quoted argument are allowed.
<item>The first argument passed to <tt/main/ is the program name.
<item>A maximum number of 10 arguments (including the program name) are
supported.
</enum>
<sect1>Program return code<p>