Create README.md

This commit is contained in:
Joshua Bell 2018-12-31 20:59:35 -08:00 committed by GitHub
parent 197d0dad90
commit 4b1484705b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 23 additions and 0 deletions

23
README.md Normal file
View File

@ -0,0 +1,23 @@
# chtype - change file type command for ProDOS
Build with [ca65](https://cc65.github.io/doc/ca65.html)
Installation:
* Copy target to ProDOS disk
* From BASIC.SYSTEM prompt, run: `-CHTYPE` from STARTUP (or by hand)
Usage:
```
CHTYPE pathname,Ttype[,Aauxtype][,S#][,D#]
```
Examples:
* `CHTYPE pic,T$08`
* `CHTYPE /root/was_bin,TSYS`
* `CHTYPE now_basic,TBAS,A$801`
* `CHTYPE as_text,TTXT,S6,D1`
Notes:
* Allocates a 1 page buffer to store the code
* Relative or absolute paths can be used
* Can be invoked as lower case (e.g. `chtype ...`)