home *** CD-ROM | disk | FTP | other *** search
/ For Beginners & Professional Hackers / cd.iso / docum / inter42.doc / glossary.lst < prev    next >
Encoding:
File List  |  1994-08-07  |  33.9 KB  |  919 lines

  1. GLOSSARY
  2. Last Change 8/7/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. See also Delayed Write, Write-Through.
  117.  
  118. Callback
  119.     A call to a specified function made by the operating system or
  120. operating environment when a request (usually an asynchronous request)
  121. completes.  This permits the calling program to continue operating while
  122. the request is processed yet still be aware of its completion
  123. immediately without the need to constantly poll the request's status.
  124. See also Callout.
  125.  
  126. Callout
  127.     A call made by the operating system, operating environment, or
  128. an application program on various events, which may be intercepted by
  129. other software which is interested in the current state of the system.
  130. See also Callback, External Device Interface.
  131.  
  132. CAS
  133.     see Communicating Applications Specification
  134.  
  135. CBIOS
  136.     (Compatibility BIOS) The IBM XT/286 and PS/2 models with 80286
  137. or higher processors contain two separate BIOSes.  The CBIOS is a
  138. real-mode BIOS which is compatible with the earlier products in the IBM
  139. PC family and PS/2 models with 8086 processors.  See also ABIOS.
  140.  
  141. CDS
  142.     see Current Directory Structure
  143.  
  144. CGA
  145.     (Color/Graphics Adapter) One of the two video display boards
  146. introduced together with the original IBM PC.  See also HGC, MDA.
  147.  
  148. Clock Tick
  149.     1/18.2 second, or approximately 55 milliseconds.  This is the
  150. rate at which the IBM PC's system clock is updated.
  151.  
  152. CMOS
  153.     (Complementary Metal-Oxide-Silicon) A type of integrated
  154. circuit design known for its low power consumption.
  155.  
  156. CMOS RAM
  157.     A small amount (typically 64 or 128 bytes) of memory in the system's
  158. real-time clock chip that is preserved by the clock's battery and is used for
  159. storing configuration information.  See also Real-Time Clock.
  160.  
  161. Communicating Applications Specification
  162.     DCA and Intel's standard programmatic interface for sending and
  163. receiving FAXes via any of a number of internal FAX boards.
  164.  
  165. CP/M
  166.     (Control Program for Microcomputers) An early operating system
  167. for micros based on the 8-bit Intel 8080 CPU (and later the compatible
  168. 8085 and Zilog Z80 CPUs).  MSDOS version 1.0 was essentially a clone of
  169. CP/M for the Intel 8086.
  170.  
  171. CP/M-86
  172.     One of the three operating systems offered by IBM for its
  173. original PC (the other two were MSDOS and the UCSD p-System).  It has
  174. since evolved into DR-DOS version 6.
  175.  
  176. CPU
  177.     (Central Processing Unit) The microprocessor which executes
  178. programs on your computer.
  179.  
  180. Current Directory Structure
  181.     The data record used by DOS to keep track of the current
  182. directory on a drive; whether the drive is valid, network, SUBSTituted,
  183. or JOINed; and other pertinent information.  See also INT 21h Function
  184. 52h.
  185.  
  186. Cylinder
  187.     The set of concentric tracks of data located at the same
  188. position on each data-bearing surface of the disk. A double-sided
  189. floppy will contain two tracks per cylinder.
  190.  
  191. DAC
  192.     (Digital-to-Analog Converter) A hardware device (in its simplest
  193. form, nothing more than a set of interconnected resistors) which converts
  194. a digital number into an analog signal whose voltage is proportional to
  195. the value of the digital number.  VGA and later color video boards use
  196. DACs to convert color values into the analog signals sent to the display;
  197. sound boards normally use DACs as well.
  198.  
  199. DCC
  200.     (Display Combination Code) A number which indicates both the
  201. type of display adapter board and the type of monitor attached to the
  202. video board.
  203.  
  204. Delayed Write
  205.     A form of caching in which control is returned before the data is
  206. actually written to the storage media.  See also Cache, Write-Through.
  207.  
  208. Device Driver
  209.     An interface module between the device-independent portions of
  210. the operating system and an actual hardware device which converts
  211. device-independent requests into the actual sequence of device
  212. operations to perform the requested action.  IO.SYS contains the
  213. standard, built-in MSDOS device drivers such as CON, COM1, AUX, PRN,
  214. etc.  See also INT 21h Function 52h and INT 2Fh Function 0802h.
  215.  
  216. Device Driver Request Header
  217.     The data structure passed to a device driver which contains the
  218. command to be executed, its parameters, and space for a returned status
  219. and data values.  See INT 2Fh Function 0802h.
  220.  
  221. DGIS
  222.     (Direct Graphics Interface Standard)
  223.  
  224. Direct Memory Access
  225.     A method whereby peripherals may transfer data into or out of
  226. main memory without the involvement of the CPU.
  227.  
  228. Disk Transfer Address
  229.     The Disk Transfer Address indicates where functions which do
  230. not take an explicit data address will read or store data.  Although
  231. the name implies that only disk accesses use this address, other
  232. functions use it as well.  See INT 21h Function 4Eh for an example of
  233. the DTA's use.
  234.  
  235. DLL
  236.     see Dynamic Link Library
  237.  
  238. DMA
  239.     see Direct Memory Access
  240.  
  241. DOS Extender
  242.     A program which allows a program to run in protected mode while still
  243. retaining access to real-mode MSDOS services.  See also Protected Mode.
  244.  
  245. DOS Parameter List
  246.     The DOS Parameter List is used to pass arguments to SHARE and
  247. network functions.  See also INT 21h Function 5D00h.
  248.  
  249. DOS Protected-Mode Interface
  250.     An API which provides basic services for protected-mode programs to
  251. allocate memory, invoke real-mode software, etc.  See also Virtual Control
  252. Program Interface.
  253.  
  254. DPB
  255.     see Drive Paramter Block
  256.  
  257. DPL
  258.     see DOS Parameter List
  259.  
  260. DPMI
  261.     see DOS Protected-Mode Interface
  262.  
  263. DRAM
  264.     (Dynamic Random Access Memory) RAM memory which essentially consists
  265. of a tiny capacitor for each bit of memory.  Since capacitors do not hold
  266. a charge indefinitely, DRAM must be constantly refreshed to avoid losing
  267. its contents.  Also, the process of reading the contents of the memory are
  268. destructive, meaning extra time must be spent restoring the contents of
  269. memory addresses which are accessed, so DRAM is slower than SRAM.  See also
  270. Refresh, SRAM.
  271.  
  272. Drive Parameter Block
  273.     The DOS Drive Parameter Block stores the description of the
  274. media layout for a logical drive, as well as some housekeeping
  275. information.  See also INT 21h Function 1Fh and INT 21h Function 32h.
  276.  
  277. DTA
  278.     see Disk Transfer Address
  279.  
  280. DWORD
  281.     Doubleword; four bytes.  Commonly used to hold a 32-bit
  282. segment:offset or selector:offset address.
  283.  
  284. Dynamic Link Library
  285.     A collection of subroutines which are linked with a program at
  286. the time it is loaded into memory rather than permanently placed in the
  287. executable.  This has the advantage of allowing a single copy of the
  288. subroutine library to reside on disk or in memory even when it is used
  289. by many programs.  It also permits all programs using the DLL to be
  290. updated without recompiling simply by installing a new version of the
  291. library.
  292.  
  293. EGA
  294.     (Enhanced Graphics Adapter) IBM's second color video board for the
  295. IBM PC family, capable of a maximum resolution of 640x350 pixels in 16
  296. simultaneous colors of a total of 64 possible colors.
  297.  
  298. EISA
  299.     (Enhanced Industry-Standard Architecture) A 32-bit superset of the
  300. IBM AT's expansion bus (which is now known as the ISA or Industry-Standard
  301. Architecture bus).
  302.  
  303. EMS
  304.     see Expanded Memory Specification
  305.  
  306. EOI
  307.     (End of Interrupt) A particular command sent to the interrupt
  308. controller to indicate that the interrupt has been handled by software
  309. and that new interrupts of the same or lower priority may now be signalled
  310. by the interrupt controller.
  311.  
  312. ESDI
  313.     (Enhanced Small Device Interface) A disk drive interface type
  314. which was briefly popular before IDE took over.  An ESDI drive can
  315. transfer data between the drive and controller at 10, 15, or 20
  316. megabits per second, which is faster than an MFM or RLL controller but
  317. slower than what is possible with an IDE or SCSI drive.  See also IDE.
  318.  
  319. Exception
  320.     A signal by the CPU that some error condition has been encountered
  321. that it can not deal with without a program's intervention.  The most commonly
  322. encountered exceptions on Intel processors are Exceptions 12 and 13, which
  323. are stack and general problems, respectively.  Exception 13 is typically
  324. caused by a memory access which wraps from the end of a segment back to
  325. the beginning.
  326.  
  327. Expanded Memory Specification
  328.     A specification devised by Lotus, Intel, and Microsoft for
  329. accessing more than one megabyte of memory by bank-switching additional
  330. memory into the one megabyte real mode address space.
  331.  
  332. Extended BIOS Data Area
  333.     A block of memory, typically the 1K at the top of conventional
  334. memory, which is used to store additional data for use by the BIOS which
  335. does not fit into the 256-byte data area at segment 0040h.
  336.  
  337. Extended File Control Block
  338.     A DOS File Control Block which has had an additional seven
  339. bytes prepended to permit control of file attributes (which are stored
  340. in the appendage).  See also FCB.
  341.  
  342. Extended Memory
  343.     Memory beyond the one megabyte address which is available only
  344. on 80286 and higher machines.  Except for a small portion (the High
  345. Memory Area), extended memory is only accessible from protected mode.
  346.  
  347. Extended Memory Specification
  348.     A specification devised by Microsoft which allows multiple
  349. programs to share extended (above 1 megabyte) memory and noncontiguous
  350. memory above 640K.  See also Upper Memory Block.
  351.  
  352. External Device Interface
  353.     A series of calls made by the DESQview multitasker on various
  354. "interesting" events, which may be intercepted by programs which wish to
  355. keep track of the current system state.  See also Callout.
  356.  
  357. FAT
  358.     see File Allocation Table
  359.  
  360. FCB
  361.     see File Control Block
  362.  
  363. File Allocation Table
  364.     A data structure on disk that records which clusters are free,
  365. which are unusable, and which have been allocated.  The clusters occupied
  366. by a file are linked into a list in the file allocation table, allowing
  367. DOS to find the contents of the file.
  368.  
  369. File Control Block
  370.     A data record in the calling program's address space which is
  371. used by DOS 1.x functions to record the state of an open file.  See
  372. also INT 21h Function 13h.
  373.  
  374. File Handle
  375.     A small positive integer used to identify the previously-opened
  376. file on which a program wishes to perform an operation.
  377.  
  378. Flush
  379.     To force the copying of any data still stored in temporary
  380. buffers to its final destination.
  381.  
  382. FM
  383.     (Frequency Modulation)  A method of encoding data as a series of
  384. magnetic flux reversals on disk or tape, commonly known as single-density
  385. recording.  In frequency modulation, a series of clock pulses are written
  386. at regular intervals, with one data bit for each clock pulse.  See also
  387. MFM, RLL.
  388.  
  389. Formatting
  390.     Preparing a storage medium (usually magnetic media such as a
  391. disk or tape) for storing data.  Low-level or physical formatting
  392. writes all necessary housekeeping data to enable the storage device
  393. to read the media and may also initialize the storage units on the
  394. media to a known state.  High-level or logical formatting writes data
  395. used by the operating system, such as allocation information and
  396. directories onto media which has already been physically formatted.
  397. Formatting programs often perform both a low-level and a high-level
  398. format.
  399.  
  400. FOSSIL
  401.     (Fido/Opus/Seadog Standard Interface Layer)  A standardized API
  402. for performing serial I/O, originally used by the Fido and Opus bulletin-
  403. board software and Seadog bulletin-board mailer, but now in wider use.
  404.  
  405. FTP
  406.     (File Transfer Protocol)  The standard protocol for copying files
  407. from one machine to another on a TCP/IP (Internet) network.  Also the
  408. program of the same name with which a user may transfer files.
  409.  
  410. Handle
  411.     A short identifier, usually a small integer or a pointer, for
  412. some other object which is maintained or controlled by the operating
  413. system or environment; a particular handle may be valid system-wide or
  414. may have meaning only for a particular process.  See also File Handle.
  415.  
  416. HGC
  417.     (Hercules Graphics Controller) A monochrome video adapter capable
  418. of 720x352 monochrome graphics.  The HGC was the first non-IBM video
  419. adapter for the IBM PC.  See also CGA, MDA.
  420.  
  421. High Memory Area
  422.     The first 65520 bytes (64K less 16 bytes) of extended memory.
  423. This area is accessible from real mode on the 80286 and higher
  424. processors because these processors do not wrap addresses at one
  425. megabyte as the 8088 and 8086 do.  See also A20, INT 2Fh Functions
  426. 4A01h.
  427.  
  428. HMA
  429.     see High Memory Area
  430.  
  431. Horizontal Retrace
  432.     When a monitor has finished displaying a single scan line, it must
  433. move it electron beam(s) back to the left edge of the CRT, during which time
  434. it turns off the beam.  On the original CGA (and some early clones), the
  435. only time one could access the display memory without causing "snow" was
  436. during the horizontal or vertical retrace periods, as the display adapter
  437. was not itself accessing the display memory during those times.  See also
  438. Vertical Retrace.
  439.  
  440. IDE
  441.     (Integrated Drive Electronics) A type of disk drive interface
  442. which essentially extends the PC's expansion bus all the way to the
  443. drive and places the drive controller on the disk drive itself.  See
  444. also ESDI.
  445.  
  446. IFS
  447.     see Installable File System
  448.  
  449. Installable File System
  450.     An Installable File System which allows non-DOS format media to
  451. be used by DOS.  In most ways, an IFS is very similar to a networked
  452. drive, although an IFS would typically be local rather than remote.
  453. See also INT 21h Function 52h.
  454.  
  455. IP
  456.     (Internet Protocol) The lower level (transport layer) of the
  457. TCP/IP protocol suite.  See also TCP, TCP/IP.
  458.  
  459. IPC
  460.     (Inter-Process Communication) Any one of numerous methods for
  461. allowing two or more separate processes to exchange data.
  462.  
  463. IPX
  464.     (Internetwork Packet Exchange) A low-level layer of Novell's
  465.     NetWare networking software.
  466.  
  467. IRQ
  468.     (Interrupt ReQuest) A hardware line connected to the interrupt
  469. controller chip which signals that a CPU interrupt should be generated.
  470.  
  471. ISA
  472.     (Industry-Standard Architecture) The expansion bus used by the
  473. IBM PC/AT.  See also EISA.
  474.  
  475. JFT
  476.     see Job File Table
  477.  
  478. Job File Table
  479.     The Job File Table (also called Open File Table) stored in a
  480. program's PSP which translates handles into SFT numbers.  See also INT
  481. 21h Function 26h.
  482.  
  483. LCD
  484.     (Liquid Crystal Display)
  485.  
  486. List of Lists
  487.     An internal DOS table of lists and other tables through which
  488. most DOS-internal data structures may be reached.  See INT 21h Function
  489. 52h.
  490.  
  491. Little-Endian
  492.     One of the two major ways of organizing multi-byte numeric
  493. values in memory.  A little-endian layout places the least significant
  494. byte of the value in the lowest (first) memory location, i.e. 12345678h
  495. is stored as 78h 56h 34h 12h.  Intel processors are little-endian.
  496. Compare Big-Endian.
  497.  
  498. LPT
  499.     Abbreviation for Line PrinTer.
  500.  
  501. MCB
  502.     see Memory Control Block
  503.  
  504. MCGA
  505.     (Multi-Color Graphics Array) The low-end color adapter offered
  506. in IBM's early PS/2 series machines.
  507.  
  508. MDA
  509.     (Monochrome Display Adapter) A text-only video adapter introduced
  510. together with the original IBM PC.  See also CGA, HGC.
  511.  
  512. Memory Control Block
  513.     The data structure containing the length and owner (among other
  514. things) of a portion of the memory managed by DOS.  See INT 21h
  515. Function 52h.
  516.  
  517. MFM
  518.     (Modified Frequency Modulation) A method of encoding data as a
  519. series of magnetic flux reversals on disk or tape, commonly known as
  520. double-density recording.  In contrast to FM, modified frequency
  521. modulation omits all clock pulses except those between pairs of zero
  522. bits.  See also FM, RLL.
  523.  
  524. Mickey
  525.     The smallest increment of motion a mouse can sense.
  526.  
  527. MIDI
  528.     (Musical Instrument Digital Interface) A standardized interface
  529. for controlling musical instruments with a computer.
  530.  
  531. Modem
  532.     (contraction of MOdulator/DEModulator)
  533.  
  534. Multitasking
  535.     Any of a number of methods by which multiple programs may
  536. execute concurrently, with rapid switching between the programs giving
  537. the appearance that all are executing simultaneously.
  538.  
  539. MZ
  540.     The letters M and Z appear in numerous places in DOS (memory
  541. control blocks, .EXE header, etc.); the conventional explanation is
  542. that these are the initials of Mark Zbikowski, one of the principal
  543. architects of MSDOS 2.0.
  544.  
  545. NCB
  546.     see Network Control Block
  547.  
  548. NDIS
  549.     (Network Driver Interface Specification) A hardware-independent
  550. network interface developed by Microsoft and 3com.  See also Packet
  551. Driver, TCP/IP.
  552.  
  553. NetBIOS
  554.     One of a number of low-level device-independent network
  555. interfaces; the other major interfaces are Novell's IPX and the
  556. Internet's IP (Internet Protocol, the lower-level portion of TCP/IP).
  557.  
  558. Network Control Block
  559.     A Network Control Block used to pass requests to NetBIOS and
  560. receive status information from the NetBIOS handler.
  561.  
  562. Network Redirector
  563.     A program which permits access to network devices (disks,
  564. printers, etc.) using the MSDOS kernel network redirector interface.
  565. See also Network Shell, Redirector Interface.
  566.  
  567. Network Shell
  568.     A program which permits access to network devices (disks,
  569. printers, etc.) by intercepting DOS calls before they reach the DOS
  570. kernel and handling those operating on network devices while passing
  571. through actions on local devices.  See also Network Redirector.
  572.  
  573. NMI
  574.     see Non-Maskable Interrupt
  575.  
  576. Non-Maskable Interrupt
  577.     An interrupt which can not be disabled by clearing the CPU's
  578. interrupt enable flag, unlike most normal interrupts.  Non-maskable
  579. interrupts are typically used to signal calamities which require
  580. immediate action, such as a hardware failure or imminent loss of power.
  581.  
  582. Non-Volatile RAM
  583.     Memory which can be modified like normal RAM but does not lose
  584. its contents when the system's power is turned off. This memory may be
  585. powered by a battery when the system power if off, or it may be a type
  586. of memory which does not need electricity to maintain its contents,
  587. such as EEPROM or bubble memory.
  588.  
  589. NVRAM
  590.     see Non-Volatile RAM
  591.  
  592. ODI
  593.     (Open Data-link Interface) A hardware-independent network
  594. interface developed by Novell, Inc.  See also NDIS, Packet Driver.
  595.  
  596. Open File Table
  597.     see Job File Table
  598.  
  599. Overscan Area
  600.     The "border" between the edge of the area where graphics or text can
  601. be displayed and the actual edge of the area the video adapter can illuminate
  602. on the monitor's screen.
  603.  
  604. Overscan Register
  605.     On a display adapter, the control register which specifies the color
  606. to be displayed in the overscan area.
  607.  
  608. Packet Driver
  609.     Any one of the numerous drivers conforming to FTP Software's
  610. Packet Driver Specification, which provides a hardware-independent
  611. network interface.  See also NDIS, ODI.
  612.  
  613. Page Fault
  614.     A CPU-generated signal, and the operating system's reaction to it,
  615. generated when a program accesses a page of virtual memory which is not
  616. located in RAM at the time.  The operating system's response is to load in
  617. the required page, possibly writing some other page out to disk in order
  618. to make room.  See also INT 0E.
  619.  
  620. Palette Register
  621.     A memory location on the video controller which specifies the actual
  622.     color displayed for a particular color number.
  623.  
  624. Park
  625.     To move a hard disk's read/write heads to a position in which
  626. it is safe to turn off the power and transport the disk drive.  Many
  627. drives also lock the heads into position when they are parked,
  628. providing additional protection from sudden movement.
  629.  
  630. Pel
  631.     see Pixel
  632.  
  633. Pixel
  634.     A picture element, the smallest addressable unit of a graphical
  635. display.
  636.  
  637. Post
  638.     Make known, either generally or to a specific handler, that a
  639. particular event of interest has occurred.
  640.  
  641. POST
  642.     see Power-On Self-Test
  643.  
  644. Power-On Self-Test
  645.     A brief examination of the system's functionality performed
  646. each time the system is turned on.
  647.  
  648. Print Spooler
  649.     see SPOOL.
  650.  
  651. Program Segment Prefix
  652.     The Program Segment Prefix is a 256-byte data area prepended to
  653. a program when it is loaded.  It contains the command line that the
  654. program was invoked with, and a variety of housekeeping information for
  655. DOS.  See also INT 21h Function 26h.
  656.  
  657. Protected Mode
  658.     One of the operating modes of the 80286 and higher Intel
  659. processors, in which addresses used by programs no longer correspond to
  660. physical addresses and the CPU enforces various protection mechanisms
  661. designed to prevent one program from disrupting other programs or the
  662. operating system.  See also Real Mode, Virtual-86 Mode.
  663.  
  664. PSP
  665.     see Program Segment Prefix
  666.  
  667. PWORD
  668.     Six bytes.  Used to hold an 80386 protected-mode "far" address,
  669. consisting of a segment selector and a 32-bit offset, or a Turbo Pascal
  670. "real" variable.  See also DWORD, QWORD.
  671.  
  672. QWORD
  673.     (quad-word) Eight bytes.  See also DWORD, PWORD.
  674.  
  675. RAM
  676.     (Random Access Memory)    See also DRAM, SRAM.
  677.  
  678. Real Mode
  679.     One of the operating modes of the 80286 and higher Intel
  680. processors, and the only operating mode of the 8088, 8086, 80186, and
  681. 80188 processors.  In this mode, all addresses used by programs
  682. correspond directly to real physical addresses (thus the full name,
  683. Real Address Mode) and there are no CPU-imposed protections between
  684. programs.  See also Protected Mode, Virtual-86 Mode.
  685.  
  686. Real-Time Clock
  687.     A battery-powered clock which continues to maintain its time even
  688. while the system is powered down.  On PCs, the real-time clock contains a
  689. small amount of battery-powered memory (set CMOS RAM).
  690.  
  691. Redirector Interface
  692.     The set of device-independent INT 2Fh function calls invoked by
  693. the MSDOS kernel to operate on devices it recognizes as network
  694. devices.  These function calls provide a lower-level interface than the
  695. INT 21h calls made to DOS, allowing a program intercepting these
  696. functions to be simpler than one intercepting INT 21h calls.  See INT
  697. 2Fh Functions 1100h through 1130h.
  698.  
  699. Refresh
  700.     The process of periodically rewriting the contents of a DRAM
  701. memory chip to keep it from fading.  The term "refresh" is also commonly
  702. applied to redrawing the image on a CRT's phosphors.   See also DRAM.
  703.  
  704. RGB
  705.     (Red-Green-Blue) The color specification mechanism normally
  706. used in computer displays, where colors are separated into their
  707. primary-color components.  See also YUV.
  708.  
  709. RLL
  710.     (Run-Length Limited) A method of encoding data as a series of
  711. magnetic flux reversals on disk or tape.  RLL can achieve higher data
  712. densities than MFM recording because it encodes the data such that
  713. (on average), fewer than one flux reversal per data bit is required
  714. (however, timing becomes more critical).  RLL is actually an entire
  715. family of encoding methods, specified with two numbers indicating the
  716. minimum and maximum distances between one bits (flux transitions).  The
  717. variant normally called RLL is RLL-2,7; RLL-1,7 and RLL-3,9 are also in
  718. use.  MFM is in effect RLL-1,3.  See also FM, MFM.
  719.  
  720. ROM
  721.     (Read-Only Memory) A memory for program storage which may not be
  722. changed by the program as it runs.
  723.  
  724. RTC
  725.     see Real-Time Clock
  726.  
  727. Scan Code
  728.     The actual key number sent by the keyboard, which differs from the
  729. key codes seen by application programs.  The enhanced (101/102-key) keyboard
  730. actually sends different scan codes than the original (83/84-key) IBM
  731. keyboard, but these are normally translated by the keyboard controller into
  732. the scan codes used by the original keyboard before they become visible to
  733. programs.
  734.  
  735. SCSI
  736.     (Small Computer Systems Interface) A system-independent
  737. expansion bus typically used to connect hard disks, tape drives, and
  738. CD-ROMs to a computer.  A host adapter connects the SCSI bus to the
  739. computer's own bus.  See also ESDI, IDE.
  740.  
  741. SDA
  742.     see Swappable Data Area
  743.  
  744. Sector
  745.     The smallest addressable unit of data on a disk; under MS-DOS,
  746. this is normally 512 bytes.  See also Track.
  747.  
  748. SFT
  749.     see System File Table
  750.  
  751. SPOOL
  752.     (Simultaneous Peripheral Operation OnLine)  The process of
  753. performing output to a slow peripheral such as a printer while other
  754. tasks continue running on the CPU.  This term dates back to mainframe
  755. days before the invention of timesharing.
  756.  
  757. SQL
  758.     (Structured Query Language)
  759.  
  760. SRAM
  761.     (Static Random Access Memory)  RAM which typically consists of one
  762. flip-flop per bit of memory.  Unlike DRAMs, static RAM retains its contents
  763. as long as power is applied.  Because there is no need to refresh the
  764. contents of memory addresses which are read, SRAM is faster than DRAM,
  765. but it is more expensive and typically is available in much smaller sizes
  766. than DRAM because each bit occupies more space on the chip.  See also DRAM.
  767.  
  768. SVGA
  769.     (Super VGA) A video adapter capable of higher resolution
  770. (pixels and/or colors) than the 320x200x256 and 640x480x16 which IBM's
  771. VGA adapter is capable of producing.  See also VESA.
  772.  
  773. Swappable Data Area
  774.     The portion of the DOS data segment containing all of the
  775. variables used internally by DOS to record the state of a function call
  776. in progress.  See also INT 21h Function 5D06h and INT 21h Function
  777. 5D0Bh.
  778.  
  779. System File Table
  780.     A System File Table is a DOS-internal data structure used to
  781. maintain the state of an open file for the DOS 2+ handle functions,
  782. just as an FCB maintains the state for DOS 1.x functions.  See also INT
  783. 21h Function 52h.
  784.  
  785. TCP
  786.     (Transmission Control Protocol) A higher level (session layer)
  787. of the TCP/IP protocol suite.  See also IP, TCP/IP.
  788.  
  789. TCP/IP
  790.     The protocol suite originally developed by DARPA for use on its
  791. ARPAnet network, which is now known as the Internet.  See also IP, TCP.
  792.  
  793. TSR
  794.     (Terminate and Stay Resident) A program which remains in memory
  795. after terminating in order to provide services to other programs or the
  796. user.  The name comes from the name of the DOS function call used to
  797. remain in memory after termination.
  798.  
  799. Track
  800.     One of multiple concentric circular rings of data on a single
  801. data-bearing surface of a disk.  Tracks at the same location on
  802. different surfaces form a cylinder.
  803.  
  804. UMB
  805.     see Upper Memory Block
  806.  
  807. UNC
  808.     (Universal Naming Convention) The standard way of describing
  809. network servers and their directories under MS-DOS and Windows NT.  A
  810. name in UNC format consists of two backslashes followed by the server
  811. name, optionally followed by another backslash and a list of
  812. backslash-separated fields; for example
  813. \\SERVER1\SHARED-DIR\SUBDIR1\SUBDIR2\FILENAME.EXT.
  814.  
  815. Upper Memory Block
  816.     A noncontiguous section of allocatable memory located between
  817. the 640K and 1024K addresses.  See also INT 21h Function 52h.
  818.  
  819. V86
  820.     see Virtual-86 Mode
  821.  
  822. VCPI
  823.     see Virtual Control Program Interface
  824.  
  825. VDM
  826.     see Virtual DOS Machine
  827.  
  828. VDS
  829.     see Virtual DMA Specification
  830.  
  831. VDU
  832.     (Video Display Unit)  Mainframe-speak for computer monitor.
  833.  
  834. Vertical Retrace
  835.     When a monitor has finished displaying an image by sweeping its
  836. electron beam(s) over the face of the CRT, it has to move the beam back up
  837. to the top of the display.  During the time this takes, the beam is turned
  838. off.  The vertical retrace interval is a good time to change the displayed
  839. picture for smooth animation.  See also Horizontal Retrace.
  840.  
  841. VESA
  842.     (Video Electronics Standards Association)  An industry group
  843. which sets both hardware and software standards and recommendations.
  844. The term VESA is also used to denote compliance with the VESA SuperVGA
  845. BIOS Extensions, a standard set of video BIOS functions for accessing
  846. video modes of higher resolution than those defined by IBM.
  847.  
  848. VGA
  849.     (Video Graphics Array) The video adapter introduced with the
  850. IBM PS/2 series of computers.
  851.  
  852. Virtual-86 Mode
  853.     One of the operating modes of the 80386 and 80486 processors in
  854. which user programs run as if the CPU were in Real Mode, while
  855. providing the protection and address-mapping capabilities of Protected
  856. Mode to a supervisor program which oversees the virtual machine on
  857. which the user programs are running.  This mode is called Virtual-86
  858. because one or more virtual 8086 environments are run on a single CPU.
  859. See also Protected Mode, Real Mode, Virtual Machine.
  860.  
  861. Virtual Control Program Interface
  862.     A simple API for protected-mode programs to allocate memory and
  863. switch into or out of protected mode.  See also DOS Protected-Mode Interface.
  864.  
  865. Virtual DMA Specification
  866.     A set of interrupt calls which permit the use of DMA even on
  867. systems running in protected or Virtual-86 mode with their address
  868. remapping, or systems such as Micro Channel PS/2s with multiple bus
  869. masters independently performing DMA operations.
  870.  
  871. Virtual DOS Machine
  872.     A special type of virtual machine provided by OS/2 version 2.0,
  873. in which a copy of MS-DOS or an MS-DOS compatible operating system (or
  874. even an incompatible 8086 operating system) is run and appears to have
  875. full control of the system.  See also Virtual Machine, INT 21h Function
  876. 64h.
  877.  
  878. Virtual Machine
  879.     One method for multitasking programs is to virtualize the CPU
  880. and other hardware, giving the appearance of sole possession of the
  881. system to each program being run.  Such a virtualized environment is
  882. called a virtual machine.  See also Virtual-86 Mode, Virtual DOS
  883. Machine.
  884.  
  885. VM
  886.     see Virtual Machine
  887.  
  888. VxD
  889.     A virtual device driver for Windows 3.0 or 3.1.  See also
  890. device driver.
  891.  
  892. Write-Through
  893.     One of two main types of caches, the write-through cache immediately
  894. writes any new information to the medium it is caching, so that the cache
  895. never contains information which is not already present on the cached device.
  896. See also cache,
  897.  
  898. XBDA
  899.     see Extended BIOS Data Area
  900.  
  901. XDI
  902.     see External Device Interface
  903.  
  904. XGA
  905.     (Extended Graphics Array)
  906.  
  907. XMS
  908.     see Extended Memory Specification
  909.  
  910. YIQ
  911.     see YUV
  912.  
  913. YUV
  914.     A color specification mechanism used in NTSC-type color
  915. television signals.  Y represents luminance (overall brightness, the
  916. only part of the signal used by black-and-white televisions), while U
  917. and V are chrominance (color) information.  Also called YIQ.  See also
  918. RGB.
  919.