Sinclair BASIC

From Wikipedia, the free encyclopedia

Sinclair BASIC (taking its name from innovator Sir Clive Sinclair) 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.

Originally developed in 1979 to fit in the 4 kB ROM of the ZX80, it was initially an incomplete implementation of the 1978 ANSI minimal BASIC standard and evolved through the 8 kB ROM ZX81 and TS1000 to be an almost complete version in the 16 kB ROM ZX Spectrum.

Contents

[edit] Original Sinclair BASIC

A ZX81 BASIC editing session invoked in order to change the behaviour of a computer game. The larger upper portion of the screen shows a portion of the currently loaded program, 3D Monster Maze. The currently selected line is marked with the "program cursor", the inverse greater than sign. The lower portion of the screen shows the current version of the edited line in the line-oriented editor buffer. The current insert position is marked with the inverse letter cursor; the letter L signifies that the keyboard is in the ordinary letter input mode. The user has just changed the busy-waiting loop upper limit to the minimum, as per the original game instructions, to maximize the in-game speed; hitting ENTER will commit the change.
A ZX81 BASIC editing session invoked in order to change the behaviour of a computer game.

The larger upper portion of the screen shows a portion of the currently loaded program, 3D Monster Maze. The currently selected line is marked with the "program cursor", the inverse greater than sign. The lower portion of the screen shows the current version of the edited line in the line-oriented editor buffer. The current insert position is marked with the inverse letter cursor; the letter L signifies that the keyboard is in the ordinary letter input mode. The user has just changed the busy-waiting loop upper limit to the minimum, as per the original game instructions, to maximize the in-game speed; hitting ENTER will commit the change.

[edit] Reserved words

On the Spectrum there are 86 reserved words in Sinclair BASIC, denoting commands (of which there were 50), functions (31), and other keywords (5). They were entered with the ZX Spectrum's sometimes obtuse context-based keyword entry system, whereby BEEP (for example), was keyed by pressing CAPS plus SYMBOL SHIFT, followed by SYMBOL SHIFT plus Z.

ABS, ACS, AND1, ASN, AT, ATN, ATTR, BEEP, BIN, BORDER, BRIGHT, CAT2, CHR$3, CIRCLE, CLEAR, CLOSE#2, CLS, CODE3, CONTINUE, COPY, COS, DATA, DEF FN, DIM, DRAW, ERASE2, EXP, FLASH, FN, FOR, FORMAT2, GO SUB, GO TO, IF4, IN, INK, INKEY$3, INPUT, INT, INVERSE, LEN, LET5, LINE, LIST, LLIST, LN, LOAD, LPRINT, MERGE, MOVE2, NEW, NEXT, NOT1, OPEN#2, OR1, OUT, OVER, PAPER, PAUSE, PEEK, PI, PLOT, POINT, POKE, PRINT, RANDOMIZE, READ, REM, RESTORE, RETURN, RND, RUN, SAVE, SCREEN$3, SGN, SIN, SQR, STEP, STR$3, TAB, TAN, THEN 4, TO, USR, VAL3, 6, VAL$3, VERIFY

Commands found exclusively on the ZX81 and its clones the TS1000 and TS1500 are:

FAST, SCROLL, SLOW, UNPLOT, GOSUB, GOTO (vs the Spectrum's functionally identical GO SUB, GO TO)

The Spectrum 128K models—the Spectrum 128K, Spectrum +2, +3, +2A, and +2B—introduced a conventional letter-by-letter BASIC input system, and two new commands, neither of which were present or recognised by the machine's legacy version of 48K BASIC:

PLAY (which operated the 128K model's new AY-3-8910 music chip), SPECTRUM (which switched the 128K Spectrum into a 48K Spectrum compatibility mode)

[edit] Notes

  1. The AND, NOT, and OR functions are logical operators.
  2. 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. 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.
  4. Unlike most other BASIC dialects, there is no ELSE operator in the IF–THEN(–ELSE) clause.
    Thus, instead of
       10 IF V=5 THEN GO TO 50 ELSE GO TO 100
    it is
       10 IF V=5 THEN GO TO 50
       20 GO TO 100
  5. LET is compulsory (i.e., «LET A=1» but never «A=1»). This practice is also different from most other BASIC dialects.
  6. The VAL function does not just evaluate numbers but instead evaluates full expressions. For example, «PRINT VAL(A$)» will output 14 when given an A$ of "3*3+4+COS(0)".

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 in a manner similar to arrays. For example, «A$ (5 TO 10) » will give a substring starting with the 5th and ending with the 10th character of A$.

[edit] Timex BASIC

The Timex BASIC dialect, used on the Spectrum-compatible TS2068, but not the TC2048, which used the ordinary Sinclair BASIC, has the following six keywords as well as the ordinary Sinclair BASIC ones:

DELETE, FREE, ON ERR, RESET, SOUND, STICK

DELETE deletes BASIC program lines. 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 a error detection function mostly used as ON ERR GO TO or ON ERR GO SUB
RESET has no use on the basic machine. It was intended to reset peripherals
SOUND commands the AY-3-8192 sound ship
STICK is a function that gives the position of the internal joystick (Timex Sinclair 2090)

[edit] Extensions and variants

  • Beta BASIC, written by Dr. Andy Wright, was originally a BASIC extension, but ended up as a full-fledged interpreter.
  • SAM BASIC, also written by Dr. Andy Wright, was the BASIC used for the SAM Coupé, and was backwards compatible with the ZX Spectrum's BASIC.
  • Sinclair Extended BASIC is an ongoing retrocomputing project aiming for an improved version of Sinclair BASIC (beta versions available as of July 2005).

[edit] References

  • 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.

[edit] External links