home *** CD-ROM | disk | FTP | other *** search
/ ftp.barnyard.co.uk / 2015.02.ftp.barnyard.co.uk.tar / ftp.barnyard.co.uk / cpm / walnut-creek-CDROM / ZSYS / SIMTEL20 / Z-NEWS / Z-NEWS.404 < prev    next >
Text File  |  2000-06-30  |  14KB  |  212 lines

  1.                                                               24 February 1986
  2.                                   Z-NEWS 404
  3.  
  4. Z  TIPS.   Description of VMENU (and MENU) in Chapter 5 of ZCPR3:  The  Manual 
  5. covers  most aspects of the program.  One thing not made clear is the  use  of 
  6. SHCTRL  in connection with changing directories and file displays.   A  useful 
  7. command  line  within VMN script is:  SHCTRL P;DU:;VMENU  *.*  fn.VMN.   Shell 
  8. stack  is  popped;  next, log-in to pre-established directory  with  new  menu 
  9. screen  with wild card file display of area.  Of course, put in  your  desired 
  10. DU:, file mask for other than all files, and name of your VMN file.  Give menu 
  11. line a one character (letter or digit, alphanumeric) name.
  12.      Anyone  using  ZDMH debugger in interrupt-driven  systems,  e.g.,  SB180, 
  13. should  make sure three locations: 0CB1H, 0CCAH, and 0E11H have  0FBH  values, 
  14. not  standard  non-interrupt  0F3H.   Echelon  ZDM/ZDMZ/ZDMH  debugger  manual 
  15. implies  these  changes have already been made--they have  not!   Simply  load 
  16. ZDMH.COM  into  memory using ZDM.COM (or DDT.COM).  Using D  command,  display 
  17. values.  If not 0FBH, change using S command.  Tip comes from ZDM author,  Bob 
  18. Doolittle.   "Changes  keep interrupts enabled at all times.   You  can  still 
  19. disable  interrupts with the DI command when entering the target  program  but 
  20. they  will  be  enabled again when ZDMH regains  control."   Bob,  thanks  for 
  21. information.
  22.  
  23. More  Graphics.  Untouched film-strip photographs of a Wyse 50+  amber  screen 
  24. clearly  show straight lines, boxes, windows, and pull down menus provided  by 
  25. Echelon  graphics routines.  Graphics package is offered for $49.00 with  how-
  26. to-use  documentation,  Item 28 on EI Price List.  Don't  forget  to  download 
  27. graphics demo from your local Z-Node.  Look for file GRDEMO.LBR.  Enjoy.
  28.  
  29.  
  30. "Five CRT screen photos showing graphics and windows."
  31.  
  32.  
  33. Incidentally,  file  ZL.ZEX in GRDEMO.LBR is a good example by  ZRDOS  author, 
  34. Dennis  Wright, of a "quiet" ZEX batch processing file.  Many of you have  had 
  35. trouble getting ZEX to do what you wished; ZL.ZEX may be of assistance in your 
  36. search for quiet.
  37.  
  38. Z-Node  Activity.   More nodes going online.  Clinton Cook, Merced, CA  95348, 
  39. converts  his  existing  RAS (remote access system) to become  Node  #54  with 
  40. 209/383-6417  modem number.  Clinton runs an Ampro with 10 megabytes  of  hard 
  41. disk storage.
  42.      Roger  Warren,  San Diego, CA 92109, takes over Z-Node #9  with  619/270-
  43. 3148,  assisting  coverage of vast state of California.  Roger  also  runs  an 
  44. Ampro.   (What  would  our  world  be  like  without  Little  Board  computing 
  45. machines!)
  46.      Ron  Stone,  Z-Node  #5, Lisle, IL, puts  40  megabytes  online.   Z-Node 
  47. Central  goes  to 20 megabytes.  More files and data, data and  files.   Where 
  48. does it lead; to increased understanding, to wisdom?  We WONDER.
  49.      Speaking  of more, ZCPRM3/B3 and ZRDOS3 (Z-News 401) will permit  several 
  50. callers to simultaneously communicate with a single-computer RAS.  Of  course, 
  51. RAS must employ multiple phone lines--new era for Z-Nodes and 8-bit BBSs  soon 
  52. begins.
  53.  
  54. Amateur  Z  User's  Corner.   ASCII (American Standard  Code  for  Information 
  55. Interchange)  can  be either 7 or 8 bits for data.  The rest  of  transmission 
  56. byte  (word in this case) consists of start, stop (could be two),  and  parity 
  57. bits.  Start and stop bits are used to establish beginning and ending of  each 
  58. word.   That's  simple  enough  but the parity bit  is  usually  a  source  of 
  59. confusion, to anyone not already having an understanding.
  60.      The parity bit may be used simply to make the word length correct for the 
  61. transmission protocol.  Then it's fixed, included as "mark" or "space."  Terms 
  62. mark  and space are carry-overs from the days of teletypewriters (TTY).   Mark 
  63. is high or true bit state, loop current flowing, i.e., a one; space, a zero or 
  64. false  state.   Parity, when actively used, tells of a  possible  transmission 
  65. error at the receiving terminal.  Value of parity bit is determined by sum  of 
  66. bits  in  particular  byte,  and  may be either  odd  or  even,  depending  on 
  67. convention selected.
  68.      Even  parity tells receiving computer that data bits in transmitted  word 
  69. add  up to an even number, i.e, number of ones and number of zeros sum  to  an 
  70. even  number, 2, 4, or 6.  On receive, if sum is not even, an  error  probably 
  71. occurred.   The parity bit on transmit is made either a one or a zero to  make 
  72. the sum even.  The letter "A" would be sent as 01000001 and the letter "C"  as 
  73. 11000011.   Without  even parity, it would be 01000011, standard  ASCII  8-bit 
  74. value.
  75.      Most  microcomputing  systems  don't use  parity  to  catch  transmission 
  76. errors,  but  instead use a block (a group of bytes, usually 128 bytes  up  to 
  77. packets  of  16k-bytes) error detection method called CRC,  cyclic  redundancy 
  78. check.  CRC provides more reliable indication of errors existing in a block of 
  79. bytes than possible with parity checking.  Presently, CRC methods are used for 
  80. disk  data recording and telephone communication checking and  co-exists  with 
  81. parity-bit testing, latter mainly for solid state memory (RAM) checking.
  82.  
  83. From  Our  Mail  Box.    Ron Crain (32881  Robinhood,  Birmingham,  MI  48010, 
  84. 313/646-5159)  has  installed ZCPR3 on both a CompuPro 85/88  and  an  Otrona.
  85. "Even though Otrona is out of business, an Attache with the Z-System is  about 
  86. the  most  effective portable around."  Ron, please  make  both  installations 
  87. available  by  placing  instructions and necessary programs in  LBR  file  and 
  88. uploading  to  Z-Node  Central.  Of course, leave ZRDOS out of  upload,  as  a 
  89. license  is required for its use.  We encourage free distribution among  users 
  90. of  ZCPR3  installations  to  promote having it run on  as  many  machines  as 
  91. possible.   Also, Ron is looking for WordStar/LaserJet page printer  software.
  92. We suggest Newword; see Z-News 402 and 403 for more details.
  93.      "I  gather that some people are unaware that Rick Conn's  original  ALIAS
  94. (requiring custom assembly for each system) is the only one (as far as I know) 
  95. which  does not require an initialized environment, therefore is  most  useful 
  96. for  creating STARTUP.COM without having to initialize ENV in BIOS.  Might  be 
  97. worth  a mention."  Note comes from Dreas Nielsen, Corvallis, OR.   Yes,  this 
  98. clears up a mystery that many have wondered about.
  99.      "What  terminals  can your graphics package be used with?"  asks  Malcolm 
  100. Aukerman (Newport, IN).  We are compiling a list of terminals that work, first 
  101. with  graphics  and second, handle windows.  Task is not  trivial  because  we 
  102. haven't   been  able  to  find  an  up-to-date  single-source   for   terminal 
  103. information.   (We  own two copies of "A Programmer's Guide to  Video  Display 
  104. Terminals," by David Stephens, but more details are required than these  books 
  105. contain.)  We are working with terminal vendors now and hopefully will receive 
  106. sufficient  information from them to develop a comprehensive,  accurate  list.
  107. Stay with us.
  108.      "The  May/June issue of Micro/Systems Journal will carry  a  construction 
  109. article  on  how to build an HD64180 S-100 CPU card the easy way.   You  might 
  110. want  to tell your newsletter readers to look for it."  Sol Libes, Editor  and 
  111. Co-Publisher  writes.   "We would be interested in doing a review  of  the  Z-
  112. System.   Let  me  know  if you are  interested."   Yes,  we  are  interested.
  113. Certainly someone will volunteer to write.
  114.      Many  have  asked, "Why get Discat when NCAT is in  the  public  domain?"
  115. Several reasons: 1) Discat is much faster in handling catalogs with more  than 
  116. about  50  diskettes, because of efficient database technique and the  use  of 
  117. working  catalog concept.  Really quick updates are made to  working  catalog.
  118. When computer has nothing more pressing to do, working catalog is merged  with 
  119. one  or more master catalogs.  Yes, more than one master catalog is  possible.
  120. 2)  Discat software modules work together like other Z-System  utilities,  are 
  121. screen-oriented  and  installed  with Z3INS.  Menus, either  MENU,  VMENU,  or 
  122. VFILER  CMD,  are used to control all functions, from putting names  on  disk, 
  123. updating  catalogs,  to removing names.  Every operation may be  from  command 
  124. line  or  performed from a menu, one you can easily change.   3)  You  support 
  125. Echelon,  the company that continues to support 8-bit  upward-compatible  CP/M 
  126. world.  (Review Z-News 401 for our plans.)  Most others have abandoned origins 
  127. of  microcomputing to pursue simply making money; they troop  (Zeffirelli,  Z-
  128. News  304).  We strive to achieve something higher, with making money a  fall-
  129. out; we believe you agree with our philosophy.
  130.      From  Charlotte, NC, Mr. Carey Dowd writes, "Please ask Echelon staff  to 
  131. take  it easy on the Zinfandel--my local merchant is out!"  We are told  staff 
  132. uses only as much Zinfandel as they need to get through the day, to make rough 
  133. places plain.
  134.  
  135. Potpourri.   Idea-processing program, called Out-Think, offered in streamlined 
  136. version  for only $49.95 (Z-News 007).  Runs on any ZCPR3, Z-System,  or  CP/M 
  137. 2.2  system that has at least 48k-bytes of TPA memory, and 200k-bytes of  disk 
  138. storage.   Now  here's  a bargain--greatly  assists  organizing  thoughts  and 
  139. textual material.  New version is more memory-based than original, much faster 
  140. and easier to both understand and use.  Call or write Kamasoft, Inc. (formerly 
  141. Compusophic  Systems),  2525 S.W. 224th Ave., Aloha, OR  97006,  503/649-3765.
  142. They accept credit card orders.
  143.      Those  wishing to obtain literature on Kodak flexible disk  drives,  2.8, 
  144. 5.2,  and 10.0 megabytes of formatted storage mentioned in Z-News 309,  should 
  145. call  716/724-7522;  ask  for Mr. Martin McFadden.   Trust  lots  of  computer 
  146. manufacturers (OEMs) are considering one or more of these beauties for use  in 
  147. their next-generation machines.
  148.      More information on QMS's $1,995.00 laser printer "KISS" (Z-News 401) can 
  149. be gained by calling Mr. Robert Girola at 205/633-4300.
  150.      Congratulations to Bruce Morgen and his premiere issue of The  One-Eighty 
  151. Filetm newsletter, a welcome addition to exciting world of high-performance 8-
  152. bit  computing.  If you own an HD64180-based computer, e.g., Micromint  SB180, 
  153. Magnum  Digital PRO-180, Intelligent Computer Designs XL-M180, etc.,  this  is 
  154. your  newsletter.   Twelve issues are offered for $15.00.   Order  by  calling 
  155. 215/443-9031, or write NAOG, P.O. Box 2781, Warminster, PA 18974.
  156.  
  157. Comment  Line.    When  we  started Z-News nearly  two  years  ago  many  said 
  158. supplying  information to customers every two weeks was over-doing  it.   Most 
  159. companies have newsletters that come out every three months, some not at  all.
  160. We  thought  our  community  deserved something  more--so  a  fortnighter  was 
  161. conceived  and born.  We regret not that moment our spirit was driven to  such 
  162. lengths:  a fortnighter.  It sounded good to us then, and still does now.
  163.      Our  culture is undergoing a radical change and many see it  not.   Those 
  164. that  have  lost their jobs, jobs no longer necessary because  of  changes  in 
  165. technology, they know of what we speak.  Labor is so cheap "off-shore" we  can 
  166. not  use  USAians  in many tasks that Orientals can do.  Our  world  is  small 
  167. because  of  jet airplane travel and satellite communications,  goods  can  be 
  168. produced and shipped here at lower cost than we can make them ourselves.   Our 
  169. work  ethic  is  such we have trouble striving for improved  ways  to  produce 
  170. higher  and higher quality.  Orientals are just becoming materialistic, as  we 
  171. have  been for 50 or more years--we are jaded, but still appreciate value  and 
  172. quality.  As we stated in Z-News 308, "Reason we buy Japanese imports is  same 
  173. reason  they  wouldn't  buy  ours, no matter how fair  and  easy  the  marking 
  174. channels.   Ignore scape-goats, increase value."  We investigate same  subject 
  175. from  many angles in other newsletters, always with one view:  it's up to  you 
  176. and me.  We are IT.  
  177.      We  have  come  far  without  much  understanding  primarily  because  of 
  178. blessings of heritage, our natural location with resources of water, land, and 
  179. weather.  We are rich because of them and much inefficiency could, until  now, 
  180. be  tolerated and still we were superior.  But no more.  New thinking and  new 
  181. ways  are  needed if we are to stay superior.  We welcome  thoughts  on  these 
  182. matters.  See you down the lines...
  183.                                                                  Echelon, Inc.
  184.                                                        885 N. San Antonio Road
  185.                                                 Los Altos, CA 94022 USA
  186.                                    Telephone: 415/948-3820
  187.                                             Z-Node Central (RAS): 415/489-9005
  188.  
  189. Trademarks:   SB180, COMM180, TKBBS, Micromint; PRO-180, Magnum  Digital;  XL-
  190. M180,  ICD;  HD64180, Hitachi; Z-System, ZCPR3, ZRDOS,  Z-Tools,  Z-Com,  Zas, 
  191. Zlink,  ZDM,  Revas4, Z-Msg, DSD, Term3, Lasting-Value Software,  Echelon  and 
  192. owners and authors; CP/M, Digital Research; WY-50+, Wyse Technology; WordStar, 
  193. MicroPro;  Newword,  Newstar; SCSI/Plus, Little Board, AMPRO  Computers;  One-
  194. Eighty File, NAOG.
  195.  
  196.  
  197.  
  198.                                                         big thumb
  199.                      *                                     here
  200.  
  201.  
  202.                            Z   S e t s   Y-O-U   F r e e  !
  203.  
  204.  
  205.                      *                                        *
  206.  
  207.  
  208.  
  209. Z-News  404 is Copyright 1985 Echelon, Inc.  All Rights Reserved.   Permission 
  210. to  reprint,  wholly or partially, automatically granted if source  credit  is 
  211. given to Echelon.
  212.