Download this app from Microsoft Store for Windows 10 Mobile, Windows Phone 8.1, Windows Phone 8. See screenshots, read the latest customer reviews, and compare ratings for gw-basic.
Developer | Microsoft |
---|---|
First appeared | 1983; 36 years ago |
Stable release | |
OS | DOS |
Influenced by | |
IBM Cassette BASIC, IBM Disk BASIC, IBM BASICA | |
Influenced | |
QBasic, QuickBasic, MSX BASIC |
GW-BASIC is a dialect of the BASICprogramming language developed by Microsoft from BASICA, originally for Compaq. It is otherwise identical to Microsoft/IBM BASICA, but is a fully self-contained executable and does not need the ROM BASIC. It was bundled with MS-DOSoperating systems on IBM PC compatibles by Microsoft. Microsoft also sold a BASIC compiler, BASCOM, compatible with GW-BASIC, for programs needing more speed. The language is suitable for simple games, business programs and the like. Since it was included with most versions of MS-DOS, it was also a low-cost way for many aspiring programmers to learn the fundamentals of computer programming.[1][2] With the release of MS-DOS 5.0, GW-BASIC's place was eventually taken by QBasic, the interpreter part of the separately available QuickBASIC compiler.[3]
Features[edit]
IBM BASICA and GW-BASIC were largely ports of MBASIC version 5.x, but with added features specifically for the IBM PC hardware. Common features of BASIC-80 5.x and BASICA/GW-BASIC include:
- WHILE...WEND loops
- Variable names of up to 40 characters
- OPTION BASE statement to set the starting index of array variables as either 0 or 1
- Dynamic string space allocation
- LINE INPUT statement for reading in data from the keyboard
- CALL statement for executing machine language routines
- CHAIN and MERGE commands
- Ability to save programs in either tokenized binary format or ASCII text
The ability to 'crunch' program lines by omitting spaces, a common feature of earlier Microsoft BASIC implementations, was removed from BASIC-80 5.x and BASICA/GWBASIC.
BASIC-80 programs not using PEEK/POKE statements would run under GW-BASIC. BASICA added a large number of features for the IBM PC such as sound, graphics, and memory commands. A few other features not present in BASIC-80 included the ability to execute the RND function with no parameters and the ability to also save programs in a 'protected' format, preventing them from being LISTed. BASICA also allowed double-precision numbers to be used with mathematical and trigonometric functions such as COS, SIN, and ATN, which wasn't allowed in 8-bit versions of BASIC. This feature was normally not enabled and required the optional parameter /D at startup, i.e., GWBASIC /D
. BASIC's memory footprint was slightly increased if it was used.
Gw Basic Programs Free Download For Pc
Microsoft did not offer a generic version of MS-DOS until v3.20 in 1986; before then, all variants of the operating system were OEM versions. Depending on the OEM, BASIC was distributed as either BASICA.EXE or GWBASIC.EXE. The former should not be confused with IBM BASICA, which always came as a .COM file. Some variants of BASIC had extra features to support a particular machine. For example, the AT&T and Tandy versions of DOS included a special GW-BASIC that supported their enhanced sound and graphics capabilities.
The initial version of GW-BASIC was the one included with Compaq DOS 1.13, released with the Compaq Portable in 1983, and was analogous to IBM BASICA 1.10. It used the CP/M-derived file control blocks for disk access and did not support subdirectories. Later versions added this feature and improved graphics and other capabilities.
GW-BASIC 3.20 (1986) added EGA graphics support (no version of BASICA or GW-BASIC had VGA support) and was, in effect, the last new version released before it was superseded by QBasic.
Buyers of Hercules Graphics Cards received a special version of GW-BASIC on the card's utility disk that was called HBASIC and which added support for its 720×348 monochrome graphics. Other versions of BASICA/GW-BASIC did not support Hercules graphics and could only display graphics on that card through the use of third-party CGA emulation, such as SIMCGA.
GW-BASIC has a command line-based integrated development environment (IDE) based on Dartmouth BASIC. Using the cursor movement keys, any line displayed on screen can be edited. 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, because it was an interpreted language. All program lines must be numbered; all non-numbered lines are considered to be commands in direct mode to be executed immediately. Program source files are normally saved in binary compressed format with tokens replacing keywords, with an option to save in ASCII text form.[4]
The GW-BASIC command-line environment has commands to RUN, LOAD, SAVE, LIST
the current program, or quit to the operating SYSTEM
; these commands can also be used 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 use of the DEFINT, DEFSTR
, etc., statements. The default type for undeclared variables not identified by such typing statements, is single-precision floating point (32-bit MBF).[5]
GW-BASIC allowed use of joystick and light pen input devices. 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 can play simple music using the PLAY
statement, needing a string of notes represented in a music macro language, e.g., PLAY 'edcdeeL2edfedL4c'
. More low-level control is possible with the SOUND
statement, which takes the arguments of a frequency in hertz and a length in clock ticks for 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 like the Tandy 1000 allowed up to three channels of sound for the SOUND
and PLAY
commands.[5]
Name[edit]
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.[6] The Microsoft User Manual from Microsoft Press also refers to it by this name.[citation needed] It may have also been nicknamedGee-Whiz because it had a large number of graphics commands.[6] Other common theories as to the initials' origins include 'Graphics and Windows', 'Gates, William' (Microsoft's president at the time), or 'Gates-Whitten' (the two main designers of the program).[7][8]
See also[edit]
- Microsoft Binary Format (MBF)
References[edit]
- ^'KindlyRat'. 'GW-BASIC'. Archived from the original on 2005-07-26. Retrieved 2009-11-10.
- ^'Leon'. 'GWBASIC Games & Other Programs'. Archived from the original on 2009-10-26. Retrieved 2009-11-10.
- ^'Microsoft BASIC version information'. Retrieved 2008-06-12.
- ^'GW-BASIC Documentation and Utilities'. Archived from the original on 2007-12-17.
- ^ ab'GW-BASIC User's Guide'. 1987. Retrieved 2008-06-28.
- ^ abGregory Whitten (2005-04-13). 'GW-BASIC'. Archived from the original on 2008-09-20. Retrieved 2008-06-29.
- ^'Linux Dictionary:G'. Retrieved 2008-06-28.
- ^'GW-BASIC'. 2005-04-13. Archived from the original on 2008-06-29. Retrieved 2008-06-28.
External links[edit]
- Classic Basic Games Page, a resource for BASIC games and other programs
- Back to BASICs, another BASIC resource site
- GW-BASIC interpreter program and files download site at the Wayback Machine (archived October 27, 2009)
- Gary Beene's Information Center regarding BASIC, with timeline dates for DOS, Windows and BASIC dialects
- GW-BASIC - Gee Whiz! Neil C. Obremski's site devoted to GW-BASIC.
- PC-BASIC - a GW-BASIC emulator for modern operating systems.
Gw Basic Programs Free Download For Mac
Best height increase program. Download the best new method to increase height fast. Performing yoga stretches and asanas stretches your spine and strengthens your bones so you can increase your height in just a matter of weeks. Specific height. ...
- heightincreaseprogram.exe
- Height Increase Program
- Freeware (Free)
- 416 Kb
- Win 3.1x, Win95, Win98, WinME, WinNT 3.x, WinNT 4.x, Windows2000, WinXP, Windows2003
The C++ Basic is an object-oriented language with features from C++, Java, Basic and Euphoria programming languages. A C++ Basicprogram is converted to C++, that looks similar to the original C++ Basic code.
- C++ Basic
- FelixShmidel
- Freeware (Free)
- Windows
Simple visual basic program to view pictures. If there is a patch, you can download it from files and then under patches..
- picture viewer 2.5.1.zip
- picviews
- Freeware (Free)
- 2.83 Mb
- Windows
It is available as a free online version, which you can use right from your browser, as a free Windows program (download links are at left), and as a paid Pro version, which can perform the same operations on a single or many disk files.Pro version. ...
- textUtilitySetup.exe
- ZZEE
- Freeware (Free)
- 2.6 Mb
- Win Vista, 2000, 2003, XP
Boxee Remote 0.91 is released to provide users with a helpful and creative remote for Windows Mobile devices that allows you to operate basicprogram functions using a wireless connection (WiFi or cellular).Major Features: Navigation mode: up, down,. ...
- BoxeeRemote.CAB
- Acquasys
- Freeware (Free)
- 124 Kb
- Windows Mobile PocketPC
SysInfoMyWork is system tool for monitoring state of memory and CPU load. In comfortable way shows amount of free and occupied system memory and CPU load, by using animated icon of taskbar notification area. Basicprogram features: * showing. ...
- SysInfoMyWork_v21.exe
- Piotr Zagawa
- Freeware (Free)
- 165 Kb
- Windows XP, 2000
Sailcut CAD is a sail design and plotting software which allows you to design and visualise your own sail and compute the accurate development of all panels in flat sheets. The original Sailcut was a Basicprogram developped by Robert LainAテつゥ in. ...
- sailcut-1.3.5.tar.gz
- Jeremy Laine&Robert A.Laine
- Freeware (Free)
- Mac OS X
BPAS & ATCGS, also known as BasicProgram Analyzer System & Automatic Test Case Generation System is designed as an unified automated instrument.The application is developed in order to help testers through the necessary testing procedure, anytime,. ...
- launch.jnlp
- Panagiotis Petsas
- Freeware (Free)
- Windows All
Exil is a bytecode-language that (when it's finished) can execute GW-Basic programs, after converting them to an own format. Maybe it's possible to add other languages. ...
- exil112.tgz
- exil
- Freeware (Free)
- 144 Kb
- BSD; Linux
Compare virus genomes visually by dotplot! Java program. Download manually from pubmed! Use alignment view! Compare, for example, Hiv-1 & Visna. Locate p24 within Hiv-1! Compare natural language texts! Export diagram as. ...
- pgenomdiff_2010-02-01.jar
- sourceforge
- Freeware (Free)
- 1.93 Mb
- Windows; Solaris; Linux
JBasic is a traditional BASIC language intepreter written in Java for command line or embedded use. It supports conventional GW-BASIC style syntax, plus some modern extensions for supporting threads, JDBC, etc. JBasic can be run directly from a. ...
- jbasic-runtime28.tar.gz
- jbasic
- Freeware (Free)
- 1.71 Mb
- Windows; Mac
Wizard to learn words is a very basicprogram to learn words. It is designed to ask you words in a random order, which you can organize in quiz. The words are divided in three stages this way you can measure your. ...
- wtlw-0.3.1.tar.gz
- wtlw
- Freeware (Free)
- 7 Kb
- Windows; Mac; Linux
Free Download Gw Basic Software
Related:Download Gw Basic Program - Protect Basic Program - Pic Basic Program - Free Basic Program - Basic Terminal Program