home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / basic / baswiz18.zip / BIBLIO.TXT < prev    next >
Text File  |  1991-09-11  |  5KB  |  86 lines

  1. This constitutes a bibliography of some of the references used in creating
  2. the BASWIZ library.  They are listed in no particular order.  I might note
  3. that many of these references contain incorrect information on one point or
  4. another and that they frequently contradict each other.  Such are the joys of
  5. assembly programming.  Comments reflect my personal opinions on the text.
  6.  
  7.  
  8.  
  9. "Undocumented DOS: A Programmer's Guide to Reserved MS-DOS Functions and
  10. Data Structures".  1990.  Andrew Schulman, Raymond J. Michels, Jim Kyle, Tim
  11. Paterson, David Maxey, Ralf Brown.  Addison-Wesley Publishing Co., Inc.
  12. -- Useful for work that requires very low-level DOS handling.  Little new or
  13.    interesting for my purposes.  Overpriced.
  14.  
  15. "The New Peter Norton Programmer's Guide to the IBM PC & PS/2".  2nd Ed,
  16. 1988, by Peter Norton and Richard Wilton.  Microsoft Press.
  17. -- Often contains inadequate detail and is unusually error-prone.  Some of
  18.    the information is hard to find elsewhere, however.
  19.  
  20. "COMPUTE!'s Mapping the IBM PC and PCjr".  1985, COMPUTE! Publications, Inc.
  21. -- An old but indispensable reference.  The memory map, port reference, and
  22.    low-level support chip information are very good.
  23.  
  24. "Programmer's Guide to PC & PS/2 Video Systems".  1987, by Richard Wilton.
  25. Microsoft Press.
  26. -- A terrific reference on video from MDA to VGA.  The example program for
  27.    putting the Hercules adapter into graphics mode is rather buggy, though
  28.    (at least in my edition).
  29.  
  30. "The Waite Group's MS-DOS Developer's Guide".  2nd Ed, 1989, by The Waite
  31. Group, Inc.  Howard W. Sams & Co.
  32. -- An excellent reference on all sorts of low-level programming.  TSRs,
  33.    video, numeric coprocessor, communications, and lots more is covered.
  34.  
  35. "The MS-DOS Encyclopedia".  1988.  Microsoft Press.
  36. -- Encyclopedic it is.  Every serious assembly programmer should have a copy.
  37.    Covers DOS itself, DOS interrupts, TSRs, communications, lots of handy
  38.    articles by the best in the business.  The BIOS is ignored, however.
  39.  
  40. "Disk Operating System Version 3.00 Operating Reference".  1984.  IBM Corp.
  41. -- Useful for getting the scoop as IBM sees it.  Good for clearing up
  42.    contradictions in other texts, but not particularly vital.  Way overpriced.
  43.  
  44. "Practical Microcomputer Programming: The Intel 8080".  1976, by W. J.
  45. Weller, A. V. Shatzel, and H. Y. Nice.
  46. -- You'd think a book this dated would be handy for starting fires, hmmm?
  47.    In truth, it contains some very neat techniques that apply to modern
  48.    problems.  Keep it in mind when browsing that used book store!
  49.  
  50. "Numerical Analysis with the TI 99/4A, Commodore 64, Apple II+/IIe and TRS-80
  51. Model I/III".  1984, by H. R. Meck.  Prentice-Hall, Inc.
  52. -- Another oldie-but-goodie, this book contains a large number of useful
  53.    numerical algorithms, complete with source code in BASIC.  Nicely written.
  54.  
  55. "Bit-Mapped Graphics".  1990, by Steve Rimmer.  Windcrest Books (an imprint
  56. of Tab Books, which in turn is a division of McGraw-Hill, Inc).
  57. -- A quite decent text on various image formats, including .MAC, .PCX, .GIF
  58.    and others.  Source listings in C and assembly language.
  59.  
  60. "How to Solve it by Computer".  1982, by R.G. Dromey, Prentice-Hall Inc.
  61. -- A fantastic book covering a little of everything: data structures,
  62.    sorting, pseudo-random numbers, and various numeric calculations.
  63.    Examples are frequently given in Pascal.  Very nice.
  64.  
  65. "Numerical Analysis with the TI99/4A, Commodore 64, Apple II+/IIe and TRS-80
  66.  Model I/III".  1984, by H.R. Meck, Prentice-Hall Inc.
  67. -- A promising but irritating reference.  It covers a wide range of numerical
  68.    equations with implementations in BASIC.  However, the text is terse, the
  69.    BASIC code is ugly, and the examples make assumptions about the available
  70.    precision rather than relying on an error term.
  71.  
  72. "Handbook of Chemistry and Physics". 42nd edition, 1960, The Chemical Rubber
  73.  Publishing Co.
  74. -- A thorough reference containing tables on just about everything.  I use it
  75.    primarily to doublecheck that the math functions are returning proper
  76.    results.  A good thing to have-- try library and college book sales.
  77.  
  78. Programmer's Journal.  This magazine contains a wealth of technical
  79. information, most notably an ongoing EGA/VGA graphics column by Michael
  80. Abrash which is utterly superb.
  81.  
  82. Hart & Cheney... a number of the math routines are derived from a C library
  83. that I came across.  This library contained no information as to author or
  84. origin, aside from frequent mention of "Hart & Cheney", apparently the
  85. reference from which the coefficients of the equations were derived.
  86.