GW-BASIC Documentation


GW-BASIC was a dialect of BASIC developed by Microsoft from BASICA, Microsoft BASIC and Altair BASIC (for the Altair 8800), originally for Compaq.






GW-BASIC


(or GWBASIC)
Portions copyright Wikipedia, the free encyclopaedia

GW-BASIC is compatible with Microsoft/IBM BASICA, but was disk based and did not require the ROM BASIC. Microsoft bundled GW-BASIC with MS-DOS operating systems on IBM PC compatibles.
Microsoft also sold a BASIC compiler, BASCOM, compatible with GW-BASIC, for applications requiring more speed. The language was suitable for simple games, business programs and the like. Since it was included with most versions of MS-DOS, it was also an inexpensive way for many would-be programmers to learn the fundamentals of computer programming. With the release of MS-DOS 5.0, QBasic, a cut-down version of the separately available QuickBASIC compiler, took eventually GW-BASIC's place.

The main limitations of GW-BASIC are the 64kB program size limit and the lack of structured programming. Therefore, this language was inappropriate for large projects.

  Downloads:



Facts


GW-Basic 3.23

Appeared in 1983
Developer: Microsoft (for Compaq)
Latest release: 3.23/1988
Paradigm: Imperative, high-level
Influenced by IBM Cassette BASIC, IBM Disk BASIC, IBM BASICA
Influenced: QBasic, QuickBasic
OS: DOS




Syntax


 Example:
  10 CLS
  20 PRINT "Hello, world!"
  30 END

GW-BASIC has a command line-based Integrated Development Environment (IDE) based on Dartmouth BASIC. It also includes function key shortcuts at the bottom of the screen. Like other early microcomputer versions of BASIC, GW-BASIC lacked many of the structures needed for structured programming such as local variables, and GW-BASIC programs executed relatively slowly, due to the fact that it was an interpreted programming language. All program lines must be numbered, all nonnumbered lines are considered to be commands in direct mode to be executed immediately. The format of program source files is normally binary compressed with tokens replacing commands, or optionally ASCII text form.

The GW-BASIC command-line environment has commands to RUN, LOAD, SAVE, LIST the current program, or quit to the operating SYSTEM; you can use these commands also as program statements. There is little support for structured programming in GW-BASIC. All IF/THEN/ELSE conditional statements must be written on one line, although WHILE/WEND statements may group multiple lines. Functions can only be defined using the single line DEF FNf(x)='mathematical function of x' statement (e.g., DEF FNLOG(base,number) = LOG(number) / LOG(base)). The data type of Variables can be specified with a character at the end of the variable name: A$ is a string of characters, A% is an integer, etc. Groups of variables can also be set to default types based on the initial letter of their name by using the DEFINT, DEFSTR, etc., statements. The default type for undeclared variables not identified by such typing statements, is single-precision floating-point.

GW-BASIC allowed for the joysticks, mice and light pen input devices of its time. GW-BASIC can read from and write to files and COM ports; it can also do event trapping for ports. Since the cassette port interface of the original IBM PC was never implemented on compatibles, cassette operations are not supported. GW-BASIC is able to play simple music using the PLAY statement, requiring a string of notes represented in a music macro language (e.g. PLAY "edcdeee2dfedc4"). More low-level control is possible with the SOUND statement, which takes the arguments of a hertz frequency and a length in clock ticks played through the standard internal PC speaker in IBM machines. Consequently sound is limited to single channel beeps and whistles as befits a 'business' machine. Home based PCs such as the Tandy 1000, allowed up to three channels of sound for the SOUND and PLAY commands.



  Downloads:

  References:




Template


A well programmed GW-Basic program is made of the following parts:
  • Intro: program name, programmer, version, description
  • Variables and declarations
  • Main routine
  • Subroutines
  • Exit routines


Name


There are several theories on what the initials "GW" stand for. Greg Whitten, an early Microsoft employee who developed the standards in the company's BASIC compiler line, says Bill Gates picked the name GW-BASIC. Whitten refers to it as Gee-Whiz BASIC and is unsure if Gates named the program after him. The Microsoft User Manual from Microsoft Press also refers to it by this name. It may have also been nicknamed Gee-Whiz because it had a large number of graphics commands. Other common theories as to the abbreviation origins include "Graphics and Windows", "Gates, William" (Microsoft's president at the time), or "Gates-Whitten" (the two main designers of the program).


Utilities


  • GW2QB 1.004 - GW-BASIC to QBasic Converter for Windows
  • GW2QB 0.65 - GW-BASIC to QBasic Converter
  • RB58 - converts interpreted GW-BASIC files to ASCII format files
  • GW2ASC 1.02 for Windows - GW-BASIC Binary to ASCII source code converter
  • GW2ASC 0.10 - GW-BASIC Binary to ASCII source code converter
  • UNPBASIC - removes the protection from GW-BASIC files
  • GWUP07 - encrypt or decrypt interpreter GW-BASIC files


Documentation


  • BASIC Lessons - Demo Programs
  • BASICTUT - GW-BASIC Shareware tutorial from Cascoly Software
  • GW-BASIC tokenised program format - for Programmers
  • If you run GW-BASIC in a DOS box under Windows XP and
    GW-BASIC is not displayed correctly, type the following at the DOS prompt:
    MODE CON COLS=80 LINES=25
  • at the DOS prompt type:
    ECHO statements | GWBASIC
    and GW-BASIC executes the statements and returns to DOS.
    For more information about Redirection and Piping in MS-DOS / PC-DOS
    download DOS_PIPE from Jan van Hulten.


Source Code





Versions


GW-Basic 3.22


  GW-BASIC Download:


Windows 7, 8, 8.1 and 10


GW-Basic is still used on modern Windows:
  • Download DOSBox
  • Install DOSBox
  • Download GW-BASIC
  • Unzip GW-BASIC in a new folder (for instance c:\gwbasic)
  • Run DOSBox
  • Type 'mount c c:\gwbasic'
  • Type 'c:'
  • Type 'gwbasic'