home *** CD-ROM | disk | FTP | other *** search
/ Current Shareware 1994 January / SHAR194.ISO / sys_util / inter37b.zip / GLOSSARY.LST < prev    next >
File List  |  1993-07-14  |  27KB  |  720 lines

  1. GLOSSARY
  2. Last Change 7/13/93.
  3.  
  4. A20
  5.     (Address line 20) The 80286 and higher CPUs allow addresses in
  6. real mode to extend slightly beyond the one megabyte mark, which causes
  7. an incompatibility with some older programs which expect such addresses
  8. to wrap back to the beginning of the address space.  For complete
  9. compatibility with the 8088, newer machines thus contain circuitry
  10. which permits the twenty-first address line (A20) to be disabled.  The
  11. CPU then effectively has only twenty address lines in real mode, just
  12. as the 8088 does, and addresses which would extend beyond the one
  13. megabyte mark wrap to the beginning of the address space.  See also
  14. High Memory Area, Real Mode.
  15.  
  16. ABIOS
  17.     (Advanced BIOS) The IBM XT/286 and PS/2 models with 80286 or
  18. higher processors contain two separate BIOSes.  The ABIOS is a
  19. protected-mode BIOS which is used by OS/2.  For machines without an
  20. ABIOS, such as the IBM AT, OS/2 loads the equivalent of the ABIOS from
  21. disk.  see also CBIOS
  22.  
  23. API
  24.     (Application Program[ming] Interface) The defined set of calls
  25. which a program may make to interact with or request services of the
  26. operating system or environment under which it is running.  Because the
  27. inputs and outputs of the calls are well-defined, a program using the
  28. API can continue using the identical calls even if the internal
  29. organization of the program providing the API changes.
  30.  
  31. APL
  32.     (A Programming Language) An interactive, mathematically-
  33. oriented language which is well-suited to manipulating matrices.
  34. Originally using greek letters and numerous special symbols, thus
  35. requiring a special display, versions are now available which use
  36. keywords in place of the special symbols.
  37.  
  38. ASCIZ
  39.     A NUL-terminated ASCII string.  The ASCIZ string "ABC" consists
  40. of the four bytes 41h, 42h, 43h, and 00h.  Unless otherwise specified,
  41. maximum lengths given in the interrupt list do not include the
  42. terminating NUL.
  43.  
  44. AVATAR
  45.     (Advanced Video Attribute Terminal Assembler and Recreator) A
  46. set of control codes which may be used to affect the output of
  47. characters to the screen on systems equipped with an appropriate
  48. driver.  Similar in intent to ANSI sequences, AVATAR has shorter
  49. command sequences and provides additional PC-specific functionality.
  50. AVATAR is primarily used by the Opus and Maximus bulletin board systems
  51. (it was designed by one of the developers of the Opus system).
  52.  
  53. BASIC
  54.     (Beginner's All-purpose Symbolic Instruction Code) A
  55. programming language originally designed as a means of teaching
  56. FORTRAN.  There are many variations of BASIC with differing
  57. capabilities; the majority are interpreted but compiled BASIC is
  58. becoming more popular.  All genuine IBM personal computers (including
  59. the latest PS/2 models) come equipped with a cassette-based BASIC
  60. interpreter in ROM.
  61.  
  62. BCD
  63.     (Binary Coded Decimal) A method of data storage where two
  64. decimal digits are stored in each byte, one in the upper four bits and
  65. the other in the lower four bits.  Since only the values 0 through 9
  66. are used in each half of a byte, BCD values can be read as decimal
  67. numbers on a hexadecimal display of memory or a file.
  68.  
  69. Big-Endian
  70.     One of the two major ways of organizing multi-byte numeric
  71. values in memory.  A big-endian layout places the most significant byte
  72. of the value in the lowest (first) memory location, i.e. 12345678h is
  73. stored as 12h 34h 56h 78h.  Motorola processors are big-endian.  Compare
  74. Little-Endian.
  75.  
  76. BIOS
  77.     (Basic Input/Output System) A set of standardized calls giving
  78. low-level access to the hardware.  The BIOS is the lowest software
  79. layer above the actual hardware and serves to insulate programs (and
  80. operating systems) which use it from the details of accessing the
  81. hardware directly.
  82.  
  83. BIOS Parameter Block
  84.     The BIOS Parameter Block stores the low-level layout of a
  85. drive.  See also INT 21h Function 53h.
  86.  
  87. Boot
  88.     To start up the computer or operating system. The term "boot"
  89. is a contraction of "bootstrap", which in turn comes from the
  90. expression "to lift oneself by one's boot straps."  The ROM BIOS on IBM
  91. PCs and compatibles reads in the first sector of the disk, which
  92. contains a short (less than 500 bytes) program that reads in a portion
  93. of the operating system, which in turn reads in the remainder of the
  94. operating system.
  95.  
  96. Boot Drive
  97.     The disk drive from which the operating system was booted.  See
  98. also Boot.
  99.  
  100. BPB
  101.     see BIOS Parameter Block
  102.  
  103. Breakpoint
  104.     When debugging, a memory location which when accessed causes a
  105. break in the normal flow of execution and the invocation of the
  106. debugger.  Used to let a program run at full speed until a certain
  107. instruction is reached or (less frequently) a particular data item is
  108. accessed or changed.
  109.  
  110. Cache
  111.     Caching is a method of increasing performance by keeping
  112. frequently-used data in a location which is more quickly accessed. The
  113. most common caches are disk caches (store disk sectors in RAM) and RAM
  114. caches (store portions of main memory in special high-speed RAM which
  115. may be accessed as fast as the CPU is capable of accessing memory).
  116.  
  117. Callback
  118.     A call to a specified function made by the operating system or
  119. operating environment when a request (usually an asynchronous request)
  120. completes.  This permits the calling program to continue operating while
  121. the request is processed yet still be aware of its completion
  122. immediately without the need to constantly poll the request's status.
  123. See also Callout.
  124.  
  125. Callout
  126.     A call made by the operating system, operating environment, or
  127. an application program on various events, which may be intercepted by
  128. other software which is interested in the current state of the system.
  129. See also External Device Interface.  See also Callback.
  130.  
  131. CAS
  132.     see Communicating Applications Specification
  133.  
  134. CBIOS
  135.     (Compatibility BIOS) The IBM XT/286 and PS/2 models with 80286
  136. or higher processors contain two separate BIOSes.  The CBIOS is a
  137. real-mode BIOS which is compatible with the earlier products in the IBM
  138. PC family and PS/2 models with 8086 processors.  See also ABIOS.
  139.  
  140. CDS
  141.     see Current Directory Structure
  142.  
  143. CGA
  144.     (Color/Graphics Adapter) One of the two video display boards
  145. introduced together with the original IBM PC.  See also HGC, MDA.
  146.  
  147. Clock Tick
  148.     1/18.2 second, or approximately 55 milliseconds.  This is the
  149. rate at which the IBM PC's system clock is updated.
  150.  
  151. CMOS
  152.     (Complementary Metal-Oxide-Silicon) A type of integrated
  153. circuit design known for its low power consumption.
  154.  
  155. Communicating Applications Specification
  156.     DCA and Intel's standard programmatic interface for sending and
  157. receiving FAXes via any of a number of internal FAX boards.
  158.  
  159. CP/M
  160.     (Control Program for Microcomputers) An early operating system
  161. for micros based on the 8-bit Intel 8080 CPU (and later the compatible
  162. 8085 and Zilog Z80 CPUs).  MSDOS version 1.0 was essentially a clone of
  163. CP/M for the Intel 8086.
  164.  
  165. CP/M-86
  166.     One of the three operating systems offered by IBM for its
  167. original PC (the other two were MSDOS and the UCSD p-System).  It has
  168. since evolved into DR-DOS version 6.
  169.  
  170. CPU
  171.     (Central Processing Unit) The microprocessor which executes
  172. programs on your computer.
  173.  
  174. Current Directory Structure
  175.     The data record used by DOS to keep track of the current
  176. directory on a drive; whether the drive is valid, network, SUBSTituted,
  177. or JOINed; and other pertinent information.  See also INT 21h Function
  178. 52h.
  179.  
  180. Cylinder
  181.     The set of concentric tracks of data located at the same
  182. position on each data-bearing surface of the disk. A double-sided
  183. floppy will contain two tracks per cylinder.
  184.  
  185. DAC
  186.     (Digital-to-Analog Converter) A hardware device (in its simplest
  187. form, nothing more than a set of interconnected resistors) which converts
  188. a digital number into an analog signal whose voltage is proportional to
  189. the value of the digital number.  VGA and later color video boards use
  190. DACs to convert color values into the analog signals sent to the display;
  191. sound boards normally use DACs as well.
  192.  
  193. DCC
  194.     (Display Combination Code) A number which indicates both the
  195. type of display adapter board and the type of monitor attached to the
  196. video board.
  197.  
  198. Delayed Write
  199.     A form of caching in which control is returned before the data is
  200. actually written to the storage media.  See also Cache.
  201.  
  202. Device Driver
  203.     An interface module between the device-independent portions of
  204. the operating system and an actual hardware device which converts
  205. device-independent requests into the actual sequence of device
  206. operations to perform the requested action.  IO.SYS contains the
  207. standard, built-in MSDOS device drivers such as CON, COM1, AUX, PRN,
  208. etc.  See also INT 21h Function 52h and INT 2Fh Function 0802h.
  209.  
  210. Device Driver Request Header
  211.     The data structure passed to a device driver which contains the
  212. command to be executed, its parameters, and space for a returned status
  213. and data values.  See INT 2Fh Function 0802h.
  214.  
  215. DGIS
  216.     (Direct Graphics Interface Standard)
  217.  
  218. Direct Memory Access
  219.     A method whereby peripherals may transfer data into or out of
  220. main memory without the involvement of the CPU.
  221.  
  222. Disk Transfer Address
  223.     The Disk Transfer Address indicates where functions which do
  224. not take an explicit data address will read or store data.  Although
  225. the name implies that only disk accesses use this address, other
  226. functions use it as well.  See INT 21h Function 4Eh for an example of
  227. the DTA's use.
  228.  
  229. DLL
  230.     see Dynamic Link Library
  231.  
  232. DMA
  233.     see Direct Memory Access
  234.  
  235. DOS Extender
  236.     A program which allows a program to run in protected mode while still
  237. retaining access to real-mode MSDOS services.  See also Protected Mode.
  238.  
  239. DOS Parameter List
  240.     The DOS Parameter List is used to pass arguments to SHARE and
  241. network functions.  See also INT 21h Function 5D00h.
  242.  
  243. DOS Protected-Mode Interface
  244.     An API which provides basic services for protected-mode programs to
  245. allocate memory, invoke real-mode software, etc.  See also Virtual Control
  246. Program Interface.
  247.  
  248. DPB
  249.     see Drive Paramter Block
  250.  
  251. DPL
  252.     see DOS Parameter List
  253.  
  254. DPMI
  255.     see DOS Protected-Mode Interface
  256.  
  257. Drive Parameter Block
  258.     The DOS Drive Parameter Block stores the description of the
  259. media layout for a logical drive, as well as some housekeeping
  260. information.  See also INT 21h Function 1Fh and INT 21h Function 32h.
  261.  
  262. DTA
  263.     see Disk Transfer Address
  264.  
  265. DWORD
  266.     Doubleword; four bytes.  Commonly used to hold a 32-bit
  267. segment:offset or selector:offset address.
  268.  
  269. Dynamic Link Library
  270.     A collection of subroutines which are linked with a program at
  271. the time it is loaded into memory rather than permanently placed in the
  272. executable.  This has the advantage of allowing a single copy of the
  273. subroutine library to reside on disk or in memory even when it is used
  274. by many programs.  It also permits all programs using the DLL to be
  275. updated without recompiling simply by installing a new version of the
  276. library.
  277.  
  278. EGA
  279.     (Enhanced Graphics Adapter) IBM's second color video board for the
  280. IBM PC family, capable of a maximum resolution of 640x350 pixels in 16
  281. simultaneous colors of a total of 64 possible colors.
  282.  
  283. EISA
  284.     (Enhanced Industry-Standard Architecture) A 32-bit superset of the
  285. IBM AT's expansion bus (which is now known as the ISA or Industry-Standard
  286. Architecture bus).
  287.  
  288. EMS
  289.     see Expanded Memory Specification
  290.  
  291. EOI
  292.     (End of Interrupt) A particular command sent to the interrupt
  293. controller to indicate that the interrupt has been handled by software
  294. and that new interrupts of the same or lower priority may now be signalled
  295. by the interrupt controller.
  296.  
  297. Expanded Memory Specification
  298.     A specification devised by Lotus, Intel, and Microsoft for
  299. accessing more than one megabyte of memory by bank-switching additional
  300. memory into the one megabyte real mode address space.
  301.  
  302. Extended BIOS Data Area
  303.     A block of memory, typically the 1K at the top of conventional
  304. memory, which is used to store additional data for use by the BIOS which
  305. does not fit into the 256-byte data area at segment 0040h.
  306.  
  307. Extended Memory
  308.     Memory beyond the one megabyte address which is available only
  309. on 80286 and higher machines.  Except for a small portion (the High
  310. Memory Area), extended memory is only accessible from protected mode.
  311.  
  312. Extended Memory Specification
  313.     A specification devised by Microsoft which allows multiple
  314. programs to share extended (above 1 megabyte) memory and noncontiguous
  315. memory above 640K.  See also Upper Memory Block.
  316.  
  317. External Device Interface
  318.     A series of calls made by the DESQview multitasker on various
  319. "interesting" events, which may be intercepted by programs which wish to
  320. keep track of the current system state.  See also Callout.
  321.  
  322. FAT
  323.     see File Allocation Table
  324.  
  325. FCB
  326.     see File Control Block
  327.  
  328. File Allocation Table
  329.     A data structure on disk that records which clusters are free,
  330. which are unusable, and which have been allocated.  The clusters occupied
  331. by a file are linked into a list in the file allocation table, allowing
  332. DOS to find the contents of the file.
  333.  
  334. File Control Block
  335.     A data record in the calling program's address space which is
  336. used by DOS 1.x functions to record the state of an open file.  See
  337. also INT 21h Function 13h.
  338.  
  339. File Handle
  340.     A small positive integer used to identify the previously-opened
  341. file on which a program wishes to perform an operation.
  342.  
  343. Flush
  344.     To force the copying of any data still stored in temporary
  345. buffers to its final destination.
  346.  
  347. FM
  348.     (Frequency Modulation)  A method of encoding data as a series of
  349. magnetic flux reversals on disk or tape, commonly known as single-density
  350. recording.  In frequency modulation, a series of clock pulses are written
  351. at regular intervals, with one data bit for each clock pulse.  See also
  352. MFM, RLL.
  353.  
  354. Formatting
  355.     Preparing a storage medium (usually magnetic media such as a
  356. disk or tape) for storing data.  Low-level or physical formatting
  357. writes all necessary housekeeping data to enable the storage device
  358. to read the media and may also initialize the storage units on the
  359. media to a known state.  High-level or logical formatting writes data
  360. used by the operating system, such as allocation information and
  361. directories onto media which has already been physically formatted.
  362. Formatting programs often perform both a low-level and a high-level
  363. format.
  364.  
  365. FOSSIL
  366.     (Fido/Opus/Seadog Standard Interface Layer)  A standardized API
  367. for performing serial I/O, originally used by the Fido and Opus bulletin-
  368. board software and Seadog bulletin-board mailer, but now in wider use.
  369.  
  370. FTP
  371.     (File Transfer Protocol)  The standard protocol for copying files
  372. from one machine to another on a TCP/IP (Internet) network.  Also the
  373. program of the same name with which a user may transfer files.
  374.  
  375. Handle
  376.     A short identifier, usually a small integer or a pointer, for
  377. some other object which is maintained or controlled by the operating
  378. system or environment; a particular handle may be valid system-wide or
  379. may have meaning only for a particular process.  See also File Handle.
  380.  
  381. HGC
  382.     (Hercules Graphics Controller) A monochrome video adapter capable
  383. of 720x352 monochrome graphics.  The HGC was the first non-IBM video
  384. adapter for the IBM PC.  See also CGA, MDA.
  385.  
  386. High Memory Area
  387.     The first 65520 bytes (64K less 16 bytes) of extended memory.
  388. This area is accessible from real mode on the 80286 and higher
  389. processors because these processors do not wrap addresses at one
  390. megabyte as the 8088 and 8086 do.  See also A20, INT 2Fh Functions
  391. 4A01h.
  392.  
  393. HMA
  394.     see High Memory Area
  395.  
  396. IFS
  397.     see Installable File System
  398.  
  399. Installable File System
  400.     An Installable File System which allows non-DOS format media to
  401. be used by DOS.  In most ways, an IFS is very similar to a networked
  402. drive, although an IFS would typically be local rather than remote.
  403. See also INT 21h Function 52h.
  404.  
  405. IPX
  406.     (Internetwork Packet Exchange) A low-level layer of Novell's
  407.     NetWare networking software.
  408.  
  409. IRQ
  410.     (Interrupt ReQuest) A hardware line connected to the interrupt
  411. controller chip which signals that a CPU interrupt should be generated.
  412.  
  413. ISA
  414.     (Industry-Standard Architecture) The expansion bus used by the
  415. IBM PC/AT.  See also EISA.
  416.  
  417. JFT
  418.     see Job File Table
  419.  
  420. Job File Table
  421.     The Job File Table (also called Open File Table) stored in a
  422. program's PSP which translates handles into SFT numbers.  See also INT
  423. 21h Function 26h.
  424.  
  425. List of Lists
  426.     An internal DOS table of lists and other tables through which
  427. most DOS-internal data structures may be reached.  See INT 21h Function
  428. 52h.
  429.  
  430. Little-Endian
  431.     One of the two major ways of organizing multi-byte numeric
  432. values in memory.  A little-endian layout places the least significant
  433. byte of the value in the lowest (first) memory location, i.e. 12345678h
  434. is stored as 78h 56h 34h 12h.  Intel processors are little-endian.
  435. Compare Big-Endian.
  436.  
  437. LPT
  438.     Abbreviation for Line PrinTer.
  439.  
  440. MCB
  441.     see Memory Control Block
  442.  
  443. MDA
  444.     (Monochrome Display Adapter) A text-only video adapter introduced
  445. together with the original IBM PC.  See also CGA, HGC.
  446.  
  447. Memory Control Block
  448.     The data structure containing the length and owner (among other
  449. things) of a portion of the memory managed by DOS.  See INT 21h
  450. Function 52h.
  451.  
  452. MFM
  453.     (Modified Frequency Modulation) A method of encoding data as a
  454. series of magnetic flux reversals on disk or tape, commonly known as
  455. double-density recording.  In contrast to FM, modified frequency
  456. modulation omits all clock pulses except those between pairs of zero
  457. bits.  See also FM, RLL.
  458.  
  459. Mickey
  460.     The smallest increment of motion a mouse can sense.
  461.  
  462. Multitasking
  463.     Any of a number of methods by which multiple programs may
  464. execute concurrently, with rapid switching between the programs giving
  465. the appearance that all are executing simultaneously.
  466.  
  467. MZ
  468.     The letters M and Z appear in numerous places in DOS (memory
  469. control blocks, .EXE header, etc.); the conventional explanation is
  470. that these are the initials of Mark Zbikowski, one of the principal
  471. architects of MSDOS 2.0.
  472.  
  473. NCB
  474.     see Network Control Block
  475.  
  476. NetBIOS
  477.     One of a number of low-level device-independent network
  478. interfaces; the other major interfaces are Novell's IPX and the
  479. Internet's IP (Internet Protocol, the lower-level portion of TCP/IP).
  480.  
  481. Network Control Block
  482.     A Network Control Block used to pass requests to NetBIOS and
  483. receive status information from the NetBIOS handler.
  484.  
  485. Network Redirector
  486.     A program which permits access to network devices (disks,
  487. printers, etc.) using the MSDOS kernel network redirector interface.
  488. See also Network Shell, Redirector Interface.
  489.  
  490. Network Shell
  491.     A program which permits access to network devices (disks,
  492. printers, etc.) by intercepting DOS calls before they reach the DOS
  493. kernel and handling those operating on network devices while passing
  494. through actions on local devices.  See also Network Redirector.
  495.  
  496. NMI
  497.     see Non-Maskable Interrupt
  498.  
  499. Non-Maskable Interrupt
  500.     An interrupt which can not be disabled by clearing the CPU's
  501. interrupt enable flag, unlike most normal interrupts.  Non-maskable
  502. interrupts are typically used to signal calamities which require
  503. immediate action, such as a hardware failure or imminent loss of power.
  504.  
  505. Non-Volatile RAM
  506.     Memory which can be modified like normal RAM but does not lose
  507. its contents when the system's power is turned off. This memory may be
  508. powered by a battery when the system power if off, or it may be a type
  509. of memory which does not need electricity to maintain its contents,
  510. such as EEPROM or bubble memory.
  511.  
  512. NVRAM
  513.     see Non-Volatile RAM
  514.  
  515. Open File Table
  516.     see Job File Table
  517.  
  518. Park
  519.     To move a hard disk's read/write heads to a position in which
  520. it is safe to turn off the power and transport the disk drive.  Many
  521. drives also lock the heads into position when they are parked,
  522. providing additional protection from sudden movement.
  523.  
  524. Pel
  525.     see Pixel
  526.  
  527. Pixel
  528.     A picture element, the smallest addressable unit of a graphical
  529. display.
  530.  
  531. Post
  532.     Make known, either generally or to a specific handler, that a
  533. particular event of interest has occurred.
  534.  
  535. POST
  536.     see Power-On Self-Test
  537.  
  538. Power-On Self-Test
  539.     A brief examination of the system's functionality performed
  540. each time the system is turned on.
  541.  
  542. Program Segment Prefix
  543.     The Program Segment Prefix is a 256-byte data area prepended to
  544. a program when it is loaded.  It contains the command line that the
  545. program was invoked with, and a variety of housekeeping information for
  546. DOS.  See also INT 21h Function 26h.
  547.  
  548. Protected Mode
  549.     One of the operating modes of the 80286 and higher Intel
  550. processors, in which addresses used by programs no longer correspond to
  551. physical addresses and the CPU enforces various protection mechanisms
  552. designed to prevent one program from disrupting other programs or the
  553. operating system.  See also Real Mode, Virtual-86 Mode.
  554.  
  555. PSP
  556.     see Program Segment Prefix
  557.  
  558. PWORD
  559.     Six bytes.  Used to hold an 80386 protected-mode "far" address,
  560. consisting of a segment selector and a 32-bit offset.  See also DWORD,
  561. QWORD.
  562.  
  563. QWORD
  564.     (quad-word) Eight bytes.  See also DWORD, PWORD.
  565.  
  566. Real Mode
  567.     One of the operating modes of the 80286 and higher Intel
  568. processors, and the only operating mode of the 8088, 8086, 80186, and
  569. 80188 processors.  In this mode, all addresses used by programs
  570. correspond directly to real physical addresses (thus the full name,
  571. Real Address Mode) and there are no CPU-imposed protections between
  572. programs.  See also Protected Mode, Virtual-86 Mode.
  573.  
  574. Redirector Interface
  575.     The set of device-independent INT 2Fh function calls invoked by
  576. the MSDOS kernel to operate on devices it recognizes as network
  577. devices.  These function calls provide a lower-level interface than the
  578. INT 21h calls made to DOS, allowing a program intercepting these
  579. functions to be simpler than one intercepting INT 21h calls.  See INT
  580. 2Fh Functions 1100h through 1130h.
  581.  
  582. RGB
  583.     (Red-Green-Blue) The color specification mechanism normally
  584. used in computer displays, where colors are separated into their
  585. primary-color components.  See also YUV.
  586.  
  587. RLL
  588.     (Run-Length Limited) A method of encoding data as a series of
  589. magnetic flux reversals on disk or tape.  RLL can achieve higher data
  590. densities than MFM recording because it encodes the data such that
  591. (on average), fewer than one flux reversal per data bit is required
  592. (however, timing becomes more critical).  RLL is actually an entire
  593. family of encoding methods, specified with two numbers indicating the
  594. minimum and maximum distances between one bits (flux transitions).  The
  595. variant normally called RLL is RLL-2,7; RLL-1,7 and RLL-3,9 are also in
  596. use.  MFM is in effect RLL-1,3.  See also FM, MFM.
  597.  
  598. SDA
  599.     see Swappable Data Area
  600.  
  601. Sector
  602.     The smallest addressable unit of data on a disk; under MS-DOS,
  603. this is normally 512 bytes.  See also Track.
  604.  
  605. SFT
  606.     see System File Table
  607.  
  608. SVGA
  609.     (Super VGA) A video adapter capable of higher resolution
  610. (pixels and/or colors) than the 320x200x256 and 640x480x16 which IBM's
  611. VGA adapter is capable of producing.  See also VESA.
  612.  
  613. Swappable Data Area
  614.     The portion of the DOS data segment containing all of the
  615. variables used internally by DOS to record the state of a function call
  616. in progress.  See also INT 21h Function 5D06h and INT 21h Function
  617. 5D0Bh.
  618.  
  619. System File Table
  620.     A System File Table is a DOS-internal data structure used to
  621. maintain the state of an open file for the DOS 2+ handle functions,
  622. just as an FCB maintains the state for DOS 1.x functions.  See also INT
  623. 21h Function 52h.
  624.  
  625. TSR
  626.     (Terminate and Stay Resident) A program which remains in memory
  627. after terminating in order to provide services to other programs or the
  628. user.  The name comes from the name of the DOS function call used to
  629. remain in memory after termination.
  630.  
  631. Track
  632.     One of multiple concentric circular rings of data on a single
  633. data-bearing surface of a disk.  Tracks at the same location on
  634. different surfaces form a cylinder.
  635.  
  636. UMB
  637.     see Upper Memory Block
  638.  
  639. Upper Memory Block
  640.     A noncontiguous section of allocatable memory located between
  641. the 640K and 1024K addresses.  See also INT 21h Function 52h.
  642.  
  643. V86
  644.     see Virtual-86 Mode
  645.  
  646. VCPI
  647.     see Virtual Control Program Interface
  648.  
  649. VDM
  650.     see Virtual DOS Machine
  651.  
  652. VDS
  653.     see Virtual DMA Specification
  654.  
  655. VESA
  656.     (Video Electronics Standards Association)  An industry group
  657. which sets both hardware and software standards and recommendations.
  658. The term VESA is also used to denote compliance with the VESA SuperVGA
  659. BIOS Extensions, a standard set of video BIOS functions for accessing
  660. video modes of higher resolution than those defined by IBM.
  661.  
  662. VGA
  663.     (Video Graphics Array) The video adapter introduced with the
  664. IBM PS/2 series of computers.
  665.  
  666. Virtual-86 Mode
  667.     One of the operating modes of the 80386 and 80486 processors in
  668. which user programs run as if the CPU were in Real Mode, while
  669. providing the protection and address-mapping capabilities of Protected
  670. Mode to a supervisor program which oversees the virtual machine on
  671. which the user programs are running.  This mode is called Virtual-86
  672. because one or more virtual 8086 environments are run on a single CPU.
  673. See also Protected Mode, Real Mode, Virtual Machine.
  674.  
  675. Virtual Control Program Interface
  676.     A simple API for protected-mode programs to allocate memory and
  677. switch into or out of protected mode.  See also DOS Protected-Mode Interface.
  678.  
  679. Virtual DMA Specification
  680.     A set of interrupt calls which permit the use of DMA even on
  681. systems running in protected or Virtual-86 mode with their address
  682. remapping, or systems such as Micro Channel PS/2s with multiple bus
  683. masters independently performing DMA operations.
  684.  
  685. Virtual DOS Machine
  686.     A special type of virtual machine provided by OS/2 version 2.0,
  687. in which a copy of MS-DOS or an MS-DOS compatible operating system (or
  688. even an incompatible 8086 operating system) is run and appears to have
  689. full control of the system.  See also Virtual Machine, INT 21h Function
  690. 64h.
  691.  
  692. Virtual Machine
  693.     One method for multitasking programs is to virtualize the CPU
  694. and other hardware, giving the appearance of sole possession of the
  695. system to each program being run.  Such a virtualized environment is
  696. called a virtual machine.  See also Virtual-86 Mode, Virtual DOS
  697. Machine.
  698.  
  699. VM
  700.     see Virtual Machine
  701.  
  702. VxD
  703.     A virtual device driver for Windows 3.0 or 3.1.  See also
  704. device driver.
  705.  
  706. XBDA
  707.     see Extended BIOS Data Area
  708.  
  709. XDI
  710.     see External Device Interface
  711.  
  712. XMS
  713.     see Extended Memory Specification
  714.  
  715. YUV
  716.     A color specification mechanism used in NTSC-type color
  717. television signals.  Y represents luminance (overall brightness, the
  718. only part of the signal used by black-and-white televisions), while U
  719. and V are chrominance (color) information.  Also called YIQ.  See also
  720. RGB.