home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / cpm / news / apr86.mag < prev    next >
Text File  |  1994-07-13  |  28KB  |  607 lines

  1. =================================================================
  2.  
  3.                                The
  4.  
  5.                              $ R / O
  6.                  
  7.                         R E A D   O N L Y
  8.  
  9.                   
  10.                     -=( April 1986 Issue )=-
  11.  
  12.  
  13.  
  14. The   monthly   news  magazine of the Tampa Bay   Kaypro   User's 
  15.              Group and the DataCOM Super Systems(tm)
  16.  
  17. =================================================================
  18. News and reviews of programs, hardware, and peripherals for users 
  19. of microcomputers with CP/M,  MP/M,  MS-DOS,  PC-DOS, or TurboDOS 
  20. operating systems.
  21. =================================================================
  22.  
  23.                Steven L. Sanders - Editor (Sysop)
  24.  
  25. =================================================================
  26.  
  27. The  DataCOM Super Systems(tm) is a "state of the art" multi-user 
  28. remote  database  with  40mb of files online.   An annual fee  of 
  29. $35.00 is required  for access,  an application may be downloaded 
  30. by  calling (813) 791-1454 at 300/1200/2400 baud or send a   SASE 
  31. along with your request to:
  32.  
  33.  
  34.                 TBKUG / DataCOM Super Systems(tm)
  35.                       2643 Cedar View Court
  36.                       Clearwater, FL 33519
  37.  
  38.  
  39.                       -==( DISCLAIMER )==-
  40.  
  41. Articles and reviews of microcomputers,  hardware,  software, and 
  42. other peripherals reflect currently advertised prices as released  
  43. by  the distributors and are included here for  YOUR  INFORMATION  
  44. ONLY.   The  TBKUG/DataCOM Super Systems(tm) is  NOT  being  paid  
  45. to    advertise   these  products  and  we   cannot    be    held 
  46. accountable   for  the  actual retail price  and/or   performance  
  47. of  said products.
  48.  
  49. =================================================================
  50.  
  51.  
  52.              -=={ Change Your PC's Personality }==-
  53.  
  54.                  Copyright 1986 by Steve Sanders
  55.  
  56. {This  is the second in a three-part series of articles aimed  at 
  57. the new owner of an IBM-PC or clone.   This month we look at some 
  58. of DOS' hidden features and some super FREEWARE programs.}
  59.  
  60.  
  61.                   -={ DOS Tip of the Month }=-
  62.  
  63. This is simple fix that will really speed things up especially if 
  64. you have a fixed (hard) drive.  DOS allows you to allocate buffer 
  65. space for the handling of diskfile I/O and all you need do is add 
  66. a line to your CONFIG.SYS file as follows:
  67.  
  68. BUFFERS = 20
  69.  
  70. I would also recommend that you add the following line as well.
  71.  
  72. FILES = 20
  73.  
  74. Users  with  floppy-based  systems will probably not  notice  any 
  75. great improvements but it sure makes a big difference with a hard 
  76. disk drive installed.
  77.  
  78.  
  79.                    -={ Change Your Prompt }=-
  80.  
  81. How would like a fancier looking DOS prompt?   It's real easy  to 
  82. change the information displayed on your system prompt.   Instead 
  83. of  a plain looking "A>" prompt you can have one that looks  like 
  84. this:
  85.         [12:27 Mon  3-03] C:\WORDPRO>
  86.  
  87. You  can  experiment  with the command prompt by  using  the  DOS 
  88. command "PROMPT", the above is created with:
  89.  
  90. PROMPT [$T$H$H$H$H$H$H $D$H$H$H$H$H] $P$G
  91.  
  92. $T by itself displays the entire time string "00:00:00.0"
  93. $D by itself displays the entire date string "Mon 3-03-1986"
  94. The  $H  characters indicate how many data positions  to  display 
  95. from the string.
  96.  
  97. You  can add this line to your AUTOEXEC.BAT file and your  prompt 
  98. will  come  up in any fashion you desire each time the system  is 
  99. booted.
  100.  
  101. The addition of the current sub-dir on the prompt can really save 
  102. you a lot of time instead of doing DIRs to see what directory you 
  103. are logged into.
  104.  
  105. Note:   You must use the MD (make dir) command and name a sub-dir 
  106. before it can be displayed on the prompt with the "$P" parameter.  
  107.  
  108.                     -={ CED To The Rescue }=-
  109.  
  110. Ever  wish that you could just type "ERA filename" under DOS  2.x 
  111. instead of having to enter ERASE all the time?   Or let's say you 
  112. let someone operate your PC to play games and you don't want them 
  113. erasing  or changing filenames,  how do you turn off the built-in 
  114. commands?
  115.  
  116. If  this  was CP/M we were talking about I'd say  you  needed  to 
  117. install  ZCPR3  --  but this is DOS!   Cheer up  sportsfans,  the 
  118. answer  to most all of your problems can be had by using a  nifty 
  119. little  program called CED.   CED stands for Command  EDitor  and 
  120. that's  just  what  it lets you do plus a whole  bunch  of  other 
  121. really neat little tricks.   CED is a blending of two other great 
  122. DOS utilities, DOSEDIT and RE-CALL, and takes their best and adds 
  123. a few new features of its own.
  124.  
  125. CED  will  actually  remember  every  command  entered  from  the 
  126. keyboard and keeps these in a "stack" in memory for later re-call 
  127. and subsequent editing before use.   The commands may be recalled 
  128. by  pressing the UP arrow key or DOWN arrow key to go through the 
  129. stack  either backwards or forwards.   Each command is  displayed 
  130. right  on the DOS prompt line and you may use the cursor keys  to 
  131. move  through the commandline for editing or just simply hit  the 
  132. ENTER  key to re-use the command.   CED only  remembers  commands 
  133. with three or more characters so repetitive commands like "D" for 
  134. directory or "A:" are not added to the stack.
  135.  
  136. CED  also  allows you to add the convenience of synonym  commands 
  137. which any good ZCPR3 user knows as an alias.  An alias or synonym 
  138. is  usually  a simple command for a very  complex  or  repetitive 
  139. operation.  It may also be used to shorten or abreviate DOS's own 
  140. internal command names.   As I mentioned at the beginning of this 
  141. article  it  would  be nice to say ERA instead of ERASE  all  the 
  142. time.  No problem, just enter the following command:
  143.  
  144. CED SYN ERA ERASE
  145.  
  146. Your PC will now erase a file with entry of either "ERA filename" 
  147. or "ERASE filename" now.  And when the kids are playing games and 
  148. you want to turn off erase altogether, just enter:
  149.  
  150. CED IGNORE ERASE
  151. CED IGNORE DEL
  152.  
  153. CED  actually scans every commandline entered from  the  keyboard 
  154. and  looks  for  synonyms or commands that should be  ignored  or 
  155. handles them accordingly.
  156.  
  157. Installation  of  CED is done at startup time by adding a  simple 
  158. line to your AUTOEXEC.BAT file like so:   CED <-f ced.cfg>
  159.  
  160. You  can  also  load CED definitions with  the  addition  of  the 
  161. optional <-f filename> parameter or just "CED" by itself installs 
  162. CED for later programming from the keyboard or another .BAT file.  
  163. CED  increases resident DOS size by about 16k and it's 5 internal 
  164. buffers  may  also  be changed to different  sizes  but  only  at 
  165. initial startup.
  166.  
  167. This  should have been more than enough to wet your  appetite  so 
  168. I'll  just  say that CED is available online in the  NEWDOS  file 
  169. area  and  can be found in a file called  CED10D.LBR,  yes,  it's 
  170. public  domain!   And  it  has more features than  just  the  few 
  171. mentioned here.
  172.  
  173.                   -=={ Add a Virtual Drive }==-
  174.  
  175. RAMDISK.SYS  is  a DOS 2.x device driver which is configured  and 
  176. loaded  at  startup  time with other DOS drivers  listed  in  the 
  177. CONFIG.SYS file.  DOS always looks for CONFIG.SYS at boot-up even 
  178. before it starts executing commands from AUTOEXEC.BAT.  If you're 
  179. not using a CONFIG.SYS file now it is easily created by any  text 
  180. editor or even the COPY command.  It is just like a .BAT file and 
  181. contains  instructions  that  are  passed to  DOS  to  allow  the 
  182. installation of special devices.
  183.  
  184. The  RAMDISK.LBR contains the driver RAMDISK.SYS which is  placed 
  185. on your boot disk in drive A, then add the following line to your 
  186. CONFIG.SYS file:
  187.  
  188. DEVICE=RAMDISK.SYS <size>
  189.  
  190. The <size> parameter can be whatever amount of memory you have or 
  191. wish to allocate to the virtual drive.   I have a 640k clone so I 
  192. use 150k for my new drive C by giving the command:
  193.  
  194. DEVICE=RAMDISK.SYS 150
  195.  
  196. You have never seen Wordstar run so fast as it does when you copy 
  197. Wordstar  and it's overlay files to the ram drive.   And you  can 
  198. copy  any other frequently used utilities to drive C and then set 
  199. the  path to check for them on C:\  This virtual drive will  also 
  200. save  your floppy drives from a lot of unecessary wear  and  tear 
  201. with constant drive acesses.
  202.  
  203. PC-DOS 3.1 users get a Ramdisk driver with their operating system 
  204. utilities,  it's called VDISK.SYS and must be configured for your 
  205. particular parameters and then used just like RAMDISK.SYS.
  206.  
  207.  
  208.                     -={ BACKSCRL Utility }=-
  209.  
  210. The  library  BACKSCRL.LBR  contains a handy  DOS  extension  for 
  211. remembering previous CRT screens.  You can take a snapshot of the 
  212. current screen and re-call it anytime you want,  then restore the 
  213. original  screen  again.   BACKSCRL can be set to buffer 1 to  28 
  214. pages  depending on how much memory you want to allocate to  it's 
  215. use.   Do  a DIR once and save your disk drive,  want to  see  it 
  216. again, simple, just activate BACKSCRL and view it.
  217.  
  218.                 -=={ Where's My Overlays ?? }==-
  219.  
  220. GLOBAL  is another DOS 2.x goodie that allows you to set  file(s) 
  221. "common"  to  any  directory  you desire.   There are  a  lot  of 
  222. specific  commands necessary to use GLOBAL and I'm not  going  to 
  223. describe  them here,  the DOC file does a much better job anyway.  
  224. Suffice  it to say that if you have a fixed (hard) disk or use  a 
  225. Ramdisk  (virtual) drive that you should be  using  GLOBAL.   You 
  226. just  create a WORDPRO directory for example,  then set  Wordstar 
  227. and it's overlays comman to that directory and away you go!
  228.  
  229. Note:   GLOBAL  does not work under PC-DOS 3.x and I've had to go 
  230. to  a commercial alternative called SmartPath(tm) which does  the 
  231. same extra path searching for overlays.
  232.  
  233.                   -=={ Prevent CRT Burn-In }==-
  234.  
  235. BURNOUT.LBR  has  a DOS device called BURNDEV.SYS which  is  also 
  236. loaded via the CONFIG.SYS file at startup.   This one will darken 
  237. your  CRT display after 8 to 10 minutes of no keyboard  activity.  
  238. You  just  tap any key and your screen is instantly restored  and 
  239. ready to go again.  
  240.  
  241. For  those of you who have their computers in a semi-public  area 
  242. and  wish  to  add password protection as  well  as  CRT  burn-in 
  243. protection,  check out the D.LBR files.  D.EXE when executed will 
  244. black  out  the CRT until any key is pressed,  it  then  responds 
  245. with:
  246.  
  247. ACF82004 ACF2, ENTER PASSWORD-
  248.  
  249. and  waits for the correct password to be entered or justs blacks 
  250. out the screen again if an iccorect password is  entered.   After 
  251. entry  of the proper password,  the screen is once again restored 
  252. with  all the data as it was before typed  "D".   The  characters 
  253. preceding  the "ENTER PASSWORD-" prompt are meant to mystify  the 
  254. curious  according  to  the author and  simulate  some  mainframe 
  255. terminal  ID  sequence  or  some  such  nonsense.   The  internal 
  256. password is easily changed (if you know the current password) and 
  257. this program provides "simple" protection unless the  mischievous 
  258. hacker has brought along his own boot disk.
  259.  
  260.                         -={ PCWINDOW }=-
  261.  
  262. Want  a SideKick-type program but don't want to spend any  money?  
  263. The PCWNDW22.LBR has a memory-resident program with the following 
  264. features: Time/date display with stopwatch timer, ASCII character 
  265. table, Note pad, and Printer Set-Up utility.  
  266.  
  267. All   of  these  are  displayed  in  pop-up  windows  just   like 
  268. SideKick's.   Press  ALT-0 and a main menu appears in  the  upper 
  269. righthand  corner  of  the  screen,  press  ALT-0  again  and  it 
  270. dissapears again.
  271.  
  272. {End of Part 2, next month we look at hardware goodies.}
  273.  
  274.  
  275.                  -={ TBKUG ZCPR3 User Disks }=-
  276.  
  277. The  TBKUG has the entire phase 1 and 2 release files for Richard 
  278. Conn's  Z-80 Console Processor Replacement version 3.00  and  the 
  279. source code for all utilities and SYSLIB libraries.
  280.  
  281. We offer the following diskettes for support of ZCPR3:
  282.  
  283. Files For All ZCPR3 Users:
  284.  
  285. TBKUG.029      All of the utilities from phase 1 release in ready 
  286.                to install (with Z3INS.COM) form.
  287. TBKUG.030      Utilities HeLP files
  288. TBKUG.040      Utilities HeLP files
  289. TBKUG.062      ZCPR3 User Guide and new (phase 2) utilities
  290. TBKUG.065      ZCPR3 real-time clock utilities,  Kaypro clocks, 
  291.                Z-Time I, or DC Hayes Chronograph 
  292.  
  293.  
  294. Specific Kaypro Model Disks:
  295.  
  296. TBKUG.063      ZCPR3 for Kaypro 4'84 (also 2'84 models)
  297. TBKUG.044      ZCPR3 for Kaypro 10 (2.2, 2.2D, 2.2F, 2.2G)
  298. TBKUG.061      ZCPR3 + BIOSMMR for the Kaypro 10 (adds 1.5mb  to 
  299.                the hard disk storage capacity.)
  300. TBKUG.087      ZCPR3 for early Kaypro II or 4 ('83 models)
  301. TBKUG.088      ZCPR3 for Kaypro 10 plus Advent's TurboROM
  302.  
  303.  
  304. ZCPR3 Source Code (MAC, M80, and L80 plus SYSLIB (3.0), VLIB, and 
  305. Z3LIB req'd for assembly):
  306.  
  307. TBKUG.031      ZCPR3 Install Source disk 1
  308. TBKUG.032      ZCPR3 Install Source disk 2
  309. TBKUG.033      Utilities Source code
  310. TBKUG.034      Utilities Source code
  311. TBKUG.035      Utilities Source code
  312. TBKUG.036      SYSLIB HeLP files
  313.  
  314. NOTE:   All  disks  except 061 and 063 are  Kaypro  SS-DD  (191k) 
  315. format  - readable  by  any model Kaypro.   All TBKUG  User  Disk 
  316. Volumes  are  priced at $10/ea ($12/ea foreign) and  include  the 
  317. diskette,  mailer, and postage.  Disks are shipped First Class US 
  318. Mail  within  24-48 hours of receipt of personal check  or  money 
  319. order - NO  C.O.D.  orders are accepted.
  320.  
  321. We  also  have a growing number of IBM/DOS User Disk  volumes  as 
  322. well.   You  can obtain a copy of our catalogs by sending a  disk 
  323. with a re-usable mailer and return postage.   Please specify disk 
  324. format  as  Kaypro SS-DD or DS-DD or PC-DOS DS-DD.   We can  also 
  325. supply  these disks in most any 5-1/4"  soft-sector  format,  but 
  326. inquire  first.   Be sure to include the return postage or you'll 
  327. get  a nasty note from me,  I spend enough money now as it is  at 
  328. the local Post Office.
  329.  
  330.  
  331.                      -={ NEW CP/M FILES }=-
  332.  
  333. PROLINK.LBR  is Ron Fowler's (of MEX fame) fancy  linkage  editor 
  334. for  .REL  files.   This  was previously a  NightOwl  proprietary 
  335. program  but  Ron  has now graciously donated it  to  the  public 
  336. domain for all to use.   PROLINK works great in conjunction  with 
  337. output  files  from ZASM,  a macro-assembler also in  the  public 
  338. domain.   Put  these  two fine programs together and you  have  a 
  339. system as good as the commercial M80/L80 package from MicroSoft.
  340.  
  341. NULUFIX.ASM   A fix has been found for NULU v1.5.   Like all good 
  342. fixes,  however, it causes its own share of problems and can only 
  343. stand  as a temporary fix until I can get version 1.6  out.   The 
  344. problem was BDOS function 37, which NULU15 uses before writing to 
  345. a   drive   in  case  it  has  been   changed.    Under   certain 
  346. circumstances,  BDOS loses its mind when this function is  called 
  347. and starts giving away previously allocated disk blocks.  This is 
  348. no good for anyone.    The "solution" lies in NOT USING BDOS 37.  
  349. The  problem  now  is that you cannot tell NULU to log in  a  new 
  350. disk.   Oh well,  try to live with it until I get the new one out 
  351. that will support the fix. {text extracted from NULUFIX.ASM}
  352.  
  353. I/OCAPKP.LBR will allow you to capture console output and send it 
  354. to a diskfile for later editing and/or viewing.  This version has 
  355. been  tested on my Kaypro 10 with TurboROM,  ZCPR3,  and half the 
  356. kitchen sink running in memory and it still works!   You just run 
  357. the program to install it in memory and everything printed on the 
  358. screen  is  saved to a diskfile.   Run the program again  and  it 
  359. turns it off.
  360.  
  361. USQFST18.LBR  This is the fastest CP/M file unsqueezer I've  ever 
  362. used.  Compared to Dave Rand's USQ120 written in machine language 
  363. it's about 2 to 3 times faster!   Many improvements have appeared 
  364. in this program since it's release and it keeps getting better.
  365.  
  366. SB-180  owners  will want to look at CONFIG12.LBR and  FVC22.LBR.  
  367. The  CONFIG12  files  allow you to re-configure  your  system  in 
  368. memory or on disk.   The original CONFIG has some problems and is 
  369. outlined  in  the  CONFIG.BUG file  also  online.   FVC22  is  an 
  370. improved  disk format/verify/copy program.   All  SB-180  related 
  371. files can now be found in their own file area called SB180.
  372.  
  373. RESQ14.LBR  is the latest ram-text restoring program for Wordstar 
  374. users.   If you ever get a diskfull error while trying to save an 
  375. edited file,  press the reset button, insert a disk with RESQ.COM 
  376. on  it and simply enter "RESQ".   RESQ will ask for a  string  to 
  377. search for and then hunts thru the ram buffer until it's located, 
  378. then  backs up to the start of the buffer and saves it to the end 
  379. of  the  text area.   You end up with a file called  RES.Q  which 
  380. contains the "lost" text, or at least 14-16k of it anyway.
  381.  
  382. DIR1ST30.LBR is a unique type of directory program,  it lists the 
  383. filenames  and sizes in 'k' as usual,  but it also can be told to 
  384. display the first <nn> lines of ASCII printable files.
  385.  
  386.                     -={ MexPlus for CP/M }=-
  387.  
  388. The  DataCOM Super Systems(tm) was chosen as one of  the  primary 
  389. download   sites   for  Ron  Fowler's  new  MexPlus  v1.6   modem 
  390. communications program for CP/M systems.  If you have enjoyed the 
  391. public  domain version of MEX114 and would like to have  an  even 
  392. more  sophisticated  program  then  you  want  MexPlus.   MexPlus 
  393. features  full support of real-time clocks which adds a bunch  of 
  394. new  STAT and WAIT variables for timing purposes.   Or how  about 
  395. the  MexPack  with  either  the REMOTE  option  or  the  Terminal 
  396. Emulator option, or both.
  397.  
  398. Current pricing for MexPlus downloads is as follows:
  399.  
  400. Basic  MexPlus  package including Wordstar formatted  manual  and 
  401. complete menu-driven installation program is    $59.95
  402.  
  403. MexPlus with REO or TEM options                 $89.95
  404.  
  405. MexPlus with both REO and TEM options           $99.90
  406.  
  407. REO  is the remote control package for MexPlus,  you can call  in 
  408. from  another  computer and have full remote control of  MexPlus.  
  409. This access can be secured by using the password option so  don't 
  410. fear the zit-faced Twits.
  411.  
  412. The  TEM or Terminal Emulator can easily configure your  computer 
  413. to  look and act like quite a few others.   VT-52/100 is used  by 
  414. many  mainframe  computers  and there are many more  like  ADM3A, 
  415. TV920/950, Hazletine 1500, and so on.
  416.  
  417. See  the  file called MEXPLUS.NQW on the remote systems for  full 
  418. details of all of MexPlus' features, there just isn't enough room 
  419. here  to  do  it justice.   Suffice it to say that  if  you  were 
  420. impressed  with the pd version of MEX,  just wait until  you  try 
  421. MexPlus!
  422.  
  423.                      How to Download MexPlus
  424.  
  425. You  must pay in advance by check or money order made payable  to 
  426. TBKUG in the amount shown above for the desired package.  Special 
  427. arrangements  will be made in advance and the MexPlus files  will 
  428. be made available to you to download via modem.
  429.  
  430.  
  431. Credit card orders and persons wishing to buy the IBM-PC  version 
  432. of MEX-PC must contact NightOwl Software direct at:
  433.  
  434.                           1-800-NITEOWL
  435.  
  436. The  PC version comes only with a nice printed manual in a  vinyl 
  437. binder  and  is  not available on diskfile so  it  precludes  its 
  438. download-ability sorry.
  439.  
  440.  
  441.               -={ NEC RCP/M Has a WATTS Number }=-
  442.  
  443. {text captured during an online session}
  444.  
  445. The Starlet RCP/M, 1-800-632-7227, 300 or 1200 baud, sponsored by 
  446. NEC Home Electonics,  700 Nicholas Boulevard,  Elk Grove Village, 
  447. Il.  60007.  
  448.  
  449. The  board is intended for use by our customers and those who are 
  450. interested in NEC Home Electronics Computers and Software.   This 
  451. is  currently  an open board,  meaning,  passwords are  not  pre-
  452. assigned...  a caller makes one up upon logging in for the  first 
  453. time,  and  continues  to use it thereafter.   The  CP/M  up/down 
  454. loading section is not restricted, so even first time callers may 
  455. use it.  The Christensen 128 byte packet protocol is currently in 
  456. use  for up/downloads,  so a caller wishing to upload must have a 
  457. MODEM7, MEX, or compatible program in order to up/download.
  458.  
  459. Beginners  are welcome and are encouraged to read and re-read the 
  460. many help explanations that are available on this board,  and  to 
  461. generally play around to get the feel of things.  Some good books 
  462. on Public Domain Bulletin Boards are available,  which are highly 
  463. helpful  in learning about this and other systems like  it.   The 
  464. main intent of this Remote Bulletin Board System is to aid in the 
  465. answering  of inquiries about the NEC computer product line as it 
  466. relates  to Software.   So,  PLEASE only leave messages for  help 
  467. about  GETTING  AROUND ON THIS BOARD if you  have  already  tried 
  468. everything  you can possibly think of,  after reading every  Help 
  469. message available, and every attempt has failed. 
  470.  
  471. Please,  only call once every 24 hours.   The system is set up to 
  472. automatically  disconnect after 2 minutes of inactivity (like  if 
  473. you  don't type anything in for 2 minutes....  bye-bye!)  It also 
  474. is set to allow only one hours' use per call.  Please don't abuse 
  475. this privilege.   This board is an experiment in common courtesy, 
  476. so let "you should know better than that" be your guide.
  477.  
  478. One of the key benefits of this information base is,  we believe, 
  479. that  all  users are encouraged to contribute data  to  it  which 
  480. might be of use to fellow users.   If you feel that you have data 
  481. which  you would like to include in the information base,  please 
  482. upload  it as an ASCII file with a short heading explaining  that 
  483. you  wish  to contribute to the base.   Also,  please  include  a 
  484. sentence or two on the contents of your data file, so that we may 
  485. better organize the information.
  486.  
  487. P.S.  People who cause disgrace to RBBS systems are NOT  WELCOME, 
  488. and are violating the law just as much as any other obscene phone 
  489. call perpetrator.
  490.  
  491. signed:   SYSOP  -  November 4, 1985 17:00 CST
  492.  
  493. {Editor's  note:   I  only  wish we (the  TBKUG)  had  the  funds 
  494. available  for an incoming WATTS line,  what a joy to call LD and 
  495. not get charged for it!  My hat's off to NEC - good show!!}
  496.  
  497.  
  498.                -={ N.A.O.G. Becomes NAOG/ZSIG }=-
  499.  
  500. Now that the membership of the North American One-Eighty Group is  
  501. solidly  into  triple  figures,  an important fact  has  emerged:  
  502. people  who don't own SB180s (or any other HD64180-based  system)  
  503. are a big part ( a near-majority!) of NAOG.   Furthermore,  there 
  504. is   no   independent  national  or  international  users   group 
  505. dedicated  to  advanced CP/M-compatible computing.  Most existing 
  506. groups,   SIG/M,   CPMUG,  FOG,  KUG,  CP-MIG,  etc.,  have  vast 
  507. memberships and software  libraries,  but have failed to do  what 
  508. needs  to  be  done to assure  the survival and growth  of  8-bit 
  509. computing:  get behind the new  operating system standard, ZCPR3, 
  510. and the many possible performance enhancements and user  benefits 
  511. it affords. 
  512.  
  513. Echelon,  Inc.  has done a thoroughly admirable job of  promoting 
  514. and supporting ZCPR3 (and the fine-but-optional ZRDOS), but it is 
  515. apparent  that no software company can provide the support on the 
  516. individual  user  level that a united user  community  can  give.  
  517. Moreover, Echelon's major efforts, for economic reasons, must now 
  518. focus  on  landing  OEM agreements if they  are  to  survive  and 
  519. prosper  - we  want them to do just that.   Frank   Gaude',  Rick 
  520. Conn,  Dennis Wright and Dave McCord are exceptionally energetic, 
  521. innovative people,  but they are not supermen.  It is not fair to 
  522. expect the impossible from them. Yet, many do expect just exactly 
  523. that,  and  complain that most of the fine (and not-so-fine)  new 
  524. programs coming out of the user community are not being  reviewed 
  525. for  inclusion  into  the official Z tool set.
  526.  
  527. We  propose  an  alternative place for ZCPR3 innovators  to  take 
  528. their  wares and for advanced users to share  their  discoveries.  
  529. Effective immediately,  N.A.O.G. is now NAOG/ZSIG - ZSIG for ZCPR 
  530. Systems  Interest Group.   We have not forgotten the SB180  owner 
  531. and the HD64180 enthusiast - THE ONE-EIGHTY FILE will provide the 
  532. support  and exchange of ideas that NAOGers have already come  to 
  533. expect.   We  believe  that advanced software deserves  the  best 
  534. available hardware - and,  for now,  that is the 64180.      We have 
  535. simply remembered everyone else.   We believe a solid Z80 machine 
  536. running  ZCPR3 is better than an IBM clone for most purposes.  We 
  537. don't   want  to  see  all  that  sound  hardware  junked   - and 
  538. programming  expertise wasted - in a rush toward   IBM-compatible 
  539. mediocrity.  We support a viable alternate path to computer-aided 
  540. human productivity and creativity. 
  541.  
  542.                       NAOG/ZSIG And Echelon
  543.  
  544. We  will build a Public Domain library of alternative  tools  and 
  545. true ZCPR3 applications written by users.  We do this in the same 
  546. spirit  as  a previous era's CP/M users expanded on what  Digital 
  547. Research provided, creating - as Rick Conn acknowledges in source 
  548. code  comments - the basis for  much of  the  ZCPR3  system.   We 
  549. receive  the ZCPR3 system with gratitude.   We propose to use its 
  550. amazing flexibilty in new and innovative ways for the benefit  of 
  551. all.
  552.  
  553.                      NAOG/ZSIG - Who We Are
  554.  
  555. The  core  group  of NAOG/ZSIG consists  of:
  556.  
  557. Jay Sage - Software Librarian
  558. Richard Jacobson - Remote Access Systems (RAS) Coordinator 
  559. Bruce Morgen - Director and ONE-EIGHTY FILE editor   
  560.  
  561. Jay Sage will take on the task (with whomever he recruits to help 
  562. him)  of  reviewing  new software and  organizing  it  into  ZSIG 
  563. libraries.  
  564.  
  565. Richard  Jacobson's beautifully maintained Lillipute Z-Nodes will 
  566. be  the official software collection and distribution  points  as 
  567. well  as  the  NAOG/ZSIG maildrop - he will also see  that  other 
  568. sysops, Z-Noders or not, are kept up to date.  
  569.  
  570.                Joining Up
  571.  
  572. Membership is open to all.   Send $15 U.S. ($25 payable on a U.S. 
  573. bank  if  you are beyond the reach of a 22 cent  stamp)  and  the 
  574. NAOG/ZSIG  Membership Application form below (let us know if  you 
  575. want to be accessible to other NAOG/ZSIGers, please!) to:
  576.  
  577. NAOG/ZSIG
  578. P.O. Box 2871               Phone: 215-443-9031
  579. Warminster, PA    18974           (Voice - data by appt.)
  580.  
  581. Library  disk  distribution will commence as soon as 180K  or  so 
  582. (source and object) are accumulated.  To accommodate the greatest 
  583. number  of users,  the Ampro,  Kaypro and Osborne SSDD 5.25  inch 
  584. disk formats will be supported,  with others to follow if  demand  
  585. warrants.   Unlike NAOG userdisks(tm), the ZSIG libraries will be  
  586. available to non-members for a small additional charge: NAOG/ZSIG 
  587. members get them for $12  postpaid,  non-members pay $18 ($18 and  
  588. $25  are  charged  for overseas destinations).   Members  get  12 
  589. monthly ONE-EIGHTY FILEs and access to the NAOG/ZSIG  directories 
  590. of  the  Lillipute  Z-Nodes.   Full Lillipute  Z-Node  access  is 
  591. offered at $35/year, representing a $5 discount, to NAOG/ZSIGers. 
  592.  
  593. If  you want to drop us E-Mail you can call Lillipute  Z-Node  at 
  594. 312-649-1730  or  312-664-1730 (300/1200/2400 baud) and  leave  a 
  595. message for SYSOP, Jay Sage, or Bruce Morgen (note spelling). Jay 
  596. can  be  reached directly via his own Z-Node #3  at  617-765-7259 
  597. (300/1200/2400   baud)  and  Bruce  Morgen's  GEnie  address   is 
  598. BRUCEMORGEN. 
  599.  
  600.  
  601.                           -={ FINIS }=-
  602.  
  603. Well, that wraps up another month of news and reviews.  Lots more 
  604. good stuff coming next month, until then... adios.
  605.  
  606.                      Steve Sanders - Editor
  607.