Applesoft Basic (CloudMonk.io)

Applesoft BASIC



Return to Applesoft BASIC in Javascript, Apple II Emulators, Applesoft

Short description: Dialect of Microsoft BASIC programming language

| name = Applesoft BASIC
| author = Marc McDonald
Ric Weiland
| released = Error: File not found: Start date and age|1977
| latest release version = Applesoft II
| latest release date = Error: File not found: Start date and age|1978
| operating system = Apple II series
| genre = Microsoft BASIC

Applesoft BASIC is a dialect of Microsoft BASIC, developed by Marc McDonald and Ric Weiland, supplied with the Apple II series of computers. It supersedes Integer BASIC and is the BASIC in Read-only memory|ROM in all Apple II series computers after the original Apple II model. It is also referred to as FP BASIC (from floating-point arithmetic|floating point) because of the Apple DOS command used to invoke it, instead of INT for Integer BASIC.

Applesoft BASIC was supplied by Microsoft and its name is derived from the names of both Apple Computer and Microsoft. Apple employees, including Randy Wigginton, adapted Microsoft's interpreter for the Apple II and added several features. The first version of Applesoft was released in 1977 on cassette tape and lacked proper support for high-resolution graphics. Applesoft II, which was made available on cassette and disk and in the ROM of the Apple II Plus and subsequent models, was released in 1978. It is this latter version, which has some syntax differences and support for the Apple II high-resolution graphics modes, that is usually synonymous with the term "Applesoft."

A compiler for Applesoft BASIC, TASC (The Applesoft Compiler), was released by Microsoft in 1981.Error: File not found: cite book |url = https://archive.org/details/TASC_The_AppleSoft_Compiler_Manual/page/n1 |title = TASC (The AppleSoft Compiler) Manual |year = 1981

History


When Steve Wozniak wrote Integer BASIC for the Apple II, he did not implement support for floating-point arithmetic because he was primarily interested in writing games, a task for which integers alone were sufficient.Error: File not found: cite web |url = https://gizmodo.com/how-steve-wozniak-wrote-basic-for-the-original-apple-fr-1570573636 |title = How Steve Wozniak Wrote BASIC for the Original Apple From Scratch |website = Gizmodo |date = May 1, 2014 |access-date = May 2, 2014 |author = Wozniak, Steve In 1976, Microsoft had developed Microsoft BASIC for the MOS Technology 6502, but at the time there was no production computer that used it. Upon learning that Apple had a 6502 machine, Microsoft asked if the company were interested in licensing BASIC, but Steve Jobs replied that Apple already had one.

The Apple II was unveiled to the public at the West Coast Computer Faire in April 1977 and became available for sale in June. One of the most common customer complaints about the computer was BASIC's lack of floating-point math.Error: File not found: Cite news |url = http://techland.time.com/2012/04/16/apple-ii-forever-a-35th-anniversary-tribute-to-apples-first-iconic-product/ |title = Apple II Forever: a 35th-Anniversary Tribute to Apple’s First Iconic Product |last = McCracken |first = Harry |date = April 16, 2012 |work = Time |access-date = June 21, 2019 |language = en-US |issn = 0040-781X Making things more problematic was that the rival Commodore PET personal computer had a floating point-capable BASIC interpreter from the beginning. As Wozniak—the only person who understood Integer BASIC well enough to add floating point features—was busy with the Disk II drive and controller and with Apple DOS, Apple turned to Microsoft.

Apple reportedly obtained an eight-year license for Applesoft BASIC from Microsoft for a flat fee of $31,000, renewing it in 1985 through an arrangement that gave Microsoft the rights and source code for Apple's MacBASIC|Macintosh version of BASIC.Error: File not found: cite web |last = Herzfeld |first = Andy |title = MacBasic – The Sad Story of MacBasic |url = http://www.folklore.org/StoryView.py?project=Macintosh&story=MacBasic.txt |website = Folklore.org |date = February 12, 2014 Applesoft was designed to be backwards-compatible with Integer BASIC and uses the core of Microsoft's 6502 BASIC implementation, which includes using the GET command for detecting key presses and not requiring any spaces on program lines. While Applesoft BASIC is slower than Integer BASIC, it has many features that the older BASIC lacks:

