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 / CPM / TRS-80 / TRS-II.MDM < prev    next >
Internet Message Format  |  2000-06-30  |  965b

  1. Date: 21 July 1981 2201-EDT (Tuesday)
  2. From: Bill Sholar <William.Sholar at CMU-10A>
  3. Sender: William.Sholar at CMU-10A
  4. To:   INFO-CPM
  5. Re:   TRS-80 Model II MODEM Equates & Ports
  6.  
  7.     Since the documentation on the Mod 2 TRS-80 does not bother
  8. to discuss hardware, the following port addresses and equates for
  9. MODEM.ASM programs might prove useful to anyone using this machine:
  10.  
  11.     MODCTLP    EQU    0F6H    ;status/control port A
  12.     MODSNDB    EQU    04H    ;bit 2 indicates ready to send
  13.     MODSNDR    EQU    04H    ;  with the bit set to 1
  14.     MODRCVB    EQU    01H    ;bit 0 indicates character received
  15.     MODRCVR    EQU    01H    ;  with the bit set to 1
  16.     MODDATP    EQU    0F4H    ;data port A
  17.  
  18.     These values, plugged into MODEM.ASM, allow the TRS-80 Mod 2 to
  19. function without any special system calls or other variations from the
  20. existing MODEM.ASM program, assuming the port has been set up using the
  21. SETUP (Pickles & Trout's CPM), CONFIG (Lifeboat's CPM) or SET (Cybernetics'
  22. CPM) utility for the appropriate baud rate, etc.
  23.