home *** CD-ROM | disk | FTP | other *** search
- *[FOSSIL14.LIT]***************************************************************
- * Description: Removes support for FOSSIL *
- * RBBS-PC Level: CPC17.3 √ AM *
- * Module Affected: RBBSSUB1.BAS NOTE: was FOSSIL15.LIT *
- * Selection Option: FOSSIL = OFF *
- * Additional files: FOSSIL11.LIT,FOSSIL12.LIT,FOSSIL15.LIT *
- ******************************************************************************
- 59725 ' $SUBTITLE: 'CommPut -- Writes to communications port'
- ' $PAGE
- '
- ' NAME -- CommPut
- '
- ' INPUTS -- PARAMETER MEANING
- ' Strng$ String to write
- ' ZFossil Whether using Fossil driver
- '
- ' OUTPUTS --
- '
- ' PURPOSE -- Send string to comm port. Recovers from errors.
- '
- SUB CommPut (Strng$) STATIC
- ON ERROR GOTO 65000
- PRINT #3,Strng$; ' KG092201
- END SUB
- ' $SUBTITLE: 'Error Handling for separately compiled subroutines'
- ' $PAGE
- '
- '
- ' Error handling for the separately compiled subroutines of RBBS-PC
- '
- '
-