@@ -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.
4949To 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
5151also comes ` zxbasm.exe ` (the assembler) and ` zxbpp.exe ` (the preprocessor), but these
5252are not needed when programming in BASIC.
5353
5454 - For Linux and Mac OSX there is a python version, so you will need a python
5555interpreter (available on many platforms, and usually already installed in Linux and Mac OSX).
5656Just 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).
5858You 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
7272For 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
8686Create a text file with the following content:
@@ -92,7 +92,7 @@ Create a text file with the following content:
9292
9393Save it as ` hello.bas ` and finally compile it with:
9494~~~~
95- zxb -taB hello.bas
95+ zxbc -taB hello.bas
9696~~~~
9797
9898If everything went well, a file named ` hello.tap ` should be created.
0 commit comments