* Atomic strings: A string is no longer an array of characters (as in Integer BASIC and C (programming language)|C); it is instead a garbage collection (computer science)|garbage-collected object (as in Scheme (programming language)|Scheme and Java (programming language)|Java). This allows for string arrays; Error: File not found: code|DIM A$(10)|basic creates a Array data type|array of eleven string variables numbered 0–10.
* Multidimensional array data type|arrays (numbers or strings)
* Single-precision floating-point arithmetic|floating-point variables with an 8-bit exponent and a 31-bit significand and improved math capabilities, including trigonometry and logarithmic functions
* Commands for high-resolution graphics
* DATA statements, with READ and RESTORE commands, for representing numerical and string values in quantity
* CHR$, STR$, and VAL functions for converting between string and numeric types (both languages did have the ASC function)
* User-defined functions: simple one-line functions written in BASIC, with a single parameter
* Error-trapping: allowing BASIC programs to handle unexpected errors via subroutine written in BASIC

Conversely, Applesoft lacks the MOD (remainder) operator from Integer BASIC.

Adapting BASIC for the Apple II was a tedious job as Apple received a source listing for Microsoft 6502 BASIC which proved to be buggy and also required the addition of Integer BASIC commands. Since Apple had no 6502 assembler on hand, the development team was forced to send the source code over the phone lines to Call Computer, an outfit that offered compiler services. This was an extremely tedious, slow process and after Call Computer lost the source code due to an equipment malfunction, one of the programmers, Cliff Huston, used his own IMSAI 8080 computer to cross assembler|cross assemble the BASIC source.Error: File not found: cite book |chapter-url = http://apple2history.org/history/ah16/ |title = History of the Apple II |chapter = Chapter 16: Languages |access-date = July 6, 2016

Features


Applesoft is similar to Commodore's BASIC 2.0 aside from features inherited from Integer BASIC. There are a few minor differences such as Applesoft's lack of bitwise operators; otherwise most BASIC programs that do not use hardware-dependent features will run on both BASICs.

The Error: File not found: mono|PR# statement redirects output to an expansion card, and IN# redirects input from an expansion card. The slot number of the card is specified after the Error: File not found: mono|PR# or Error: File not found: mono|IN# within the statement. The computer locks-up if there is no card present in the slot. Error: File not found: mono|PR#0 restores output to the 40 column screen and Error: File not found: mono|IN#0 to the keyboard.

The PR# statement can be used to redirect output to the printer (e.g. Error: File not found: code|2=basic|10 PR#x:PRINT"Hello!") where x is the slot number containing the printer port card. To send a BASIC program listing to the printer, the user types Error: File not found: code|PR#x:LIST.

PR#6 causes Applesoft to boot the disk drives (although the Disk II controller can be in any slot, it is usually in slot 6). PR#3 switches to 80 column text mode if an 80 column card is present.

As with Commodore BASIC, numeric variables are stored as 40-bit floating point; each variable requires five bytes of memory. The programmer may designate variables as integer by following them with a percent sign, in which case they use two bytes and are limited to a range of -32768 to 32767; however BASIC internally converts them back to floating point, while each percent sign also takes an additional byte of program code, so in practice this feature is only useful for reducing the memory usage of large array variables.

