view level1/modules/piper.asm @ 2763:c03464c24b14

Fixed a minor typo in the arcadepak's makefile related to DriveWire3 and Becker. Updated makefile with new option nightlytest. Run option is "make nightlytest". You also need to test environment variable TESTSSHDIR and TESTSSHSERVER before using it. Also updated the nightly option so if the SOURCEUSER environment variable is not set it will report it.
author drencor-xeen
date Wed, 16 Jan 2013 17:33:46 -0600
parents 132859392c04
children
line wrap: on
line source

********************************************************************
* Piper - Pipe device driver
*
* $Id$
*
* Edt/Rev  YYYY/MM/DD  Modified by
* Comment
* ------------------------------------------------------------------
*   2      ????/??/??  ???
* Original OS-9/Tandy distribution

         nam   Piper
         ttl   Pipe device driver

         ifp1
         use   defsfile
         endc

tylg     set   Drivr+Objct   
atrv     set   ReEnt+rev
rev      set   $00
edition  set   2

         mod   eom,name,tylg,atrv,start,size

u0000    rmb   6
size     equ   .

         fcb   READ.+WRITE.

name     fcs   /Piper/
         fcb   edition

start    equ   *
Init     clrb  
         rts   
         nop   
Read     clrb  
         rts   
         nop   
Write    clrb  
         rts   
         nop   
GetStat  clrb  
         rts   
         nop   
SetStat  clrb  
         rts   
         nop   
Term     clrb  
         rts   

         emod
eom      equ   *
         end