English
Language : 

NSB8 Datasheet, PDF (145/158 Pages) List of Unclassifed Manufacturers – BASIC interpreter for Z80 family
ITALIAN TECHNOLOGY
grifo®
SOURCE FILE SYNTAX
The tokenized NSB8 sorce files must have the following syntax:
<file name>.B
Where <file name> is a 6 character sequence valid for the used operating system.
DATA FILE SYNTAX
The data files managed by NSB8 must have the following syntax:
<file name>.<ext>
Where <file name> and <ext>, are respective 6 and 3 character sequences valid for the used operating
system.
ARITHMETIC OPERATORS
OPERATORS
^
*
/
-
+
-
OPERATION
Exponentation
Multiplication
Division
Subtraction
Addition
Negation
EXAMPLE
9^2=81
5*1.5=7.5
3/2=1.5
3.2-2=1.2
7.9+2.1=10
-3, -27
RELATIONALS OPERATORS
OPERATORS
>
<
<=
RELATION
Greather than
Less than
Less than or Equal to
>=
Greather than or Equal to
=
Equal to
<>
Not equal to
NSB8
Rel. 5.10
EXAMPLES
(6>1)=1 (true)
(2>3)=0 (false)
(0<0)=0 (true)
(1<3)=1 (false)
(5<=5)=1
(3<=5)=1
(3<=5)=1
(8>=7)=1
(7>=7)=1
(6>=7)=0
(9=9)=1
(9=7)=0
(4<>5)=1
(2<>2)=0
Page B-3