翻訳と辞書
Words near each other
・ Gvulot
・ GVV Dal Molin MD.1 Anfibio Varese
・ GVV Dal Molin Roma
・ GVVV
・ GVW
・ GW
・ GW 123.4-1.5
・ GW approximation
・ GW Community School
・ GW Jeep Site
・ GW Pharmaceuticals
・ Gw'oth
・ GW-405,833
・ GW-803,430
・ GW-842,166X
GW-BASIC
・ GW0742
・ GW2
・ GW2.8TC
・ GW501516
・ GW525
・ GWA
・ GWA International
・ Gwa Kyun
・ Gwa language
・ GWA Mazda Tennis Classic
・ Gwa Township
・ Gwa'sala
・ Gwa'sala-'Nakwaxda'xw Nations
・ Gwa, Myanmar


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

GW-BASIC : ウィキペディア英語版
GW-BASIC

GW-BASIC is a dialect of the BASIC programming 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-DOS operating 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 would-be programmers to learn the fundamentals of computer programming. 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.〔(【引用サイトリンク】title=Microsoft BASIC version information )
== Syntax ==
IBM BASICA and GW-BASIC are direct ports of Microsoft's BASIC-80 (also known as MBASIC) designed for 8080/Z80 machines, but added features specifically for the IBM PC hardware. Common features of BASIC-80 and BASICA/GW-BASIC include:
*CLS command to clear the screen
*Double-precision variables
*True integer support
*PRINT USING statement for formatted display output
*LPRINT for outputting to printers
*WHILE...WEND loops
*The ability to save programs in three formats (ordinary tokenized binary, ASCII, or a "protected" token format that cannot be LISTed)
*"Ok" as the BASIC prompt
*DEFINT statement to set all variables beginning with the specified characters as one type, eliminating the need to put type suffixes after them
*INKEY$ function to read key presses
*An advanced editor which included statements for renumbering program lines and deleting them in blocks
*Hexadecimal number support (performed by preceding numbers with &H)
*The REM statement can be abbreviated as '
*Statements that have quoted text (e.g. PRINT) do not require a second quote mark at the end unless other arguments follow
*IN/OUT instructions for I/O
*Error trapping features
Conversely, BASIC-80/BASICA/GWBASIC does not allow the line crunching in 6502 versions (where no spaces are required on a program line)
MBASIC programs not using PEEK/POKE statements would run under GWBASIC. BASICA added a large number of features for the IBM PC such as sound, graphics, and memory commands.
Microsoft did not offer a generic version of MS-DOS until v3.20 in 1986 and before then, all variants of the OS were OEM ones. 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 GWBASIC 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 GWBASIC 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 GWBASIC on the card's utility disk that was called HBASIC and which added support for its 720x348 monochrome graphics (other versions of BASICA/GWBASIC only allowed graphics on Hercules cards if SIMCGA was loaded)
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 programming 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 commands, with an option to save in ASCII text form.〔(【引用サイトリンク】title=GW-BASIC Documentation and Utilities )
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)= 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.
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 such as the Tandy 1000 allowed up to three channels of sound for the SOUND and PLAY commands.〔

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「GW-BASIC」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.