ZX BASIC:Types
From BorielWiki
Contents |
[edit] Introduction
Although ZX BASIC was originally designed with ZX Spectrum in mind, it is a three-stage retargeable compiler. This means it should not be difficult to ZX BASIC to compile for other machines (E.g. Commodore 64) or current machines (PC) or even virtual machines like Java or .NET. Porting ZX BASIC to other Z80 architectures like Amstrad or MSX should be almost straightforward (only the library.asm should need some work to use different ROM routines).
Once said that, data types where designed for the Z80 platform. So, for example 64 bits integers are not implemented.
[edit] Types
There are 3 kinds of types:
[edit] Integers
Integers are a numeric type. They can be unsigned (their value is always 0 or positive) or signed (can take negative values). ZX Basic integer types sizes are 8, 16 and 32 bits. Unsigned types have the prefix U.
[edit] Byte
8 bit signed integer. Ranges from -128 to +127.
[edit] UByte
8 bit unsigned integer. Ranges from 0 to 255.
[edit] Integer
16 bit signed integer. Ranges from -32768 to +32767.
[edit] Uinteger
16 bit unsigned integer. Ranges from 0 to 65535.
[edit] Long
32 bit signed integer. Ranges from −2,147,483,648 to +2,147,483,647.
[edit] ULong
32 bit unsigned integer. Ranges from 0 to 4,294,967,295.
[edit] Decimals
Decimals, as suggested, stores decimal numeric types. Their sizes are 32 bit for Fixed type and 40 bytes for Float one.
[edit] Fixed
32 bit Fixed Point decimal. First 16 bits are the integer part, whilst remaining 16 contains the decimal one. Ranges from -32767.9999847 to 32767.9999847 with a precision of 1 / 2^16 (0.000015 aprox.). Fixed points decimal are less precise than Floating ones, but much faster and requires less space (1 byte less). Also, their range is much limited. They're usually used on screen drawing when Floating point is too slow and decimal calculations are required.
[edit] Float
Floating point type is the same used in Sinclair BASIC. It uses 40 bytes (8 bits for exponent, 32 bits for mantissa). Read the ZX Spectrum manual or here.
To store the number in the computer, we use five bytes, as follows:
- write the first eight bits of the mantissa in the second byte (we know that the first bit is 1), the second eight bits in the third byte, the third eight bits in the fourth byte and the fourth eight bits in the fifth byte;
- replace the first bit in the second byte which we know is 1 by the sign: 0 for plus, 1 for minus;
- write the exponent +128 in the first byte. For instance, suppose our number is 1/10
1/10 = 4/5x2-3
[edit] Strings
String types are used to store alphanumerical strings. Strings can contain up to 65535 characters, and they can change its size dynamically so, unlike other data types, their content is stored in a different memory area, called the heap.
[edit] Classes
At this moment, ZX BASIC is not an OOP compiler. But there are three main classes. A class can be considered as a kind of type.
[edit] Var
Vars are scalar variables. Scalar variables are those which store a single value. Almost all variables are scalars:
'A simple scalar variable DIM a = 3
[edit] Arrays
Array variables are not scalar ones. They can hold more than a single value at a time. You pick the value you want to refer to using an integer index:
'An array variable DIM a(1 TO 10) AS UBYTE LET a(3) = 5: REM pick a(3)
[edit] Labels
Unlike the above, labels are not variables. They refer to memory positions. Line numbers are also treated as labels and they are completely optional:
10 REM here '10' is a Label 5 REM here '5' is another label, so the number order does not matter REM Line numbers are optional. So this line is ok either. ' This line is also a comment. The character (') is like REM mylabel: ' the above 'mylabel' identifier is also a Label. When not a line number, ' they must be ended with a colon (:) GOTO mylabel ' Goes to 'mylabel' line GO TO 5 'Another way to write GOTO. Jumps to line 5
Read here for more info about labels.

