home *** CD-ROM | disk | FTP | other *** search
/ The Unsorted BBS Collection / thegreatunsorted.tar / thegreatunsorted / programming / misc_programming / glossary.lst < prev    next >
File List  |  1997-06-29  |  38KB  |  1,015 lines

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