home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #27 / NN_1992_27.iso / spool / alt / folklore / computer / 16655 < prev    next >
Encoding:
Text File  |  1992-11-23  |  2.7 KB  |  57 lines

  1. Newsgroups: alt.folklore.computers
  2. Path: sparky!uunet!spool.mu.edu!agate!linus!linus.mitre.org!jcmorris
  3. From: jcmorris@mwunix.mitre.org (Joe Morris)
  4. Subject: Re: ASSEMBLY LANGUAGE IBM
  5. Message-ID: <jcmorris.722525732@mwunix>
  6. Sender: news@linus.mitre.org (News Service)
  7. Nntp-Posting-Host: mwunix.mitre.org
  8. Organization: The MITRE Corporation
  9. References: <1992Nov18.134855.28580@geovision.gvc.com> <1992Nov19.230823.9763@spatula.rent.com> <30546@nntp_server.ems.cdc.com> <1992Nov22.032132.14404@spatula.rent.com>
  10. Date: Mon, 23 Nov 1992 13:35:32 GMT
  11. Lines: 44
  12.  
  13. azog@spatula.rent.com (Billy D'Augustine) writes:
  14.  
  15. >Well, for the longest time, the actual reference to the card reader
  16. >(2901? forget), 
  17.   ^^^^
  18. Probably a 2501.  In general any machine numbered x9xx is a special-order
  19. (so-called "RPQ") product, and one numbered x5xx is a card handler.  Of
  20. course, there are more than enough exceptions to this rule.
  21.  
  22. >                was removed the system startup (a DEFINE card), but
  23. >the physcial machine sat around for a few months. When we got rid of it,
  24. >we rewired channel 0 (where the cardreader and printers usually live, 
  25. >due to being such slow I/O devices). Now we have 020 as a 3422 mag reel
  26. >drive, and 00E as a 4245 printer. Now, think about this addressing just
  27. >a little bit. What do you think will happen when you fire up a nice
  28. >tape sort on 020? The printer stops...
  29.  
  30. Working as designed.  A channel is (by definition) a single logical data
  31. path.  A tape drive, once it begins operation, takes control of the 
  32. channel until its last data transfer activity is complete.  This is
  33. not unreasonable since few tape drives have any significant buffering
  34. capability; once the tape is running and requires channel service it
  35. cannot accept a delay caused by some other device hogging the channel.
  36.  
  37. In general a system should not be configured with a burst mode device
  38. (like a tape drive) on a byte multiplexor channel...and on most systems
  39. channel zero is always a byte multiplexor.
  40.  
  41. On some older systems you could install a special feature which 
  42. converted the top 64 addresses on channel zero (0C0-0FF) into
  43. four so-called "selector subchannels" which operated independently
  44. of the lower channel zero addresses.  With the decreased cost of
  45. channel hardware the need for this gimmick went away some time back.
  46.  
  47. >                All the password files (for CICS) are text files sitting
  48. >somewhere on the system. To add a new password, you have to assemble this
  49. >text file into a phase (IBMs name for an executable). The originating
  50. >text file is in no way encrypted or protected. On that same vein, a 
  51. >user simply cannot change his password by himself. 
  52.  
  53. Sounds like the WIJIT system I knew and loved (NOT!) on a PDP-11/45
  54. a few years ago...
  55.  
  56. Joe Morris
  57.