view level1/modules/rfmdrv.asm @ 2897:260116065a2f lwtools-port

arcadepak: Add empty_smash.txt and empty_thexder.txt dummy files This was done in default branch in commit 9b29d654db13 but did not get into the lwtools branch. We'll probably do this differently later, but for now I'll just pick this solution. At this point everything I have spotted of useful changes in the default branch has been pushed to the lwtools branch. I have cherry-picked changes both ways in order to make a merge easier, but a real merge will probably not be useful. I did try it out and waded through merge conflicts and diff'ed the result with current lwtools branch, so I am pretty sure nothing useful will be lost.
author Tormod Volden <debian.tormod@gmail.com>
date Sat, 11 Jan 2014 18:20:09 +0100
parents 8d9ca53903e3
children
line wrap: on
line source

********************************************************************
* rfmdrv - remote file manager driver
*

         nam   rfmdrv
         ttl   Remote file manager driver

         ifp1
         	use   defsfile
         	use   rfm.d
         endc
         
tylg     set   Drivr+Objct   
atrv     set   ReEnt+rev
rev      set   $01
edition  set   $01

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

        
         org   V.RFM
size     equ   .

         fcb   DIR.+SHARE.+PEXEC.+PWRIT.+PREAD.+EXEC.+UPDAT.


name     fcs   /rfmdrv/
         fcb   edition

start    lbra   Init
         lbra   Read
         lbra   Write
         lbra   GetStat
         lbra   SetStat
*         lbra   Term
         
Init
Read
Write
GetStat
SetStat
         nop
	 clrb
	 rts
		 
         emod
eom      equ   *
         end