]> git.sur5r.net Git - cc65/commit
Added cmdline support to exec().
authorOliver Schmidt <ol.sc@web.de>
Sun, 26 Apr 2015 12:01:36 +0000 (14:01 +0200)
committerOliver Schmidt <ol.sc@web.de>
Sun, 26 Apr 2015 12:09:20 +0000 (14:09 +0200)
commit3c1cd0d86778d3365dfb125db595ead31f201d16
tree9cc2d6a0fc6282fb45f6ec2412c4fda3ff835ea6
parent88fe6b615b850d41e7d0f1b44bfa592fa7faf3e1
Added cmdline support to exec().

The starting point is the CALL2051:REM <cmdline> approach. It uses the BASIC input buffer at $200. ProDOS stores the name of the loaded program at $280 (which we want for argv[0]) leaving us with 128 char buffer. If we run the program via exec() we don't need the CALL2051 but only the REM token (which is just one char). So have a maximum cmdline length of 126 (plus a terminating zero).

There's no specification for ProDOS BIN file cmdline parameters so exec() just supports the CALL2051:REM <cmdline> approach. In contrast ProDOS SYS files allow for a 'startup filename'. A ProDOS filename is short than 126 chars so having exec() general cut the cmdline after 126 chars seems reasonable. If the SYS file we exec() allows for less we cut the cmdline further.

Our 'loader.system' SYS file however allows for an unusually 126 char long "startup filename" as it is targeted towards cc65 BIN porgrams with their 126 cmdline length.
libsrc/apple2/exec.s
libsrc/apple2/mainargs.s
libsrc/apple2/targetutil/loader.s