Skip to content

Commit 7776dd1

Browse files
committed
update readme
1 parent 527fdab commit 7776dd1

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,15 @@ Run the interpreter and pass the path to your BASIC program:
128128
basic.exe hello.bas # Windows
129129
```
130130

131+
#### Command-line options
132+
133+
- **`-petscii` / `--petscii`**: enable PETSCII/ANSI mode so that certain `CHR$` control codes
134+
(cursor movement, clear screen, colors, etc.) are translated to ANSI escape sequences.
135+
- **`-palette ansi|c64`**: choose how PETSCII colors are mapped:
136+
- **`ansi`** (default): map colors to standard 16-color ANSI SGR codes.
137+
- **`c64`** or **`c64-8bit`**: use 8‑bit (`38;5;N`) color indices chosen to approximate
138+
the classic C64 palette. This is most consistent on terminals that support 256 colors.
139+
131140
You can also enable a **PETSCII/ANSI mode** that understands common C64 control codes inside strings and `CHR$` output:
132141

133142
```bash
@@ -163,7 +172,7 @@ In `-petscii` mode, `CHR$` maps a few PETSCII control bytes to ANSI escape seque
163172
If you do not pass a file name, the interpreter will print usage information:
164173

165174
```text
166-
Usage: basic [-petscii] <program.bas>
175+
Usage: basic [-petscii] [-palette ansi|c64] <program.bas>
167176
```
168177

169178
### Included example programs

examples/dartmouth.bas

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
901 DATA "JUDY IN DISGUISE","JOHN FRED AND HIS PLAYBOY BAND",2
7878
902 DATA "GREEN TAMBOURINE","THE LEMON PIPERS",1
7979
903 DATA "LOVE IS BLUE","PAUL MAURIAT",5
80-
904 DATA "(SITTINREM ON) THE DOCK OF THE BAY","OTIS REDDING",4
80+
904 DATA "(SITTIN ON) THE DOCK OF THE BAY","OTIS REDDING",4
8181
905 DATA "HONEY","BOBBY GOLDSBORO",5
8282
906 DATA "TIGHTEN UP","ARCHIE BELL & THE DRELLS",3
8383
907 DATA "MRS. ROBINSON","SIMON & GARFUNKEL",3

0 commit comments

Comments
 (0)