Skip to content

Commit 6b254d8

Browse files
authored
Merge pull request #465 from boriel/chore/update_README_file
Update README.md file
2 parents 9f442fe + 148b1f8 commit 6b254d8

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,14 @@ There are, basically, two flavors (both with identical capabilities):
4747

4848
- For Windows you can download de win32 executable (Windows .exe zip package) version.
4949
To install just uncompress it in a directory of your choice.
50-
The main executable is `zxb.exe` (more on this later). With this toolchain
50+
The main executable is `zxbc.exe` (more on this later). With this toolchain
5151
also comes `zxbasm.exe` (the assembler) and `zxbpp.exe` (the preprocessor), but these
5252
are not needed when programming in BASIC.
5353

5454
- For Linux and Mac OSX there is a python version, so you will need a python
5555
interpreter (available on many platforms, and usually already installed in Linux and Mac OSX).
5656
Just uncompress it in a directory of your choice and installation is done. :-)
57-
The main executables are `zxb.py` (the compiler), `zxbasm.py` (the assembler) and `zxbpp.py` (the preprocessor).
57+
The main executables are `zxbc.py` (the compiler), `zxbasm.py` (the assembler) and `zxbpp.py` (the preprocessor).
5858
You can use this version in Windows, but will need to install a python interpreter first.
5959

6060
##### Examples
@@ -70,17 +70,17 @@ QUICK START
7070
-----------
7171

7272
For a quick start, just open a terminal in your PC in the same directory you uncompressed ZX Basic
73-
and type `zxb` (on Windows) or `zxb.py` (OSX, Linux). You should see a zxbasic message like this:
73+
and type `zxbc` (on Windows) or `zxbc.py` (OSX, Linux). You should see a zxbasic message like this:
7474

7575
```
76-
usage: zxb [-h] [-d] [-O OPTIMIZE] [-o OUTPUT_FILE] [-T] [-t] [-B] [-a] [-A]
76+
usage: zxbc [-h] [-d] [-O OPTIMIZE] [-o OUTPUT_FILE] [-T] [-t] [-B] [-a] [-A]
7777
[-S ORG] [-e STDERR] [--array-base ARRAY_BASE]
7878
[--string-base STRING_BASE] [-Z] [-H HEAP_SIZE] [--debug-memory]
7979
[--debug-array] [--strict-bool] [--enable-break] [-E] [--explicit]
8080
[-D DEFINES] [-M MEMORY_MAP] [-i] [-I INCLUDE_PATH] [--strict]
8181
[--version]
8282
PROGRAM
83-
zxb: error: the following arguments are required: PROGRAM
83+
zxbc: error: the following arguments are required: PROGRAM
8484
```
8585

8686
Create a text file with the following content:
@@ -92,7 +92,7 @@ Create a text file with the following content:
9292

9393
Save it as `hello.bas` and finally compile it with:
9494
~~~~
95-
zxb -taB hello.bas
95+
zxbc -taB hello.bas
9696
~~~~
9797

9898
If everything went well, a file named `hello.tap` should be created.

0 commit comments

Comments
 (0)