home *** CD-ROM | disk | FTP | other *** search
-
- ; XMHZ-1.ASM - XMODEMxx PATCH FILE FOR HEATH/ZENITH Z100 11/17/83
- ;
- ; This file adapts XMODEMxx to the HEATH/ZENITH Z100 computers with ex-
- ; ternal modem. To use, first edit any options desired into XMODEMxx.ASM,
- ; then assemble (can use ASM.COM) and load to get XMODEMxx.COM. Then
- ; edit this file as needed (check the CONOUT routine if you want to loc-
- ; ally see file transfer time and the record count while programs are
- ; being sent). Then assemble (can use ASM.COM) and merge via DDT or SID:
- ;
- ; B>DDT XMODEMxx.COM
- ; DDT VERS 2.2
- ; NEXT PC
- ; 1180 0100
- ; -IXMHZ-1.HEX (note the 'I' command)
- ; -R ('R' loads in the .HEX file)
- ; NEXT PC
- ; 1180 0000
- ; -G0 (return to CP/M)
- ; B>SAVE 16 XMODEMxx.COM (now have a modified .COM file)
- ;
- ; NOTE: Save 21 (rather than 16) if LOGCAL is YES
- ;
- ;=======================================================================
- ;
- ; 11/17/83 - Renamed to XMHZ-1.ASM - Irv Hoff
- ; 10/22/83 - Updated to XMODEM77 - Irv Hoff
- ; 09/27/83 - Modified for Zenith Z100 - Paul Matlin
- ;
- ; 03/07/83 Added instructions on how to adapt this file to XMODEM70.COM.
- ; Standardized the format. Added automatic MSPEED from "BYE"
- ; program. Added CONOUT information. Adapted from XM70PMMI.
- ; - Irv Hoff
- ;
- ;=======================================================================
- ;
- YES: EQU 0FFH
- NO: EQU 0
- ;
- ;=======================================================================
- ;
- ; Values shown are for the 2661-2 serial I/O
- ;
- MODDATP: EQU 0ECH ;data in port
- MODDATO: EQU MODDATP ;data out port
- MODCTLP: EQU MODDATP+1 ;line status register
- MODCTL2: EQU MODDATP+1 ;modem status register
- MODSNDB: EQU 01H ;bit to test for send
- MODSNDR: EQU 01H ;value when ready
- MODRCVB: EQU 02 ;bit to tet for receive
- MODRCVR: EQU 02 ;value when ready
- MODDCDA: EQU 40H ;value when active
- MODDCDB: EQU 40H ;carrier detect bit
- MODPARE: EQU 08H ;value for parity error
- MODOVRE: EQU 10H ;value for overrun error
- MODFRME: EQU 20H ;value for framing error
- ;
-
- LSPEED: EQU YES ;yes if using 'BYE' with speed selection
- ;no if using 'SPEED' manual selection
- MSPEED: EQU 3CH ;location of baud rate factor (set by
- ;'BYE') set location in 'BYE' to agree.
- ;3dh and 3eh often used by newer ver-
- ;sions of 'ZCPR'.
- XSPEED: EQU 1 ;speed for file time transfer without
- ;auto-set. use one of the following:
- ;0=110 1=300 2=450 3=600 4=710 5=1200
- BASE: EQU 100H ;start of cp/m normal program area
- ;
- ;-------------------------------------------------------------------
- ;
- ; Jump table: The jump table must be in exactly the same sequence as the
- ; one in XMODEM. Note the ORG of 103H - This jump table has no jump to
- ; 'BEGIN'.
-
- ;
- ORG BASE+3 ;start after 'JMP BEGIN'
- ;
- ;
- ; NOTE: For the Zenith Z100 the CONOUT address is 0F9FFH
- ;
- CONOUT: JMP 0F9FFH ;must be 00000h if not used, see below
- PMINIT: JMP MINIT ;initialization routine (if needed)
- PUNINIT: JMP UNINIT ;undo whatever 'MINIT' did (or return)
- PSENDR: JMP SENDR ;send character (via pop psw)
- PCAROK: JMP CAROK ;test for carrier
- PMDIN: JMP MDIN ;receive data byte
- PGETCHR: JMP GETCHR ;get character from modem
- PRCVRDY: JMP RCVRDY ;check receive ready
- PSNDRDY: JMP SNDRDY ;check send ready
- PSPEED: JMP SPEED ;get speed value for file transfer time
- PEXTRA1: JMP EXTRA1 ;extra for custom routine
- PEXTRA2: JMP EXTRA2 ;extra for custom routine
- PEXTRA3: JMP EXTRA3 ;extra for custom routine
- ;
- ;=======================================================================
- ;
- ; -- To Display the Record Count on the CRT During Program Transfers --
- ;
- ; This one addition requires some work on the part of the user.
- ; When "BYE" is added, CP/M is normally moved lower to accomodate the
- ; new program above CP/M. Whenever BYE is called to enable the RCPM
- ; capability, it steals some of the addresses contained in the BIOS jump
- ; vector table. In order to display on the CRT during program transfers
- ; you need to get into the BIOS console output routine directly, else
- ; what is being displayed also tries to go out the modem. This is a big
- ; NO-NO at that time. (This cannot be done automatically by XMODEM,
- ; since BYE has already taken the address we need to find, by the time
- ; XMODEM is automatically activated by the remote station.)
- ;
- ; So with the disk containing BYE, but prior to activating BYE, do
- ; this:
- ; 1) Cold reboot to move CP/M (and BIOS) to the new area
- ; needed when BYE is activated on the same disk.
- ; 2) Use DDT and dump the area from 0000H to 0002H. This
- ; gives the warm reboot address in BIOS.
- ; 3) Add 9 Bytes to that address to get your console out-
- ; put jump vector.
- ; 4) Pick off the address contained in the jump vector and
- ; install that in "CONOUT", below. Example of one
- ; system in use:
- ;
- ; FIRST, COLD REBOOT WITH DISK CONTAINING "BYE"
- ;
- ; 0000 C3 03 E0 (location of warm reboot on disk with BYE
- ;
- ; PRIOR TO ACTIVATING BYE BUT ON SAME DISK
- ;
- ; E003 C3 E9 E0 (BIOS warm reboot jump vector on this disk)
- ; E006 C3 00 E9 (BIOS get console status routine)
- ; E009 C3 B7 E1 (BIOS console input routine)
- ; E00C C3 D4 E1 (BIOS console output routine)
- ;
- ; The address we need is thus E1D4. Put that below, in
- ; our example it would be: CONOUT JMP 0E1D4H
- ;
- ;
- ; CONOUT: JMP 00000H ;If you wish to show the record count
- ; ;during program transfer, fill in this
- ; ;address at 'CONOUT' above.
- ;
- ; - Irv Hoff
- ;
- ;=======================================================================
- ;
- ; ---> CAROK - check for presence of carrier. RET with Z = carrier on
- ;
- CAROK: IN MODCTL2 ;read modem status
- ANI MODDCDB ;get carrier detect bit
- CPI MODDCDA ;test bit
- RET
- ;
- ;=======================================================================
- ;
- EXTRA1: RET ;for later use
- EXTRA2: RET ;for later use
- EXTRA3: RET ;for later use
- ;
- ;=======================================================================
- ;
- ; ---> GETCHR - get a character, same as MDIN
- ; ---> MDIN - - get a character, same as GETCHR
- ;
- GETCHR:
- MDIN: IN MODDATP ;get character from data in port
- RET
- ;
- ;=======================================================================
- ;
- MINIT: RET ;no initialization required
- ;
- ;=======================================================================
- ;
- ; ---> RCVRDY - check receive ready. RET with Z = character available.
- ; Return with error code in A-reg.
- ;
- RCVRDY: IN MODCTLP ;get modem status
- PUSH B ;save scratch register
- PUSH PSW ;check error status
- ANI MODFRME+MODOVRE+MODPARE
- MOV B,A ;save it for a moment
- POP PSW
- ANI MODRCVB ;isolate ready bit
- CPI MODRCVR ;test it
- MOV A,B ;get the error code char. back
- POP B
- RET
- ;
- ;=======================================================================
- ;
- ; ---> SENDR - send character
- ;
- SENDR: POP PSW ;get the character back
- OUT MODDATO ;send it to the modem output
- RET
- ;
- ;=======================================================================
- ;
- ; ---> SNDRDY - check if ready to send.
- ;
- SNDRDY: IN MODCTLP ;get status byte
- ANI MODSNDB ;isolate ready bit
- CPI MODSNDR ;ready to send?
- RET
- ;
- ;=======================================================================
- ;
- ; ---> SPEED - sets the time shown for program transfer.
- ;
- SPEED: IF LSPEED
- LDA MSPEED ;get index for baud rate from 'BYE'
- ENDIF
- ;
- IF NOT LSPEED
- MVI A,XSPEED ;get index for baud rate from 'XSPEED'
- ENDIF
- ;
- RET
- ;
- ;=======================================================================
- ;
- UNINIT: RET ;not initialized, so no 'UN-INITIALIZE'
- ;
- ;=======================================================================
- ;
- ;