Acorn System BASIC
Acorn System BASIC and Atom BASIC are two closely related dialects of the BASIC programming language developed by Acorn Computers for their early microcomputers like the Acorn System 3 and Acorn Atom. Developed in-house, they have a number of significant idiosyncrasies compared to most BASIC dialects of the home computer era. In particular, the language lacked statements for many of the machine's internal functions and provided this using direct access and manipulation of memory locations using indirection operators instead of PEEK and POKE. Both also lacked floating-point support, although this could be added with an optional ROM which introduced further idiosyncrasies. System and Atom BASIC differ primarily in that Atom used the same indirection system to provide rudimentary string manipulation, which Standard lacked, and added a small number of new statements for computer graphics. Most of these oddities were removed when the underlying system was greatly expanded to produce BBC BASIC on the Atom's successor, the BBC Micro. BBC BASIC ROMs were later offered to Atom users. History![]() Acorn Computers formed in 1978 and got its start making a series of kit-built and Eurocard-based systems starting with the Acorn System 1 in 1979. They developed Acorn System BASIC for these machines,[1] an integer-only dialect that required only 4 KB of memory in total.[2] The language had a number of implementation details that made it "highly non-standard."[3] The Atom, introduced in 1980, was built from parts of the System 3 packaged onto a single board. Systems shipped standard with 2 KB of RAM and 8 KB of ROM, which included BASIC and a number of device drivers. Atom BASIC had only a few changes from the System version, adding support for string manipulation and a small number of graphics commands. The Atom was upgradable, with up to 12 KB of RAM in total and an additional 4 KB of ROM that added floating-point support. This used separate functions and operations that worked on them, indicated by the % symbol.[3] This choice of symbol was unfortunate, as Microsoft BASIC used the percent sign to indicate integers, not floating point.[4] The Atom was on the market for only a short period before Acorn began development of its successor, the Proton. This was initially to be a two-processor unit. The design was still in its earliest stages when a series of events led to it being selected as the basis of the single-CPU BBC Micro.[1] At the time, there were comments that it should definitely not use Acorn's variety of BASIC, which "virtually no other microcomputer can understand" and that "If the new language were based on the Atom's form of BASIC, it would be a disaster."[5] Ultimately, the BBC system did use those older Acorn-written BASIC variants, but heavily modified. The resulting BBC BASIC was much more similar to Microsoft BASIC and was later offered as an upgrade to the Atom.[6] DescriptionAs the two dialects are very similar, the following will refer to Atom BASIC primarily and point out differences where they exist. Program editingLike most BASICs of the era, Atom BASIC used a line-oriented editor with direct (immediate) and indirect modes. Typing in a statement without a line number performed the operation immediately. Adding a line number instead placed those statements in the stored program. One idiosyncrasy was that while it allowed multiple statements on a single line, the separator between statements was the semicolon[7] instead of the commonly used colon, thus requiring the user to convert that character when typing in programs for other computers. Intended for use with computer terminals, Acorn BASIC did not support a full-screen editing mode. For contrast, in Commodore BASIC (and many other microcomputer dialects), one can use the cursor keys to move upward into a program listing, make changes on-screen, and then press Return to enter those changes. On the Atom, which had a full-screen display, one could move upward into a listing using the cursor keys, but to edit that text, the Copy key was pressed to copy it to the input area where it could be edited.[8] Another difference on the Atom was the Break key, which performed a system reset, potentially clearing out the program from memory. To reset this if the key was pressed by mistake, Atom BASIC added the The language also had the ability to use line labels instead of numbers for branching. Labels consisted of a single lower-case letter typed immediately after the line number. For instance:[10] 10s PRINT "*" 20 GOTO s The advantage of this method is that the memory address of the statement is stored in s, meaning that the branch, a GOTO, can move directly to that line without having to search through every line in the program looking for the matching line number.[10] Acorn also allowed any expression to be used to produce the line number for branch targets, like StatementsAcorn's primitives were similar to other BASICs of the era, and supported most of the elementary statements like CLEAR, DIM, END, FOR..TO..STEP..NEXT, GOSUB, GOTO, IF..THEN, INPUT, (optional) LET, LIST, LOAD, PRINT, REM, RETURN, RUN, SAVE, STOP.[12] There are a number of common statements that are missing, notably DATA, READ, RESTORE used to store data in a program, ON..GOSUB, ON..GOTO computed branches, and DEF FN for user-defined functions.[a] To these basics, Acorn added 500 A=A+1 510 REM additional statements here 600 IF A>10 AND B>100 THEN 500 The downside to this style of loop is that the branch requires the program to be searched through for line 500, which, in a loop, normally happens many times. In large programs, this can introduce significant overhead. Using a DO for this purpose offers higher performance: 500 DO A=A+1 510 REM additional statements here 600 UNTIL A>10 AND B>100 In this case, like the FOR loop, the address of the DO is stored when the loop is entered, allowing the UNTIL to return to the top of the loop immediately without having to scan through the program.[14] Note the special case that the DO can be followed directly by another statement without the semicolon separator being required - the Among the more minor additions is the Math, operators and functionsAcorn used 32-bit signed integers for all math,[18] with no standard floating-point support. To handle division, which often returns a fractional part, they added the Variable names can consist only of a single letter, A to Z.[20] All double-letter combinations are reserved as arrays, so E was a single value, while EE was an array. All arrays required a DIM statement,[21] it did not assume a dimension of 10 like Microsoft BASICs. At runtime, the only check performed on an array was that the index being passed in was a positive value, so one could read off into memory by passing in values larger than the dimension.[22] It did not support multi-dimensional arrays.[23] Basic math operations included +, -, *, /, %. It also supported bitwise logic operators, with &, \, : used for AND, OR and XOR, respectively. These operators perform comparisons, so There were only two math functions, ABS and RND. ABS works as in other BASICs, returning the absolute value of a given input. RND does not, it returns a value between the -ve and +ve maximum integer values. To use this in the conventional form to return a value between 0 and a given positive value, between 0 and 10 for example, one used VectorsMost BASICs of the era used PEEK and POKE to access machine specific functionality that was not built into the language itself. Acorn did not have PEEK and POKE, and used new operators to provide this functionality in an easier-to-use system. The operators were To aid in accessing data arranged in a continual form in memory, like arrays of numbers, the operators could be applied to the right-hand side of a variable. When used in this way, like This was often used with another Acorn-only concept, the "vector". Confusingly, these were created using the same DIM commands as an array, but applied to single-letter variables. When the DIM was encountered the system would set aside that many locations at the top of memory, and then move the memory pointer up. This left a block of memory that could then be accessed with the indirection operators. For instance:[28] 10 DIM A(100) 20 PRINT A?10 Which will print the byte value at the 11th location in A (all accesses are zero-indexed).[28] Likewise, one could store values in memory using the same operator applied before the variable name: !A=123456 This will convert the decimal value 123456 from ASCII into an integer and store it in the memory locations starting at the base location for A.[27] To aid operation with vectors, Acorn added the pseudo-variable StringsAtom BASIC added string support but did not support string variables nor did it have the concept of a string as an atomic type. Instead, the vector system was used to manipulate string data in memory, as ASCII values.[28] To aid this usage, the 10 DIM A(12) 20 $A="HELLO, WORLD" 30 PRINT $A This code may appear very similar to the use of strings in other dialects, although the location of the $ relative to the variable name changes. It is especially similar to those dialects that required a DIM on all strings, like HP Time-Shared BASIC or Atari BASIC. Internally, the operation is very different. In those dialects, A and A$ are two different variables and the $ is, in effect, part of the name. In Acorn, A and $A they are the same variable, and the $ is applying a unary operation to that variable. This also means one can use arrays for strings, like This concept allows individual characters to be accessed using vector notation. For instance, The language has only two string functions, Another new operator was Floating pointFloating-point support could be added with the additional 4 KB ROM expansion. This used an expanded 40-bit word size, 32 bits of signed mantissa followed by an 8-bit exponent.[35] This meant the system needed some way to distinguish the data when reading and writing from memory, which was handled in a fashion similar to the string operator, using the %A=123.45 As the code was contained in a separate 4 KB ROM, it did not modify existing statements like PRINT. Instead, an entirely new set of statements was introduced, including FDIM, FIF, FINPUT, FPRINT, FUNITL. This means, for instance, that one cannot The ROM also included a much larger variety of math functions, including ABS, ACS, ASN, ATN, COS, DEG, EXP, FLT, HTN, LOG, PI, RAD, SGN, SIN, SQR, STR, TAN, VAL.[36] STR PI, TOP PRINT $TOP TOP=TOP-LEN(TOP) This converts the value of the pseudo-variable PI to a string starting at memory location TOP, prints the string using $TOP, and then abandons that memory.[37] Input/output
The default storage device for the Atom was a compact cassette system. Each file was stored as a series of blocks, each of which contained a header with the filename.[40] Files saved with Arbitrary data could be opened for reading using For instance: A=FOUT"AFILE" DO BPUT A,88; WAIT; WAIT; WAIT; WAIT; UNTIL 0 Will use the A=FIN"AFILE" DO PRINT $BGET A; UNTIL 0 The dollar sign tells the system to convert the incoming binary data to string format, so in this case, the output will be a series of X's, not 88's.[43] It might seem that SGET could be used instead of BGET, but this would attempt to continue reading from the file until it saw a return character, which in this example had not been written.[44] Graphics supportThe Atom had rudimentary bitmap graphics and Atom BASIC added a number of commands to support it. The floating-point ROM also included support for colour graphics with the addition of the Notes
ReferencesCitations
Bibliography
|
Portal di Ensiklopedia Dunia