Sinclair BASIC

From Infogalactic: the planetary knowledge core
Jump to: navigation, search

Lua error in package.lua at line 80: module 'strict' not found.

Sinclair BASIC
Paradigm Imperative
Developer Nine Tiles Networks, Sinclair
First appeared 1979; 45 years ago (1979)
Platform ZX80, ZX81, ZX Spectrum
License Proprietary
Website {{#property:P856}}

Sinclair BASIC is a dialect of the BASIC programming language used in the 8-bit home computers from Sinclair Research and Timex Sinclair. The Sinclair BASIC interpreter was made by Nine Tiles Networks Ltd.[1]

History

Sinclair BASIC was originally developed in 1979 for the ZX80 by Nine Tiles. The programmers were John Grant, the owner of Nine Tiles, and Steve Vickers.

It was initially an incomplete implementation of the 1978 ANSI minimal BASIC standard with integer arithmetic only, known as the 4K BASIC (for its ROM size) for the ZX80. It evolved through the floating-point 8K BASIC for the ZX81 and TS1000 (which was also available as an upgrade for the ZX80[2]), and became an almost complete version in the 16 KB ROM ZX Spectrum. It is present in all ZX Spectrum compatibles.

Currently, interpreters exist for modern operating systems (as well as for vintage systems) that allow Sinclair Basic to be easily used.

Syntax

New BASIC programmers might start with a simple program, perhaps using the language's PRINT statement to display a message on the screen; a well-known and often-replicated example is Kernighan and Ritchie's Hello world program:

  10 PRINT "Hello, World!"
  20 STOP

Keywords

On the 16K/48K ZX Spectrum, there are 88 keywords in Sinclair BASIC, denoting commands (of which there were 51), functions and logical operators (32), and other keywords (5):

Commands
BEEP, BIN, BORDER, BRIGHT,[note 1] CAT,[note 2] CIRCLE, CLEAR, CLOSE #,[note 2] CLS, CONTINUE, COPY, DATA, DEF FN, DIM, DRAW, ERASE,[note 2] FLASH,[note 1] FORMAT,[note 2] FOR,[note 3] GO SUB, GO TO, IF,[note 4] INK,[note 1] INPUT, INVERSE,[note 1] LET, LIST, LLIST, LOAD, LPRINT, MERGE, MOVE,[note 2] NEW, NEXT, OPEN #,[note 2] OUT, OVER,[note 1] PAPER,[note 1] PAUSE, PLOT, POKE, PRINT, RANDOMIZE, READ, REM, RESTORE, RETURN, RUN, SAVE, STOP, VERIFY
Functions and logical operators
ABS, ACS, AND,[note 5] ASN, ATN, ATTR, CHR$,[note 6] CODE,[note 6] COS, EXP, FN, INKEY$,[note 6] INT, IN, LEN, LN, NOT,[note 5] OR,[note 5] PEEK, PI, POINT, RND, SCREEN$,[note 6] SGN, SIN, SQR, STR$,[note 6] TAN, TO, USR,[note 7] VAL,[note 6] VAL$,[note 6][note 8]
Other keywords
AT, LINE, STEP, TAB, THEN[note 4]

They are entered via Sinclair's unique keyword entry system. The most common commands require just a single keystroke; for example, pressing just P at the start of a line on a Spectrum produces the entire command PRINT. Less frequent commands require more complex key sequences: BEEP (for example) is keyed by pressing CAPS SHIFT plus SYMBOL SHIFT to access extended mode (later models include an EXTENDED MODE key), keeping SYMBOL SHIFT held down and pressing Z. Keywords are color-coded on the original Spectrum keyboard to indicate which mode is required.

The ZX81 8K BASIC used the shorter forms GOTO, GOSUB, CONT and RAND, whereas the Spectrum used the longer forms GO TO, GO SUB, CONTINUE and RANDOMIZE. The ZX80 4K BASIC also used these longer forms but with differed by using the spelling RANDOMISE. The ZX81 8K BASIC was the only version to use FAST, SCROLL, SLOW and UNPLOT. The ZX80 4K BASIC had the exclusive function TL$(); it was equivalent to the string operator (2 TO ) in later versions.

Unique code points are assigned in the ZX80 character set, ZX81 character set and ZX Spectrum character set for each keyword or multi-character operator, i.e. <=, >=, <>, "" (tokenized on the ZX81 only), ** (replaced with on the Spectrum). These are expanded by referencing a token table in ROM. As a result, a keyword uses just one byte of memory, a significant saving over traditional letter-by-letter storage. This also meant that the BASIC interpreter could quickly determine any command or function by evaluating a single byte, and that the keywords didn't need to be reserved words like in other BASIC dialects or other programming languages, e.g. it is allowed to define a variable named PRINT and output its value with PRINT PRINT. This is also related to the syntax requirement that every line start with a command keyword, and pressing the single keypress for that command at the start of a line changes the editor from command mode to letter mode. As a consequence, variable assignment requires LET (i.e., LET a=1 not just a=1). This practice is also different from other BASIC dialects. Further, it meant that unlike other BASIC dialects the interpreter didn't require parentheses to identify functions; SIN x was sufficient, no SIN(x) required (although the latter would be allowed). The 4K BASIC ROM of the ZX80 had a short list of exceptions to this: the functions CHR$(), STR$(), TL$(), PEEK(), CODE(), RND(), USR() and ABS() did not have single-byte tokens but were typed in letter-by-letter and required the parentheses. They were listed as the INTEGRAL FUNCTIONS on a label above and to the right of the keyboard.[3]

The 128K Spectrum models—the ZX Spectrum 128, +2, +3, +2A, and +2B—also stored keywords internally in single byte code points but used a conventional letter-by-letter BASIC input system. They also introduced two new commands:

  • PLAY, which operated the 128k models' AY-3-8910 music chip
  • SPECTRUM, which switched the 128k Spectrum into a 48k Spectrum compatibility mode

The original Spanish ZX Spectrum 128 included four additional commands in Spanish,[4] one of which was undocumented. These can be translated as:

  • EDIT (to edit a line number or invoke the full screen string editor)
  • RENUM (to renumber the program lines)
  • DELETE (to delete program lines)
  • WIDTH (to set the column width of the RS232 device, but undocumented as the code was broken)

Unlike the LEFT$(), MID$() and RIGHT$() functions used in the ubiquitous Microsoft BASIC dialects for home computers, parts of strings in Sinclair BASIC are accessed by numeric range. For example, a$(5 TO 10) will give a substring starting with the 5th and ending with the 10th character of the variable a$. It is therefore possible to replace the LEFT$() and RIGHT$() commands simply by omitting the left or right array position respectively; for instance a$( TO 5) is equivalent to LEFT$(a$,5). Further, a$(5) alone is enough to replace MID$(a$,5,1).

Official versions

  • 4K BASIC is the original ZX80 BASIC with integer-only arithmetic, by John Grant of Nine Tiles for the ZX80, so named for residing in 4 KiB ROM.
  • 8K BASIC is the ZX81 BASIC (also available as an upgrade for the ZX80[2]), updated with floating-point arithmetic by Steve Vickers, so named for residing in 8 KiB ROM.
  • 48 BASIC is the BASIC for the original 16/48 kB RAM ZX Spectrum (and clones), with color and more peripherals added by Steve Vickers and John Grant for the (and clones). It resides in 16 KiB ROM and began to be called 48 BASIC with the introduction of the ZX Spectrum 128[5]
  • 128 BASIC is the BASIC for the ZX Spectrum 128.[6] It offers extra commands and uses letter-by-letter input.
  • +3 BASIC is the BASIC with disk support for the ZX Spectrum +3.[5]
  • T/S 2000 BASIC was used on the Spectrum-compatible TS2068 and has the following six keywords as well as the ordinary Sinclair BASIC ones:
    • DELETE deletes BASIC program line ranges. Shift+0 with the K cursor produces the command DELETE.
    • FREE is a function that gives the amount of free RAM. PRINT FREE will show how much RAM is free.
    • ON ERR is an error-handling function mostly used as ON ERR GO TO or ON ERR CONT.
    • RESET can be used to reset the behaviour of ON ERR. It was also intended to reset peripherals.
    • SOUND controls the AY-3-8192 sound chip.
    • STICK is a function that gives the position of the internal joystick (Timex Sinclair 2090).
  • BASIC64, released by Timex of Portugal, is a software extension[7] to allow better Basic programming with the 512×192 graphic mode available only on Timex 2000 series computers. This extension adds commands and does a complete memory remap to avoid the system overwriting the extended screen memory area. Two versions exist due to different memory maps - a version for TC2048 and a version for TS/TC2068.

Other versions, extensions, derivatives and successors

Interpreters for the ZX Spectrum computer family[8]

Compilers for the ZX Spectrum computer family[8]

  • HiSoft COLT Compiler (a.k.a HiSoft COLT Integer Compiler)[14]
  • HiSoft BASIC (a.k.a. HiSoft BASIC Compiler), an integer and floating-point capable compiler[15]
  • Laser Compiler[16]
  • Softek 'IS' Integer Compiler[17] (successor to Softek Integer Compiler[18])
  • Softek 'FP' Full Compiler[19]
  • ZIP Compiler[20]

Derivatives and successors for other machines

  • SuperBASIC, a much more advanced BASIC dialect introduced with the Sinclair QL personal computer, with some similarities to the earlier Sinclair BASICs
  • SAM Basic, the BASIC on the SAM Coupé, generally considered a ZX Spectrum clone
  • ROMU6 by Cesar and Juan Hernandez - MSX[8]
  • Spectrum 48 by Whitby Computers - Commodore 64[8]
  • Sparky eZX BASIC by Richard Kelsh, an operating system loosely based on ZX Spectrum BASIC - Zilog eZ80[21]
  • Sinbas by Pavel Napravnik - MS-DOS[8]
  • Basic[22] (and CheckBasic[23]) by Philip Kendall - Unix
  • BINSIC[24] by Adrian McMenamin, a reimplementation in Groovy closely modelled on ZX81 BASIC - Java
  • BASin[25] by Paul Dunn, a complete Sinclair BASIC IDE based around a ZX Spectrum emulator[8] - Windows
  • SpecBAS[26] (a.k.a. SpecOS) by Paul Dunn, an IDE providing an enhanced superset of Sinclair BASIC - Windows, Linux, Pandora and Raspberry Pi

See also

Notes

  1. 1.0 1.1 1.2 1.3 1.4 1.5 INK, PAPER, FLASH, BRIGHT, OVER and INVERSE set attributes for outputting text and graphics to the screen. They can be used either as commands, to apply to all subsequent output until set again, or within a PRINT statement, to apply only from that point until the end of the statement.
  2. 2.0 2.1 2.2 2.3 2.4 2.5 CAT, ERASE, FORMAT and MOVE were originally designed to be used with peripherals, but at the launch of ZX Spectrum, they had not been completely implemented, such that their use generated an error message (Invalid Stream). Later with the aid of the ZX Interface 1 shadow ROM, they were used for the ZX Microdrive. (The shadow ROM was paged when the BASIC interpreter detected a syntax error, which is why most ZX Microdrive commands use a "*").
  3. The control variable of a FOR loop must consist of only one alphabetical character.
  4. 4.0 4.1 Unlike many other BASIC dialects, Sinclair Basic did not include the ELSE operator in the IFTHEN(–ELSE) clause. A workaround would be to use use an IFTHENGO TO construct instead, bypassing the lines that would have been in an ELSE clause with the GO TO
  5. 5.0 5.1 5.2 The AND, NOT, and OR functions are logical operators.
  6. 6.0 6.1 6.2 6.3 6.4 6.5 6.6 String variable names must consist of only one alphabetical character. Thus, LET a=5, LET Apples=5, and LET a$="Hello" are all good, while LET Apples$="Fruit" is not.
  7. Machine code could be executed using the USR function, the value provided being the start address of the machine code to execute and the return value being the contents of the BC register pair (unlike most other Z80 based computers that returned the value of the HL register pair), thus LET a=USR 30000 would call the machine code subroutine starting at memory address 30000, and after it returns would store the value of the BC register pair into the variable a for further use.
  8. The VAL function does not just evaluate numbers, but also evaluates full expressions. For example, PRINT VAL a$ will output 14 when given an a$ of "3*3+4+COS 0". VAL$ does the same for string expressions.

References

  1. Lua error in package.lua at line 80: module 'strict' not found.
  2. 2.0 2.1 Lua error in package.lua at line 80: module 'strict' not found.
  3. Lua error in package.lua at line 80: module 'strict' not found.
  4. Spectrum 128 ROM Disassembly - Spanish Spectrum 128
  5. 5.0 5.1 http://www.worldofspectrum.org/ZXSpectrum128+3Manual/chapter7.html
  6. http://www.worldofspectrum.org/ZXSpectrum128Manual/sp128p06.html
  7. http://timex.comboios.info/tmxtechb64-2048.html
  8. 8.0 8.1 8.2 8.3 8.4 8.5 8.6 8.7 http://www.worldofspectrum.org/sinclairbasic/
  9. Lua error in package.lua at line 80: module 'strict' not found.
  10. http://www.wearmouth.demon.co.uk/
  11. https://sites.google.com/site/ulaplus/
  12. http://www.fruitcake.plus.com/Sinclair/Interface2/Cartridges/Interface2_RC_New_3rdParty_SEBASIC.htm
  13. https://sourceforge.net/projects/sebasic/
  14. http://www.worldofspectrum.org/infoseekid.cgi?id=0008254
  15. http://www.worldofspectrum.org/infoseekid.cgi?id=0008249
  16. http://www.worldofspectrum.org/infoseekid.cgi?id=0008329
  17. http://www.worldofspectrum.org/infoseekid.cgi?id=0008696
  18. http://www.worldofspectrum.org/infoseekid.cgi?id=0008282
  19. http://www.worldofspectrum.org/infoseekid.cgi?id=0008693
  20. http://www.worldofspectrum.org/infoseekid.cgi?id=0009452
  21. http://rk-internet.com/eZXSparky/
  22. http://www.shadowmagic.org.uk/spectrum/basic.html
  23. http://www.shadowmagic.org.uk/spectrum/checkbasic.html
  24. http://cartesianproduct.wordpress.com/binsic-is-not-sinclair-instruction-code/
  25. https://sites.google.com/site/ulaplus/home/zx-spin-and-basin
  26. https://sites.google.com/site/pauldunn/

Bibliography

  • Vickers, Steven (1982). Sinclar ZX Spectrum BASIC Programming. Sinclair Research.
  • Ardley, Neil (1984). Sinclair ZX Spectrum+ User Guide. Dorling Kindersley in association with Sinclair Research. ISBN 0-86318-080-9.

External links