mirror of
https://github.com/a2stuff/prodos-path.git
synced 2024-12-26 22:30:54 +00:00
doc improvements
This commit is contained in:
parent
b63dabb7cd
commit
434c8689a0
@ -25,8 +25,8 @@ cmdname - load and execute named CMD, if in PATH
|
|||||||
Example:
|
Example:
|
||||||
```
|
```
|
||||||
] -/hd/cmd/path - install it
|
] -/hd/cmd/path - install it
|
||||||
] PATH /hd/cmd:/h2/bin - set PATH
|
] PATH /hd/cmd:/h2/bin - set search path with two directories
|
||||||
] PATH - verify path
|
] PATH - verify search path
|
||||||
/hd/cmd:/h2/bin
|
/hd/cmd:/h2/bin
|
||||||
] BELL - will invoke /hd/cmd/BELL if present
|
] BELL - will invoke /hd/cmd/BELL if present
|
||||||
] HELLO - will invoke /hd/cmd/HELLO if present
|
] HELLO - will invoke /hd/cmd/HELLO if present
|
||||||
@ -75,7 +75,9 @@ Behavior of `PATH`:
|
|||||||
|
|
||||||
Protocol for `CMD` files:
|
Protocol for `CMD` files:
|
||||||
|
|
||||||
* CMD file is loaded at $4000 and invoked; should return (`rts`) on completion.
|
* CMD file is loaded at $4000 and invoked.
|
||||||
* $4000-$5FFF is assumed reserved for the CMD file and any buffers it needs.
|
* $4000-$5FFF is assumed reserved for the CMD file and any buffers it needs.
|
||||||
* The command line will be present at $200 (`GETLN` input buffer).
|
* The command line will be present at $200 (`GETLN` input buffer).
|
||||||
* Commands can use the BI parser for arguments. See `chtype.cmd.s` for an example.
|
* Commands can use the BI parser for arguments. See `chtype.cmd.s` for an example.
|
||||||
|
* Exit with `CLC` then `RTS` to return to the ProDOS BASIC prompt.
|
||||||
|
* To signal an error, `LDA` with a BI error code, then `SEC` and `RTS`.
|
||||||
|
Loading…
Reference in New Issue
Block a user