annotate level1/modules/rfmdrv.asm @ 2910:87f2133301b0

Remove execute permissions from files that should not have it
author Tormod Volden <debian.tormod@gmail.com>
date Sat, 11 Jan 2014 21:52:42 +0100
parents 8d9ca53903e3
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2435
f3f09398780b initial RFM
aaronwolfe
parents:
diff changeset
1 ********************************************************************
f3f09398780b initial RFM
aaronwolfe
parents:
diff changeset
2 * rfmdrv - remote file manager driver
f3f09398780b initial RFM
aaronwolfe
parents:
diff changeset
3 *
f3f09398780b initial RFM
aaronwolfe
parents:
diff changeset
4
f3f09398780b initial RFM
aaronwolfe
parents:
diff changeset
5 nam rfmdrv
f3f09398780b initial RFM
aaronwolfe
parents:
diff changeset
6 ttl Remote file manager driver
f3f09398780b initial RFM
aaronwolfe
parents:
diff changeset
7
f3f09398780b initial RFM
aaronwolfe
parents:
diff changeset
8 ifp1
f3f09398780b initial RFM
aaronwolfe
parents:
diff changeset
9 use defsfile
2659
95c7e747c154 Added support for virtual window (/Zx) devices
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2450
diff changeset
10 use rfm.d
2435
f3f09398780b initial RFM
aaronwolfe
parents:
diff changeset
11 endc
f3f09398780b initial RFM
aaronwolfe
parents:
diff changeset
12
f3f09398780b initial RFM
aaronwolfe
parents:
diff changeset
13 tylg set Drivr+Objct
f3f09398780b initial RFM
aaronwolfe
parents:
diff changeset
14 atrv set ReEnt+rev
f3f09398780b initial RFM
aaronwolfe
parents:
diff changeset
15 rev set $01
f3f09398780b initial RFM
aaronwolfe
parents:
diff changeset
16 edition set $01
f3f09398780b initial RFM
aaronwolfe
parents:
diff changeset
17
f3f09398780b initial RFM
aaronwolfe
parents:
diff changeset
18 mod eom,name,tylg,atrv,start,size
f3f09398780b initial RFM
aaronwolfe
parents:
diff changeset
19
f3f09398780b initial RFM
aaronwolfe
parents:
diff changeset
20
2450
a4ac68ad79e4 Added PrsNam support... crashes at the moment
boisy
parents: 2448
diff changeset
21 org V.RFM
2435
f3f09398780b initial RFM
aaronwolfe
parents:
diff changeset
22 size equ .
f3f09398780b initial RFM
aaronwolfe
parents:
diff changeset
23
2448
c90536ef4b8c Fixed issue with rfmdrv.asm... should have all entry points
boisy
parents: 2440
diff changeset
24 fcb DIR.+SHARE.+PEXEC.+PWRIT.+PREAD.+EXEC.+UPDAT.
2440
d5ba9175a498 more RFM:
aaronwolfe
parents: 2436
diff changeset
25
2436
ca3aa5472761 RFM can simulate open,readln,close
aaronwolfe
parents: 2435
diff changeset
26
2435
f3f09398780b initial RFM
aaronwolfe
parents:
diff changeset
27 name fcs /rfmdrv/
f3f09398780b initial RFM
aaronwolfe
parents:
diff changeset
28 fcb edition
f3f09398780b initial RFM
aaronwolfe
parents:
diff changeset
29
2448
c90536ef4b8c Fixed issue with rfmdrv.asm... should have all entry points
boisy
parents: 2440
diff changeset
30 start lbra Init
c90536ef4b8c Fixed issue with rfmdrv.asm... should have all entry points
boisy
parents: 2440
diff changeset
31 lbra Read
c90536ef4b8c Fixed issue with rfmdrv.asm... should have all entry points
boisy
parents: 2440
diff changeset
32 lbra Write
c90536ef4b8c Fixed issue with rfmdrv.asm... should have all entry points
boisy
parents: 2440
diff changeset
33 lbra GetStat
c90536ef4b8c Fixed issue with rfmdrv.asm... should have all entry points
boisy
parents: 2440
diff changeset
34 lbra SetStat
c90536ef4b8c Fixed issue with rfmdrv.asm... should have all entry points
boisy
parents: 2440
diff changeset
35 * lbra Term
c90536ef4b8c Fixed issue with rfmdrv.asm... should have all entry points
boisy
parents: 2440
diff changeset
36
c90536ef4b8c Fixed issue with rfmdrv.asm... should have all entry points
boisy
parents: 2440
diff changeset
37 Init
c90536ef4b8c Fixed issue with rfmdrv.asm... should have all entry points
boisy
parents: 2440
diff changeset
38 Read
c90536ef4b8c Fixed issue with rfmdrv.asm... should have all entry points
boisy
parents: 2440
diff changeset
39 Write
c90536ef4b8c Fixed issue with rfmdrv.asm... should have all entry points
boisy
parents: 2440
diff changeset
40 GetStat
c90536ef4b8c Fixed issue with rfmdrv.asm... should have all entry points
boisy
parents: 2440
diff changeset
41 SetStat
c90536ef4b8c Fixed issue with rfmdrv.asm... should have all entry points
boisy
parents: 2440
diff changeset
42 nop
c90536ef4b8c Fixed issue with rfmdrv.asm... should have all entry points
boisy
parents: 2440
diff changeset
43 clrb
c90536ef4b8c Fixed issue with rfmdrv.asm... should have all entry points
boisy
parents: 2440
diff changeset
44 rts
2435
f3f09398780b initial RFM
aaronwolfe
parents:
diff changeset
45
f3f09398780b initial RFM
aaronwolfe
parents:
diff changeset
46 emod
f3f09398780b initial RFM
aaronwolfe
parents:
diff changeset
47 eom equ *
f3f09398780b initial RFM
aaronwolfe
parents:
diff changeset
48 end