The RND function generates a pseudorandom number generator|pseudorandom fractional number between 0 and 1. Error: File not found: code|RND(0) returns the most recently generated random number. Error: File not found: mono|RND with a negative number will jump to a point in the sequence determined by the particular negative number used. RND with any positive value generates the next number in the sequence, not dependent on the actual value given. Locations Error: File not found: mono|$4E and Error: File not found: mono|$4F, which the system cycles the values of continuously while waiting for user keystrokes, can be PEEKed to provide truly random values to use as a seed (when negated) for Error: File not found: mono|RND. For example, after keyboard input, Error: File not found: code|2=cbmbas|1=x=rnd(-1*(peek(78)+256*(peek(79))) will seed RND with the values of Error: File not found: mono|$4E and Error: File not found: mono|$4F.

Like other implementations of Microsoft BASIC, Applesoft discards spaces (outside of strings and comments) on program lines. LIST adds spaces when displaying code for the sake of readability. Since Error: File not found: mono|LIST adds a space before and after every tokenized keyword, it often produces two spaces in a row where one would suffice for readability.

The default prompt for INPUT is a question mark. PRINT does not add a leading space in front of numbers.

Coleco claimed that its Coleco Adam|Adam home computer's SmartBASIC was source-code compatible with Applesoft.Error: File not found: Cite AV media |url = https://www.youtube.com/watch?v=gg_I9TGYM-w | archive-url = https://ghostarchive.org/varchive/youtube/20211122/gg_I9TGYM-w |archive-date = November 22, 2021 |url-status = live |title = Coleco Presents The Adam Computer System |date = May 3, 2016 |via = YouTube |orig-year = September 28, 1983 |time = 31:55 |quote = Everybody who knows Applesoft BASIC will also know Adam SmartBASIC. All the same commands, all the same controls for this BASIC, this interpreter, are available. In fact, we're going to show you a program which uses Applesoft graphic commands ... executed through Adam. ... As far as we're concerned, when we're in BASIC, and we're not PEEKing or POKEing ... anything below the BASIC interpreter, we are source-code compatible. Error: File not found: cbignore Microsoft licensed a BASIC compatible with Applesoft to VTech for its Laser 128 Apple II clone|clone.Error: File not found: cite news |url = https://archive.org/stream/inCider_86-12#page/n59/mode/2up |title = Laser 128 / An Affordable Compatible |work = inCider |date = December 1986 |access-date = April 24, 2017 |last = Grevstad |first = Eric |pages = 58

=Limitations

=
Through several early models of the Apple II, Applesoft BASIC did not support the use of lowercase letters in programs, except in strings. PRINT is a valid command but print and Print result in a syntax error.

Applesoft lacks several commands and functions common to most of the non-6502 Microsoft BASIC interpreters, such as:
* INSTR (search for a substring in a string)
* PRINT USING (format numbers in printed output)
* INKEY$ (check for a keypress without stopping the program; although a PEEK to location $C000 achieves this action)
* LPRINT (output to a printer instead of the screen)

Applesoft does not have commands for file or disk handling, other than to save and load programs via cassette tape. The Apple II disk operating system, known simply as DOS, augments the language to provide such abilities.

Only the first two letters of variables names are significant. For example, "LOW" and "LOSS" are treated as the same variable, and attempting to assign a value to "LOSS" overwrites any value assigned to "LOW". A programmer also has to avoid consecutive letters that are Applesoft commands or operations. The name "SCORE" for a variable is interpreted as containing the OR Boolean operator (computer programming)|Boolean operator, rendered as SC OR E. "BACKGROUND" contains GR, the command to invoke the low-resolution graphics mode, and results in a syntax error.

=Sound and graphics

=
The only sound support is the option to PRINT an ASCII bell character to sound the system alert beep (sound)|beep, and a PEEK and POKE|PEEK command to click the speaker. The language is not fast enough to produce more than a baritone buzz from repeated clicks. Programs can, however, store a machine-language routine to be called to generate electronic musical tones spanning several octaves.

Applesoft supports the low resolution (lores) graphics display, where 40 color pixels horizontally, and up to 48 vertically, can be displayed in 16 colors, and the 280 by 192 high resolution (hires) mode. There are commands to plot pixels and draw horizontal and vertical lines in lores. Hires allows drawing arbitrary lines. Vector-based shape tables can be used to draw objects in high-resolution graphic modes. They consist of horizontal and vertical lines, and entire shapes can be scaled to larger sizes and rotated to any angle. No provision exists for mixing text and graphics, except for the Apple's four lines of text at the bottom of a graphic display.

Beginning with the Apple IIe, a "double-high resolution" mode became available on machines with 128k of memory. This mode essentially duplicates the resolution of the original hires mode, but including all 16 colors of the lores palette. Applesoft does not provide direct support for this mode. Apple IIGS-specific modes are likewise not supported.

=Extensions

=
Applesoft BASIC can be extended by two means: the ampersand (Error: File not found: mono|&) command and the Error: File not found: mono|USR() function. These are two features that call low-level machine-language routines stored in memory, which is useful for routines that need to be fast or require direct access to arbitrary functions or data in memory. The Error: File not found: mono|USR() function takes one numerical argument, and can be programmed to derive and return a calculated function value, to be used in a numerical expression. Error: File not found: code|& is effectively a shorthand for Error: File not found: mono|CALL, with an address that is predefined.

=Bugs

=
A deficiency with error-trapping via ONERR means that the system stack is not reset if an error-handling routine does not invoke RESUME, potentially leading to a crash.Error: File not found: cite book |title = Applesoft BASIC Programmer's Reference Manual (for IIe only) |url = https://archive.org/details/applesoft-basic-programmers-reference-manual-vol-1-for-iie-only/page/70/mode/2up |publisher = Apple Computer, Inc. |year = 1982 |page = 70 The built-in pseudorandom number generator function RND is capable of producing a predictable series of outputs due to the manner in which the generator is seeded when first powering on. This behavior is contrary to how Apple's documentation describes the function.Error: File not found: cite journal |last1 = Aldridge |first1 = James W. |title = Cautions regarding random number generation on the Apple II |journal = Behavior Research Methods, Instruments, & Computers |date = July 1987 |volume = 19 |issue = 4 |pages = 397–99 |doi = 10.3758/BF03202585

=Performance

=
Wozniak originally referred to his Integer BASIC as "Game BASIC" (having written it so he could implement a Breakout clone|Breakout clone for his new computer). Few action games were written in Applesoft BASIC, in large part because the use of floating-point numbers for all math operations degrades performance.

Applesoft BASIC programs are stored as a linked list of lines; a GOTO or GOSUB takes Computational complexity theory|linear time. Some programs have the subroutines at the top to reduce the time for calling them.

Unlike Integer BASIC, Applesoft does not convert literal numbers (like 100) in the source code to binary when a line is entered. Rather, the ASCII string is converted whenever the line is executed. Since variable lookup is often faster than this conversion, it can be faster to store numeric constants used inside loops in variables before the loop is entered.

Sample code


File:Applesoft BASIC.png|thumb|[[Hello World, with inverse video and bell character, run then listed]]
Hello World in Applesoft BASIC can be entered as the following:

10TEXT:HOME
20?"HELLO WORLD"

Multiple commands can be included on the same line of code if separated by a colon (:). The ? can be used in Applesoft BASIC (and almost all versions of Microsoft BASIC) as a shortcut for "PRINT", though spelling out the word is not only acceptable but canonical—Applesoft converted "?" in entered programs to the same token as "PRINT" (thus no memory is actually saved by using "?"), thus either appears as "PRINT" when a program is listed. The program above appears in a LIST command as:

10 TEXT : HOME
20 PRINT "HELLO WORLD"

This article includes text from [http://everything2.com/?node=Applesoft+BASIC Everything2], licensed under GFDL.

When Applesoft II BASIC was initially released in mid-1978, it came on cassette tape and could be loaded into memory via the Apple II's machine language monitor. When the enhanced Apple II+ replaced the original II in 1979, Applesoft was now included in ROM and automatically started on power-up if no bootable floppy disk was present. Conversely, Integer BASIC was now removed from ROM and turned into an executable file on the DOS 3.3 disk.

Early evolution


The original Applesoft, stored in RAM as documented in its Reference Manual of November 1977, has smaller interpreter code than the later Applesoft II, occupying 8½ KB of memory,Error: File not found: cite book |title = Applesoft Extended Precision Floating Point Basic Language Reference Manual |url = https://archive.org/details/Apple_II_Extended_Precision_Floating_Point_BASIC_Language_Reference_Manual/mode/1up |publisher = Apple Computer, Inc. |date = November 1977 instead of the 10 KB used by the later Applesoft II. Consequently, it lacks a number of command features developed for the later, mainstream version:
* All commands supporting Apple's "high resolution" graphics (9 total)
* Error-trapping with ONERR...GOTO and RESUME
* Machine-routine shorthand call "&"
* Screen-clearing HOME (a call to a system ROM routine)
* Text-output control NORMAL, INVERSE, FLASH and SPEED=
* The print-space function SPC() is listed among reserved words in the manual, but is not otherwise documented (the TAB() print-function is documented)
* Cassette tape storage of numerical arrays: STORE and RECALL
* Device response: WAIT
as well as several the later version would have, that had already been present in Apple's Integer BASIC:
* Program-line deletion: DEL
* Machine-routine access: CALL
* Peripheral device access: IN# and PR# (although IN without "#" is listed among reserved words)
* Memory range control: HIMEM: and LOMEM:
* Execution tracking for debugging: TRACE and NOTRACE
* Screen-positioning: HTAB and VTAB
* Subroutine aborting POP
* Functions PDL() to read the analog controllers, and SCRN() to read the low-resolution graphics screen (both accessing system ROM routines)
In addition, its low-resolution graphics commands have different names from their Integer BASIC/Applesoft II counterparts. All command names are of the form PLTx such that GR, COLOR=, PLOT, HLIN and VLIN are called PLTG, PLTC, PLTP, PLTH, and PLTV, respectively. The command for returning to text mode, known as TEXT in other versions, is simply TEX, and carries the proviso that it has to be the last statement in a program line.

Applesoft BASIC 1.x was closer to Microsoft's original 6502 BASIC code than the later Applesoft II; it retained the Memory Size? prompt and displayed a Microsoft copyright notice. To maintain consistency with Integer BASIC, the "Ok" prompt from Microsoft's code was replaced by a ] character. Applesoft 1.x also prompted the user upon loading if he wished to disable the REM statement and the LET keyword in assignment statements in exchange for lores graphics commands.

The USR() function is also defined differently, serving as a stand-in for the absent CALL command. Its argument is not for passing a numerical value to the machine-language routine, but is instead the call-address of the routine itself; there is no "hook" to pre-define the address. All of several examples in the manual use the function only to access "system monitor ROM" routines, or short user-routines to manipulate the ROM routines. No mention is made of any code to calculate the value returned by the function itself; the function is always shown being assigned to "dummy" variables, which, without action to set a value by user-code, just receive a meaningless value handed back to them. Even accessed ROM routines that return values (in examples, those that provide the service of PDL() and SCRN() functions) merely have their values stored, by user-routines, in locations that are separately PEEKed in a subsequent statement.

Unlike in Integer BASIC and Applesoft II, the Boolean operators AND, OR and NOT perform bitwise operations on 16-bit integer values. If they are given values outside that range, an error results.

The terms OUT and PLT (and the aforementioned IN) appear in the list of reserved words, but are not explained anywhere in the manual.

See also


* ALF Products#FTL|ALF's Formula Transfer Link, speed enhancement for Applesoft BASIC
* Chinese BASIC, a Chinese-localized version of Applesoft BASIC
* Apple III#BASIC|Apple III BASICs from Apple and Microsoft

External links


* [http://www.txbobsc.com/scsc/scdocumentor/ Disassembled ROM]
* [http://www.calormen.com/jsbasic/ AppleSoft BASIC in JavaScript]

BASIC Programming Language: BASIC Programming Fundamentals, BASIC Programming Language Inventor - BASIC Language Designer: John G. Kemeny and Thomas E. Kurtz of Dartmouth College on May 1, 1964; Applesoft BASIC, Microsoft BASIC, QuickBASIC, QBasic, FreeBASIC, Endless Loop - The History of the BASIC Programming Language (Beginner's All-purpose Symbolic Instruction Code) by Mark Jones Lorenzo, Legacy Language, BASIC keywords, BASIC Bibliography, Awesome BASIC; (navbar_basic)


navbar_basic


wp>Category:Apple II software