home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 15 / CD_ASCQ_15_070894.iso / maj / 4266 / glossary.lst < prev    next >
File List  |  1994-04-02  |  32KB  |  857 lines

  1. GLOSSARY
  2. Last Change 4/2/94.
  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 Callback, External Device Interface.
  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. DRAM
  258.     (Dynamic Random Access Memory) RAM memory which essentially consists
  259. of a tiny capacitor for each bit of memory.  Since capacitors do not hold
  260. a charge indefinitely, DRAM must be constantly refreshed to avoid losing
  261. its contents.  Also, the process of reading the contents of the memory are
  262. destructive, meaning extra time must be spent restoring the contents of
  263. memory addresses which are accessed, so DRAM is slower than SRAM.  See also
  264. Refresh, SRAM.
  265.  
  266. Drive Parameter Block
  267.     The DOS Drive Parameter Block stores the description of the
  268. media layout for a logical drive, as well as some housekeeping
  269. information.  See also INT 21h Function 1Fh and INT 21h Function 32h.
  270.  
  271. DTA
  272.     see Disk Transfer Address
  273.  
  274. DWORD
  275.     Doubleword; four bytes.  Commonly used to hold a 32-bit
  276. segment:offset or selector:offset address.
  277.  
  278. Dynamic Link Library
  279.     A collection of subroutines which are linked with a program at
  280. the time it is loaded into memory rather than permanently placed in the
  281. executable.  This has the advantage of allowing a single copy of the
  282. subroutine library to reside on disk or in memory even when it is used
  283. by many programs.  It also permits all programs using the DLL to be
  284. updated without recompiling simply by installing a new version of the
  285. library.
  286.  
  287. EGA
  288.     (Enhanced Graphics Adapter) IBM's second color video board for the
  289. IBM PC family, capable of a maximum resolution of 640x350 pixels in 16
  290. simultaneous colors of a total of 64 possible colors.
  291.  
  292. EISA
  293.     (Enhanced Industry-Standard Architecture) A 32-bit superset of the
  294. IBM AT's expansion bus (which is now known as the ISA or Industry-Standard
  295. Architecture bus).
  296.  
  297. EMS
  298.     see Expanded Memory Specification
  299.  
  300. EOI
  301.     (End of Interrupt) A particular command sent to the interrupt
  302. controller to indicate that the interrupt has been handled by software
  303. and that new interrupts of the same or lower priority may now be signalled
  304. by the interrupt controller.
  305.  
  306. ESDI
  307.     (Enhanced Small Device Interface) A disk drive interface type
  308. which was briefly popular before IDE took over.  An ESDI drive can
  309. transfer data between the drive and controller at 10, 15, or 20
  310. megabits per second, which is faster than an MFM or RLL controller but
  311. slower than what is possible with an IDE or SCSI drive.  See also IDE.
  312.  
  313. Exception
  314.     A signal by the CPU that some error condition has been encountered
  315. that it can not deal with without a program's intervention.  The most commonly
  316. encountered exceptions on Intel processors are Exceptions 12 and 13, which
  317. are stack and general problems, respectively.  Exception 13 is typically
  318. caused by a memory access which wraps from the end of a segment back to
  319. the beginning.
  320.  
  321. Expanded Memory Specification
  322.     A specification devised by Lotus, Intel, and Microsoft for
  323. accessing more than one megabyte of memory by bank-switching additional
  324. memory into the one megabyte real mode address space.
  325.  
  326. Extended BIOS Data Area
  327.     A block of memory, typically the 1K at the top of conventional
  328. memory, which is used to store additional data for use by the BIOS which
  329. does not fit into the 256-byte data area at segment 0040h.
  330.  
  331. Extended File Control Block
  332.     A DOS File Control Block which has had an additional seven
  333. bytes prepended to permit control of file attributes (which are stored
  334. in the appendage).  See also FCB.
  335.  
  336. Extended Memory
  337.     Memory beyond the one megabyte address which is available only
  338. on 80286 and higher machines.  Except for a small portion (the High
  339. Memory Area), extended memory is only accessible from protected mode.
  340.  
  341. Extended Memory Specification
  342.     A specification devised by Microsoft which allows multiple
  343. programs to share extended (above 1 megabyte) memory and noncontiguous
  344. memory above 640K.  See also Upper Memory Block.
  345.  
  346. External Device Interface
  347.     A series of calls made by the DESQview multitasker on various
  348. "interesting" events, which may be intercepted by programs which wish to
  349. keep track of the current system state.  See also Callout.
  350.  
  351. FAT
  352.     see File Allocation Table
  353.  
  354. FCB
  355.     see File Control Block
  356.  
  357. File Allocation Table
  358.     A data structure on disk that records which clusters are free,
  359. which are unusable, and which have been allocated.  The clusters occupied
  360. by a file are linked into a list in the file allocation table, allowing
  361. DOS to find the contents of the file.
  362.  
  363. File Control Block
  364.     A data record in the calling program's address space which is
  365. used by DOS 1.x functions to record the state of an open file.  See
  366. also INT 21h Function 13h.
  367.  
  368. File Handle
  369.     A small positive integer used to identify the previously-opened
  370. file on which a program wishes to perform an operation.
  371.  
  372. Flush
  373.     To force the copying of any data still stored in temporary
  374. buffers to its final destination.
  375.  
  376. FM
  377.     (Frequency Modulation)  A method of encoding data as a series of
  378. magnetic flux reversals on disk or tape, commonly known as single-density
  379. recording.  In frequency modulation, a series of clock pulses are written
  380. at regular intervals, with one data bit for each clock pulse.  See also
  381. MFM, RLL.
  382.  
  383. Formatting
  384.     Preparing a storage medium (usually magnetic media such as a
  385. disk or tape) for storing data.  Low-level or physical formatting
  386. writes all necessary housekeeping data to enable the storage device
  387. to read the media and may also initialize the storage units on the
  388. media to a known state.  High-level or logical formatting writes data
  389. used by the operating system, such as allocation information and
  390. directories onto media which has already been physically formatted.
  391. Formatting programs often perform both a low-level and a high-level
  392. format.
  393.  
  394. FOSSIL
  395.     (Fido/Opus/Seadog Standard Interface Layer)  A standardized API
  396. for performing serial I/O, originally used by the Fido and Opus bulletin-
  397. board software and Seadog bulletin-board mailer, but now in wider use.
  398.  
  399. FTP
  400.     (File Transfer Protocol)  The standard protocol for copying files
  401. from one machine to another on a TCP/IP (Internet) network.  Also the
  402. program of the same name with which a user may transfer files.
  403.  
  404. Handle
  405.     A short identifier, usually a small integer or a pointer, for
  406. some other object which is maintained or controlled by the operating
  407. system or environment; a particular handle may be valid system-wide or
  408. may have meaning only for a particular process.  See also File Handle.
  409.  
  410. HGC
  411.     (Hercules Graphics Controller) A monochrome video adapter capable
  412. of 720x352 monochrome graphics.  The HGC was the first non-IBM video
  413. adapter for the IBM PC.  See also CGA, MDA.
  414.  
  415. High Memory Area
  416.     The first 65520 bytes (64K less 16 bytes) of extended memory.
  417. This area is accessible from real mode on the 80286 and higher
  418. processors because these processors do not wrap addresses at one
  419. megabyte as the 8088 and 8086 do.  See also A20, INT 2Fh Functions
  420. 4A01h.
  421.  
  422. HMA
  423.     see High Memory Area
  424.  
  425. IDE
  426.     (Integrated Drive Electronics) A type of disk drive interface
  427. which essentially extends the PC's expansion bus all the way to the
  428. drive and places the drive controller on the disk drive itself.  See
  429. also ESDI.
  430.  
  431. IFS
  432.     see Installable File System
  433.  
  434. Installable File System
  435.     An Installable File System which allows non-DOS format media to
  436. be used by DOS.  In most ways, an IFS is very similar to a networked
  437. drive, although an IFS would typically be local rather than remote.
  438. See also INT 21h Function 52h.
  439.  
  440. IP
  441.     (Internet Protocol) The lower level (transport layer) of the
  442. TCP/IP protocol suite.  See also TCP, TCP/IP.
  443.  
  444. IPC
  445.     (Inter-Process Communication) Any one of numerous methods for
  446. allowing two or more separate processes to exchange data.
  447.  
  448. IPX
  449.     (Internetwork Packet Exchange) A low-level layer of Novell's
  450.     NetWare networking software.
  451.  
  452. IRQ
  453.     (Interrupt ReQuest) A hardware line connected to the interrupt
  454. controller chip which signals that a CPU interrupt should be generated.
  455.  
  456. ISA
  457.     (Industry-Standard Architecture) The expansion bus used by the
  458. IBM PC/AT.  See also EISA.
  459.  
  460. JFT
  461.     see Job File Table
  462.  
  463. Job File Table
  464.     The Job File Table (also called Open File Table) stored in a
  465. program's PSP which translates handles into SFT numbers.  See also INT
  466. 21h Function 26h.
  467.  
  468. LCD
  469.     (Liquid Crystal Display)
  470.  
  471. List of Lists
  472.     An internal DOS table of lists and other tables through which
  473. most DOS-internal data structures may be reached.  See INT 21h Function
  474. 52h.
  475.  
  476. Little-Endian
  477.     One of the two major ways of organizing multi-byte numeric
  478. values in memory.  A little-endian layout places the least significant
  479. byte of the value in the lowest (first) memory location, i.e. 12345678h
  480. is stored as 78h 56h 34h 12h.  Intel processors are little-endian.
  481. Compare Big-Endian.
  482.  
  483. LPT
  484.     Abbreviation for Line PrinTer.
  485.  
  486. MCB
  487.     see Memory Control Block
  488.  
  489. MCGA
  490.     (Multi-Color Graphics Array) The low-end color adapter offered
  491. in IBM's early PS/2 series machines.
  492.  
  493. MDA
  494.     (Monochrome Display Adapter) A text-only video adapter introduced
  495. together with the original IBM PC.  See also CGA, HGC.
  496.  
  497. Memory Control Block
  498.     The data structure containing the length and owner (among other
  499. things) of a portion of the memory managed by DOS.  See INT 21h
  500. Function 52h.
  501.  
  502. MFM
  503.     (Modified Frequency Modulation) A method of encoding data as a
  504. series of magnetic flux reversals on disk or tape, commonly known as
  505. double-density recording.  In contrast to FM, modified frequency
  506. modulation omits all clock pulses except those between pairs of zero
  507. bits.  See also FM, RLL.
  508.  
  509. Mickey
  510.     The smallest increment of motion a mouse can sense.
  511.  
  512. MIDI
  513.     (Musical Instrument Digital Interface) A standardized interface
  514. for controlling musical instruments with a computer.
  515.  
  516. Modem
  517.     (contraction of MOdulator/DEModulator)
  518.  
  519. Multitasking
  520.     Any of a number of methods by which multiple programs may
  521. execute concurrently, with rapid switching between the programs giving
  522. the appearance that all are executing simultaneously.
  523.  
  524. MZ
  525.     The letters M and Z appear in numerous places in DOS (memory
  526. control blocks, .EXE header, etc.); the conventional explanation is
  527. that these are the initials of Mark Zbikowski, one of the principal
  528. architects of MSDOS 2.0.
  529.  
  530. NCB
  531.     see Network Control Block
  532.  
  533. NDIS
  534.     (Network Driver Interface Specification) A hardware-independent
  535. network interface developed by Microsoft and 3com.  See also Packet
  536. Driver, TCP/IP.
  537.  
  538. NetBIOS
  539.     One of a number of low-level device-independent network
  540. interfaces; the other major interfaces are Novell's IPX and the
  541. Internet's IP (Internet Protocol, the lower-level portion of TCP/IP).
  542.  
  543. Network Control Block
  544.     A Network Control Block used to pass requests to NetBIOS and
  545. receive status information from the NetBIOS handler.
  546.  
  547. Network Redirector
  548.     A program which permits access to network devices (disks,
  549. printers, etc.) using the MSDOS kernel network redirector interface.
  550. See also Network Shell, Redirector Interface.
  551.  
  552. Network Shell
  553.     A program which permits access to network devices (disks,
  554. printers, etc.) by intercepting DOS calls before they reach the DOS
  555. kernel and handling those operating on network devices while passing
  556. through actions on local devices.  See also Network Redirector.
  557.  
  558. NMI
  559.     see Non-Maskable Interrupt
  560.  
  561. Non-Maskable Interrupt
  562.     An interrupt which can not be disabled by clearing the CPU's
  563. interrupt enable flag, unlike most normal interrupts.  Non-maskable
  564. interrupts are typically used to signal calamities which require
  565. immediate action, such as a hardware failure or imminent loss of power.
  566.  
  567. Non-Volatile RAM
  568.     Memory which can be modified like normal RAM but does not lose
  569. its contents when the system's power is turned off. This memory may be
  570. powered by a battery when the system power if off, or it may be a type
  571. of memory which does not need electricity to maintain its contents,
  572. such as EEPROM or bubble memory.
  573.  
  574. NVRAM
  575.     see Non-Volatile RAM
  576.  
  577. ODI
  578.     (Open Data-link Interface) A hardware-independent network
  579. interface developed by Novell, Inc.  See also NDIS, Packet Driver.
  580.  
  581. Open File Table
  582.     see Job File Table
  583.  
  584. Overscan Area
  585.     The "border" between the edge of the area where graphics or text can
  586. be displayed and the actual edge of the area the video adapter can illuminate
  587. on the monitor's screen.
  588.  
  589. Packet Driver
  590.     Any one of the numerous drivers conforming to FTP Software's
  591. Packet Driver Specification, which provides a hardware-independent
  592. network interface.  See also NDIS, ODI.
  593.  
  594. Page Fault
  595.     A CPU-generated signal, and the operating system's reaction to it,
  596. generated when a program accesses a page of virtual memory which is not
  597. located in RAM at the time.  The operating system's response is to load in
  598. the required page, possibly writing some other page out to disk in order
  599. to make room.  See also INT 0E.
  600.  
  601. Park
  602.     To move a hard disk's read/write heads to a position in which
  603. it is safe to turn off the power and transport the disk drive.  Many
  604. drives also lock the heads into position when they are parked,
  605. providing additional protection from sudden movement.
  606.  
  607. Pel
  608.     see Pixel
  609.  
  610. Pixel
  611.     A picture element, the smallest addressable unit of a graphical
  612. display.
  613.  
  614. Post
  615.     Make known, either generally or to a specific handler, that a
  616. particular event of interest has occurred.
  617.  
  618. POST
  619.     see Power-On Self-Test
  620.  
  621. Power-On Self-Test
  622.     A brief examination of the system's functionality performed
  623. each time the system is turned on.
  624.  
  625. Print Spooler
  626.     see SPOOL.
  627.  
  628. Program Segment Prefix
  629.     The Program Segment Prefix is a 256-byte data area prepended to
  630. a program when it is loaded.  It contains the command line that the
  631. program was invoked with, and a variety of housekeeping information for
  632. DOS.  See also INT 21h Function 26h.
  633.  
  634. Protected Mode
  635.     One of the operating modes of the 80286 and higher Intel
  636. processors, in which addresses used by programs no longer correspond to
  637. physical addresses and the CPU enforces various protection mechanisms
  638. designed to prevent one program from disrupting other programs or the
  639. operating system.  See also Real Mode, Virtual-86 Mode.
  640.  
  641. PSP
  642.     see Program Segment Prefix
  643.  
  644. PWORD
  645.     Six bytes.  Used to hold an 80386 protected-mode "far" address,
  646. consisting of a segment selector and a 32-bit offset, or a Turbo Pascal
  647. "real" variable.  See also DWORD, QWORD.
  648.  
  649. QWORD
  650.     (quad-word) Eight bytes.  See also DWORD, PWORD.
  651.  
  652. RAM
  653.     (Random Access Memory)    See also DRAM, SRAM.
  654.  
  655. Real Mode
  656.     One of the operating modes of the 80286 and higher Intel
  657. processors, and the only operating mode of the 8088, 8086, 80186, and
  658. 80188 processors.  In this mode, all addresses used by programs
  659. correspond directly to real physical addresses (thus the full name,
  660. Real Address Mode) and there are no CPU-imposed protections between
  661. programs.  See also Protected Mode, Virtual-86 Mode.
  662.  
  663. Redirector Interface
  664.     The set of device-independent INT 2Fh function calls invoked by
  665. the MSDOS kernel to operate on devices it recognizes as network
  666. devices.  These function calls provide a lower-level interface than the
  667. INT 21h calls made to DOS, allowing a program intercepting these
  668. functions to be simpler than one intercepting INT 21h calls.  See INT
  669. 2Fh Functions 1100h through 1130h.
  670.  
  671. Refresh
  672.     The process of periodically rewriting the contents of a DRAM
  673. memory chip to keep it from fading.  The term "refresh" is also commonly
  674. applied to redrawing the image on a CRT's phosphors.   See also DRAM.
  675.  
  676. RGB
  677.     (Red-Green-Blue) The color specification mechanism normally
  678. used in computer displays, where colors are separated into their
  679. primary-color components.  See also YUV.
  680.  
  681. RLL
  682.     (Run-Length Limited) A method of encoding data as a series of
  683. magnetic flux reversals on disk or tape.  RLL can achieve higher data
  684. densities than MFM recording because it encodes the data such that
  685. (on average), fewer than one flux reversal per data bit is required
  686. (however, timing becomes more critical).  RLL is actually an entire
  687. family of encoding methods, specified with two numbers indicating the
  688. minimum and maximum distances between one bits (flux transitions).  The
  689. variant normally called RLL is RLL-2,7; RLL-1,7 and RLL-3,9 are also in
  690. use.  MFM is in effect RLL-1,3.  See also FM, MFM.
  691.  
  692. SCSI
  693.     (Small Computer Systems Interface) A system-independent
  694. expansion bus typically used to connect hard disks, tape drives, and
  695. CD-ROMs to a computer.  A host adapter connects the SCSI bus to the
  696. computer's own bus.  See also ESDI, IDE.
  697.  
  698. SDA
  699.     see Swappable Data Area
  700.  
  701. Sector
  702.     The smallest addressable unit of data on a disk; under MS-DOS,
  703. this is normally 512 bytes.  See also Track.
  704.  
  705. SFT
  706.     see System File Table
  707.  
  708. SPOOL
  709.     (Simultaneous Peripheral Operation OnLine)  The process of
  710. performing output to a slow peripheral such as a printer while other
  711. tasks continue running on the CPU.  This term dates back to mainframe
  712. days before the invention of timesharing.
  713.  
  714. SQL
  715.     (Structured Query Language)
  716.  
  717. SRAM
  718.     (Static Random Access Memory)  RAM which typically consists of one
  719. flip-flop per bit of memory.  Unlike DRAMs, static RAM retains its contents
  720. as long as power is applied.  Because there is no need to refresh the
  721. contents of memory addresses which are read, SRAM is faster than DRAM,
  722. but it is more expensive and typically is available in much smaller sizes
  723. than DRAM because each bit occupies more space on the chip.  See also DRAM.
  724.  
  725. SVGA
  726.     (Super VGA) A video adapter capable of higher resolution
  727. (pixels and/or colors) than the 320x200x256 and 640x480x16 which IBM's
  728. VGA adapter is capable of producing.  See also VESA.
  729.  
  730. Swappable Data Area
  731.     The portion of the DOS data segment containing all of the
  732. variables used internally by DOS to record the state of a function call
  733. in progress.  See also INT 21h Function 5D06h and INT 21h Function
  734. 5D0Bh.
  735.  
  736. System File Table
  737.     A System File Table is a DOS-internal data structure used to
  738. maintain the state of an open file for the DOS 2+ handle functions,
  739. just as an FCB maintains the state for DOS 1.x functions.  See also INT
  740. 21h Function 52h.
  741.  
  742. TCP
  743.     (Transmission Control Protocol) A higher level (session layer)
  744. of the TCP/IP protocol suite.  See also IP, TCP/IP.
  745.  
  746. TCP/IP
  747.     The protocol suite originally developed by DARPA for use on its
  748. ARPAnet network, which is now known as the Internet.  See also IP, TCP.
  749.  
  750. TSR
  751.     (Terminate and Stay Resident) A program which remains in memory
  752. after terminating in order to provide services to other programs or the
  753. user.  The name comes from the name of the DOS function call used to
  754. remain in memory after termination.
  755.  
  756. Track
  757.     One of multiple concentric circular rings of data on a single
  758. data-bearing surface of a disk.  Tracks at the same location on
  759. different surfaces form a cylinder.
  760.  
  761. UMB
  762.     see Upper Memory Block
  763.  
  764. UNC
  765.     (Universal Naming Convention) The standard way of describing
  766. network servers and their directories under MS-DOS and Windows NT.  A
  767. name in UNC format consists of two backslashes followed by the server
  768. name, optionally followed by another backslash and a list of
  769. backslash-separated fields; for example
  770. \\SERVER1\SHARED-DIR\SUBDIR1\SUBDIR2\FILENAME.EXT.
  771.  
  772. Upper Memory Block
  773.     A noncontiguous section of allocatable memory located between
  774. the 640K and 1024K addresses.  See also INT 21h Function 52h.
  775.  
  776. V86
  777.     see Virtual-86 Mode
  778.  
  779. VCPI
  780.     see Virtual Control Program Interface
  781.  
  782. VDM
  783.     see Virtual DOS Machine
  784.  
  785. VDS
  786.     see Virtual DMA Specification
  787.  
  788. VESA
  789.     (Video Electronics Standards Association)  An industry group
  790. which sets both hardware and software standards and recommendations.
  791. The term VESA is also used to denote compliance with the VESA SuperVGA
  792. BIOS Extensions, a standard set of video BIOS functions for accessing
  793. video modes of higher resolution than those defined by IBM.
  794.  
  795. VGA
  796.     (Video Graphics Array) The video adapter introduced with the
  797. IBM PS/2 series of computers.
  798.  
  799. Virtual-86 Mode
  800.     One of the operating modes of the 80386 and 80486 processors in
  801. which user programs run as if the CPU were in Real Mode, while
  802. providing the protection and address-mapping capabilities of Protected
  803. Mode to a supervisor program which oversees the virtual machine on
  804. which the user programs are running.  This mode is called Virtual-86
  805. because one or more virtual 8086 environments are run on a single CPU.
  806. See also Protected Mode, Real Mode, Virtual Machine.
  807.  
  808. Virtual Control Program Interface
  809.     A simple API for protected-mode programs to allocate memory and
  810. switch into or out of protected mode.  See also DOS Protected-Mode Interface.
  811.  
  812. Virtual DMA Specification
  813.     A set of interrupt calls which permit the use of DMA even on
  814. systems running in protected or Virtual-86 mode with their address
  815. remapping, or systems such as Micro Channel PS/2s with multiple bus
  816. masters independently performing DMA operations.
  817.  
  818. Virtual DOS Machine
  819.     A special type of virtual machine provided by OS/2 version 2.0,
  820. in which a copy of MS-DOS or an MS-DOS compatible operating system (or
  821. even an incompatible 8086 operating system) is run and appears to have
  822. full control of the system.  See also Virtual Machine, INT 21h Function
  823. 64h.
  824.  
  825. Virtual Machine
  826.     One method for multitasking programs is to virtualize the CPU
  827. and other hardware, giving the appearance of sole possession of the
  828. system to each program being run.  Such a virtualized environment is
  829. called a virtual machine.  See also Virtual-86 Mode, Virtual DOS
  830. Machine.
  831.  
  832. VM
  833.     see Virtual Machine
  834.  
  835. VxD
  836.     A virtual device driver for Windows 3.0 or 3.1.  See also
  837. device driver.
  838.  
  839. XBDA
  840.     see Extended BIOS Data Area
  841.  
  842. XDI
  843.     see External Device Interface
  844.  
  845. XGA
  846.     (Extended Graphics Array)
  847.  
  848. XMS
  849.     see Extended Memory Specification
  850.  
  851. YUV
  852.     A color specification mechanism used in NTSC-type color
  853. television signals.  Y represents luminance (overall brightness, the
  854. only part of the signal used by black-and-white televisions), while U
  855. and V are chrominance (color) information.  Also called YIQ.  See also
  856. RGB.
  857.